WP Admin UI Customize - Version 1.5

Version Description

  • Fixed: Strip html tag from the title of Side menu settings.
  • Fixed: Update notification on the Front-end.
  • Added: Settings default show of Metaboxes manage.
  • Added: Possible to settings children-free menu of Side menu settings.
Download this release

Release Info

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

Code changes from version 1.4.4.2 to 1.5

inc/setting_manage_metabox.php CHANGED
@@ -59,6 +59,9 @@ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
59
  <input type="checkbox" name="" class="check_all" />
60
  <strong><?php _e( 'Show on screen' ); ?></strong>
61
  </td>
 
 
 
62
  <td><strong><?php _e( 'Change metabox title to' , $this->ltd ); ?></strong></td>
63
  </tr>
64
  </thead>
@@ -75,7 +78,19 @@ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
75
  <?php if( $metabox_id != 'submitdiv' ) : ?>
76
  <?php $Checked = ''; ?>
77
  <?php if( !empty( $Data["post"][$metabox_id]["remove"] ) ) : $Checked = 'checked="checked"'; endif; ?>
78
- <label><input type="checkbox" name="data[post][<?php echo $metabox_id; ?>][remove]" value="1" <?php echo $Checked; ?> /> <?php _e ( 'Hide' ); ?></label>
 
 
 
 
 
 
 
 
 
 
 
 
79
  <?php else : ?>
80
  <?php _e( 'Show' ); ?>
81
  <?php endif; ?>
@@ -83,7 +98,7 @@ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
83
  <td>
84
  <?php $Val = ''; ?>
85
  <?php if( !empty( $Data["post"][$metabox_id]["name"] ) ) : $Val = esc_html( stripslashes( $Data["post"][$metabox_id]["name"] ) ); endif; ?>
86
- <input type="text" name="data[post][<?php echo $metabox_id; ?>][name]" class="regular-text" value="<?php echo $Val; ?>" placeholder="<?php _e( $metabox_title ); ?>" />
87
  <?php if( $metabox_id == 'commentstatusdiv' ) : ?>
88
  <p class="description"><?php _e( 'Notice: If hide the Discussion on metabox, comments does not display of Add New Post on apply user role.' , $this->ltd ); ?></p>
89
  <p><img src="<?php echo $this->Url; ?>images/discussion_allow_comments.png" /></p>
@@ -122,6 +137,9 @@ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
122
  <input type="checkbox" name="" class="check_all" />
123
  <strong><?php _e( 'Show on screen' ); ?></strong>
124
  </td>
 
 
 
125
  <td><strong><?php _e( 'Change metabox title to' ); ?></strong></td>
126
  </tr>
127
  </thead>
@@ -137,7 +155,19 @@ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
137
  <?php if( $metabox_id != 'submitdiv' ) : ?>
138
  <?php $Checked = ''; ?>
139
  <?php if( !empty( $Data["page"][$metabox_id]["remove"] ) ) : $Checked = 'checked="checked"'; endif; ?>
140
- <label><input type="checkbox" name="data[page][<?php echo $metabox_id; ?>][remove]" value="1" <?php echo $Checked; ?> /> <?php _e ( 'Hide' ); ?></label>
 
 
 
 
 
 
 
 
 
 
 
 
141
  <?php else : ?>
142
  <?php _e( 'Show' ); ?>
143
  <?php endif; ?>
@@ -145,7 +175,7 @@ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
145
  <td>
146
  <?php $Val = ''; ?>
147
  <?php if( !empty( $Data["page"][$metabox_id]["name"] ) ) : $Val = esc_html( stripslashes( $Data["page"][$metabox_id]["name"] ) ); endif; ?>
148
- <input type="text" name="data[page][<?php echo $metabox_id; ?>][name]" class="regular-text" value="<?php echo $Val; ?>" placeholder="<?php _e( $metabox_title ); ?>" />
149
  <?php if( $metabox_id == 'commentstatusdiv' ) : ?>
150
  <p class="description"><?php _e( 'Notice: If hide the Discussion on metabox, comments does not display of Add New Post on apply user role.' , $this->ltd ); ?></p>
151
  <p><img src="<?php echo $this->Url; ?>images/discussion_allow_comments.png" /></p>
@@ -193,6 +223,9 @@ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
193
  <input type="checkbox" name="" class="check_all" />
194
  <strong><?php _e( 'Show on screen' ); ?></strong>
195
  </td>
 
 
 
196
  <td><strong><?php _e( 'Change metabox title to' ); ?></strong></td>
197
  </tr>
198
  </thead>
@@ -207,16 +240,28 @@ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
207
  <?php if( $metabox_id != 'submitdiv' ) : ?>
208
  <?php $Checked = ''; ?>
209
  <?php if( !empty( $Data[$post_name][$metabox_id]["remove"] ) ) : $Checked = 'checked="checked"'; endif; ?>
210
- <label><input type="checkbox" name="data[<?php echo $post_name; ?>][<?php echo $metabox_id; ?>][remove]" value="1" <?php echo $Checked; ?> /> <?php _e ( 'Hide' ); ?></label>
211
  <?php else : ?>
212
  <?php _e( 'Show' ); ?>
213
  <?php endif; ?>
214
  </td>
215
- <td>
216
- <?php $Val = ''; ?>
217
- <?php if( !empty( $Data[$post_name][$metabox_id]["name"] ) ) : $Val = esc_html( stripslashes( $Data[$post_name][$metabox_id]["name"] ) ); endif; ?>
218
- <input type="text" name="data[<?php echo $post_name; ?>][<?php echo $metabox_id; ?>][name]" class="regular-text" value="<?php echo $Val; ?>" placeholder="<?php _e( $metabox_title ); ?>" />
219
- </td>
 
 
 
 
 
 
 
 
 
 
 
 
220
  </tr>
221
  <?php endif; ?>
222
  <?php endforeach; ?>
@@ -266,6 +311,28 @@ jQuery(document).ready(function($) {
266
  $(this).find("input[type=checkbox]").prop("checked" , Checked);
267
  });
268
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
269
 
270
  });
271
  </script>
59
  <input type="checkbox" name="" class="check_all" />
60
  <strong><?php _e( 'Show on screen' ); ?></strong>
61
  </td>
62
+ <td style="width: 15%;">
63
+ <strong><?php _e( 'Default Open' , $this->ltd ); ?></strong>
64
+ </td>
65
  <td><strong><?php _e( 'Change metabox title to' , $this->ltd ); ?></strong></td>
66
  </tr>
67
  </thead>
78
  <?php if( $metabox_id != 'submitdiv' ) : ?>
79
  <?php $Checked = ''; ?>
80
  <?php if( !empty( $Data["post"][$metabox_id]["remove"] ) ) : $Checked = 'checked="checked"'; endif; ?>
81
+ <label><input type="checkbox" name="data[post][<?php echo $metabox_id; ?>][remove]" value="1" class="show_check" <?php echo $Checked; ?> /> <?php _e ( 'Hide' ); ?></label>
82
+ <?php else : ?>
83
+ <?php _e( 'Show' ); ?>
84
+ <?php endif; ?>
85
+ </td>
86
+ <td>
87
+ <?php if( $metabox_id != 'submitdiv' ) : ?>
88
+ <?php $Selected = 0; ?>
89
+ <?php if( !empty( $Data["post"][$metabox_id]["toggle"] ) ) : $Selected = true; endif; ?>
90
+ <select name="data[post][<?php echo $metabox_id; ?>][toggle]" class="select_toggle">
91
+ <option value="0" <?php Selected( $Selected , 0 ); ?>><?php _e( 'Not Reduce' , $this->ltd ); ?></option>
92
+ <option value="1" <?php Selected( $Selected , 1 ); ?>><?php _e( 'Reduce' , $this->ltd ); ?></option>
93
+ </select>
94
  <?php else : ?>
95
  <?php _e( 'Show' ); ?>
96
  <?php endif; ?>
98
  <td>
99
  <?php $Val = ''; ?>
100
  <?php if( !empty( $Data["post"][$metabox_id]["name"] ) ) : $Val = esc_html( stripslashes( $Data["post"][$metabox_id]["name"] ) ); endif; ?>
