first commit

This commit is contained in:
2026-03-05 13:07:40 +01:00
commit 64ba0721ee
25709 changed files with 4691006 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
@media screen and (max-width: 782px) {
html #wpadminbar {
height: auto;
}
#wpadminbar #wp-toolbar>ul>li {
display: block;
position: static;
}
#wpadminbar #wp-toolbar>ul>li>.ab-item {
width: auto;
text-indent: inherit;
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

View File

@@ -0,0 +1,159 @@
<?php
$update_data = wp_get_update_data();
$awaiting_mod = wp_count_comments();
$awaiting_mod = $awaiting_mod->moderated;
$current_user = wp_get_current_user();
if( is_multisite() ) {
$current_site = get_current_site();
}
?>
<div id="list_variables">
<div class="list_variables_wrap">
<table class="widefat fixed">
<thead>
<tr>
<th><?php _e( 'Shortcodes' , 'wp-admin-ui-customize' ); ?></th>
<th><?php _e( 'Value' ); ?></th>
</tr>
</thead>
<tbody>
<?php if( is_multisite() ) : ?>
<tr>
<th><strong>[site_name]</strong></th>
<td>
<code><?php echo esc_attr( $current_site->site_name ); ?></code>
</td>
</tr>
<tr>
<th><strong>[site_url]</strong></th>
<td>
<?php $protocol = is_ssl() ? 'https://' : 'http://'; ?>
<code><?php echo $protocol . esc_attr( $current_site->domain . $current_site->path );?></code>
</td>
</tr>
<?php endif; ?>
<tr>
<th><strong>[blog_name]</strong></th>
<td>
<code><?php echo get_bloginfo( 'name' ); ?></code>
<?php if( is_multisite() ) : ?>
<span class="description"><?php _e( 'Blog name of logged in.' , 'wp-admin-ui-customize' ); ?></span>
<?php endif; ?>
</td>
</tr>
<tr>
<th><strong>[blog_url]</strong></th>
<td>
<code><?php echo get_bloginfo( 'url' ); ?></code>
<?php if( is_multisite() ) : ?>
<span class="description"><?php _e( 'Blog URL of logged in.' , 'wp-admin-ui-customize' ); ?></span>
<?php endif; ?>
</td>
</tr>
<tr>
<th><strong>[template_directory_uri]</strong></th>
<td>
<code><?php echo get_bloginfo( 'template_directory' ); ?></code>
</td>
</tr>
<tr>
<th><strong>[stylesheet_directory_uri]</strong></th>
<td>
<code><?php echo get_stylesheet_directory_uri(); ?></code>
</td>
</tr>
<tr>
<th><strong>[update_total]</strong></th>
<td>
<code>&lt;span class=&quot;update-plugins count-<?php echo $update_data["counts"]["total"]; ?>&quot;&gt;&lt;span class=&quot;update-count&quot;&gt;<strong><?php echo number_format_i18n( $update_data["counts"]["total"] ); ?></strong>&lt;/span&gt;&lt;/span&gt;</code>
</td>
</tr>
<tr>
<th><strong>[update_plugins]</strong></th>
<td>
<code>&lt;span class=&quot;update-plugins count-<?php echo $update_data["counts"]["plugins"]; ?>&quot;&gt;&lt;span class=&quot;plugin-count&quot;&gt;<strong><?php echo number_format_i18n( $update_data["counts"]["plugins"] ); ?></strong>&lt;/span&gt;&lt;/span&gt;</code>
</td>
</tr>
<tr>
<th><strong>[update_themes]</strong></th>
<td>
<code>&lt;span class=&quot;update-plugins count-<?php echo $update_data["counts"]["themes"]; ?>&quot;&gt;&lt;span class=&quot;theme-count&quot;&gt;<strong><?php echo number_format_i18n( $update_data["counts"]["themes"] ); ?></strong>&lt;/span&gt;&lt;/span&gt;</code>
</td>
</tr>
<tr>
<th><strong>[comment_count]</strong></th>
<td>
<code>&lt;span class&quot;ab-icon&quot;&gt&lt;/span&gt; &lt;span id=&quot;ab-awaiting-mod&quot; class=&quot;ab-label awaiting-mod pending-count count-<?php echo $awaiting_mod; ?>&quot;&gt;<strong><?php echo number_format_i18n( $awaiting_mod ); ?></strong>&lt;/span&gt;</code>
</td>
</tr>
<tr>
<th><strong>[comment_count_format]</strong></th>
<td>
<code><?php echo $awaiting_mod; ?></code>
</td>
</tr>
<tr>
<th><strong>[user_name]</strong></th>
<td>
<code><?php echo $current_user->display_name; ?></code>
<span class="description"><?php _e( 'In your case.' , 'wp-admin-ui-customize' ); ?></span>
</td>
</tr>
<tr>
<th><strong>[user_login_name]</strong></th>
<td>
<code><?php echo $current_user->user_login; ?></code>
<span class="description"><?php _e( 'In your case.' , 'wp-admin-ui-customize' ); ?></span>
</td>
</tr>
<tr>
<th><strong>[user_avatar]</strong></th>
<td>
<code><?php echo get_avatar( $current_user->ID , 16 ); ?></code>
<span class="description"><?php _e( 'In your case.' , 'wp-admin-ui-customize' ); ?></span>
</td>
</tr>
<tr>
<th><strong>[user_avatar_64]</strong></th>
<td>
<code><?php echo get_avatar( $current_user->ID , 64 ); ?></code>
<span class="description"><?php _e( 'In your case.' , 'wp-admin-ui-customize' ); ?></span>
</td>
</tr>
<tr>
<th><strong>[post_type]</strong></th>
<td>
<code><?php _e( 'Posts' ); ?></code>
<span class="description"><?php _e( 'Current Post Type Name' , 'wp-admin-ui-customize' ); ?> ( <?php _e( 'Pages' ); ?>/<?php _e( 'Categories' ); ?>/<?php _e( 'Tags' ); ?>/<?php _e( 'Custom Post Type' , 'wp-admin-ui-customize' ); ?>)</span>
</td>
</tr>
<?php if( !empty( $this->ActivatedPlugin ) ) : ?>
<?php $activated_plugins = $this->ActivatedPlugin; ?>
<?php if( !empty( $activated_plugins['woocommerce'] ) ) : ?>
<?php if( function_exists( 'wc_processing_order_count' ) ) : ?>
<?php $order_count = intval( wc_processing_order_count() ); ?>
<?php if( !empty( $order_count ) ) : ?>
<tr>
<th><strong>[woocommerce_order_process_count]</strong></th>
<td>
<code>&lt;span class=&quot;awaiting-mod update-plugins count-<?php echo $order_count ?>&quot;&gt;&lt;span class=&quot;processing-count&quot;><?php echo number_format_i18n( $order_count ); ?>&lt;/span&gt;&lt;/span&gt;</code>
</td>
</tr>
<?php endif; ?>
<?php endif; ?>
<?php endif; ?>
<?php endif; ?>
</tbody>
</table>
</div>
</div>

View File

@@ -0,0 +1,77 @@
<?php
$Data = $this->get_data( 'user_role' );
$UserRoles = $this->get_user_role();
// include js css
$ReadedJs = array( 'jquery' , 'jquery-ui-sortable' );
wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
?>
<div class="wrap">
<?php echo $this->Msg; ?>
<h2><?php _e( 'Reset Settings' , 'wp-admin-ui-customize' ); ?></h2>
<p>&nbsp;</p>
<form id="wauc_reset_userrole" class="wauc_form" method="post" action="<?php echo esc_url( remove_query_arg( 'wauc_msg' , add_query_arg( array( 'page' => $this->PageSlug ) ) ) ); ?>">
<input type="hidden" name="<?php echo esc_attr( $this->UPFN ); ?>" value="Y" />
<?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
<input type="hidden" name="record_field" value="user_role" />
<h3><?php _e( 'Applied user roles' , 'wp-admin-ui-customize' ); ?></h3>
<ul class="description">
<?php foreach( $Data as $key => $val ) : ?>
<?php if( !empty( $UserRoles[$key] ) ): ?>
<li><?php echo $UserRoles[$key]["label"]; ?></li>
<?php endif; ?>
<?php endforeach; ?>
</ul>
<br />
<p><?php printf( __( 'Reset the %s?' , 'wp-admin-ui-customize' ) , __( 'User Roles Settings' , 'wp-admin-ui-customize' ) ); ?></p>
<p class="submit">
<input type="submit" class="button-primary" name="reset" value="<?php echo esc_attr( __( 'Reset User Roles Settings' , 'wp-admin-ui-customize' ) ); ?>" />
</p>
</form>
<p>&nbsp;</p>
<h2><?php _e( 'Reset all settings' , 'wp-admin-ui-customize' ); ?></h2>
<form id="wauc_reset_all_settings" class="wauc_form" method="post" action="<?php echo esc_url( remove_query_arg( 'wauc_msg' , add_query_arg( array( 'page' => $this->PageSlug ) ) ) ); ?>">
<input type="hidden" name="<?php echo esc_attr( $this->UPFN ); ?>" value="Y" />
<?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
<input type="hidden" name="record_field" value="all_settings" />
<p><?php _e( 'All settings below will be deleted.' , 'wp-admin-ui-customize' ); ?></p>
<ul class="description">
<li><?php _e( 'Frontend' , 'wp-admin-ui-customize' ); ?></li>
<li><?php printf( __( '%1$s %2$s' , 'wp-admin-ui-customize' ) , __( 'General' ) , __( 'Settings' ) ); ?></li>
<li><?php _e( 'Dashboard' ); ?></li>
<li><?php _e( 'Admin bar' , 'wp-admin-ui-customize' ); ?></li>
<li><?php _e( 'Sidebar' , 'wp-admin-ui-customize' ); ?></li>
<li><?php _e( 'Meta boxes' , 'wp-admin-ui-customize' ); ?></li>
<li><?php _e( 'Posts and Pages' , 'wp-admin-ui-customize' ); ?></li>
<li><?php _e( 'Appearance Menus' , 'wp-admin-ui-customize' ); ?></li>
<li><?php _e( 'Login Form' , 'wp-admin-ui-customize' ); ?></li>
<li><?php printf( __( '%1$s of %2$s %3$s' , 'wp-admin-ui-customize' ) , __( 'Change' ) , __( 'Plugin' ) , __( 'Capabilities' ) ); ?></li>
</ul>
<br />
<p><?php _e( 'Are you sure you want to delete all settings?' , 'wp-admin-ui-customize' ); ?></p>
<p class="submit">
<input type="submit" class="button-primary" name="reset" value="<?php echo esc_attr( __( 'Reset all settings' , 'wp-admin-ui-customize' ) ); ?>" />
</p>
</form>
</div>
<style>
</style>
<script>
jQuery(document).ready( function($) {
});
</script>

View File

@@ -0,0 +1,358 @@
<?php
$Data = $this->get_data( 'admin_bar_menu' );
$AllDefaultNodes = $this->admin_bar_filter_load();
$Place_types = $this->admin_bar_places();
// include js css
$ReadedJs = array( 'jquery' , 'jquery-ui-draggable' , 'jquery-ui-droppable' , 'jquery-ui-sortable' , 'thickbox' );
wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
wp_enqueue_style('thickbox');
wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
?>
<div class="wrap">
<?php echo $this->Msg; ?>
<h2><?php _e( 'Admin bar' , 'wp-admin-ui-customize' ); ?></h2>
<p><?php _e( 'Drag menu items to edit and reorder menus.' , 'wp-admin-ui-customize' ); ?></p>
<p><strong><?php _e( 'Note: Using the same menu item multiple times could cause unexpected behavior.' , 'wp-admin-ui-customize' ); ?></strong></p>
<p class="description"><?php _e( 'You can use multiple custom menus.' , 'wp-admin-ui-customize' ); ?></p>
<h3 id="wauc-apply-user-roles"><?php echo $this->get_apply_roles(); ?></h3>
<p><a href="#TB_inline?height=300&width=600&inlineId=list_variables&modal=false" title="<?php _e( 'Shortcodes' , 'wp-admin-ui-customize' ); ?>" class="thickbox"><?php _e( 'Available Shortcodes' , 'wp-admin-ui-customize' ); ?></a></p>
<form id="wauc_setting_admin_bar_menu" class="wauc_form" method="post" action="<?php echo esc_url( remove_query_arg( 'wauc_msg' , add_query_arg( array( 'page' => $this->PageSlug ) ) ) ); ?>">
<input type="hidden" name="<?php echo esc_attr( $this->UPFN ); ?>" value="Y" />
<?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
<input type="hidden" name="record_field" value="admin_bar_menu" />
<p></p>
<p><?php _e( 'Sub menus can be a maximum of four levels deep.' , 'wp-admin-ui-customize' ); ?></p>
<p><a href="<?php esc_url( $this->get_document_link( 'admin_bar' ) ); ?>" target="_blank" class="button-secondary"><?php _e( 'Additional documentation' , 'wp-admin-ui-customize' ); ?></a></p>
<div id="poststuff">
<div id="post-body" class="metabox-holder columns-2">
<?php foreach( $Place_types as $place => $place_label ) : ?>
<?php if( $place != 'front' ) : ?>
<?php if( $place == 'left' ) : $box_id = 2; else: $box_id = 1; endif; ?>
<div id="postbox-container-<?php echo $box_id; ?>" class="postbox-container">
<div id="<?php echo $place; ?>_menus">
<div class="postbox">
<div class="handlediv" title="Click to toggle"><br></div>
<h3 class="hndle"><span><?php echo $place_label; ?><?php _e( 'Menus' ); ?></span></h3>
<div class="inside widgets-holder-wrap">
<?php if( empty( $Data ) ) : ?>
<?php $Nodes = $AllDefaultNodes; ?>
<?php else: ?>
<?php $Nodes = $Data; ?>
<?php endif; ?>
<?php if( !empty( $Nodes[$place]["main"] ) ) : ?>
<?php foreach( $Nodes[$place]["main"] as $main_node ) : ?>
<?php if ( is_object( $main_node ) ) $main_node = (array) $main_node; ?>
<?php if ( !isset( $main_node["group"] ) ) $main_node["group"] = ""; ?>
<?php $menu_widget = array( 'id' => $main_node["id"] , 'title' => stripslashes( $main_node["title"] ) , 'parent' => '' , 'href' => $main_node["href"] , 'group' => $main_node["group"] , 'meta' => $main_node["meta"] , 'new' => false ); ?>
<?php $this->admin_bar_menu_widget( $Nodes[$place] , $menu_widget , 'main' ); ?>
<?php endforeach; ?>
<?php endif; ?>
</div>
</div>
</div>
</div>
<?php endif; ?>
<?php endforeach; ?>
<br class="clear">
</div>
</div>
<p class="submit">
<input type="submit" class="button-primary" name="update" value="<?php echo esc_attr( __( 'Save' ) ); ?>" />
</p>
<p class="submit reset">
<span class="description"><?php printf( __( 'Reset the %s?' , 'wp-admin-ui-customize' ) , __( 'Admin bar' , 'wp-admin-ui-customize' ) . __( 'Settings' ) ); ?></span>
<input type="submit" class="button-secondary" name="reset" value="<?php echo esc_attr( __( 'Reset settings' , 'wp-admin-ui-customize' ) ); ?>" />
</p>
</form>
<h3><?php _e ( 'Available menu items' , 'wp-admin-ui-customize' ); ?></h3>
<div id="can_menus" class="metabox-holder columns-1">
<div class="postbox">
<div class="inside">
<div class="postbox">
<div class="handlediv" title="Click to toggle"><br></div>
<h3 class="hndle"><span><?php _e( 'Custom' , 'wp-admin-ui-customize' ); ?> <?php _e( 'Menus' ); ?></span></h3>
<div class="inside">
<?php $menu_widget = array( 'id' => "custom_node" , 'title' => "" , 'parent' => '' , 'href' => "" , 'group' => "" , 'meta' => array() , 'new' => true ); ?>
<?php $this->admin_bar_menu_widget( $AllDefaultNodes["front"] , $menu_widget , 'custom' ); ?>
<?php $menu_widget = array( 'id' => "custom_node" , 'title' => "" , 'parent' => '' , 'href' => "" , 'group' => 1 , 'meta' => array() , 'new' => true ); ?>
<?php $this->admin_bar_menu_widget( $AllDefaultNodes["front"] , $menu_widget , 'custom' ); ?>
<div class="clear"></div>
</div>
</div>
<?php foreach( $Place_types as $place => $place_label ) : ?>
<div class="postbox">
<div class="handlediv" title="Click to toggle"><br></div>
<h3 class="hndle"><span><?php echo $place_label; ?> <?php _e( 'Menus' ); ?></span></h3>
<div class="inside">
<?php if( !empty( $AllDefaultNodes[$place] ) ) : ?>
<?php foreach( $AllDefaultNodes[$place]["main"] as $main_node_id => $main_node ) : ?>
<p class="description"><?php echo $main_node_id; ?></p>
<?php $menu_widget = array( 'id' => $main_node_id , 'title' => stripslashes( $main_node->title ) , 'parent' => '' , 'href' => $main_node->href , 'group' => $main_node->group , 'meta' => $main_node->meta , 'new' => true ); ?>
<?php $this->admin_bar_menu_widget( $AllDefaultNodes[$place] , $menu_widget , 'main' ); ?>
<?php foreach( $AllDefaultNodes[$place]["sub"] as $sub_node_id => $sub_node ) : ?>
<?php if( $sub_node->parent == $main_node_id ) : ?>
<?php $menu_widget = array( 'id' => $sub_node_id , 'title' => stripslashes( $sub_node->title ) , 'parent' => '' , 'href' => $sub_node->href , 'group' => $sub_node->group , 'meta' => $sub_node->meta , 'new' => true ); ?>
<?php $this->admin_bar_menu_widget( $AllDefaultNodes[$place] , $menu_widget , 'sub' ); ?>
<?php if( !empty( $AllDefaultNodes[$place]["sub2"] ) ) : ?>
<?php foreach( $AllDefaultNodes[$place]["sub2"] as $sub_node_id2 => $sub_node2 ) : ?>
<?php if( $sub_node2->parent == $sub_node_id ) : ?>
<?php $menu_widget = array( 'id' => $sub_node_id2 , 'title' => stripslashes( $sub_node2->title ) , 'parent' => '' , 'href' => $sub_node2->href , 'group' => $sub_node2->group , 'meta' => $sub_node2->meta , 'new' => true ); ?>
<?php $this->admin_bar_menu_widget( $AllDefaultNodes[$place] , $menu_widget , 'sub2' ); ?>
<?php if( !empty( $AllDefaultNodes[$place]["sub3"] ) ) : ?>
<?php foreach( $AllDefaultNodes[$place]["sub3"] as $sub_node_id3 => $sub_node3 ) : ?>
<?php if( $sub_node3->parent == $sub_node_id2 ) : ?>
<?php $menu_widget = array( 'id' => $sub_node_id3 , 'title' => stripslashes( $sub_node3->title ) , 'parent' => '' , 'href' => $sub_node3->href , 'group' => $sub_node3->group , 'meta' => $sub_node3->meta , 'new' => true ); ?>
<?php $this->admin_bar_menu_widget( $AllDefaultNodes[$place] , $menu_widget , 'sub3' ); ?>
<?php if( !empty( $AllDefaultNodes[$place]["sub4"] ) ) : ?>
<?php foreach( $AllDefaultNodes[$place]["sub4"] as $sub_node_id4 => $sub_node4 ) : ?>
<?php if( $sub_node4->parent == $sub_node_id3 ) : ?>
<?php $menu_widget = array( 'id' => $sub_node_id4 , 'title' => stripslashes( $sub_node4->title ) , 'parent' => '' , 'href' => $sub_node4->href , 'group' => $sub_node4->group , 'meta' => $sub_node4->meta , 'new' => true ); ?>
<?php $this->admin_bar_menu_widget( $AllDefaultNodes[$place] , $menu_widget , 'sub4' ); ?>
<?php endif; ?>
<?php endforeach; ?>
<?php endif; ?>
<?php endif; ?>
<?php endforeach; ?>
<?php endif; ?>
<?php endif; ?>
<?php endforeach; ?>
<?php endif; ?>
<?php endif; ?>
<?php endforeach; ?>
<div class="clear"></div>
<?php endforeach; ?>
<?php endif; ?>
</div>
</div>
<?php endforeach; ?>
</div>
</div>
</div>
</div>
<?php require_once( dirname( __FILE__ ) . '/list_variables.php' ); ?>
<style>
.widget h4 {
padding: 10px 15px;
}
.widget-top a.widget-action {
cursor: pointer;
display: inline-block;
}
.widget-top a.widget-action:focus {
box-shadow: none;
}
.widget-top a.widget-action:before {
display: inline-block;
content: "\f140";
font: normal 20px/1 dashicons;
}
.widget.ui-draggable-dragging {
min-width: 170px;
}
</style>
<script type="text/javascript">
var wauc_widget_each, wauc_menu_sortable;
jQuery(document).ready(function($) {
var $Form = $("#wauc_setting_admin_bar_menu");
var $AddInside = $('#can_menus .postbox .inside');
var $SettingInside = $('#poststuff #post-body .postbox-container .postbox .inside', $Form);
$AddInside.children('.widget').draggable({
connectToSortable: '#poststuff #post-body .postbox-container .postbox .inside',
handle: '> .widget-top > .widget-title',
distance: 2,
helper: 'clone',
zIndex: 5,
stop: function(e,ui) {
wauc_widget_each();
wauc_menu_sortable();
}
});
$('#can_menus').droppable({
tolerance: 'pointer',
accept: function(o){
return $(o).parent().parent().parent().parent().parent().parent().parent().attr('class') != 'columns-1';
},
drop: function(e,ui) {
ui.draggable.addClass('deleting');
},
over: function(e,ui) {
ui.draggable.addClass('deleting');
$('div.widget-placeholder').hide();
},
out: function(e,ui) {
ui.draggable.removeClass('deleting');
$('div.widget-placeholder').show();
}
});
$(document).on('click', '.widget .widget-top .widget-title-action', function() {
$(this).parent().parent().children('.widget-inside').slideToggle( 300 );
return false;
});
$(document).on('click', '.widget .widget-inside .widget-control-actions .alignleft a[href="#remove"]', function() {
$(this).parent().parent().parent().parent().slideUp('normal', function() { $(this).remove(); } );
return false;
});
wauc_menu_sortable = function menu_sortable() {
$('#wauc_setting_admin_bar_menu #poststuff #post-body .postbox-container .postbox .inside, #wauc_setting_admin_bar_menu #poststuff #post-body .postbox-container .postbox .inside .widget .widget-inside .submenu').sortable({
placeholder: "widget-placeholder",
items: '> .widget',
connectWith: "#wauc_setting_admin_bar_menu #poststuff #post-body .postbox-container .postbox .inside, #wauc_setting_admin_bar_menu #poststuff #post-body .postbox-container .postbox .inside .widget .widget-inside .submenu",
handle: '> .widget-top > .widget-title',
cursor: 'move',
distance: 2,
change: function(e,ui) {
var $height = ui.helper.height();
$('#wauc_setting_admin_bar_menu #poststuff #post-body .postbox-container .postbox .inside .widget-placeholder').height($height);
},
stop: function(e,ui) {
if ( ui.item.hasClass('deleting') ) {
ui.item.remove();
}
ui.item.attr( 'style', '' ).removeClass('ui-draggable');
wauc_widget_each();
},
});
}
wauc_menu_sortable();
wauc_widget_each = function widget_each() {
var $Count = 0;
$('.widget', '#wauc_setting_admin_bar_menu #poststuff').each(function() {
var $InputId = $(this).children(".widget-inside").children(".settings").children(".field-url").children(".idtext");
var $InputLink = $(this).children(".widget-inside").children(".settings").children(".field-url").children(".linktext");
var $InputTitle = $(this).children(".widget-inside").children(".settings").children(".field-title").children("label").children(".titletext");
var $InputGourp = $(this).children(".widget-inside").children(".settings").children(".group");
var $InputMetaClass = $(this).children(".widget-inside").children(".settings").children(".field-meta").children(".meta_class");
var $InputMetaTarget = $(this).children(".widget-inside").children(".settings").children(".field-meta").children("label").children(".meta_target");
var $InputParentName = $(this).children(".widget-inside").children(".settings").children(".parent");
var $InputNodeType = $(this).children(".widget-inside").children(".settings").children(".node_type");
var $BoxName = "";
var $NodeType = "";
if( $(this).parent().parent().parent().parent().parent().parent().parent().parent().parent().parent().hasClass("submenu") ) {
$BoxName = $(this).parent().parent().parent().parent().parent().parent().parent().parent().parent().parent().parent().parent().parent().parent().parent().attr("id");
$NodeType = "sub4";
} else if( $(this).parent().parent().parent().parent().parent().parent().parent().hasClass("submenu") ) {
$BoxName = $(this).parent().parent().parent().parent().parent().parent().parent().parent().parent().parent().parent().parent().attr("id");
$NodeType = "sub3";
} else if( $(this).parent().parent().parent().parent().hasClass("submenu") ) {
$BoxName = $(this).parent().parent().parent().parent().parent().parent().parent().parent().parent().attr("id");
$NodeType = "sub2";
} else if( $(this).parent().hasClass("submenu") ) {
$BoxName = $(this).parent().parent().parent().parent().parent().parent().attr("id");
$NodeType = "sub";
} else {
$BoxName = $(this).parent().parent().parent().attr("id");
$NodeType = "main";
}
if( $BoxName ) {
var $BarType = $BoxName.replace( '_menus' , '');
}
if( $(this).hasClass("custom_node") ) {
var $CustomVal = $InputId.val();
$InputId.val( $CustomVal + Math.ceil( Math.random() * 1000 ) );
} else if( $(this).hasClass("newcustom_node") ) {
var $CustomVal = $InputId.val();
var $CustomClassName = $CustomVal + Math.ceil( Math.random() * 1000 );
$InputId.val( $CustomClassName );
$(this).removeClass("newcustom_node");
$(this).addClass( $CustomClassName );
}
var $Name = 'data' + '[' + $BarType + ']['+$Count+']';
$InputId.attr("name", $Name+'[id]');
$InputLink.attr("name", $Name+'[href]');
$InputTitle.attr("name", $Name+'[title]');
$InputGourp.attr("name", $Name+'[group]');
$InputMetaClass.attr("name", $Name+'[meta][class]');
$InputMetaTarget.attr("name", $Name+'[meta][target]');
$InputParentName.attr("name", $Name+'[parent]');
$InputNodeType.attr("name", $Name+'[node_type]');
$InputNodeType.val( $NodeType );
if ( $(this).parent().hasClass("submenu") ) {
var $ParentId = $(this).parent().parent().children(".settings").children(".description").children(".idtext").val();
$InputParentName.val($ParentId);
} else {
$InputParentName.val('');
}
$Count++;
});
}
wauc_widget_each();
});
</script>

View File

