WP Admin UI Customize - Version 1.3.8.2

Version Description

  • Added to expansion of Admin bar settings (new window).
  • Update: Translate.
Download this release

Release Info

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

Code changes from version 1.3.8.1 to 1.3.8.2

inc/setting_admin_bar_menu.php CHANGED
@@ -55,7 +55,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
55
 
56
  <?php if( $main_node->id == $sub_node->parent ) : ?>
57
 
58
- <?php $pnsn[] = array( 'id' => $sub_node->id , 'title' => stripslashes( $sub_node->title ) , 'parent' => $main_node->id , 'href' => $sub_node->href , 'group' => false , 'new' => false ); ?>
59
 
60
  <?php endif; ?>
61
 
@@ -63,7 +63,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
63
 
64
  <?php endif; ?>
65
 
66
- <?php $menu_widget = array( 'id' => $main_node->id , 'title' => stripslashes( $main_node->title ) , 'parent' => '' , 'href' => $main_node->href , 'group' => false , 'new' => false , 'subnode' => $pnsn ); ?>
67
  <?php $this->admin_bar_menu_widget( $menu_widget ); ?>
68
 
69
  <?php endforeach; ?>
@@ -80,16 +80,24 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
80
  <?php foreach( $Data["right"]["sub"] as $sub_node) : ?>
81
 
82
  <?php if( $main_node["id"] == $sub_node["parent"] ) : ?>
83
-
84
- <?php $pnsn[] = array( 'id' => $sub_node["id"] , 'title' => stripslashes( $sub_node["title"] ) , 'parent' => $main_node["id"] , 'href' => $sub_node["href"] , 'group' => false , 'new' => false ); ?>
 
 
 
 
85
 
86
  <?php endif; ?>
87
 
88
  <?php endforeach; ?>
89
 
90
  <?php endif; ?>
91
-
92
- <?php $menu_widget = array( 'id' => $main_node["id"] , 'title' => stripslashes( $main_node["title"] ) , 'parent' => '' , 'href' => $main_node["href"] , 'group' => false , 'new' => false , 'subnode' => $pnsn ); ?>
 
 
 
 
93
  <?php $this->admin_bar_menu_widget( $menu_widget ); ?>
94
 
95
  <?php endforeach; ?>
@@ -120,7 +128,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
120
 
121
  <?php if( $main_node->id == $sub_node->parent ) : ?>
122
 
123
- <?php $pnsn[] = array( 'id' => $sub_node->id , 'title' => stripslashes( $sub_node->title ) , 'parent' => $main_node->id , 'href' => $sub_node->href , 'group' => false , 'new' => false ); ?>
124
 
125
  <?php endif; ?>
126
 
@@ -128,7 +136,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
128
 
129
  <?php endif; ?>
130
 
131
- <?php $menu_widget = array( 'id' => $main_node->id , 'title' => stripslashes( $main_node->title ) , 'parent' => '' , 'href' => $main_node->href , 'group' => false , 'new' => false , 'subnode' => $pnsn ); ?>
132
  <?php $this->admin_bar_menu_widget( $menu_widget ); ?>
133
 
134
  <?php endforeach; ?>
@@ -145,16 +153,24 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
145
  <?php foreach( $Data["left"]["sub"] as $sub_node) : ?>
146
 
147
  <?php if( $main_node["id"] == $sub_node["parent"] ) : ?>
148
-
149
- <?php $pnsn[] = array( 'id' => $sub_node["id"] , 'title' => stripslashes( $sub_node["title"] ) , 'parent' => $main_node["id"] , 'href' => $sub_node["href"] , 'group' => false , 'new' => false ); ?>
 
 
 
 
150
 
151
  <?php endif; ?>
152
 
153
  <?php endforeach; ?>
154
 
155
  <?php endif; ?>
156
-
157
- <?php $menu_widget = array( 'id' => $main_node["id"] , 'title' => stripslashes( $main_node["title"] ) , 'parent' => '' , 'href' => $main_node["href"] , 'group' => false , 'new' => false , 'subnode' => $pnsn ); ?>
 
 
 
 
158
  <?php $this->admin_bar_menu_widget( $menu_widget ); ?>
159
 
160
  <?php endforeach; ?>
@@ -180,7 +196,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
180
  <div class="inside">
181
 
182
  <h4><?php _e( 'Custom' ); ?> <?php _e( 'Menus' ); ?></h4>
183
- <?php $menu_widget = array( 'id' => "custom_node" , 'title' => "" , 'parent' => '' , 'href' => "" , 'group' => false , 'new' => true , 'subnode' => false ); ?>
184
  <?php $this->admin_bar_menu_widget( $menu_widget ); ?>
185
  <div class="clear"></div>
186
 
@@ -189,14 +205,14 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
189
  <?php foreach( $AllDefaultNodes["left"]["main"] as $node_id => $node ) : ?>
190
 
191
  <p class="description"><?php echo $node_id; ?></p>
192
- <?php $menu_widget = array( 'id' => $node->id , 'title' => $node->title , 'parent' => '' , 'href' => $node->href , 'group' => false , 'new' => true , 'subnode' => false ); ?>
193
  <?php $this->admin_bar_menu_widget( $menu_widget ); ?>
194
 
195
  <?php foreach( $AllDefaultNodes["left"]["sub"] as $child_node_id => $child_node ) : ?>
196
 
197
  <?php if( $child_node->parent == $node_id ) : ?>
198
 
199
- <?php $menu_widget = array( 'id' => $child_node->id , 'title' => $child_node->title , 'parent' => '' , 'href' => $child_node->href , 'group' => false , 'new' => true , 'subnode' => false ); ?>
200
  <?php $this->admin_bar_menu_widget( $menu_widget ); ?>
201
 
202
  <?php endif; ?>
@@ -214,14 +230,14 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
214
  <?php foreach( $AllDefaultNodes["right"]["main"] as $node_id => $node ) : ?>
215
 
216
  <p class="description"><?php echo $node_id; ?></p>
217
- <?php $menu_widget = array( 'id' => $node->id , 'title' => $node->title , 'parent' => '' , 'href' => $node->href , 'group' => false , 'new' => true , 'subnode' => false ); ?>
218
  <?php $this->admin_bar_menu_widget( $menu_widget ); ?>
219
 
220
  <?php foreach( $AllDefaultNodes["right"]["sub"] as $child_node_id => $child_node ) : ?>
221
 
222
  <?php if( $child_node->parent == $node_id ) : ?>
223
 
224
- <?php $menu_widget = array( 'id' => $child_node->id , 'title' => $child_node->title , 'parent' => '' , 'href' => $child_node->href , 'group' => false , 'new' => true , 'subnode' => false ); ?>
225
  <?php $this->admin_bar_menu_widget( $menu_widget ); ?>
226
 
227
  <?php endif; ?>