101
+ <input type="text" name="data[post][<?php echo $metabox_id; ?>][name]" class="regular-text metabox_rename" value="<?php echo $Val; ?>" placeholder="<?php _e( $metabox_title ); ?>" />
102
  <?php if( $metabox_id == 'commentstatusdiv' ) : ?>
103
  <p class="description"><?php _e( 'Notice: If hide the Discussion on metabox, comments does not display of Add New Post on apply user role.' , $this->ltd ); ?></p>
104
  <p><img src="<?php echo $this->Url; ?>images/discussion_allow_comments.png" /></p>
137
  <input type="checkbox" name="" class="check_all" />
138
  <strong><?php _e( 'Show on screen' ); ?></strong>
139
  </td>
140
+ <td style="width: 15%;">
141
+ <strong><?php _e( 'Default Open' , $this->ltd ); ?></strong>
142
+ </td>
143
  <td><strong><?php _e( 'Change metabox title to' ); ?></strong></td>
144
  </tr>
145
  </thead>
155
  <?php if( $metabox_id != 'submitdiv' ) : ?>
156
  <?php $Checked = ''; ?>
157
  <?php if( !empty( $Data["page"][$metabox_id]["remove"] ) ) : $Checked = 'checked="checked"'; endif; ?>
158
+ <label><input type="checkbox" name="data[page][<?php echo $metabox_id; ?>][remove]" value="1" class="show_check" <?php echo $Checked; ?> /> <?php _e ( 'Hide' ); ?></label>
159
+ <?php else : ?>
160
+ <?php _e( 'Show' ); ?>
161
+ <?php endif; ?>
162
+ </td>
163
+ <td>
164
+ <?php if( $metabox_id != 'submitdiv' ) : ?>
165
+ <?php $Selected = 0; ?>
166
+ <?php if( !empty( $Data["page"][$metabox_id]["toggle"] ) ) : $Selected = true; endif; ?>
167
+ <select name="data[page][<?php echo $metabox_id; ?>][toggle]" class="select_toggle">
168
+ <option value="0" <?php Selected( $Selected , 0 ); ?>><?php _e( 'Not Reduce' , $this->ltd ); ?></option>
169
+ <option value="1" <?php Selected( $Selected , 1 ); ?>><?php _e( 'Reduce' , $this->ltd ); ?></option>
170
+ </select>
171
  <?php else : ?>
172
  <?php _e( 'Show' ); ?>
173
  <?php endif; ?>
175
  <td>
176
  <?php $Val = ''; ?>
177
  <?php if( !empty( $Data["page"][$metabox_id]["name"] ) ) : $Val = esc_html( stripslashes( $Data["page"][$metabox_id]["name"] ) ); endif; ?>
178
+ <input type="text" name="data[page][<?php echo $metabox_id; ?>][name]" class="regular-text metabox_rename" value="<?php echo $Val; ?>" placeholder="<?php _e( $metabox_title ); ?>" />
179
  <?php if( $metabox_id == 'commentstatusdiv' ) : ?>
180
  <p class="description"><?php _e( 'Notice: If hide the Discussion on metabox, comments does not display of Add New Post on apply user role.' , $this->ltd ); ?></p>
181
  <p><img src="<?php echo $this->Url; ?>images/discussion_allow_comments.png" /></p>
223
  <input type="checkbox" name="" class="check_all" />
224
  <strong><?php _e( 'Show on screen' ); ?></strong>
225
  </td>
226
+ <td style="width: 15%;">
227
+ <strong><?php _e( 'Default Open' , $this->ltd ); ?></strong>
228
+ </td>
229
  <td><strong><?php _e( 'Change metabox title to' ); ?></strong></td>
230
  </tr>
231
  </thead>
240
  <?php if( $metabox_id != 'submitdiv' ) : ?>
241
  <?php $Checked = ''; ?>
242
  <?php if( !empty( $Data[$post_name][$metabox_id]["remove"] ) ) : $Checked = 'checked="checked"'; endif; ?>
243
+ <label><input type="checkbox" name="data[<?php echo $post_name; ?>][<?php echo $metabox_id; ?>][remove]" value="1" class="show_check" <?php echo $Checked; ?> /> <?php _e ( 'Hide' ); ?></label>
244
  <?php else : ?>
245
  <?php _e( 'Show' ); ?>
246
  <?php endif; ?>
247
  </td>
248
+ <td>
249
+ <?php if( $metabox_id != 'submitdiv' ) : ?>
250
+ <?php $Selected = 0; ?>
251
+ <?php if( !empty( $Data[$post_name][$metabox_id]["toggle"] ) ) : $Selected = true; endif; ?>
252
+ <select name="data[<?php echo $post_name; ?>][<?php echo $metabox_id; ?>][toggle]" class="select_toggle">
253
+ <option value="0" <?php Selected( $Selected , 0 ); ?>><?php _e( 'Not Reduce' , $this->ltd ); ?></option>
254
+ <option value="1" <?php Selected( $Selected , 1 ); ?>><?php _e( 'Reduce' , $this->ltd ); ?></option>
255
+ </select>
256
+ <?php else : ?>
257
+ <?php _e( 'Show' ); ?>
258
+ <?php endif; ?>
259
+ </td>
260
+ <td>
261
+ <?php $Val = ''; ?>
262
+ <?php if( !empty( $Data[$post_name][$metabox_id]["name"] ) ) : $Val = esc_html( stripslashes( $Data[$post_name][$metabox_id]["name"] ) ); endif; ?>
263
+ <input type="text" name="data[<?php echo $post_name; ?>][<?php echo $metabox_id; ?>][name]" class="regular-text metabox_rename" value="<?php echo $Val; ?>" placeholder="<?php _e( $metabox_title ); ?>" />
264
+ </td>
265
  </tr>
266
  <?php endif; ?>
267
  <?php endforeach; ?>
311
  $(this).find("input[type=checkbox]").prop("checked" , Checked);
312
  });
313
  });
314
+
315
+ $('.postbox .inside .form-table').each(function( key, el ) {
316
+ $(el).find('tbody tr').each(function( tr_key , tr_el ) {
317
+ if( $(tr_el).find('.show_check').size() > 0 ) {
318
+ if( $(tr_el).find('.show_check').prop('checked') ) {
319
+ $(tr_el).find('.select_toggle').prop('disabled', true);
320
+ $(tr_el).find('.metabox_rename').prop('disabled', true).addClass('disabled');
321
+ }
322
+ }
323
+ });
324
+ });
325
+
326
+ $('.postbox .inside .form-table tbody tr td .show_check').on('click', function( ev ) {
327
+ var Tr = $(ev.target).parent().parent().parent();
328
+ if( $(ev.target).prop('checked') ) {
329
+ Tr.find('.select_toggle').prop('disabled', true);
330
+ Tr.find('.metabox_rename').prop('disabled', true).addClass('disabled');
331
+ } else {
332
+ Tr.find('.select_toggle').prop('disabled', false);
333
+ Tr.find('.metabox_rename').prop('disabled', false).removeClass('disabled');
334
+ }
335
+ });
336
 
337
  });
338
  </script>
inc/setting_sidemenu.php CHANGED
@@ -66,30 +66,39 @@ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
66
  <?php $menu_title = __( 'Plugins' ); ?>
67
  <?php endif; ?>
68
  <p class="description"><?php echo $menu_title; ?></p>
69
-
70
- <?php foreach($this->SubMenu as $parent_slug => $sub) : ?>
71
-
72
- <?php foreach($sub as $sm) : ?>
73
-
74
- <?php if( $mm[2] == $parent_slug ) : ?>
75
- <?php $menu_title = $sm[0]; ?>
76
- <?php if( $sm[1] == 'update_core' ) : ?>
77
- <?php $menu_title = __( 'Update' ) . ' [update_total]'; ?>
78
- <?php elseif( $sm[2] == 'edit-comments.php' ) : ?>
79
- <?php $menu_title .= ' [comment_count]'; ?>
80
- <?php elseif( $sm[2] == 'themes.php' ) : ?>
81
- <?php $menu_title .= ' [update_themes]'; ?>
82
- <?php elseif( $sm[2] == 'plugins.php' ) : ?>
83
- <?php $menu_title .= ' [update_plugins]'; ?>
 
 
 
 
 
 
 
 
 
 
84
  <?php endif; ?>