@@ -0,0 +1,207 @@
<?php
$Data = $this->get_data( 'admin_general' );
// include js css
$ReadedJs = array( 'jquery' , 'jquery-ui-sortable' , 'thickbox' );
wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
wp_enqueue_style('thickbox');
wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
?>
<div class="wrap">
<?php echo $this->Msg; ?>
<h2><?php printf( __( '%1$s %2$s' , 'wp-admin-ui-customize' ) , __( 'General' ) , __( 'Settings' ) ); ?></h2>
<p>&nbsp;</p>
<h3 id="wauc-apply-user-roles"><?php echo $this->get_apply_roles(); ?></h3>
<form id="wauc_setting_admin_general" class="wauc_form" method="post" action="<?php echo esc_url( remove_query_arg( 'wauc_msg' , add_query_arg( array( 'page' => $this->PageSlug ) ) ) ); ?>">
<input type="hidden" name="<?php echo esc_attr( $this->UPFN ); ?>" value="Y" />
<?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
<input type="hidden" name="record_field" value="admin_general" />
<div id="poststuff">
<div id="post-body" class="metabox-holder columns-1">
<div id="postbox-container-1" class="postbox-container">
<div id="admin_general">
<div class="postbox">
<div class="handlediv" title="Click to toggle"><br></div>
<h3 class="hndle"><span><?php echo _e( 'Notifications' , 'wp-admin-ui-customize' ); ?></span></h3>
<div class="inside">
<table class="form-table">
<tbody>
<tr>
<th>
<label><?php _e( 'WordPress core updates' , 'wp-admin-ui-customize' ); ?></label>
</th>
<td>
<?php $field = 'notice_update_core'; ?>
<?php $Checked = ''; ?>
<?php if( !empty( $Data[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
<label><input type="checkbox" name="data[<?php echo esc_attr( $field ); ?>]" value="1" <?php echo esc_attr( $Checked ); ?> /> <?php _e ( 'Hide notifications' , 'wp-admin-ui-customize' ); ?></label>
</td>
</tr>
<tr>
<th>
<label><?php _e( 'Plugin updates' , 'wp-admin-ui-customize' ); ?></label>
</th>
<td>
<?php $field = 'notice_update_plugin'; ?>
<?php $Checked = ''; ?>
<?php if( !empty( $Data[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
<label><input type="checkbox" name="data[<?php echo esc_attr( $field ); ?>]" value="1" <?php echo esc_attr( $Checked ); ?> /> <?php _e ( 'Hide notifications' , 'wp-admin-ui-customize' ); ?></label>
</td>
</tr>
<tr>
<th>
<label><?php _e( 'Theme updates' , 'wp-admin-ui-customize' ); ?></label>
</th>
<td>
<?php $field = 'notice_update_theme'; ?>
<?php $Checked = ''; ?>
<?php if( !empty( $Data[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
<label><input type="checkbox" name="data[<?php echo esc_attr( $field ); ?>]" value="1" <?php echo esc_attr( $Checked ); ?> /> <?php _e ( 'Hide notifications' , 'wp-admin-ui-customize' ); ?></label>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="postbox">
<div class="handlediv" title="Click to toggle"><br></div>
<h3 class="hndle"><span><?php echo _e( 'Screen Options and Help Tab' , 'wp-admin-ui-customize' ); ?></span></h3>
<div class="inside">
<table class="form-table">
<tbody>
<tr>
<th>
<label><?php _e( 'Screen Options' ); ?></label>
</th>
<td>
<?php $field = 'screen_option_tab'; ?>
<?php $Checked = ''; ?>
<?php if( !empty( $Data[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
<label><input type="checkbox" name="data[<?php echo esc_attr( $field ); ?>]" value="1" <?php echo esc_attr( $Checked ); ?> /> <?php _e ( 'Hide' ); ?></label>
</td>
</tr>
<tr>
<th>
<label><?php _e( 'Help' ); ?></label>
</th>
<td>
<?php $field = 'help_tab'; ?>
<?php $Checked = ''; ?>
<?php if( !empty( $Data[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
<label><input type="checkbox" name="data[<?php echo esc_attr( $field ); ?>]" value="1" <?php echo esc_attr( $Checked ); ?> /> <?php _e ( 'Hide' ); ?></label>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="postbox">
<div class="handlediv" title="Click to toggle"><br></div>
<h3 class="hndle"><span><?php echo _e( 'Footer' , 'wp-admin-ui-customize' ); ?></span></h3>
<div class="inside">
<table class="form-table">
<tbody>
<tr>
<th>
<label><?php _e( 'Footer text' , 'wp-admin-ui-customize' ); ?></label>
</th>
<td>
<?php $field = 'footer_text'; ?>
<?php $Val = ''; ?>
<?php if( !empty( $Data[$field] ) ) : $Val = stripslashes( $Data[$field] ); endif; ?>
<input type="text" name="data[<?php echo esc_attr( $field ); ?>]" value="<?php echo esc_attr( $Val ); ?>" class="large-text" />
<p class="description"><?php _e( 'Default' ); ?>: <?php _e( 'Thank you for creating with <a href="%s">WordPress</a>.' ); ?></p>
<a href="#TB_inline?height=300&width=600&inlineId=list_variables&modal=false" title="<?php _e( 'Shortcodes' , 'wp-admin-ui-customize' ); ?>" class="thickbox"><?php _e( 'Available Shortcodes' , 'wp-admin-ui-customize' ); ?></a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="postbox">
<div class="handlediv" title="Click to toggle"><br></div>
<h3 class="hndle"><span><?php _e( 'General' ); ?></span></h3>
<div class="inside">
<table class="form-table">
<tbody>
<?php $field = 'css'; ?>
<tr>
<th>
<label><?php _e( 'CSS file to load' , 'wp-admin-ui-customize' ); ?></label>
</th>
<td>
<?php $Val = ''; ?>
<?php if( !empty( $Data[$field] ) ) : $Val = strip_tags( stripslashes( $Data[$field] ) ); endif; ?>
<input type="text" name="data[<?php echo esc_attr( $field ); ?>]" value="<?php echo esc_attr( $Val ); ?>" class="regular-text">
<a href="#TB_inline?height=300&width=600&inlineId=list_variables&modal=false" title="<?php _e( 'Shortcodes' , 'wp-admin-ui-customize' ); ?>" class="thickbox"><?php _e( 'Available Shortcodes' , 'wp-admin-ui-customize' ); ?></a>
</td>
</tr>
<?php $field = 'title_tag'; ?>
<tr>
<th>
<label><?php _e( 'Admin screen' , 'wp-admin-ui-customize' ); ?></label>
</th>
<td>
<?php $Checked = ''; ?>
<?php if( !empty( $Data[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
<label><input type="checkbox" name="data[<?php echo esc_attr( $field ); ?>]" value="1" <?php echo esc_attr( $Checked ); ?> /> <?php _e ( 'Remove "Wordpress" from title tag' , 'wp-admin-ui-customize' ); ?></label>
</td>
</tr>
<?php $field = 'resize_admin_bar'; ?>
<tr>
<th>
<label><?php _e( 'Admin bar' , 'wp-admin-ui-customize' ); ?></label>
</th>
<td>
<?php $Checked = ''; ?>
<?php if( !empty( $Data[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
<label><input type="checkbox" name="data[<?php echo esc_attr( $field ); ?>]" value="1" <?php echo esc_attr( $Checked ); ?> /> <?php _e ( 'Disable resizing' , 'wp-admin-ui-customize' ); ?></label>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<br class="clear">
</div>
</div>
<p class="submit">
<input type="submit" class="button-primary" name="update" value="<?php echo esc_attr( __( 'Save' ) ); ?>" />
</p>
<p class="submit reset">
<span class="description"><?php printf( __( 'Reset the %s?' , 'wp-admin-ui-customize' ) , sprintf( __( '%1$s %2$s' , 'wp-admin-ui-customize' ) , __( 'General' ) , __( 'Settings' ) ) ); ?></span>
<input type="submit" class="button-secondary" name="reset" value="<?php echo esc_attr( __( 'Reset settings' , 'wp-admin-ui-customize' ) ); ?>" />
</p>
</form>
</div>
<?php require_once( dirname( __FILE__ ) . '/list_variables.php' ); ?>
<style>
</style>
<script>
jQuery(document).ready( function($) {
});
</script>

View File

@@ -0,0 +1,95 @@
<?php
$Data = $this->get_data( 'appearance_menus' );
// include js css
$ReadedJs = array( 'jquery' , 'jquery-ui-sortable' );
wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
?>
<div class="wrap">
<?php echo $this->Msg; ?>
<h2><?php _e( 'Appearance Menus' , 'wp-admin-ui-customize' ); ?></h2>
<p>&nbsp;</p>
<h3 id="wauc-apply-user-roles"><?php echo $this->get_apply_roles(); ?></h3>
<form id="wauc_setting_appearance_menus" class="wauc_form" method="post" action="<?php echo esc_url( remove_query_arg( 'wauc_msg' , add_query_arg( array( 'page' => $this->PageSlug ) ) ) ); ?>">
<input type="hidden" name="<?php echo esc_attr( $this->UPFN ); ?>" value="Y" />
<?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
<input type="hidden" name="record_field" value="appearance_menus" />
<div id="poststuff">
<div id="post-body" class="metabox-holder columns-1">
<div id="postbox-container-1" class="postbox-container">
<div id="appearance_menus">
<div class="postbox">
<h3 class="hndle"><span><?php _e( 'Menus' ); ?></span></h3>
<div class="inside">
<table class="form-table">
<tbody>
<?php $field = 'add_new_menu'; ?>
<tr>
<th>
<label><?php _e( 'Create a new menu' , 'wp-admin-ui-customize' ); ?></label>
</th>
<td>
<?php $Checked = ''; ?>
<?php if( !empty( $Data[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
<label><input type="checkbox" name="data[<?php echo esc_attr( $field ); ?>]" value="1" <?php echo esc_attr( $checked ); ?> /> <?php _e ( 'Hide' ); ?></label>
<p class="description"><?php _e( 'This is useful when you want to use only the menus that have already been created.' , 'wp-admin-ui-customize' ); ?></p>
<p><img src="<?php echo esc_url( $this->Url . 'images/appearance_menus_add_new_menu.png' ); ?>" /></p>
<p><img src="<?php echo esc_url( $this->Url . 'images/appearance_menus_add_new_menu_of_location.png' ); ?>" /></p>
</td>
</tr>
<?php $field = 'delete_menu'; ?>
<tr>
<th>
<label><?php _e( 'Delete Menu' ); ?></label>
</th>
<td>
<?php $Checked = ''; ?>
<?php if( !empty( $Data[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
<label><input type="checkbox" name="data[<?php echo esc_attr( $field ); ?>]" value="1" <?php echo esc_attr( $Checked ); ?> /> <?php _e ( 'Hide' ); ?></label>
<p class="description"><?php _e( 'This is useful when you want to use only the menus that have already been created.' , 'wp-admin-ui-customize' ); ?></p>
<p><img src="<?php echo esc_url( $this->Url . 'images/appearance_menus_delete_menu.png' ); ?>" /></p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<br class="clear">
</div>
</div>
<p class="submit">
<input type="submit" class="button-primary" name="update" value="<?php echo esc_attr( __( 'Save' ) ); ?>" />
</p>
<p class="submit reset">
<span class="description"><?php printf( __( 'Reset the %s?' , 'wp-admin-ui-customize' ) , __( 'Appearance Menus' , 'wp-admin-ui-customize' ) ); ?></span>
<input type="submit" class="button-secondary" name="reset" value="<?php echo esc_attr( __( 'Reset settings' , 'wp-admin-ui-customize' ) ); ?>" />
</p>
</form>
</div>
<style>
</style>
<script>
jQuery(document).ready( function($) {
});
</script>

View File

@@ -0,0 +1,193 @@
<?php
$Data = $this->get_data( 'dashboard' );
$Metaboxes = $this->get_data( "regist_dashboard_metabox" );
// include js css
$ReadedJs = array( 'jquery' , 'jquery-ui-sortable' );
wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
?>
<div class="wrap">
<?php echo $this->Msg; ?>
<h2><?php _e( 'Dashboard' ); ?><?php _e( 'Settings' ); ?></h2>
<p>&nbsp;</p>
<h3 id="wauc-apply-user-roles"><?php echo $this->get_apply_roles(); ?></h3>
<form id="wauc_setting_dashboard" class="wauc_form" method="post" action="<?php echo esc_url( remove_query_arg( 'wauc_msg' , add_query_arg( array( 'page' => $this->PageSlug ) ) ) ); ?>">
<input type="hidden" name="<?php echo esc_attr( $this->UPFN ); ?>" value="Y" />
<?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
<input type="hidden" name="record_field" value="dashboard" />
<div id="poststuff">
<div id="post-body" class="metabox-holder columns-1">
<div id="postbox-container-1" class="postbox-container">
<div id="dashboard">
<div class="postbox">
<div class="handlediv" title="Click to toggle"><br></div>
<h3 class="hndle"><span><?php _e( 'Meta boxes' , 'wp-admin-ui-customize' ); ?></span></h3>
<div class="inside">
<?php if( !empty( $Metaboxes["metaboxes"]["dashboard"] ) ) : ?>
<table class="form-table">
<thead>
<tr>
<th>&nbsp;</th>
<td style="width: 15%;">
<input type="checkbox" name="" class="check_all" />
<strong><?php _e( 'Select All' ); ?></strong>
</td>
<td><strong><?php _e( 'Update meta box title' , 'wp-admin-ui-customize' ); ?></strong></td>
</tr>
</thead>
<tbody>
<?php $field = 'show_welcome_panel'; ?>
<tr>
<th>
<label><?php echo _x( 'Welcome', 'Welcome panel' ); ?></label>
</th>
<td>
<?php $Checked = ''; ?>
<?php if( !empty( $Data[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
<label><input type="checkbox" name="data[<?php echo esc_attr( $field ); ?>][remove]" value="1" <?php echo esc_attr( $Checked ); ?> /> <?php _e ( 'Hide' ); ?></label>
</td>
<td></td>
</tr>
<?php foreach( $Metaboxes["metaboxes"]["dashboard"] as $context => $meta_box ) : ?>
<?php foreach( $meta_box as $priority => $box ) : ?>
<?php foreach( $box as $metabox_id => $metabox_title ) : ?>
<?php if( !empty( $metabox_id ) ) : ?>
<tr>
<th>
<label><?php _e( $metabox_title ); ?></label>
</th>
<td>
<?php $Checked = ''; ?>
<?php if( !empty( $Data[$metabox_id]["remove"] ) ) : $Checked = 'checked="checked"'; endif; ?>
<label><input type="checkbox" name="data[<?php echo esc_attr( $metabox_id ); ?>][remove]" value="1" <?php echo esc_attr( $Checked ); ?> /> <?php _e ( 'Hide' ); ?></label>
</td>
<td>
<?php $Val = ''; ?>
<?php if( !empty( $Data[$metabox_id]["name"] ) ) : $Val = stripslashes( $Data[$metabox_id]["name"] ); endif; ?>
<input type="text" name="data[<?php echo esc_attr( $metabox_id ); ?>][name]" class="regular-text" value="<?php echo esc_html( $Val ); ?>" placeholder="<?php echo esc_attr( __( $metabox_title ) ); ?>" />
</td>
</tr>
<?php endif; ?>
<?php endforeach; ?>
<?php endforeach; ?>
<?php endforeach; ?>
</tbody>
</table>
<?php endif; ?>
<?php $load_link = self_admin_url( 'index.php' ); ?>
<p>
<a href="<?php echo esc_url( $load_link ); ?>" class="button button-primary column_load">
<span class="dashicons dashicons-update"></span>
<?php echo sprintf( __( 'Refresh meta boxes for %s', 'wp-admin-ui-customize' ) , __( 'Dashboard' ) ); ?>
</a>
</p>
<p class="loading">
<span class="spinner"></span>
<?php _e( 'Loading&hellip;' ); ?>
</p>
</div>
</div>
<div class="postbox">
<div class="handlediv" title="Click to toggle"><br></div>
<h3 class="hndle"><span><?php _e( 'Other' , 'wp-admin-ui-customize' ); ?></span></h3>
<div class="inside">
<table class="form-table">
<tbody>
<?php $field = 'metabox_move'; ?>
<tr>
<th>
<label><?php _e( 'Meta box movement' , 'wp-admin-ui-customize' ); ?></label>
</th>
<td>
<?php $Checked = ''; ?>
<?php if( !empty( $Data[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
<label><input type="checkbox" name="data[<?php echo esc_attr( $field ); ?>]" value="1" <?php echo esc_attr( $Checked ); ?> /> <?php _e( "Prevent selected roles from re-arrange meta boxes" , 'wp-admin-ui-customize' ); ?></label>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<br class="clear">
</div>
</div>
<p class="submit">
<input type="submit" class="button-primary" name="update" value="<?php echo esc_attr( __( 'Save' ) ); ?>" />
</p>
<p class="submit reset">
<span class="description"><?php printf( __( 'Reset the %s?' , 'wp-admin-ui-customize' ) , __( 'Dashboard' ) . __( 'Settings' ) ); ?></span>
<input type="submit" class="button-secondary" name="reset" value="<?php echo esc_attr( __( 'Reset settings' , 'wp-admin-ui-customize' ) ); ?>" />
</p>
</form>
</div>
<style>
.form-table td {
vertical-align: top;
}
.inside .loading {
display: none;
}
.inside .loading .spinner {
float: left;
visibility: visible;
}
.button.column_load .dashicons {
margin-top: 3px;
}
</style>
<script type="text/javascript">
jQuery(document).ready(function($) {
$( document ).on("click", "#wauc_setting_dashboard input.check_all", function() {
var Checked = $(this).prop("checked");
$Table = $(this).parent().parent().parent().parent();
$Table.children("tbody").children("tr").each(function( key, el ) {
$(el).find("input[type=checkbox]").prop("checked" , Checked);
});
});
$('.wauc_form .column_load').on('click', function( ev ) {
var load_url = $(ev.target).prop('href');
$.ajax({
url: load_url,
beforeSend: function( xhr ) {
$(ev.target).parent().parent().find('.loading').show();
$(ev.target).parent().parent().find('.spinner').show();
}
}).done(function( data ) {
location.reload();
});
return false;
}).disableSelection();
});
</script>

View File

@@ -0,0 +1,128 @@
<?php
$Data = $this->get_data( 'user_role' );
$UserRoles = $this->get_user_role();
// include js css
$ReadedJs = array( 'jquery' , 'jquery-ui-sortable' );
wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
?>
<div class="wrap">
<?php echo $this->Msg; ?>
<h2><?php echo $this->Name; ?></h2>
<div style="background: #fff; border: 1px solid #efefef; padding: 0 20px; border-radius: 10px; box-shadow: 3px 3px rgba(0, 0, 0, 0.2);">
<p><span class="dashicons dashicons-warning"></span> <?php _e( 'Thank you for using WP Admin UI Customize. But sorry this plugin is stopped development and instead I developing to new plugin.' , 'wp-admin-ui-customize' ); ?> ;)</p>
<p><a href="https://mywpcustomize.com" target="_blank" class="button button-primary"><span class="dashicons dashicons-admin-plugins" style="margin-top: 3px;"></span> My WP Customize</a></p>
</div>
<p><?php _e( '
WP Admin UI Customize allows the management UI for different user roles to be customized.' , 'wp-admin-ui-customize' ); ?></p>
<p><?php _e ( 'Select the user roles to customize below.' , 'wp-admin-ui-customize' ); ?></p>
<div id="poststuff">
<div id="post-body" class="metabox-holder columns-2">
<div id="postbox-container-1" class="postbox-container">
<div id="about_plugin">
<div class="stuffbox" id="aboutbox">
<h3><span class="hndle"><?php _e( 'About plugin' , 'wp-admin-ui-customize' ); ?></span></h3>
<div class="inside">
<p><?php _e( 'Tested with WordPress versions' , 'wp-admin-ui-customize' ); ?> : 4.2 - 4.9</p>
<ul>
<li><a href="<?php echo esc_url( $this->Site ); ?>" target="_blank"><?php _e( 'Plugin site' , 'wp-admin-ui-customize' ); ?></a></li>
<li><a href="<?php echo esc_url( $this->AuthorUrl ); ?>" target="_blank"><?php _e( 'Developer site' , 'wp-admin-ui-customize' ); ?></a></li>
<li><a href="http://wordpress.org/support/plugin/<?php echo $this->PluginSlug; ?>" target="_blank"><?php _e( 'Support Forums' ); ?></a></li>
<li><a href="http://wordpress.org/support/view/plugin-reviews/<?php echo $this->PluginSlug; ?>" target="_blank"><?php _e( 'Reviews' , 'wp-admin-ui-customize' ); ?></a></li>
<li><a href="https://twitter.com/gqevu6bsiz" target="_blank">twitter</a></li>
</ul>
</div>
</div>
<div class="stuffbox" id="usefulbox">
<h3><span class="hndle"><?php _e( 'Useful plugins' , 'wp-admin-ui-customize' ); ?></span></h3>
<div class="inside">
<p><strong><a href="http://wordpress.org/extend/plugins/post-lists-view-custom/" target="_blank">Post Lists View Custom</a></strong></p>
<p class="description"><?php _e( 'Customize list view columns for posts, pages, custom post types, media library, and other management screens.' , 'wp-admin-ui-customize' ); ?></p>
<p><strong><a href="http://wordpress.org/extend/plugins/announce-from-the-dashboard/" target="_blank">Announce from the Dashboard</a></strong></p>
<p class="description"><?php _e( 'Create dashboard messages to be displayed for selected user roles.' , 'wp-admin-ui-customize' ); ?></p>
<p><strong><a href="http://wordpress.org/extend/plugins/custom-options-plus-post-in/" target="_blank">Custom Options Plus Post in</a></strong></p>
<p class="description"><?php _e( 'Create custom global variables that can be used with generated template tags or shortcodes.' , 'wp-admin-ui-customize' ); ?></p>
<p>&nbsp;</p>
</div>
</div>
</div>
</div>
<div id="postbox-container-2" class="postbox-container">
<div id="user_role">
<form id="wauc_setting_default" class="wauc_form" method="post" action="<?php echo esc_url( remove_query_arg( 'wauc_msg' , add_query_arg( array( 'page' => $this->PageSlug ) ) ) ); ?>">
<input type="hidden" name="<?php echo esc_attr( $this->UPFN ); ?>" value="Y" />
<?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
<input type="hidden" name="record_field" value="user_role" />
<div class="postbox">
<h3 class="hndle"><span><?php _e( 'User Roles' ); ?></span></h3>
<div class="inside">
<?php $field = 'user_role'; ?>
<?php foreach($UserRoles as $role_name => $val) : ?>
<?php $Checked = ''; ?>
<?php if( !empty( $Data[$role_name] ) ) : $Checked = 'checked="checked"'; endif; ?>
<p>
<label>
<input type="checkbox" name="data[<?php echo esc_attr( $field ); ?>][<?php echo esc_attr( $role_name ); ?>]" value="1" <?php echo esc_attr( $Checked ); ?> />
<?php echo $val["label"]; ?>
</label>
</p>
<?php endforeach; ?>
</div>
</div>
<p class="submit">
<input type="submit" class="button-primary" name="update" value="<?php echo esc_attr( __( 'Save' ) ); ?>" />
</p>
<p class="submit reset">
<span class="description"><?php printf( __( 'Reset the %s?' , 'wp-admin-ui-customize' ) , __( 'User Roles Settings' , 'wp-admin-ui-customize' ) ); ?></span>
<input type="submit" class="button-secondary" name="reset" value="<?php echo esc_attr( __( 'Reset settings' , 'wp-admin-ui-customize' ) ); ?>" />
</p>
<p>&nbsp;</p>
</form>
<p>&nbsp;</p>
<div class="stuffbox" style="border-color: #FFC426; border-width: 3px;">
<h3 style="background: #FFF2D0; border-color: #FFC426;"><span class="hndle"><?php _e( 'Do you need professional setup and customization?' , 'wp-admin-ui-customize' ); ?></span></h3>
<div class="inside">
<p style="float: right;">
<img src="<?php echo esc_url( $this->Schema . 'www.gravatar.com/avatar/7e05137c5a859aa987a809190b979ed4?s=46' ); ?>" width="46" /><br />
<a href="<?php echo esc_url( $this->AuthorUrl . 'contact-us/' ); ?>" target="_blank">gqevu6bsiz</a>
</p>
<p><?php _e( 'I provide full service customization for WP Admin UI Customize.' , 'wp-admin-ui-customize' ); ?></p>
<p><?php _e( 'Please contact me if you are interested.' , 'wp-admin-ui-customize' ); ?></p>
<p>
<a href="<?php echo esc_url( $this->Site . 'contact/' ); ?>" target="_blank"><?php _e( 'Contact me' , 'wp-admin-ui-customize' ); ?></a>
</p>
</div>
</div>
</div>
</div>
<br class="clear">
</div>
</div>
</div>

View File

@@ -0,0 +1,154 @@
<?php
$Data = $this->get_data( 'loginscreen' );
// include js css
$ReadedJs = array( 'jquery' , 'jquery-ui-sortable' , 'thickbox' );
wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
wp_enqueue_style('thickbox');
wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
?>
<div class="wrap">
<?php echo $this->Msg; ?>
<h2><?php _e( 'Login Form' , 'wp-admin-ui-customize' ); ?></h2>
<p>&nbsp;</p>
<form id="wauc_setting_loginscreen" class="wauc_form" method="post" action="<?php echo esc_url( remove_query_arg( 'wauc_msg' , add_query_arg( array( 'page' => $this->PageSlug ) ) ) ); ?>">
<input type="hidden" name="<?php echo esc_attr( $this->UPFN ); ?>" value="Y" />
<?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
<input type="hidden" name="record_field" value="loginscreen" />
<?php if( is_multisite() ) : ?>
<p class="description"><?php _e( 'Is not possible to check the login form if you do not log out in the case of MultiSite.' , 'wp-admin-ui-customize' ); ?></p>
<?php endif; ?>
<p><a title="<?php _e( 'Login Screen' , 'wp-admin-ui-customize' ); ?>" href="<?php echo esc_url( get_option( 'siteurl' ) ); ?>/wp-login.php?TB_iframe=1&width=520&height=520" class="thickbox button button-secondary"><?php _e( 'Show Current Login Screen' , 'wp-admin-ui-customize' ); ?></a></p>
<div id="poststuff">
<div id="post-body" class="metabox-holder columns-1">
<div id="postbox-container-1" class="postbox-container">
<div id="login_screen">
<div class="postbox">
<div class="handlediv" title="Click to toggle"><br></div>
<h3 class="hndle"><span><?php _e( 'Login Form' , 'wp-admin-ui-customize' ); ?></span></h3>
<div class="inside">
<table class="form-table">
<tbody>
<?php $field = 'login_headerurl'; ?>
<tr>
<th>
<label><?php _e( 'Logo URL' , 'wp-admin-ui-customize' ); ?></label>
</th>
<td>
<?php $Val = ''; ?>
<?php if( !empty( $Data[$field] ) ) : $Val = strip_tags( stripslashes( $Data[$field] ) ); endif; ?>
<input type="text" name="data[<?php echo esc_attr( $field ); ?>]" value="<?php echo esc_attr( $Val ); ?>" class="regular-text" id="<?php echo esc_attr( $field ); ?>">
<a href="#TB_inline?height=300&width=600&inlineId=list_variables&modal=false" title="<?php _e( 'Shortcodes' , 'wp-admin-ui-customize' ); ?>" class="thickbox"><?php _e( 'Available Shortcodes' , 'wp-admin-ui-customize' ); ?></a>
</td>
</tr>
<?php $field = 'login_headertitle'; ?>
<tr>
<th>
<label><?php _e( 'Logo Title' , 'wp-admin-ui-customize' ); ?></label>
</th>
<td>
<?php $Val = ''; ?>
<?php if( !empty( $Data[$field] ) ) : $Val = strip_tags( stripslashes( $Data[$field] ) ); endif; ?>
<input type="text" name="data[<?php echo esc_attr( $field ); ?>]" value="<?php echo esc_attr( $Val ); ?>" class="regular-text" id="<?php echo esc_attr( $field ); ?>">
<a href="#TB_inline?height=300&width=600&inlineId=list_variables&modal=false" title="<?php _e( 'Shortcodes' , 'wp-admin-ui-customize' ); ?>" class="thickbox"><?php _e( 'Available Shortcodes' , 'wp-admin-ui-customize' ); ?></a>
</td>
</tr>
<?php $field = 'login_headerlogo'; ?>
<tr>
<th>
<label><?php _e( 'Logo Image URL' , 'wp-admin-ui-customize' ); ?></label>
</th>
<td>
<?php $Val = ''; ?>
<?php if( !empty( $Data[$field] ) ) : $Val = strip_tags( stripslashes( $Data[$field] ) ); endif; ?>
<input type="text" name="data[<?php echo esc_attr( $field ); ?>]" value="<?php echo esc_attr( $Val ); ?>" class="regular-text" id="<?php echo esc_attr( $field ); ?>">
<a href="#TB_inline?height=300&width=600&inlineId=list_variables&modal=false" title="<?php _e( 'Shortcodes' , 'wp-admin-ui-customize' ); ?>" class="thickbox"><?php _e( 'Available Shortcodes' , 'wp-admin-ui-customize' ); ?></a>
<?php if( !empty( $Val ) ) : ?>
<?php $img = $this->val_replace( $Val ); ?>
<p><img src="<?php echo esc_url( $img ); ?>" style="max-width: 100%;" alt="Login Logo" /></p>
<?php endif; ?>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="postbox">
<div class="handlediv" title="Click to toggle"><br></div>
<h3 class="hndle"><span><?php _e( 'General' ); ?></span></h3>
<div class="inside">
<table class="form-table">
<tbody>
<?php $field = 'login_css'; ?>
<tr>
<th>
<label><?php _e( 'CSS file to load' , 'wp-admin-ui-customize' ); ?></label>
</th>
<td>
<?php $Val = ''; ?>
<?php if( !empty( $Data[$field] ) ) : $Val = strip_tags( stripslashes( $Data[$field] ) ); endif; ?>
<input type="text" name="data[<?php echo esc_attr( $field ); ?>]" value="<?php echo esc_attr( $Val ); ?>" class="regular-text" id="<?php echo esc_attr( $field ); ?>">
<a href="#TB_inline?height=300&width=600&inlineId=list_variables&modal=false" title="<?php _e( 'Shortcodes' , 'wp-admin-ui-customize' ); ?>" class="thickbox"><?php _e( 'Available Shortcodes' , 'wp-admin-ui-customize' ); ?></a>
</td>
</tr>
<?php $field = 'login_footer'; ?>
<tr>
<th>
<label><?php _e( 'Footer text' , 'wp-admin-ui-customize' ); ?></label>
</th>
<td>
<?php $Val = ''; ?>
<?php if( !empty( $Data[$field] ) ) : $Val = stripslashes( $Data[$field] ); endif; ?>
<input type="text" name="data[<?php echo esc_attr( $field ); ?>]" value="<?php echo esc_attr( $Val ); ?>" class="large-text" id="<?php echo esc_attr( $field ); ?>">
<a href="#TB_inline?height=300&width=600&inlineId=list_variables&modal=false" title="<?php _e( 'Shortcodes' , 'wp-admin-ui-customize' ); ?>" class="thickbox"><?php _e( 'Available Shortcodes' , 'wp-admin-ui-customize' ); ?></a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<br class="clear">
</div>
</div>
<p class="submit">
<input type="submit" class="button-primary" name="update" value="<?php echo esc_attr( __( 'Save' ) ); ?>" />
</p>
<p class="submit reset">
<span class="description"><?php printf( __( 'Reset the %s?' , 'wp-admin-ui-customize' ) , __( 'Login Form' , 'wp-admin-ui-customize' ) ); ?></span>
<input type="submit" class="button-secondary" name="reset" value="<?php echo esc_attr( __( 'Reset settings' , 'wp-admin-ui-customize' ) ); ?>" />
</p>
</form>
</div>
<?php require_once( dirname( __FILE__ ) . '/list_variables.php' ); ?>
<style>
</style>
<script>
jQuery(document).ready( function($) {
});
</script>

View File

@@ -0,0 +1,445 @@
<?php
$Data = $this->get_data( 'manage_metabox' );
$Metaboxes = $this->get_data( "regist_metabox" );
$CustomPosts = $this->get_custom_posts();
$activated_plugin = $this->ActivatedPlugin;
// include js css
$ReadedJs = array( 'jquery' , 'jquery-ui-sortable' );
wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
?>
<div class="wrap">
<?php echo $this->Msg; ?>
<h2><?php _e( 'Management of meta boxes' , 'wp-admin-ui-customize' ); ?></h2>
<p><?php _e( 'Ensure at least one post and page is present and then refresh to display the available meta boxes.' , 'wp-admin-ui-customize' ); ?></p>
<p><?php _e( 'It is also possible to change the meta box display name.' , 'wp-admin-ui-customize' ); ?></p>
<h3 id="wauc-apply-user-roles"><?php echo $this->get_apply_roles(); ?></h3>
<form id="wauc_setting_manage_metabox" class="wauc_form" method="post" action="<?php echo esc_url( remove_query_arg( 'wauc_msg' , add_query_arg( array( 'page' => $this->PageSlug ) ) ) ); ?>">
<input type="hidden" name="<?php echo esc_attr( $this->UPFN ); ?>" value="Y" />
<?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
<input type="hidden" name="record_field" value="manage_metabox" />
<div id="poststuff">
<div id="post-body" class="metabox-holder columns-1">
<div id="postbox-container-1" class="postbox-container">
<div id="built_in">
<div class="postbox">
<div class="handlediv" title="Click to toggle"><br></div>
<h3 class="hndle"><span><?php _e( 'Posts' ); ?></span></h3>
<div class="inside">
<?php if( !empty( $Metaboxes["metaboxes"]["post"] ) ) : ?>
<table class="form-table">
<thead>
<tr>
<th>&nbsp;</th>
<td style="width: 15%;">
<label>
<input type="checkbox" name="" class="check_all" />
<strong><?php _e( 'Select All' ); ?></strong>
</label>
</td>
<td style="width: 15%;">
<strong><?php _e( 'Default Open' , 'wp-admin-ui-customize' ); ?></strong>
</td>
<td><strong><?php _e( 'Update meta box title' , 'wp-admin-ui-customize' ); ?></strong></td>
</tr>
</thead>
<tbody>
<?php foreach( $Metaboxes["metaboxes"]["post"] as $context => $meta_box ) : ?>
<?php foreach( $meta_box as $priority => $box ) : ?>
<?php foreach( $box as $metabox_id => $metabox_title ) : ?>
<tr>
<th>
<?php _e( $metabox_title ); ?>
</th>
<td>
<?php if( $metabox_id != 'submitdiv' ) : ?>
<?php $Checked = ''; ?>
<?php if( !empty( $Data["post"][$metabox_id]["remove"] ) ) : $Checked = 'checked="checked"'; endif; ?>
<label><input type="checkbox" name="data[post][<?php echo esc_attr( $metabox_id ); ?>][remove]" value="1" class="show_check" <?php echo esc_attr( $Checked ); ?> /> <?php _e ( 'Hide' ); ?></label>
<?php else : ?>
<?php _e( 'Show' ); ?>
<?php endif; ?>
</td>
<td>
<?php if( $metabox_id != 'submitdiv' ) : ?>
<?php $Selected = 0; ?>
<?php if( !empty( $Data["post"][$metabox_id]["toggle"] ) ) : $Selected = true; endif; ?>
<select name="data[post][<?php echo esc_attr( $metabox_id ); ?>][toggle]" class="select_toggle">
<option value="0" <?php Selected( $Selected , 0 ); ?>><?php _e( 'Expanded' , 'wp-admin-ui-customize' ); ?></option>
<option value="1" <?php Selected( $Selected , 1 ); ?>><?php _e( 'Collapsed' , 'wp-admin-ui-customize' ); ?></option>
</select>
<?php else : ?>
<?php _e( 'Show' ); ?>
<?php endif; ?>
</td>
<td>
<?php $Val = ''; ?>
<?php if( !empty( $Data["post"][$metabox_id]["name"] ) ) : $Val = stripslashes( $Data["post"][$metabox_id]["name"] ); endif; ?>
<input type="text" name="data[post][<?php echo esc_attr( $metabox_id ); ?>][name]" class="regular-text metabox_rename" value="<?php echo esc_html( $Val ); ?>" placeholder="<?php echo esc_attr( __( $metabox_title ) ); ?>" />
<?php if( $metabox_id == 'commentstatusdiv' ) : ?>
<p class="description"><?php _e( 'If the discussion meta box is hidden comments will not be displayed on new posts for the selected role.' , 'wp-admin-ui-customize' ); ?></p>
<p><img src="<?php echo esc_url( $this->Url . 'images/discussion_allow_comments.png' ); ?>" /></p>
<p><a href="<?php echo esc_url( admin_url( 'admin.php?page=' . $this->PageSlug . '_post_add_edit_screen' ) ); ?>"><?php _e( 'Change this setting to allow comments on new posts' , 'wp-admin-ui-customize' ); ?></a></p>
<?php endif; ?>
</td>
</tr>
<?php endforeach; ?>
<?php endforeach; ?>
<?php endforeach; ?>
</tbody>
</table>
<?php endif; ?>
<?php $post = get_posts( array( 'post_type' => 'post' , 'order' => 'DESC' , 'orderby' => 'post_date' , 'numberposts' => 1 ) ); ?>
<?php if( !empty( $post ) ) : ?>
<?php $load_link = self_admin_url( 'post.php?post=' . $post[0]->ID . '&action=edit' ); ?>
<?php else: ?>
<?php $load_link = self_admin_url( 'post-new.php' ); ?>
<?php endif; ?>
<p>
<a href="<?php echo esc_url( $load_link ); ?>" class="button button-primary column_load">
<span class="dashicons dashicons-update"></span>
<?php echo sprintf( __( 'Refresh meta boxes for %s', 'wp-admin-ui-customize' ) , __( 'Posts' ) ); ?>
</a>
</p>
<p class="loading">
<span class="spinner"></span>
<?php _e( 'Loading&hellip;' ); ?>
</p>
</div>
</div>
<div class="postbox">
<div class="handlediv" title="Click to toggle"><br></div>
<h3 class="hndle"><span><?php _e( 'Pages' ); ?></span></h3>
<div class="inside">
<?php if( !empty( $Metaboxes["metaboxes"]["page"] ) ) : ?>
<table class="form-table">
<thead>
<tr>
<th>&nbsp;</th>
<td style="width: 15%;">
<label>
<input type="checkbox" name="" class="check_all" />
<strong><?php _e( 'Select All' ); ?></strong>
</label>
</td>
<td style="width: 15%;">
<strong><?php _e( 'Default Open' , 'wp-admin-ui-customize' ); ?></strong>
</td>
<td><strong><?php _e( 'Update meta box title' , 'wp-admin-ui-customize' ); ?></strong></td>
</tr>
</thead>
<tbody>
<?php foreach( $Metaboxes["metaboxes"]["page"] as $context => $meta_box ) : ?>
<?php foreach( $meta_box as $priority => $box ) : ?>
<?php foreach( $box as $metabox_id => $metabox_title ) : ?>
<tr>
<th>
<?php _e( $metabox_title ); ?>
</th>
<td>
<?php if( $metabox_id != 'submitdiv' ) : ?>
<?php $Checked = ''; ?>
<?php if( !empty( $Data["page"][$metabox_id]["remove"] ) ) : $Checked = 'checked="checked"'; endif; ?>
<label><input type="checkbox" name="data[page][<?php echo esc_attr( $metabox_id ); ?>][remove]" value="1" class="show_check" <?php echo esc_attr( $Checked ); ?> /> <?php _e ( 'Hide' ); ?></label>
<?php else : ?>
<?php _e( 'Show' ); ?>
<?php endif; ?>
</td>
<td>
<?php if( $metabox_id != 'submitdiv' ) : ?>
<?php $Selected = 0; ?>
<?php if( !empty( $Data["page"][$metabox_id]["toggle"] ) ) : $Selected = true; endif; ?>
<select name="data[page][<?php echo esc_attr( $metabox_id ); ?>][toggle]" class="select_toggle">
<option value="0" <?php Selected( $Selected , 0 ); ?>><?php _e( 'Expanded' , 'wp-admin-ui-customize' ); ?></option>
<option value="1" <?php Selected( $Selected , 1 ); ?>><?php _e( 'Collapsed' , 'wp-admin-ui-customize' ); ?></option>
</select>
<?php else : ?>
<?php _e( 'Show' ); ?>
<?php endif; ?>
</td>
<td>
<?php $Val = ''; ?>
<?php if( !empty( $Data["page"][$metabox_id]["name"] ) ) : $Val = stripslashes( $Data["page"][$metabox_id]["name"] ); endif; ?>
<input type="text" name="data[page][<?php echo esc_attr( $metabox_id ); ?>][name]" class="regular-text metabox_rename" value="<?php echo esc_html( $Val ); ?>" placeholder="<?php echo esc_attr( __( $metabox_title ) ); ?>" />
<?php if( $metabox_id == 'commentstatusdiv' ) : ?>
<p class="description"><?php _e( 'If the discussion meta box is hidden comments will not be displayed on new posts for the selected role.' , 'wp-admin-ui-customize' ); ?></p>
<p><img src="<?php echo esc_url( $this->Url . 'images/discussion_allow_comments.png' ); ?>" /></p>
<p><a href="<?php echo esc_url( admin_url( 'admin.php?page=' . $this->PageSlug . '_post_add_edit_screen' ) ); ?>"><?php _e( 'Change this setting to allow comments on new posts' , 'wp-admin-ui-customize' ); ?></a></p>
<?php endif; ?>
</td>
</tr>
<?php endforeach; ?>
<?php endforeach; ?>
<?php endforeach; ?>
</tbody>
</table>
<?php endif; ?>
<?php $post = get_posts( array( 'post_type' => 'page' , 'order' => 'DESC' , 'orderby' => 'post_date' , 'numberposts' => 1 ) ); ?>
<?php if( !empty( $post ) ) : ?>
<?php $load_link = self_admin_url( 'post.php?post=' . $post[0]->ID . '&action=edit' ); ?>
<?php else: ?>
<?php $load_link = self_admin_url( 'post-new.php?post_type=page' ); ?>
<?php endif; ?>
<p>
<a href="<?php echo esc_url( $load_link ); ?>" class="button button-primary column_load">
<span class="dashicons dashicons-update"></span>
<?php echo sprintf( __( 'Refresh meta boxes for %s', 'wp-admin-ui-customize' ) , __( 'Pages' ) ); ?>
</a>
</p>
<p class="loading">
<span class="spinner"></span>
<?php _e( 'Loading&hellip;' ); ?>
</p>
</div>
</div>
</div>
</div>
<?php if ( !empty( $CustomPosts ) ) : ?>
<div id="postbox-container-2" class="postbox-container">
<div id="custom_post">
<?php foreach( $CustomPosts as $post_name => $cpt ) : ?>
<div class="postbox">
<div class="handlediv" title="Click to toggle"><br></div>
<h3 class="hndle"><span><?php echo strip_tags( $cpt->labels->name ); ?></span></h3>
<div class="inside">
<?php if( !empty( $Metaboxes["metaboxes"][$post_name] ) ) : ?>
<table class="form-table">
<thead>
<tr>
<th>&nbsp;</th>
<td style="width: 15%;">
<label>
<input type="checkbox" name="" class="check_all" />
<strong><?php _e( 'Select All' ); ?></strong>
</label>
</td>
<td style="width: 15%;">
<strong><?php _e( 'Default Open' , 'wp-admin-ui-customize' ); ?></strong>
</td>
<td><strong><?php _e( 'Update meta box title' , 'wp-admin-ui-customize' ); ?></strong></td>
</tr>
</thead>
<tbody>
<?php foreach( $Metaboxes["metaboxes"][$post_name] as $context => $meta_box ) : ?>
<?php foreach( $meta_box as $priority => $box ) : ?>
<?php foreach( $box as $metabox_id => $metabox_title ) : ?>
<?php if( !empty( $metabox_id ) ) : ?>
<tr>
<th><?php echo $metabox_title; ?></th>
<td>
<?php if( $metabox_id != 'submitdiv' ) : ?>
<?php $Checked = ''; ?>
<?php if( !empty( $Data[$post_name][$metabox_id]["remove"] ) ) : $Checked = 'checked="checked"'; endif; ?>
<label><input type="checkbox" name="data[<?php echo esc_attr( $post_name ); ?>][<?php echo esc_attr( $metabox_id ); ?>][remove]" value="1" class="show_check" <?php echo esc_attr( $Checked ); ?> /> <?php _e ( 'Hide' ); ?></label>
<?php else : ?>
<?php _e( 'Show' ); ?>
<?php endif; ?>
</td>
<td>
<?php if( $metabox_id != 'submitdiv' ) : ?>
<?php $Selected = 0; ?>
<?php if( !empty( $Data[$post_name][$metabox_id]["toggle"] ) ) : $Selected = true; endif; ?>
<select name="data[<?php echo esc_attr( $post_name ); ?>][<?php echo esc_attr( $metabox_id ); ?>][toggle]" class="select_toggle">
<option value="0" <?php Selected( $Selected , 0 ); ?>><?php _e( 'Expanded' , 'wp-admin-ui-customize' ); ?></option>
<option value="1" <?php Selected( $Selected , 1 ); ?>><?php _e( 'Collapsed' , 'wp-admin-ui-customize' ); ?></option>
</select>
<?php else : ?>
<?php _e( 'Show' ); ?>
<?php endif; ?>
</td>
<td>
<?php $Val = ''; ?>
<?php if( !empty( $Data[$post_name][$metabox_id]["name"] ) ) : $Val = stripslashes( $Data[$post_name][$metabox_id]["name"] ); endif; ?>
<input type="text" name="data[<?php echo esc_attr( $post_name ); ?>][<?php echo esc_attr( $metabox_id ); ?>][name]" class="regular-text metabox_rename" value="<?php echo esc_html( $Val ); ?>" placeholder="<?php echo esc_attr( __( $metabox_title ) ); ?>" />
</td>
</tr>
<?php endif; ?>
<?php endforeach; ?>
<?php endforeach; ?>
<?php endforeach; ?>
</tbody>
</table>
<?php endif; ?>
<?php $args = array( 'post_type' => $post_name , 'order' => 'DESC' , 'orderby' => 'post_date' , 'numberposts' => 1 ); ?>
<?php if( !empty( $activated_plugin['woocommerce'] ) && $post_name == 'shop_order' ) : ?>
<?php $args['post_status'] = array( 'wc-processing', 'wc-completed' ); ?>
<?php endif; ?>
<?php $post = get_posts( $args ); ?>
<?php if( !empty( $post ) ) : ?>
<?php $load_link = self_admin_url( 'post.php?post=' . $post[0]->ID . '&action=edit' ); ?>
<?php else: ?>
<?php $load_link = self_admin_url( 'post-new.php?post_type=' . $post_name ); ?>
<?php endif; ?>
<p>
<a href="<?php echo esc_url( $load_link ); ?>" class="button button-primary column_load">
<span class="dashicons dashicons-update"></span>
<?php echo sprintf( __( 'Refresh meta boxes for %s', 'wp-admin-ui-customize' ) , $cpt->label ); ?>
</a>
</p>
<p class="loading">
<span class="spinner"></span>
<?php _e( 'Loading&hellip;' ); ?>
</p>
</div>
</div>
<?php endforeach; ?>
</div>
</div>
<?php endif; ?>
<br class="clear">
</div>
</div>
<p class="submit">
<input type="submit" class="button-primary" name="update" value="<?php echo esc_attr( __( 'Save' ) ); ?>" />
</p>
<p class="submit reset">
<span class="description"><?php printf( __( 'Reset the %s?' , 'wp-admin-ui-customize' ) , __( 'Management of meta boxes' , 'wp-admin-ui-customize' ) . __( 'Settings' ) ); ?></span>
<input type="submit" class="button-secondary" name="reset" value="<?php echo esc_attr( __( 'Reset settings' , 'wp-admin-ui-customize' ) ); ?>" />
</p>
</form>
</div>
<style>
.form-table td {
vertical-align: top;
}
.inside .loading {
display: none;
}
.inside .loading .spinner {
float: left;
visibility: visible;
}
.button.column_load .dashicons {
margin-top: 3px;
}
</style>
<script type="text/javascript">
jQuery(document).ready(function($) {
var $Form = $("#wauc_setting_manage_metabox");
$(".check_all", $Form).click(function() {
var Checked = $(this).prop("checked");
$Table = $(this).parent().parent().parent().parent().parent();
$Table.children("tbody").children("tr").each(function( index, el ) {
var $Tr = $(el);
$Tr.find("input[type=checkbox]").prop("checked" , Checked);
if( Checked ) {
$Tr.find('.select_toggle').prop('disabled', true);
$Tr.find('.metabox_rename').prop('disabled', true).addClass('disabled');
} else {
$Tr.find('.select_toggle').prop('disabled', false);
$Tr.find('.metabox_rename').prop('disabled', false).removeClass('disabled');
}
});
});
$('.postbox .inside .form-table').each(function( key, el ) {
$(el).find('tbody tr').each(function( tr_key , tr_el ) {
if( $(tr_el).find('.show_check').size() > 0 ) {
if( $(tr_el).find('.show_check').prop('checked') ) {
$(tr_el).find('.select_toggle').prop('disabled', true);
$(tr_el).find('.metabox_rename').prop('disabled', true).addClass('disabled');
}
}
});
});
$('.postbox .inside .form-table tbody tr td .show_check').on('click', function( ev ) {
var Tr = $(ev.target).parent().parent().parent();
if( $(ev.target).prop('checked') ) {
Tr.find('.select_toggle').prop('disabled', true);
Tr.find('.metabox_rename').prop('disabled', true).addClass('disabled');
} else {
Tr.find('.select_toggle').prop('disabled', false);
Tr.find('.metabox_rename').prop('disabled', false).removeClass('disabled');
}
});
$('.wauc_form .column_load').on('click', function( ev ) {
var load_url = $(ev.target).prop('href');
load_url += '&<?php echo $this->ltd; ?>_metabox_load=1';
$.ajax({
url: load_url,
beforeSend: function( xhr ) {
$(ev.target).parent().parent().find('.loading').show();
$(ev.target).parent().parent().find('.spinner').show();
}
}).done(function( post_html_el ) {
if( post_html_el.indexOf( "adminpage = 'post-php'" ) != -1 || post_html_el.indexOf( "adminpage = 'post-new-php'" ) != -1 ) {
location.reload();
}
});
return false;
}).disableSelection();
});
</script>

View File

@@ -0,0 +1,96 @@
<?php
$Data = $this->get_data( 'plugin_cap' );
$UserRoles = $this->get_user_role();
$current_user_role_group = $this->current_user_role_group();
// include js css
$ReadedJs = array( 'jquery' , 'jquery-ui-sortable' );
wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
?>
<div class="wrap">
<?php echo $this->Msg; ?>
<h2><?php echo sprintf( __( '%1$s of %2$s %3$s' , 'wp-admin-ui-customize' ) , __( 'Change' ) , __( 'Plugin' ) , __( 'Capabilities' ) ); ?></h2>
<p><?php echo sprintf( __( 'You can change the user role %2$s of %1$s settings.' , 'wp-admin-ui-customize' ) , $this->Name , __( 'Capabilities' ) ); ?></p>
<p><?php echo sprintf( __( 'Select the capability required to modify %s settings.' , 'wp-admin-ui-customize' ) , $this->Name ); ?></p>
<p>&nbsp;</p>
<form id="wauc_setting_plugin_cap" class="wauc_form" method="post" action="<?php echo esc_url( remove_query_arg( 'wauc_msg' , add_query_arg( array( 'page' => $this->PageSlug ) ) ) ); ?>">
<input type="hidden" name="<?php echo esc_attr( $this->UPFN ); ?>" value="Y" />
<?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
<input type="hidden" name="record_field" value="plugin_cap" />
<div id="poststuff">
<div id="post-body" class="metabox-holder columns-1">
<div id="postbox-container-1" class="postbox-container">
<div id="appearance_menus">
<div class="postbox">
<h3 class="hndle"><span><?php echo sprintf( __( 'Capability required to modify %s settings' , 'wp-admin-ui-customize' ) , $this->Name ); ?></span></h3>
<div class="inside">
<table class="form-table">
<tbody>
<?php $field = 'edit_cap'; ?>
<tr>
<th>
<label><?php _e( 'Capabilities' ); ?></label>
</th>
<td>
<select name="data[<?php echo esc_attr( $field ); ?>]">
<?php $SelectedCap = 'manage_options'; ?>
<?php if( !empty( $Data[$field] ) ) : ?>
<?php $SelectedCap = strip_tags( $Data[$field] ); ?>
<?php endif; ?>
<?php if( !empty( $UserRoles[$current_user_role_group]["capabilities"] ) ) : ?>
<?php foreach( $UserRoles[$current_user_role_group]["capabilities"] as $cap => $v ) : ?>
<?php $Selected = false; ?>
<?php if( !empty( $SelectedCap ) ) : ?>
<?php if( $SelectedCap == $cap ) $Selected = 'selected="selected"'; ?>
<?php endif; ?>
<option value="<?php echo esc_attr( $cap ); ?>" <?php echo esc_attr( $Selected ); ?>><?php echo esc_attr( $cap ); ?></option>
<?php endforeach; ?>
<?php endif; ?>
</select>
<p class="description"><?php _e( 'Default' ); ?>: manage_options</p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<br class="clear">
</div>
</div>
<p class="submit">
<input type="submit" class="button-primary" name="update" value="<?php echo esc_attr( __( 'Save' ) ); ?>" />
</p>
<p class="submit reset">
<span class="description"><?php printf( __( 'Reset the %s?' , 'wp-admin-ui-customize' ) , sprintf( __( '%1$s of %2$s %3$s' , 'wp-admin-ui-customize' ) , __( 'Change' ) , __( 'Plugin' ) , __( 'Capabilities' ) ) . __( 'Settings' ) ); ?></span>
<input type="submit" class="button-secondary" name="reset" value="<?php echo esc_attr( __( 'Reset settings' , 'wp-admin-ui-customize' ) ); ?>" />
</p>
</form>
</div>
<style>
</style>
<script>
jQuery(document).ready( function($) {
});
</script>

View File

@@ -0,0 +1,115 @@
<?php
$Data = $this->get_data( 'post_add_edit' );
$comment_status = get_option( 'default_comment_status' );
// include js css
$ReadedJs = array( 'jquery' , 'jquery-ui-sortable' );
wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
?>
<div class="wrap">
<?php echo $this->Msg; ?>
<h2><?php _e( 'Add New Post and Edit Post Screen Setting' , 'wp-admin-ui-customize' ); ?></h2>
<p>&nbsp;</p>
<h3 id="wauc-apply-user-roles"><?php echo $this->get_apply_roles(); ?></h3>
<form id="wauc_setting_post_add_edit" class="wauc_form" method="post" action="<?php echo esc_url( remove_query_arg( 'wauc_msg' , add_query_arg( array( 'page' => $this->PageSlug ) ) ) ); ?>">
<input type="hidden" name="<?php echo esc_attr( $this->UPFN ); ?>" value="Y" />
<?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
<input type="hidden" name="record_field" value="post_add_edit" />
<div id="poststuff">
<div id="post-body" class="metabox-holder columns-1">
<div id="postbox-container-1" class="postbox-container">
<div id="post_add">
<div class="postbox">
<h3 class="hndle"><span><?php _e( 'Add New Post' ); ?> &amp; <?php _e( 'Add New Page' ); ?></span></h3>
<div class="inside">
<table class="form-table">
<tbody>
<?php $field = 'allow_comments'; ?>
<tr>
<th>
<label><?php _e( 'Allow comments if discussion meta box is hidden' , 'wp-admin-ui-customize' ); ?></label>
</th>
<td>
<?php if( $comment_status == 'open' ) : ?>
<?php $Checked = ''; ?>
<?php if( !empty( $Data[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
<label><input type="checkbox" name="data[<?php echo esc_attr( $field ); ?>]" value="1" <?php echo esc_attr( $Checked ); ?> /> <?php _e ( 'Allow' ); ?></label>
<p class="description"><?php _e( 'If the discussion meta box is hidden comments will not be displayed on new posts for the selected role.' , 'wp-admin-ui-customize' ); ?></p>
<p><?php _e( 'Check \'Allow\' to allow comments on new posts.' , 'wp-admin-ui-customize' ); ?></p>
<p><a href="<?php echo esc_url( admin_url( 'options-discussion.php' ) ); ?>"><?php echo sprintf( __( 'The %s in WordPress will override this setting.' , 'wp-admin-ui-customize' ) , __( 'Default article settings' ) ); ?></a></p>
<?php else : ?>
<p><a href="<?php echo esc_url( admin_url( 'options-discussion.php' ) ); ?>"><?php echo sprintf( __( 'Please select the <strong>%s</strong>' , 'wp-admin-ui-customize' ) , __( 'Allow people to post comments on new articles' ) ); ?></a></p>
<?php endif; ?>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div id="post_add_edit">
<div class="postbox">
<h3 class="hndle"><span><?php _e( 'Add New Post' ); ?> &amp; <?php _e( 'Edit Post' ); ?></span></h3>
<div class="inside">
<table class="form-table">
<tbody>
<?php $field = 'default_permalink'; ?>
<tr>
<th>
<label><?php _e( 'Change Permalinks' ); ?></label>
</th>
<td>
<?php $Checked = ''; ?>
<?php if( !empty( $Data[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
<label><input type="checkbox" name="data[<?php echo esc_attr( $field ); ?>]" value="1" <?php echo esc_attr( $Checked ); ?> /> <?php _e ( 'Hide' ); ?></label>
<p class="description"><?php _e( 'Only appears when the permalinks are set to the default setting.' , 'wp-admin-ui-customize' ); ?></p>
<p><img src="<?php echo esc_url( $this->Url . 'images/post_add_edit_screen__edit_ppermalink.png' ); ?>" /></p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<br class="clear">
</div>
</div>
<p class="submit">
<input type="submit" class="button-primary" name="update" value="<?php echo esc_attr( __( 'Save' ) ); ?>" />
</p>
<p class="submit reset">
<span class="description"><?php printf( __( 'Reset the %s?' , 'wp-admin-ui-customize' ) , __( 'Add New Post and Edit Post Screen Setting' , 'wp-admin-ui-customize' ) ); ?></span>
<input type="submit" class="button-secondary" name="reset" value="<?php echo esc_attr( __( 'Reset settings' , 'wp-admin-ui-customize' ) ); ?>" />
</p>
</form>
</div>
<style>
</style>
<script>
jQuery(document).ready( function($) {
});
</script>

View File

@@ -0,0 +1,384 @@
<?php
$this->get_user_role();
$Data = $this->get_data( 'sidemenu' );
// include js css
$ReadedJs = array( 'jquery' , 'jquery-ui-draggable' , 'jquery-ui-droppable' , 'jquery-ui-sortable' , 'thickbox' );
wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
wp_enqueue_style('thickbox');
wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
?>
<div class="wrap">
<?php echo $this->Msg; ?>
<h2><?php _e( 'Sidebar' , 'wp-admin-ui-customize' ); ?></h2>
<p><?php _e( 'Drag menu items to edit and reorder menus.' , 'wp-admin-ui-customize' ); ?></p>
<p class="description"><?php echo sprintf( __( 'New plugin menus will be added to the <strong>%s</strong>.' , 'wp-admin-ui-customize' ) , __( 'Available menu items' , 'wp-admin-ui-customize' ) ); ?>
<p><strong><?php _e( 'Note: Using the same menu item multiple times could cause unexpected behavior.' , 'wp-admin-ui-customize' ); ?></strong></p>
<h3 id="wauc-apply-user-roles"><?php echo $this->get_apply_roles(); ?></h3>
<p><a href="#TB_inline?height=300&width=600&inlineId=list_variables&modal=false" title="<?php _e( 'Shortcodes' , 'wp-admin-ui-customize' ); ?>" class="thickbox"><?php _e( 'Available Shortcodes' , 'wp-admin-ui-customize' ); ?></a></p>
<form id="wauc_setting_sidemenu" class="wauc_form" method="post" action="<?php echo esc_url( remove_query_arg( 'wauc_msg' , add_query_arg( array( 'page' => $this->PageSlug ) ) ) ); ?>">
<input type="hidden" name="<?php echo esc_attr( $this->UPFN ); ?>" value="Y" />
<?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
<input type="hidden" name="record_field" value="sidemenu" />
<div id="poststuff">
<div id="post-body" class="metabox-holder columns-2">
<div id="postbox-container-1" class="postbox-container">
<div id="can_menus">
<div class="postbox">
<h3 class="hndle"><span><?php _e( 'Available menu items' , 'wp-admin-ui-customize' ); ?></span></h3>
<div class="inside">
<p class="description"><?php _e( 'Sepalator' , 'wp-admin-ui-customize' ); ?></p>
<?php $menu_widget = array( 'title' => '-' , 'slug' => 'separator' , 'parent_slug' => '' , 'new' => true , 'cap' => 'read' ); ?>
<?php $this->sidebar_menu_widget( $menu_widget ); ?>
<div class="clear"></div>
<?php foreach($this->Menu as $mm) : ?>
<?php if( !empty( $mm[0] ) ) : ?>
<?php $menu_title = $mm[0]; ?>
<?php if( $mm[5] == 'menu-comments' ) : ?>
<?php $menu_title = __( 'Comments' ); ?>
<?php elseif( $mm[5] == 'menu-appearance' ) : ?>
<?php $menu_title = __( 'Appearance' ); ?>
<?php elseif( $mm[5] == 'menu-plugins' ) : ?>
<?php $menu_title = __( 'Plugins' ); ?>
<?php endif; ?>
<p class="description"><?php echo $menu_title; ?></p>
<?php if( empty( $this->SubMenu[$mm[2]] ) ) : ?>
<?php $menu_widget = array( 'title' => $menu_title , 'slug' => $mm[2] , 'parent_slug' => '' , 'new' => true , 'cap' => $mm[1] , 'submenu' => '' ); ?>
<?php $this->sidebar_menu_widget( $menu_widget ); ?>
<?php else: ?>
<?php foreach($this->SubMenu as $parent_slug => $sub) : ?>
<?php foreach($sub as $sm) : ?>
<?php if( $mm[2] == $parent_slug ) : ?>
<?php $menu_title = $sm[0]; ?>
<?php if( $sm[1] == 'update_core' ) : ?>
<?php $menu_title = __( 'Update' ) . ' [update_total]'; ?>
<?php elseif( $sm[2] == 'edit-comments.php' ) : ?>
<?php $menu_title .= ' [comment_count]'; ?>
<?php elseif( $sm[2] == 'themes.php' ) : ?>
<?php $menu_title .= ' [update_themes]'; ?>
<?php elseif( $sm[2] == 'plugins.php' ) : ?>
<?php $menu_title .= ' [update_plugins]'; ?>
<?php endif; ?>
<?php $menu_widget = array( 'title' => $menu_title , 'slug' => $sm[2] , 'parent_slug' => '' , 'new' => true , 'cap' => $sm[1] , 'submenu' => '' ); ?>
<?php $this->sidebar_menu_widget( $menu_widget ); ?>
<?php endif; ?>
<?php endforeach; ?>
<?php endforeach; ?>
<?php endif; ?>
<div class="clear"></div>
<?php endif; ?>
<?php endforeach; ?>
</div>
</div>
</div>
</div>
<div id="postbox-container-2" class="postbox-container">
<div id="setting_menus">
<div class="postbox">
<h3 class="hndle">
<span><?php _e( 'Current menu' , 'wp-admin-ui-customize' ); ?></span>
</h3>
<div class="inside widgets-holder-wrap">
<?php if( empty( $Data ) ) : ?>
<?php foreach($this->Menu as $mm) : ?>
<?php if( isset( $mm[2] ) && strstr( $mm[2] , 'separator' ) ) : ?>
<?php $menu_title = '-'; ?>
<?php $mm[2] = 'separator'; ?>
<?php $mwsm = array(); ?>
<?php elseif( !empty( $mm[0] ) ) : ?>
<?php $menu_title = $mm[0]; ?>
<?php if( !empty( $mm[5] ) ) : ?>
<?php if( $mm[5] == 'menu-comments' ) : ?>
<?php $menu_title = __( 'Comments' ) . ' [comment_count]'; ?>
<?php elseif( $mm[5] == 'menu-appearance' ) : ?>
<?php $menu_title = __( 'Appearance' ) . ' [update_themes]'; ?>
<?php elseif( $mm[5] == 'menu-plugins' ) : ?>
<?php $menu_title = __( 'Plugins' ) . ' [update_plugins]'; ?>
<?php endif; ?>
<?php endif; ?>
<?php $mwsm = array(); ?>
<?php foreach($this->SubMenu as $parent_slug => $sub) : ?>
<?php foreach($sub as $sm) : ?>
<?php if( $mm[2] == $parent_slug ) : ?>
<?php $submenu_title = $sm[0]; ?>
<?php if( $sm[1] == 'update_core' ) : ?>
<?php $submenu_title = __( 'Update' ) . ' [update_total]'; ?>
<?php endif; ?>
<?php $mwsm[] = array( 'title' => $submenu_title , 'slug' => $sm[2] , 'parent_slug' => $parent_slug , 'cap' => $sm[1] ); ?>
<?php endif; ?>
<?php endforeach; ?>
<?php endforeach; ?>
<?php endif; ?>
<?php $menu_widget = array( 'title' => $menu_title , 'slug' => $mm[2] , 'parent_slug' => '' , 'new' => false , 'cap' => $mm[1] , 'submenu' => $mwsm ); ?>
<?php $this->sidebar_menu_widget( $menu_widget ); ?>
<?php endforeach; ?>
<?php else: ?>
<?php if( !empty( $Data["main"] ) ) : ?>
<?php foreach($Data["main"] as $mm) : ?>
<?php if( !empty( $mm["title"] ) ) : ?>
<?php $mm_slug = htmlspecialchars_decode( $mm["slug"] ); ?>
<?php $mwsm = array(); ?>
<?php if( !empty( $Data["sub"] ) ) : ?>
<?php foreach($Data["sub"] as $sm) : ?>
<?php $sm_slug = htmlspecialchars_decode( $sm["slug"] ); ?>
<?php $sm_parent_slug = htmlspecialchars_decode( $sm["parent_slug"] ); ?>
<?php if( $mm_slug == $sm_parent_slug ) : ?>
<?php $cap = ""; ?>
<?php if( !empty( $this->SubMenu[$mm_slug] ) ) : ?>
<?php foreach( $this->SubMenu[$mm_slug] as $k => $tmp_sm ) : ?>
<?php if( $tmp_sm[2] == $sm_slug ) : ?>
<?php $cap = $tmp_sm[1]; ?>
<?php break; ?>
<?php endif; ?>
<?php endforeach; ?>
<?php endif; ?>
<?php $mwsm[] = array( 'title' => $sm["title"] , 'slug' => $sm["slug"] , 'parent_slug' => $sm["parent_slug"] , 'cap' => $cap ); ?>
<?php endif; ?>
<?php endforeach; ?>
<?php endif; ?>
<?php $cap = ""; ?>
<?php foreach( $this->Menu as $tmp_m ) : ?>
<?php if( $tmp_m[2] == $mm_slug ) : ?>
<?php $cap = $tmp_m[1]; ?>
<?php break; ?>
<?php endif; ?>
<?php endforeach; ?>
<?php $menu_widget = array( 'title' => $mm["title"] , 'slug' => $mm["slug"] , 'parent_slug' => '' , 'new' => false , 'cap' =>$cap , 'submenu' => $mwsm ); ?>
<?php $this->sidebar_menu_widget( $menu_widget ); ?>
<?php endif; ?>
<?php endforeach; ?>
<?php endif; ?>
<?php endif; ?>
</div>
</div>
<p class="sidebar_setting_delete"><a href="#"><?php _e( 'Remove all items from the current menu' , 'wp-admin-ui-customize' ); ?></a></p>
</div>
</div>
<br class="clear">
</div>
</div>
<p class="submit">
<input type="submit" class="button-primary" name="update" value="<?php echo esc_attr( __( 'Save' ) ); ?>" />
</p>
<p class="submit reset">
<span class="description"><?php printf( __( 'Reset the %s?' , 'wp-admin-ui-customize' ) , __( 'Sidebar' , 'wp-admin-ui-customize' ) . __( 'Settings' ) ); ?></span>
<input type="submit" class="button-secondary" name="reset" value="<?php echo esc_attr( __( 'Reset settings' , 'wp-admin-ui-customize' ) ); ?>" />
</p>
</form>
</div>
<?php require_once( dirname( __FILE__ ) . '/list_variables.php' ); ?>
<style>
.widget h4 {
padding: 12px 15px;
}
.widget-top a.widget-action {
cursor: pointer;
display: inline-block;
}
.widget-top a.widget-action:focus {
box-shadow: none;
}
.widget-top a.widget-action:before {
display: inline-block;
content: "\f140";
font: normal 20px/1 dashicons;
}
</style>
<script type="text/javascript">
var wauc_widget_each, wauc_menu_sortable;
jQuery(document).ready(function($) {
var $Form = $("#wauc_setting_sidemenu");
var $AddInside = $('#can_menus .postbox .inside', $Form);
var $SettingInside = $('#setting_menus .postbox .inside', $Form);
$AddInside.children('.widget').draggable({
connectToSortable: '#setting_menus .postbox .inside',
handle: '> .widget-top > .widget-title',
distance: 2,
helper: 'clone',
zIndex: 5,
stop: function(e,ui) {
wauc_widget_each();
wauc_menu_sortable();
}
});
$('#postbox-container-1', $Form).droppable({
tolerance: 'pointer',
accept: function(o){
return $(o).parent().parent().parent().attr('id') != 'postbox-container-1';
},
drop: function(e,ui) {
ui.draggable.addClass('deleting');
},
over: function(e,ui) {
ui.draggable.addClass('deleting');
$('div.widget-placeholder').hide();
},
out: function(e,ui) {
ui.draggable.removeClass('deleting');
$('div.widget-placeholder').show();
}
});
$(document).on('click', '.widget .widget-top .widget-title-action', function() {
$(this).parent().parent().children(".widget-inside").slideToggle();
return false;
});
$(document).on('click', '.widget .widget-inside .widget-control-actions .alignleft a[href="#remove"]', function() {
$(this).parent().parent().parent().parent().slideUp('normal', function() { $(this).remove(); } );
return false;
});
wauc_menu_sortable = function menu_sortable() {
$('#wauc_setting_sidemenu #poststuff #post-body #postbox-container-2 #setting_menus .postbox .inside, #wauc_setting_sidemenu #poststuff #post-body #postbox-container-2 #setting_menus .postbox .inside .widget .widget-inside .submenu').sortable({
placeholder: "widget-placeholder",
items: '> .widget',
connectWith: "#wauc_setting_sidemenu #poststuff #post-body #postbox-container-2 #setting_menus .postbox .inside, #wauc_setting_sidemenu #poststuff #post-body #postbox-container-2 #setting_menus .postbox .inside .widget .widget-inside .submenu",
handle: '> .widget-top > .widget-title',
cursor: 'move',
distance: 2,
change: function(e,ui) {
var $height = ui.helper.height();
$('#wauc_setting_sidemenu #poststuff #post-body #postbox-container-2 #setting_menus .postbox .inside .widget-placeholder').height($height);
},
stop: function(e,ui) {
if ( ui.item.hasClass('deleting') ) {
ui.item.remove();
}
ui.item.attr( 'style', '' ).removeClass('ui-draggable');
wauc_widget_each();
},
});
}
wauc_menu_sortable();
wauc_widget_each = function widget_each() {
var $Count = 0;
$('#wauc_setting_sidemenu #setting_menus .postbox .inside .widget').each(function() {
var $InputSlug = $(this).children(".widget-inside").children(".settings").children(".description").children(".slugtext");
var $InputTitle = $(this).children(".widget-inside").children(".settings").children("label").children(".titletext");
var $InputParentSlug = $(this).children(".widget-inside").children(".settings").children(".parent_slugtext");
var $Name = 'data' + '['+$Count+']';
$InputSlug.attr("name", $Name+'[slug]');
$InputTitle.attr("name", $Name+'[title]');
$InputParentSlug.attr("name", $Name+'[parent_slug]');
if ( $(this).parent().parent().parent().parent().hasClass("submenu") ) {
// None three
$(this).remove();
} else if ( $(this).parent().hasClass("submenu") ) {
var $ParentSlug = $(this).parent().parent().children(".settings").children(".description").children(".slugtext").val();
$InputParentSlug.val($ParentSlug);
} else {
$InputParentSlug.val('');
}
$Count++;
});
}
wauc_widget_each();
$('#setting_menus .sidebar_setting_delete a').on('click', function() {
$('#setting_menus .postbox .inside').html('');
return false;
});
$('#wauc_setting_sidemenu').on('submit', function() {
$('#can_menus').remove();
return true;
});
});
</script>

View File

@@ -0,0 +1,174 @@
<?php
$Data = $this->get_data( 'site' );
$SiteSetting = get_option( $this->Record["site"] );
// include js css
$ReadedJs = array( 'jquery' , 'jquery-ui-sortable' );
wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
?>
<div class="wrap">
<?php echo $this->Msg; ?>
<h2><?php _e( 'Site Settings' , 'wp-admin-ui-customize' ); ?></h2>
<p>&nbsp;</p>
<h3 id="wauc-apply-user-roles"><?php echo $this->get_apply_roles(); ?></h3>
<form id="wauc_setting_site" class="wauc_form" method="post" action="<?php echo esc_url( remove_query_arg( 'wauc_msg' , add_query_arg( array( 'page' => $this->PageSlug ) ) ) ); ?>">
<input type="hidden" name="<?php echo esc_attr( $this->UPFN ); ?>" value="Y" />
<?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
<input type="hidden" name="record_field" value="site" />
<div id="poststuff">
<div id="post-body" class="metabox-holder columns-1">
<div id="postbox-container-1" class="postbox-container">
<div id="meta_fields">
<div class="postbox">
<div class="handlediv" title="Click to toggle"><br></div>
<h3 class="hndle"><span><?php _e( 'Header Meta' , 'wp-admin-ui-customize' ); ?></span></h3>
<div class="inside">
<table class="form-table">
<tbody>
<?php $field = 'wp_generator'; ?>
<tr>
<th>
<label><?php echo $field; ?></label>
</th>
<td>
<?php $Checked = ''; ?>
<?php if( !empty( $SiteSetting[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
<label><input type="checkbox" name="data[<?php echo esc_attr( $field ); ?>]" value="1" <?php echo esc_attr( $Checked ); ?> /> <?php _e ( 'Hide' ); ?></label>
<p class="description"><?php _e( 'Tag' , 'wp-admin-ui-customize' ); ?> : <code><?php echo esc_html( get_the_generator( 'xhtml' ) ); ?></code></p>
</td>
</tr>
<?php $field = 'wlwmanifest_link'; ?>
<tr>
<th>
<?php echo $field; ?>
</th>
<td>
<?php $Checked = ''; ?>
<?php if( !empty( $SiteSetting[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
<label><input type="checkbox" name="data[<?php echo esc_attr( $field ); ?>]" value="1" <?php echo esc_attr( $Checked ); ?> /> <?php _e ( 'Hide' ); ?></label>
<p class="description"><?php _e( 'Required if you are using Windows Live Writer.' , 'wp-admin-ui-customize' ); ?></p>
<p class="description"><?php _e( 'Tag' , 'wp-admin-ui-customize' ); ?> : <code><?php echo esc_html( '<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="' . esc_url( get_bloginfo('wpurl') ) . '/wp-includes/wlwmanifest.xml" />' ); ?></code></p>
</td>
</tr>
<?php $field = 'rsd_link'; ?>
<tr>
<th>
<?php echo $field; ?>
</th>
<td>
<?php $Checked = ''; ?>
<?php if( !empty( $SiteSetting[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
<label><input type="checkbox" name="data[<?php echo esc_attr( $field ); ?>]" value="1" <?php echo esc_attr( $Checked ); ?> /> <?php _e ( 'Hide' ); ?></label>
<p class="description"><?php _e( 'Required if you are using pingbacks.' , 'wp-admin-ui-customize' ); ?></p>
<p class="description"><?php _e( 'Tag' , 'wp-admin-ui-customize' ); ?> : <code><?php echo esc_html( '<link rel="EditURI" type="application/rsd+xml" title="RSD" href="' . esc_url( get_bloginfo('wpurl') ) . '"/xmlrpc.php?rsd" />' ); ?></code></p>
</td>
</tr>
<?php $field = 'feed_links'; ?>
<tr>
<th>
<?php echo $field; ?>
</th>
<td>
<?php $Checked = ''; ?>
<?php if( !empty( $SiteSetting[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
<label><input type="checkbox" name="data[<?php echo esc_attr( $field ); ?>]" value="1" <?php echo esc_attr( $Checked ); ?> /> <?php _e ( 'Hide' ); ?></label>
<p class="description"><?php _e( 'Adds RSS feed links to the HTML &lt;head&gt;' , 'wp-admin-ui-customize' ); ?></p>
<p class="description"><?php _e( 'Tag' , 'wp-admin-ui-customize' ); ?> : <code><?php echo esc_html( '<link rel="alternate" type="' . feed_content_type() . '" title="' . esc_attr( sprintf( __('%1$s %2$s Feed') , get_bloginfo('name') , '&amp;raquo&#059;' ) ) . '" href="' . get_feed_link( get_default_feed() ) . ' />' ); ?></code></p>
</td>
</tr>
<?php $field = 'feed_links_extra'; ?>
<tr>
<th>
<?php echo $field; ?>
</th>
<td>
<?php $Checked = ''; ?>
<?php if( !empty( $SiteSetting[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
<label><input type="checkbox" name="data[<?php echo esc_attr( $field ); ?>]" value="1" <?php echo esc_attr( $Checked ); ?> /> <?php _e ( 'Hide' ); ?></label>
<p class="description"><?php _e( 'Adds RSS feed links for other feeds such as category feeds' , 'wp-admin-ui-customize' ); ?></p>
<p class="description"><?php _e( 'Tag' , 'wp-admin-ui-customize' ); ?> : <code><?php echo esc_html( '<link rel="alternate" type="' . feed_content_type() . '" title="' . esc_attr( sprintf( __('%1$s %2$s Comments Feed') , get_bloginfo('name') , '&amp;raquo&#059;' ) ) . '" href="' . get_feed_link( get_default_feed() . '&#038;p=***' ) . ' />' ); ?></code></p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div id="postbox-container-2" class="postbox-container">
<div id="general">
<div class="postbox">
<div class="handlediv" title="Click to toggle"><br></div>
<h3 class="hndle"><span><?php _e( 'General' ); ?></span></h3>
<div class="inside">
<table class="form-table">
<tbody>
<?php $field = 'admin_bar'; ?>
<tr>
<th>
<?php _e( 'Admin bar' , 'wp-admin-ui-customize' ); ?>
</th>
<td>
<?php $arr = array( "hide" => __( 'Hide admin bar on the front end' , 'wp-admin-ui-customize' ) , "front" => __( 'Apply WP Admin UI Customize settings to the front end admin bar' , 'wp-admin-ui-customize' ) ); ?>
<select name="data[<?php echo esc_attr( $field ); ?>]">
<option value="">-</option>
<?php foreach( $arr as $key => $label ) : ?>
<?php $Selected = ''; ?>
<?php if( !empty( $Data[$field] ) ) : ?>
<?php if( $Data[$field] == $key ) : $Selected = 'selected="selected"'; endif; ?>
<?php if( $key == "hide" && $Data[$field] == "1" ) : $Selected = 'selected="selected"'; endif; ?>
<?php endif; ?>
<option value="<?php echo esc_attr( $key ); ?>" <?php echo esc_attr( $Selected ); ?>><?php echo esc_attr( $label ); ?></option>
<?php endforeach; ?>
</select>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<br class="clear">
</div>
</div>
<p class="submit">
<input type="submit" class="button-primary" name="update" value="<?php echo esc_attr( __( 'Save' ) ); ?>" />
</p>
<p class="submit reset">
<span class="description"><?php printf( __( 'Reset the %s?' , 'wp-admin-ui-customize' ) , __( 'Site Settings' , 'wp-admin-ui-customize' ) ); ?></span>
<input type="submit" class="button-secondary" name="reset" value="<?php echo esc_attr( __( 'Reset settings' , 'wp-admin-ui-customize' ) ); ?>" />
</p>
</form>
</div>
<style>
</style>
<script>
jQuery(document).ready( function($) {
});
</script>

View File

@@ -0,0 +1,33 @@
jQuery(document).ready(function($){
var ResizeTimer = false;
var DefaultBodyPaddingTop = parseInt( $(document.body).css('padding-top'), 10);
$(window).resize(function() {
if (ResizeTimer !== false) {
clearTimeout(ResizeTimer);
}
ResizeTimer = setTimeout(function() {
sidebar_resize();
}, 200);
});
function sidebar_resize() {
if( 0 < $("#wpadminbar").size() ) {
var AdminBarHeight = $("#wpadminbar").height();
var WindowWidth = $(window).width();
if( AdminBarHeight < 47 ) {
$(document.body).css("padding-top", DefaultBodyPaddingTop);
} else {
$(document.body).css("padding-top", ( AdminBarHeight / 2 ) );
}
}
}
sidebar_resize();
});

View File

@@ -0,0 +1,28 @@
jQuery(document).ready(function($){
var ResizeTimer = false;
$(window).resize(function() {
if (ResizeTimer !== false) {
clearTimeout(ResizeTimer);
}
ResizeTimer = setTimeout(function() {
sidebar_resize();
}, 200);
});
function sidebar_resize() {
var AdminBarHeight = $("#wpadminbar").height();
var WindowWidth = $(window).width();
if( WindowWidth > 600 ) {
$("#adminmenu").css("top", 0);
$("#wpbody").css("padding-top", 0);
} else {
$(".auto-fold #adminmenu").css("top", AdminBarHeight);
$(".auto-fold #wpbody").css("padding-top", AdminBarHeight);
}
}
sidebar_resize();
});

View File

@@ -0,0 +1,6 @@
jQuery(document).ready(function($) {
$( ".meta-box-sortables" ).sortable( "disable" );
$( ".postbox .hndle" ).css( "cursor" , "pointer" );
});

View File

@@ -0,0 +1,793 @@
msgid ""
msgstr ""
"Project-Id-Version: WP Admin UI Customize\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-10-15 18:40+0900\n"
"PO-Revision-Date: 2018-10-15 18:46+0900\n"
"Last-Translator: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
"Language-Team: gqevu6bsiz@gmail.com <gqevu6bsiz@gmail.com>\n"
"Language: ja_JP\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-Basepath: ..\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Generator: Poedit 2.1.1\n"
"X-Poedit-SearchPath-0: .\n"
#: wp-admin-ui-customize.php:4
msgid "An excellent plugin to customize the WordPress management UI."
msgstr "管理画面のカスタマイズに優れたプラグインです。"
#: inc/list_variables.php:19 inc/setting_admin_bar_menu.php:25
#: inc/setting_admin_general.php:125 inc/setting_admin_general.php:148
#: inc/setting_loginscreen.php:51 inc/setting_loginscreen.php:64
#: inc/setting_loginscreen.php:76 inc/setting_loginscreen.php:103
#: inc/setting_loginscreen.php:115 inc/setting_sidemenu.php:24
msgid "Shortcodes"
msgstr "ショートコード一覧"
#: inc/list_variables.php:20
msgid "Value"
msgstr ""
#: inc/list_variables.php:44
msgid "Blog name of logged in."
msgstr "ログイン中のブログ名"
#: inc/list_variables.php:53
msgid "Blog URL of logged in."
msgstr "ログイン中のブログURL"
#: inc/list_variables.php:103 inc/list_variables.php:110
#: inc/list_variables.php:117 inc/list_variables.php:124
msgid "In your case."
msgstr "これはあなたの場合です。"
#: inc/list_variables.php:130 inc/setting_manage_metabox.php:38
#: inc/setting_manage_metabox.php:123
msgid "Posts"
msgstr ""
#: inc/list_variables.php:131
msgid "Current Post Type Name"
msgstr "現在の投稿タイプ名"
#: inc/list_variables.php:131 inc/setting_manage_metabox.php:135
#: inc/setting_manage_metabox.php:219
msgid "Pages"
msgstr ""
#: inc/list_variables.php:131
msgid "Categories"
msgstr ""
#: inc/list_variables.php:131
msgid "Tags"
msgstr ""
#: inc/list_variables.php:131
msgid "Custom Post Type"
msgstr "カスタム投稿"
#: inc/reset_userrole.php:15 wp-admin-ui-customize.php:188
msgid "Reset Settings"
msgstr "設定リセット"
#: inc/reset_userrole.php:23
msgid "Applied user roles"
msgstr "適用されたユーザー権限"
#: inc/reset_userrole.php:33 inc/setting_admin_bar_menu.php:87
#: inc/setting_admin_general.php:191 inc/setting_appearance_menus.php:81
#: inc/setting_dashboard.php:142 inc/setting_default.php:94
#: inc/setting_loginscreen.php:138 inc/setting_manage_metabox.php:354
#: inc/setting_plugin_cap.php:82 inc/setting_post_add_edit.php:101
#: inc/setting_sidemenu.php:237 inc/setting_site.php:160
#, php-format
msgid "Reset the %s?"
msgstr "%s をリセットしますか?"
#: inc/reset_userrole.php:33 inc/setting_default.php:94
msgid "User Roles Settings"
msgstr "ユーザー権限設定"
#: inc/reset_userrole.php:35
msgid "Reset User Roles Settings"
msgstr "ユーザー権限グループ設定をリセット"
#: inc/reset_userrole.php:42 inc/reset_userrole.php:64
msgid "Reset all settings"
msgstr "全てをリセット"
#: inc/reset_userrole.php:47
msgid "All settings below will be deleted."
msgstr "以下のすべての設定が削除されます。"
#: inc/reset_userrole.php:49 wp-admin-ui-customize.php:178
#: wp-admin-ui-customize.php:1285
msgid "Frontend"
msgstr "サイト"
#: inc/reset_userrole.php:50 inc/setting_admin_general.php:16
#: inc/setting_admin_general.php:191
#, php-format
msgid "%1$s %2$s"
msgstr "%1$s%2$s"
#: inc/reset_userrole.php:50 inc/setting_admin_general.php:16
#: inc/setting_admin_general.php:135 inc/setting_admin_general.php:191
#: inc/setting_loginscreen.php:90 inc/setting_site.php:117
#: wp-admin-ui-customize.php:179
msgid "General"
msgstr ""
#: inc/reset_userrole.php:50 inc/setting_admin_bar_menu.php:87
#: inc/setting_admin_general.php:16 inc/setting_admin_general.php:191
#: inc/setting_dashboard.php:16 inc/setting_dashboard.php:142
#: inc/setting_manage_metabox.php:354 inc/setting_plugin_cap.php:82
#: inc/setting_sidemenu.php:237 wp-admin-ui-customize.php:147
msgid "Settings"
msgstr ""
#: inc/reset_userrole.php:51 inc/setting_dashboard.php:16
#: inc/setting_dashboard.php:96 inc/setting_dashboard.php:142
#: wp-admin-ui-customize.php:180 wp-admin-ui-customize.php:505
msgid "Dashboard"
msgstr ""
#: inc/reset_userrole.php:52 inc/setting_admin_bar_menu.php:18
#: inc/setting_admin_bar_menu.php:87 inc/setting_admin_general.php:165
#: inc/setting_site.php:124 wp-admin-ui-customize.php:181
msgid "Admin bar"
msgstr "管理バー"
#: inc/reset_userrole.php:53 inc/setting_sidemenu.php:17
#: inc/setting_sidemenu.php:237 wp-admin-ui-customize.php:182
msgid "Sidebar"
msgstr "サイドバー"
#: inc/reset_userrole.php:54 inc/setting_dashboard.php:34
#: wp-admin-ui-customize.php:183
msgid "Meta boxes"
msgstr "メタボックス"
#: inc/reset_userrole.php:55 wp-admin-ui-customize.php:184
msgid "Posts and Pages"
msgstr "投稿と固定ページ"
#: inc/reset_userrole.php:56 inc/setting_appearance_menus.php:14
#: inc/setting_appearance_menus.php:81 wp-admin-ui-customize.php:185
msgid "Appearance Menus"
msgstr "外観メニュー"
#: inc/reset_userrole.php:57 inc/setting_loginscreen.php:16
#: inc/setting_loginscreen.php:38 inc/setting_loginscreen.php:138
#: wp-admin-ui-customize.php:186
msgid "Login Form"
msgstr "ログインフォーム"
#: inc/reset_userrole.php:58 inc/setting_plugin_cap.php:17
#: inc/setting_plugin_cap.php:82 wp-admin-ui-customize.php:187
#, php-format
msgid "%1$s of %2$s %3$s"
msgstr "%2$s%3$sの%1$s"
#: inc/reset_userrole.php:58 inc/setting_plugin_cap.php:17
#: inc/setting_plugin_cap.php:82 wp-admin-ui-customize.php:187
msgid "Change"
msgstr ""
#: inc/reset_userrole.php:58 inc/setting_plugin_cap.php:17
#: inc/setting_plugin_cap.php:82 wp-admin-ui-customize.php:187
msgid "Plugin"
msgstr ""
#: inc/reset_userrole.php:58 inc/setting_plugin_cap.php:17
#: inc/setting_plugin_cap.php:18 inc/setting_plugin_cap.php:43
#: inc/setting_plugin_cap.php:82 wp-admin-ui-customize.php:187
msgid "Capabilities"
msgstr ""
#: inc/reset_userrole.php:62
msgid "Are you sure you want to delete all settings?"
msgstr "本当に全ての設定を削除してもよろしいですか?"
#: inc/setting_admin_bar_menu.php:19 inc/setting_sidemenu.php:18
msgid "Drag menu items to edit and reorder menus."
msgstr "ドラッグ&ドロップでメニューを変更できます。"
#: inc/setting_admin_bar_menu.php:20 inc/setting_sidemenu.php:20
msgid ""
"Note: Using the same menu item multiple times could cause unexpected "
"behavior."
msgstr "注意: 複数同じメニュースラッグを設置しないでください。"
#: inc/setting_admin_bar_menu.php:21
msgid "You can use multiple custom menus."
msgstr "カスタムメニューは複数設置できます。"
#: inc/setting_admin_bar_menu.php:25 inc/setting_admin_general.php:125
#: inc/setting_admin_general.php:148 inc/setting_loginscreen.php:51
#: inc/setting_loginscreen.php:64 inc/setting_loginscreen.php:76
#: inc/setting_loginscreen.php:103 inc/setting_loginscreen.php:115
#: inc/setting_sidemenu.php:24
msgid "Available Shortcodes"
msgstr "利用可能なショートコード一覧"
#: inc/setting_admin_bar_menu.php:33
msgid "Sub menus can be a maximum of four levels deep."
msgstr "サブメニューは最大4階層まで設定できます。"
#: inc/setting_admin_bar_menu.php:34
msgid "Additional documentation"
msgstr "ドキュメントはこちら"
#: inc/setting_admin_bar_menu.php:48 inc/setting_admin_bar_menu.php:102
#: inc/setting_admin_bar_menu.php:118 inc/setting_appearance_menus.php:32
msgid "Menus"
msgstr ""
#: inc/setting_admin_bar_menu.php:83 inc/setting_admin_general.php:187
#: inc/setting_appearance_menus.php:77 inc/setting_dashboard.php:138
#: inc/setting_default.php:90 inc/setting_loginscreen.php:134
#: inc/setting_manage_metabox.php:350 inc/setting_plugin_cap.php:78
#: inc/setting_post_add_edit.php:97 inc/setting_sidemenu.php:233
#: inc/setting_site.php:156
msgid "Save"
msgstr ""
#: inc/setting_admin_bar_menu.php:88 inc/setting_admin_general.php:192
#: inc/setting_appearance_menus.php:82 inc/setting_dashboard.php:143
#: inc/setting_default.php:95 inc/setting_loginscreen.php:139
#: inc/setting_manage_metabox.php:355 inc/setting_plugin_cap.php:83
#: inc/setting_post_add_edit.php:102 inc/setting_sidemenu.php:238
#: inc/setting_site.php:161
msgid "Reset settings"
msgstr "設定をリセット"
#: inc/setting_admin_bar_menu.php:93 inc/setting_sidemenu.php:19
#: inc/setting_sidemenu.php:40
msgid "Available menu items"
msgstr "利用可能なメニュー"
#: inc/setting_admin_bar_menu.php:102
msgid "Custom"
msgstr "カスタム"
#: inc/setting_admin_general.php:34
msgid "Notifications"
msgstr "通知"
#: inc/setting_admin_general.php:40
msgid "WordPress core updates"
msgstr "WordPressコアアップデート"
#: inc/setting_admin_general.php:46 inc/setting_admin_general.php:57
#: inc/setting_admin_general.php:68
msgid "Hide notifications"
msgstr "通知しない"
#: inc/setting_admin_general.php:51
msgid "Plugin updates"
msgstr "プラグインアップデート"
#: inc/setting_admin_general.php:62
msgid "Theme updates"
msgstr "テーマアップデート"
#: inc/setting_admin_general.php:78
msgid "Screen Options and Help Tab"
msgstr "表示オプションとヘルプタブ"
#: inc/setting_admin_general.php:84
msgid "Screen Options"
msgstr ""
#: inc/setting_admin_general.php:90 inc/setting_admin_general.php:101
#: inc/setting_appearance_menus.php:44 inc/setting_appearance_menus.php:58
#: inc/setting_dashboard.php:59 inc/setting_dashboard.php:74
#: inc/setting_manage_metabox.php:72 inc/setting_manage_metabox.php:168
#: inc/setting_manage_metabox.php:272 inc/setting_post_add_edit.php:77
#: inc/setting_site.php:47 inc/setting_site.php:59 inc/setting_site.php:72
#: inc/setting_site.php:85 inc/setting_site.php:98
msgid "Hide"
msgstr ""
#: inc/setting_admin_general.php:95
msgid "Help"
msgstr ""
#: inc/setting_admin_general.php:111
msgid "Footer"
msgstr "フッター"
#: inc/setting_admin_general.php:117 inc/setting_loginscreen.php:109
msgid "Footer text"
msgstr "フッターテキスト"
#: inc/setting_admin_general.php:124 inc/setting_plugin_cap.php:61
msgid "Default"
msgstr ""
#: inc/setting_admin_general.php:124
#, php-format
msgid "Thank you for creating with <a href=\"%s\">WordPress</a>."
msgstr ""
#: inc/setting_admin_general.php:142 inc/setting_loginscreen.php:97
msgid "CSS file to load"
msgstr "CSSファイルを読み込む"
#: inc/setting_admin_general.php:154
msgid "Admin screen"
msgstr "管理画面"
#: inc/setting_admin_general.php:159
msgid "Remove \"Wordpress\" from title tag"
msgstr "管理画面のタイトルタグから\"WordPress\"を削除"
#: inc/setting_admin_general.php:170
msgid "Disable resizing"
msgstr "リサイズしない"
#: inc/setting_appearance_menus.php:39
msgid "Create a new menu"
msgstr "新規メニュー作成"
#: inc/setting_appearance_menus.php:45 inc/setting_appearance_menus.php:59
msgid ""
"This is useful when you want to use only the menus that have already been "
"created."
msgstr "作成済みのメニューだけを使用する時に便利です。"
#: inc/setting_appearance_menus.php:53
msgid "Delete Menu"
msgstr ""
#: inc/setting_dashboard.php:45 inc/setting_manage_metabox.php:50
#: inc/setting_manage_metabox.php:147 inc/setting_manage_metabox.php:252
msgid "Select All"
msgstr ""
#: inc/setting_dashboard.php:47 inc/setting_manage_metabox.php:56
#: inc/setting_manage_metabox.php:153 inc/setting_manage_metabox.php:258
msgid "Update meta box title"
msgstr "メタボックス名を変更"
#: inc/setting_dashboard.php:96 inc/setting_manage_metabox.php:123
#: inc/setting_manage_metabox.php:219 inc/setting_manage_metabox.php:327
#, php-format
msgid "Refresh meta boxes for %s"
msgstr "%sのメタボックスを読み込む"
#: inc/setting_dashboard.php:101 inc/setting_manage_metabox.php:128
#: inc/setting_manage_metabox.php:224 inc/setting_manage_metabox.php:332
msgid "Loading&hellip;"
msgstr ""
#: inc/setting_dashboard.php:109
msgid "Other"
msgstr "その他"
#: inc/setting_dashboard.php:116
msgid "Meta box movement"
msgstr "メタボックスの移動"
#: inc/setting_dashboard.php:121
msgid "Prevent selected roles from re-arrange meta boxes"
msgstr "メタボックスを移動させない"
#: inc/setting_default.php:17
msgid ""
"Thank you for using WP Admin UI Customize. But sorry this plugin is stopped "
"development and instead I developing to new plugin."
msgstr ""
"WP Admin UI Customize をご利用いただきありがとうございます。WP Admin UI "
"Customizeの開発はストップしており、代わりに別の新しいプラグインを開発していま"
"す。"
#: inc/setting_default.php:20
msgid ""
"\n"
"WP Admin UI Customize allows the management UI for different user roles to "
"be customized."
msgstr ""
"\n"
"ユーザーの管理画面UIをカスタマイズします。"
#: inc/setting_default.php:22
msgid "Select the user roles to customize below."
msgstr "設定を適用する権限を選んでください。"
#: inc/setting_default.php:32
msgid "About plugin"
msgstr "プラグインについて"
#: inc/setting_default.php:34
msgid "Tested with WordPress versions"
msgstr "テスト済みWordPressバージョン"
#: inc/setting_default.php:36
msgid "Plugin site"
msgstr "プラグインサイト"
#: inc/setting_default.php:37
msgid "Developer site"
msgstr "開発者サイト"
#: inc/setting_default.php:38 wp-admin-ui-customize.php:148
msgid "Support Forums"
msgstr ""
#: inc/setting_default.php:39
msgid "Reviews"
msgstr "レビュー"
#: inc/setting_default.php:47
msgid "Useful plugins"
msgstr "便利なプラグイン"
#: inc/setting_default.php:50
msgid ""
"Customize list view columns for posts, pages, custom post types, media "
"library, and other management screens."
msgstr ""
"投稿と固定ページ、カスタム投稿タイプ、メディアライブラリー等の一覧を自由にカ"
"スタマイズできます。"
#: inc/setting_default.php:52
msgid "Create dashboard messages to be displayed for selected user roles."
msgstr "ダッシュボードにユーザー権限やサイトごとにお知らせを表示します。"
#: inc/setting_default.php:54
msgid ""
"Create custom global variables that can be used with generated template tags "
"or shortcodes."
msgstr ""
"オプション値作成プラグインです。作成したオプション値は、ショートコードとして"
"記事に、テンプレートタグとしても使用できます。"
#: inc/setting_default.php:73 wp-admin-ui-customize.php:355
#: wp-admin-ui-customize.php:784 wp-admin-ui-customize.php:828
msgid "User Roles"
msgstr ""
#: inc/setting_default.php:105
msgid "Do you need professional setup and customization?"
msgstr "何かカスタマイズしたい事はありますか?"
#: inc/setting_default.php:111
msgid "I provide full service customization for WP Admin UI Customize."
msgstr "私は管理画面のカスタマイズを得意とします。"
#: inc/setting_default.php:112
msgid "Please contact me if you are interested."
msgstr "宜しければご検討ください。"
#: inc/setting_default.php:114
msgid "Example Customize"
msgstr "カスタマイズ例"
#: inc/setting_default.php:115
msgid "Contact me"
msgstr "お問い合わせ"
#: inc/setting_loginscreen.php:25
msgid ""
"Is not possible to check the login form if you do not log out in the case of "
"MultiSite."
msgstr ""
"マルチサイトの場合はログアウトしないとログインフォームの表示確認はできませ"
"ん。"
#: inc/setting_loginscreen.php:27
msgid "Login Screen"
msgstr "ログイン画面"
#: inc/setting_loginscreen.php:27
msgid "Show Current Login Screen"
msgstr "ログイン画面を表示"
#: inc/setting_loginscreen.php:45
msgid "Logo URL"
msgstr "ロゴURL"
#: inc/setting_loginscreen.php:58
msgid "Logo Title"
msgstr "ロゴタイトル"
#: inc/setting_loginscreen.php:70
msgid "Logo Image URL"
msgstr "ロゴ画像URL"
#: inc/setting_manage_metabox.php:18 inc/setting_manage_metabox.php:354
msgid "Management of meta boxes"
msgstr "メタボックス管理"
#: inc/setting_manage_metabox.php:19
msgid ""
"Ensure at least one post and page is present and then refresh to display the "
"available meta boxes."
msgstr "メタボックスを読み込むには少なくとも1つは投稿を作成してください。"
#: inc/setting_manage_metabox.php:20
msgid "It is also possible to change the meta box display name."
msgstr "メタボックス名は変更することもできます。"
#: inc/setting_manage_metabox.php:54 inc/setting_manage_metabox.php:151
#: inc/setting_manage_metabox.php:256
msgid "Default Open"
msgstr "デフォルトの表示"
#: inc/setting_manage_metabox.php:74 inc/setting_manage_metabox.php:86
#: inc/setting_manage_metabox.php:170 inc/setting_manage_metabox.php:182
#: inc/setting_manage_metabox.php:274 inc/setting_manage_metabox.php:286
msgid "Show"
msgstr ""
#: inc/setting_manage_metabox.php:82 inc/setting_manage_metabox.php:178
#: inc/setting_manage_metabox.php:282
msgid "Expanded"
msgstr "開く"
#: inc/setting_manage_metabox.php:83 inc/setting_manage_metabox.php:179
#: inc/setting_manage_metabox.php:283
msgid "Collapsed"
msgstr "閉じる"
#: inc/setting_manage_metabox.php:94 inc/setting_manage_metabox.php:190
#: inc/setting_post_add_edit.php:48
msgid ""
"If the discussion meta box is hidden comments will not be displayed on new "
"posts for the selected role."
msgstr ""
"ディスカッションメタボックスを隠す場合、適用された権限の新規投稿はコメントが"
"表示されません。"
#: inc/setting_manage_metabox.php:96 inc/setting_manage_metabox.php:192
msgid "Change this setting to allow comments on new posts"
msgstr "コメントが表示されるようにしたい場合はここから設定してください。"
#: inc/setting_plugin_cap.php:18
#, php-format
msgid "You can change the user role %2$s of %1$s settings."
msgstr "%1$sの設定%2$sを変更することができます。"
#: inc/setting_plugin_cap.php:19
#, php-format
msgid "Select the capability required to modify %s settings."
msgstr "%s を動作させる最小限の権限を選択してください。"
#: inc/setting_plugin_cap.php:36
#, php-format
msgid "Capability required to modify %s settings"
msgstr "%s を動作させる権限"
#: inc/setting_post_add_edit.php:16 inc/setting_post_add_edit.php:101
msgid "Add New Post and Edit Post Screen Setting"
msgstr "新規投稿&編集の設定"
#: inc/setting_post_add_edit.php:34 inc/setting_post_add_edit.php:65
msgid "Add New Post"
msgstr ""
#: inc/setting_post_add_edit.php:34
msgid "Add New Page"
msgstr ""
#: inc/setting_post_add_edit.php:41
msgid "Allow comments if discussion meta box is hidden"
msgstr ""
"ディスカッションメタボックスが非表示でも新しい投稿へのコメントを許可する"
#: inc/setting_post_add_edit.php:47
msgid "Allow"
msgstr ""
#: inc/setting_post_add_edit.php:49
msgid "Check 'Allow' to allow comments on new posts."
msgstr "サイトでコメントを表示させたい場合に選択してください。"
#: inc/setting_post_add_edit.php:50
#, php-format
msgid "The %s in WordPress will override this setting."
msgstr "ただし、これは%sの設定に従います。"
#: inc/setting_post_add_edit.php:50
msgid "Default article settings"
msgstr ""
#: inc/setting_post_add_edit.php:52
#, php-format
msgid "Please select the <strong>%s</strong>"
msgstr "<strong>%s</strong> を選択してください。"
#: inc/setting_post_add_edit.php:52
msgid "Allow people to post comments on new articles"
msgstr ""
#: inc/setting_post_add_edit.php:65
msgid "Edit Post"
msgstr ""
#: inc/setting_post_add_edit.php:72
msgid "Change Permalinks"
msgstr ""
#: inc/setting_post_add_edit.php:78
msgid "Only appears when the permalinks are set to the default setting."
msgstr "デフォルトのパーマリンクに設定している時のみ表示されます。"
#: inc/setting_sidemenu.php:19
#, php-format
msgid "New plugin menus will be added to the <strong>%s</strong>."
msgstr "新しいプラグインメニューは <strong>%s</strong> に追加されます。"
#: inc/setting_sidemenu.php:43
msgid "Sepalator"
msgstr "区切り線"
#: inc/setting_sidemenu.php:54 inc/setting_sidemenu.php:133
msgid "Comments"
msgstr ""
#: inc/setting_sidemenu.php:56 inc/setting_sidemenu.php:135
msgid "Appearance"
msgstr ""
#: inc/setting_sidemenu.php:58 inc/setting_sidemenu.php:137
msgid "Plugins"
msgstr ""
#: inc/setting_sidemenu.php:76 inc/setting_sidemenu.php:148
msgid "Update"
msgstr ""
#: inc/setting_sidemenu.php:114
msgid "Current menu"
msgstr "現在のメニュー"
#: inc/setting_sidemenu.php:221
msgid "Remove all items from the current menu"
msgstr "現在のメニューを全て削除"
#: inc/setting_site.php:16 inc/setting_site.php:160
msgid "Site Settings"
msgstr "サイトの設定"
#: inc/setting_site.php:35
msgid "Header Meta"
msgstr "ヘッダー metaタグ"
#: inc/setting_site.php:48 inc/setting_site.php:61 inc/setting_site.php:74
#: inc/setting_site.php:87 inc/setting_site.php:100
msgid "Tag"
msgstr "タグ"
#: inc/setting_site.php:60
msgid "Required if you are using Windows Live Writer."
msgstr "Windows Live Writer を使う場合は表示させてください。"
#: inc/setting_site.php:73
msgid "Required if you are using pingbacks."
msgstr "XML-RPC投稿プロトコル(外部からの投稿)情報"
#: inc/setting_site.php:86
msgid "Adds RSS feed links to the HTML &lt;head&gt;"
msgstr "サイト全体のフィード"
#: inc/setting_site.php:87
#, php-format
msgid "%1$s %2$s Feed"
msgstr ""
#: inc/setting_site.php:99
msgid "Adds RSS feed links for other feeds such as category feeds"
msgstr "その他のフィードリンク"
#: inc/setting_site.php:100
#, php-format
msgid "%1$s %2$s Comments Feed"
msgstr ""
#: inc/setting_site.php:127
msgid "Hide admin bar on the front end"
msgstr "サイトで管理バーを非表示"
#: inc/setting_site.php:127
msgid "Apply WP Admin UI Customize settings to the front end admin bar"
msgstr "WP Admin UI Customize の管理バーの設定をフロントにも適用"
#: wp-admin-ui-customize.php:149
msgid "Reset User Roles"
msgstr "ユーザー権限リセット"
#: wp-admin-ui-customize.php:183
msgid "Management of Meta boxes"
msgstr "メタボックス管理"
#: wp-admin-ui-customize.php:330
#, php-format
msgid ""
"You must <a href=\"%s\">select a user role</a> before settings can be "
"applied."
msgstr ""
"<a href=\"%s\">ユーザー権限グループ設定</a>から適用する権限を選んでください。"
#: wp-admin-ui-customize.php:365
msgid "None"
msgstr ""
#: wp-admin-ui-customize.php:509
#, php-format
msgid "Howdy, %1$s"
msgstr ""
#: wp-admin-ui-customize.php:609
msgid "Edit"
msgstr ""
#: wp-admin-ui-customize.php:613
msgid "Search"
msgstr ""
#: wp-admin-ui-customize.php:619
msgid "View"
msgstr ""
#: wp-admin-ui-customize.php:777
msgid "Url"
msgstr ""
#: wp-admin-ui-customize.php:780 wp-admin-ui-customize.php:825
msgid "Slug"
msgstr ""
#: wp-admin-ui-customize.php:795 wp-admin-ui-customize.php:839
#: wp-admin-ui-customize.php:942
msgid "Title"
msgstr ""
#: wp-admin-ui-customize.php:802 wp-admin-ui-customize.php:1018
msgid "Sub Menus"
msgstr "サブメニュー"
#: wp-admin-ui-customize.php:845 wp-admin-ui-customize.php:857
#: wp-admin-ui-customize.php:1049
msgid "Remove"
msgstr ""
#: wp-admin-ui-customize.php:906 wp-admin-ui-customize.php:928
msgid "Menu Group"
msgstr "メニューグループ"
#: wp-admin-ui-customize.php:926
msgid "Show only on front end."
msgstr "フロント(サイト)のみ表示"
#: wp-admin-ui-customize.php:1006
msgid "Open link in a new tab"
msgstr ""
#: wp-admin-ui-customize.php:1285
msgid "Left"
msgstr ""
#: wp-admin-ui-customize.php:1285
msgid "Right"
msgstr ""
#: wp-admin-ui-customize.php:1836
msgid "http://wordpress.org/"
msgstr ""
#: wp-admin-ui-customize.php:1853
msgid "Powered by WordPress"
msgstr ""
#: wp-admin-ui-customize.php:2739
msgid "Settings saved."
msgstr ""

View File

@@ -0,0 +1,863 @@
msgid ""
msgstr ""
"Project-Id-Version: WP Admin UI Customize\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-16 12:55+0300\n"
"PO-Revision-Date: 2015-05-16 14:02+0300\n"
"Last-Translator: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
"Language-Team: \n"
"Language: ru_RU\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-Basepath: ../\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Poedit 1.7.6\n"
"X-Poedit-SearchPath-0: .\n"
#: inc/list_variables.php:19 inc/setting_admin_bar_menu.php:25
#: inc/setting_admin_general.php:125 inc/setting_admin_general.php:148
#: inc/setting_loginscreen.php:64 inc/setting_loginscreen.php:77
#: inc/setting_loginscreen.php:89 inc/setting_loginscreen.php:117
#: inc/setting_loginscreen.php:129 inc/setting_sidemenu.php:24
msgid "Shortcodes"
msgstr "Шорткоды"
#: inc/list_variables.php:20
msgid "Value"
msgstr "Значение"
#: inc/list_variables.php:44
msgid "Blog name of logged in."
msgstr "Название сайта при входе."
#: inc/list_variables.php:53
msgid "Blog URL of logged in."
msgstr "Адрес сайта при входе."
#: inc/list_variables.php:103 inc/list_variables.php:110
#: inc/list_variables.php:117 inc/list_variables.php:124
msgid "In your case."
msgstr "(в вашем профиле)"
#: inc/list_variables.php:130 inc/setting_manage_metabox.php:38
#: inc/setting_manage_metabox.php:122
msgid "Posts"
msgstr "Записи"
#: inc/list_variables.php:131
msgid "Current Post Type Name"
msgstr "Имя текущей записи"
#: inc/list_variables.php:131 inc/setting_manage_metabox.php:134
#: inc/setting_manage_metabox.php:217
msgid "Pages"
msgstr "Страницы"
#: inc/list_variables.php:131
msgid "Categories"
msgstr "Категории"
#: inc/list_variables.php:131
msgid "Tags"
msgstr "Метки"
#: inc/list_variables.php:131 inc/setting_admin_bar_menu.php:102
msgid "Custom"
msgstr "Произвольно"
#: inc/reset_userrole.php:15 wp-admin-ui-customize.php:147
#: wp-admin-ui-customize.php:186
msgid "Reset User Roles"
msgstr "Сбросить настройки Ролей пользователей"
#: inc/reset_userrole.php:23
msgid "Applied user roles"
msgstr "Установленные роли пользователей"
#: inc/reset_userrole.php:33 inc/setting_admin_bar_menu.php:87
#: inc/setting_admin_general.php:191 inc/setting_appearance_menus.php:81
#: inc/setting_dashboard.php:141 inc/setting_default.php:124
#: inc/setting_loginscreen.php:152 inc/setting_manage_metabox.php:351
#: inc/setting_plugin_cap.php:82 inc/setting_post_add_edit.php:101
#: inc/setting_sidemenu.php:232 inc/setting_site.php:160
#, php-format
msgid "Reset the %s?"
msgstr "Сбросить %s?"
#: inc/reset_userrole.php:33 inc/setting_default.php:124
msgid "User Roles Settings"
msgstr "Настройки Ролей пользователей"
#: inc/reset_userrole.php:35 inc/setting_admin_bar_menu.php:88
#: inc/setting_admin_general.php:192 inc/setting_appearance_menus.php:82
#: inc/setting_dashboard.php:142 inc/setting_default.php:125
#: inc/setting_loginscreen.php:153 inc/setting_manage_metabox.php:352
#: inc/setting_plugin_cap.php:83 inc/setting_post_add_edit.php:102
#: inc/setting_sidemenu.php:233 inc/setting_site.php:161
msgid "Reset settings"
msgstr "Сбросить настройки"
#: inc/reset_userrole.php:42 inc/reset_userrole.php:64
msgid "Reset settings of all"
msgstr "Сбросить все настройки"
#: inc/reset_userrole.php:47
msgid "Setting all of the below will be deleted."
msgstr "Будут удалены настройки для следующих пунктов:"
#: inc/reset_userrole.php:49 inc/setting_site.php:16 inc/setting_site.php:160
#: wp-admin-ui-customize.php:176
msgid "Site Settings"
msgstr "Настройки сайта"
#: inc/reset_userrole.php:50 inc/setting_admin_general.php:16
#: inc/setting_admin_general.php:191 wp-admin-ui-customize.php:177
#, php-format
msgid "%1$s %2$s"
msgstr "%1$s %2$s"
#: inc/reset_userrole.php:50 inc/setting_admin_general.php:16
#: inc/setting_admin_general.php:135 inc/setting_admin_general.php:191
#: inc/setting_loginscreen.php:104 inc/setting_site.php:117
#: wp-admin-ui-customize.php:177
msgid "General"
msgstr "Основные настройки"
#: inc/reset_userrole.php:50 inc/setting_admin_bar_menu.php:87
#: inc/setting_admin_general.php:16 inc/setting_admin_general.php:191
#: inc/setting_dashboard.php:16 inc/setting_dashboard.php:141
#: inc/setting_manage_metabox.php:351 inc/setting_plugin_cap.php:82
#: inc/setting_sidemenu.php:232 wp-admin-ui-customize.php:145
#: wp-admin-ui-customize.php:177
msgid "Settings"
msgstr "Настройки"
#: inc/reset_userrole.php:51 inc/setting_dashboard.php:16
#: inc/setting_dashboard.php:95 inc/setting_dashboard.php:141
#: wp-admin-ui-customize.php:178 wp-admin-ui-customize.php:498
msgid "Dashboard"
msgstr "Панель управления"
#: inc/reset_userrole.php:52 inc/setting_admin_bar_menu.php:18
#: inc/setting_admin_bar_menu.php:87 wp-admin-ui-customize.php:179
msgid "Admin Bar Menu"
msgstr "Верхнее меню"
#: inc/reset_userrole.php:53 inc/setting_sidemenu.php:17
#: inc/setting_sidemenu.php:232 wp-admin-ui-customize.php:180
msgid "Side Menu"
msgstr "Меню"
#: inc/reset_userrole.php:54 inc/setting_manage_metabox.php:18
#: inc/setting_manage_metabox.php:351 wp-admin-ui-customize.php:181
msgid "Manage meta box"
msgstr "Метабоксы"
#: inc/reset_userrole.php:55 inc/setting_post_add_edit.php:16
#: inc/setting_post_add_edit.php:101 wp-admin-ui-customize.php:182
msgid "Add New Post and Edit Post Screen Setting"
msgstr "Страница записи"
#: inc/reset_userrole.php:56 inc/setting_appearance_menus.php:14
#: inc/setting_appearance_menus.php:81 wp-admin-ui-customize.php:183
msgid "Appearance Menus Screen Setting"
msgstr "Внешний вид"
#: inc/reset_userrole.php:57 inc/setting_loginscreen.php:27
#: wp-admin-ui-customize.php:184
msgid "Login Screen"
msgstr "Страница входа"
#: inc/reset_userrole.php:58 inc/setting_plugin_cap.php:17
#: inc/setting_plugin_cap.php:82 wp-admin-ui-customize.php:185
#, php-format
msgid "%1$s of %2$s %3$s"
msgstr "%1$s из %2$s %3$s"
#: inc/reset_userrole.php:58 inc/setting_plugin_cap.php:17
#: inc/setting_plugin_cap.php:82 wp-admin-ui-customize.php:185
msgid "Change"
msgstr "Изменить"
#: inc/reset_userrole.php:58 inc/setting_plugin_cap.php:17
#: inc/setting_plugin_cap.php:82 wp-admin-ui-customize.php:185
msgid "Plugin"
msgstr "Плагин"
#: inc/reset_userrole.php:58 inc/setting_plugin_cap.php:17
#: inc/setting_plugin_cap.php:18 inc/setting_plugin_cap.php:43
#: inc/setting_plugin_cap.php:82 wp-admin-ui-customize.php:185
msgid "Capabilities"
msgstr "Возможности"
#: inc/reset_userrole.php:62
msgid "Are you sure you want to delete all settings?"
msgstr "Вы уверены, что хотите удалить все настройки?"
#: inc/setting_admin_bar_menu.php:19 inc/setting_sidemenu.php:18
msgid "Please change the menu by drag and drop."
msgstr "Изменяйте меню перетаскивая вкладки."
#: inc/setting_admin_bar_menu.php:20 inc/setting_sidemenu.php:20
msgid "Notice: Please do not place the same multiple menu slug."
msgstr "Замечание: не размещайте несколько одинаковых меню."
#: inc/setting_admin_bar_menu.php:21
msgid "Can be more than one custom menu."
msgstr "Может быть больше, чем одно меню."
#: inc/setting_admin_bar_menu.php:25 inc/setting_admin_general.php:125
#: inc/setting_admin_general.php:148 inc/setting_loginscreen.php:64
#: inc/setting_loginscreen.php:77 inc/setting_loginscreen.php:89
#: inc/setting_loginscreen.php:117 inc/setting_loginscreen.php:129
#: inc/setting_sidemenu.php:24
msgid "Available Shortcodes"
msgstr "Шорткоды"
#: inc/setting_admin_bar_menu.php:33
msgid "Sub-menu settings apply to maximum of four levels deep."
msgstr "Настройки вложенного меню до 4-х уровней вложенности."
#: inc/setting_admin_bar_menu.php:34
msgid "Admin bar settings documentation page"
msgstr "Документация по настройкам Верхнего меню"
#: inc/setting_admin_bar_menu.php:48 inc/setting_admin_bar_menu.php:102
#: inc/setting_admin_bar_menu.php:118 inc/setting_appearance_menus.php:32
msgid "Menus"
msgstr "Меню"
#: inc/setting_admin_bar_menu.php:83 inc/setting_admin_general.php:187
#: inc/setting_appearance_menus.php:77 inc/setting_dashboard.php:137
#: inc/setting_default.php:120 inc/setting_loginscreen.php:148
#: inc/setting_manage_metabox.php:347 inc/setting_plugin_cap.php:78
#: inc/setting_post_add_edit.php:97 inc/setting_sidemenu.php:228
#: inc/setting_site.php:156
msgid "Save"
msgstr "Сохранить"
#: inc/setting_admin_bar_menu.php:93 inc/setting_sidemenu.php:19
#: inc/setting_sidemenu.php:40
msgid "Menu items that can be added"
msgstr "Элементы меню навигации"
#: inc/setting_admin_general.php:34
msgid "Notifications"
msgstr "Уведомления"
#: inc/setting_admin_general.php:40
msgid "WordPress core update notice"
msgstr "Обновления ядра системы"
#: inc/setting_admin_general.php:46 inc/setting_admin_general.php:57
#: inc/setting_admin_general.php:68
msgid "Not notified"
msgstr "Не показывать"
#: inc/setting_admin_general.php:51
msgid "Plugin update notice"
msgstr "Обновления плагинов"
#: inc/setting_admin_general.php:62
msgid "Theme update notice"
msgstr "Обновления тем"
#: inc/setting_admin_general.php:78
msgid "Screen Options and Help Tab"
msgstr "Вкладка «Настройки экрана»"
#: inc/setting_admin_general.php:84
msgid "Screen Options"
msgstr "Настройки страницы"
#: inc/setting_admin_general.php:90 inc/setting_admin_general.php:101
#: inc/setting_appearance_menus.php:44 inc/setting_appearance_menus.php:58
#: inc/setting_dashboard.php:59 inc/setting_dashboard.php:74
#: inc/setting_manage_metabox.php:72 inc/setting_manage_metabox.php:167
#: inc/setting_manage_metabox.php:270 inc/setting_post_add_edit.php:77
#: inc/setting_site.php:47 inc/setting_site.php:59 inc/setting_site.php:72
#: inc/setting_site.php:85 inc/setting_site.php:98
msgid "Hide"
msgstr "Скрыть"
#: inc/setting_admin_general.php:95
msgid "Help"
msgstr "Помощь"
#: inc/setting_admin_general.php:111
msgid "Footer"
msgstr "Футер"
#: inc/setting_admin_general.php:117 inc/setting_loginscreen.php:123
msgid "Footer text"
msgstr "Текст в подвале"
#: inc/setting_admin_general.php:124 inc/setting_plugin_cap.php:61
msgid "Default"
msgstr "По умолчанию"
#: inc/setting_admin_general.php:124
msgid ""
"Thank you for creating with <a href=\"http://wordpress.org/\">WordPress</a>."
msgstr ""
"Спасибо за творчество с <a href=\"http://wordpress.org/\">WordPress</a>."
#: inc/setting_admin_general.php:142 inc/setting_loginscreen.php:111
msgid "CSS file to load"
msgstr "Файл CSS"
#: inc/setting_admin_general.php:154
msgid "Title tag for Admin screen"
msgstr "Заголовок Панели управления"
#: inc/setting_admin_general.php:159
msgid "Remove \"Wordpress\" from the title tag of the Admin screen"
msgstr "Удалить \"Wordpress\" из заголовка Панели управления"
#: inc/setting_admin_general.php:165
msgid "Resizing Admin bar"
msgstr "Размер Верхнего меню"
#: inc/setting_admin_general.php:170
msgid "Don't resize"
msgstr "Не менять размер"
#: inc/setting_appearance_menus.php:39
msgid "Create a new menu"
msgstr "Создать меню"
#: inc/setting_appearance_menus.php:45 inc/setting_appearance_menus.php:59
msgid "This is useful when you want to use only the menus have been created."
msgstr ""
"Может быть полезно, если необходимо использовать только созданные меню."
#: inc/setting_appearance_menus.php:53
msgid "Delete Menu"
msgstr "Удалить меню"
#: inc/setting_dashboard.php:34
msgid "Meta boxes"
msgstr "Метабоксы"
#: inc/setting_dashboard.php:45 inc/setting_manage_metabox.php:50
#: inc/setting_manage_metabox.php:146 inc/setting_manage_metabox.php:250
msgid "Select All"
msgstr "Выбрать всё"
#: inc/setting_dashboard.php:47 inc/setting_manage_metabox.php:56
#: inc/setting_manage_metabox.php:152 inc/setting_manage_metabox.php:256
msgid "Change metabox title to"
msgstr "Изменить заголовок метабокса для"
#: inc/setting_dashboard.php:95 inc/setting_manage_metabox.php:122
#: inc/setting_manage_metabox.php:217 inc/setting_manage_metabox.php:324
#, php-format
msgid "Metaboxes loading for %s"
msgstr "Загрузка метабоксов для %s"
#: inc/setting_dashboard.php:100 inc/setting_manage_metabox.php:127
#: inc/setting_manage_metabox.php:222 inc/setting_manage_metabox.php:329
msgid "Loading&hellip;"
msgstr "Загрузка и помощь"
#: inc/setting_dashboard.php:108
msgid "Other"
msgstr "Другое"
#: inc/setting_dashboard.php:115
msgid "Meta box movement restriction"
msgstr "Ограничение перемещения метабокса"
#: inc/setting_dashboard.php:120
msgid "Prevent selected roles from re-arranging metaboxes"
msgstr "Запрет перемещения метабоксов"
#: inc/setting_default.php:16
msgid "Customize the UI of the management screen for all users."
msgstr "Настройка интерфейса Панели управления для всех пользователей."
#: inc/setting_default.php:17
msgid "Please select the user roles that all settings will apply to."
msgstr "Выберите роли пользователей, к которым необходимо применить настройки."
#: inc/setting_default.php:19
msgid "Please use the Multiple Add-on if you want per role customization."
msgstr "Для разграничения ролей можно воспольоваться плагином "
#: inc/setting_default.php:32 wp-admin-ui-customize.php:2610
msgid "Donate"
msgstr "Благодарность"
#: inc/setting_default.php:33
msgid ""
"Are you happy with this plugin?<br />Japanese law prohibits PayPal "
"donations. <br />Please consider purchasing the Line Break First and End "
"plugin in lieu of a donation."
msgstr ""
"Вам понравился этот плагин?<br />Закон Японии запрещает оплату через PayPal."
"<br />Пожалуйста, сделайте оплату в йенах."
#: inc/setting_default.php:40
msgid "Features"
msgstr "Возможности плагина"
#: inc/setting_default.php:41
msgid ""
"Line Break First and End plugin allows for line breaks when using the visual "
"editor TinyMCE."
msgstr ""
"Плагин \"Line Break First and End\" позволяет ставить разделители в "
"редакторе TinyMCE."
#: inc/setting_default.php:44
msgid "The primary use of donations"
msgstr "Применение пожертвований"
#: inc/setting_default.php:46
msgid "Liquidation of time and value"
msgstr "Ускорение выхода новых версий"
#: inc/setting_default.php:47
msgid "Additional suggestions feature"
msgstr "Добавление новых возможностей"
#: inc/setting_default.php:48
msgid "Maintain motivation"
msgstr "Мотивация к разработке"
#: inc/setting_default.php:49
msgid "Ensure time as the father of Sunday"
msgstr "Благодарность автора"
#: inc/setting_default.php:56
msgid "About plugin"
msgstr "О плагине"
#: inc/setting_default.php:58
msgid "Version checked"
msgstr "Текущая версия"
#: inc/setting_default.php:60
msgid "Plugin's site"
msgstr "Сайт плагина"
#: inc/setting_default.php:61
msgid "Developer's site"
msgstr "Сайт разработчика плагина"
#: inc/setting_default.php:62 wp-admin-ui-customize.php:146
msgid "Support Forums"
msgstr "Форум поддержки"
#: inc/setting_default.php:63
msgid "Reviews"
msgstr "Отзывы"
#: inc/setting_default.php:71 inc/setting_loginscreen.php:36
msgid "Useful plugins"
msgstr "Другие полезные плагины"
#: inc/setting_default.php:74
msgid "Apply setting on a per-role basis."
msgstr "Расширение этого плагина для разграничения ролей."
#: inc/setting_default.php:76
msgid "Easily import/export setting between installations."
msgstr "Расширение этого плагина для импорта и экспорта настроек."
#: inc/setting_default.php:78
msgid "Unified custom management screens for Multisite."
msgstr "Расширение этого плагина для режима «Мультисайт»."
#: inc/setting_default.php:80
msgid ""
"Customize list view columns for posts, pages, custom post types, media "
"library, and other management screens."
msgstr "Изменение колонок в таблицах записей, страниц, медиафайлов."
#: inc/setting_default.php:82
msgid "Create dashboard messages to be displayed for selected user roles."
msgstr "Создание сообщений в Панели управления для выборочных пользователей."
#: inc/setting_default.php:84
msgid ""
"Create custom global variables that can be used with generated template tags "
"or shortcodes."
msgstr ""
"Создание пользовательских глобальных переменных, которые могут быть "
"использованы в шаблонах или шорткодах."
#: inc/setting_default.php:103 wp-admin-ui-customize.php:766
#: wp-admin-ui-customize.php:810
msgid "User Roles"
msgstr "Роли пользователей"
#: inc/setting_default.php:133
msgid "If you have already donated to."
msgstr "Если Вы уже выразили благодарность"
#: inc/setting_default.php:134
msgid ""
"Please enter the 'Donation Delete Key' that was provided on the Line Break "
"First and End download page."
msgstr ""
"Введите ключ благодарности для того, чтобы удалить сообщение с просьбой о "
"материальной поддержке вверху страницы и информацию об авторе внизу страницы."
#: inc/setting_default.php:137
msgid "Donation Delete Key:"
msgstr "Ключ благодарности:"
#: inc/setting_default.php:139
msgid "Submit"
msgstr "Удалить сообщение"
#: inc/setting_default.php:145
msgid "Do you need professional setup and customization?"
msgstr "Необходима профессиональная настройка?"
#: inc/setting_default.php:151
msgid "I provide full service customization for WP Admin UI Customize."
msgstr "Я осуществляю полную настройку плагина WP Admin UI Customize."
#: inc/setting_default.php:152
msgid "Please contact me if you are interested."
msgstr "Если Вам интересно это предложение, свяжитесь со мной!"
#: inc/setting_default.php:154
msgid "Example Customize"
msgstr "Пример настройки"
#: inc/setting_default.php:155
msgid "Contact me"
msgstr "Контакты автора"
#: inc/setting_default.php:180 wp-admin-ui-customize.php:2595
msgid "Thank you for your donation."
msgstr "Спасибо за Вашу помощь."
#: inc/setting_loginscreen.php:16 inc/setting_loginscreen.php:152
msgid "Login Screen Settings"
msgstr "Настройки страницы входа"
#: inc/setting_loginscreen.php:25
msgid ""
"Is not possible to check the login form if you do not log out in the case of "
"MultiSite."
msgstr ""
"Невозможно проверить форму входа пока Вы не вышли из режима «Мультисайт»."
#: inc/setting_loginscreen.php:27
msgid "Show Current Login Screen"
msgstr "Показать страницу входа"
#: inc/setting_loginscreen.php:39
msgid "Flexible plugin for login screen customization."
msgstr "Гибкий плагин для изменения страницы входа"
#: inc/setting_loginscreen.php:51
msgid "Login Form"
msgstr "Форма входа"
#: inc/setting_loginscreen.php:58
msgid "The link after clicking on the logo"
msgstr "Ссылка на логотипе"
#: inc/setting_loginscreen.php:71
msgid "Logo Title"
msgstr "Заголовок логотипа"
#: inc/setting_loginscreen.php:83
msgid "Logo Image path"
msgstr "Логотип"
#: inc/setting_manage_metabox.php:19
msgid ""
"Please update or add a \"post\" and a \"page\" to load the available meta "
"boxes."
msgstr "Обновите или добавьте записи или страницы для загрузки метабоксов."
#: inc/setting_manage_metabox.php:20
msgid "Please enter if you want to change of Metabox label name."
msgstr "Для изменения заголовков метабоксов."
#: inc/setting_manage_metabox.php:54 inc/setting_manage_metabox.php:150
#: inc/setting_manage_metabox.php:254
msgid "Default Open"
msgstr "По умолчанию открыто"
#: inc/setting_manage_metabox.php:74 inc/setting_manage_metabox.php:86
#: inc/setting_manage_metabox.php:169 inc/setting_manage_metabox.php:181
#: inc/setting_manage_metabox.php:272 inc/setting_manage_metabox.php:284
msgid "Show"
msgstr "Показать"
#: inc/setting_manage_metabox.php:82 inc/setting_manage_metabox.php:177
#: inc/setting_manage_metabox.php:280
msgid "Expanded"
msgstr "Развёрнут"
#: inc/setting_manage_metabox.php:83 inc/setting_manage_metabox.php:178
#: inc/setting_manage_metabox.php:281
msgid "Collapsed"
msgstr "Свёрнут"
#: inc/setting_manage_metabox.php:94 inc/setting_manage_metabox.php:189
#: inc/setting_post_add_edit.php:48
msgid ""
"Notice: If hide the Discussion on metabox, comments does not display of Add "
"New Post on apply user role."
msgstr ""
"Если скрыт метабокс «Обсуждения», комментарии не отображаются на странице "
"редактирования записи"
#: inc/setting_manage_metabox.php:96 inc/setting_manage_metabox.php:191
msgid "Please set from here if you want to view the comments on screen."
msgstr "Включите, если необходимо отображать комментарии."
#: inc/setting_plugin_cap.php:18
#, php-format
msgid "You can change the user role %2$s of %1$s settings."
msgstr "Можно изменить настройки для ролей %2$s из %1$s."
#: inc/setting_plugin_cap.php:19
#, php-format
msgid "Please choose the minimum role that can modify %s settings."
msgstr "Выберите минимальную роль, которая может изменять настройки %s."
#: inc/setting_plugin_cap.php:36
#, php-format
msgid "Capability role for the %s"
msgstr "Возможности для %s"
#: inc/setting_post_add_edit.php:34 inc/setting_post_add_edit.php:65
msgid "Add New Post"
msgstr "Новая запись"
#: inc/setting_post_add_edit.php:34
msgid "Add New Page"
msgstr "Новая страница"
#: inc/setting_post_add_edit.php:41
msgid ""
"Allow people to post comments on new articles when hide to discussion of "
"metabox"
msgstr ""
"Разрешить оставлять комментарии на новые статьи при скрытом метабоксе "
"«Обсуждения»"
#: inc/setting_post_add_edit.php:47
msgid "Allow"
msgstr "Разрешить"
#: inc/setting_post_add_edit.php:49
msgid "Please select if you want to display the comments on Site."
msgstr "Выберите, если необходимо отображать комментарии на сайте."
#: inc/setting_post_add_edit.php:50
#, php-format
msgid "However, this will follow the setting of %s."
msgstr "Эти настройки применяются после %s."
#: inc/setting_post_add_edit.php:50
msgid "Default article settings"
msgstr "Удалить настройки статьи"
#: inc/setting_post_add_edit.php:52
#, php-format
msgid "Please select the <strong>%s</strong>"
msgstr "Выберите <strong>%s</strong>"
#: inc/setting_post_add_edit.php:52
msgid "Allow people to post comments on new articles"
msgstr "Разрешить оставлять комментарии на новые статьи"
#: inc/setting_post_add_edit.php:65
msgid "Edit Post"
msgstr "Редактировать запись"
#: inc/setting_post_add_edit.php:72
msgid "Change Permalinks"
msgstr "Кнопка «Постоянные ссылки»"
#: inc/setting_post_add_edit.php:78
msgid "Only appears when you have settings to the default permalink."
msgstr "Видна только когда включены настройки постоянных ссылок."
#: inc/setting_sidemenu.php:19
#, php-format
msgid "New plugin menus will be added to the <strong>%s</strong>."
msgstr "Новые меню были добавлены в <strong>%s</strong>."
#: inc/setting_sidemenu.php:43
msgid "Sepalator"
msgstr "Разделитель"
#: inc/setting_sidemenu.php:54 inc/setting_sidemenu.php:133
msgid "Comments"
msgstr "Коментарии"
#: inc/setting_sidemenu.php:56 inc/setting_sidemenu.php:135
msgid "Appearance"
msgstr "Внешний вид"
#: inc/setting_sidemenu.php:58 inc/setting_sidemenu.php:137
msgid "Plugins"
msgstr "Плагины"
#: inc/setting_sidemenu.php:76 inc/setting_sidemenu.php:148
msgid "Update"
msgstr "Обновить"
#: inc/setting_sidemenu.php:114
msgid "Current menu"
msgstr "Текущее меню"
#: inc/setting_sidemenu.php:216
msgid "Delete all the Current menu"
msgstr "Удалить все пункты меню"
#: inc/setting_site.php:35
msgid "Header Meta"
msgstr "Мета-заголовок"
#: inc/setting_site.php:48 inc/setting_site.php:61 inc/setting_site.php:74
#: inc/setting_site.php:87 inc/setting_site.php:100
msgid "Tag to be output"
msgstr "Тэг"
#: inc/setting_site.php:60
msgid "Please display when using the Windows Live Writer."
msgstr "Включите, если используете Windows Live Writer."
#: inc/setting_site.php:73
msgid "Information of XML-rpc"
msgstr "XML-RPC"
#: inc/setting_site.php:86
msgid "Sitewide feed"
msgstr "Фид"
#: inc/setting_site.php:87
#, php-format
msgid "%1$s %2$s Feed"
msgstr "%1$s %2$s Фидов"
#: inc/setting_site.php:99
msgid "Extra feed"
msgstr "Экстра фид"
#: inc/setting_site.php:100
#, php-format
msgid "%1$s %2$s Comments Feed"
msgstr "%1$s %2$s Комментариев"
#: inc/setting_site.php:124
msgid "Admin Bar"
msgstr "Верхнее меню"
#: inc/setting_site.php:127
msgid "Hide the Admin bar on the front end"
msgstr "Скрыть только во фронтэнде"
#: inc/setting_site.php:127
msgid "Apply WP Admin UI Customize settings on the front end admin bar also"
msgstr "Скрыть везде"
#: wp-admin-ui-customize.php:349
#, php-format
msgid ""
"Authority to apply the setting is not selected. <a href=\"%s\">From here</"
"a>, please select the permissions you want to set."
msgstr ""
"Права для применения настроек не выбраны. Установите права <a href=\"%s"
"\">здесь</a>."
#: wp-admin-ui-customize.php:374
msgid "Apply user roles"
msgstr "Применить для ролей пользователей"
#: wp-admin-ui-customize.php:384
msgid "None"
msgstr "Нет"
#: wp-admin-ui-customize.php:502
#, php-format
msgid "Howdy, %1$s"
msgstr "Привет, %1$s"
#: wp-admin-ui-customize.php:602
msgid "Edit"
msgstr "Редактировать"
#: wp-admin-ui-customize.php:606
msgid "Search"
msgstr "Поиск"
#: wp-admin-ui-customize.php:612
msgid "View"
msgstr "Просмотр"
#: wp-admin-ui-customize.php:759
msgid "Url"
msgstr "Ссылка"
#: wp-admin-ui-customize.php:762 wp-admin-ui-customize.php:807
msgid "Slug"
msgstr "Короткая ссылка"
#: wp-admin-ui-customize.php:777 wp-admin-ui-customize.php:821
#: wp-admin-ui-customize.php:915
msgid "Title"
msgstr "Заголовок"
#: wp-admin-ui-customize.php:784 wp-admin-ui-customize.php:958
msgid "Sub Menus"
msgstr "Вложенные меню"
#: wp-admin-ui-customize.php:827 wp-admin-ui-customize.php:839
#: wp-admin-ui-customize.php:989
msgid "Remove"
msgstr "Удалить"
#: wp-admin-ui-customize.php:879 wp-admin-ui-customize.php:901
msgid "Menu Group"
msgstr "Группа меню"
#: wp-admin-ui-customize.php:899
msgid "Show only on front end."
msgstr "Отобразить только во фронтенде."
#: wp-admin-ui-customize.php:946
msgid "Open link in a new window/tab"
msgstr "Открыть ссылку в новом окне"
#: wp-admin-ui-customize.php:1208
msgid "Left"
msgstr "Влево"
#: wp-admin-ui-customize.php:1208
msgid "Right"
msgstr "Вправо"
#: wp-admin-ui-customize.php:1208
msgid "Front"
msgstr "Фронтенд"
#: wp-admin-ui-customize.php:1747
msgid "http://wordpress.org/"
msgstr "http://wordpress.org/"
#: wp-admin-ui-customize.php:1764
msgid "Powered by WordPress"
msgstr "Сайт работает на WordPress"
#: wp-admin-ui-customize.php:2593
msgid "Settings saved."
msgstr "Настройки сохранены"
#: wp-admin-ui-customize.php:2610
msgid "Please consider making a donation."
msgstr "Пожалуйста, выразите материальную"

View File

@@ -0,0 +1,629 @@
msgid ""
msgstr ""
"Project-Id-Version: WP Admin UI Customize\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-22 12:41+0900\n"
"PO-Revision-Date: 2014-08-22 14:31+0900\n"
"Last-Translator: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
"Language-Team: Chinese Traditional DP.Studio <rwd.com.tw@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-Basepath: ../\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Poedit 1.6.5\n"
"Language: zh_TW\n"
"X-Poedit-Country: TAIWAN\n"
"X-Poedit-SourceCharset: utf-8\n"
"X-Poedit-SearchPath-0: .\n"
#: wp-admin-ui-customize.php:4
msgid "An excellent plugin to customize the management screens."
msgstr "一個優秀的WP管理界面插件。"
#: wp-admin-ui-customize.php:142
#: wp-admin-ui-customize.php:181
#: inc/reset_userrole.php:22
msgid "Reset User Roles"
msgstr "重設用戶角色"
#: wp-admin-ui-customize.php:171
#: inc/reset_userrole.php:56
#: inc/setting_site.php:23
msgid "Site Settings"
msgstr "網站相關設置"
#: wp-admin-ui-customize.php:172
#: inc/reset_userrole.php:57
#: inc/setting_admin_general.php:23
#, php-format
msgid "%1$s %2$s"
msgstr "%1$s%2$s"
#: wp-admin-ui-customize.php:174
#: inc/reset_userrole.php:59
#: inc/setting_admin_bar_menu.php:25
msgid "Admin Bar Menu"
msgstr "管理欄菜單-上方"
#: wp-admin-ui-customize.php:175
#: inc/reset_userrole.php:60
#: inc/setting_sidemenu.php:25
msgid "Side Menu"
msgstr "左側選單制定"
#: wp-admin-ui-customize.php:176
#: inc/reset_userrole.php:61
#: inc/setting_manage_metabox.php:24
msgid "Manage meta box"
msgstr "管理 meta box"
#: wp-admin-ui-customize.php:177
#: inc/reset_userrole.php:62
#: inc/setting_post_add_edit.php:23
msgid "Add New Post and Edit Post Screen Setting"
msgstr "添加/編輯 貼文設定"
#: wp-admin-ui-customize.php:178
#: inc/reset_userrole.php:63
#: inc/setting_appearance_menus.php:22
msgid "Appearance Menus Screen Setting"
msgstr "選單基本設置"
#: wp-admin-ui-customize.php:179
#: inc/reset_userrole.php:64
#: inc/setting_loginscreen.php:34
msgid "Login Screen"
msgstr "前台登錄端口設定"
#: wp-admin-ui-customize.php:180
#: inc/reset_userrole.php:65
#: inc/setting_plugin_cap.php:23
#, php-format
msgid "%1$s of %2$s %3$s"
msgstr "%1$s 的 %2$s%3$s"
#: wp-admin-ui-customize.php:331
#, php-format
msgid "Authority to apply the setting is not selected. <a href=\"%s\">From here</a>, please select the permissions you want to set."
msgstr "管理角色設置沒有被選中。請<a href =“%s\">從這裡</a>選擇要設置的角色群。"
#: wp-admin-ui-customize.php:356
msgid "Apply user roles"
msgstr "角色權限 應用"
#: wp-admin-ui-customize.php:688
#: wp-admin-ui-customize.php:861
msgid "Sub Menus"
msgstr "子選單"
#: wp-admin-ui-customize.php:783
#: wp-admin-ui-customize.php:805
msgid "Menu Group"
msgstr ""
#: wp-admin-ui-customize.php:803
msgid "Show only on front end."
msgstr ""
#: wp-admin-ui-customize.php:823
msgid "If you want edit to name, please edit of translation file(PO)."
msgstr ""
#: wp-admin-ui-customize.php:1023
msgid "Front"
msgstr ""
#: wp-admin-ui-customize.php:2276
#: inc/setting_default.php:187
msgid "Thank you for your donation."
msgstr ""
#: wp-admin-ui-customize.php:2291
msgid "Please consider making a donation."
msgstr ""
#: wp-admin-ui-customize.php:2291
#: inc/setting_default.php:39
msgid "Donate"
msgstr ""
#: inc/list_variables.php:20
#: inc/setting_admin_bar_menu.php:32
#: inc/setting_admin_general.php:132
#: inc/setting_admin_general.php:155
#: inc/setting_loginscreen.php:71
#: inc/setting_loginscreen.php:84
#: inc/setting_loginscreen.php:96
#: inc/setting_loginscreen.php:124
#: inc/setting_loginscreen.php:136
#: inc/setting_sidemenu.php:32
msgid "Shortcodes"
msgstr ""
#: inc/list_variables.php:45
msgid "Blog name of logged in."
msgstr ""
#: inc/list_variables.php:54
msgid "Blog URL of logged in."
msgstr ""
#: inc/list_variables.php:108
#: inc/list_variables.php:115
#: inc/list_variables.php:122
#: inc/list_variables.php:129
msgid "In your case."
msgstr ""
#: inc/reset_userrole.php:30
msgid "Applied user roles"
msgstr ""
#: inc/reset_userrole.php:40
msgid "You want to reset the user roles?"
msgstr ""
#: inc/reset_userrole.php:42
#: inc/setting_admin_bar_menu.php:95
#: inc/setting_admin_general.php:201
#: inc/setting_appearance_menus.php:99
#: inc/setting_dashboard.php:151
#: inc/setting_default.php:132
#: inc/setting_loginscreen.php:160
#: inc/setting_manage_metabox.php:353
#: inc/setting_plugin_cap.php:94
#: inc/setting_post_add_edit.php:109
#: inc/setting_sidemenu.php:241
#: inc/setting_site.php:168
msgid "Reset settings"
msgstr ""
#: inc/reset_userrole.php:49
#: inc/reset_userrole.php:71
msgid "Reset settings of all"
msgstr ""
#: inc/reset_userrole.php:54
msgid "Setting all of the below will be deleted."
msgstr ""
#: inc/reset_userrole.php:69
msgid "Are you sure you want to delete all settings?"
msgstr ""
#: inc/setting_admin_bar_menu.php:26
#: inc/setting_sidemenu.php:26
msgid "Please change the menu by drag and drop."
msgstr ""
#: inc/setting_admin_bar_menu.php:27
#: inc/setting_sidemenu.php:28
msgid "Notice: Please do not place the same multiple menu slug."
msgstr ""
#: inc/setting_admin_bar_menu.php:28
msgid "Can be more than one custom menu."
msgstr ""
#: inc/setting_admin_bar_menu.php:32
#: inc/setting_admin_general.php:132
#: inc/setting_admin_general.php:155
#: inc/setting_loginscreen.php:71
#: inc/setting_loginscreen.php:84
#: inc/setting_loginscreen.php:96
#: inc/setting_loginscreen.php:124
#: inc/setting_loginscreen.php:136
#: inc/setting_sidemenu.php:32
msgid "Available Shortcodes"
msgstr ""
#: inc/setting_admin_bar_menu.php:40
msgid "Sub-menu settings apply to maximum of four levels deep."
msgstr ""
#: inc/setting_admin_bar_menu.php:41
msgid "Admin bar settings documentation page"
msgstr ""
#: inc/setting_admin_bar_menu.php:94
#: inc/setting_admin_general.php:200
#: inc/setting_appearance_menus.php:98
#: inc/setting_dashboard.php:150
#: inc/setting_default.php:131
#: inc/setting_loginscreen.php:159
#: inc/setting_manage_metabox.php:352
#: inc/setting_plugin_cap.php:93
#: inc/setting_post_add_edit.php:108
#: inc/setting_sidemenu.php:240
#: inc/setting_site.php:167
msgid "Reset all settings?"
msgstr ""
#: inc/setting_admin_bar_menu.php:100
#: inc/setting_sidemenu.php:27
#: inc/setting_sidemenu.php:48
msgid "Menu items that can be added"
msgstr ""
#: inc/setting_admin_general.php:41
msgid "Notifications"
msgstr ""
#: inc/setting_admin_general.php:47
msgid "WordPress core update notice"
msgstr ""
#: inc/setting_admin_general.php:53
#: inc/setting_admin_general.php:64
#: inc/setting_admin_general.php:75
msgid "Not notified"
msgstr ""
#: inc/setting_admin_general.php:58
msgid "Plugin update notice"
msgstr ""
#: inc/setting_admin_general.php:69
msgid "Theme update notice"
msgstr ""
#: inc/setting_admin_general.php:85
msgid "Screen Options and Help Tab"
msgstr ""
#: inc/setting_admin_general.php:124
#: inc/setting_loginscreen.php:130
msgid "Footer text"
msgstr ""
#: inc/setting_admin_general.php:149
#: inc/setting_loginscreen.php:118
msgid "CSS file to load"
msgstr ""
#: inc/setting_admin_general.php:161
msgid "Title tag for Admin screen"
msgstr ""
#: inc/setting_admin_general.php:166
msgid "Remove \"Wordpress\" from the title tag of the Admin screen"
msgstr ""
#: inc/setting_admin_general.php:173
msgid "Resizing Admin bar"
msgstr "調整管理欄"
#: inc/setting_admin_general.php:178
msgid "Don't resize"
msgstr ""
#: inc/setting_appearance_menus.php:47
msgid "Create a new menu"
msgstr ""
#: inc/setting_appearance_menus.php:53
#: inc/setting_appearance_menus.php:72
msgid "This is useful when you want to use only the menus have been created."
msgstr ""
#: inc/setting_dashboard.php:41
msgid "Meta boxes"
msgstr ""
#: inc/setting_dashboard.php:50
#: inc/setting_manage_metabox.php:63
#: inc/setting_manage_metabox.php:160
#: inc/setting_manage_metabox.php:265
#, php-format
msgid "Metaboxes loading for %s"
msgstr ""
#: inc/setting_dashboard.php:68
#: inc/setting_manage_metabox.php:84
#: inc/setting_manage_metabox.php:181
#: inc/setting_manage_metabox.php:286
msgid "Change metabox title to"
msgstr ""
#: inc/setting_dashboard.php:117
msgid "Other"
msgstr ""
#: inc/setting_dashboard.php:124
msgid "Meta box movement restriction"
msgstr ""
#: inc/setting_dashboard.php:129
msgid "Prevent selected roles from re-arranging metaboxes"
msgstr ""
#: inc/setting_default.php:23
msgid "Customize the UI of the management screen for all users."
msgstr ""
#: inc/setting_default.php:24
msgid "Please select the user roles that all settings will apply to."
msgstr ""
#: inc/setting_default.php:26
msgid "Please use the Multiple Add-on if you want per role customization."
msgstr ""
#: inc/setting_default.php:40
msgid "Are you happy with this plugin?<br />Japanese law prohibits PayPal donations. <br />Please consider purchasing the Line Break First and End plugin in lieu of a donation."
msgstr ""
#: inc/setting_default.php:47
msgid "Features"
msgstr ""
#: inc/setting_default.php:48
msgid "Line Break First and End plugin allows for line breaks when using the visual editor TinyMCE."
msgstr "這是一個換行插件,,開始 / 結束 在可視化編輯器TinyMCE 代碼中"
#: inc/setting_default.php:51
msgid "The primary use of donations"
msgstr "主要捐款"
#: inc/setting_default.php:53
msgid "Liquidation of time and value"
msgstr "付費的時間標準計算"
#: inc/setting_default.php:54
msgid "Additional suggestions feature"
msgstr "其他推薦的功能"
#: inc/setting_default.php:55
msgid "Maintain motivation"
msgstr "維持動機"
#: inc/setting_default.php:56
msgid "Ensure time as the father of Sunday"
msgstr "星期日為每個禮拜的第一天"
#: inc/setting_default.php:63
msgid "About plugin"
msgstr "關於這個插件"
#: inc/setting_default.php:65
msgid "Version checked"
msgstr "版本檢查"
#: inc/setting_default.php:67
msgid "Plugin's site"
msgstr "插件網站"
#: inc/setting_default.php:68
msgid "Developer's site"
msgstr "開發商"
#: inc/setting_default.php:70
msgid "Reviews"
msgstr "評論"
#: inc/setting_default.php:78
#: inc/setting_loginscreen.php:43
msgid "Useful plugins"
msgstr "有用的插件"
#: inc/setting_default.php:81
msgid "Apply setting on a per-role basis."
msgstr "附加多用戶角色設置。"
#: inc/setting_default.php:83
msgid "Easily import/export setting between installations."
msgstr "導入 / 導出 設置數據。"
#: inc/setting_default.php:85
msgid "Unified custom management screens for Multisite."
msgstr "附加於所有站點的管理界面"
#: inc/setting_default.php:87
msgid "Customize list view columns for posts, pages, custom post types, media library, and other management screens."
msgstr "定制的文章和頁面的列表。自定義文章類型的頁面。您可以選擇要顯示的自定義的項目。"
#: inc/setting_default.php:89
msgid "Create dashboard messages to be displayed for selected user roles."
msgstr "顯示公告在儀表板。顯示不同用戶角色設定。"
#: inc/setting_default.php:91
msgid "Create custom global variables that can be used with generated template tags or shortcodes."
msgstr "該插件允許你添加的選項的設定值。您已經創建了權限設定,除了可以在模板標籤中使用,短信代碼可以在文章的正文中。"
#: inc/setting_default.php:140
msgid "If you have already donated to."
msgstr "如果您已經捐贈"
#: inc/setting_default.php:141
msgid "Please enter the 'Donation Delete Key' that was provided on the Line Break First and End download page."
msgstr "請進入“捐贈刪除鍵”已在“換行開始和結束下載頁面”進行了描述。"
#: inc/setting_default.php:144
msgid "Donation Delete Key:"
msgstr "捐贈刪除鍵"
#: inc/setting_default.php:152
msgid "Do you need professional setup and customization?"
msgstr "必須要自定義?"
#: inc/setting_default.php:158
msgid "I provide full service customization for WP Admin UI Customize."
msgstr "我自定義的管理顯示。"
#: inc/setting_default.php:159
msgid "Please contact me if you are interested."
msgstr "請考慮由我修改,如果這是件好事。"
#: inc/setting_default.php:161
msgid "Example Customize"
msgstr "自定義範例"
#: inc/setting_default.php:162
msgid "Contact me"
msgstr "聯絡我們"
#: inc/setting_loginscreen.php:23
msgid "Login Screen Settings"
msgstr "登錄端口的設置"
#: inc/setting_loginscreen.php:32
msgid "Is not possible to check the login form if you do not log out in the case of MultiSite."
msgstr "如果你不在多站點的情況下登出,請檢查登錄表單。"
#: inc/setting_loginscreen.php:34
msgid "Show Current Login Screen"
msgstr "顯示登陸的畫面"
#: inc/setting_loginscreen.php:46
msgid "Flexible plugin for login screen customization."
msgstr "這個插件是可以靈活的設定登錄畫面"
#: inc/setting_loginscreen.php:58
msgid "Login Form"
msgstr "登入表單"
#: inc/setting_loginscreen.php:65
msgid "The link after clicking on the logo"
msgstr "點擊標誌的連結"
#: inc/setting_loginscreen.php:78
msgid "Logo Title"
msgstr "標誌標題"
#: inc/setting_loginscreen.php:90
msgid "Logo Image path"
msgstr "小網站標圖16X16的網址"
#: inc/setting_manage_metabox.php:25
msgid "Please update or add a \"post\" and a \"page\" to load the available meta boxes."
msgstr "更新 / 增加 一個頁面或文章來加載 meta boxes."
#: inc/setting_manage_metabox.php:26
msgid "Please enter if you want to change of Metabox label name."
msgstr "請輸入您想改變Metabox標籤名稱。"
#: inc/setting_manage_metabox.php:82
#: inc/setting_manage_metabox.php:179
#: inc/setting_manage_metabox.php:284
msgid "Default Open"
msgstr "默認情況下打開"
#: inc/setting_manage_metabox.php:110
#: inc/setting_manage_metabox.php:206
#: inc/setting_manage_metabox.php:310
msgid "Expanded"
msgstr "不減少"
#: inc/setting_manage_metabox.php:111
#: inc/setting_manage_metabox.php:207
#: inc/setting_manage_metabox.php:311
msgid "Collapsed"
msgstr "減少"
#: inc/setting_manage_metabox.php:122
#: inc/setting_manage_metabox.php:218
#: inc/setting_post_add_edit.php:55
msgid "Notice: If hide the Discussion on metabox, comments does not display of Add New Post on apply user role."
msgstr "注意如果隱藏了Discussion描述欄位的meta box此用戶則不顯示內容。"
#: inc/setting_manage_metabox.php:124
#: inc/setting_manage_metabox.php:220
msgid "Please set from here if you want to view the comments on screen."
msgstr "如果您要查看螢幕上的說明,請在這裡設置。"
#: inc/setting_plugin_cap.php:24
#, php-format
msgid "You can change the user role %2$s of %1$s settings."
msgstr "您可以更改用戶角色%2$s 的 %1$s的設置。"
#: inc/setting_plugin_cap.php:25
#, php-format
msgid "Please choose the minimum role that can modify %s settings."
msgstr "請選擇要使用的角色%s"
#: inc/setting_plugin_cap.php:42
#, php-format
msgid "Capability role for the %s"
msgstr "對於角色的 %s 的功能"
#: inc/setting_post_add_edit.php:48
msgid "Allow people to post comments on new articles when hide to discussion of metabox"
msgstr "允許張貼新的文章,評論隱藏"
#: inc/setting_post_add_edit.php:56
msgid "Please select if you want to display the comments on Site."
msgstr "請選擇您希望顯示在網站的意見"
#: inc/setting_post_add_edit.php:57
#, php-format
msgid "However, this will follow the setting of %s."
msgstr "However, this will follow the setting of %s."
#: inc/setting_post_add_edit.php:59
#, php-format
msgid "Please select the <strong>%s</strong>"
msgstr "Please select the %s"
#: inc/setting_post_add_edit.php:85
msgid "Only appears when you have settings to the default permalink."
msgstr "只有當你設置為默認,永久鏈接才會出現。"
#: inc/setting_sidemenu.php:27
#, php-format
msgid "New plugin menus will be added to the <strong>%s</strong>."
msgstr "新的外掛程式菜單將被添加到 <strong>%s</strong>。"
#: inc/setting_sidemenu.php:51
msgid "Sepalator"
msgstr ""
#: inc/setting_sidemenu.php:122
msgid "Current menu"
msgstr ""
#: inc/setting_sidemenu.php:224
msgid "Delete all the Current menu"
msgstr ""
#: inc/setting_site.php:42
msgid "Header Meta"
msgstr ""
#: inc/setting_site.php:55
#: inc/setting_site.php:68
#: inc/setting_site.php:81
#: inc/setting_site.php:94
#: inc/setting_site.php:107
msgid "Tag to be output"
msgstr ""
#: inc/setting_site.php:67
msgid "Please display when using the Windows Live Writer."
msgstr ""
#: inc/setting_site.php:80
msgid "Information of XML-rpc"
msgstr ""
#: inc/setting_site.php:93
msgid "Sitewide feed"
msgstr ""
#: inc/setting_site.php:106
msgid "Extra feed"
msgstr ""
#: inc/setting_site.php:131
msgid "Admin Bar"
msgstr ""
#: inc/setting_site.php:134
msgid "Hide the Admin bar on the front end"
msgstr ""
#: inc/setting_site.php:134
msgid "Apply WP Admin UI Customize settings on the front end admin bar also"
msgstr ""

View File

@@ -0,0 +1,777 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: WP Admin UI Customize\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-10-15 18:40+0900\n"
"PO-Revision-Date: 2014-12-24 18:55+0900\n"
"Last-Translator: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
"Language-Team: CedarPoint <mike@cedarpointconcepts.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-Basepath: ..\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Poedit 2.1.1\n"
"X-Poedit-SearchPath-0: .\n"
#: wp-admin-ui-customize.php:4
msgid "An excellent plugin to customize the WordPress management UI."
msgstr ""
#: inc/list_variables.php:19 inc/setting_admin_bar_menu.php:25
#: inc/setting_admin_general.php:125 inc/setting_admin_general.php:148
#: inc/setting_loginscreen.php:51 inc/setting_loginscreen.php:64
#: inc/setting_loginscreen.php:76 inc/setting_loginscreen.php:103
#: inc/setting_loginscreen.php:115 inc/setting_sidemenu.php:24
msgid "Shortcodes"
msgstr ""
#: inc/list_variables.php:20
msgid "Value"
msgstr ""
#: inc/list_variables.php:44
msgid "Blog name of logged in."
msgstr ""
#: inc/list_variables.php:53
msgid "Blog URL of logged in."
msgstr ""
#: inc/list_variables.php:103 inc/list_variables.php:110
#: inc/list_variables.php:117 inc/list_variables.php:124
msgid "In your case."
msgstr ""
#: inc/list_variables.php:130 inc/setting_manage_metabox.php:38
#: inc/setting_manage_metabox.php:123
msgid "Posts"
msgstr ""
#: inc/list_variables.php:131
msgid "Current Post Type Name"
msgstr ""
#: inc/list_variables.php:131 inc/setting_manage_metabox.php:135
#: inc/setting_manage_metabox.php:219
msgid "Pages"
msgstr ""
#: inc/list_variables.php:131
msgid "Categories"
msgstr ""
#: inc/list_variables.php:131
msgid "Tags"
msgstr ""
#: inc/list_variables.php:131
msgid "Custom Post Type"
msgstr ""
#: inc/reset_userrole.php:15 wp-admin-ui-customize.php:188
msgid "Reset Settings"
msgstr ""
#: inc/reset_userrole.php:23
msgid "Applied user roles"
msgstr ""
#: inc/reset_userrole.php:33 inc/setting_admin_bar_menu.php:87
#: inc/setting_admin_general.php:191 inc/setting_appearance_menus.php:81
#: inc/setting_dashboard.php:142 inc/setting_default.php:94
#: inc/setting_loginscreen.php:138 inc/setting_manage_metabox.php:354
#: inc/setting_plugin_cap.php:82 inc/setting_post_add_edit.php:101
#: inc/setting_sidemenu.php:237 inc/setting_site.php:160
#, php-format
msgid "Reset the %s?"
msgstr ""
#: inc/reset_userrole.php:33 inc/setting_default.php:94
msgid "User Roles Settings"
msgstr ""
#: inc/reset_userrole.php:35
msgid "Reset User Roles Settings"
msgstr ""
#: inc/reset_userrole.php:42 inc/reset_userrole.php:64
msgid "Reset all settings"
msgstr ""
#: inc/reset_userrole.php:47
msgid "All settings below will be deleted."
msgstr ""
#: inc/reset_userrole.php:49 wp-admin-ui-customize.php:178
#: wp-admin-ui-customize.php:1285
msgid "Frontend"
msgstr ""
#: inc/reset_userrole.php:50 inc/setting_admin_general.php:16
#: inc/setting_admin_general.php:191
#, php-format
msgid "%1$s %2$s"
msgstr ""
#: inc/reset_userrole.php:50 inc/setting_admin_general.php:16
#: inc/setting_admin_general.php:135 inc/setting_admin_general.php:191
#: inc/setting_loginscreen.php:90 inc/setting_site.php:117
#: wp-admin-ui-customize.php:179
msgid "General"
msgstr ""
#: inc/reset_userrole.php:50 inc/setting_admin_bar_menu.php:87
#: inc/setting_admin_general.php:16 inc/setting_admin_general.php:191
#: inc/setting_dashboard.php:16 inc/setting_dashboard.php:142
#: inc/setting_manage_metabox.php:354 inc/setting_plugin_cap.php:82
#: inc/setting_sidemenu.php:237 wp-admin-ui-customize.php:147
msgid "Settings"
msgstr ""
#: inc/reset_userrole.php:51 inc/setting_dashboard.php:16
#: inc/setting_dashboard.php:96 inc/setting_dashboard.php:142
#: wp-admin-ui-customize.php:180 wp-admin-ui-customize.php:505
msgid "Dashboard"
msgstr ""
#: inc/reset_userrole.php:52 inc/setting_admin_bar_menu.php:18
#: inc/setting_admin_bar_menu.php:87 inc/setting_admin_general.php:165
#: inc/setting_site.php:124 wp-admin-ui-customize.php:181
msgid "Admin bar"
msgstr ""
#: inc/reset_userrole.php:53 inc/setting_sidemenu.php:17
#: inc/setting_sidemenu.php:237 wp-admin-ui-customize.php:182
msgid "Sidebar"
msgstr ""
#: inc/reset_userrole.php:54 inc/setting_dashboard.php:34
#: wp-admin-ui-customize.php:183
msgid "Meta boxes"
msgstr ""
#: inc/reset_userrole.php:55 wp-admin-ui-customize.php:184
msgid "Posts and Pages"
msgstr ""
#: inc/reset_userrole.php:56 inc/setting_appearance_menus.php:14
#: inc/setting_appearance_menus.php:81 wp-admin-ui-customize.php:185
msgid "Appearance Menus"
msgstr ""
#: inc/reset_userrole.php:57 inc/setting_loginscreen.php:16
#: inc/setting_loginscreen.php:38 inc/setting_loginscreen.php:138
#: wp-admin-ui-customize.php:186
msgid "Login Form"
msgstr ""
#: inc/reset_userrole.php:58 inc/setting_plugin_cap.php:17
#: inc/setting_plugin_cap.php:82 wp-admin-ui-customize.php:187
#, php-format
msgid "%1$s of %2$s %3$s"
msgstr ""
#: inc/reset_userrole.php:58 inc/setting_plugin_cap.php:17
#: inc/setting_plugin_cap.php:82 wp-admin-ui-customize.php:187
msgid "Change"
msgstr ""
#: inc/reset_userrole.php:58 inc/setting_plugin_cap.php:17
#: inc/setting_plugin_cap.php:82 wp-admin-ui-customize.php:187
msgid "Plugin"
msgstr ""
#: inc/reset_userrole.php:58 inc/setting_plugin_cap.php:17
#: inc/setting_plugin_cap.php:18 inc/setting_plugin_cap.php:43
#: inc/setting_plugin_cap.php:82 wp-admin-ui-customize.php:187
msgid "Capabilities"
msgstr ""
#: inc/reset_userrole.php:62
msgid "Are you sure you want to delete all settings?"
msgstr ""
#: inc/setting_admin_bar_menu.php:19 inc/setting_sidemenu.php:18
msgid "Drag menu items to edit and reorder menus."
msgstr ""
#: inc/setting_admin_bar_menu.php:20 inc/setting_sidemenu.php:20
msgid ""
"Note: Using the same menu item multiple times could cause unexpected "
"behavior."
msgstr ""
#: inc/setting_admin_bar_menu.php:21
msgid "You can use multiple custom menus."
msgstr ""
#: inc/setting_admin_bar_menu.php:25 inc/setting_admin_general.php:125
#: inc/setting_admin_general.php:148 inc/setting_loginscreen.php:51
#: inc/setting_loginscreen.php:64 inc/setting_loginscreen.php:76
#: inc/setting_loginscreen.php:103 inc/setting_loginscreen.php:115
#: inc/setting_sidemenu.php:24
msgid "Available Shortcodes"
msgstr ""
#: inc/setting_admin_bar_menu.php:33
msgid "Sub menus can be a maximum of four levels deep."
msgstr ""
#: inc/setting_admin_bar_menu.php:34
msgid "Additional documentation"
msgstr ""
#: inc/setting_admin_bar_menu.php:48 inc/setting_admin_bar_menu.php:102
#: inc/setting_admin_bar_menu.php:118 inc/setting_appearance_menus.php:32
msgid "Menus"
msgstr ""
#: inc/setting_admin_bar_menu.php:83 inc/setting_admin_general.php:187
#: inc/setting_appearance_menus.php:77 inc/setting_dashboard.php:138
#: inc/setting_default.php:90 inc/setting_loginscreen.php:134
#: inc/setting_manage_metabox.php:350 inc/setting_plugin_cap.php:78
#: inc/setting_post_add_edit.php:97 inc/setting_sidemenu.php:233
#: inc/setting_site.php:156
msgid "Save"
msgstr ""
#: inc/setting_admin_bar_menu.php:88 inc/setting_admin_general.php:192
#: inc/setting_appearance_menus.php:82 inc/setting_dashboard.php:143
#: inc/setting_default.php:95 inc/setting_loginscreen.php:139
#: inc/setting_manage_metabox.php:355 inc/setting_plugin_cap.php:83
#: inc/setting_post_add_edit.php:102 inc/setting_sidemenu.php:238
#: inc/setting_site.php:161
msgid "Reset settings"
msgstr ""
#: inc/setting_admin_bar_menu.php:93 inc/setting_sidemenu.php:19
#: inc/setting_sidemenu.php:40
msgid "Available menu items"
msgstr ""
#: inc/setting_admin_bar_menu.php:102
msgid "Custom"
msgstr ""
#: inc/setting_admin_general.php:34
msgid "Notifications"
msgstr ""
#: inc/setting_admin_general.php:40
msgid "WordPress core updates"
msgstr ""
#: inc/setting_admin_general.php:46 inc/setting_admin_general.php:57
#: inc/setting_admin_general.php:68
msgid "Hide notifications"
msgstr ""
#: inc/setting_admin_general.php:51
msgid "Plugin updates"
msgstr ""
#: inc/setting_admin_general.php:62
msgid "Theme updates"
msgstr ""
#: inc/setting_admin_general.php:78
msgid "Screen Options and Help Tab"
msgstr ""
#: inc/setting_admin_general.php:84
msgid "Screen Options"
msgstr ""
#: inc/setting_admin_general.php:90 inc/setting_admin_general.php:101
#: inc/setting_appearance_menus.php:44 inc/setting_appearance_menus.php:58
#: inc/setting_dashboard.php:59 inc/setting_dashboard.php:74
#: inc/setting_manage_metabox.php:72 inc/setting_manage_metabox.php:168
#: inc/setting_manage_metabox.php:272 inc/setting_post_add_edit.php:77
#: inc/setting_site.php:47 inc/setting_site.php:59 inc/setting_site.php:72
#: inc/setting_site.php:85 inc/setting_site.php:98
msgid "Hide"
msgstr ""
#: inc/setting_admin_general.php:95
msgid "Help"
msgstr ""
#: inc/setting_admin_general.php:111
msgid "Footer"
msgstr ""
#: inc/setting_admin_general.php:117 inc/setting_loginscreen.php:109
msgid "Footer text"
msgstr ""
#: inc/setting_admin_general.php:124 inc/setting_plugin_cap.php:61
msgid "Default"
msgstr ""
#: inc/setting_admin_general.php:124
#, php-format
msgid "Thank you for creating with <a href=\"%s\">WordPress</a>."
msgstr ""
#: inc/setting_admin_general.php:142 inc/setting_loginscreen.php:97
msgid "CSS file to load"
msgstr ""
#: inc/setting_admin_general.php:154
msgid "Admin screen"
msgstr ""
#: inc/setting_admin_general.php:159
msgid "Remove \"Wordpress\" from title tag"
msgstr ""
#: inc/setting_admin_general.php:170
msgid "Disable resizing"
msgstr ""
#: inc/setting_appearance_menus.php:39
msgid "Create a new menu"
msgstr ""
#: inc/setting_appearance_menus.php:45 inc/setting_appearance_menus.php:59
msgid ""
"This is useful when you want to use only the menus that have already been "
"created."
msgstr ""
#: inc/setting_appearance_menus.php:53
msgid "Delete Menu"
msgstr ""
#: inc/setting_dashboard.php:45 inc/setting_manage_metabox.php:50
#: inc/setting_manage_metabox.php:147 inc/setting_manage_metabox.php:252
msgid "Select All"
msgstr ""
#: inc/setting_dashboard.php:47 inc/setting_manage_metabox.php:56
#: inc/setting_manage_metabox.php:153 inc/setting_manage_metabox.php:258
msgid "Update meta box title"
msgstr ""
#: inc/setting_dashboard.php:96 inc/setting_manage_metabox.php:123
#: inc/setting_manage_metabox.php:219 inc/setting_manage_metabox.php:327
#, php-format
msgid "Refresh meta boxes for %s"
msgstr ""
#: inc/setting_dashboard.php:101 inc/setting_manage_metabox.php:128
#: inc/setting_manage_metabox.php:224 inc/setting_manage_metabox.php:332
msgid "Loading&hellip;"
msgstr ""
#: inc/setting_dashboard.php:109
msgid "Other"
msgstr ""
#: inc/setting_dashboard.php:116
msgid "Meta box movement"
msgstr ""
#: inc/setting_dashboard.php:121
msgid "Prevent selected roles from re-arrange meta boxes"
msgstr ""
#: inc/setting_default.php:17
msgid ""
"Thank you for using WP Admin UI Customize. But sorry this plugin is stopped "
"development and instead I developing to new plugin."
msgstr ""
#: inc/setting_default.php:20
msgid ""
"\n"
"WP Admin UI Customize allows the management UI for different user roles to "
"be customized."
msgstr ""
#: inc/setting_default.php:22
msgid "Select the user roles to customize below."
msgstr ""
#: inc/setting_default.php:32
msgid "About plugin"
msgstr ""
#: inc/setting_default.php:34
msgid "Tested with WordPress versions"
msgstr ""
#: inc/setting_default.php:36
msgid "Plugin site"
msgstr ""
#: inc/setting_default.php:37
msgid "Developer site"
msgstr ""
#: inc/setting_default.php:38 wp-admin-ui-customize.php:148
msgid "Support Forums"
msgstr ""
#: inc/setting_default.php:39
msgid "Reviews"
msgstr ""
#: inc/setting_default.php:47
msgid "Useful plugins"
msgstr ""
#: inc/setting_default.php:50
msgid ""
"Customize list view columns for posts, pages, custom post types, media "
"library, and other management screens."
msgstr ""
#: inc/setting_default.php:52
msgid "Create dashboard messages to be displayed for selected user roles."
msgstr ""
#: inc/setting_default.php:54
msgid ""
"Create custom global variables that can be used with generated template tags "
"or shortcodes."
msgstr ""
#: inc/setting_default.php:73 wp-admin-ui-customize.php:355
#: wp-admin-ui-customize.php:784 wp-admin-ui-customize.php:828
msgid "User Roles"
msgstr ""
#: inc/setting_default.php:105
msgid "Do you need professional setup and customization?"
msgstr ""
#: inc/setting_default.php:111
msgid "I provide full service customization for WP Admin UI Customize."
msgstr ""
#: inc/setting_default.php:112
msgid "Please contact me if you are interested."
msgstr ""
#: inc/setting_default.php:114
msgid "Example Customize"
msgstr ""
#: inc/setting_default.php:115
msgid "Contact me"
msgstr ""
#: inc/setting_loginscreen.php:25
msgid ""
"Is not possible to check the login form if you do not log out in the case of "
"MultiSite."
msgstr ""
#: inc/setting_loginscreen.php:27
msgid "Login Screen"
msgstr ""
#: inc/setting_loginscreen.php:27
msgid "Show Current Login Screen"
msgstr ""
#: inc/setting_loginscreen.php:45
msgid "Logo URL"
msgstr ""
#: inc/setting_loginscreen.php:58
msgid "Logo Title"
msgstr ""
#: inc/setting_loginscreen.php:70
msgid "Logo Image URL"
msgstr ""
#: inc/setting_manage_metabox.php:18 inc/setting_manage_metabox.php:354
msgid "Management of meta boxes"
msgstr ""
#: inc/setting_manage_metabox.php:19
msgid ""
"Ensure at least one post and page is present and then refresh to display the "
"available meta boxes."
msgstr ""
#: inc/setting_manage_metabox.php:20
msgid "It is also possible to change the meta box display name."
msgstr ""
#: inc/setting_manage_metabox.php:54 inc/setting_manage_metabox.php:151
#: inc/setting_manage_metabox.php:256
msgid "Default Open"
msgstr ""
#: inc/setting_manage_metabox.php:74 inc/setting_manage_metabox.php:86
#: inc/setting_manage_metabox.php:170 inc/setting_manage_metabox.php:182
#: inc/setting_manage_metabox.php:274 inc/setting_manage_metabox.php:286
msgid "Show"
msgstr ""
#: inc/setting_manage_metabox.php:82 inc/setting_manage_metabox.php:178
#: inc/setting_manage_metabox.php:282
msgid "Expanded"
msgstr ""
#: inc/setting_manage_metabox.php:83 inc/setting_manage_metabox.php:179
#: inc/setting_manage_metabox.php:283
msgid "Collapsed"
msgstr ""
#: inc/setting_manage_metabox.php:94 inc/setting_manage_metabox.php:190
#: inc/setting_post_add_edit.php:48
msgid ""
"If the discussion meta box is hidden comments will not be displayed on new "
"posts for the selected role."
msgstr ""
#: inc/setting_manage_metabox.php:96 inc/setting_manage_metabox.php:192
msgid "Change this setting to allow comments on new posts"
msgstr ""
#: inc/setting_plugin_cap.php:18
#, php-format
msgid "You can change the user role %2$s of %1$s settings."
msgstr ""
#: inc/setting_plugin_cap.php:19
#, php-format
msgid "Select the capability required to modify %s settings."
msgstr ""
#: inc/setting_plugin_cap.php:36
#, php-format
msgid "Capability required to modify %s settings"
msgstr ""
#: inc/setting_post_add_edit.php:16 inc/setting_post_add_edit.php:101
msgid "Add New Post and Edit Post Screen Setting"
msgstr ""
#: inc/setting_post_add_edit.php:34 inc/setting_post_add_edit.php:65
msgid "Add New Post"
msgstr ""
#: inc/setting_post_add_edit.php:34
msgid "Add New Page"
msgstr ""
#: inc/setting_post_add_edit.php:41
msgid "Allow comments if discussion meta box is hidden"
msgstr ""
#: inc/setting_post_add_edit.php:47
msgid "Allow"
msgstr ""
#: inc/setting_post_add_edit.php:49
msgid "Check 'Allow' to allow comments on new posts."
msgstr ""
#: inc/setting_post_add_edit.php:50
#, php-format
msgid "The %s in WordPress will override this setting."
msgstr ""
#: inc/setting_post_add_edit.php:50
msgid "Default article settings"
msgstr ""
#: inc/setting_post_add_edit.php:52
#, php-format
msgid "Please select the <strong>%s</strong>"
msgstr ""
#: inc/setting_post_add_edit.php:52
msgid "Allow people to post comments on new articles"
msgstr ""
#: inc/setting_post_add_edit.php:65
msgid "Edit Post"
msgstr ""
#: inc/setting_post_add_edit.php:72
msgid "Change Permalinks"
msgstr ""
#: inc/setting_post_add_edit.php:78
msgid "Only appears when the permalinks are set to the default setting."
msgstr ""
#: inc/setting_sidemenu.php:19
#, php-format
msgid "New plugin menus will be added to the <strong>%s</strong>."
msgstr ""
#: inc/setting_sidemenu.php:43
msgid "Sepalator"
msgstr ""
#: inc/setting_sidemenu.php:54 inc/setting_sidemenu.php:133
msgid "Comments"
msgstr ""
#: inc/setting_sidemenu.php:56 inc/setting_sidemenu.php:135
msgid "Appearance"
msgstr ""
#: inc/setting_sidemenu.php:58 inc/setting_sidemenu.php:137
msgid "Plugins"
msgstr ""
#: inc/setting_sidemenu.php:76 inc/setting_sidemenu.php:148
msgid "Update"
msgstr ""
#: inc/setting_sidemenu.php:114
msgid "Current menu"
msgstr ""
#: inc/setting_sidemenu.php:221
msgid "Remove all items from the current menu"
msgstr ""
#: inc/setting_site.php:16 inc/setting_site.php:160
msgid "Site Settings"
msgstr ""
#: inc/setting_site.php:35
msgid "Header Meta"
msgstr ""
#: inc/setting_site.php:48 inc/setting_site.php:61 inc/setting_site.php:74
#: inc/setting_site.php:87 inc/setting_site.php:100
msgid "Tag"
msgstr ""
#: inc/setting_site.php:60
msgid "Required if you are using Windows Live Writer."
msgstr ""
#: inc/setting_site.php:73
msgid "Required if you are using pingbacks."
msgstr ""
#: inc/setting_site.php:86
msgid "Adds RSS feed links to the HTML &lt;head&gt;"
msgstr ""
#: inc/setting_site.php:87
#, php-format
msgid "%1$s %2$s Feed"
msgstr ""
#: inc/setting_site.php:99
msgid "Adds RSS feed links for other feeds such as category feeds"
msgstr ""
#: inc/setting_site.php:100
#, php-format
msgid "%1$s %2$s Comments Feed"
msgstr ""
#: inc/setting_site.php:127
msgid "Hide admin bar on the front end"
msgstr ""
#: inc/setting_site.php:127
msgid "Apply WP Admin UI Customize settings to the front end admin bar"
msgstr ""
#: wp-admin-ui-customize.php:149
msgid "Reset User Roles"
msgstr ""
#: wp-admin-ui-customize.php:183
msgid "Management of Meta boxes"
msgstr ""
#: wp-admin-ui-customize.php:330
#, php-format
msgid ""
"You must <a href=\"%s\">select a user role</a> before settings can be "
"applied."
msgstr ""
#: wp-admin-ui-customize.php:365
msgid "None"
msgstr ""
#: wp-admin-ui-customize.php:509
#, php-format
msgid "Howdy, %1$s"
msgstr ""
#: wp-admin-ui-customize.php:609
msgid "Edit"
msgstr ""
#: wp-admin-ui-customize.php:613
msgid "Search"
msgstr ""
#: wp-admin-ui-customize.php:619
msgid "View"
msgstr ""
#: wp-admin-ui-customize.php:777
msgid "Url"
msgstr ""
#: wp-admin-ui-customize.php:780 wp-admin-ui-customize.php:825
msgid "Slug"
msgstr ""
#: wp-admin-ui-customize.php:795 wp-admin-ui-customize.php:839
#: wp-admin-ui-customize.php:942
msgid "Title"
msgstr ""
#: wp-admin-ui-customize.php:802 wp-admin-ui-customize.php:1018
msgid "Sub Menus"
msgstr ""
#: wp-admin-ui-customize.php:845 wp-admin-ui-customize.php:857
#: wp-admin-ui-customize.php:1049
msgid "Remove"
msgstr ""
#: wp-admin-ui-customize.php:906 wp-admin-ui-customize.php:928
msgid "Menu Group"
msgstr ""
#: wp-admin-ui-customize.php:926
msgid "Show only on front end."
msgstr ""
#: wp-admin-ui-customize.php:1006
msgid "Open link in a new tab"
msgstr ""
#: wp-admin-ui-customize.php:1285
msgid "Left"
msgstr ""
#: wp-admin-ui-customize.php:1285
msgid "Right"
msgstr ""
#: wp-admin-ui-customize.php:1836
msgid "http://wordpress.org/"
msgstr ""
#: wp-admin-ui-customize.php:1853
msgid "Powered by WordPress"
msgstr ""
#: wp-admin-ui-customize.php:2739
msgid "Settings saved."
msgstr ""

View File

@@ -0,0 +1,330 @@
=== WP Admin UI Customize ===
Contributors: gqevu6bsiz
Donate link: http://gqevu6bsiz.chicappa.jp/please-donation/
Tags: admin, post, posts, page, option, sitemenu, menu, custom, customize, dashboard, admin_bar, multisite, network, metabox
Requires at least: 4.2
Tested up to: 4.9
Stable tag: 1.5.13
License: GPL2
Customize the management screen UI.
== Description ==
* Dashboard
* Display options tab
* Output-meta site
* Admin bar (Toolbar)
* Admin menu (Side menu)
* Management of meta boxes
* Login screen
* Other features.
These to Customization is possible.
== Installation ==
1. Upload the entire wp-admin-ui-customize folder to the /wp-content/plugins/ directory.
2. Activate the plugin through the 'Plugins' menu in WordPress.
3. You will find 'WP Admin UI Customize' menu in your WordPress admin panel.
== Frequently Asked Questions ==
= A question that someone might have =
= What about foo bar? =
== Screenshots ==
1. Set the user role apply
2. Site Settings
3. Admin Screen Settings
4. Dashboard Settings
5. Admin Bar Menu Settings
6. Admin Menu(side menu) Settings
7. Metabox Settings
8. Post/Page Settings
9. Appearance Menu Settings
10. Login Screen Settings
11. Plugin Capabilities Settings
== Changelog ==
= 1.5.13 2022-11-04 =
* Security updated: Some values escape.
= 1.5.12 =
* Added: Filter to menu_widget of admin bar.
* Changed: update_option to not auto load.
= 1.5.11 =
* Added: Some filters/actions.
* Fixed: Show icon sidebar/admin bar customize settings.
= 1.5.10 =
* Changed: More labels and texts.
* Removed: Donate message.
= 1.5.9 =
* Fixed: Items panel expand on Sidemenus and Admin bar menus.
= 1.5.8 =
* Fixed: Tweak CSS.
= 1.5.7 =
* Updated: Change the text domain to wp-admin-ui-customize from wauc.
= 1.5.6 =
* Fixed: Empty global values to return.
* Fixed: Check the sidemenus slug with htmlspecialchars_decode().
= 1.5.5 =
* Fixed: Menu items can not expand with Google Chrome.
= 1.5.4 =
* Fixed: Empty metaboxes load.
= 1.5.3 =
* Updated: Organize the Html and CSS and Javascript.
* Updated: Remove can items when before update sidemenu setting.
= 1.5.2.8.1 =
* Fixed: Do not working of Sortable of jQuery 1.11.4.
* Fixed: Tweak CSS.
* Add Language: Add language for Russian.
= 1.5.2.8 =
* Enhancement: Loading the Meta boxes.
= 1.5.2.7 =
* Fixed: URL escape to add_query_arg / remove_query_arg.
* Supported: Compatible to [Polylang](https://wordpress.org/plugins/polylang/).
= 1.5.2.6 =
* Changed: Change the priority to manage meta boxes.
* Changed: Show the Network menus on Admin Bar Settings.
* Changed: Change the default capability on settings.
* Fixed: Multiple other plugins settings on the Admin Bar Menu.
* Fixed: Orders post type to show error on Woocommerce.
* Fixed: Select all check to settings on manage meta boxes.
* Fixed: Text to Create menu on the Appearance Menus.
* Fixed: Change the capability to load to the meta boxe.
= 1.5.2.5 =
* Fixed: Can be menu to parent menu of side menu settings.
= 1.5.2.4 =
* Fixed: How to get the current user role.
= 1.5.2.3 =
* Fixed: Priority change of loading meta boxes on Dashboard.
* Fixed: Customize of Appearance.
* Added: Shortcode to order number count show of WooCommerce.
* Added: Add View Post menu of Admin bar settings.
* Added: Shortcode to Current post type name.
* Support: Compatible to Post Edit Toolbar.
= 1.5.2.2 =
* Updated: Remove the specific slug of child menu of Side menus.
= 1.5.2.1 =
* Updated: Metaboxes on Dashboard is latest.
* Updated: Translation for zh_TW.
= 1.5.2 =
* Added: Translation for zh-TW.
* Updated: Change how to loading the metaboxes.
= 1.5.1 =
* Added: Search box settings on the Admin Bar Settings.
= 1.5 =
* Fixed: Strip html tag from the title of Side menu settings.
* Fixed: Update notification on the Front-end.
* Added: Settings default show of Metaboxes manage.
* Added: Possible to settings children-free menu of Side menu settings.
= 1.4.4.2 =
* Fixed: Timing change of metabox load.
= 1.4.4.1 =
* Fixed: Error show of not core update notice settings.
* Fixed: Submit metabox is setting of custom post type of Manager Metabox.
= 1.4.4 =
* Fixed: Settings of Dashboard.
* Added: Write link to the document.
* Added: Delete settings feature of All.
* Added: setting to resize the feature.
= 1.4.3.3 =
* Fixed: Data save way.
= 1.4.3.2 =
* Fixed: Post edit ID is change on Admin Bar.
= 1.4.3.1 =
* Fixed: CSS include miss for Admin bar.
= 1.4.3 =
* Updated: Compatible to 3.8.
* Updated: Existence check of Link Manager.
* Updated: Dashboard metaboxes settings.
* Updated: Screen shots.
* Added: Working capability change to possible.
= 1.4.2 =
* Added: Compatible to Admin Bar on BuddyPress.
* Fixed: Separator settings on Sidemenu settings.
= 1.4.1.2 =
* Fixed: Can not dropped on Admin Bar settings.
= 1.4.1.1 =
* Fixed: Svn upload miss.
= 1.4.1 =
* Fixed: Show front item on Admin bar settings.
* Updated: Get the user role if in Multisite.
* Updated: Four levels of sub menu settings on Admin Bar settings.
* Added: Group settings on Admin Bar settings.
* Fixed: Error avoid as much max_input_vars of PHP on Admin Bar settings.
* Updated: Compatible to Admin theme mp6.
= 1.4 =
* Removed: Remove meta box feature.
* Added: Manage to meta boxes.
* Updated: Screenshots.
= 1.3.9.3 beta1 =
* Added: Change the Label name for metaboxes.
* Fixed bug: Remove tabs.
* Added: Avatar on Admin bar.
* Added: Edit link on Admin bar.
= 1.3.9.2 =
* Change mechanism : Update timing change of settings data.
= 1.3.9.1 =
* Fixed bug : Regist metaboxes for remove metaboxes.
= 1.3.9 =
* Added: Remove metaboxes on Custom post types.
* Change mechanism : Registration method of metabox.
= 1.3.8.2 =
* Added to expansion of Admin bar settings (new window).
* Update: Translate.
= 1.3.8.1 =
* Change mechanism : multiple form tag to error on Admin bar settings.
* Supported compatible to 3.6.
* Added to comments show on hide to discussion of metabox.
= 1.3.8 =
* Fixed bug : Sortables settings of Admin bar settings and Side menu settings.
* Fixed bug : Get the directory URL on use SSL.
* Modified the HTML of some settings screen.
= 1.3.7.1 =
* Fixed : Translate.
* Fixed : Misspelling.
= 1.3.7 =
* Added some filters.
* Modified the HTML of some settings screen.
* Changed some initial values of stored in database.
* Added a confirmation of Nonce field.
= 1.3.6 =
* Added the User roles reset.
* Show the User role to Sidemenu.
* Settings of empty when Sidemenu and Admin Bar to change worked.
* Fixed bug : Thumbnail of appearance menu.
= 1.3.5.2 =
* Added the use of variables in the footer text.
= 1.3.5.1 =
* Fixed bug : Get user role group.
= 1.3.5 =
* Changed the action timing of the side menu apply.
* Fixed bug : Can not be acquired rights group.
= 1.3.4 =
* Only administrator has to perform of the Meta boxes read.
= 1.3.3-beta =
* Apply to admin bar on the front end also.
* Edited the translation files.
* Updated the Admin Bar.
= 1.3.3 =
* Fixed bug : Error when deleting plugins and themes.
= 1.3.2 =
* Added meta box other than the default.
= 1.3.1 =
* Added some variables.
* Fixed bug : Error to does not exist sub menu in the side menu settings.
* WordPress 3.6 compatibility
= 1.3 =
* Came to be able to use the various variables.
* Removed the part menu from the Admin bar.
= 1.2.3 =
* Remove the "Wordpress" from the title tag of the Admin screen.
* Added a preview of the logo image of the login screen.
* Added a preview of the logo image of the login screen.
= 1.2.2.2 =
* Fix admin bar menu used the tags in the title.
* Associate add_action to the function of some.
* Movement restriction meta box for Dashboard.
= 1.2.2.1 =
I've added about donation.
= 1.2.2 =
Be able to changed more for the WP admin bar.
= 1.2.1 =
fixed because there was a mistake in the notation.
Changed the layout.
Priority of the side menu, and how to save slug was changed.
= 1.2 =
was be able to hide the menu add, and the delete menu, and the change permalink.
= 1.1.3 =
I fixed bug the remove metabox excerpt.
I added a plug-in information.
= 1.1.2 =
I fixed bug the admin bar update.
= 1.1.1 =
I fixed bug the core update.
= 1.1 =
Possible to customize is the wp_admin_bar.
will check whether the authority has been set.
= 1.0.1 =
bug that did not contain the separator line to the initial value of the side menu.
= 1.0 =
This is the initial release.
== Upgrade Notice ==
= 1.0 =
== 日本語でのご説明 ==
このプラグインは、管理画面UIのカスタマイズをするプラグインです。
「ダッシュボード」「オプションタブ」「サイトのメタタグ管理」「管理バー」「管理メニュー」「メタボックス」「ログイン画面」
これらのカスタマイズを、このプラグインひとつで出来ます。

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

View File

@@ -0,0 +1,198 @@
/* layout */
#poststuff #post-body.columns-2 {
margin-right: 400px;
}
#post-body.columns-2 #postbox-container-1 {
margin-right: -400px;
width: 380px;
}
#wauc_setting_admin_bar_menu #poststuff #post-body.columns-2 {
margin-right: 50%;
}
#wauc_setting_admin_bar_menu #post-body.columns-2 #postbox-container-1 {
margin-right: -100%;
width: 98%;
}
#wauc_setting_sidemenu #poststuff #post-body {
margin-right: auto;
margin-left: 500px;
}
#wauc_setting_sidemenu #poststuff #post-body #postbox-container-1 {
margin-right: auto;
width: 100%;
}
#wauc_setting_sidemenu #poststuff #post-body #postbox-container-2 {
width: 480px;
margin-left: -500px
}
.postbox-container .postbox .hndle {
cursor: default;
}
input.regular-text {
width: 80%;
}
#list_variables {
display: none;
}
.list_variables_wrap {
padding: 16px 0 0 0;
}
/* sidemenu */
#wauc_setting_sidemenu .postbox .inside {
padding: 10px;
}
#wauc_setting_sidemenu .postbox .inside .widget-placeholder {
width: auto;
}
#wauc_setting_sidemenu .postbox .inside .widget .widget-top:hover {
border-color:#999
}
#wauc_setting_sidemenu .postbox .inside .widget .widget-top .widget-title .in-widget-title {
opacity: 0.7;
font-weight: normal;
}
#wauc_setting_sidemenu .postbox .inside .widget .widget-inside .settings {
margin-bottom: 12px;
}
#wauc_setting_sidemenu .postbox .inside .widget .widget-inside .submenu {
padding: 5px 5px 20px 5px;
border: 3px solid #DFDFDF;
margin-bottom: 12px;
}
#wauc_setting_sidemenu .postbox .inside .widget .widget-inside input.regular-text {
width: 300px;
}
#wauc_setting_sidemenu #can_menus .postbox .inside .widget .widget-top .widget-title-action,
#wauc_setting_sidemenu #setting_menus .postbox .inside .widget.separator .widget-top .widget-title-action,
#wauc_setting_sidemenu #setting_menus .postbox .inside .widget .widget-inside .submenu .widget .widget-inside .submenu {
display: none;
}
#wauc_setting_sidemenu #can_menus .postbox .inside .widget {
width: 170px;
float: left;
margin: 0 4px 4px 0;
}
#wauc_setting_sidemenu #setting_menus .postbox .inside .settings ul.display_roles {
display: block;
font-size: 12px;
}
#wauc_setting_sidemenu #setting_menus .postbox .inside .settings ul.display_roles li {
display: inline-block;
color: #DDD;
margin-right: 2px;
}
#wauc_setting_sidemenu #setting_menus .postbox .inside .settings ul.display_roles li.has_cap {
font-weight: bold;
color: #000;
}
/* admin_bar */
#wauc_setting_admin_bar_menu {}
body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside {
padding: 10px;
}
body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget-placeholder {
width: auto;
}
body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget .widget-top .widget-title .in-widget-title {
opacity: 0.7;
font-weight: normal;
}
body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget .widget-inside .submenu {
padding: 5px 5px 20px 5px;
border: 1px solid #DFDFDF;
margin: 8px 0 12px 0;
}
body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget .widget-top {
height: auto;
}
body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget .widget-top:hover {
border-color:#999
}
body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget-group > .widget-top {
color: #fff;
text-shadow: 0 -1px 0 #333;
border-top-color: gray;
border-bottom-color: #6d6d6d;
background: #777;
background-image: -webkit-gradient(linear,left bottom,left top,from(#6d6d6d),to(gray));
background-image: -webkit-linear-gradient(bottom,#6d6d6d,gray);
background-image: -moz-linear-gradient(bottom,#6d6d6d,gray);
background-image: -o-linear-gradient(bottom,#6d6d6d,gray);
background-image: linear-gradient(to top,#6d6d6d,gray);
}
body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget-group > .widget-top .in-widget-title {
color: #fff;
}
body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget .widget-top .widget-title h4 {
line-height: 20px;
}
body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget.wp-logo .widget-top .widget-title h4 .ab-icon,
body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget.updates .widget-top .widget-title h4 .ab-icon,
body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget.comments .widget-top .widget-title h4 .ab-icon,
body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget.new-content .widget-top .widget-title h4 .ab-icon {
width: 20px;
height: 20px;
background-repeat: no-repeat;
display: block;
float: left;
margin: 0 2px 0 0;
}
body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget.wp-logo .widget-top .widget-title h4 .ab-icon {
background-position: 0 -104px;
}
body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget.updates .widget-top .widget-title h4 .ab-icon {
background-position: -2px -159px;
}
body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget.comments .widget-top .widget-title h4 .ab-icon {
background-position: -2px -135px;
}
body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget.new-content .widget-top .widget-title h4 .ab-icon {
background-position: -2px -202px;
}
body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar #can_menus > .postbox {
background: #fff;
}
body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar #can_menus .postbox .inside .widget .widget-top .widget-title-action,
body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget .widget-inside .submenu .submenu .submenu .submenu .submenu {
display: none;
}
body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .columns-1 .postbox .inside h3 {
cursor: default;
border-bottom: none;
}
body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .columns-1 .postbox .inside .widget {
width: 170px;
float: left;
margin: 0 4px 4px 0;
}

View File

@@ -0,0 +1,10 @@
jQuery(document).ready(function($) {
$(document).on('click', '.wauc_form .handlediv', function() {
$(this).parent().toggleClass('closed');
return false;
});
});

File diff suppressed because it is too large Load Diff