@@ -344,9 +360,10 @@ jQuery(document).ready(function($) {
344
  wauc_widget_each = function widget_each() {
345
  var $Count = 0;
346
  $('#wauc_setting_admin_bar_menu #poststuff #post-body .postbox-container .postbox .inside .widget').each(function() {
347
- var $InputId = $(this).children(".widget-inside").children(".settings").children(".description").children(".idtext");
348
- var $InputLink = $(this).children(".widget-inside").children(".settings").children(".description").children(".linktext");
349
- var $InputTitle = $(this).children(".widget-inside").children(".settings").children("label").children(".titletext");
 
350
  var $InputParentName = $(this).children(".widget-inside").children(".settings").children(".parent");
351
 
352
  var $BoxName = "";
@@ -375,6 +392,7 @@ jQuery(document).ready(function($) {
375
  $InputId.attr("name", $Name+'[id]');
376
  $InputLink.attr("name", $Name+'[href]');
377
  $InputTitle.attr("name", $Name+'[title]');
 
378
  $InputParentName.attr("name", $Name+'[parent]');
379
 
380
  if ( $(this).parent().parent().parent().parent().hasClass("submenu") ) {
55
 
56
  <?php if( $main_node->id == $sub_node->parent ) : ?>
57
 
58
+ <?php $pnsn[] = array( 'id' => $sub_node->id , 'title' => stripslashes( $sub_node->title ) , 'parent' => $main_node->id , 'href' => $sub_node->href , 'group' => false , 'meta' => $sub_node->meta , 'new' => false ); ?>
59
 
60
  <?php endif; ?>
61
 
63
 
64
  <?php endif; ?>
65
 
66
+ <?php $menu_widget = array( 'id' => $main_node->id , 'title' => stripslashes( $main_node->title ) , 'parent' => '' , 'href' => $main_node->href , 'group' => false , 'meta' => $main_node->meta , 'new' => false , 'subnode' => $pnsn ); ?>
67
  <?php $this->admin_bar_menu_widget( $menu_widget ); ?>
68
 
69
  <?php endforeach; ?>
80
  <?php foreach( $Data["right"]["sub"] as $sub_node) : ?>
81
 
82
  <?php if( $main_node["id"] == $sub_node["parent"] ) : ?>
83
+
84
+ <?php if( empty( $sub_node["meta"] ) ) : ?>
85
+ <?php $sub_node["meta"] = array(); ?>
86
+ <?php endif; ?>
87
+
88
+ <?php $pnsn[] = array( 'id' => $sub_node["id"] , 'title' => stripslashes( $sub_node["title"] ) , 'parent' => $main_node["id"] , 'href' => $sub_node["href"] , 'group' => false , 'meta' => $sub_node["meta"] , 'new' => false ); ?>
89
 
90
  <?php endif; ?>
91
 
92
  <?php endforeach; ?>
93
 
94
  <?php endif; ?>
95
+
96
+ <?php if( empty( $main_node["meta"] ) ) : ?>
97
+ <?php $main_node["meta"] = array(); ?>
98
+ <?php endif; ?>
99
+
100
+ <?php $menu_widget = array( 'id' => $main_node["id"] , 'title' => stripslashes( $main_node["title"] ) , 'parent' => '' , 'href' => $main_node["href"] , 'group' => false , 'meta' => $main_node["meta"] , 'new' => false , 'subnode' => $pnsn ); ?>
101
  <?php $this->admin_bar_menu_widget( $menu_widget ); ?>
102
 
103
  <?php endforeach; ?>
128
 
129
  <?php if( $main_node->id == $sub_node->parent ) : ?>
130
 
131
+ <?php $pnsn[] = array( 'id' => $sub_node->id , 'title' => stripslashes( $sub_node->title ) , 'parent' => $main_node->id , 'href' => $sub_node->href , 'group' => false , 'meta' => $sub_node->meta , 'new' => false ); ?>
132
 
133
  <?php endif; ?>
134
 
136
 
137
  <?php endif; ?>
138
 
139
+ <?php $menu_widget = array( 'id' => $main_node->id , 'title' => stripslashes( $main_node->title ) , 'parent' => '' , 'href' => $main_node->href , 'group' => false , 'meta' => $main_node->meta , 'new' => false , 'subnode' => $pnsn ); ?>
140
  <?php $this->admin_bar_menu_widget( $menu_widget ); ?>
141
 
142
  <?php endforeach; ?>
153
  <?php foreach( $Data["left"]["sub"] as $sub_node) : ?>
154
 
155
  <?php if( $main_node["id"] == $sub_node["parent"] ) : ?>
156
+
157
+ <?php if( empty( $sub_node["meta"] ) ) : ?>
158
+ <?php $sub_node["meta"] = array(); ?>
159
+ <?php endif; ?>
160
+
161
+ <?php $pnsn[] = array( 'id' => $sub_node["id"] , 'title' => stripslashes( $sub_node["title"] ) , 'parent' => $main_node["id"] , 'href' => $sub_node["href"] , 'group' => false , 'meta' => $sub_node["meta"] , 'new' => false ); ?>
162
 
163
  <?php endif; ?>
164
 
165
  <?php endforeach; ?>
166
 
167
  <?php endif; ?>
168
+
169
+ <?php if( empty( $main_node["meta"] ) ) : ?>
170
+ <?php $main_node["meta"] = array(); ?>
171
+ <?php endif; ?>
172
+
173
+ <?php $menu_widget = array( 'id' => $main_node["id"] , 'title' => stripslashes( $main_node["title"] ) , 'parent' => '' , 'href' => $main_node["href"] , 'group' => false , 'meta' => $main_node["meta"] , 'new' => false , 'subnode' => $pnsn ); ?>
174
  <?php $this->admin_bar_menu_widget( $menu_widget ); ?>
175
 
176
  <?php endforeach; ?>
196
  <div class="inside">
197
 
198
  <h4><?php _e( 'Custom' ); ?> <?php _e( 'Menus' ); ?></h4>
199
+ <?php $menu_widget = array( 'id' => "custom_node" , 'title' => "" , 'parent' => '' , 'href' => "" , 'group' => false , 'meta' => array() , 'new' => true , 'subnode' => false ); ?>
200
  <?php $this->admin_bar_menu_widget( $menu_widget ); ?>
201
  <div class="clear"></div>
202
 
205
  <?php foreach( $AllDefaultNodes["left"]["main"] as $node_id => $node ) : ?>
206
 
207
  <p class="description"><?php echo $node_id; ?></p>
208
+ <?php $menu_widget = array( 'id' => $node->id , 'title' => $node->title , 'parent' => '' , 'href' => $node->href , 'group' => false , 'meta' => $node->meta , 'new' => true , 'subnode' => false ); ?>
209
  <?php $this->admin_bar_menu_widget( $menu_widget ); ?>
210
 
211
  <?php foreach( $AllDefaultNodes["left"]["sub"] as $child_node_id => $child_node ) : ?>
212
 
213
  <?php if( $child_node->parent == $node_id ) : ?>
214
 
215
+ <?php $menu_widget = array( 'id' => $child_node->id , 'title' => $child_node->title , 'parent' => '' , 'href' => $child_node->href , 'group' => false , 'meta' => $child_node->meta , 'new' => true , 'subnode' => false ); ?>
216
  <?php $this->admin_bar_menu_widget( $menu_widget ); ?>
217
 
218
  <?php endif; ?>
230
  <?php foreach( $AllDefaultNodes["right"]["main"] as $node_id => $node ) : ?>
231
 
232
  <p class="description"><?php echo $node_id; ?></p>
233
+ <?php $menu_widget = array( 'id' => $node->id , 'title' => $node->title , 'parent' => '' , 'href' => $node->href , 'group' => false , 'new' => $node->meta , 'new' => true , 'subnode' => false ); ?>
234
  <?php $this->admin_bar_menu_widget( $menu_widget ); ?>
235
 
236
  <?php foreach( $AllDefaultNodes["right"]["sub"] as $child_node_id => $child_node ) : ?>
237
 
238
  <?php if( $child_node->parent == $node_id ) : ?>
239
 
240
+ <?php $menu_widget = array( 'id' => $child_node->id , 'title' => $child_node->title , 'parent' => '' , 'href' => $child_node->href , 'group' => false , 'new' => $child_node->meta , 'new' => true , 'subnode' => false ); ?>
241
  <?php $this->admin_bar_menu_widget( $menu_widget ); ?>
242
 
243
  <?php endif; ?>
360
  wauc_widget_each = function widget_each() {
361
  var $Count = 0;
362
  $('#wauc_setting_admin_bar_menu #poststuff #post-body .postbox-container .postbox .inside .widget').each(function() {
363
+ var $InputId = $(this).children(".widget-inside").children(".settings").children(".field-url").children(".idtext");
364
+ var $InputLink = $(this).children(".widget-inside").children(".settings").children(".field-url").children(".linktext");
365
+ var $InputTitle = $(this).children(".widget-inside").children(".settings").children(".field-title").children("label").children(".titletext");
366
+ var $InputMetaTarget = $(this).children(".widget-inside").children(".settings").children(".field-meta").children("label").children(".meta_target");
367
  var $InputParentName = $(this).children(".widget-inside").children(".settings").children(".parent");
368
 
369
  var $BoxName = "";
392
  $InputId.attr("name", $Name+'[id]');
393
  $InputLink.attr("name", $Name+'[href]');
394
  $InputTitle.attr("name", $Name+'[title]');
395
+ $InputMetaTarget.attr("name", $Name+'[meta][target]');
396
  $InputParentName.attr("name", $Name+'[parent]');
397
 
398
  if ( $(this).parent().parent().parent().parent().hasClass("submenu") ) {
inc/setting_admin_general.php CHANGED
@@ -127,7 +127,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
127
  <?php if( !empty( $Data[$field] ) ) : $Val = esc_html( stripslashes( $Data[$field] ) ); endif; ?>
128
  <input type="text" name="data[<?php echo $field; ?>]" value="<?php echo $Val; ?>" class="large-text" />
129
  <p class="description"><?php _e( 'Default' ); ?>: <?php _e( 'Thank you for creating with <a href="http://wordpress.org/">WordPress</a>.' ); ?></p>
130
- <a href="#TB_inline?height=300&width=600&inlineId=list_variables&modal=false" title="<?php _e( 'Variables' , $this->ltd ); ?>" class="thickbox"><?php _e( 'Available Shortcodes' , $this->ltd ); ?></a>
131
  </td>
132
  </tr>
133
  </tbody>
@@ -150,7 +150,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
150
  <?php $Val = ''; ?>
151
  <?php if( !empty( $Data[$field] ) ) : $Val = strip_tags( $Data[$field] ); endif; ?>
152
  <input type="text" name="data[<?php echo $field; ?>]" value="<?php echo $Val; ?>" class="regular-text">
153
- <a href="#TB_inline?height=300&width=600&inlineId=list_variables&modal=false" title="<?php _e( 'Variables' , $this->ltd ); ?>" class="thickbox"><?php _e( 'Available Shortcodes' , $this->ltd ); ?></a>
154
  </td>
155
  </tr>
156
 
127
  <?php if( !empty( $Data[$field] ) ) : $Val = esc_html( stripslashes( $Data[$field] ) ); endif; ?>
128
  <input type="text" name="data[<?php echo $field; ?>]" value="<?php echo $Val; ?>" class="large-text" />
129
  <p class="description"><?php _e( 'Default' ); ?>: <?php _e( 'Thank you for creating with <a href="http://wordpress.org/">WordPress</a>.' ); ?></p>
130
+ <a href="#TB_inline?height=300&width=600&inlineId=list_variables&modal=false" title="<?php _e( 'Shortcodes' , $this->ltd ); ?>" class="thickbox"><?php _e( 'Available Shortcodes' , $this->ltd ); ?></a>
131
  </td>
132
  </tr>
133
  </tbody>
150
  <?php $Val = ''; ?>
151
  <?php if( !empty( $Data[$field] ) ) : $Val = strip_tags( $Data[$field] ); endif; ?>
152
  <input type="text" name="data[<?php echo $field; ?>]" value="<?php echo $Val; ?>" class="regular-text">
153
+ <a href="#TB_inline?height=300&width=600&inlineId=list_variables&modal=false" title="<?php _e( 'Shortcodes' , $this->ltd ); ?>" class="thickbox"><?php _e( 'Available Shortcodes' , $this->ltd ); ?></a>
154
  </td>
155
  </tr>
156
 
inc/setting_appearance_menus.php CHANGED
@@ -42,7 +42,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
42
  <?php $field = 'add_new_menu'; ?>
43
  <tr>
44
  <th>
45
- <label><?php _e( 'Add a new menu' , $this->ltd ); ?></label>
46
  </th>
47
  <td>
48
  <?php $Checked = ''; ?>
42
  <?php $field = 'add_new_menu'; ?>
43
  <tr>
44
  <th>
45
+ <label><?php _e( 'Create a new menu' , $this->ltd ); ?></label>
46
  </th>
47
  <td>
48
  <?php $Checked = ''; ?>
inc/setting_default.php CHANGED
@@ -23,7 +23,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
23
  <h2><?php echo $this->Name; ?></h2>
24
  <p><?php _e( 'Customize the UI of the management screen for all users.' , $this->ltd ); ?></p>
25
  <p><?php _e ( 'Please select the user roles that all settings will apply to.' , $this->ltd ); ?></p>
26
- <p class="description"><?php _e( 'Multiple settings not supported.' , $this->ltd ); ?></p>
27
  <p><strong><span style="color: orange;">new</span> <a href="<?php echo $this->Site; ?>multiple_about/?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank">WP Admin UI Customize Multiple Add-on</a></strong></p>
28
 
29
  <div id="poststuff">
@@ -61,7 +61,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
61
  <div class="stuffbox" id="aboutbox">
62
  <h3><span class="hndle"><?php _e( 'About plugin' , $this->ltd_p ); ?></span></h3>
63
  <div class="inside">
64
- <p><?php _e( 'Version check' , $this->ltd_p ); ?> : 3.5.2 - 3.6</p>
65
  <ul>
66
  <li><a href="<?php echo $this->Site; ?>?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank"><?php _e( 'Plugin\'s site' , $this->ltd_p ); ?></a></li>
67
  <li><a href="<?php echo $this->AuthorUrl; ?>?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank"><?php _e( 'Developer\'s site' , $this->ltd_p ); ?></a></li>
@@ -77,9 +77,9 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
77
  <h3><span class="hndle"><?php _e( 'Useful plugins' , $this->ltd_p ); ?></span></h3>
78
  <div class="inside">
79
  <p><strong><span style="color: orange;">new</span> <a href="<?php echo $this->Site; ?>multiple_about/?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank">WP Admin UI Customize Multiple Add-on</a></strong></p>
80
- <p class="description"><?php _e( 'This add-on is simply settings of different user roles.' , $this->ltd_p ); ?></p>
81
  <p><strong><a href="<?php echo $this->Site; ?>import_export_about/?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank">WP Admin UI Customize Import &amp; Export Add-on</a></strong></p>
82
- <p class="description"><?php _e( 'This add-on is import & export of settings data of WP Admin UI Customize.' , $this->ltd_p ); ?></p>
83
  <p><strong><a href="<?php echo $this->Site; ?>multisite_about/?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank">WP Admin UI Customize for Multisite</a></strong></p>
84
  <p class="description"><?php _e( 'This add-on is an add-on to unify the management screen of all sites.' , $this->ltd_p ); ?></p>
85
  <p><strong><a href="http://wordpress.org/extend/plugins/post-lists-view-custom/" target="_blank">Post Lists View Custom</a></strong></p>
@@ -157,7 +157,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
157
  <p><?php _e( 'Please consider the request to me if it is good.' , $this->ltd_p ); ?></p>
158
  <p>
159
  <a href="<?php echo $this->Site; ?>blog/category/example/?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank"><?php _e ( 'Example Customize' , $this->ltd_p ); ?></a> :
160
- <a href="<?php echo $this->AuthorUrl; ?>contact-us/?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank"><?php _e( 'Contact me' , $this->ltd_p ); ?></a></p>
161
  </div>
162
  </div>
163
 
23
  <h2><?php echo $this->Name; ?></h2>
24
  <p><?php _e( 'Customize the UI of the management screen for all users.' , $this->ltd ); ?></p>
25
  <p><?php _e ( 'Please select the user roles that all settings will apply to.' , $this->ltd ); ?></p>
26
+ <p class="description"><?php _e( 'Please use the Multiple Add-on If you want settings on User role basis.' , $this->ltd ); ?></p>
27
  <p><strong><span style="color: orange;">new</span> <a href="<?php echo $this->Site; ?>multiple_about/?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank">WP Admin UI Customize Multiple Add-on</a></strong></p>
28
 
29
  <div id="poststuff">
61
  <div class="stuffbox" id="aboutbox">
62
  <h3><span class="hndle"><?php _e( 'About plugin' , $this->ltd_p ); ?></span></h3>
63
  <div class="inside">
64
+ <p><?php _e( 'Version checked' , $this->ltd_p ); ?> : 3.5.2 - 3.6</p>
65
  <ul>
66
  <li><a href="<?php echo $this->Site; ?>?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank"><?php _e( 'Plugin\'s site' , $this->ltd_p ); ?></a></li>
67
  <li><a href="<?php echo $this->AuthorUrl; ?>?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank"><?php _e( 'Developer\'s site' , $this->ltd_p ); ?></a></li>
77
  <h3><span class="hndle"><?php _e( 'Useful plugins' , $this->ltd_p ); ?></span></h3>
78
  <div class="inside">
79
  <p><strong><span style="color: orange;">new</span> <a href="<?php echo $this->Site; ?>multiple_about/?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank">WP Admin UI Customize Multiple Add-on</a></strong></p>
80
+ <p class="description"><?php _e( 'This add-on is simply settings of multi user roles.' , $this->ltd_p ); ?></p>
81
  <p><strong><a href="<?php echo $this->Site; ?>import_export_about/?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank">WP Admin UI Customize Import &amp; Export Add-on</a></strong></p>
82
+ <p class="description"><?php _e( 'This add-on is Import/Export easily of the settings data.' , $this->ltd_p ); ?></p>
83
  <p><strong><a href="<?php echo $this->Site; ?>multisite_about/?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank">WP Admin UI Customize for Multisite</a></strong></p>
84
  <p class="description"><?php _e( 'This add-on is an add-on to unify the management screen of all sites.' , $this->ltd_p ); ?></p>
85
  <p><strong><a href="http://wordpress.org/extend/plugins/post-lists-view-custom/" target="_blank">Post Lists View Custom</a></strong></p>
157
  <p><?php _e( 'Please consider the request to me if it is good.' , $this->ltd_p ); ?></p>
158
  <p>
159
  <a href="<?php echo $this->Site; ?>blog/category/example/?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank"><?php _e ( 'Example Customize' , $this->ltd_p ); ?></a> :
160
+ <a href="<?php echo $this->Site; ?>contact/?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank"><?php _e( 'Contact me' , $this->ltd_p ); ?></a></p>
161
  </div>
162
  </div>
163
 
inc/setting_loginscreen.php CHANGED
@@ -52,7 +52,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
52
  <?php $Val = ''; ?>
53
  <?php if( !empty( $Data[$field] ) ) : $Val = strip_tags( $Data[$field] ); endif; ?>
54
  <input type="text" name="data[<?php echo $field; ?>]" value="<?php echo $Val; ?>" class="regular-text" id="<?php echo $field; ?>">
55
- <a href="#TB_inline?height=300&width=600&inlineId=list_variables&modal=false" title="<?php _e( 'Variables' , $this->ltd ); ?>" class="thickbox"><?php _e( 'Available Shortcodes' , $this->ltd ); ?></a>
56
 
57
  </td>
58
  </tr>
@@ -65,7 +65,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
65
  <?php $Val = ''; ?>
66
  <?php if( !empty( $Data[$field] ) ) : $Val = strip_tags( $Data[$field] ); endif; ?>
67
  <input type="text" name="data[<?php echo $field; ?>]" value="<?php echo $Val; ?>" class="regular-text" id="<?php echo $field; ?>">
68
- <a href="#TB_inline?height=300&width=600&inlineId=list_variables&modal=false" title="<?php _e( 'Variables' , $this->ltd ); ?>" class="thickbox"><?php _e( 'Available Shortcodes' , $this->ltd ); ?></a>
69
  </td>
70
  </tr>
71
  <?php $field = 'login_headerlogo'; ?>
@@ -77,7 +77,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
77
  <?php $Val = ''; ?>
78
  <?php if( !empty( $Data[$field] ) ) : $Val = strip_tags( $Data[$field] ); endif; ?>
79
  <input type="text" name="data[<?php echo $field; ?>]" value="<?php echo $Val; ?>" class="regular-text" id="<?php echo $field; ?>">
80
- <a href="#TB_inline?height=300&width=600&inlineId=list_variables&modal=false" title="<?php _e( 'Variables' , $this->ltd ); ?>" class="thickbox"><?php _e( 'Available Shortcodes' , $this->ltd ); ?></a>
81
  <?php if( !empty( $Val ) ) : ?>
82
  <?php $img = str_replace( '[blog_url]' , get_bloginfo( 'url' ) , $Val ); ?>
83
  <?php $img = str_replace( '[template_directory_uri]' , get_bloginfo( 'url' ) , $img ); ?>
@@ -105,7 +105,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
105
  <?php $Val = ''; ?>
106
  <?php if( !empty( $Data[$field] ) ) : $Val = strip_tags( $Data[$field] ); endif; ?>
107
  <input type="text" name="data[<?php echo $field; ?>]" value="<?php echo $Val; ?>" class="regular-text" id="<?php echo $field; ?>">
108
- <a href="#TB_inline?height=300&width=600&inlineId=list_variables&modal=false" title="<?php _e( 'Variables' , $this->ltd ); ?>" class="thickbox"><?php _e( 'Available Shortcodes' , $this->ltd ); ?></a>
109
  </td>
110
  </tr>
111
  <?php $field = 'login_footer'; ?>
@@ -117,7 +117,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
117
  <?php $Val = ''; ?>
118
  <?php if( !empty( $Data[$field] ) ) : $Val = stripslashes( esc_html( $Data[$field] ) ); endif; ?>
119
  <input type="text" name="data[<?php echo $field; ?>]" value="<?php echo $Val; ?>" class="large-text" id="<?php echo $field; ?>">
120
- <a href="#TB_inline?height=300&width=600&inlineId=list_variables&modal=false" title="<?php _e( 'Variables' , $this->ltd ); ?>" class="thickbox"><?php _e( 'Available Shortcodes' , $this->ltd ); ?></a>
121
  </td>
122
  </tr>
123
  </tbody>
52
  <?php $Val = ''; ?>
53
  <?php if( !empty( $Data[$field] ) ) : $Val = strip_tags( $Data[$field] ); endif; ?>
54
  <input type="text" name="data[<?php echo $field; ?>]" value="<?php echo $Val; ?>" class="regular-text" id="<?php echo $field; ?>">
55
+ <a href="#TB_inline?height=300&width=600&inlineId=list_variables&modal=false" title="<?php _e( 'Shortcodes' , $this->ltd ); ?>" class="thickbox"><?php _e( 'Available Shortcodes' , $this->ltd ); ?></a>
56
 
57
  </td>
58
  </tr>
65
  <?php $Val = ''; ?>
66
  <?php if( !empty( $Data[$field] ) ) : $Val = strip_tags( $Data[$field] ); endif; ?>
67
  <input type="text" name="data[<?php echo $field; ?>]" value="<?php echo $Val; ?>" class="regular-text" id="<?php echo $field; ?>">
68
+ <a href="#TB_inline?height=300&width=600&inlineId=list_variables&modal=false" title="<?php _e( 'Shortcodes' , $this->ltd ); ?>" class="thickbox"><?php _e( 'Available Shortcodes' , $this->ltd ); ?></a>
69
  </td>
70
  </tr>
71
  <?php $field = 'login_headerlogo'; ?>
77
  <?php $Val = ''; ?>
78
  <?php if( !empty( $Data[$field] ) ) : $Val = strip_tags( $Data[$field] ); endif; ?>
79
  <input type="text" name="data[<?php echo $field; ?>]" value="<?php echo $Val; ?>" class="regular-text" id="<?php echo $field; ?>">
80
+ <a href="#TB_inline?height=300&width=600&inlineId=list_variables&modal=false" title="<?php _e( 'Shortcodes' , $this->ltd ); ?>" class="thickbox"><?php _e( 'Available Shortcodes' , $this->ltd ); ?></a>
81
  <?php if( !empty( $Val ) ) : ?>
82
  <?php $img = str_replace( '[blog_url]' , get_bloginfo( 'url' ) , $Val ); ?>
83
  <?php $img = str_replace( '[template_directory_uri]' , get_bloginfo( 'url' ) , $img ); ?>
105
  <?php $Val = ''; ?>
106
  <?php if( !empty( $Data[$field] ) ) : $Val = strip_tags( $Data[$field] ); endif; ?>
107
  <input type="text" name="data[<?php echo $field; ?>]" value="<?php echo $Val; ?>" class="regular-text" id="<?php echo $field; ?>">
108
+ <a href="#TB_inline?height=300&width=600&inlineId=list_variables&modal=false" title="<?php _e( 'Shortcodes' , $this->ltd ); ?>" class="thickbox"><?php _e( 'Available Shortcodes' , $this->ltd ); ?></a>
109
  </td>
110
  </tr>
111
  <?php $field = 'login_footer'; ?>
117
  <?php $Val = ''; ?>
118
  <?php if( !empty( $Data[$field] ) ) : $Val = stripslashes( esc_html( $Data[$field] ) ); endif; ?>
119
  <input type="text" name="data[<?php echo $field; ?>]" value="<?php echo $Val; ?>" class="large-text" id="<?php echo $field; ?>">
120
+ <a href="#TB_inline?height=300&width=600&inlineId=list_variables&modal=false" title="<?php _e( 'Shortcodes' , $this->ltd ); ?>" class="thickbox"><?php _e( 'Available Shortcodes' , $this->ltd ); ?></a>
121
  </td>
122
  </tr>
123
  </tbody>
inc/setting_sidemenu.php CHANGED
@@ -24,6 +24,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
24
  <?php echo $this->Msg; ?>
25
  <h2><?php _e( 'Side Menu' , $this->ltd ); ?></h2>
26
  <p><?php _e( 'Please change the menu by drag and drop.' , $this->ltd ); ?></p>
 
27
  <p><strong><?php _e( 'Notice: Please do not place the same multiple menu slug.' , $this->ltd ); ?></strong></p>
28
 
29
  <h3 id="wauc-apply-user-roles"><?php echo $this->get_apply_roles(); ?></h3>
24
  <?php echo $this->Msg; ?>
25
  <h2><?php _e( 'Side Menu' , $this->ltd ); ?></h2>
26
  <p><?php _e( 'Please change the menu by drag and drop.' , $this->ltd ); ?></p>
27
+ <p class="description"><?php echo sprintf( __( 'New plugin menus will be added to the <strong>%s</strong>.' , $this->ltd ) , __( 'Menu items that can be added' , $this->ltd ) ); ?>
28
  <p><strong><?php _e( 'Notice: Please do not place the same multiple menu slug.' , $this->ltd ); ?></strong></p>
29
 
30
  <h3 id="wauc-apply-user-roles"><?php echo $this->get_apply_roles(); ?></h3>
languages/wauc-ja.mo CHANGED
Binary file
languages/wauc-ja.po CHANGED
@@ -1,248 +1,356 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Admin UI Customize\n"
4
- "POT-Creation-Date: \n"
5
- "PO-Revision-Date: 2013-08-11 01:36+0900\n"
6
- "Language-Team: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
 
 
7
  "MIME-Version: 1.0\n"
8
- "Content-Type: text/plain; charset=utf-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
10
- "Language: ja_JP\n"
 
 
 
 
11
  "X-Poedit-SourceCharset: utf-8\n"
12
- "Last-Translator: Gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
13
- "X-Generator: Poedit 1.5.5\n"
14
 
 
15
  msgid "An excellent plugin to customize the management screens."
16
  msgstr "管理画面のカスタマイズに優れたプラグインです。"
17
 
 
 
 
18
  msgid "Reset User Roles"
19
  msgstr "ユーザー権限リセット"
20
 
21
- msgid "Customize the UI of the management screen for all users."
22
- msgstr "全てのユーザーの管理画面UIをカスタマイズします。"
 
 
23
 
24
- msgid "Authority to apply the setting is not selected. <a href=\"%s\">From here</a>, please select the permissions you want to set."
25
- msgstr "設定を適用する権限が選択されていません。<a href=\"%s\">こちら</a>から設定する権限を選んでください。"
 
 
26
 
27
- msgid "Please select the user roles that all settings will apply to."
28
- msgstr "設定を適用する権限を選んでください。"
 
 
29
 
30
- msgid "Apply user roles"
31
- msgstr "適用されるユーザー権限"
 
 
32
 
33
- msgid "Multiple settings not supported."
34
- msgstr "複数設定はサポートしておりません。"
 
 
35
 
36
- msgid "Reset all settings?"
37
- msgstr "リセットしますか?"
 
 
38
 
39
- msgid "Site Settings"
40
- msgstr "サイトの設定"
 
 
41
 
42
- msgid "Tag to be output"
43
- msgstr "出力されるタグ"
 
 
44
 
45
- msgid "Please display when using the Windows Live Writer."
46
- msgstr "Windows Live Writer を使う場合は表示させてください。"
 
 
47
 
48
- msgid "Information of XML-rpc"
49
- msgstr "XML-RPC投稿プロトコル(外部からの投稿)情報"
 
50
 
51
- msgid "Sitewide feed"
52
- msgstr "サイト全体のフィードリンク"
 
 
53
 
54
- msgid "Extra feed"
55
- msgstr "その他のフィードリンク"
 
 
 
56
 
57
- msgid "Hide the Admin bar on the front end"
58
- msgstr "サイトで管理バーを非表示"
 
59
 
60
- msgid "Apply WP Admin UI Customize settings on the front end admin bar also"
61
- msgstr "WP Admin UI Customize の管理バーの設定をフロントにも適用"
 
 
 
 
 
62
 
63
- msgid "Account Title"
64
- msgstr "アカウント表記"
 
65
 
66
- msgid "WordPress Logo"
67
- msgstr "WordPress のロゴ"
 
68
 
69
- msgid "Add New"
70
- msgstr "新規追加"
 
 
71
 
72
- msgid "Update Menu"
73
- msgstr "アップデート表示"
 
 
74
 
75
- msgid "Profile Edit"
76
- msgstr "プロフィール編集"
 
77
 
78
- msgid "General Screen Settings"
79
- msgstr "一般設定"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
80
 
 
81
  msgid "Notifications"
82
  msgstr "通知"
83
 
84
- msgid "Not notified"
85
- msgstr "通知しない"
86
-
87
  msgid "WordPress core update notice"
88
  msgstr "WordPress コアアップデート通知"
89
 
 
 
 
 
 
 
 
90
  msgid "Plugin update notice"
91
  msgstr "プラグイン アップデート通知"
92
 
 
93
  msgid "Theme update notice"
94
  msgstr "テーマ アップデート通知"
95
 
 
 
 
 
 
 
96
  msgid "Footer text"
97
  msgstr "フッターテキスト"
98
 
 
 
 
 
 
 
99
  msgid "Title tag for Admin screen"
100
  msgstr "管理画面のタイトルタグ"
101
 
 
102
  msgid "Remove \"Wordpress\" from the title tag of the Admin screen"
103
  msgstr "管理画面のタイトルタグから\"WordPress\"を削除"
104
 
105
- msgid "Screen Options and Help Tab"
106
- msgstr "表示オプションとヘルプタブ"
 
 
 
 
 
 
107
 
 
108
  msgid "Meta boxes"
109
  msgstr "メタボックス"
110
 
 
 
 
 
 
111
  msgid "Other"
112
  msgstr "その他"
113
 
 
114
  msgid "Meta box movement restriction"
115
  msgstr "メタボックスの移動制限"
116
 
 
117
  msgid "Lock meta box positions"
118
  msgstr "メタボックスを移動させない"
119
 
120
- msgid "Admin Bar Menu"
121
- msgstr "管理バー"
122
-
123
- msgid "Notice: Please do not place the same multiple menu slug."
124
- msgstr "注意: 複数同じメニュースラッグを設置しないでください。"
125
-
126
- msgid "Can be more than one custom menu."
127
- msgstr "カスタムメニューは複数設置できます。"
128
-
129
- msgid "Menu items that can be added"
130
- msgstr "追加できるメニュー一覧"
131
-
132
- msgid "Custom Menu"
133
- msgstr "カスタムメニュー"
134
 
135
- msgid "Side Menu"
136
- msgstr "サイドメニュー"
 
137
 
138
- msgid "Please change the menu by drag and drop."
139
- msgstr "ドラッグ&ドロップでメニューを変更してください。"
 
140
 
141
- msgid "Current menu"
142
- msgstr "現在のメニュー"
 
143
 
144
- msgid "Sepalator"
145
- msgstr "区切り線"
 
146
 
147
- msgid "Menu Title"
148
- msgstr "メニュータイトル"
 
149
 
150
- msgid "Sub Menus"
151
- msgstr "サブメニュー"
 
152
 
153
- msgid "Remove meta box"
154
- msgstr "メタボックス削除"
 
155
 
156
- msgid "Could not read the meta box."
157
- msgstr "メタボックスの読み込みができませんでした。"
 
158
 
159
- msgid "Meta boxes will be loaded automatically when you Edit %s."
160
- msgstr "%s 編集画面を一度表示すると自動でメタボックスが読み込まれます。"
 
161
 
162
- msgid "Please update or add a \"post\" and a \"page\" to load the available meta boxes."
163
- msgstr "新しいプラグインのメタボックスを読み込むには編集画面に一度アクセスしてください。"
 
164
 
 
 
 
165
  msgid "Notice: If hide the Discussion on metabox, comments does not display of Add New Post on apply user role."
166
  msgstr "注意: ディスカッションメタボックスを隠す場合、適用された権限の新規投稿はコメントが表示されません。"
167
 
168
- msgid "Please set from here if you want to view the comments on screen."
169
- msgstr "コメントが表示されるようにしたい場合はここから設定してください。"
170
-
171
- msgid "Add New Post and Edit Post Screen Setting"
172
- msgstr "新規投稿と投稿編集の設定"
173
-
174
- msgid "Allow people to post comments on new articles when hide to discussion of metabox"
175
- msgstr "ディスカッションメタボックスが非表示でも新しい投稿へのコメントを許可する"
176
-
177
  msgid "Please select if you want to display the comments on Site."
178
  msgstr "サイトでコメントを表示させたい場合選択してください。"
179
 
 
 
180
  msgid "However, this will follow the setting of %s."
181
  msgstr "ただし、これは%sの設定に従います。"
182
 
 
 
183
  msgid "Please select the %s"
184
  msgstr "%s を選択してください。"
185
 
 
186
  msgid "Only appears when you have settings to the default permalink."
187
  msgstr "デフォルトのパーマリンクに設定している時のみ表示されます。"
188
 
189
- msgid "Appearance Menus Screen Setting"
190
- msgstr "外観メニュー画面の設定"
191
-
192
- msgid "Add a new menu"
193
- msgstr "メニューの新規作成"
194
-
195
- msgid "This is useful when you want to use only the menus have been created."
196
- msgstr "作成済みのメニューだけを使用する時に便利です。"
197
-
198
- msgid "Login Screen"
199
- msgstr "ログイン画面"
200
-
201
- msgid "Is not possible to check the login form if you do not log out in the case of MultiSite."
202
- msgstr "マルチサイトの場合はログアウトしないとログインフォームの表示確認はできません。"
203
-
204
- msgid "Login Screen Settings"
205
- msgstr "ログイン画面の設定"
206
-
207
- msgid "Show Login Screen"
208
- msgstr "ログイン画面を表示"
209
-
210
- msgid "Login Form"
211
- msgstr "ログインフォーム"
212
 
213
- msgid "The link after clicking on the logo"
214
- msgstr "ロゴをクリック後のリンク"
 
 
215
 
216
- msgid "Logo Title"
217
- msgstr "ロゴタイトル"
 
 
 
218
 
219
- msgid "Logo Image path"
220
- msgstr "ロゴ画像のパス"
 
 
221
 
222
- msgid "CSS file to load"
223
- msgstr "CSSファイルを読み込む"
 
 
224
 
225
- msgid "Available Shortcodes"
226
- msgstr "利用可能なショートコード一覧"
 
227
 
228
- msgid "Shortcodes"
229
- msgstr "ショートコード一覧"
 
 
 
 
 
230
 
231
- msgid "Shortcode"
232
- msgstr "ショートコード"
 
233
 
234
- msgid "Blog name of logged in."
235
- msgstr "ログイン中のブログ名"
 
236
 
237
- msgid "Blog URL of logged in."
238
- msgstr "ログイン中のブログURL"
 
239
 
240
- msgid "In your case."
241
- msgstr "これはあなたの場合です。"
 
242
 
243
- msgid "You want to reset the user roles?"
244
- msgstr "ユーザー権限をリセットしてもよろしいですか?"
 
245
 
246
- msgid "Applied user roles"
247
- msgstr "適用されたユーザー権限"
 
248
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Admin UI Customize\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-09-07 12:24+0900\n"
6
+ "PO-Revision-Date: 2013-09-07 13:46+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"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: __;_e\n"
13
+ "X-Poedit-Basepath: ../\n"
14
+ "Plural-Forms: nplurals=1; plural=0;\n"
15
+ "X-Poedit-Language: Japanese\n"
16
+ "X-Poedit-Country: JAPAN\n"
17
  "X-Poedit-SourceCharset: utf-8\n"
18
+ "X-Poedit-SearchPath-0: .\n"
 
19
 
20
+ #: wp-admin-ui-customize.php:4
21
  msgid "An excellent plugin to customize the management screens."
22
  msgstr "管理画面のカスタマイズに優れたプラグインです。"
23
 
24
+ #: wp-admin-ui-customize.php:116
25
+ #: wp-admin-ui-customize.php:152
26
+ #: inc/reset_userrole.php:16
27
  msgid "Reset User Roles"
28
  msgstr "ユーザー権限リセット"
29
 
30
+ #: wp-admin-ui-customize.php:143
31
+ #: inc/setting_site.php:22
32
+ msgid "Site Settings"
33
+ msgstr "サイトの設定"
34
 
35
+ #: wp-admin-ui-customize.php:144
36
+ #: inc/setting_admin_general.php:22
37
+ msgid "General Screen Settings"
38
+ msgstr "一般設定"
39
 
40
+ #: wp-admin-ui-customize.php:146
41
+ #: inc/setting_admin_bar_menu.php:23
42
+ msgid "Admin Bar Menu"
43
+ msgstr "管理バー"
44
 
45
+ #: wp-admin-ui-customize.php:147
46
+ #: inc/setting_sidemenu.php:25
47
+ msgid "Side Menu"
48
+ msgstr "サイドメニュー"
49
 
50
+ #: wp-admin-ui-customize.php:148
51
+ #: inc/setting_removemtabox.php:22
52
+ msgid "Remove meta box"
53
+ msgstr "メタボックス削除"
54
 
55
+ #: wp-admin-ui-customize.php:149
56
+ #: inc/setting_post_add_edit.php:22
57
+ msgid "Add New Post and Edit Post Screen Setting"
58
+ msgstr "新規投稿と投稿編集の設定"
59
 
60
+ #: wp-admin-ui-customize.php:150
61
+ #: inc/setting_appearance_menus.php:21
62
+ msgid "Appearance Menus Screen Setting"
63
+ msgstr "外観メニュー画面の設定"
64
 
65
+ #: wp-admin-ui-customize.php:151
66
+ #: inc/setting_loginscreen.php:32
67
+ msgid "Login Screen"
68
+ msgstr "ログイン画面"
69
 
70
+ #: wp-admin-ui-customize.php:279
71
+ #, php-format
72
+ msgid "Authority to apply the setting is not selected. <a href=\"%s\">From here</a>, please select the permissions you want to set."
73
+ msgstr "設定を適用する権限が選択されていません。<a href=\"%s\">こちら</a>から設定する権限を選んでください。"
74
 
75
+ #: wp-admin-ui-customize.php:304
76
+ msgid "Apply user roles"
77
+ msgstr "適用されるユーザー権限"
78
 
79
+ #: wp-admin-ui-customize.php:531
80
+ #: wp-admin-ui-customize.php:653
81
+ msgid "Sub Menus"
82
+ msgstr "サブメニュー"
83
 
84
+ #: inc/list_variables.php:17
85
+ #: inc/setting_admin_bar_menu.php:30
86
+ #: inc/setting_sidemenu.php:32
87
+ msgid "Shortcodes"
88
+ msgstr "ショートコード一覧"
89
 
90
+ #: inc/list_variables.php:42
91
+ msgid "Blog name of logged in."
92
+ msgstr "ログイン中のブログ名"
93
 
94
+ #: inc/list_variables.php:51
95
+ msgid "Blog URL of logged in."
96
+ msgstr "ログイン中のブログURL"
97
+
98
+ #: inc/list_variables.php:95
99
+ msgid "In your case."
100
+ msgstr "これはあなたの場合です。"
101
 
102
+ #: inc/reset_userrole.php:23
103
+ msgid "Applied user roles"
104
+ msgstr "適用されたユーザー権限"
105
 
106
+ #: inc/reset_userrole.php:33
107
+ msgid "You want to reset the user roles?"
108
+ msgstr "ユーザー権限をリセットしてもよろしいですか?"
109
 
110
+ #: inc/setting_admin_bar_menu.php:24
111
+ #: inc/setting_sidemenu.php:26
112
+ msgid "Please change the menu by drag and drop."
113
+ msgstr "ドラッグ&ドロップでメニューを変更してください。"
114
 
115
+ #: inc/setting_admin_bar_menu.php:25
116
+ #: inc/setting_sidemenu.php:28
117
+ msgid "Notice: Please do not place the same multiple menu slug."
118
+ msgstr "注意: 複数同じメニュースラッグを設置しないでください。"
119
 
120
+ #: inc/setting_admin_bar_menu.php:26
121
+ msgid "Can be more than one custom menu."
122
+ msgstr "カスタムメニューは複数設置できます。"
123
 
124
+ #: inc/setting_admin_bar_menu.php:30
125
+ #: inc/setting_admin_general.php:130
126
+ #: inc/setting_admin_general.php:153
127
+ #: inc/setting_loginscreen.php:55
128
+ #: inc/setting_loginscreen.php:68
129
+ #: inc/setting_loginscreen.php:80
130
+ #: inc/setting_loginscreen.php:108
131
+ #: inc/setting_loginscreen.php:120
132
+ #: inc/setting_sidemenu.php:32
133
+ msgid "Available Shortcodes"
134
+ msgstr "利用可能なショートコード一覧"
135
+
136
+ #: inc/setting_admin_bar_menu.php:195
137
+ #: inc/setting_sidemenu.php:27
138
+ #: inc/setting_sidemenu.php:47
139
+ msgid "Menu items that can be added"
140
+ msgstr "追加できるメニュー一覧"
141
+
142
+ #: inc/setting_admin_bar_menu.php:263
143
+ #: inc/setting_admin_general.php:186
144
+ #: inc/setting_appearance_menus.php:95
145
+ #: inc/setting_dashboard.php:181
146
+ #: inc/setting_default.php:129
147
+ #: inc/setting_loginscreen.php:143
148
+ #: inc/setting_post_add_edit.php:106
149
+ #: inc/setting_removemtabox.php:140
150
+ #: inc/setting_sidemenu.php:230
151
+ #: inc/setting_site.php:165
152
+ msgid "Reset all settings?"
153
+ msgstr "リセットしますか?"
154
 
155
+ #: inc/setting_admin_general.php:39
156
  msgid "Notifications"
157
  msgstr "通知"
158
 
159
+ #: inc/setting_admin_general.php:45
 
 
160
  msgid "WordPress core update notice"
161
  msgstr "WordPress コアアップデート通知"
162
 
163
+ #: inc/setting_admin_general.php:51
164
+ #: inc/setting_admin_general.php:62
165
+ #: inc/setting_admin_general.php:73
166
+ msgid "Not notified"
167
+ msgstr "通知しない"
168
+
169
+ #: inc/setting_admin_general.php:56
170
  msgid "Plugin update notice"
171
  msgstr "プラグイン アップデート通知"
172
 
173
+ #: inc/setting_admin_general.php:67
174
  msgid "Theme update notice"
175
  msgstr "テーマ アップデート通知"
176
 
177
+ #: inc/setting_admin_general.php:83
178
+ msgid "Screen Options and Help Tab"
179
+ msgstr "表示オプションとヘルプタブ"
180
+
181
+ #: inc/setting_admin_general.php:122
182
+ #: inc/setting_loginscreen.php:114
183
  msgid "Footer text"
184
  msgstr "フッターテキスト"
185
 
186
+ #: inc/setting_admin_general.php:147
187
+ #: inc/setting_loginscreen.php:102
188
+ msgid "CSS file to load"
189
+ msgstr "CSSファイルを読み込む"
190
+
191
+ #: inc/setting_admin_general.php:160
192
  msgid "Title tag for Admin screen"
193
  msgstr "管理画面のタイトルタグ"
194
 
195
+ #: inc/setting_admin_general.php:165
196
  msgid "Remove \"Wordpress\" from the title tag of the Admin screen"
197
  msgstr "管理画面のタイトルタグから\"WordPress\"を削除"
198
 
199
+ #: inc/setting_appearance_menus.php:45
200
+ msgid "Create a new menu"
201
+ msgstr "新規メニュー作成"
202
+
203
+ #: inc/setting_appearance_menus.php:51
204
+ #: inc/setting_appearance_menus.php:69
205
+ msgid "This is useful when you want to use only the menus have been created."
206
+ msgstr "作成済みのメニューだけを使用する時に便利です。"
207
 
208
+ #: inc/setting_dashboard.php:38
209
  msgid "Meta boxes"
210
  msgstr "メタボックス"
211
 
212
+ #: inc/setting_dashboard.php:45
213
+ msgid "Welcome Panel"
214
+ msgstr "ウェルカムパネル"
215
+
216
+ #: inc/setting_dashboard.php:148
217
  msgid "Other"
218
  msgstr "その他"
219
 
220
+ #: inc/setting_dashboard.php:155
221
  msgid "Meta box movement restriction"
222
  msgstr "メタボックスの移動制限"
223
 
224
+ #: inc/setting_dashboard.php:160
225
  msgid "Lock meta box positions"
226
  msgstr "メタボックスを移動させない"
227
 
228
+ #: inc/setting_default.php:24
229
+ msgid "Customize the UI of the management screen for all users."
230
+ msgstr "全てのユーザーの管理画面UIをカスタマイズします。"
 
 
 
 
 
 
 
 
 
 
 
231
 
232
+ #: inc/setting_default.php:25
233
+ msgid "Please select the user roles that all settings will apply to."
234
+ msgstr "設定を適用する権限を選んでください。"
235
 
236
+ #: inc/setting_default.php:26
237
+ msgid "Please use the Multiple Add-on If you want settings on User role basis."
238
+ msgstr "ユーザー権限ごとに設定したい場合は Multiple Add-on を使用してください。"
239
 
240
+ #: inc/setting_loginscreen.php:22
241
+ msgid "Login Screen Settings"
242
+ msgstr "ログイン画面の設定"
243
 
244
+ #: inc/setting_loginscreen.php:30
245
+ msgid "Is not possible to check the login form if you do not log out in the case of MultiSite."
246
+ msgstr "マルチサイトの場合はログアウトしないとログインフォームの表示確認はできません。"
247
 
248
+ #: inc/setting_loginscreen.php:32
249
+ msgid "Show Login Screen"
250
+ msgstr "ログイン画面を表示"
251
 
252
+ #: inc/setting_loginscreen.php:42
253
+ msgid "Login Form"
254
+ msgstr "ログインフォーム"
255
 
256
+ #: inc/setting_loginscreen.php:49
257
+ msgid "The link after clicking on the logo"
258
+ msgstr "ロゴをクリック後のリンク"
259
 
260
+ #: inc/setting_loginscreen.php:62
261
+ msgid "Logo Title"
262
+ msgstr "ロゴタイトル"
263
 
264
+ #: inc/setting_loginscreen.php:74
265
+ msgid "Logo Image path"
266
+ msgstr "ロゴ画像のパス"
267
 
268
+ #: inc/setting_post_add_edit.php:46
269
+ msgid "Allow people to post comments on new articles when hide to discussion of metabox"
270
+ msgstr "ディスカッションメタボックスが非表示でも新しい投稿へのコメントを許可する"
271
 
272
+ #: inc/setting_post_add_edit.php:53
273
+ #: inc/setting_removemtabox.php:62
274
+ #: inc/setting_removemtabox.php:109
275
  msgid "Notice: If hide the Discussion on metabox, comments does not display of Add New Post on apply user role."
276
  msgstr "注意: ディスカッションメタボックスを隠す場合、適用された権限の新規投稿はコメントが表示されません。"
277
 
278
+ #: inc/setting_post_add_edit.php:54
 
 
 
 
 
 
 
 
279
  msgid "Please select if you want to display the comments on Site."
280
  msgstr "サイトでコメントを表示させたい場合選択してください。"
281
 
282
+ #: inc/setting_post_add_edit.php:55
283
+ #, php-format
284
  msgid "However, this will follow the setting of %s."
285
  msgstr "ただし、これは%sの設定に従います。"
286
 
287
+ #: inc/setting_post_add_edit.php:57
288
+ #, php-format
289
  msgid "Please select the %s"
290
  msgstr "%s を選択してください。"
291
 
292
+ #: inc/setting_post_add_edit.php:83
293
  msgid "Only appears when you have settings to the default permalink."
294
  msgstr "デフォルトのパーマリンクに設定している時のみ表示されます。"
295
 
296
+ #: inc/setting_removemtabox.php:23
297
+ msgid "Please update or add a \"post\" and a \"page\" to load the available meta boxes."
298
+ msgstr "新しいプラグインのメタボックスを読み込むには編集画面に一度アクセスしてください。"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
299
 
300
+ #: inc/setting_removemtabox.php:44
301
+ #: inc/setting_removemtabox.php:91
302
+ msgid "Could not read the meta box."
303
+ msgstr "メタボックスの読み込みができませんでした。"
304
 
305
+ #: inc/setting_removemtabox.php:45
306
+ #: inc/setting_removemtabox.php:92
307
+ #, php-format
308
+ msgid "Meta boxes will be loaded automatically when you Edit %s."
309
+ msgstr "%s 編集画面を一度表示すると自動でメタボックスが読み込まれます。"
310
 
311
+ #: inc/setting_removemtabox.php:64
312
+ #: inc/setting_removemtabox.php:111
313
+ msgid "Please set from here if you want to view the comments on screen."
314
+ msgstr "コメントが表示されるようにしたい場合はここから設定してください。"
315
 
316
+ #: inc/setting_sidemenu.php:27
317
+ #, php-format
318
+ msgid "New plugin menus will be added to the <strong>%s</strong>."
319
+ msgstr "新しいプラグインメニューは <strong>%s</strong> に追加されます。"
320
 
321
+ #: inc/setting_sidemenu.php:112
322
+ msgid "Current menu"
323
+ msgstr "現在のメニュー"
324
 
325
+ #: inc/setting_site.php:53
326
+ #: inc/setting_site.php:66
327
+ #: inc/setting_site.php:79
328
+ #: inc/setting_site.php:92
329
+ #: inc/setting_site.php:105
330
+ msgid "Tag to be output"
331
+ msgstr "出力されるタグ"
332
 
333
+ #: inc/setting_site.php:65
334
+ msgid "Please display when using the Windows Live Writer."
335
+ msgstr "Windows Live Writer を使う場合は表示させてください。"
336
 
337
+ #: inc/setting_site.php:78
338
+ msgid "Information of XML-rpc"
339
+ msgstr "XML-RPC投稿プロトコル(外部からの投稿)情報"
340
 
341
+ #: inc/setting_site.php:91
342
+ msgid "Sitewide feed"
343
+ msgstr "サイト全体のフィードリンク"
344
 
345
+ #: inc/setting_site.php:104
346
+ msgid "Extra feed"
347
+ msgstr "その他のフィードリンク"
348
 
349
+ #: inc/setting_site.php:132
350
+ msgid "Hide the Admin bar on the front end"
351
+ msgstr "サイトで管理バーを非表示"
352
 
353
+ #: inc/setting_site.php:132
354
+ msgid "Apply WP Admin UI Customize settings on the front end admin bar also"
355
+ msgstr "WP Admin UI Customize の管理バーの設定をフロントにも適用"
356
 
languages/wauc.pot CHANGED
@@ -1,248 +1,353 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WP Admin UI Customize\n"
4
- "POT-Creation-Date: \n"
5
- "PO-Revision-Date: 2013-08-11 00:26+0900\n"
6
- "Language-Team: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
7
- "MIME-Version: 1.0\n"
8
- "Content-Type: text/plain; charset=utf-8\n"
9
- "Content-Transfer-Encoding: 8bit\n"
10
- "Language: ja_JP\n"
11
- "X-Poedit-SourceCharset: utf-8\n"
12
- "Last-Translator: Gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
13
- "X-Generator: Poedit 1.5.5\n"
14
-
15
- msgid "An excellent plugin to customize the management screens."
16
- msgstr ""
17
-
18
- msgid "Reset User Roles"
19
- msgstr ""
20
-
21
- msgid "Customize the UI of the management screen for all users."
22
- msgstr ""
23
-
24
- msgid "Authority to apply the setting is not selected. <a href=\"%s\">From here</a>, please select the permissions you want to set."
25
- msgstr ""
26
-
27
- msgid "Please select the user roles that all settings will apply to."
28
- msgstr ""
29
-
30
- msgid "Apply user roles"
31
- msgstr ""
32
-
33
- msgid "Multiple settings not supported."
34
- msgstr ""
35
-
36
- msgid "Reset all settings?"
37
- msgstr ""
38
-
39
- msgid "Site Settings"
40
- msgstr ""
41
-
42
- msgid "Tag to be output"
43
- msgstr ""
44
-
45
- msgid "Please display when using the Windows Live Writer."
46
- msgstr ""
47
-
48
- msgid "Information of XML-rpc"
49
- msgstr ""
50
-
51
- msgid "Sitewide feed"
52
- msgstr ""
53
-
54
- msgid "Extra feed"
55
- msgstr ""
56
-
57
- msgid "Hide the Admin bar on the front end"
58
- msgstr ""
59
-
60
- msgid "Apply WP Admin UI Customize settings on the front end admin bar also"
61
- msgstr ""
62
-
63
- msgid "Account Title"
64
- msgstr ""
65
-
66
- msgid "WordPress Logo"
67
- msgstr ""
68
-
69
- msgid "Add New"
70
- msgstr ""
71
-
72
- msgid "Update Menu"
73
- msgstr ""
74
-
75
- msgid "Profile Edit"
76
- msgstr ""
77
-
78
- msgid "General Screen Settings"
79
- msgstr ""
80
-
81
- msgid "Notifications"
82
- msgstr ""
83
-
84
- msgid "Not notified"
85
- msgstr ""
86
-
87
- msgid "WordPress core update notice"
88
- msgstr ""
89
-
90
- msgid "Plugin update notice"
91
- msgstr ""
92
-
93
- msgid "Theme update notice"
94
- msgstr ""
95
-
96
- msgid "Footer text"
97
- msgstr ""
98
-
99
- msgid "Title tag for Admin screen"
100
- msgstr ""
101
-
102
- msgid "Remove \"Wordpress\" from the title tag of the Admin screen"
103
- msgstr ""
104
-
105
- msgid "Screen Options and Help Tab"
106
- msgstr ""
107
-
108
- msgid "Meta boxes"
109
- msgstr ""
110
-
111
- msgid "Other"
112
- msgstr ""
113
-
114
- msgid "Meta box movement restriction"
115
- msgstr ""
116
-
117
- msgid "Lock meta box positions"
118
- msgstr ""
119
-
120
- msgid "Admin Bar Menu"
121
- msgstr ""
122
-
123
- msgid "Notice: Please do not place the same multiple menu slug."
124
- msgstr ""
125
-
126
- msgid "Can be more than one custom menu."
127
- msgstr ""
128
-
129
- msgid "Menu items that can be added"
130
- msgstr ""
131
-
132
- msgid "Custom Menu"
133
- msgstr ""
134
-
135
- msgid "Side Menu"
136
- msgstr ""
137
-
138
- msgid "Please change the menu by drag and drop."
139
- msgstr ""
140
-
141
- msgid "Current menu"
142
- msgstr ""
143
-
144
- msgid "Sepalator"
145
- msgstr ""
146
-
147
- msgid "Menu Title"
148
- msgstr ""
149
-
150
- msgid "Sub Menus"
151
- msgstr ""
152
-
153
- msgid "Remove meta box"
154
- msgstr ""
155
-
156
- msgid "Could not read the meta box."
157
- msgstr ""
158
-
159
- msgid "Meta boxes will be loaded automatically when you Edit %s."
160
- msgstr ""
161
-
162
- msgid "Please update or add a \"post\" and a \"page\" to load the available meta boxes."
163
- msgstr ""
164
-
165
- msgid "Notice: If hide the Discussion on metabox, comments does not display of Add New Post on apply user role."
166
- msgstr ""
167
-
168
- msgid "Please set from here if you want to view the comments on screen."
169
- msgstr ""
170
-
171
- msgid "Add New Post and Edit Post Screen Setting"
172
- msgstr ""
173
-
174
- msgid "Allow people to post comments on new articles when hide to discussion of metabox"
175
- msgstr ""
176
-
177
- msgid "Please select if you want to display the comments on Site."
178
- msgstr ""
179
-
180
- msgid "However, this will follow the setting of %s."
181
- msgstr ""
182
-
183
- msgid "Please select the %s"
184
- msgstr ""
185
-
186
- msgid "Only appears when you have settings to the default permalink."
187
- msgstr ""
188
-
189
- msgid "Appearance Menus Screen Setting"
190
- msgstr ""
191
-
192
- msgid "Add a new menu"
193
- msgstr ""
194
-
195
- msgid "This is useful when you want to use only the menus have been created."
196
- msgstr ""
197
-
198
- msgid "Login Screen"
199
- msgstr ""
200
-
201
- msgid "Is not possible to check the login form if you do not log out in the case of MultiSite."
202
- msgstr ""
203
-
204
- msgid "Login Screen Settings"
205
- msgstr ""
206
-
207
- msgid "Show Login Screen"
208
- msgstr ""
209
-
210
- msgid "Login Form"
211
- msgstr ""
212
-
213
- msgid "The link after clicking on the logo"
214
- msgstr ""
215
-
216
- msgid "Logo Title"
217
- msgstr ""
218
-
219
- msgid "Logo Image path"
220
- msgstr ""
221
-
222
- msgid "CSS file to load"
223
- msgstr ""
224
-
225
- msgid "Available Shortcodes"
226
- msgstr ""
227
-
228
- msgid "Shortcodes"
229
- msgstr ""
230
-
231
- msgid "Shortcode"
232
- msgstr ""
233
-
234
- msgid "Blog name of logged in."
235
- msgstr ""
236
-
237
- msgid "Blog URL of logged in."
238
- msgstr ""
239
-
240
- msgid "In your case."
241
- msgstr ""
242
-
243
- msgid "You want to reset the user roles?"
244
- msgstr ""
245
-
246
- msgid "Applied user roles"
247
- msgstr ""
248
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP Admin UI Customize\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-09-07 12:24+0900\n"
6
+ "PO-Revision-Date: 2013-09-07 12:24+0900\n"
7
+ "Last-Translator: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
8
+ "Language-Team: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: __;_e\n"
13
+ "X-Poedit-Basepath: ../\n"
14
+ "Plural-Forms: nplurals=1; plural=0;\n"
15
+ "X-Poedit-SearchPath-0: .\n"
16
+
17
+ #: wp-admin-ui-customize.php:4
18
+ msgid "An excellent plugin to customize the management screens."
19
+ msgstr ""
20
+
21
+ #: wp-admin-ui-customize.php:116
22
+ #: wp-admin-ui-customize.php:152
23
+ #: inc/reset_userrole.php:16
24
+ msgid "Reset User Roles"
25
+ msgstr ""
26
+
27
+ #: wp-admin-ui-customize.php:143
28
+ #: inc/setting_site.php:22
29
+ msgid "Site Settings"
30
+ msgstr ""
31
+
32
+ #: wp-admin-ui-customize.php:144
33
+ #: inc/setting_admin_general.php:22
34
+ msgid "General Screen Settings"
35
+ msgstr ""
36
+
37
+ #: wp-admin-ui-customize.php:146
38
+ #: inc/setting_admin_bar_menu.php:23
39
+ msgid "Admin Bar Menu"
40
+ msgstr ""
41
+
42
+ #: wp-admin-ui-customize.php:147
43
+ #: inc/setting_sidemenu.php:25
44
+ msgid "Side Menu"
45
+ msgstr ""
46
+
47
+ #: wp-admin-ui-customize.php:148
48
+ #: inc/setting_removemtabox.php:22
49
+ msgid "Remove meta box"
50
+ msgstr ""
51
+
52
+ #: wp-admin-ui-customize.php:149
53
+ #: inc/setting_post_add_edit.php:22
54
+ msgid "Add New Post and Edit Post Screen Setting"
55
+ msgstr ""
56
+
57
+ #: wp-admin-ui-customize.php:150
58
+ #: inc/setting_appearance_menus.php:21
59
+ msgid "Appearance Menus Screen Setting"
60
+ msgstr ""
61
+
62
+ #: wp-admin-ui-customize.php:151
63
+ #: inc/setting_loginscreen.php:32
64
+ msgid "Login Screen"
65
+ msgstr ""
66
+
67
+ #: wp-admin-ui-customize.php:279
68
+ #, php-format
69
+ msgid "Authority to apply the setting is not selected. <a href=\"%s\">From here</a>, please select the permissions you want to set."
70
+ msgstr ""
71
+
72
+ #: wp-admin-ui-customize.php:304
73
+ msgid "Apply user roles"
74
+ msgstr ""
75
+
76
+ #: wp-admin-ui-customize.php:531
77
+ #: wp-admin-ui-customize.php:653
78
+ msgid "Sub Menus"
79
+ msgstr ""
80
+
81
+ #: inc/list_variables.php:17
82
+ #: inc/setting_admin_bar_menu.php:30
83
+ #: inc/setting_sidemenu.php:32
84
+ msgid "Shortcodes"
85
+ msgstr ""
86
+
87
+ #: inc/list_variables.php:42
88
+ msgid "Blog name of logged in."
89
+ msgstr ""
90
+
91
+ #: inc/list_variables.php:51
92
+ msgid "Blog URL of logged in."
93
+ msgstr ""
94
+
95
+ #: inc/list_variables.php:95
96
+ msgid "In your case."
97
+ msgstr ""
98
+
99
+ #: inc/reset_userrole.php:23
100
+ msgid "Applied user roles"
101
+ msgstr ""
102
+
103
+ #: inc/reset_userrole.php:33
104
+ msgid "You want to reset the user roles?"
105
+ msgstr ""
106
+
107
+ #: inc/setting_admin_bar_menu.php:24
108
+ #: inc/setting_sidemenu.php:26
109
+ msgid "Please change the menu by drag and drop."
110
+ msgstr ""
111
+
112
+ #: inc/setting_admin_bar_menu.php:25
113
+ #: inc/setting_sidemenu.php:28
114
+ msgid "Notice: Please do not place the same multiple menu slug."
115
+ msgstr ""
116
+
117
+ #: inc/setting_admin_bar_menu.php:26
118
+ msgid "Can be more than one custom menu."
119
+ msgstr ""
120
+
121
+ #: inc/setting_admin_bar_menu.php:30
122
+ #: inc/setting_admin_general.php:130
123
+ #: inc/setting_admin_general.php:153
124
+ #: inc/setting_loginscreen.php:55
125
+ #: inc/setting_loginscreen.php:68
126
+ #: inc/setting_loginscreen.php:80
127
+ #: inc/setting_loginscreen.php:108
128
+ #: inc/setting_loginscreen.php:120
129
+ #: inc/setting_sidemenu.php:32
130
+ msgid "Available Shortcodes"
131
+ msgstr ""
132
+
133
+ #: inc/setting_admin_bar_menu.php:195
134
+ #: inc/setting_sidemenu.php:27
135
+ #: inc/setting_sidemenu.php:47
136
+ msgid "Menu items that can be added"
137
+ msgstr ""
138
+
139
+ #: inc/setting_admin_bar_menu.php:263
140
+ #: inc/setting_admin_general.php:186
141
+ #: inc/setting_appearance_menus.php:95
142
+ #: inc/setting_dashboard.php:181
143
+ #: inc/setting_default.php:129
144
+ #: inc/setting_loginscreen.php:143
145
+ #: inc/setting_post_add_edit.php:106
146
+ #: inc/setting_removemtabox.php:140
147
+ #: inc/setting_sidemenu.php:230
148
+ #: inc/setting_site.php:165
149
+ msgid "Reset all settings?"
150
+ msgstr ""
151
+
152
+ #: inc/setting_admin_general.php:39
153
+ msgid "Notifications"
154
+ msgstr ""
155
+
156
+ #: inc/setting_admin_general.php:45
157
+ msgid "WordPress core update notice"
158
+ msgstr ""
159
+
160
+ #: inc/setting_admin_general.php:51
161
+ #: inc/setting_admin_general.php:62
162
+ #: inc/setting_admin_general.php:73
163
+ msgid "Not notified"
164
+ msgstr ""
165
+
166
+ #: inc/setting_admin_general.php:56
167
+ msgid "Plugin update notice"
168
+ msgstr ""
169
+
170
+ #: inc/setting_admin_general.php:67
171
+ msgid "Theme update notice"
172
+ msgstr ""
173
+
174
+ #: inc/setting_admin_general.php:83
175
+ msgid "Screen Options and Help Tab"
176
+ msgstr ""
177
+
178
+ #: inc/setting_admin_general.php:122
179
+ #: inc/setting_loginscreen.php:114
180
+ msgid "Footer text"
181
+ msgstr ""
182
+
183
+ #: inc/setting_admin_general.php:147
184
+ #: inc/setting_loginscreen.php:102
185
+ msgid "CSS file to load"
186
+ msgstr ""
187
+
188
+ #: inc/setting_admin_general.php:160
189
+ msgid "Title tag for Admin screen"
190
+ msgstr ""
191
+
192
+ #: inc/setting_admin_general.php:165
193
+ msgid "Remove \"Wordpress\" from the title tag of the Admin screen"
194
+ msgstr ""
195
+
196
+ #: inc/setting_appearance_menus.php:45
197
+ msgid "Create a new menu"
198
+ msgstr ""
199
+
200
+ #: inc/setting_appearance_menus.php:51
201
+ #: inc/setting_appearance_menus.php:69
202
+ msgid "This is useful when you want to use only the menus have been created."
203
+ msgstr ""
204
+
205
+ #: inc/setting_dashboard.php:38
206
+ msgid "Meta boxes"
207
+ msgstr ""
208
+
209
+ #: inc/setting_dashboard.php:45
210
+ msgid "Welcome Panel"
211
+ msgstr ""
212
+
213
+ #: inc/setting_dashboard.php:148
214
+ msgid "Other"
215
+ msgstr ""
216
+
217
+ #: inc/setting_dashboard.php:155
218
+ msgid "Meta box movement restriction"
219
+ msgstr ""
220
+
221
+ #: inc/setting_dashboard.php:160
222
+ msgid "Lock meta box positions"
223
+ msgstr ""
224
+
225
+ #: inc/setting_default.php:24
226
+ msgid "Customize the UI of the management screen for all users."
227
+ msgstr ""
228
+
229
+ #: inc/setting_default.php:25
230
+ msgid "Please select the user roles that all settings will apply to."
231
+ msgstr ""
232
+
233
+ #: inc/setting_default.php:26
234
+ msgid "Please use the Multiple Add-on If you want settings on User role basis."
235
+ msgstr ""
236
+
237
+ #: inc/setting_loginscreen.php:22
238
+ msgid "Login Screen Settings"
239
+ msgstr ""
240
+
241
+ #: inc/setting_loginscreen.php:30
242
+ msgid "Is not possible to check the login form if you do not log out in the case of MultiSite."
243
+ msgstr ""
244
+
245
+ #: inc/setting_loginscreen.php:32
246
+ msgid "Show Login Screen"
247
+ msgstr ""
248
+
249
+ #: inc/setting_loginscreen.php:42
250
+ msgid "Login Form"
251
+ msgstr ""
252
+
253
+ #: inc/setting_loginscreen.php:49
254
+ msgid "The link after clicking on the logo"
255
+ msgstr ""
256
+
257
+ #: inc/setting_loginscreen.php:62
258
+ msgid "Logo Title"
259
+ msgstr ""
260
+
261
+ #: inc/setting_loginscreen.php:74
262
+ msgid "Logo Image path"
263
+ msgstr ""
264
+
265
+ #: inc/setting_post_add_edit.php:46
266
+ msgid "Allow people to post comments on new articles when hide to discussion of metabox"
267
+ msgstr ""
268
+
269
+ #: inc/setting_post_add_edit.php:53
270
+ #: inc/setting_removemtabox.php:62
271
+ #: inc/setting_removemtabox.php:109
272
+ msgid "Notice: If hide the Discussion on metabox, comments does not display of Add New Post on apply user role."
273
+ msgstr ""
274
+
275
+ #: inc/setting_post_add_edit.php:54
276
+ msgid "Please select if you want to display the comments on Site."
277
+ msgstr ""
278
+
279
+ #: inc/setting_post_add_edit.php:55
280
+ #, php-format
281
+ msgid "However, this will follow the setting of %s."
282
+ msgstr ""
283
+
284
+ #: inc/setting_post_add_edit.php:57
285
+ #, php-format
286
+ msgid "Please select the %s"
287
+ msgstr ""
288
+
289
+ #: inc/setting_post_add_edit.php:83
290
+ msgid "Only appears when you have settings to the default permalink."
291
+ msgstr ""
292
+
293
+ #: inc/setting_removemtabox.php:23
294
+ msgid "Please update or add a \"post\" and a \"page\" to load the available meta boxes."
295
+ msgstr ""
296
+
297
+ #: inc/setting_removemtabox.php:44
298
+ #: inc/setting_removemtabox.php:91
299
+ msgid "Could not read the meta box."
300
+ msgstr ""
301
+
302
+ #: inc/setting_removemtabox.php:45
303
+ #: inc/setting_removemtabox.php:92
304
+ #, php-format
305
+ msgid "Meta boxes will be loaded automatically when you Edit %s."
306
+ msgstr ""
307
+
308
+ #: inc/setting_removemtabox.php:64
309
+ #: inc/setting_removemtabox.php:111
310
+ msgid "Please set from here if you want to view the comments on screen."
311
+ msgstr ""
312
+
313
+ #: inc/setting_sidemenu.php:27
314
+ #, php-format
315
+ msgid "New plugin menus will be added to the <strong>%s</strong>."
316
+ msgstr ""
317
+
318
+ #: inc/setting_sidemenu.php:112
319
+ msgid "Current menu"
320
+ msgstr ""
321
+
322
+ #: inc/setting_site.php:53
323
+ #: inc/setting_site.php:66
324
+ #: inc/setting_site.php:79
325
+ #: inc/setting_site.php:92
326
+ #: inc/setting_site.php:105
327
+ msgid "Tag to be output"
328
+ msgstr ""
329
+
330
+ #: inc/setting_site.php:65
331
+ msgid "Please display when using the Windows Live Writer."
332
+ msgstr ""
333
+
334
+ #: inc/setting_site.php:78
335
+ msgid "Information of XML-rpc"
336
+ msgstr ""
337
+
338
+ #: inc/setting_site.php:91
339
+ msgid "Sitewide feed"
340
+ msgstr ""
341
+
342
+ #: inc/setting_site.php:104
343
+ msgid "Extra feed"
344
+ msgstr ""
345
+
346
+ #: inc/setting_site.php:132
347
+ msgid "Hide the Admin bar on the front end"
348
+ msgstr ""
349
+
350
+ #: inc/setting_site.php:132
351
+ msgid "Apply WP Admin UI Customize settings on the front end admin bar also"
352
+ msgstr ""
353
+
languages/wauc_plugin-ja.mo CHANGED
Binary file
languages/wauc_plugin-ja.po CHANGED
@@ -1,107 +1,144 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: WP Admin UI Customize\n"
4
- "POT-Creation-Date: \n"
5
- "PO-Revision-Date: 2013-08-03 10:52+0900\n"
 
 
6
  "Language-Team: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
7
  "MIME-Version: 1.0\n"
8
- "Content-Type: text/plain; charset=utf-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
 
 
 
10
  "X-Poedit-Language: Japanese\n"
11
  "X-Poedit-Country: JAPAN\n"
12
  "X-Poedit-SourceCharset: utf-8\n"
13
- "Last-Translator: Gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
14
-
15
- msgid "Have you want to customize?"
16
- msgstr "何かカスタマイズしたい事はありますか?"
17
-
18
- msgid "I am good at Admin Screen Customize."
19
- msgstr "私は管理画面のカスタマイズを得意とします。"
20
-
21
- msgid "Please consider the request to me if it is good."
22
- msgstr "宜しければご検討ください。"
23
-
24
- msgid "Example Customize"
25
- msgstr "カスタマイズ例"
26
-
27
- msgid "Contact me"
28
- msgstr "お問い合わせ"
29
 
 
 
30
  msgid "Thank you for your donation."
31
  msgstr "寄付いただきありがとうございます。"
32
 
33
- msgid "If you have already donated to."
34
- msgstr "寄付済みの方へ。"
35
-
36
- msgid "Please enter the 'Donation delete key' that have been described in the 'Line Break First and End download page'."
37
- msgstr "'Line Break First and End download page' ダウンロードページに記載されていた寄付削除キーを入力して、寄付メッセージを削除できます。"
38
-
39
- msgid "Donation delete key"
40
- msgstr "寄付メッセージ削除キー"
41
-
42
  msgid "Thank you for considering donate."
43
  msgstr "寄付のご検討宜しくお願いします。"
44
 
 
45
  msgid "Donate"
46
  msgstr "寄付について"
47
 
 
48
  msgid "You are contented with this plugin?<br />By the laws of Japan, Japan's new paypal user can not make a donation button.<br />So i would like you to buy this plugin as the replacement for the donation."
49
  msgstr "このプラグインを使って満足できましたか?<br />日本の法律では、日本の新PayPalユーザーは寄付ボタンを作成することはできません。<br />なので寄付の代わりとしてこのプラグインを購入して欲しいです。"
50
 
 
51
  msgid "Features"
52
  msgstr "機能について"
53
 
 
54
  msgid "Line Break First and End plugin is In the visual editor TinyMCE, It is a plugin that will help when you will not be able to enter a line break."
55
  msgstr "Line Break First and Endプラグインは、TinyMCEのビジュアルエディタで、改行を入力することが出来なくなった時に便利なプラグインです。"
56
 
 
57
  msgid "The primary use of donations"
58
  msgstr "寄付の主な使用目的"
59
 
 
60
  msgid "Liquidation of time and value"
61
  msgstr "時間と価値の清算"
62
 
 
63
  msgid "Additional suggestions feature"
64
  msgstr "機能提案の追加"
65
 
 
66
  msgid "Maintain motivation"
67
  msgstr "モチベーション維持"
68
 
 
69
  msgid "Ensure time as the father of Sunday"
70
  msgstr "日曜日の父親としての時間確保"
71
 
 
72
  msgid "About plugin"
73
  msgstr "プラグインについて"
74
 
75
- msgid "Version check"
 
76
  msgstr "動作確認済み"
77
 
 
78
  msgid "Plugin's site"
79
  msgstr "プラグインのサイト"
80
 
 
81
  msgid "Developer's site"
82
  msgstr "開発者のサイト"
83
 
 
84
  msgid "Reviews"
85
  msgstr "レビュー"
86
 
 
87
  msgid "Useful plugins"
88
  msgstr "便利なプラグイン"
89
 
90
- msgid "This add-on is simply settings of different user roles."
 
91
  msgstr "ユーザー権限ごとに別々の設定を簡単にできるアドオンです。"
92
 
93
- msgid "This add-on is import & export of settings data of WP Admin UI Customize."
 
94
  msgstr "このアドオンは、WP Admin UI Customizeの設定データをインポート&エクスポートする為のアドオンです。"
95
 
 
96
  msgid "This add-on is an add-on to unify the management screen of all sites."
97
  msgstr "このアドオンは、全てのサイトの管理画面を統一する為のアドオンです。"
98
 
 
99
  msgid "Customize the list of the post and page. custom post type page, too. You can customize the column display items freely."
100
  msgstr "投稿と固定ページ一覧をカスタマイズします。カスタム投稿タイプも。カラム一覧を自由にカスタマイズできます。"
101
 
 
102
  msgid "Announce to display the dashboard. Change the display to a different user role."
103
  msgstr "ダッシュボードにお知らせを表示します。ユーザーの権限ごとに表示を変更できます。"
104
 
 
105
  msgid "The plugin that allows you to add the value of the options. Option value that you have created, can be used in addition to the template tag, Short code can be used in the body of the article."
106
  msgstr "オプション値作成プラグインです。作成したオプション値は、ショートコードとして記事に、テンプレートタグとしても使用できます。"
107
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: WP Admin UI Customize sub\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-09-07 12:24+0900\n"
6
+ "PO-Revision-Date: 2013-09-07 13:46+0900\n"
7
+ "Last-Translator: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
8
  "Language-Team: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: __;_e\n"
13
+ "X-Poedit-Basepath: ../\n"
14
+ "Plural-Forms: nplurals=1; plural=0;\n"
15
  "X-Poedit-Language: Japanese\n"
16
  "X-Poedit-Country: JAPAN\n"
17
  "X-Poedit-SourceCharset: utf-8\n"
18
+ "X-Poedit-SearchPath-0: .\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
 
20
+ #: wp-admin-ui-customize.php:838
21
+ #: inc/setting_default.php:185
22
  msgid "Thank you for your donation."
23
  msgstr "寄付いただきありがとうございます。"
24
 
25
+ #: wp-admin-ui-customize.php:1757
 
 
 
 
 
 
 
 
26
  msgid "Thank you for considering donate."
27
  msgstr "寄付のご検討宜しくお願いします。"
28
 
29
+ #: wp-admin-ui-customize.php:1757
30
  msgid "Donate"
31
  msgstr "寄付について"
32
 
33
+ #: inc/setting_default.php:39
34
  msgid "You are contented with this plugin?<br />By the laws of Japan, Japan's new paypal user can not make a donation button.<br />So i would like you to buy this plugin as the replacement for the donation."
35
  msgstr "このプラグインを使って満足できましたか?<br />日本の法律では、日本の新PayPalユーザーは寄付ボタンを作成することはできません。<br />なので寄付の代わりとしてこのプラグインを購入して欲しいです。"
36
 
37
+ #: inc/setting_default.php:46
38
  msgid "Features"
39
  msgstr "機能について"
40
 
41
+ #: inc/setting_default.php:47
42
  msgid "Line Break First and End plugin is In the visual editor TinyMCE, It is a plugin that will help when you will not be able to enter a line break."
43
  msgstr "Line Break First and Endプラグインは、TinyMCEのビジュアルエディタで、改行を入力することが出来なくなった時に便利なプラグインです。"
44
 
45
+ #: inc/setting_default.php:50
46
  msgid "The primary use of donations"
47
  msgstr "寄付の主な使用目的"
48
 
49
+ #: inc/setting_default.php:52
50
  msgid "Liquidation of time and value"
51
  msgstr "時間と価値の清算"
52
 
53
+ #: inc/setting_default.php:53
54
  msgid "Additional suggestions feature"
55
  msgstr "機能提案の追加"
56
 
57
+ #: inc/setting_default.php:54
58
  msgid "Maintain motivation"
59
  msgstr "モチベーション維持"
60
 
61
+ #: inc/setting_default.php:55
62
  msgid "Ensure time as the father of Sunday"
63
  msgstr "日曜日の父親としての時間確保"
64
 
65
+ #: inc/setting_default.php:62
66
  msgid "About plugin"
67
  msgstr "プラグインについて"
68
 
69
+ #: inc/setting_default.php:64
70
+ msgid "Version checked"
71
  msgstr "動作確認済み"
72
 
73
+ #: inc/setting_default.php:66
74
  msgid "Plugin's site"
75
  msgstr "プラグインのサイト"
76
 
77
+ #: inc/setting_default.php:67
78
  msgid "Developer's site"
79
  msgstr "開発者のサイト"
80
 
81
+ #: inc/setting_default.php:69
82
  msgid "Reviews"
83
  msgstr "レビュー"
84
 
85
+ #: inc/setting_default.php:77
86
  msgid "Useful plugins"
87
  msgstr "便利なプラグイン"
88
 
89
+ #: inc/setting_default.php:80
90
+ msgid "This add-on is simply settings of multi user roles."
91
  msgstr "ユーザー権限ごとに別々の設定を簡単にできるアドオンです。"
92
 
93
+ #: inc/setting_default.php:82
94
+ msgid "This add-on is Import/Export easily of the settings data."
95
  msgstr "このアドオンは、WP Admin UI Customizeの設定データをインポート&エクスポートする為のアドオンです。"
96
 
97
+ #: inc/setting_default.php:84
98
  msgid "This add-on is an add-on to unify the management screen of all sites."
99
  msgstr "このアドオンは、全てのサイトの管理画面を統一する為のアドオンです。"
100
 
101
+ #: inc/setting_default.php:86
102
  msgid "Customize the list of the post and page. custom post type page, too. You can customize the column display items freely."
103
  msgstr "投稿と固定ページ一覧をカスタマイズします。カスタム投稿タイプも。カラム一覧を自由にカスタマイズできます。"
104
 
105
+ #: inc/setting_default.php:88
106
  msgid "Announce to display the dashboard. Change the display to a different user role."
107
  msgstr "ダッシュボードにお知らせを表示します。ユーザーの権限ごとに表示を変更できます。"
108
 
109
+ #: inc/setting_default.php:90
110
  msgid "The plugin that allows you to add the value of the options. Option value that you have created, can be used in addition to the template tag, Short code can be used in the body of the article."
111
  msgstr "オプション値作成プラグインです。作成したオプション値は、ショートコードとして記事に、テンプレートタグとしても使用できます。"
112
 
113
+ #: inc/setting_default.php:138
114
+ msgid "If you have already donated to."
115
+ msgstr "寄付済みの方へ。"
116
+
117
+ #: inc/setting_default.php:139
118
+ msgid "Please enter the 'Donation delete key' that have been described in the 'Line Break First and End download page'."
119
+ msgstr "'Line Break First and End download page' ダウンロードページに記載されていた寄付削除キーを入力して、寄付メッセージを削除できます。"
120
+
121
+ #: inc/setting_default.php:142
122
+ msgid "Donation delete key"
123
+ msgstr "寄付メッセージ削除キー"
124
+
125
+ #: inc/setting_default.php:150
126
+ msgid "Have you want to customize?"
127
+ msgstr "何かカスタマイズしたい事はありますか?"
128
+
129
+ #: inc/setting_default.php:156
130
+ msgid "I am good at Admin Screen Customize."
131
+ msgstr "私は管理画面のカスタマイズを得意とします。"
132
+
133
+ #: inc/setting_default.php:157
134
+ msgid "Please consider the request to me if it is good."
135
+ msgstr "宜しければご検討ください。"
136
+
137
+ #: inc/setting_default.php:159
138
+ msgid "Example Customize"
139
+ msgstr "カスタマイズ例"
140
+
141
+ #: inc/setting_default.php:160
142
+ msgid "Contact me"
143
+ msgstr "お問い合わせ"
144
+
languages/wauc_plugin.pot CHANGED
@@ -1,107 +1,141 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WP Admin UI Customize\n"
4
- "POT-Creation-Date: \n"
5
- "PO-Revision-Date: 2013-08-03 10:52+0900\n"
6
- "Language-Team: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
7
- "MIME-Version: 1.0\n"
8
- "Content-Type: text/plain; charset=utf-8\n"
9
- "Content-Transfer-Encoding: 8bit\n"
10
- "X-Poedit-Language: Japanese\n"
11
- "X-Poedit-Country: JAPAN\n"
12
- "X-Poedit-SourceCharset: utf-8\n"
13
- "Last-Translator: Gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
14
-
15
- msgid "Have you want to customize?"
16
- msgstr ""
17
-
18
- msgid "I am good at Admin Screen Customize."
19
- msgstr ""
20
-
21
- msgid "Please consider the request to me if it is good."
22
- msgstr ""
23
-
24
- msgid "Example Customize"
25
- msgstr ""
26
-
27
- msgid "Contact me"
28
- msgstr ""
29
-
30
- msgid "Thank you for your donation."
31
- msgstr ""
32
-
33
- msgid "If you have already donated to."
34
- msgstr ""
35
-
36
- msgid "Please enter the 'Donation delete key' that have been described in the 'Line Break First and End download page'."
37
- msgstr ""
38
-
39
- msgid "Donation delete key"
40
- msgstr ""
41
-
42
- msgid "Thank you for considering donate."
43
- msgstr ""
44
-
45
- msgid "Donate"
46
- msgstr ""
47
-
48
- msgid "You are contented with this plugin?<br />By the laws of Japan, Japan's new paypal user can not make a donation button.<br />So i would like you to buy this plugin as the replacement for the donation."
49
- msgstr ""
50
-
51
- msgid "Features"
52
- msgstr ""
53
-
54
- msgid "Line Break First and End plugin is In the visual editor TinyMCE, It is a plugin that will help when you will not be able to enter a line break."
55
- msgstr ""
56
-
57
- msgid "The primary use of donations"
58
- msgstr ""
59
-
60
- msgid "Liquidation of time and value"
61
- msgstr ""
62
-
63
- msgid "Additional suggestions feature"
64
- msgstr ""
65
-
66
- msgid "Maintain motivation"
67
- msgstr ""
68
-
69
- msgid "Ensure time as the father of Sunday"
70
- msgstr ""
71
-
72
- msgid "About plugin"
73
- msgstr ""
74
-
75
- msgid "Version check"
76
- msgstr ""
77
-
78
- msgid "Plugin's site"
79
- msgstr ""
80
-
81
- msgid "Developer's site"
82
- msgstr ""
83
-
84
- msgid "Reviews"
85
- msgstr ""
86
-
87
- msgid "Useful plugins"
88
- msgstr ""
89
-
90
- msgid "This add-on is simply settings of different user roles."
91
- msgstr ""
92
-
93
- msgid "This add-on is import & export of settings data of WP Admin UI Customize."
94
- msgstr ""
95
-
96
- msgid "This add-on is an add-on to unify the management screen of all sites."
97
- msgstr ""
98
-
99
- msgid "Customize the list of the post and page. custom post type page, too. You can customize the column display items freely."
100
- msgstr ""
101
-
102
- msgid "Announce to display the dashboard. Change the display to a different user role."
103
- msgstr ""
104
-
105
- msgid "The plugin that allows you to add the value of the options. Option value that you have created, can be used in addition to the template tag, Short code can be used in the body of the article."
106
- msgstr ""
107
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP Admin UI Customize sub\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-09-07 12:24+0900\n"
6
+ "PO-Revision-Date: 2013-09-07 12:24+0900\n"
7
+ "Last-Translator: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
8
+ "Language-Team: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: __;_e\n"
13
+ "X-Poedit-Basepath: ../\n"
14
+ "Plural-Forms: nplurals=1; plural=0;\n"
15
+ "X-Poedit-SearchPath-0: .\n"
16
+
17
+ #: wp-admin-ui-customize.php:838
18
+ #: inc/setting_default.php:185
19
+ msgid "Thank you for your donation."
20
+ msgstr ""
21
+
22
+ #: wp-admin-ui-customize.php:1757
23
+ msgid "Thank you for considering donate."
24
+ msgstr ""
25
+
26
+ #: wp-admin-ui-customize.php:1757
27
+ msgid "Donate"
28
+ msgstr ""
29
+
30
+ #: inc/setting_default.php:39
31
+ msgid "You are contented with this plugin?<br />By the laws of Japan, Japan's new paypal user can not make a donation button.<br />So i would like you to buy this plugin as the replacement for the donation."
32
+ msgstr ""
33
+
34
+ #: inc/setting_default.php:46
35
+ msgid "Features"
36
+ msgstr ""
37
+
38
+ #: inc/setting_default.php:47
39
+ msgid "Line Break First and End plugin is In the visual editor TinyMCE, It is a plugin that will help when you will not be able to enter a line break."
40
+ msgstr ""
41
+
42
+ #: inc/setting_default.php:50
43
+ msgid "The primary use of donations"
44
+ msgstr ""
45
+
46
+ #: inc/setting_default.php:52
47
+ msgid "Liquidation of time and value"
48
+ msgstr ""
49
+
50
+ #: inc/setting_default.php:53
51
+ msgid "Additional suggestions feature"
52
+ msgstr ""
53
+
54
+ #: inc/setting_default.php:54
55
+ msgid "Maintain motivation"
56
+ msgstr ""
57
+
58
+ #: inc/setting_default.php:55
59
+ msgid "Ensure time as the father of Sunday"
60
+ msgstr ""
61
+
62
+ #: inc/setting_default.php:62
63
+ msgid "About plugin"
64
+ msgstr ""
65
+
66
+ #: inc/setting_default.php:64
67
+ msgid "Version checked"
68
+ msgstr ""
69
+
70
+ #: inc/setting_default.php:66
71
+ msgid "Plugin's site"
72
+ msgstr ""
73
+
74
+ #: inc/setting_default.php:67
75
+ msgid "Developer's site"
76
+ msgstr ""
77
+
78
+ #: inc/setting_default.php:69
79
+ msgid "Reviews"
80
+ msgstr ""
81
+
82
+ #: inc/setting_default.php:77
83
+ msgid "Useful plugins"
84
+ msgstr ""
85
+
86
+ #: inc/setting_default.php:80
87
+ msgid "This add-on is simply settings of multi user roles."
88
+ msgstr ""
89
+
90
+ #: inc/setting_default.php:82
91
+ msgid "This add-on is Import/Export easily of the settings data."
92
+ msgstr ""
93
+
94
+ #: inc/setting_default.php:84
95
+ msgid "This add-on is an add-on to unify the management screen of all sites."
96
+ msgstr ""
97
+
98
+ #: inc/setting_default.php:86
99
+ msgid "Customize the list of the post and page. custom post type page, too. You can customize the column display items freely."
100
+ msgstr ""
101
+
102
+ #: inc/setting_default.php:88
103
+ msgid "Announce to display the dashboard. Change the display to a different user role."
104
+ msgstr ""
105
+
106
+ #: inc/setting_default.php:90
107
+ msgid "The plugin that allows you to add the value of the options. Option value that you have created, can be used in addition to the template tag, Short code can be used in the body of the article."
108
+ msgstr ""
109
+
110
+ #: inc/setting_default.php:138
111
+ msgid "If you have already donated to."
112
+ msgstr ""
113
+
114
+ #: inc/setting_default.php:139
115
+ msgid "Please enter the 'Donation delete key' that have been described in the 'Line Break First and End download page'."
116
+ msgstr ""
117
+
118
+ #: inc/setting_default.php:142
119
+ msgid "Donation delete key"
120
+ msgstr ""
121
+
122
+ #: inc/setting_default.php:150
123
+ msgid "Have you want to customize?"
124
+ msgstr ""
125
+
126
+ #: inc/setting_default.php:156
127
+ msgid "I am good at Admin Screen Customize."
128
+ msgstr ""
129
+
130
+ #: inc/setting_default.php:157
131
+ msgid "Please consider the request to me if it is good."
132
+ msgstr ""
133
+
134
+ #: inc/setting_default.php:159
135
+ msgid "Example Customize"
136
+ msgstr ""
137
+
138
+ #: inc/setting_default.php:160
139
+ msgid "Contact me"
140
+ msgstr ""
141
+
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === WP Admin UI Customize ===
2
  Contributors: gqevu6bsiz
3
- Donate link: http://gqevu6bsiz.chicappa.jp/please-donation/?utm_source=wporg&utm_medium=donate&utm_content=wauc&utm_campaign=1_3_8_1
4
  Tags: admin, post, posts, page, option, sitemenu, menu, custom, customize, dashboard, admin_bar
5
  Requires at least: 3.5.2
6
  Tested up to: 3.6
7
- Stable tag: 1.3.8.1
8
  License: GPL2
9
 
10
  Customize the management screen UI.
@@ -49,6 +49,10 @@ These to Customization is possible.
49
 
50
  == Changelog ==
51
 
 
 
 
 
52
  = 1.3.8.1 =
53
  * Change mechanism : multiple form tag to error on Admin bar settings.
54
  * Supported compatible to 3.6.
1
  === WP Admin UI Customize ===
2
  Contributors: gqevu6bsiz
3
+ Donate link: http://gqevu6bsiz.chicappa.jp/please-donation/?utm_source=wporg&utm_medium=donate&utm_content=wauc&utm_campaign=1_3_8_2
4
  Tags: admin, post, posts, page, option, sitemenu, menu, custom, customize, dashboard, admin_bar
5
  Requires at least: 3.5.2
6
  Tested up to: 3.6
7
+ Stable tag: 1.3.8.2
8
  License: GPL2
9
 
10
  Customize the management screen UI.
49
 
50
  == Changelog ==
51
 
52
+ = 1.3.8.2 =
53
+ * Added to expansion of Admin bar settings (new window).
54
+ * Update: Translate.
55
+
56
  = 1.3.8.1 =
57
  * Change mechanism : multiple form tag to error on Admin bar settings.
58
  * Supported compatible to 3.6.
wp-admin-ui-customize.php CHANGED
@@ -2,10 +2,10 @@
2
  /*
3
  Plugin Name: WP Admin UI Customize
4
  Description: An excellent plugin to customize the management screens.
5
- Plugin URI: http://wpadminuicustomize.com/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_3_8_1
6
- Version: 1.3.8.1
7
  Author: gqevu6bsiz
8
- Author URI: http://gqevu6bsiz.chicappa.jp/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_3_8_1
9
  Text Domain: wauc
10
  Domain Path: /languages
11
  */
@@ -52,7 +52,7 @@ class WP_Admin_UI_Customize
52
 
53
 
54
  function __construct() {
55
- $this->Ver = '1.3.8.1';
56
  $this->Name = 'WP Admin UI Customize';
57
  $this->Dir = plugin_dir_path( __FILE__ );
58
  $this->Url = plugin_dir_url( __FILE__ );
@@ -400,6 +400,13 @@ class WP_Admin_UI_Customize
400
  }
401
  }
402
  }
 
 
 
 
 
 
 
403
 
404
  foreach( $MainMenuIDs as $parent_id => $menu_type ) {
405
 
@@ -615,19 +622,31 @@ class WP_Admin_UI_Customize
615
 
616
  <div class="widget-inside">
617
  <div class="settings">
618
- <p class="description">
619
- <input type="hidden" class="idtext" value="<?php echo $menu_widget["id"]; ?>" name="data[][id]">
620
  <?php if( $menu_widget["id"] == 'custom_node' ) : ?>
621
- URL: <input type="text" class="regular-text linktext" value="" name="data[][href]" placeholder="http://">
622
  <?php else: ?>
623
  <a href="<?php echo $menu_widget["href"]; ?>" target="_blank"><?php echo $menu_widget["id"]; ?></a>
624
- <input type="hidden" class="linktext" value="<?php echo $menu_widget["href"]; ?>" name="data[][href]">
625
  <?php endif; ?>
626
  </p>
627
- <label>
628
- <?php _e( 'Title' ); ?> : <input type="text" class="regular-text titletext" value="<?php echo esc_html( $menu_widget["title"] ); ?>" name="data[][title]">
629
- </label>
630
- <input type="hidden" class="parent" value="<?php echo $menu_widget["parent"]; ?>" name="data[][parent]">
 
 
 
 
 
 
 
 
 
 
 
 
631
  </div>
632
 
633
  <div class="submenu">
@@ -655,15 +674,27 @@ class WP_Admin_UI_Customize
655
 
656
  <div class="widget-inside">
657
  <div class="settings">
658
- <p class="description">
659
- <input type="hidden" class="idtext" value="<?php echo $sm["id"]; ?>" name="data[][id]">
660
  <a href="<?php echo $sm["href"]; ?>" target="_blank"><?php echo $sm["id"]; ?></a>
661
- <input type="hidden" class="linktext" value="<?php echo $sm["href"]; ?>" name="data[][href]">
662
  </p>
663
- <label>
664
- <?php _e( 'Title' ); ?> : <input type="text" class="regular-text titletext" value="<?php echo esc_html( $sm["title"] ); ?>" name="data[][title]">
665
- </label>
666
- <input type="hidden" class="parent" value="<?php echo $sm["parent"]; ?>" name="data[][parent]">
 
 
 
 
 
 
 
 
 
 
 
 
667
  </div>
668
  <div class="widget-control-actions">
669
  <div class="alignleft">
@@ -913,8 +944,16 @@ class WP_Admin_UI_Customize
913
  $parent = strip_tags( $node["parent"] );
914
  $depth = 'sub';
915
  }
 
 
 
 
 
 
 
 
916
 
917
- $Update[$boxtype][$depth][] = array( "id" => $id , "title" => $title , "href" => $href , "parent" => $parent );
918
  }
919
  }
920
  }
@@ -1248,7 +1287,7 @@ class WP_Admin_UI_Customize
1248
  foreach($GetData as $Boxtype => $allnodes) {
1249
  foreach($allnodes as $depth => $nodes) {
1250
  foreach($nodes as $node) {
1251
- $args = array( "id" => $node["id"] , "title" => stripslashes( $node["title"] ) , "href" => $node["href"] , "parent" => "" );
1252
  if( strstr( $node["id"] , 'custom_node' ) ) {
1253
  $args["href"] = $this->val_replace( $node["href"] );
1254
  }
@@ -1258,6 +1297,9 @@ class WP_Admin_UI_Customize
1258
  if( $Boxtype == 'right' && $depth == 'main' ) {
1259
  $args["parent"] = "top-secondary";
1260
  }
 
 
 
1261
  if( strstr( $args["title"] , '[comment_count]') ) {
1262
  if ( !current_user_can('edit_posts') ) {
1263
  continue;
2
  /*
3
  Plugin Name: WP Admin UI Customize
4
  Description: An excellent plugin to customize the management screens.
5
+ Plugin URI: http://wpadminuicustomize.com/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_3_8_2
6
+ Version: 1.3.8.2
7
  Author: gqevu6bsiz
8
+ Author URI: http://gqevu6bsiz.chicappa.jp/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_3_8_2
9
  Text Domain: wauc
10
  Domain Path: /languages
11
  */
52
 
53
 
54
  function __construct() {
55
+ $this->Ver = '1.3.8.2';
56
  $this->Name = 'WP Admin UI Customize';
57
  $this->Dir = plugin_dir_path( __FILE__ );
58
  $this->Url = plugin_dir_url( __FILE__ );
400
  }
401
  }
402
  }
403
+
404
+ // meta field add
405
+ foreach( $Default_bar as $node_id => $node ) {
406
+ if( !isset( $node->meta ) ) {
407
+ $Default_bar[$node_id]->meta = array();
408
+ }
409
+ }
410
 
411
  foreach( $MainMenuIDs as $parent_id => $menu_type ) {
412
 
622
 
623
  <div class="widget-inside">
624
  <div class="settings">
625
+ <p class="field-url description">
626
+ <input type="hidden" class="idtext" value="<?php echo $menu_widget["id"]; ?>" name="data[][id]" />
627
  <?php if( $menu_widget["id"] == 'custom_node' ) : ?>
628
+ URL: <input type="text" class="regular-text linktext" value="" name="data[][href]" placeholder="http://" />
629
  <?php else: ?>
630
  <a href="<?php echo $menu_widget["href"]; ?>" target="_blank"><?php echo $menu_widget["id"]; ?></a>
631
+ <input type="hidden" class="linktext" value="<?php echo $menu_widget["href"]; ?>" name="data[][href]" />
632
  <?php endif; ?>
633
  </p>
634
+ <p class="field-title description">
635
+ <label>
636
+ <?php _e( 'Title' ); ?> : <input type="text" class="regular-text titletext" value="<?php echo esc_html( $menu_widget["title"] ); ?>" name="data[][title]" />
637
+ </label>
638
+ </p>
639
+ <p class="field-meta description">
640
+ <label class="description">
641
+ <?php $checked = ""; ?>
642
+ <?php if( !empty( $menu_widget["meta"]["target"] ) ) : ?>
643
+ <?php $checked = checked( $menu_widget["meta"]["target"] , '_blank' , 0 ); ?>
644
+ <?php endif; ?>
645
+ <input type="checkbox" class="meta_target" value="_blank" name="data[][meta][target]" <?php echo $checked; ?> />
646
+ <?php _e( 'Open link in a new window/tab' ); ?>
647
+ </label>
648
+ </p>
649
+ <input type="hidden" class="parent" value="<?php echo $menu_widget["parent"]; ?>" name="data[][parent]" />
650
  </div>
651
 
652
  <div class="submenu">
674
 
675
  <div class="widget-inside">
676
  <div class="settings">
677
+ <p class="field-url description">
678
+ <input type="hidden" class="idtext" value="<?php echo $sm["id"]; ?>" name="data[][id]" />
679
  <a href="<?php echo $sm["href"]; ?>" target="_blank"><?php echo $sm["id"]; ?></a>
680
+ <input type="hidden" class="linktext" value="<?php echo $sm["href"]; ?>" name="data[][href]" />
681
  </p>
682
+ <p class="field-title description">
683
+ <label>
684
+ <?php _e( 'Title' ); ?> : <input type="text" class="regular-text titletext" value="<?php echo esc_html( $sm["title"] ); ?>" name="data[][title]" />
685
+ </label>
686
+ </p>
687
+ <p class="field-meta description">
688
+ <label class="description">
689
+ <?php $checked = ""; ?>
690
+ <?php if( !empty( $sm["meta"]["target"] ) ) : ?>
691
+ <?php $checked = checked( $sm["meta"]["target"] , '_blank' , 0 ); ?>
692
+ <?php endif; ?>
693
+ <input type="checkbox" class="meta_target" value="_blank" name="data[][meta][target]" <?php echo $checked; ?> />
694
+ <?php _e( 'Open link in a new window/tab' ); ?>
695
+ </label>
696
+ </p>
697
+ <input type="hidden" class="parent" value="<?php echo $sm["parent"]; ?>" name="data[][parent]" />
698
  </div>
699
  <div class="widget-control-actions">
700
  <div class="alignleft">
944
  $parent = strip_tags( $node["parent"] );
945
  $depth = 'sub';
946
  }
947
+ $meta = array();
948
+ if( !empty( $node["meta"] ) ) {
949
+ foreach( $node["meta"] as $mk => $mv ) {
950
+ if( !empty( $mv ) ) {
951
+ $meta[strip_tags($mk)] = strip_tags($mv);
952
+ }
953
+ }
954
+ }
955
 
956
+ $Update[$boxtype][$depth][] = array( "id" => $id , "title" => $title , "href" => $href , "parent" => $parent , "meta" => $meta );
957
  }
958
  }
959
  }
1287
  foreach($GetData as $Boxtype => $allnodes) {
1288
  foreach($allnodes as $depth => $nodes) {
1289
  foreach($nodes as $node) {
1290
+ $args = array( "id" => $node["id"] , "title" => stripslashes( $node["title"] ) , "href" => $node["href"] , "parent" => "" , "meta" => array() );
1291
  if( strstr( $node["id"] , 'custom_node' ) ) {
1292
  $args["href"] = $this->val_replace( $node["href"] );
1293
  }
1297
  if( $Boxtype == 'right' && $depth == 'main' ) {
1298
  $args["parent"] = "top-secondary";
1299
  }
1300
+ if( !empty( $node["meta"] ) ) {
1301
+ $args["meta"] = $node["meta"];
1302
+ }
1303
  if( strstr( $args["title"] , '[comment_count]') ) {
1304
  if ( !current_user_can('edit_posts') ) {
1305
  continue;