85
- <?php $menu_widget = array( 'title' => $menu_title , 'slug' => $sm[2] , 'parent_slug' => '' , 'new' => true , 'cap' => $sm[1] , 'submenu' => '' ); ?>
86
- <?php $this->sidebar_menu_widget( $menu_widget ); ?>
87
- <?php endif; ?>
88
-
89
  <?php endforeach; ?>
90
-
91
- <?php endforeach; ?>
92
-
93
  <div class="clear"></div>
94
 
95
  <?php endif; ?>
66
  <?php $menu_title = __( 'Plugins' ); ?>
67
  <?php endif; ?>
68
  <p class="description"><?php echo $menu_title; ?></p>
69
+
70
+ <?php if( empty( $this->SubMenu[$mm[2]] ) ) : ?>
71
+
72
+ <?php $menu_widget = array( 'title' => $menu_title , 'slug' => $sm[2] , 'parent_slug' => '' , 'new' => true , 'cap' => $mm[1] , 'submenu' => '' ); ?>
73
+ <?php $this->sidebar_menu_widget( $menu_widget ); ?>
74
+
75
+ <?php else: ?>
76
+
77
+ <?php foreach($this->SubMenu as $parent_slug => $sub) : ?>
78
+
79
+ <?php foreach($sub as $sm) : ?>
80
+
81
+ <?php if( $mm[2] == $parent_slug ) : ?>
82
+ <?php $menu_title = $sm[0]; ?>
83
+ <?php if( $sm[1] == 'update_core' ) : ?>
84
+ <?php $menu_title = __( 'Update' ) . ' [update_total]'; ?>
85
+ <?php elseif( $sm[2] == 'edit-comments.php' ) : ?>
86
+ <?php $menu_title .= ' [comment_count]'; ?>
87
+ <?php elseif( $sm[2] == 'themes.php' ) : ?>
88
+ <?php $menu_title .= ' [update_themes]'; ?>
89
+ <?php elseif( $sm[2] == 'plugins.php' ) : ?>
90
+ <?php $menu_title .= ' [update_plugins]'; ?>
91
+ <?php endif; ?>
92
+ <?php $menu_widget = array( 'title' => $menu_title , 'slug' => $sm[2] , 'parent_slug' => '' , 'new' => true , 'cap' => $sm[1] , 'submenu' => '' ); ?>
93
+ <?php $this->sidebar_menu_widget( $menu_widget ); ?>
94
  <?php endif; ?>
95
+
96
+ <?php endforeach; ?>
97
+
 
98
  <?php endforeach; ?>
99
+
100
+ <?php endif; ?>
101
+
102
  <div class="clear"></div>
103
 
104
  <?php endif; ?>
languages/wauc-ja.mo CHANGED
Binary file
languages/wauc-ja.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Admin UI Customize\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-12-29 01:38+0900\n"
6
- "PO-Revision-Date: 2014-01-27 23:15+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,99 +21,108 @@ msgstr ""
21
  msgid "An excellent plugin to customize the management screens."
22
  msgstr "管理画面のカスタマイズに優れたプラグインです。"
23
 
24
- #: wp-admin-ui-customize.php:144
25
- #: wp-admin-ui-customize.php:183
26
  #: inc/reset_userrole.php:22
27
  msgid "Reset User Roles"
28
  msgstr "ユーザー権限リセット"
29
 
30
- #: wp-admin-ui-customize.php:173
 
31
  #: inc/setting_site.php:23
32
  msgid "Site Settings"
33
  msgstr "サイトの設定"
34
 
35
- #: wp-admin-ui-customize.php:174
 
36
  #: inc/setting_admin_general.php:23
37
  msgid "General Screen Settings"
38
  msgstr "一般設定"
39
 
40
- #: wp-admin-ui-customize.php:176
 
41
  #: inc/setting_admin_bar_menu.php:25
42
  msgid "Admin Bar Menu"
43
  msgstr "管理バー"
44
 
45
- #: wp-admin-ui-customize.php:177
 
46
  #: inc/setting_sidemenu.php:25
47
  msgid "Side Menu"
48
  msgstr "サイドメニュー"
49
 
50
- #: wp-admin-ui-customize.php:178
 
51
  #: inc/setting_manage_metabox.php:24
52
  msgid "Manage meta box"
53
  msgstr "メタボックス管理"
54
 
55
- #: wp-admin-ui-customize.php:179
 
56
  #: inc/setting_post_add_edit.php:23
57
  msgid "Add New Post and Edit Post Screen Setting"
58
  msgstr "新規投稿と投稿編集の設定"
59
 
60
- #: wp-admin-ui-customize.php:180
 
61
  #: inc/setting_appearance_menus.php:22
62
  msgid "Appearance Menus Screen Setting"
63
  msgstr "外観メニュー画面の設定"
64
 
65
- #: wp-admin-ui-customize.php:181
 
66
  #: inc/setting_loginscreen.php:34
67
  msgid "Login Screen"
68
  msgstr "ログイン画面"
69
 
70
- #: wp-admin-ui-customize.php:182
 
71
  #: inc/setting_plugin_cap.php:23
72
  #, php-format
73
  msgid "%1$s of %2$s %3$s"
74
  msgstr "%2$s %3$sの%1$s"
75
 
76
- #: wp-admin-ui-customize.php:387
77
  #, php-format
78
  msgid "Authority to apply the setting is not selected. <a href=\"%s\">From here</a>, please select the permissions you want to set."
79
  msgstr "設定を適用する権限が選択されていません。<a href=\"%s\">こちら</a>から設定する権限を選んでください。"
80
 
81
- #: wp-admin-ui-customize.php:412
82
  msgid "Apply user roles"
83
  msgstr "適用されるユーザー権限"
84
 
85
- #: wp-admin-ui-customize.php:756
86
- #: wp-admin-ui-customize.php:929
87
  msgid "Sub Menus"
88
  msgstr "サブメニュー"
89
 
90
- #: wp-admin-ui-customize.php:851
91
- #: wp-admin-ui-customize.php:873
92
  msgid "Menu Group"
93
  msgstr "メニューグループ"
94
 
95
- #: wp-admin-ui-customize.php:871
96
  msgid "Show only on front end."
97
  msgstr "フロントのみ表示"
98
 
99
- #: wp-admin-ui-customize.php:891
100
  msgid "If you want edit to name, please edit of translation file(PO)."
101
  msgstr "タイトルを変更したい場合は翻訳ファイル(PO)を編集してください。"
102
 
103
- #: wp-admin-ui-customize.php:1091
104
  msgid "Front"
105
  msgstr "フロント"
106
 
107
- #: wp-admin-ui-customize.php:2248
108
  #: inc/setting_default.php:185
109
  msgid "Thank you for your donation."
110
  msgstr "寄付いただきありがとうございます。"
111
 
112
- #: wp-admin-ui-customize.php:2263
113
  msgid "Thank you for considering donate."
114
  msgstr "寄付のご検討宜しくお願いします。"
115
 
116
- #: wp-admin-ui-customize.php:2263
117
  #: inc/setting_default.php:37
118
  msgid "Donate"
119
  msgstr "寄付について"
@@ -155,14 +164,14 @@ msgid "You want to reset the user roles?"
155
  msgstr "ユーザー権限をリセットしてもよろしいですか?"
156
 
157
  #: inc/reset_userrole.php:42
158
- #: inc/setting_admin_bar_menu.php:94
159
- #: inc/setting_admin_general.php:189
160
  #: inc/setting_appearance_menus.php:99
161
  #: inc/setting_dashboard.php:250
162
  #: inc/setting_default.php:130
163
  #: inc/setting_loginscreen.php:160
164
- #: inc/setting_manage_metabox.php:251
165
- #: inc/setting_plugin_cap.php:92
166
  #: inc/setting_post_add_edit.php:109
167
  #: inc/setting_sidemenu.php:232
168
  #: inc/setting_site.php:168
@@ -216,21 +225,21 @@ msgstr "サブメニューは4階層まで設定できます。"
216
  msgid "Documents is here"
217
  msgstr "ドキュメントはこちら"
218
 
219
- #: inc/setting_admin_bar_menu.php:93
220
- #: inc/setting_admin_general.php:188
221
  #: inc/setting_appearance_menus.php:98
222
  #: inc/setting_dashboard.php:249
223
  #: inc/setting_default.php:129
224
  #: inc/setting_loginscreen.php:159
225
- #: inc/setting_manage_metabox.php:250
226
- #: inc/setting_plugin_cap.php:91
227
  #: inc/setting_post_add_edit.php:108
228
  #: inc/setting_sidemenu.php:231
229
  #: inc/setting_site.php:167
230
  msgid "Reset all settings?"
231
  msgstr "リセットしますか?"
232
 
233
- #: inc/setting_admin_bar_menu.php:99
234
  #: inc/setting_sidemenu.php:27
235
  #: inc/setting_sidemenu.php:48
236
  msgid "Menu items that can be added"
@@ -272,19 +281,19 @@ msgstr "フッターテキスト"
272
  msgid "CSS file to load"
273
  msgstr "CSSファイルを読み込む"
274
 
275
- #: inc/setting_admin_general.php:162
276
  msgid "Title tag for Admin screen"
277
  msgstr "管理画面のタイトルタグ"
278
 
279
- #: inc/setting_admin_general.php:167
280
  msgid "Remove \"Wordpress\" from the title tag of the Admin screen"
281
  msgstr "管理画面のタイトルタグから\"WordPress\"を削除"
282
 
283
- #: inc/setting_admin_general.php:172
284
  msgid "Resizing Admin bar"
285
  msgstr "管理バーリサイズ"
286
 
287
- #: inc/setting_admin_general.php:177
288
  msgid "Not resize"
289
  msgstr "リサイズしない"
290
 
@@ -308,23 +317,23 @@ msgstr "ウェルカムパネル"
308
 
309
  #: inc/setting_dashboard.php:154
310
  #: inc/setting_manage_metabox.php:49
311
- #: inc/setting_manage_metabox.php:112
312
- #: inc/setting_manage_metabox.php:183
313
  msgid "Could not read the meta box."
314
  msgstr "メタボックスの読み込みができませんでした。"
315
 
316
  #: inc/setting_dashboard.php:155
317
  #: inc/setting_manage_metabox.php:50
318
- #: inc/setting_manage_metabox.php:113
319
- #: inc/setting_manage_metabox.php:184
320
  #, php-format
321
  msgid "Meta boxes will be loaded automatically when you <strong>%s</strong>."
322
  msgstr "<strong>%s</strong> 画面を一度表示すると自動でメタボックスが読み込まれます。"
323
 
324
  #: inc/setting_dashboard.php:166
325
- #: inc/setting_manage_metabox.php:62
326
- #: inc/setting_manage_metabox.php:125
327
- #: inc/setting_manage_metabox.php:196
328
  msgid "Change metabox title to"
329
  msgstr "メタボックス名を変更"
330
 
@@ -501,14 +510,32 @@ msgstr "メタボックスを読み込むには編集画面にアクセスして
501
  msgid "Please enter if you want to change of Metabox label name."
502
  msgstr "メタボックス名を変更したい時だけ入力してください。"
503
 
504
- #: inc/setting_manage_metabox.php:88
505
- #: inc/setting_manage_metabox.php:150
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
506
  #: inc/setting_post_add_edit.php:55
507
  msgid "Notice: If hide the Discussion on metabox, comments does not display of Add New Post on apply user role."
508
  msgstr "注意: ディスカッションメタボックスを隠す場合、適用された権限の新規投稿はコメントが表示されません。"
509
 
510
- #: inc/setting_manage_metabox.php:90
511
- #: inc/setting_manage_metabox.php:152
512
  msgid "Please set from here if you want to view the comments on screen."
513
  msgstr "コメントが表示されるようにしたい場合はここから設定してください。"
514
 
2
  msgstr ""
3
  "Project-Id-Version: WP Admin UI Customize\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-04-25 15:03+0900\n"
6
+ "PO-Revision-Date: 2014-04-25 15:16+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: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
  msgid "General Screen Settings"
40
  msgstr "一般設定"
41
 
42
+ #: wp-admin-ui-customize.php:174
43
+ #: inc/reset_userrole.php:59
44
  #: inc/setting_admin_bar_menu.php:25
45
  msgid "Admin Bar Menu"
46
  msgstr "管理バー"
47
 
48
+ #: wp-admin-ui-customize.php:175
49
+ #: inc/reset_userrole.php:60
50
  #: inc/setting_sidemenu.php:25
51
  msgid "Side Menu"
52
  msgstr "サイドメニュー"
53
 
54
+ #: wp-admin-ui-customize.php:176
55
+ #: inc/reset_userrole.php:61
56
  #: inc/setting_manage_metabox.php:24
57
  msgid "Manage meta box"
58
  msgstr "メタボックス管理"
59
 
60
+ #: wp-admin-ui-customize.php:177
61
+ #: inc/reset_userrole.php:62
62
  #: inc/setting_post_add_edit.php:23
63
  msgid "Add New Post and Edit Post Screen Setting"
64
  msgstr "新規投稿と投稿編集の設定"
65
 
66
+ #: wp-admin-ui-customize.php:178
67
+ #: inc/reset_userrole.php:63
68
  #: inc/setting_appearance_menus.php:22
69
  msgid "Appearance Menus Screen Setting"
70
  msgstr "外観メニュー画面の設定"
71
 
72
+ #: wp-admin-ui-customize.php:179
73
+ #: inc/reset_userrole.php:64
74
  #: inc/setting_loginscreen.php:34
75
  msgid "Login Screen"
76
  msgstr "ログイン画面"
77
 
78
+ #: wp-admin-ui-customize.php:180
79
+ #: inc/reset_userrole.php:65
80
  #: inc/setting_plugin_cap.php:23
81
  #, php-format
82
  msgid "%1$s of %2$s %3$s"
83
  msgstr "%2$s %3$sの%1$s"
84
 
85
+ #: wp-admin-ui-customize.php:331
86
  #, php-format
87
  msgid "Authority to apply the setting is not selected. <a href=\"%s\">From here</a>, please select the permissions you want to set."
88
  msgstr "設定を適用する権限が選択されていません。<a href=\"%s\">こちら</a>から設定する権限を選んでください。"
89
 
90
+ #: wp-admin-ui-customize.php:356
91
  msgid "Apply user roles"
92
  msgstr "適用されるユーザー権限"
93
 
94
+ #: wp-admin-ui-customize.php:700
95
+ #: wp-admin-ui-customize.php:873
96
  msgid "Sub Menus"
97
  msgstr "サブメニュー"
98
 
99
+ #: wp-admin-ui-customize.php:795
100
+ #: wp-admin-ui-customize.php:817
101
  msgid "Menu Group"
102
  msgstr "メニューグループ"
103
 
104
+ #: wp-admin-ui-customize.php:815
105
  msgid "Show only on front end."
106
  msgstr "フロントのみ表示"
107
 
108
+ #: wp-admin-ui-customize.php:835
109
  msgid "If you want edit to name, please edit of translation file(PO)."
110
  msgstr "タイトルを変更したい場合は翻訳ファイル(PO)を編集してください。"
111
 
112
+ #: wp-admin-ui-customize.php:1035
113
  msgid "Front"
114
  msgstr "フロント"
115
 
116
+ #: wp-admin-ui-customize.php:2278
117
  #: inc/setting_default.php:185
118
  msgid "Thank you for your donation."
119
  msgstr "寄付いただきありがとうございます。"
120
 
121
+ #: wp-admin-ui-customize.php:2293
122
  msgid "Thank you for considering donate."
123
  msgstr "寄付のご検討宜しくお願いします。"
124
 
125
+ #: wp-admin-ui-customize.php:2293
126
  #: inc/setting_default.php:37
127
  msgid "Donate"
128
  msgstr "寄付について"
164
  msgstr "ユーザー権限をリセットしてもよろしいですか?"
165
 
166
  #: inc/reset_userrole.php:42
167
+ #: inc/setting_admin_bar_menu.php:95
168
+ #: inc/setting_admin_general.php:201
169
  #: inc/setting_appearance_menus.php:99
170
  #: inc/setting_dashboard.php:250
171
  #: inc/setting_default.php:130
172
  #: inc/setting_loginscreen.php:160
173
+ #: inc/setting_manage_metabox.php:296
174
+ #: inc/setting_plugin_cap.php:94
175
  #: inc/setting_post_add_edit.php:109
176
  #: inc/setting_sidemenu.php:232
177
  #: inc/setting_site.php:168
225
  msgid "Documents is here"
226
  msgstr "ドキュメントはこちら"
227
 
228
+ #: inc/setting_admin_bar_menu.php:94
229
+ #: inc/setting_admin_general.php:200
230
  #: inc/setting_appearance_menus.php:98
231
  #: inc/setting_dashboard.php:249
232
  #: inc/setting_default.php:129
233
  #: inc/setting_loginscreen.php:159
234
+ #: inc/setting_manage_metabox.php:295
235
+ #: inc/setting_plugin_cap.php:93
236
  #: inc/setting_post_add_edit.php:108
237
  #: inc/setting_sidemenu.php:231
238
  #: inc/setting_site.php:167
239
  msgid "Reset all settings?"
240
  msgstr "リセットしますか?"
241
 
242
+ #: inc/setting_admin_bar_menu.php:100
243
  #: inc/setting_sidemenu.php:27
244
  #: inc/setting_sidemenu.php:48
245
  msgid "Menu items that can be added"
281
  msgid "CSS file to load"
282
  msgstr "CSSファイルを読み込む"
283
 
284
+ #: inc/setting_admin_general.php:161
285
  msgid "Title tag for Admin screen"
286
  msgstr "管理画面のタイトルタグ"
287
 
288
+ #: inc/setting_admin_general.php:166
289
  msgid "Remove \"Wordpress\" from the title tag of the Admin screen"
290
  msgstr "管理画面のタイトルタグから\"WordPress\"を削除"
291
 
292
+ #: inc/setting_admin_general.php:173
293
  msgid "Resizing Admin bar"
294
  msgstr "管理バーリサイズ"
295
 
296
+ #: inc/setting_admin_general.php:178
297
  msgid "Not resize"
298
  msgstr "リサイズしない"
299
 
317
 
318
  #: inc/setting_dashboard.php:154
319
  #: inc/setting_manage_metabox.php:49
320
+ #: inc/setting_manage_metabox.php:127
321
+ #: inc/setting_manage_metabox.php:213
322
  msgid "Could not read the meta box."
323
  msgstr "メタボックスの読み込みができませんでした。"
324
 
325
  #: inc/setting_dashboard.php:155
326
  #: inc/setting_manage_metabox.php:50
327
+ #: inc/setting_manage_metabox.php:128
328
+ #: inc/setting_manage_metabox.php:214
329
  #, php-format
330
  msgid "Meta boxes will be loaded automatically when you <strong>%s</strong>."
331
  msgstr "<strong>%s</strong> 画面を一度表示すると自動でメタボックスが読み込まれます。"
332
 
333
  #: inc/setting_dashboard.php:166
334
+ #: inc/setting_manage_metabox.php:65
335
+ #: inc/setting_manage_metabox.php:143
336
+ #: inc/setting_manage_metabox.php:229
337
  msgid "Change metabox title to"
338
  msgstr "メタボックス名を変更"
339
 
510
  msgid "Please enter if you want to change of Metabox label name."
511
  msgstr "メタボックス名を変更したい時だけ入力してください。"
512
 
513
+ #: inc/setting_manage_metabox.php:63
514
+ #: inc/setting_manage_metabox.php:141
515
+ #: inc/setting_manage_metabox.php:227
516
+ msgid "Default Open"
517
+ msgstr "表示サイズ"
518
+
519
+ #: inc/setting_manage_metabox.php:91
520
+ #: inc/setting_manage_metabox.php:168
521
+ #: inc/setting_manage_metabox.php:253
522
+ msgid "Not Reduce"
523
+ msgstr "縮小しない"
524
+
525
+ #: inc/setting_manage_metabox.php:92
526
+ #: inc/setting_manage_metabox.php:169
527
+ #: inc/setting_manage_metabox.php:254
528
+ msgid "Reduce"
529
+ msgstr "縮小"
530
+
531
+ #: inc/setting_manage_metabox.php:103
532
+ #: inc/setting_manage_metabox.php:180
533
  #: inc/setting_post_add_edit.php:55
534
  msgid "Notice: If hide the Discussion on metabox, comments does not display of Add New Post on apply user role."
535
  msgstr "注意: ディスカッションメタボックスを隠す場合、適用された権限の新規投稿はコメントが表示されません。"
536
 
537
+ #: inc/setting_manage_metabox.php:105
538
+ #: inc/setting_manage_metabox.php:182
539
  msgid "Please set from here if you want to view the comments on screen."
540
  msgstr "コメントが表示されるようにしたい場合はここから設定してください。"
541
 
languages/wauc.pot CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Admin UI Customize\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-12-29 01:38+0900\n"
6
- "PO-Revision-Date: 2013-12-29 01:38+0900\n"
7
  "Last-Translator: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
8
  "Language-Team: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -18,99 +18,108 @@ msgstr ""
18
  msgid "An excellent plugin to customize the management screens."
19
  msgstr ""
20
 
21
- #: wp-admin-ui-customize.php:144
22
- #: wp-admin-ui-customize.php:183
23
  #: inc/reset_userrole.php:22
24
  msgid "Reset User Roles"
25
  msgstr ""
26
 
27
- #: wp-admin-ui-customize.php:173
 
28
  #: inc/setting_site.php:23
29
  msgid "Site Settings"
30
  msgstr ""
31
 
32
- #: wp-admin-ui-customize.php:174
 
33
  #: inc/setting_admin_general.php:23
34
  msgid "General Screen Settings"
35
  msgstr ""
36
 
37
- #: wp-admin-ui-customize.php:176
 
38
  #: inc/setting_admin_bar_menu.php:25
39
  msgid "Admin Bar Menu"
40
  msgstr ""
41
 
42
- #: wp-admin-ui-customize.php:177
 
43
  #: inc/setting_sidemenu.php:25
44
  msgid "Side Menu"
45
  msgstr ""
46
 
47
- #: wp-admin-ui-customize.php:178
 
48
  #: inc/setting_manage_metabox.php:24
49
  msgid "Manage meta box"
50
  msgstr ""
51
 
52
- #: wp-admin-ui-customize.php:179
 
53
  #: inc/setting_post_add_edit.php:23
54
  msgid "Add New Post and Edit Post Screen Setting"
55
  msgstr ""
56
 
57
- #: wp-admin-ui-customize.php:180
 
58
  #: inc/setting_appearance_menus.php:22
59
  msgid "Appearance Menus Screen Setting"
60
  msgstr ""
61
 
62
- #: wp-admin-ui-customize.php:181
 
63
  #: inc/setting_loginscreen.php:34
64
  msgid "Login Screen"
65
  msgstr ""
66
 
67
- #: wp-admin-ui-customize.php:182
 
68
  #: inc/setting_plugin_cap.php:23
69
  #, php-format
70
  msgid "%1$s of %2$s %3$s"
71
  msgstr ""
72
 
73
- #: wp-admin-ui-customize.php:387
74
  #, php-format
75
  msgid "Authority to apply the setting is not selected. <a href=\"%s\">From here</a>, please select the permissions you want to set."
76
  msgstr ""
77
 
78
- #: wp-admin-ui-customize.php:412
79
  msgid "Apply user roles"
80
  msgstr ""
81
 
82
- #: wp-admin-ui-customize.php:756
83
- #: wp-admin-ui-customize.php:929
84
  msgid "Sub Menus"
85
  msgstr ""
86
 
87
- #: wp-admin-ui-customize.php:851
88
- #: wp-admin-ui-customize.php:873
89
  msgid "Menu Group"
90
  msgstr ""
91
 
92
- #: wp-admin-ui-customize.php:871
93
  msgid "Show only on front end."
94
  msgstr ""
95
 
96
- #: wp-admin-ui-customize.php:891
97
  msgid "If you want edit to name, please edit of translation file(PO)."
98
  msgstr ""
99
 
100
- #: wp-admin-ui-customize.php:1091
101
  msgid "Front"
102
  msgstr ""
103
 
104
- #: wp-admin-ui-customize.php:2248
105
  #: inc/setting_default.php:185
106
  msgid "Thank you for your donation."
107
  msgstr ""
108
 
109
- #: wp-admin-ui-customize.php:2263
110
  msgid "Thank you for considering donate."
111
  msgstr ""
112
 
113
- #: wp-admin-ui-customize.php:2263
114
  #: inc/setting_default.php:37
115
  msgid "Donate"
116
  msgstr ""
@@ -152,14 +161,14 @@ msgid "You want to reset the user roles?"
152
  msgstr ""
153
 
154
  #: inc/reset_userrole.php:42
155
- #: inc/setting_admin_bar_menu.php:94
156
- #: inc/setting_admin_general.php:189
157
  #: inc/setting_appearance_menus.php:99
158
  #: inc/setting_dashboard.php:250
159
  #: inc/setting_default.php:130
160
  #: inc/setting_loginscreen.php:160
161
- #: inc/setting_manage_metabox.php:251
162
- #: inc/setting_plugin_cap.php:92
163
  #: inc/setting_post_add_edit.php:109
164
  #: inc/setting_sidemenu.php:232
165
  #: inc/setting_site.php:168
@@ -213,21 +222,21 @@ msgstr ""
213
  msgid "Documents is here"
214
  msgstr ""
215
 
216
- #: inc/setting_admin_bar_menu.php:93
217
- #: inc/setting_admin_general.php:188
218
  #: inc/setting_appearance_menus.php:98
219
  #: inc/setting_dashboard.php:249
220
  #: inc/setting_default.php:129
221
  #: inc/setting_loginscreen.php:159
222
- #: inc/setting_manage_metabox.php:250
223
- #: inc/setting_plugin_cap.php:91
224
  #: inc/setting_post_add_edit.php:108
225
  #: inc/setting_sidemenu.php:231
226
  #: inc/setting_site.php:167
227
  msgid "Reset all settings?"
228
  msgstr ""
229
 
230
- #: inc/setting_admin_bar_menu.php:99
231
  #: inc/setting_sidemenu.php:27
232
  #: inc/setting_sidemenu.php:48
233
  msgid "Menu items that can be added"
@@ -269,19 +278,19 @@ msgstr ""
269
  msgid "CSS file to load"
270
  msgstr ""
271
 
272
- #: inc/setting_admin_general.php:162
273
  msgid "Title tag for Admin screen"
274
  msgstr ""
275
 
276
- #: inc/setting_admin_general.php:167
277
  msgid "Remove \"Wordpress\" from the title tag of the Admin screen"
278
  msgstr ""
279
 
280
- #: inc/setting_admin_general.php:172
281
  msgid "Resizing Admin bar"
282
  msgstr ""
283
 
284
- #: inc/setting_admin_general.php:177
285
  msgid "Not resize"
286
  msgstr ""
287
 
@@ -305,23 +314,23 @@ msgstr ""
305
 
306
  #: inc/setting_dashboard.php:154
307
  #: inc/setting_manage_metabox.php:49
308
- #: inc/setting_manage_metabox.php:112
309
- #: inc/setting_manage_metabox.php:183
310
  msgid "Could not read the meta box."
311
  msgstr ""
312
 
313
  #: inc/setting_dashboard.php:155
314
  #: inc/setting_manage_metabox.php:50
315
- #: inc/setting_manage_metabox.php:113
316
- #: inc/setting_manage_metabox.php:184
317
  #, php-format
318
  msgid "Meta boxes will be loaded automatically when you <strong>%s</strong>."
319
  msgstr ""
320
 
321
  #: inc/setting_dashboard.php:166
322
- #: inc/setting_manage_metabox.php:62
323
- #: inc/setting_manage_metabox.php:125
324
- #: inc/setting_manage_metabox.php:196
325
  msgid "Change metabox title to"
326
  msgstr ""
327
 
@@ -498,14 +507,32 @@ msgstr ""
498
  msgid "Please enter if you want to change of Metabox label name."
499
  msgstr ""
500
 
501
- #: inc/setting_manage_metabox.php:88
502
- #: inc/setting_manage_metabox.php:150
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
503
  #: inc/setting_post_add_edit.php:55
504
  msgid "Notice: If hide the Discussion on metabox, comments does not display of Add New Post on apply user role."
505
  msgstr ""
506
 
507
- #: inc/setting_manage_metabox.php:90
508
- #: inc/setting_manage_metabox.php:152
509
  msgid "Please set from here if you want to view the comments on screen."
510
  msgstr ""
511
 
2
  msgstr ""
3
  "Project-Id-Version: WP Admin UI Customize\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-04-25 15:03+0900\n"
6
+ "PO-Revision-Date: 2014-04-25 15:15+0900\n"
7
  "Last-Translator: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
8
  "Language-Team: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
18
  msgid "An excellent plugin to customize the management screens."
19
  msgstr ""
20
 
21
+ #: wp-admin-ui-customize.php: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
  msgid "General Screen Settings"
37
  msgstr ""
38
 
39
+ #: wp-admin-ui-customize.php:174
40
+ #: inc/reset_userrole.php:59
41
  #: inc/setting_admin_bar_menu.php:25
42
  msgid "Admin Bar Menu"
43
  msgstr ""
44
 
45
+ #: wp-admin-ui-customize.php:175
46
+ #: inc/reset_userrole.php:60
47
  #: inc/setting_sidemenu.php:25
48
  msgid "Side Menu"
49
  msgstr ""
50
 
51
+ #: wp-admin-ui-customize.php:176
52
+ #: inc/reset_userrole.php:61
53
  #: inc/setting_manage_metabox.php:24
54
  msgid "Manage meta box"
55
  msgstr ""
56
 
57
+ #: wp-admin-ui-customize.php:177
58
+ #: inc/reset_userrole.php:62
59
  #: inc/setting_post_add_edit.php:23
60
  msgid "Add New Post and Edit Post Screen Setting"
61
  msgstr ""
62
 
63
+ #: wp-admin-ui-customize.php:178
64
+ #: inc/reset_userrole.php:63
65
  #: inc/setting_appearance_menus.php:22
66
  msgid "Appearance Menus Screen Setting"
67
  msgstr ""
68
 
69
+ #: wp-admin-ui-customize.php:179
70
+ #: inc/reset_userrole.php:64
71
  #: inc/setting_loginscreen.php:34
72
  msgid "Login Screen"
73
  msgstr ""
74
 
75
+ #: wp-admin-ui-customize.php:180
76
+ #: inc/reset_userrole.php:65
77
  #: inc/setting_plugin_cap.php:23
78
  #, php-format
79
  msgid "%1$s of %2$s %3$s"
80
  msgstr ""
81
 
82
+ #: wp-admin-ui-customize.php:331
83
  #, php-format
84
  msgid "Authority to apply the setting is not selected. <a href=\"%s\">From here</a>, please select the permissions you want to set."
85
  msgstr ""
86
 
87
+ #: wp-admin-ui-customize.php:356
88
  msgid "Apply user roles"
89
  msgstr ""
90
 
91
+ #: wp-admin-ui-customize.php:700
92
+ #: wp-admin-ui-customize.php:873
93
  msgid "Sub Menus"
94
  msgstr ""
95
 
96
+ #: wp-admin-ui-customize.php:795
97
+ #: wp-admin-ui-customize.php:817
98
  msgid "Menu Group"
99
  msgstr ""
100
 
101
+ #: wp-admin-ui-customize.php:815
102
  msgid "Show only on front end."
103
  msgstr ""
104
 
105
+ #: wp-admin-ui-customize.php:835
106
  msgid "If you want edit to name, please edit of translation file(PO)."
107
  msgstr ""
108
 
109
+ #: wp-admin-ui-customize.php:1035
110
  msgid "Front"
111
  msgstr ""
112
 
113
+ #: wp-admin-ui-customize.php:2278
114
  #: inc/setting_default.php:185
115
  msgid "Thank you for your donation."
116
  msgstr ""
117
 
118
+ #: wp-admin-ui-customize.php:2293
119
  msgid "Thank you for considering donate."
120
  msgstr ""
121
 
122
+ #: wp-admin-ui-customize.php:2293
123
  #: inc/setting_default.php:37
124
  msgid "Donate"
125
  msgstr ""
161
  msgstr ""
162
 
163
  #: inc/reset_userrole.php:42
164
+ #: inc/setting_admin_bar_menu.php:95
165
+ #: inc/setting_admin_general.php:201
166
  #: inc/setting_appearance_menus.php:99
167
  #: inc/setting_dashboard.php:250
168
  #: inc/setting_default.php:130
169
  #: inc/setting_loginscreen.php:160
170
+ #: inc/setting_manage_metabox.php:296
171
+ #: inc/setting_plugin_cap.php:94
172
  #: inc/setting_post_add_edit.php:109
173
  #: inc/setting_sidemenu.php:232
174
  #: inc/setting_site.php:168
222
  msgid "Documents is here"
223
  msgstr ""
224
 
225
+ #: inc/setting_admin_bar_menu.php:94
226
+ #: inc/setting_admin_general.php:200
227
  #: inc/setting_appearance_menus.php:98
228
  #: inc/setting_dashboard.php:249
229
  #: inc/setting_default.php:129
230
  #: inc/setting_loginscreen.php:159
231
+ #: inc/setting_manage_metabox.php:295
232
+ #: inc/setting_plugin_cap.php:93
233
  #: inc/setting_post_add_edit.php:108
234
  #: inc/setting_sidemenu.php:231
235
  #: inc/setting_site.php:167
236
  msgid "Reset all settings?"
237
  msgstr ""
238
 
239
+ #: inc/setting_admin_bar_menu.php:100
240
  #: inc/setting_sidemenu.php:27
241
  #: inc/setting_sidemenu.php:48
242
  msgid "Menu items that can be added"
278
  msgid "CSS file to load"
279
  msgstr ""
280
 
281
+ #: inc/setting_admin_general.php:161
282
  msgid "Title tag for Admin screen"
283
  msgstr ""
284
 
285
+ #: inc/setting_admin_general.php:166
286
  msgid "Remove \"Wordpress\" from the title tag of the Admin screen"
287
  msgstr ""
288
 
289
+ #: inc/setting_admin_general.php:173
290
  msgid "Resizing Admin bar"
291
  msgstr ""
292
 
293
+ #: inc/setting_admin_general.php:178
294
  msgid "Not resize"
295
  msgstr ""
296
 
314
 
315
  #: inc/setting_dashboard.php:154
316
  #: inc/setting_manage_metabox.php:49
317
+ #: inc/setting_manage_metabox.php:127
318
+ #: inc/setting_manage_metabox.php:213
319
  msgid "Could not read the meta box."
320
  msgstr ""
321
 
322
  #: inc/setting_dashboard.php:155
323
  #: inc/setting_manage_metabox.php:50
324
+ #: inc/setting_manage_metabox.php:128
325
+ #: inc/setting_manage_metabox.php:214
326
  #, php-format
327
  msgid "Meta boxes will be loaded automatically when you <strong>%s</strong>."
328
  msgstr ""
329
 
330
  #: inc/setting_dashboard.php:166
331
+ #: inc/setting_manage_metabox.php:65
332
+ #: inc/setting_manage_metabox.php:143
333
+ #: inc/setting_manage_metabox.php:229
334
  msgid "Change metabox title to"
335
  msgstr ""
336
 
507
  msgid "Please enter if you want to change of Metabox label name."
508
  msgstr ""
509
 
510
+ #: inc/setting_manage_metabox.php:63
511
+ #: inc/setting_manage_metabox.php:141
512
+ #: inc/setting_manage_metabox.php:227
513
+ msgid "Default Open"
514
+ msgstr ""
515
+
516
+ #: inc/setting_manage_metabox.php:91
517
+ #: inc/setting_manage_metabox.php:168
518
+ #: inc/setting_manage_metabox.php:253
519
+ msgid "Not Reduce"
520
+ msgstr ""
521
+
522
+ #: inc/setting_manage_metabox.php:92
523
+ #: inc/setting_manage_metabox.php:169
524
+ #: inc/setting_manage_metabox.php:254
525
+ msgid "Reduce"
526
+ msgstr ""
527
+
528
+ #: inc/setting_manage_metabox.php:103
529
+ #: inc/setting_manage_metabox.php:180
530
  #: inc/setting_post_add_edit.php:55
531
  msgid "Notice: If hide the Discussion on metabox, comments does not display of Add New Post on apply user role."
532
  msgstr ""
533
 
534
+ #: inc/setting_manage_metabox.php:105
535
+ #: inc/setting_manage_metabox.php:182
536
  msgid "Please set from here if you want to view the comments on screen."
537
  msgstr ""
538
 
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === WP Admin UI Customize ===
2
  Contributors: gqevu6bsiz
3
- Donate link: http://gqevu6bsiz.chicappa.jp/please-donation/?utm_source=wporg&utm_medium=donate&utm_content=wauc&utm_campaign=1_4_4_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: 3.8.1
7
- Stable tag: 1.4.4.2
8
  License: GPL2
9
 
10
  Customize the management screen UI.
@@ -50,6 +50,12 @@ These to Customization is possible.
50
 
51
  == Changelog ==
52
 
 
 
 
 
 
 
53
  = 1.4.4.2 =
54
  * Fixed: Timing change of metabox load.
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
4
  Tags: admin, post, posts, page, option, sitemenu, menu, custom, customize, dashboard, admin_bar, multisite, network, metabox
5
  Requires at least: 3.6.1
6
+ Tested up to: 3.9
7
+ Stable tag: 1.5
8
  License: GPL2
9
 
10
  Customize the management screen UI.
50
 
51
  == Changelog ==
52
 
53
+ = 1.5 =
54
+ * Fixed: Strip html tag from the title of Side menu settings.
55
+ * Fixed: Update notification on the Front-end.
56
+ * Added: Settings default show of Metaboxes manage.
57
+ * Added: Possible to settings children-free menu of Side menu settings.
58
+
59
  = 1.4.4.2 =
60
  * Fixed: Timing change of metabox load.
61
 
wp-admin-ui-customize.php CHANGED
@@ -2,10 +2,10 @@
2
  /*
3
  Plugin Name: WP Admin UI Customize
4
  Description: An excellent plugin to customize the management screens.
5
- Plugin URI: http://wpadminuicustomize.com/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_4_4_2
6
- Version: 1.4.4.2
7
  Author: gqevu6bsiz
8
- Author URI: http://gqevu6bsiz.chicappa.jp/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_4_4_2
9
  Text Domain: wauc
10
  Domain Path: /languages
11
  */
@@ -27,6 +27,7 @@ Domain Path: /languages
27
  */
28
 
29
 
 
30
 
31
  class WP_Admin_UI_Customize
32
  {
@@ -55,7 +56,7 @@ class WP_Admin_UI_Customize
55
 
56
 
57
  function __construct() {
58
- $this->Ver = '1.4.4.2';
59
  $this->Name = 'WP Admin UI Customize';
60
  $this->Dir = plugin_dir_path( __FILE__ );
61
  $this->Url = plugin_dir_url( __FILE__ );
@@ -119,9 +120,6 @@ class WP_Admin_UI_Customize
119
  // data update
120
  add_action( 'admin_init' , array( $this , 'dataUpdate') );
121
 
122
- // data convert
123
- add_action( 'admin_init' , array( $this , 'dataConvert' ) );
124
-
125
  // default admin bar menu load.
126
  add_action( 'wp_before_admin_bar_render' , array( $this , 'admin_bar_default_load' ) , 1 );
127
 
@@ -183,60 +181,6 @@ class WP_Admin_UI_Customize
183
  add_submenu_page( $this->PageSlug , __( 'Reset User Roles' , $this->ltd ) , __( 'Reset User Roles' , $this->ltd ) , $capability , $this->PageSlug . '_reset_userrole' , array( $this , 'reset_userrole' ) );
184
  }
185
 
186
- // PluginSetup
187
- function dataConvert() {
188
- $ManageMetabox = get_option( $this->Record['manage_metabox'] );
189
- $RemoveMetabox = get_option( $this->ltd . '_removemetabox_setting' );
190
-
191
- if( empty( $ManageMetabox ) && !empty( $RemoveMetabox ) ) {
192
-
193
- // Old Data Convert
194
- $ManageMetabox["UPFN"] = $this->UPFN;
195
- unset( $RemoveMetabox["UPFN"] );
196
-
197
- if( !empty( $RemoveMetabox ) ) {
198
- foreach( $RemoveMetabox as $post_type => $box ) {
199
- foreach( $box as $id => $v ) {
200
- if( !empty( $v ) ) {
201
- $ManageMetabox[$post_type][$id] = array( "remove" => 1 , "name" => "" );
202
- }
203
- }
204
- }
205
-
206
- update_option( $this->Record['manage_metabox'] , $ManageMetabox );
207
- delete_option( $this->ltd . '_removemetabox_setting' );
208
- }
209
-
210
- }
211
-
212
- $Dashboard = get_option( $this->Record['dashboard'] );
213
- if( !empty( $Dashboard ) ) {
214
- unset( $Dashboard["UPFN"] );
215
-
216
- if( !empty( $Dashboard["metabox_move"] ) ) {
217
- $metabox_move = 1;
218
- unset( $Dashboard["metabox_move"] );
219
- }
220
-
221
- $is_array = true;
222
- foreach( $Dashboard as $box_id => $val ) {
223
- if( !is_array( $val ) ) {
224
- $Dashboard[$box_id] = array( "remove" => 1 );
225
- $is_array = false;
226
- }
227
- }
228
- if( $is_array == false ) {
229
-
230
- $Dashboard["UPFN"] = $this->UPFN;
231
- if( !empty( $metabox_move ) ) {
232
- $Dashboard["metabox_move"] = 1;
233
- }
234
-
235
- update_option( $this->Record['dashboard'] , $Dashboard );
236
- }
237
- }
238
- }
239
-
240
  // PluginSetup
241
  function activated_plugin() {
242
  include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
@@ -718,7 +662,7 @@ class WP_Admin_UI_Customize
718
  </div>
719
  <div class="widget-title">
720
  <h4>
721
- <?php echo $menu_widget["title"]; ?>
722
  : <span class="in-widget-title"><?php echo $menu_widget["slug"]; ?></span>
723
  </h4>
724
  </div>
@@ -767,7 +711,7 @@ class WP_Admin_UI_Customize
767
  </div>
768
  <div class="widget-title">
769
  <h4>
770
- <?php echo $sm["title"]; ?>
771
  : <span class="in-widget-title"><?php echo $sm["slug"]; ?></span>
772
  </h4>
773
  </div>
@@ -1589,6 +1533,7 @@ class WP_Admin_UI_Customize
1589
  if( array_key_exists( $UserRole , $SettingRole ) ) {
1590
 
1591
  add_action( 'wp_footer' , array( $this , 'admin_bar_resizing' ) );
 
1592
 
1593
  $GetData = $this->get_flit_data( 'site' );
1594
 
@@ -1596,7 +1541,6 @@ class WP_Admin_UI_Customize
1596
  if( $GetData["admin_bar"] == "hide" ) {
1597
  add_filter( 'show_admin_bar' , '__return_false' );
1598
  } elseif( $GetData["admin_bar"] == "front" ) {
1599
- add_action( 'init' , array( $this , 'notice_dismiss' ) , 2 );
1600
  add_action( 'wp_before_admin_bar_render' , array( $this , 'admin_bar_menu') , 25 );
1601
  }
1602
  }
@@ -2054,9 +1998,21 @@ class WP_Admin_UI_Customize
2054
  foreach( $meta_box as $priority => $box ) {
2055
  foreach( $box as $metabox_id => $b ) {
2056
  if( !empty( $Data[$metabox_id]["remove"] ) ) {
 
2057
  remove_meta_box( $metabox_id , $post_type , $context );
2058
- } elseif( !empty( $Data[$metabox_id]["name"] ) ) {
2059
- $wp_meta_boxes[$post_type][$context][$priority][$metabox_id]["title"] = stripslashes( $Data[$metabox_id]["name"] );
 
 
 
 
 
 
 
 
 
 
 
2060
  }
2061
  }
2062
  }
@@ -2070,6 +2026,18 @@ class WP_Admin_UI_Customize
2070
 
2071
  }
2072
 
 
 
 
 
 
 
 
 
 
 
 
 
2073
  // FilterStart
2074
  function sidemenu() {
2075
  global $menu;
@@ -2327,5 +2295,7 @@ class WP_Admin_UI_Customize
2327
  }
2328
 
2329
  }
 
2330
  $wauc = new WP_Admin_UI_Customize();
2331
 
 
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
6
+ Version: 1.5
7
  Author: gqevu6bsiz
8
+ Author URI: http://gqevu6bsiz.chicappa.jp/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_5
9
  Text Domain: wauc
10
  Domain Path: /languages
11
  */
27
  */
28
 
29
 
30
+ if ( !class_exists( 'WP_Admin_UI_Customize' ) ) :
31
 
32
  class WP_Admin_UI_Customize
33
  {
56
 
57
 
58
  function __construct() {
59
+ $this->Ver = '1.5';
60
  $this->Name = 'WP Admin UI Customize';
61
  $this->Dir = plugin_dir_path( __FILE__ );
62
  $this->Url = plugin_dir_url( __FILE__ );
120
  // data update
121
  add_action( 'admin_init' , array( $this , 'dataUpdate') );
122
 
 
 
 
123
  // default admin bar menu load.
124
  add_action( 'wp_before_admin_bar_render' , array( $this , 'admin_bar_default_load' ) , 1 );
125
 
181
  add_submenu_page( $this->PageSlug , __( 'Reset User Roles' , $this->ltd ) , __( 'Reset User Roles' , $this->ltd ) , $capability , $this->PageSlug . '_reset_userrole' , array( $this , 'reset_userrole' ) );
182
  }
183
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
184
  // PluginSetup
185
  function activated_plugin() {
186
  include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
662
  </div>
663
  <div class="widget-title">
664
  <h4>
665
+ <?php echo strip_tags( $menu_widget["title"] ); ?>
666
  : <span class="in-widget-title"><?php echo $menu_widget["slug"]; ?></span>
667
  </h4>
668
  </div>
711
  </div>
712
  <div class="widget-title">
713
  <h4>
714
+ <?php echo strip_tags( $sm["title"] ); ?>
715
  : <span class="in-widget-title"><?php echo $sm["slug"]; ?></span>
716
  </h4>
717
  </div>
1533
  if( array_key_exists( $UserRole , $SettingRole ) ) {
1534
 
1535
  add_action( 'wp_footer' , array( $this , 'admin_bar_resizing' ) );
1536
+ add_action( 'wp_loaded' , array( $this , 'notice_dismiss' ) , 2 );
1537
 
1538
  $GetData = $this->get_flit_data( 'site' );
1539
 
1541
  if( $GetData["admin_bar"] == "hide" ) {
1542
  add_filter( 'show_admin_bar' , '__return_false' );
1543
  } elseif( $GetData["admin_bar"] == "front" ) {
 
1544
  add_action( 'wp_before_admin_bar_render' , array( $this , 'admin_bar_menu') , 25 );
1545
  }
1546
  }
1998
  foreach( $meta_box as $priority => $box ) {
1999
  foreach( $box as $metabox_id => $b ) {
2000
  if( !empty( $Data[$metabox_id]["remove"] ) ) {
2001
+
2002
  remove_meta_box( $metabox_id , $post_type , $context );
2003
+
2004
+ } else {
2005
+
2006
+ if( !empty( $Data[$metabox_id]["name"] ) ) {
2007
+ $wp_meta_boxes[$post_type][$context][$priority][$metabox_id]["title"] = stripslashes( $Data[$metabox_id]["name"] );
2008
+ }
2009
+
2010
+ if( !empty( $Data[$metabox_id]["toggle"] ) ) {
2011
+ add_filter( 'postbox_classes_' . $post_type . '_' . $metabox_id , array( $this , 'manage_metabox_close' ) );
2012
+ } else {
2013
+ add_filter( 'postbox_classes_' . $post_type . '_' . $metabox_id , array( $this , 'manage_metabox_open' ) );
2014
+ }
2015
+
2016
  }
2017
  }
2018
  }
2026
 
2027
  }
2028
 
2029
+ // FilterStart
2030
+ function manage_metabox_close( $classes ) {
2031
+ $classes = array( 'closed' );
2032
+ return $classes;
2033
+ }
2034
+
2035
+ // FilterStart
2036
+ function manage_metabox_open( $classes ) {
2037
+ $classes = array();
2038
+ return $classes;
2039
+ }
2040
+
2041
  // FilterStart
2042
  function sidemenu() {
2043
  global $menu;
2295
  }
2296
 
2297
  }
2298
+
2299
  $wauc = new WP_Admin_UI_Customize();
2300
 
2301
+ endif;