Adminimize - Version 1.6

Version Description

Download this release

Release Info

Developer Bueltge
Plugin Icon wp plugin Adminimize
Version 1.6
Comparing to
See all releases

Code changes from version 1.4.7 to 1.6

adminimize.php CHANGED
@@ -4,10 +4,10 @@
4
  Plugin Name: Adminimize
5
  Plugin URI: http://bueltge.de/wordpress-admin-theme-adminimize/674/
6
  Description: Visually compresses the administratrive header so that more admin page content can be initially seen. Also moves 'Dashboard' onto the main administrative menu because having it sit in the tip-top black bar was ticking me off and many other changes in the edit-area. The plugin that lets you hide 'unnecessary' items from the WordPress administration menu, with or without admins. You can also hide post meta controls on the edit-area to simplify the interface.
7
- Author: Frank Bueltge
8
  Author URI: http://bueltge.de/
9
- Version: 1.4.7
10
- Last Update: 14.09.2008 13:14:10
11
  */
12
 
13
  /**
@@ -15,7 +15,7 @@ Last Update: 14.09.2008 13:14:10
15
  * and i have written a plugin with many options on the basis
16
  * of differently user-right and a user-friendly range in admin-area.
17
  *
18
- * The javascript for de/activate ist by Oliver Schl�be, http://www.schloebe.de
19
  * - many thanks
20
  */
21
 
@@ -42,6 +42,18 @@ function _mw_adminimize_textdomain() {
42
  }
43
 
44
 
 
 
 
 
 
 
 
 
 
 
 
 
45
  /**
46
  * some basics for message
47
  */
@@ -82,15 +94,35 @@ class _mw_adminimize_message_class {
82
  * @uses $pagenow
83
  */
84
  function _mw_adminimize_init() {
85
- global $pagenow, $menu, $submenu, $adminimizeoptions;
86
 
87
  $adminimizeoptions = get_option('mw_adminimize');
88
 
89
- $disabled_metaboxes_post = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_items');
90
- $disabled_metaboxes_page = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_items');
91
- $disabled_metaboxes_post_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_adm_items');
92
- $disabled_metaboxes_page_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_adm_items');
93
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
94
  $_mw_admin_color = get_user_option('admin_color');
95
 
96
  if ( ('post-new.php' == $pagenow) || ('post.php' == $pagenow) || ('page-new.php' == $pagenow) || ('page.php' == $pagenow) ) {
@@ -112,6 +144,12 @@ function _mw_adminimize_init() {
112
  //add_filter('image_downsize', '_mw_adminimize_image_downsize', 1, 3);
113
  }
114
 
 
 
 
 
 
 
115
  if ( ($_mw_admin_color == 'mw_fresh') ||
116
  ($_mw_admin_color == 'mw_classic') ||
117
  ($_mw_admin_color == 'mw_colorblind') ||
@@ -122,28 +160,23 @@ function _mw_adminimize_init() {
122
  ($_mw_admin_color == 'mw_classic_lm') ||
123
  ($_mw_admin_color == 'mw_wp23')
124
  ) {
125
- if ( ($_mw_admin_color == 'mw_fresh') ||
126
- ($_mw_admin_color == 'mw_classic') ||
127
- ($_mw_admin_color == 'mw_colorblind') ||
128
- ($_mw_admin_color == 'mw_grey') ||
129
- ($_mw_admin_color == 'mw_wp23')
130
- ) {
131
- add_action('admin_head', '_mw_adminimize_adminmenu', 1);
132
- }
133
-
134
  if ( ('post-new.php' == $pagenow) || ('post.php' == $pagenow) ) {
135
- add_action('admin_head', '_mw_adminimize_remove_box', 99);
 
136
 
137
  // check for array empty
138
  if ( !isset($disabled_metaboxes_post['0']) )
139
  $disabled_metaboxes_post['0'] = '';
140
  if ( isset($disabled_metaboxes_post_adm['0']) )
141
  $disabled_metaboxes_post_adm['0'] = '';
142
- if ( !in_array('#categorydivsb', $disabled_metaboxes_post) || !in_array('#categorydivsb', $disabled_metaboxes_post_adm) )
143
- add_action('submitpost_box', '_mw_adminimize_sidecat_list_category_box');
144
- if ( !in_array('#tagsdivsb', $disabled_metaboxes_post) || !in_array('#tagsdivsb', $disabled_metaboxes_post_adm) )
145
- add_action('submitpost_box', '_mw_adminimize_sidecat_list_tag_box');
146
- if ( in_array('media_buttons', $disabled_metaboxes_post) || in_array('media_buttons', $disabled_metaboxes_post_adm) )
 
 
147
  remove_action('media_buttons', 'media_buttons');
148
  }
149
 
@@ -154,7 +187,7 @@ function _mw_adminimize_init() {
154
  $disabled_metaboxes_page['0'] = '';
155
  if ( isset($disabled_metaboxes_page_adm['0']) )
156
  $disabled_metaboxes_page_adm['0'] = '';
157
- if ( in_array('media_buttons', $disabled_metaboxes_page) || in_array('media_buttons', $disabled_metaboxes_page_adm) )
158
  remove_action('media_buttons', 'media_buttons');
159
  }
160
 
@@ -180,19 +213,22 @@ function _mw_adminimize_init() {
180
 
181
  $adminimizeoptions['mw_adminimize_default_menu'] = $menu;
182
  $adminimizeoptions['mw_adminimize_default_submenu'] = $submenu;
 
 
183
  }
184
 
185
  add_action('init', '_mw_adminimize_textdomain');
186
  if ( is_admin() ) {
187
-
188
  add_action('admin_menu', '_mw_adminimize_add_settings_page');
189
  add_action('admin_menu', '_mw_adminimize_remove_dashboard');
190
  add_action('admin_init', '_mw_adminimize_init', 1);
191
  add_action('admin_init', '_mw_adminimize_admin_styles', 1);
192
  }
193
 
194
-
195
- register_activation_hook(__FILE__, '_mw_adminimize_install');
 
 
196
  //register_deactivation_hook(__FILE__, '_mw_adminimize_deinstall');
197
 
198
 
@@ -330,44 +366,61 @@ function _mw_adminimize_adminmenu($file) {
330
  * @param $file
331
  */
332
  function _mw_adminimize_admin_styles($file) {
 
333
 
334
  $_mw_adminimize_path = WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/';
335
 
336
- // MW Adminimize Classic
337
- $styleName = 'MW Adminimize:' . ' ' . __('Classic');
338
- wp_admin_css_color (
339
- 'mw_classic', $styleName, $_mw_adminimize_path . 'mw_classic.css',
340
- array('#07273E', '#14568A', '#D54E21', '#2683AE')
341
- );
342
-
343
- // MW Adminimize Fresh
344
- $styleName = 'MW Adminimize:' . ' ' . __('Fresh');
345
- wp_admin_css_color (
346
- 'mw_fresh', $styleName, $_mw_adminimize_path . 'mw_fresh.css',
347
- array('#464646', '#CEE1EF', '#D54E21', '#2683AE')
348
- );
349
-
350
- // MW Adminimize WordPress 2.3
351
- $styleName = 'MW Adminimize:' . ' ' . __('WordPress 2.3');
352
- wp_admin_css_color (
353
- 'mw_wp23', $styleName, $_mw_adminimize_path . 'mw_wp23.css',
354
- array('#000000', '#14568A', '#448ABD', '#83B4D8')
355
- );
356
-
357
- // MW Adminimize Colorblind
358
- $styleName = 'MW Adminimize:' . ' ' . __('Maybe i\'m colorblind');
359
- wp_admin_css_color (
360
- 'mw_colorblind', $styleName, $_mw_adminimize_path . 'mw_colorblind.css',
361
- array('#FF9419', '#F0720C', '#710001', '#550007', '#CF4529')
362
- );
363
-
364
- // MW Adminimize Grey
365
- $styleName = 'MW Adminimize:' . ' ' . __('Grey');
366
- wp_admin_css_color (
367
- 'mw_grey', $styleName, $_mw_adminimize_path . 'mw_grey.css',
368
- array('#000000', '#787878', '#F0F0F0', '#D8D8D8', '#909090')
369
- );
370
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
371
  /**
372
  * style and changes for plugin Admin Drop Down Menu
373
  * by Ozh
@@ -422,21 +475,86 @@ function _mw_adminimize_admin_styles($file) {
422
  * http://www.ilfilosofo.com/blog/2006/05/24/plugin-remove-the-wordpress-dashboard/
423
  */
424
  function _mw_adminimize_remove_dashboard() {
425
- global $menu, $submenu, $user_ID;
426
-
427
- $disabled_menu = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_items');
428
- $disabled_submenu = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_items');
429
- $disabled_menu_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_adm_items');
430
- $disabled_submenu_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_adm_items');
431
-
432
- // remove dashboard
433
- if ($disabled_menu != '') {
434
- if ( ( in_array('index.php', $disabled_menu) && !current_user_can('level_10') ) ||
435
- ( in_array('index.php', $disabled_submenu) && !current_user_can('level_10') ) ||
436
- ( in_array('index.php', $disabled_menu_adm) && current_user_can('level_10') ) ||
437
- ( in_array('index.php', $disabled_submenu_adm) && current_user_can('level_10') )
438
- ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
439
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
440
  $_mw_adminimize_db_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_db_redirect');
441
  switch ($_mw_adminimize_db_redirect) {
442
  case 0:
@@ -457,6 +575,9 @@ function _mw_adminimize_remove_dashboard() {
457
  case 5:
458
  $_mw_adminimize_db_redirect = 'edit-comments.php';
459
  break;
 
 
 
460
  }
461
 
462
  $the_user = new WP_User($user_ID);
@@ -472,8 +593,8 @@ function _mw_adminimize_remove_dashboard() {
472
  while ( !$the_user->has_cap($menu[$page][1]) && next($menu) )
473
  $page = key($menu);
474
 
475
- if ( preg_match('#wp-admin/?(index.php)?$#', $_SERVER['REQUEST_URI'])) {
476
- if (function_exists('admin_url')) {
477
  wp_redirect( admin_url($_mw_adminimize_db_redirect) );
478
  } else {
479
  wp_redirect( get_option('siteurl') . '/wp-admin/' . $_mw_adminimize_db_redirect );
@@ -532,16 +653,46 @@ function _mw_adminimize_set_user_option_edit() {
532
  * set menu options from database
533
  */
534
  function _mw_adminimize_set_menu_option() {
535
- global $pagenow, $menu, $submenu, $user_identity;
536
 
537
- $disabled_menu = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_items');
538
- $disabled_submenu = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_items');
539
- $disabled_menu_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_adm_items');
540
- $disabled_submenu_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_adm_items');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
541
 
542
- $_mw_adminimize_admin_head = "\n";
543
- $_mw_adminimize_user_info = _mw_adminimize_getOptionValue('_mw_adminimize_user_info');
544
- $_mw_adminimize_ui_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_ui_redirect');
545
  switch ($_mw_adminimize_user_info) {
546
  case 1:
547
  $_mw_adminimize_admin_head .= '<script type="text/javascript">' . "\n";
@@ -549,29 +700,45 @@ function _mw_adminimize_set_menu_option() {
549
  $_mw_adminimize_admin_head .= '</script>' . "\n";
550
  break;
551
  case 2:
552
- $_mw_adminimize_admin_head .= '<link rel="stylesheet" href="' . WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/mw_small_user_info.css" type="text/css" />' . "\n";
 
 
 
 
553
  $_mw_adminimize_admin_head .= '<script type="text/javascript">' . "\n";
554
  $_mw_adminimize_admin_head .= "\t" . 'jQuery(document).ready(function() { jQuery(\'#user_info\').remove();';
555
  if ($_mw_adminimize_ui_redirect == '1') {
556
- $_mw_adminimize_admin_head .= 'jQuery(\'div#wpcontent\').after(\'<div id="small_user_info"><p><a href="' . get_option('siteurl') . ('/wp-login.php?action=logout&amp;redirect_to=') . get_option('siteurl') . '" title="' . __('Log Out') . '">' . __('Log Out') . '</a></p></div>\') });' . "\n";
557
  } else {
558
- $_mw_adminimize_admin_head .= 'jQuery(\'div#wpcontent\').after(\'<div id="small_user_info"><p><a href="' . get_option('siteurl') . ('/wp-login.php?action=logout') . '" title="' . __('Log Out') . '">' . __('Log Out') . '</a></p></div>\') });' . "\n";
559
  }
560
  $_mw_adminimize_admin_head .= '</script>' . "\n";
561
  break;
562
  case 3:
563
- $_mw_adminimize_admin_head .= '<link rel="stylesheet" href="' . WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/mw_small_user_info.css" type="text/css" />' . "\n";
 
 
 
 
564
  $_mw_adminimize_admin_head .= '<script type="text/javascript">' . "\n";
565
  $_mw_adminimize_admin_head .= "\t" . 'jQuery(document).ready(function() { jQuery(\'#user_info\').remove();';
566
  if ($_mw_adminimize_ui_redirect == '1') {
567
- $_mw_adminimize_admin_head .= 'jQuery(\'div#wpcontent\').after(\'<div id="small_user_info"><p><a href="' . get_option('siteurl') . ('/wp-admin/profile.php') . '">' . $user_identity . '</a> | <a href="' . get_option('siteurl') . ('/wp-login.php?action=logout&amp;redirect_to=') . get_option('siteurl') . '" title="' . __('Log Out') . '">' . __('Log Out') . '</a></p></div>\') });' . "\n";
568
  } else {
569
- $_mw_adminimize_admin_head .= 'jQuery(\'div#wpcontent\').after(\'<div id="small_user_info"><p><a href="' . get_option('siteurl') . ('/wp-admin/profile.php') . '">' . $user_identity . '</a> | <a href="' . get_option('siteurl') . ('/wp-login.php?action=logout') . '" title="' . __('Log Out') . '">' . __('Log Out') . '</a></p></div>\') });' . "\n";
570
  }
571
  $_mw_adminimize_admin_head .= '</script>' . "\n";
572
  break;
573
  }
574
 
 
 
 
 
 
 
 
 
575
  $_mw_adminimize_footer = _mw_adminimize_getOptionValue('_mw_adminimize_footer');
576
  switch ($_mw_adminimize_footer) {
577
  case 1:
@@ -602,42 +769,52 @@ function _mw_adminimize_set_menu_option() {
602
  // set menu
603
  if ($disabled_menu != '') {
604
 
605
- // set user-menu
606
- if ( !current_user_can('level_10') ) {
607
- foreach ($menu as $index => $item) {
608
- if ($item == 'index.php')
609
- continue;
610
-
611
- if (in_array($item[2], $disabled_menu))
612
- unset($menu[$index]);
613
-
614
- if ( !empty($submenu[$item[2]]) ) {
615
- foreach ($submenu[$item[2]] as $subindex => $subitem) {
616
- if (in_array($subitem[2], $disabled_submenu))
617
- unset($submenu[$item[2]][$subindex]);
618
- }
619
- }
620
- }
 
 
 
 
 
621
  }
622
 
623
- // set admin-menu
624
- if ( current_user_can('level_10') ) {
625
- foreach ($menu as $index => $item) {
626
- if ($item == 'index.php')
627
- continue;
 
628
 
629
- if (in_array($item[2], $disabled_menu_adm))
630
- unset($menu[$index]);
 
 
 
 
631
 
632
- if ( !empty($submenu[$item[2]]) ) {
633
- foreach ($submenu[$item[2]] as $subindex => $subitem) {
634
- if (in_array($subitem[2], $disabled_submenu_adm))
635
- unset($submenu[$item[2]][$subindex]);
636
- }
637
  }
638
  }
639
  }
640
-
641
  }
642
 
643
  print($_mw_adminimize_admin_head);
@@ -656,17 +833,32 @@ function _mw_adminimize_set_metabox_option() {
656
  if ( ('post-new.php' == $pagenow) || ('post.php' == $pagenow) ) {
657
  remove_action('admin_head', 'index_js');
658
 
659
- $disabled_metaboxes_post = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_items');
660
- $disabled_metaboxes_post_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_adm_items');
 
 
 
661
 
662
  if ( !isset($disabled_metaboxes_post_adm['0']) )
663
  $disabled_metaboxes_post_adm['0'] = '';
664
  if ( !isset($disabled_metaboxes_post['0']) )
665
  $disabled_metaboxes_post['0'] = '';
666
- if ( current_user_can('level_10') ) {
 
 
 
 
 
 
667
  $metaboxes = implode(',', $disabled_metaboxes_post_adm); // for admins
668
- } else {
669
- $metaboxes = implode(',', $disabled_metaboxes_post); // < user level 10, admin
 
 
 
 
 
 
670
  }
671
 
672
  $_mw_adminimize_admin_head .= '<style type="text/css">' . $metaboxes . ' {display: none !important}</style>' . "\n";
@@ -676,22 +868,43 @@ function _mw_adminimize_set_metabox_option() {
676
  if ( ('page-new.php' == $pagenow) || ('page.php' == $pagenow) ) {
677
  remove_action('admin_head', 'index_js');
678
 
679
- $disabled_metaboxes_page = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_items');
680
- $disabled_metaboxes_page_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_adm_items');
 
 
 
681
 
682
- if ( !isset($disabled_metaboxes_page_adm['0']) )
683
- $disabled_metaboxes_page_adm['0'] = '';
 
 
 
 
684
  if ( !isset($disabled_metaboxes_page['0']) )
685
  $disabled_metaboxes_page['0'] = '';
686
- if ( current_user_can('level_10') ) {
687
- $metaboxes = implode(',', $disabled_metaboxes_page_adm);
688
- } else {
689
- $metaboxes = implode(',', $disabled_metaboxes_page); // < user level 10, admin
 
 
 
 
 
 
 
 
 
690
  }
691
 
692
  $_mw_adminimize_admin_head .= '<style type="text/css">' . $metaboxes . ' {display: none !important}</style>' . "\n";
693
  }
694
 
 
 
 
 
 
695
  print($_mw_adminimize_admin_head);
696
  }
697
 
@@ -703,7 +916,7 @@ function _mw_adminimize_set_metabox_option() {
703
  function _mw_adminimize_small_user_info() {
704
  ?>
705
  <div id="small_user_info">
706
- <p><a href="<?php echo site_url('wp-login.php?action=logout') ?>" title="<?php _e('Log Out') ?>"><?php _e('Log Out'); ?></a></p>
707
  </div>
708
  <?php
709
  }
@@ -750,33 +963,87 @@ function _mw_adminimize_filter_plugin_actions($links, $file){
750
  }
751
 
752
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
753
  /**
754
  * settings in plugin-admin-page
755
  */
756
  function _mw_adminimize_add_settings_page() {
757
- if( current_user_can('switch_themes') ) {
758
- add_submenu_page('options-general.php', __('Adminimize Options', 'adminimize'), __('Adminimize', 'adminimize'), 8, __FILE__, '_mw_adminimize_options');
 
 
 
 
 
 
 
 
 
759
  add_filter('plugin_action_links', '_mw_adminimize_filter_plugin_actions', 10, 2);
760
  }
761
  }
762
 
763
 
764
  /**
765
- * Set theme for users y user_level 10
766
  */
767
  function _mw_adminimize_set_theme() {
768
 
769
  if ( !current_user_can('edit_users') )
770
  wp_die(__('Cheatin&#8217; uh?'));
771
 
772
- $user_ids = $_POST[mw_adminimize_theme_items];
773
  $admin_color = htmlspecialchars( stripslashes( $_POST[_mw_adminimize_set_theme] ) );
774
 
775
  if ( !$user_ids )
776
  return false;
777
 
778
  foreach( $user_ids as $user_id) {
779
- $user_id = (int) $user_id;
780
  update_usermeta($user_id, 'admin_color', $admin_color);
781
  }
782
  }
@@ -798,12 +1065,36 @@ function _mw_adminimize_getOptionValue($key) {
798
  function _mw_adminimize_update() {
799
  global $menu, $submenu, $adminimizeoptions;
800
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
801
  if (isset($_POST['_mw_adminimize_user_info'])) {
802
  $adminimizeoptions['_mw_adminimize_user_info'] = strip_tags(stripslashes($_POST['_mw_adminimize_user_info']));
803
  } else {
804
  $adminimizeoptions['_mw_adminimize_user_info'] = 0;
805
  }
806
-
 
 
 
 
 
 
807
  if (isset($_POST['_mw_adminimize_sidebar_wight'])) {
808
  $adminimizeoptions['_mw_adminimize_sidebar_wight'] = strip_tags(stripslashes($_POST['_mw_adminimize_sidebar_wight']));
809
  } else {
@@ -858,6 +1149,67 @@ function _mw_adminimize_update() {
858
  $adminimizeoptions['_mw_adminimize_timestamp'] = 0;
859
  }
860
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
861
  if (isset($_POST['mw_adminimize_disabled_menu_items'])) {
862
  $adminimizeoptions['mw_adminimize_disabled_menu_items'] = $_POST['mw_adminimize_disabled_menu_items'];
863
  } else {
@@ -869,6 +1221,12 @@ function _mw_adminimize_update() {
869
  } else {
870
  $adminimizeoptions['mw_adminimize_disabled_submenu_items'] = array();
871
  }
 
 
 
 
 
 
872
 
873
  if (isset($_POST['mw_adminimize_disabled_menu_adm_items'])) {
874
  $adminimizeoptions['mw_adminimize_disabled_menu_adm_items'] = $_POST['mw_adminimize_disabled_menu_adm_items'];
@@ -882,6 +1240,25 @@ function _mw_adminimize_update() {
882
  $adminimizeoptions['mw_adminimize_disabled_submenu_adm_items'] = array();
883
  }
884
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
885
  if (isset($_POST['mw_adminimize_disabled_metaboxes_post_items'])) {
886
  $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_items'] = $_POST['mw_adminimize_disabled_metaboxes_post_items'];
887
  } else {
@@ -894,18 +1271,49 @@ function _mw_adminimize_update() {
894
  $adminimizeoptions['mw_adminimize_disabled_metaboxes_page_items'] = array();
895
  }
896
 
897
- if (isset($_POST['mw_adminimize_disabled_metaboxes_post_adm_items'])) {
898
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_adm_items'] = $_POST['mw_adminimize_disabled_metaboxes_post_adm_items'];
899
  } else {
900
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_adm_items'] = array();
901
  }
902
 
903
- if (isset($_POST['mw_adminimize_disabled_metaboxes_page_adm_items'])) {
904
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_page_adm_items'] = $_POST['mw_adminimize_disabled_metaboxes_page_adm_items'];
905
  } else {
906
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_page_adm_items'] = array();
907
  }
908
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
909
  update_option('mw_adminimize', $adminimizeoptions);
910
  $adminimizeoptions = get_option('mw_adminimize');
911
 
@@ -921,31 +1329,6 @@ function _mw_adminimize_update() {
921
  function _mw_adminimize_deinstall() {
922
 
923
  delete_option('mw_adminimize');
924
-
925
- delete_option('_mw_adminimize_sidebar_wight');
926
- delete_option('_mw_adminimize_user_info');
927
- delete_option('_mw_adminimize_footer');
928
- delete_option('_mw_adminimize_writescroll');
929
- delete_option('_mw_adminimize_tb_window');
930
- delete_option('_mw_adminimize_db_redirect');
931
- delete_option('_mw_adminimize_ui_redirect');
932
- delete_option('_mw_adminimize_advice');
933
- delete_option('_mw_adminimize_advice_txt');
934
- delete_option('_mw_adminimize_timestamp');
935
-
936
- delete_option('mw_adminimize_default_menu');
937
- delete_option('mw_adminimize_default_submenu');
938
- delete_option('mw_adminimize_disabled_menu');
939
- delete_option('mw_adminimize_disabled_submenu');
940
- delete_option('mw_adminimize_disabled_menu_adm');
941
- delete_option('mw_adminimize_disabled_submenu_adm');
942
-
943
- delete_option('mw_adminimize_default_metaboxes_post');
944
- delete_option('mw_adminimize_disabled_metaboxes_page-adm');
945
- delete_option('mw_adminimize_disabled_metaboxes_post');
946
- delete_option('mw_adminimize_disabled_metaboxes_page');
947
- delete_option('mw_adminimize_disabled_metaboxes_post_adm');
948
- delete_option('mw_adminimize_disabled_metaboxes_page_adm');
949
  }
950
 
951
 
@@ -953,15 +1336,32 @@ function _mw_adminimize_deinstall() {
953
  * Install options in database
954
  */
955
  function _mw_adminimize_install() {
956
- global $menu, $submenu;
957
 
958
  $adminimizeoptions = array();
959
 
 
 
 
 
 
 
 
 
 
960
  $adminimizeoptions['mw_adminimize_disabled_menu_items'] = array();
961
  $adminimizeoptions['mw_adminimize_disabled_submenu_items'] = array();
 
962
  $adminimizeoptions['mw_adminimize_disabled_menu_adm_items'] = array();
963
  $adminimizeoptions['mw_adminimize_disabled_submenu_adm_items'] = array();
 
964
 
 
 
 
 
 
 
965
  $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_items'] = array();
966
  $adminimizeoptions['mw_adminimize_disabled_metaboxes_page_items'] = array();
967
  $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_adm_items'] = array();
@@ -969,6 +1369,8 @@ function _mw_adminimize_install() {
969
 
970
  $adminimizeoptions['mw_adminimize_default_menu'] = $menu;
971
  $adminimizeoptions['mw_adminimize_default_submenu'] = $submenu;
 
 
972
 
973
  add_option('mw_adminimize', $adminimizeoptions);
974
  }
4
  Plugin Name: Adminimize
5
  Plugin URI: http://bueltge.de/wordpress-admin-theme-adminimize/674/
6
  Description: Visually compresses the administratrive header so that more admin page content can be initially seen. Also moves 'Dashboard' onto the main administrative menu because having it sit in the tip-top black bar was ticking me off and many other changes in the edit-area. The plugin that lets you hide 'unnecessary' items from the WordPress administration menu, with or without admins. You can also hide post meta controls on the edit-area to simplify the interface.
7
+ Author: Frank B&uuml;ltge
8
  Author URI: http://bueltge.de/
9
+ Version: 1.6
10
+ Last Update: 07.12.2008 12:15:06
11
  */
12
 
13
  /**
15
  * and i have written a plugin with many options on the basis
16
  * of differently user-right and a user-friendly range in admin-area.
17
  *
18
+ * The javascript for de/activate checkboxes ist by Oliver Schl�be, http://www.schloebe.de
19
  * - many thanks
20
  */
21
 
42
  }
43
 
44
 
45
+ function recursive_in_array($needle, $haystack) {
46
+ if ($haystack != '') {
47
+ foreach ($haystack as $stalk) {
48
+ if ( $needle == $stalk || ( is_array($stalk) && recursive_in_array($needle, $stalk) ) ) {
49
+ return true;
50
+ }
51
+ }
52
+ return false;
53
+ }
54
+ }
55
+
56
+
57
  /**
58
  * some basics for message
59
  */
94
  * @uses $pagenow
95
  */
96
  function _mw_adminimize_init() {
97
+ global $pagenow, $menu, $submenu, $adminimizeoptions, $top_menu, $wp_version;
98
 
99
  $adminimizeoptions = get_option('mw_adminimize');
100
 
101
+ $disabled_metaboxes_post_subscriber = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_subscriber_items');
102
+ $disabled_metaboxes_page_subscriber = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_subscriber_items');
103
+ $disabled_metaboxes_post_contributor = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_contributor_items');
104
+ $disabled_metaboxes_page_contributor = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_contributor_items');
105
+ $disabled_metaboxes_post_author = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_author_items');
106
+ $disabled_metaboxes_page_author = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_author_items');
107
+ $disabled_metaboxes_post = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_items');
108
+ $disabled_metaboxes_page = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_items');
109
+ $disabled_metaboxes_post_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_adm_items');
110
+ $disabled_metaboxes_page_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_adm_items');
111
+
112
+ $disabled_metaboxes_post_all = array();
113
+ array_push($disabled_metaboxes_post_all, $disabled_metaboxes_post_subscriber);
114
+ array_push($disabled_metaboxes_post_all, $disabled_metaboxes_post_contributor);
115
+ array_push($disabled_metaboxes_post_all, $disabled_metaboxes_post_author);
116
+ array_push($disabled_metaboxes_post_all, $disabled_metaboxes_post);
117
+ array_push($disabled_metaboxes_post_all, $disabled_metaboxes_post_adm);
118
+
119
+ $disabled_metaboxes_page_all = array();
120
+ array_push($disabled_metaboxes_page_all, $disabled_metaboxes_page_subscriber);
121
+ array_push($disabled_metaboxes_page_all, $disabled_metaboxes_page_contributor);
122
+ array_push($disabled_metaboxes_page_all, $disabled_metaboxes_page_author);
123
+ array_push($disabled_metaboxes_page_all, $disabled_metaboxes_page);
124
+ array_push($disabled_metaboxes_page_all, $disabled_metaboxes_page_adm);
125
+
126
  $_mw_admin_color = get_user_option('admin_color');
127
 
128
  if ( ('post-new.php' == $pagenow) || ('post.php' == $pagenow) || ('page-new.php' == $pagenow) || ('page.php' == $pagenow) ) {
144
  //add_filter('image_downsize', '_mw_adminimize_image_downsize', 1, 3);
145
  }
146
 
147
+ $_mw_adminimize_menu_order = _mw_adminimize_getOptionValue('_mw_adminimize_menu_order');
148
+ switch ($_mw_adminimize_menu_order) {
149
+ case 1:
150
+ add_action('admin_head', '_mw_adminimize_adminmenu', 1);
151
+ }
152
+
153
  if ( ($_mw_admin_color == 'mw_fresh') ||
154
  ($_mw_admin_color == 'mw_classic') ||
155
  ($_mw_admin_color == 'mw_colorblind') ||
160
  ($_mw_admin_color == 'mw_classic_lm') ||
161
  ($_mw_admin_color == 'mw_wp23')
162
  ) {
163
+
 
 
 
 
 
 
 
 
164
  if ( ('post-new.php' == $pagenow) || ('post.php' == $pagenow) ) {
165
+ if ( version_compare( substr($wp_version, 0, 3), '2.7', '<' ) )
166
+ add_action('admin_head', '_mw_adminimize_remove_box', 99);
167
 
168
  // check for array empty
169
  if ( !isset($disabled_metaboxes_post['0']) )
170
  $disabled_metaboxes_post['0'] = '';
171
  if ( isset($disabled_metaboxes_post_adm['0']) )
172
  $disabled_metaboxes_post_adm['0'] = '';
173
+ if ( version_compare(substr($wp_version, 0, 3), '2.7', '<') ) {
174
+ if ( !recursive_in_array('#categorydivsb', $disabled_metaboxes_post_all) )
175
+ add_action('submitpost_box', '_mw_adminimize_sidecat_list_category_box');
176
+ if ( !recursive_in_array('#tagsdivsb', $disabled_metaboxes_post_all) )
177
+ add_action('submitpost_box', '_mw_adminimize_sidecat_list_tag_box');
178
+ }
179
+ if ( recursive_in_array('media_buttons', $disabled_metaboxes_post_all) )
180
  remove_action('media_buttons', 'media_buttons');
181
  }
182
 
187
  $disabled_metaboxes_page['0'] = '';
188
  if ( isset($disabled_metaboxes_page_adm['0']) )
189
  $disabled_metaboxes_page_adm['0'] = '';
190
+ if ( recursive_in_array('media_buttons', $disabled_metaboxes_page_all) )
191
  remove_action('media_buttons', 'media_buttons');
192
  }
193
 
213
 
214
  $adminimizeoptions['mw_adminimize_default_menu'] = $menu;
215
  $adminimizeoptions['mw_adminimize_default_submenu'] = $submenu;
216
+ if ( isset($top_menu) )
217
+ $adminimizeoptions['mw_adminimize_default_top_menu'] = $top_menu;
218
  }
219
 
220
  add_action('init', '_mw_adminimize_textdomain');
221
  if ( is_admin() ) {
 
222
  add_action('admin_menu', '_mw_adminimize_add_settings_page');
223
  add_action('admin_menu', '_mw_adminimize_remove_dashboard');
224
  add_action('admin_init', '_mw_adminimize_init', 1);
225
  add_action('admin_init', '_mw_adminimize_admin_styles', 1);
226
  }
227
 
228
+ if ( function_exists('register_activation_hook') )
229
+ register_activation_hook(__FILE__, '_mw_adminimize_install');
230
+ if ( function_exists('register_uninstall_hook') )
231
+ register_uninstall_hook(__FILE__, '_mw_adminimize_deinstall');
232
  //register_deactivation_hook(__FILE__, '_mw_adminimize_deinstall');
233
 
234
 
366
  * @param $file
367
  */
368
  function _mw_adminimize_admin_styles($file) {
369
+ global $wp_version;
370
 
371
  $_mw_adminimize_path = WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/';
372
 
373
+ if ( version_compare( $wp_version, '2.6.999', '>' ) ) {
374
+ // MW Adminimize Classic
375
+ $styleName = 'Adminimize:' . ' ' . __('Blue');
376
+ wp_admin_css_color (
377
+ 'mw_classic', $styleName, $_mw_adminimize_path . 'mw_classic27.css',
378
+ array('#073447', '#21759b', '#eaf3fa', '#bbd8e7')
379
+ );
380
+
381
+ // MW Adminimize Fresh
382
+ $styleName = 'Adminimize:' . ' ' . __('Gray');
383
+ wp_admin_css_color (
384
+ 'mw_fresh', $styleName, $_mw_adminimize_path . 'mw_fresh27.css',
385
+ array('#464646', '#6d6d6d', '#f1f1f1', '#dfdfdf')
386
+ );
387
+
388
+ } else {
389
+ // MW Adminimize Classic
390
+ $styleName = 'MW Adminimize:' . ' ' . __('Classic');
391
+ wp_admin_css_color (
392
+ 'mw_classic', $styleName, $_mw_adminimize_path . 'mw_classic.css',
393
+ array('#07273E', '#14568A', '#D54E21', '#2683AE')
394
+ );
395
+
396
+ // MW Adminimize Fresh
397
+ $styleName = 'MW Adminimize:' . ' ' . __('Fresh');
398
+ wp_admin_css_color (
399
+ 'mw_fresh', $styleName, $_mw_adminimize_path . 'mw_fresh.css',
400
+ array('#464646', '#CEE1EF', '#D54E21', '#2683AE')
401
+ );
 
 
 
 
 
402
 
403
+ // MW Adminimize WordPress 2.3
404
+ $styleName = 'MW Adminimize:' . ' ' . __('WordPress 2.3');
405
+ wp_admin_css_color (
406
+ 'mw_wp23', $styleName, $_mw_adminimize_path . 'mw_wp23.css',
407
+ array('#000000', '#14568A', '#448ABD', '#83B4D8')
408
+ );
409
+
410
+ // MW Adminimize Colorblind
411
+ $styleName = 'MW Adminimize:' . ' ' . __('Maybe i\'m colorblind');
412
+ wp_admin_css_color (
413
+ 'mw_colorblind', $styleName, $_mw_adminimize_path . 'mw_colorblind.css',
414
+ array('#FF9419', '#F0720C', '#710001', '#550007', '#CF4529')
415
+ );
416
+
417
+ // MW Adminimize Grey
418
+ $styleName = 'MW Adminimize:' . ' ' . __('Grey');
419
+ wp_admin_css_color (
420
+ 'mw_grey', $styleName, $_mw_adminimize_path . 'mw_grey.css',
421
+ array('#000000', '#787878', '#F0F0F0', '#D8D8D8', '#909090')
422
+ );
423
+ }
424
  /**
425
  * style and changes for plugin Admin Drop Down Menu
426
  * by Ozh
475
  * http://www.ilfilosofo.com/blog/2006/05/24/plugin-remove-the-wordpress-dashboard/
476
  */
477
  function _mw_adminimize_remove_dashboard() {
478
+ global $menu, $submenu, $user_ID, $top_menu;
479
+
480
+ $disabled_menu_subscriber = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_subscriber_items');
481
+ $disabled_submenu_subscriber = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_subscriber_items');
482
+ $disabled_top_menu_subscriber = _mw_adminimize_getOptionValue('mw_adminimize_disabled_top_menu_subscriber_items');
483
+ $disabled_menu_contributor = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_contributor_items');
484
+ $disabled_submenu_contributor = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_contributor_items');
485
+ $disabled_top_menu_contributor = _mw_adminimize_getOptionValue('mw_adminimize_disabled_top_menu_contributor_items');
486
+ $disabled_menu_author = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_author_items');
487
+ $disabled_submenu_author = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_author_items');
488
+ $disabled_top_menu_author = _mw_adminimize_getOptionValue('mw_adminimize_disabled_top_menu_author_items');
489
+ $disabled_menu = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_items');
490
+ $disabled_submenu = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_items');
491
+ $disabled_top_menu = _mw_adminimize_getOptionValue('mw_adminimize_disabled_top_menu_items');
492
+ $disabled_menu_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_adm_items');
493
+ $disabled_submenu_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_adm_items');
494
+ $disabled_top_menu_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_top_menu_adm_items');
495
+
496
+ $disabled_menu_all = array();
497
+ array_push($disabled_menu_all, $disabled_menu_subscriber);
498
+ array_push($disabled_menu_all, $disabled_menu_contributor);
499
+ array_push($disabled_menu_all, $disabled_menu_author);
500
+ array_push($disabled_menu_all, $disabled_menu);
501
+ array_push($disabled_menu_all, $disabled_menu_adm);
502
+
503
+ $disabled_submenu_all = array();
504
+ array_push($disabled_submenu_all, $disabled_submenu_subscriber);
505
+ array_push($disabled_submenu_all, $disabled_submenu_contributor);
506
+ array_push($disabled_submenu_all, $disabled_submenu_author);
507
+ array_push($disabled_submenu_all, $disabled_submenu);
508
+ array_push($disabled_submenu_all, $disabled_submenu_adm);
509
+
510
+ $disabled_top_menu_all = array();
511
+ array_push($disabled_top_menu_all, $disabled_top_menu_subscriber);
512
+ array_push($disabled_top_menu_all, $disabled_top_menu_contributor);
513
+ array_push($disabled_top_menu_all, $disabled_top_menu_author);
514
+ array_push($disabled_top_menu_all, $disabled_top_menu);
515
+ array_push($disabled_top_menu_all, $disabled_top_menu_adm);
516
 
517
+ // remove dashboard
518
+ if ($disabled_menu_all != '' || $disabled_submenu_all != '' || $disabled_top_menu_all != '') {
519
+
520
+ if ( current_user_can('subscriber') ) {
521
+ if (
522
+ recursive_in_array('index.php', $disabled_menu_subscriber) ||
523
+ recursive_in_array('index.php', $disabled_submenu_subscriber) ||
524
+ recursive_in_array('index.php', $disabled_top_menu_subscriber)
525
+ )
526
+ $redirect = 'true';
527
+ } elseif ( current_user_can('contributor') ) {
528
+ if (
529
+ recursive_in_array('index.php', $disabled_menu_contributor) ||
530
+ recursive_in_array('index.php', $disabled_submenu_contributor) ||
531
+ recursive_in_array('index.php', $disabled_top_menu_contributor)
532
+ )
533
+ $redirect = 'true';
534
+ } elseif ( current_user_can('author') ) {
535
+ if (
536
+ recursive_in_array('index.php', $disabled_menu_author) ||
537
+ recursive_in_array('index.php', $disabled_submenu_author) ||
538
+ recursive_in_array('index.php', $disabled_top_menu_author)
539
+ )
540
+ $redirect = 'true';
541
+ } elseif ( current_user_can('editor') ) {
542
+ if (
543
+ recursive_in_array('index.php', $disabled_menu) ||
544
+ recursive_in_array('index.php', $disabled_submenu) ||
545
+ recursive_in_array('index.php', $disabled_top_menu)
546
+ )
547
+ $redirect = 'true';
548
+ } elseif ( current_user_can('administrator') ) {
549
+ if (
550
+ recursive_in_array('index.php', $disabled_menu_adm) ||
551
+ recursive_in_array('index.php', $disabled_submenu_adm) ||
552
+ recursive_in_array('index.php', $disabled_top_menu_adm)
553
+ )
554
+ $redirect = 'true';
555
+ }
556
+
557
+ if ( $redirect == 'true' ) {
558
  $_mw_adminimize_db_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_db_redirect');
559
  switch ($_mw_adminimize_db_redirect) {
560
  case 0:
575
  case 5:
576
  $_mw_adminimize_db_redirect = 'edit-comments.php';
577
  break;
578
+ case 6:
579
+ $_mw_adminimize_db_redirect = htmlspecialchars( stripslashes( _mw_adminimize_getOptionValue('_mw_adminimize_db_redirect_txt') ) );
580
+ break;
581
  }
582
 
583
  $the_user = new WP_User($user_ID);
593
  while ( !$the_user->has_cap($menu[$page][1]) && next($menu) )
594
  $page = key($menu);
595
 
596
+ if ( preg_match('#wp-admin/?(index.php)?$#', $_SERVER['REQUEST_URI']) ) {
597
+ if ( function_exists('admin_url') ) {
598
  wp_redirect( admin_url($_mw_adminimize_db_redirect) );
599
  } else {
600
  wp_redirect( get_option('siteurl') . '/wp-admin/' . $_mw_adminimize_db_redirect );
653
  * set menu options from database
654
  */
655
  function _mw_adminimize_set_menu_option() {
656
+ global $pagenow, $menu, $submenu, $user_identity, $top_menu, $wp_version;
657
 
658
+ $disabled_menu_subscriber = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_subscriber_items');
659
+ $disabled_submenu_subscriber = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_subscriber_items');
660
+ $disabled_top_menu_subscriber = _mw_adminimize_getOptionValue('mw_adminimize_disabled_top_menu_subscriber_items');
661
+ $disabled_menu_contributor = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_contributor_items');
662
+ $disabled_submenu_contributor = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_contributor_items');
663
+ $disabled_top_menu_contributor = _mw_adminimize_getOptionValue('mw_adminimize_disabled_top_menu_contributor_items');
664
+ $disabled_menu_author = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_author_items');
665
+ $disabled_submenu_author = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_author_items');
666
+ $disabled_top_menu_author = _mw_adminimize_getOptionValue('mw_adminimize_disabled_top_menu_author_items');
667
+ $disabled_menu = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_items');
668
+ $disabled_submenu = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_items');
669
+ $disabled_top_menu = _mw_adminimize_getOptionValue('mw_adminimize_disabled_top_menu_items');
670
+ $disabled_menu_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_adm_items');
671
+ $disabled_submenu_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_adm_items');
672
+ $disabled_top_menu_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_top_menu_adm_items');
673
+
674
+ $_mw_adminimize_admin_head = "\n";
675
+ $_mw_adminimize_favorite_actions = _mw_adminimize_getOptionValue('_mw_adminimize_favorite_actions');
676
+ $_mw_adminimize_screen_options = _mw_adminimize_getOptionValue('_mw_adminimize_screen_options');
677
+ $_mw_adminimize_user_info = _mw_adminimize_getOptionValue('_mw_adminimize_user_info');
678
+ $_mw_adminimize_ui_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_ui_redirect');
679
+
680
+ switch ($_mw_adminimize_favorite_actions) {
681
+ case 1:
682
+ $_mw_adminimize_admin_head .= '<script type="text/javascript">' . "\n";
683
+ $_mw_adminimize_admin_head .= "\t" . 'jQuery(document).ready(function() { jQuery(\'#favorite-actions\').remove(); });' . "\n";
684
+ $_mw_adminimize_admin_head .= '</script>' . "\n";
685
+ break;
686
+ }
687
+
688
+ switch ($_mw_adminimize_screen_options) {
689
+ case 1:
690
+ $_mw_adminimize_admin_head .= '<script type="text/javascript">' . "\n";
691
+ $_mw_adminimize_admin_head .= "\t" . 'jQuery(document).ready(function() { jQuery(\'#screen-options\').remove(); });' . "\n";
692
+ $_mw_adminimize_admin_head .= '</script>' . "\n";
693
+ break;
694
+ }
695
 
 
 
 
696
  switch ($_mw_adminimize_user_info) {
697
  case 1:
698
  $_mw_adminimize_admin_head .= '<script type="text/javascript">' . "\n";
700
  $_mw_adminimize_admin_head .= '</script>' . "\n";
701
  break;
702
  case 2:
703
+ if ( version_compare(substr($wp_version, 0, 3), '2.7', '>=') ) {
704
+ $_mw_adminimize_admin_head .= '<link rel="stylesheet" href="' . WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/mw_small_user_info27.css" type="text/css" />' . "\n";
705
+ } else {
706
+ $_mw_adminimize_admin_head .= '<link rel="stylesheet" href="' . WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/mw_small_user_info.css" type="text/css" />' . "\n";
707
+ }
708
  $_mw_adminimize_admin_head .= '<script type="text/javascript">' . "\n";
709
  $_mw_adminimize_admin_head .= "\t" . 'jQuery(document).ready(function() { jQuery(\'#user_info\').remove();';
710
  if ($_mw_adminimize_ui_redirect == '1') {
711
+ $_mw_adminimize_admin_head .= 'jQuery(\'div#wpcontent\').after(\'<div id="small_user_info"><p><a href="' . get_option('siteurl') . wp_nonce_url( ('/wp-login.php?action=logout&amp;redirect_to=') . get_option('siteurl') , 'log-out' ) . '" title="' . __('Log Out') . '">' . __('Log Out') . '</a></p></div>\') });' . "\n";
712
  } else {
713
+ $_mw_adminimize_admin_head .= 'jQuery(\'div#wpcontent\').after(\'<div id="small_user_info"><p><a href="' . get_option('siteurl') . wp_nonce_url( ('/wp-login.php?action=logout') , 'log-out' ) . '" title="' . __('Log Out') . '">' . __('Log Out') . '</a></p></div>\') });' . "\n";
714
  }
715
  $_mw_adminimize_admin_head .= '</script>' . "\n";
716
  break;
717
  case 3:
718
+ if ( version_compare(substr($wp_version, 0, 3), '2.7', '>=') ) {
719
+ $_mw_adminimize_admin_head .= '<link rel="stylesheet" href="' . WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/mw_small_user_info27.css" type="text/css" />' . "\n";
720
+ } else {
721
+ $_mw_adminimize_admin_head .= '<link rel="stylesheet" href="' . WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/mw_small_user_info.css" type="text/css" />' . "\n";
722
+ }
723
  $_mw_adminimize_admin_head .= '<script type="text/javascript">' . "\n";
724
  $_mw_adminimize_admin_head .= "\t" . 'jQuery(document).ready(function() { jQuery(\'#user_info\').remove();';
725
  if ($_mw_adminimize_ui_redirect == '1') {
726
+ $_mw_adminimize_admin_head .= 'jQuery(\'div#wpcontent\').after(\'<div id="small_user_info"><p><a href="' . get_option('siteurl') . ('/wp-admin/profile.php') . '">' . $user_identity . '</a> | <a href="' . get_option('siteurl') . wp_nonce_url( ('/wp-login.php?action=logout&amp;redirect_to=') . get_option('siteurl'), 'log-out' ) . '" title="' . __('Log Out') . '">' . __('Log Out') . '</a></p></div>\') });' . "\n";
727
  } else {
728
+ $_mw_adminimize_admin_head .= 'jQuery(\'div#wpcontent\').after(\'<div id="small_user_info"><p><a href="' . get_option('siteurl') . ('/wp-admin/profile.php') . '">' . $user_identity . '</a> | <a href="' . get_option('siteurl') . wp_nonce_url( ('/wp-login.php?action=logout'), 'log-out' ) . '" title="' . __('Log Out') . '">' . __('Log Out') . '</a></p></div>\') });' . "\n";
729
  }
730
  $_mw_adminimize_admin_head .= '</script>' . "\n";
731
  break;
732
  }
733
 
734
+ $_mw_adminimize_dashmenu = _mw_adminimize_getOptionValue('_mw_adminimize_dashmenu');
735
+ switch ($_mw_adminimize_dashmenu) {
736
+ case 1:
737
+ $_mw_adminimize_admin_head .= '<script type="text/javascript">' . "\n";
738
+ $_mw_adminimize_admin_head .= "\t" . 'jQuery(document).ready(function() { jQuery(\'#dashmenu\').remove(); });' . "\n";
739
+ $_mw_adminimize_admin_head .= '</script>' . "\n";
740
+ break;
741
+ }
742
  $_mw_adminimize_footer = _mw_adminimize_getOptionValue('_mw_adminimize_footer');
743
  switch ($_mw_adminimize_footer) {
744
  case 1:
769
  // set menu
770
  if ($disabled_menu != '') {
771
 
772
+ // set admin-menu
773
+ if ( current_user_can('administrator') ) {
774
+ $mw_adminimize_menu = $disabled_menu_adm;
775
+ $mw_adminimize_submenu = $disabled_submenu_adm;
776
+ $mw_adminimize_top_menu = $disabled_top_menu_adm;
777
+ } elseif ( current_user_can('editor') ) {
778
+ $mw_adminimize_menu = $disabled_menu;
779
+ $mw_adminimize_submenu = $disabled_submenu;
780
+ $mw_adminimize_top_menu = $disabled_top_menu;
781
+ } elseif ( current_user_can('author') ) {
782
+ $mw_adminimize_menu = $disabled_menu_author;
783
+ $mw_adminimize_submenu = $disabled_submenu_author;
784
+ $mw_adminimize_top_menu = $disabled_top_menu_author;
785
+ } elseif ( current_user_can('contributor') ) {
786
+ $mw_adminimize_menu = $disabled_menu_contributor;
787
+ $mw_adminimize_submenu = $disabled_submenu_contributor;
788
+ $mw_adminimize_top_menu = $disabled_top_menu_contributor;
789
+ } elseif ( current_user_can('subscriber') ) {
790
+ $mw_adminimize_menu = $disabled_menu_subscriber;
791
+ $mw_adminimize_submenu = $disabled_submenu_subscriber;
792
+ $mw_adminimize_top_menu = $disabled_top_menu_subscriber;
793
  }
794
 
795
+ foreach ($menu as $index => $item) {
796
+ if ($item == 'index.php')
797
+ continue;
798
+
799
+ if ( isset($mw_adminimize_menu) && in_array($item[2], $mw_adminimize_menu) )
800
+ unset($menu[$index]);
801
 
802
+ if ( isset($submenu) && !empty($submenu[$item[2]]) ) {
803
+ foreach ($submenu[$item[2]] as $subindex => $subitem) {
804
+ if ( isset($mw_adminimize_submenu) && in_array($subitem[2], $mw_adminimize_submenu))
805
+ unset($submenu[$item[2]][$subindex]);
806
+ }
807
+ }
808
 
809
+ //top_menu, new in 2.7
810
+ if ( isset($top_menu) && !empty($top_menu[$item[2]]) ) {
811
+ foreach ($top_menu[$item[2]] as $subindex => $subitem) {
812
+ if ( isset($mw_adminimize_top_menu) && in_array($subitem[2], $mw_adminimize_top_menu))
813
+ unset($top_menu[$item[2]][$subindex]);
814
  }
815
  }
816
  }
817
+
818
  }
819
 
820
  print($_mw_adminimize_admin_head);
833
  if ( ('post-new.php' == $pagenow) || ('post.php' == $pagenow) ) {
834
  remove_action('admin_head', 'index_js');
835
 
836
+ $disabled_metaboxes_post_subscriber = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_subscriber_items');
837
+ $disabled_metaboxes_post_contributor = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_contributor_items');
838
+ $disabled_metaboxes_post_author = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_author_items');
839
+ $disabled_metaboxes_post = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_items');
840
+ $disabled_metaboxes_post_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_adm_items');
841
 
842
  if ( !isset($disabled_metaboxes_post_adm['0']) )
843
  $disabled_metaboxes_post_adm['0'] = '';
844
  if ( !isset($disabled_metaboxes_post['0']) )
845
  $disabled_metaboxes_post['0'] = '';
846
+ if ( !isset($disabled_metaboxes_post_author['0']) )
847
+ $disabled_metaboxes_post_author['0'] = '';
848
+ if ( !isset($disabled_metaboxes_post_contributor['0']) )
849
+ $disabled_metaboxes_post_contributor['0'] = '';
850
+ if ( !isset($disabled_metaboxes_post_subscriber['0']) )
851
+ $disabled_metaboxes_post_subscriber['0'] = '';
852
+ if ( current_user_can('administrator') ) {
853
  $metaboxes = implode(',', $disabled_metaboxes_post_adm); // for admins
854
+ } elseif ( current_user_can('editor') ) {
855
+ $metaboxes = implode(',', $disabled_metaboxes_post); // editor
856
+ } elseif ( current_user_can('author') ) {
857
+ $metaboxes = implode(',', $disabled_metaboxes_post_author); // author
858
+ } elseif ( current_user_can('contributor') ) {
859
+ $metaboxes = implode(',', $disabled_metaboxes_post_contributor); // contributor
860
+ } elseif ( current_user_can('subscriber') ) {
861
+ $metaboxes = implode(',', $disabled_metaboxes_post_subscriber); // subscriber
862
  }
863
 
864
  $_mw_adminimize_admin_head .= '<style type="text/css">' . $metaboxes . ' {display: none !important}</style>' . "\n";
868
  if ( ('page-new.php' == $pagenow) || ('page.php' == $pagenow) ) {
869
  remove_action('admin_head', 'index_js');
870
 
871
+ $disabled_metaboxes_page_subscriber = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_subscriber_items');
872
+ $disabled_metaboxes_page_contributor = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_contributor_items');
873
+ $disabled_metaboxes_page_editor = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_editor_items');
874
+ $disabled_metaboxes_page = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_items');
875
+ $disabled_metaboxes_page_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_adm_items');
876
 
877
+ if ( !isset($disabled_metaboxes_page_subscriber['0']) )
878
+ $disabled_metaboxes_page_subscriber['0'] = '';
879
+ if ( !isset($disabled_metaboxes_page_contributor['0']) )
880
+ $disabled_metaboxes_page_contributor['0'] = '';
881
+ if ( !isset($disabled_metaboxes_page_author['0']) )
882
+ $disabled_metaboxes_page_author['0'] = '';
883
  if ( !isset($disabled_metaboxes_page['0']) )
884
  $disabled_metaboxes_page['0'] = '';
885
+ if ( !isset($disabled_metaboxes_page_adm['0']) )
886
+ $disabled_metaboxes_page_adm['0'] = '';
887
+
888
+ if ( current_user_can('administrator') ) {
889
+ $metaboxes = implode(',', $disabled_metaboxes_page_adm); // admin
890
+ } elseif ( current_user_can('editor') ) {
891
+ $metaboxes = implode(',', $disabled_metaboxes_page); // editor
892
+ } elseif ( current_user_can('author') ) {
893
+ $metaboxes = implode(',', $disabled_metaboxes_page_author); // author
894
+ } elseif ( current_user_can('contributor') ) {
895
+ $metaboxes = implode(',', $disabled_metaboxes_page_contributor); // contributor
896
+ } elseif ( current_user_can('subscriber') ) {
897
+ $metaboxes = implode(',', $disabled_metaboxes_page_subscriber); // subscriber
898
  }
899
 
900
  $_mw_adminimize_admin_head .= '<style type="text/css">' . $metaboxes . ' {display: none !important}</style>' . "\n";
901
  }
902
 
903
+ // hide colorscheme
904
+ if ( ('profile.php' == $pagenow) && (_mw_adminimize_getOptionValue('mw_adminimize_disabled_colorscheme') == '1') ) {
905
+ $_mw_adminimize_admin_head .= '<style type="text/css">#your-profile .form-table fieldset {display: none !important}</style>' . "\n";
906
+ }
907
+
908
  print($_mw_adminimize_admin_head);
909
  }
910
 
916
  function _mw_adminimize_small_user_info() {
917
  ?>
918
  <div id="small_user_info">
919
+ <p><a href="<?php echo wp_nonce_url( site_url('wp-login.php?action=logout'), 'log-out' ) ?>" title="<?php _e('Log Out') ?>"><?php _e('Log Out'); ?></a></p>
920
  </div>
921
  <?php
922
  }
963
  }
964
 
965
 
966
+ /**
967
+ * Images/ Icons in base64-encoding
968
+ * @use function _mw_adminimize_get_resource_url() for display
969
+ */
970
+ if( isset($_GET['resource']) && !empty($_GET['resource'])) {
971
+ # base64 encoding performed by base64img.php from http://php.holtsmark.no
972
+ $resources = array(
973
+ 'adminimize.gif' =>
974
+ 'R0lGODlhCwALAKIEAPb29tTU1Kurq5SUlP///wAAAAAAAAAAAC'.
975
+ 'H5BAEAAAQALAAAAAALAAsAAAMlSErTuw1Ix4a8s4mYgxZbE4wf'.
976
+ 'OIzkAJqop64nWm7tULHu0+xLAgA7'.
977
+ '');
978
+
979
+ if(array_key_exists($_GET['resource'], $resources)) {
980
+
981
+ $content = base64_decode($resources[ $_GET['resource'] ]);
982
+
983
+ $lastMod = filemtime(__FILE__);
984
+ $client = ( isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) ? $_SERVER['HTTP_IF_MODIFIED_SINCE'] : false );
985
+ // Checking if the client is validating his cache and if it is current.
986
+ if (isset($client) && (strtotime($client) == $lastMod)) {
987
+ // Client's cache IS current, so we just respond '304 Not Modified'.
988
+ header('Last-Modified: '.gmdate('D, d M Y H:i:s', $lastMod).' GMT', true, 304);
989
+ exit;
990
+ } else {
991
+ // Image not cached or cache outdated, we respond '200 OK' and output the image.
992
+ header('Last-Modified: '.gmdate('D, d M Y H:i:s', $lastMod).' GMT', true, 200);
993
+ header('Content-Length: '.strlen($content));
994
+ header('Content-Type: image/' . substr(strrchr($_GET['resource'], '.'), 1) );
995
+ echo $content;
996
+ exit;
997
+ }
998
+ }
999
+ }
1000
+
1001
+
1002
+ /**
1003
+ * Display Images/ Icons in base64-encoding
1004
+ * @return $resourceID
1005
+ */
1006
+ function _mw_adminimize_get_resource_url($resourceID) {
1007
+
1008
+ return trailingslashit( get_bloginfo('url') ) . '?resource=' . $resourceID;
1009
+ }
1010
+
1011
+
1012
  /**
1013
  * settings in plugin-admin-page
1014
  */
1015
  function _mw_adminimize_add_settings_page() {
1016
+ global $wp_version;
1017
+
1018
+ if( current_user_can('switch_themes') && function_exists('add_submenu_page') ) {
1019
+
1020
+ $menutitle = '';
1021
+ if ( version_compare( $wp_version, '2.6.999', '>' ) ) {
1022
+ $menutitle = '<img src="' . _mw_adminimize_get_resource_url('adminimize.gif') . '" alt="" />';
1023
+ }
1024
+ $menutitle .= ' ' . __('Adminimize', 'adminimize');
1025
+
1026
+ add_submenu_page('options-general.php', __('Adminimize Options', 'adminimize'), $menutitle, 8, __FILE__, '_mw_adminimize_options');
1027
  add_filter('plugin_action_links', '_mw_adminimize_filter_plugin_actions', 10, 2);
1028
  }
1029
  }
1030
 
1031
 
1032
  /**
1033
+ * Set theme for users
1034
  */
1035
  function _mw_adminimize_set_theme() {
1036
 
1037
  if ( !current_user_can('edit_users') )
1038
  wp_die(__('Cheatin&#8217; uh?'));
1039
 
1040
+ $user_ids = $_POST[mw_adminimize_theme_items];
1041
  $admin_color = htmlspecialchars( stripslashes( $_POST[_mw_adminimize_set_theme] ) );
1042
 
1043
  if ( !$user_ids )
1044
  return false;
1045
 
1046
  foreach( $user_ids as $user_id) {
 
1047
  update_usermeta($user_id, 'admin_color', $admin_color);
1048
  }
1049
  }
1065
  function _mw_adminimize_update() {
1066
  global $menu, $submenu, $adminimizeoptions;
1067
 
1068
+ if (isset($_POST['_mw_adminimize_favorite_actions'])) {
1069
+ $adminimizeoptions['_mw_adminimize_favorite_actions'] = strip_tags(stripslashes($_POST['_mw_adminimize_favorite_actions']));
1070
+ } else {
1071
+ $adminimizeoptions['_mw_adminimize_favorite_actions'] = 0;
1072
+ }
1073
+
1074
+ if (isset($_POST['_mw_adminimize_screen_options'])) {
1075
+ $adminimizeoptions['_mw_adminimize_screen_options'] = strip_tags(stripslashes($_POST['_mw_adminimize_screen_options']));
1076
+ } else {
1077
+ $adminimizeoptions['_mw_adminimize_screen_options'] = 0;
1078
+ }
1079
+
1080
+ if (isset($_POST['_mw_adminimize_menu_order'])) {
1081
+ $adminimizeoptions['_mw_adminimize_menu_order'] = strip_tags(stripslashes($_POST['_mw_adminimize_menu_order']));
1082
+ } else {
1083
+ $adminimizeoptions['_mw_adminimize_menu_order'] = 0;
1084
+ }
1085
+
1086
  if (isset($_POST['_mw_adminimize_user_info'])) {
1087
  $adminimizeoptions['_mw_adminimize_user_info'] = strip_tags(stripslashes($_POST['_mw_adminimize_user_info']));
1088
  } else {
1089
  $adminimizeoptions['_mw_adminimize_user_info'] = 0;
1090
  }
1091
+
1092
+ if (isset($_POST['_mw_adminimize_dashmenu'])) {
1093
+ $adminimizeoptions['_mw_adminimize_dashmenu'] = strip_tags(stripslashes($_POST['_mw_adminimize_dashmenu']));
1094
+ } else {
1095
+ $adminimizeoptions['_mw_adminimize_dashmenu'] = 0;
1096
+ }
1097
+
1098
  if (isset($_POST['_mw_adminimize_sidebar_wight'])) {
1099
  $adminimizeoptions['_mw_adminimize_sidebar_wight'] = strip_tags(stripslashes($_POST['_mw_adminimize_sidebar_wight']));
1100
  } else {
1149
  $adminimizeoptions['_mw_adminimize_timestamp'] = 0;
1150
  }
1151
 
1152
+ if (isset($_POST['_mw_adminimize_db_redirect_txt'])) {
1153
+ $adminimizeoptions['_mw_adminimize_db_redirect_txt'] = stripslashes($_POST['_mw_adminimize_db_redirect_txt']);
1154
+ } else {
1155
+ $adminimizeoptions['_mw_adminimize_db_redirect_txt'] = 0;
1156
+ }
1157
+
1158
+ // menu update
1159
+ if (isset($_POST['mw_adminimize_disabled_menu_subscriber_items'])) {
1160
+ $adminimizeoptions['mw_adminimize_disabled_menu_subscriber_items'] = $_POST['mw_adminimize_disabled_menu_subscriber_items'];
1161
+ } else {
1162
+ $adminimizeoptions['mw_adminimize_disabled_menu_subscriber_items'] = array();
1163
+ }
1164
+
1165
+ if (isset($_POST['mw_adminimize_disabled_submenu_subscriber_items'])) {
1166
+ $adminimizeoptions['mw_adminimize_disabled_submenu_subscriber_items'] = $_POST['mw_adminimize_disabled_submenu_subscriber_items'];
1167
+ } else {
1168
+ $adminimizeoptions['mw_adminimize_disabled_submenu_subscriber_items'] = array();
1169
+ }
1170
+
1171
+ if (isset($_POST['mw_adminimize_disabled_top_menu_subscriber_items'])) {
1172
+ $adminimizeoptions['mw_adminimize_disabled_top_menu_subscriber_items'] = $_POST['mw_adminimize_disabled_top_menu_subscriber_items'];
1173
+ } else {
1174
+ $adminimizeoptions['mw_adminimize_disabled_top_menu_subscriber_items'] = array();
1175
+ }
1176
+
1177
+ if (isset($_POST['mw_adminimize_disabled_menu_contributor_items'])) {
1178
+ $adminimizeoptions['mw_adminimize_disabled_menu_contributor_items'] = $_POST['mw_adminimize_disabled_menu_contributor_items'];
1179
+ } else {
1180
+ $adminimizeoptions['mw_adminimize_disabled_menu_contributor_items'] = array();
1181
+ }
1182
+
1183
+ if (isset($_POST['mw_adminimize_disabled_submenu_contributor_items'])) {
1184
+ $adminimizeoptions['mw_adminimize_disabled_submenu_contributor_items'] = $_POST['mw_adminimize_disabled_submenu_contributor_items'];
1185
+ } else {
1186
+ $adminimizeoptions['mw_adminimize_disabled_submenu_contributor_items'] = array();
1187
+ }
1188
+
1189
+ if (isset($_POST['mw_adminimize_disabled_top_menu_contributor_items'])) {
1190
+ $adminimizeoptions['mw_adminimize_disabled_top_menu_contributor_items'] = $_POST['mw_adminimize_disabled_top_menu_contributor_items'];
1191
+ } else {
1192
+ $adminimizeoptions['mw_adminimize_disabled_top_menu_contributor_items'] = array();
1193
+ }
1194
+
1195
+ if (isset($_POST['mw_adminimize_disabled_menu_author_items'])) {
1196
+ $adminimizeoptions['mw_adminimize_disabled_menu_author_items'] = $_POST['mw_adminimize_disabled_menu_author_items'];
1197
+ } else {
1198
+ $adminimizeoptions['mw_adminimize_disabled_menu_author_items'] = array();
1199
+ }
1200
+
1201
+ if (isset($_POST['mw_adminimize_disabled_submenu_author_items'])) {
1202
+ $adminimizeoptions['mw_adminimize_disabled_submenu_author_items'] = $_POST['mw_adminimize_disabled_submenu_author_items'];
1203
+ } else {
1204
+ $adminimizeoptions['mw_adminimize_disabled_submenu_author_items'] = array();
1205
+ }
1206
+
1207
+ if (isset($_POST['mw_adminimize_disabled_top_menu_author_items'])) {
1208
+ $adminimizeoptions['mw_adminimize_disabled_top_menu_author_items'] = $_POST['mw_adminimize_disabled_top_menu_author_items'];
1209
+ } else {
1210
+ $adminimizeoptions['mw_adminimize_disabled_top_menu_author_items'] = array();
1211
+ }
1212
+
1213
  if (isset($_POST['mw_adminimize_disabled_menu_items'])) {
1214
  $adminimizeoptions['mw_adminimize_disabled_menu_items'] = $_POST['mw_adminimize_disabled_menu_items'];
1215
  } else {
1221
  } else {
1222
  $adminimizeoptions['mw_adminimize_disabled_submenu_items'] = array();
1223
  }
1224
+
1225
+ if (isset($_POST['mw_adminimize_disabled_top_menu_items'])) {
1226
+ $adminimizeoptions['mw_adminimize_disabled_top_menu_items'] = $_POST['mw_adminimize_disabled_top_menu_items'];
1227
+ } else {
1228
+ $adminimizeoptions['mw_adminimize_disabled_top_menu_items'] = array();
1229
+ }
1230
 
1231
  if (isset($_POST['mw_adminimize_disabled_menu_adm_items'])) {
1232
  $adminimizeoptions['mw_adminimize_disabled_menu_adm_items'] = $_POST['mw_adminimize_disabled_menu_adm_items'];
1240
  $adminimizeoptions['mw_adminimize_disabled_submenu_adm_items'] = array();
1241
  }
1242
 
1243
+ if (isset($_POST['mw_adminimize_disabled_top_menu_adm_items'])) {
1244
+ $adminimizeoptions['mw_adminimize_disabled_top_menu_adm_items'] = $_POST['mw_adminimize_disabled_top_menu_adm_items'];
1245
+ } else {
1246
+ $adminimizeoptions['mw_adminimize_disabled_top_menu_adm_items'] = array();
1247
+ }
1248
+
1249
+ // metaboxes update
1250
+ if (isset($_POST['mw_adminimize_disabled_metaboxes_post_adm_items'])) {
1251
+ $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_adm_items'] = $_POST['mw_adminimize_disabled_metaboxes_post_adm_items'];
1252
+ } else {
1253
+ $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_adm_items'] = array();
1254
+ }
1255
+
1256
+ if (isset($_POST['mw_adminimize_disabled_metaboxes_page_adm_items'])) {
1257
+ $adminimizeoptions['mw_adminimize_disabled_metaboxes_page_adm_items'] = $_POST['mw_adminimize_disabled_metaboxes_page_adm_items'];
1258
+ } else {
1259
+ $adminimizeoptions['mw_adminimize_disabled_metaboxes_page_adm_items'] = array();
1260
+ }
1261
+
1262
  if (isset($_POST['mw_adminimize_disabled_metaboxes_post_items'])) {
1263
  $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_items'] = $_POST['mw_adminimize_disabled_metaboxes_post_items'];
1264
  } else {
1271
  $adminimizeoptions['mw_adminimize_disabled_metaboxes_page_items'] = array();
1272
  }
1273
 
1274
+ if (isset($_POST['mw_adminimize_disabled_metaboxes_post_author_items'])) {
1275
+ $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_author_items'] = $_POST['mw_adminimize_disabled_metaboxes_post_author_items'];
1276
  } else {
1277
+ $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_author_items'] = array();
1278
  }
1279
 
1280
+ if (isset($_POST['mw_adminimize_disabled_metaboxes_page_author_items'])) {
1281
+ $adminimizeoptions['mw_adminimize_disabled_metaboxes_page_author_items'] = $_POST['mw_adminimize_disabled_metaboxes_page_author_items'];
1282
  } else {
1283
+ $adminimizeoptions['mw_adminimize_disabled_metaboxes_page_author_items'] = array();
1284
  }
1285
+
1286
+ if (isset($_POST['mw_adminimize_disabled_metaboxes_post_contributor_items'])) {
1287
+ $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_contributor_items'] = $_POST['mw_adminimize_disabled_metaboxes_post_contributor_items'];
1288
+ } else {
1289
+ $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_contributor_items'] = array();
1290
+ }
1291
+
1292
+ if (isset($_POST['mw_adminimize_disabled_metaboxes_page_contributor_items'])) {
1293
+ $adminimizeoptions['mw_adminimize_disabled_metaboxes_page_contributor_items'] = $_POST['mw_adminimize_disabled_metaboxes_page_contributor_items'];
1294
+ } else {
1295
+ $adminimizeoptions['mw_adminimize_disabled_metaboxes_page_contributor_items'] = array();
1296
+ }
1297
+
1298
+ if (isset($_POST['mw_adminimize_disabled_metaboxes_post_subscriber_items'])) {
1299
+ $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_subscriber_items'] = $_POST['mw_adminimize_disabled_metaboxes_post_subscriber_items'];
1300
+ } else {
1301
+ $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_subscriber_items'] = array();
1302
+ }
1303
+
1304
+ if (isset($_POST['mw_adminimize_disabled_metaboxes_page_subscriber_items'])) {
1305
+ $adminimizeoptions['mw_adminimize_disabled_metaboxes_page_subscriber_items'] = $_POST['mw_adminimize_disabled_metaboxes_page_subscriber_items'];
1306
+ } else {
1307
+ $adminimizeoptions['mw_adminimize_disabled_metaboxes_page_subscriber_items'] = array();
1308
+ }
1309
+
1310
+ // color scheme
1311
+ if (isset($_POST['mw_adminimize_disabled_colorscheme'])) {
1312
+ $adminimizeoptions['mw_adminimize_disabled_colorscheme'] = $_POST['mw_adminimize_disabled_colorscheme'];
1313
+ } else {
1314
+ $adminimizeoptions['mw_adminimize_disabled_colorscheme'] = array();
1315
+ }
1316
+
1317
  update_option('mw_adminimize', $adminimizeoptions);
1318
  $adminimizeoptions = get_option('mw_adminimize');
1319
 
1329
  function _mw_adminimize_deinstall() {
1330
 
1331
  delete_option('mw_adminimize');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1332
  }
1333
 
1334
 
1336
  * Install options in database
1337
  */
1338
  function _mw_adminimize_install() {
1339
+ global $menu, $submenu, $top_menu;
1340
 
1341
  $adminimizeoptions = array();
1342
 
1343
+ $adminimizeoptions['mw_adminimize_disabled_menu_subscriber_items'] = array();
1344
+ $adminimizeoptions['mw_adminimize_disabled_submenu_subscriber_items'] = array();
1345
+ $adminimizeoptions['mw_adminimize_disabled_top_menu_subscriber_items'] = array();
1346
+ $adminimizeoptions['mw_adminimize_disabled_menu_contributor_items'] = array();
1347
+ $adminimizeoptions['mw_adminimize_disabled_submenu_contributor_items'] = array();
1348
+ $adminimizeoptions['mw_adminimize_disabled_top_menu_contributor_items'] = array();
1349
+ $adminimizeoptions['mw_adminimize_disabled_menu_author_items'] = array();
1350
+ $adminimizeoptions['mw_adminimize_disabled_submenu_author_items'] = array();
1351
+ $adminimizeoptions['mw_adminimize_disabled_top_menu_author_items'] = array();
1352
  $adminimizeoptions['mw_adminimize_disabled_menu_items'] = array();
1353
  $adminimizeoptions['mw_adminimize_disabled_submenu_items'] = array();
1354
+ $adminimizeoptions['mw_adminimize_disabled_top_menu_items'] = array();
1355
  $adminimizeoptions['mw_adminimize_disabled_menu_adm_items'] = array();
1356
  $adminimizeoptions['mw_adminimize_disabled_submenu_adm_items'] = array();
1357
+ $adminimizeoptions['mw_adminimize_disabled_top_menu_adm_items'] = array();
1358
 
1359
+ $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_subscriber_items'] = array();
1360
+ $adminimizeoptions['mw_adminimize_disabled_metaboxes_page_subscriber_items'] = array();
1361
+ $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_contributor_items'] = array();
1362
+ $adminimizeoptions['mw_adminimize_disabled_metaboxes_page_contributor_items'] = array();
1363
+ $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_author_items'] = array();
1364
+ $adminimizeoptions['mw_adminimize_disabled_metaboxes_page_author_items'] = array();
1365
  $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_items'] = array();
1366
  $adminimizeoptions['mw_adminimize_disabled_metaboxes_page_items'] = array();
1367
  $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_adm_items'] = array();
1369
 
1370
  $adminimizeoptions['mw_adminimize_default_menu'] = $menu;
1371
  $adminimizeoptions['mw_adminimize_default_submenu'] = $submenu;
1372
+ if ( isset($top_menu) )
1373
+ $adminimizeoptions['mw_adminimize_default_top_menu'] = $top_menu;
1374
 
1375
  add_option('mw_adminimize', $adminimizeoptions);
1376
  }
adminimize_page.php CHANGED
@@ -3,7 +3,7 @@
3
  * options-page in wp-admin
4
  */
5
  function _mw_adminimize_options() {
6
- global $wpdb, $_wp_admin_css_colors;
7
 
8
  _mw_adminimize_user_info == '';
9
 
@@ -61,27 +61,52 @@ function _mw_adminimize_options() {
61
  wp_die($myErrors);
62
  }
63
  }
64
-
65
  ?>
66
  <div class="wrap">
67
  <h2><?php _e('Adminimize', 'adminimize'); ?></h2>
68
  <br class="clear" />
69
- <div id="poststuff" class="dlm">
70
  <div class="postbox closed" >
71
- <h3><?php _e('Backend options', 'adminimize'); ?></h3>
72
  <div class="inside">
73
 
74
  <form name="backend_option" method="post" id="_mw_adminimize_options" action="?page=<?php echo $_GET['page'];?>" >
75
  <?php wp_nonce_field('mw_adminimize_nonce'); ?>
76
  <br class="clear" />
77
  <table summary="config" class="widefat">
78
- <thead>
79
- <tr>
80
- <th><?php _e('Backend options', 'adminimize'); ?></th>
81
- <th>&nbsp;</th>
82
- </tr>
83
- </thead>
84
  <tbody>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85
  <tr valign="top">
86
  <td><?php _e('Sidebar Width', 'adminimize'); ?></td>
87
  <td>
@@ -95,6 +120,24 @@ function _mw_adminimize_options() {
95
  </select> <?php _e('The sidebar on the right side in the area <em>Edit</em> is configurable. Default is 200 pixel in the WordPress Theme <em>Classic</em> and <em>Fresh</em>', 'adminimize'); ?>
96
  </td>
97
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  <tr valign="top">
99
  <td><?php _e('User-Info', 'adminimize'); ?></td>
100
  <td>
@@ -108,7 +151,7 @@ function _mw_adminimize_options() {
108
  </td>
109
  </tr>
110
  <?php if ( ($_mw_adminimize_user_info == '') || ($_mw_adminimize_user_info == '1') || ($_mw_adminimize_user_info == '0') ) $disabled_item = ' disabled="disabled"' ?>
111
- <tr valign="top">
112
  <td><?php _e('Change User-Info, redirect to', 'adminimize'); ?></td>
113
  <td>
114
  <?php $_mw_adminimize_ui_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_ui_redirect'); ?>
@@ -118,6 +161,16 @@ function _mw_adminimize_options() {
118
  </select> <?php _e('When the &quot;User-Info-area&quot; change it, then it is possible to change the redirect.', 'adminimize'); ?>
119
  </td>
120
  </tr>
 
 
 
 
 
 
 
 
 
 
121
  <tr valign="top">
122
  <td><?php _e('Footer', 'adminimize'); ?></td>
123
  <td>
@@ -171,47 +224,162 @@ function _mw_adminimize_options() {
171
  </tr>
172
  <?php
173
  // when remove dashboard
174
- $disabled_menu = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_items');
175
- $disabled_submenu = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_items');
176
- $disabled_menu_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_adm_items');
177
- $disabled_submenu_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_adm_items');
178
-
179
- if ($disabled_menu != '') {
180
- if ( in_array('index.php', $disabled_menu) ||
181
- in_array('index.php', $disabled_submenu) ||
182
- in_array('index.php', $disabled_menu_adm) ||
183
- in_array('index.php', $disabled_submenu_adm)
184
- ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
185
  ?>
186
- <tr valign="top" class="form-invalid">
187
- <td><?php _e('Dashboard deaktivate, redirect to', 'adminimize'); ?></td>
188
- <td>
189
- <?php $_mw_adminimize_db_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_db_redirect'); ?>
190
- <select name="_mw_adminimize_db_redirect">
191
- <option value="0"<?php if ($_mw_adminimize_db_redirect == '0') { echo ' selected="selected"'; } ?>><?php _e('Default', 'adminimize'); ?> (profile.php)</option>
192
- <option value="1"<?php if ($_mw_adminimize_db_redirect == '1') { echo ' selected="selected"'; } ?>><?php _e('Manage Posts', 'adminimize'); ?> (edit.php)</option>
193
- <option value="2"<?php if ($_mw_adminimize_db_redirect == '2') { echo ' selected="selected"'; } ?>><?php _e('Manage Pages', 'adminimize'); ?> (edit-pages.php)</option>
194
- <option value="3"<?php if ($_mw_adminimize_db_redirect == '3') { echo ' selected="selected"'; } ?>><?php _e('Write Post', 'adminimize'); ?> (post-new.php)</option>
195
- <option value="4"<?php if ($_mw_adminimize_db_redirect == '4') { echo ' selected="selected"'; } ?>><?php _e('Write Page', 'adminimize'); ?> (page-new.php)</option>
196
- <option value="5"<?php if ($_mw_adminimize_db_redirect == '5') { echo ' selected="selected"'; } ?>><?php _e('Comments', 'adminimize'); ?> (edit-comments.php)</option>
197
- </select> <?php _e('You have deaktivate the Dashboard, please select a page for redirect?', 'adminimize'); ?>
198
- </td>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
199
  </tr>
 
 
200
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
201
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
202
  }
203
  ?>
204
  </tbody>
205
  </table>
206
  <p id="submitbutton">
207
- <input class="button" type="submit" name="_mw_adminimize_save" value="<?php _e('Update options', 'adminimize'); ?> &raquo;" /><input type="hidden" name="page_options" value="'dofollow_timeout'" />
208
  </p>
209
 
210
  </div>
211
  </div>
212
  </div>
213
-
214
- <div id="poststuff" class="dlm">
 
215
  <div class="postbox closed" >
216
  <h3 id="config_menu"><?php _e('Menu Options', 'adminimize'); ?></h3>
217
  <div class="inside">
@@ -220,20 +388,29 @@ function _mw_adminimize_options() {
220
  <thead>
221
  <tr>
222
  <th><?php _e('Menu options - Menu, <span style=\"font-weight: 400;\">Submenu</span>', 'adminimize'); ?></th>
223
- <th><?php _e('Deactivate &lt; User Level 10 (Admin)', 'adminimize'); ?></th>
224
- <th><?php _e('Deactivate for Admin\'s', 'adminimize'); ?></th>
 
 
 
225
  </tr>
226
  </thead>
227
  <tbody>
228
  <?php
229
- $menu = _mw_adminimize_getOptionValue('mw_adminimize_default_menu');
230
  $submenu = _mw_adminimize_getOptionValue('mw_adminimize_default_submenu');
231
-
232
- $disabled_metaboxes_post = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_items');
233
- $disabled_metaboxes_page = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_items');
234
- $disabled_metaboxes_post_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_adm_items');
235
- $disabled_metaboxes_page_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_adm_items');
236
-
 
 
 
 
 
 
237
  $metaboxes = array(
238
  '#pageslugdiv',
239
  '#tagsdiv,#tagsdivsb',
@@ -262,6 +439,10 @@ function _mw_adminimize_options() {
262
  array_push($metaboxes, '#postaiosp');
263
  if (function_exists('tdomf_edit_post_panel_admin_head'))
264
  array_push($metaboxes, '#tdomf');
 
 
 
 
265
 
266
  $metaboxes_names = array(
267
  __('Permalink', 'adminimize'),
@@ -291,7 +472,11 @@ function _mw_adminimize_options() {
291
  array_push($metaboxes_names, 'All in One SEO Pack');
292
  if (function_exists('tdomf_edit_post_panel_admin_head'))
293
  array_push($metaboxes_names, 'TDOMF');
294
-
 
 
 
 
295
  $metaboxes_page = array(
296
  '#pageslugdiv',
297
  '#pagepostcustom, #pagecustomdiv',
@@ -316,6 +501,8 @@ function _mw_adminimize_options() {
316
  array_push($metaboxes_page, '#postaiosp');
317
  if (function_exists('tdomf_edit_post_panel_admin_head'))
318
  array_push($metaboxes_page, '#tdomf');
 
 
319
 
320
  $metaboxes_names_page = array(
321
  __('Permalink', 'adminimize'),
@@ -341,42 +528,72 @@ function _mw_adminimize_options() {
341
  array_push($metaboxes_names_page, 'All in One SEO Pack');
342
  if (function_exists('tdomf_edit_post_panel_admin_head'))
343
  array_push($metaboxes_names_page, 'TDOMF');
 
 
 
 
344
 
345
  // print menu, submenu
346
- if ($menu != '') {
347
 
348
  $i = 0;
349
  $x = 0;
350
  foreach ($menu as $item) {
351
-
352
- // menu items
353
- // items disabled for user
354
- if ( $item[2] == 'examble.php' ) {
355
- $disabled_item = ' disabled="disabled"';
 
 
 
 
 
 
356
  } else {
357
- $disabled_item = '';
358
  }
359
 
360
  // checkbox checked
361
- if ( in_array($item[2], $disabled_menu) ) {
 
 
 
 
 
 
 
362
  $checked = ' checked="checked"';
363
  } else {
364
  $checked = '';
365
  }
366
 
367
  // checkbox checked for admin
368
- if ( in_array($item[2], $disabled_menu_adm) ) {
369
  $checked_adm = ' checked="checked"';
370
  } else {
371
  $checked_adm = '';
372
  }
373
 
 
 
 
 
 
 
 
 
 
374
  echo '<tr class="form-invalid">' . "\n";
375
- echo '<th>' . $item[0] . ' <span style="color:#ccc; font-weight: 400;">(' . $item[2] . ')</span> </th>';
376
- echo '<td class="num"><input id="check_menu'. $x .'" type="checkbox"' . $disabled_item . $checked . ' name="mw_adminimize_disabled_menu_items[]" value="' . $item[2] . '"/></td>' . "\n";
377
- echo '<td class="num"><input id="check_menuadm'. $x .'" type="checkbox"' . $disabled_item . $checked_adm . ' name="mw_adminimize_disabled_menu_adm_items[]" value="' . $item[2] . '"/></td>' . "\n";
 
 
 
378
  echo '</tr>';
379
  $x++;
 
380
  if ( !isset($submenu[$item[2]]) )
381
  continue;
382
 
@@ -387,18 +604,30 @@ function _mw_adminimize_options() {
387
  // items disabled for adm
388
  if ( $subitem[2] == 'adminimize/adminimize.php' ) {
389
  $disabled_subitem_adm = ' disabled="disabled"';
 
390
  } else {
391
  $disabled_subitem_adm = '';
392
  }
393
 
394
  echo '<tr>' . "\n";
395
 
396
- $checked = (in_array($subitem[2], $disabled_submenu)) ? ' checked="checked"' : '';
397
- $checked_adm = (in_array($subitem[2], $disabled_submenu_adm)) ? ' checked="checked"' : '';
 
 
 
 
 
 
 
 
398
 
399
  echo '<td> &mdash; ' . $subitem[0] . ' <span style="color:#ccc; font-weight: 400;">(' . $subitem[2] . ')</span> </td>' . "\n";
400
- echo '<td class="num"><input id="check_menu'. $x .'" type="checkbox"' . $checked . ' name="mw_adminimize_disabled_submenu_items[]" value="' . $subitem[2] . '" /></td>' . "\n";
401
- echo '<td class="num"><input id="check_menuadm'. $x .'" type="checkbox"' . $disabled_subitem_adm . $checked_adm . ' name="mw_adminimize_disabled_submenu_adm_items[]" value="' . $subitem[2] . '" /></td>' . "\n";
 
 
 
402
  echo '</tr>' . "\n";
403
  $x++;
404
  }
@@ -407,8 +636,11 @@ function _mw_adminimize_options() {
407
  }
408
  echo '<tr>' . "\n";
409
  echo '<th>' . __('All items', 'adminimize') . '</th>';
410
- echo '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_menu" onClick="toggleCheckboxes_menu();"><a id="atoggleCheckboxes_menu" href="javascript:toggleCheckboxes_menu();"> ' . __('All', 'adminimize') . '</a></td>';
411
- echo '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_menuadm" onClick="toggleCheckboxes_menuadm();"><a id="atoggleCheckboxes_menuadm" href="javascript:toggleCheckboxes_menuadm();"> ' . __('All', 'adminimize') . '</a></td>';
 
 
 
412
  echo '</tr>' . "\n";
413
 
414
  } else {
@@ -419,105 +651,129 @@ function _mw_adminimize_options() {
419
  </tbody>
420
  </table>
421
  <p id="submitbutton">
422
- <input class="button" type="submit" name="_mw_adminimize_save" value="<?php _e('Update options', 'adminimize'); ?> &raquo;" /><input type="hidden" name="page_options" value="'dofollow_timeout'" />
423
  </p>
424
 
425
  </div>
426
  </div>
427
  </div>
428
 
429
- <div id="poststuff" class="dlm">
430
  <div class="postbox closed" >
431
- <h3 id="config_edit"><?php _e('Write options', 'adminimize'); ?></h3>
432
  <div class="inside">
433
  <br class="clear" />
434
- <table summary="config_edit" class="widefat">
 
435
  <thead>
436
  <tr>
437
  <th><?php _e('Write options - Post', 'adminimize'); ?></th>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
438
  <th><?php _e('Write options - Page', 'adminimize'); ?></th>
 
 
 
 
 
439
  </tr>
440
  </thead>
441
 
442
  <tbody>
443
- <tr valign="top">
444
- <td>
445
- <table summary="config_edit_post" class="widefat">
446
- <thead>
447
- <tr>
448
- <th>&nbsp;</th>
449
- <th><?php _e('Deactivate for &lt; Admin\'s (level 1-9)', 'adminimize'); ?></th>
450
- <th><?php _e('Deactivate for Admin\'s (level 10)', 'adminimize'); ?></th>
451
- </tr>
452
- </thead>
453
-
454
- <tbody>
455
- <?php
456
- $x = 0;
457
- foreach ($metaboxes as $index => $metabox) {
458
- $checked = (in_array($metabox, $disabled_metaboxes_post)) ? ' checked="checked"' : '';
459
- $checked_adm = (in_array($metabox, $disabled_metaboxes_post_adm)) ? ' checked="checked"' : '';
460
-
461
- echo '<tr>' . "\n";
462
- echo '<td>' . $metaboxes_names[$index] . ' <span style="color:#ccc; font-weight: 400;">(' . $metabox . ')</span> </td>' . "\n";
463
- echo '<td class="num"><input id="check_post'. $x .'" type="checkbox"' . $checked . ' name="mw_adminimize_disabled_metaboxes_post_items[]" value="' . $metabox . '" /></td>' . "\n";
464
- echo '<td class="num"><input id="check_postadm'. $x .'" type="checkbox"' . $checked_adm . ' name="mw_adminimize_disabled_metaboxes_post_adm_items[]" value="' . $metabox . '" /></td>' . "\n";
465
- echo '</tr>' . "\n";
466
- $x++;
467
- }
468
- ?>
469
- <tr>
470
- <th><?php _e('All items', 'adminimize'); ?></th>
471
- <?php
472
- echo '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_post" onClick="toggleCheckboxes_post();"><a id="atoggleCheckboxes_post" href="javascript:toggleCheckboxes_post();"> ' . __('All', 'adminimize') . '</a></td>';
473
- echo '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_postadm" onClick="toggleCheckboxes_postadm();"><a id="atoggleCheckboxes_postadm" href="javascript:toggleCheckboxes_postadm();"> ' . __('All', 'adminimize') . '</a></td>';
474
- ?>
475
- </tr>
476
- </tbody>
477
- </table>
478
- </td>
479
- <td>
480
- <table summary="config_edit_page" class="widefat">
481
- <thead>
482
- <tr>
483
- <th>&nbsp;</th>
484
- <th><?php _e('Deactivate for &lt; Admin\'s (level 1-9)', 'adminimize'); ?></th>
485
- <th><?php _e('Deactivate for Admin\'s (level 10)', 'adminimize'); ?></th>
486
- </tr>
487
- </thead>
488
-
489
- <tbody>
490
- <?php
491
- $x = 0;
492
- foreach ($metaboxes_page as $index => $metabox) {
493
- $checked = (in_array($metabox, $disabled_metaboxes_page)) ? ' checked="checked"' : '';
494
- $checked_adm = (in_array($metabox, $disabled_metaboxes_page_adm)) ? ' checked="checked"' : '';
495
-
496
- echo '<tr>' . "\n";
497
- echo '<td>' . $metaboxes_names_page[$index] . ' <span style="color:#ccc; font-weight: 400;">(' . $metabox . ')</span> </td>' . "\n";
498
- echo '<td class="num"><input id="check_page'. $x .'" type="checkbox"' . $checked . ' name="mw_adminimize_disabled_metaboxes_page_items[]" value="' . $metabox . '" /></td>' . "\n";
499
- echo '<td class="num"><input id="check_pageadm'. $x .'" type="checkbox"' . $checked_adm . ' name="mw_adminimize_disabled_metaboxes_page_adm_items[]" value="' . $metabox . '" /></td>' . "\n";
500
- echo '</tr>' . "\n";
501
- $x++;
502
- }
503
- ?>
504
- <tr>
505
- <th><?php _e('All items', 'adminimize'); ?></th>
506
- <?php
507
- echo '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_page" onClick="toggleCheckboxes_page();"><a id="atoggleCheckboxes_page" href="javascript:toggleCheckboxes_page();"> ' . __('All', 'adminimize') . '</a></td>';
508
- echo '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_pageadm" onClick="toggleCheckboxes_pageadm();"><a id="atoggleCheckboxes_pageadm" href="javascript:toggleCheckboxes_pageadm();"> ' . __('All', 'adminimize') . '</a></td>';
509
- ?>
510
- </tr>
511
- </tbody>
512
- </table>
513
- </td>
514
  </tr>
515
  </tbody>
516
  </table>
517
 
518
  <p id="submitbutton">
519
  <input type="hidden" name="_mw_adminimize_action" value="_mw_adminimize_insert" />
520
- <input class="button" type="submit" name="_mw_adminimize_save" value="<?php _e('Update options', 'adminimize'); ?> &raquo;" /><input type="hidden" name="page_options" value="'dofollow_timeout'" />
521
  </p>
522
  </form>
523
 
@@ -525,7 +781,7 @@ function _mw_adminimize_options() {
525
  </div>
526
  </div>
527
 
528
- <div id="poststuff" class="dlm">
529
  <div class="postbox closed" >
530
  <h3 id="set_theme"><?php _e('Set Theme', 'adminimize') ?></h3>
531
  <div class="inside">
@@ -539,7 +795,7 @@ function _mw_adminimize_options() {
539
  <th class="num"><?php _e('User-ID') ?></th>
540
  <th><?php _e('Username') ?></th>
541
  <th><?php _e('Display name publicly as') ?></th>
542
- <th><?php _e('Admin Color Scheme') ?></th>
543
  <th><?php _e('User Level') ?></th>
544
  <th><?php _e('Role') ?></th>
545
  </tr>
@@ -561,15 +817,15 @@ function _mw_adminimize_options() {
561
 
562
  $style = ( ' class="alternate"' == $style ) ? '' : ' class="alternate"';
563
  $return = '';
564
- $return .= '<tr>';
565
- $return .= '<td><input type="checkbox" name="mw_adminimize_theme_items[]" value="' . $user_id . '" /></td>';
566
- $return .= '<td class="num">'. $user_id .'</td>';
567
- $return .= '<td>'. $user_login .'</td>';
568
- $return .= '<td>'. $display_name .'</td>';
569
- $return .= '<td>'. $current_color . '</td>';
570
- $return .= '<td class="num">'. $user_level . '</td>';
571
- $return .= '<td>'. $role . '</td>';
572
- $return .= '</tr>';
573
 
574
  print($return);
575
  }
@@ -593,7 +849,7 @@ function _mw_adminimize_options() {
593
  </table>
594
  <p id="submitbutton">
595
  <input type="hidden" name="_mw_adminimize_action" value="_mw_adminimize_set_theme" />
596
- <input type="submit" name="_mw_adminimize_save" value="<?php _e('Set Theme', 'adminimize'); ?> &raquo;" class="button" />
597
  </p>
598
  </form>
599
 
@@ -601,16 +857,16 @@ function _mw_adminimize_options() {
601
  </div>
602
  </div>
603
 
604
- <div id="poststuff" class="dlm">
605
  <div class="postbox closed" >
606
- <h3 id="uninstall"><?php _e('Deinstall options', 'adminimize') ?></h3>
607
  <div class="inside">
608
 
609
  <p><?php _e('Use this option for clean your database from all entries of this plugin. When you deactivate the plugin, the deinstall of the plugin <strong>clean not</strong> all entries in the database.', 'adminimize'); ?></p>
610
  <form name="deinstall_options" method="post" id="_mw_adminimize_options_deinstall" action="?page=<?php echo $_GET['page'];?>">
611
  <?php wp_nonce_field('mw_adminimize_nonce'); ?>
612
  <p id="submitbutton">
613
- <input type="submit" name="_mw_adminimize_deinstall" value="<?php _e('Delete options', 'adminimize'); ?> &raquo;" class="button-secondary" />
614
  <input type="checkbox" name="_mw_adminimize_deinstall_yes" value="_mw_adminimize_deinstall" />
615
  <input type="hidden" name="_mw_adminimize_action" value="_mw_adminimize_deinstall" />
616
  </p>
@@ -620,9 +876,9 @@ function _mw_adminimize_options() {
620
  </div>
621
  </div>
622
 
623
- <div id="poststuff" class="dlm">
624
  <div class="postbox closed" >
625
- <h3 id="uninstall"><?php _e('About the plugin', 'adminimize') ?></h3>
626
  <div class="inside">
627
 
628
  <p><?php _e('Further information: Visit the <a href="http://bueltge.de/wordpress-admin-theme-adminimize/674/">plugin homepage</a> for further information or to grab the latest version of this plugin.', 'adminimize'); ?><br />&copy; Copyright 2008 - <?php echo date("Y"); ?> <a href="http://bueltge.de">Frank B&uuml;ltge</a> | <?php _e('You want to thank me? Visit my <a href="http://bueltge.de/wunschliste/">wishlist</a>.', 'adminimize'); ?></p>
@@ -633,8 +889,9 @@ function _mw_adminimize_options() {
633
 
634
  <script type="text/javascript">
635
  <!--
 
636
  jQuery('.postbox h3').prepend('<a class="togbox">+</a> ');
637
- //jQuery('.togbox').click( function() { jQuery(jQuery(this).parent().parent().get(0)).toggleClass('closed'); } );
638
  jQuery('.postbox h3').click( function() { jQuery(jQuery(this).parent().get(0)).toggleClass('closed'); } );
639
  jQuery('.postbox.close-me').each(function(){
640
  jQuery(this).addClass("closed");
3
  * options-page in wp-admin
4
  */
5
  function _mw_adminimize_options() {
6
+ global $wpdb, $_wp_admin_css_colors, $wp_version;
7
 
8
  _mw_adminimize_user_info == '';
9
 
61
  wp_die($myErrors);
62
  }
63
  }
 
64
  ?>
65
  <div class="wrap">
66
  <h2><?php _e('Adminimize', 'adminimize'); ?></h2>
67
  <br class="clear" />
68
+ <div id="poststuff" class="ui-sortable">
69
  <div class="postbox closed" >
70
+ <h3><?php _e('Backend Options', 'adminimize'); ?></h3>
71
  <div class="inside">
72
 
73
  <form name="backend_option" method="post" id="_mw_adminimize_options" action="?page=<?php echo $_GET['page'];?>" >
74
  <?php wp_nonce_field('mw_adminimize_nonce'); ?>
75
  <br class="clear" />
76
  <table summary="config" class="widefat">
 
 
 
 
 
 
77
  <tbody>
78
+ <?php if ( version_compare( substr($wp_version, 0, 3), '2.7', '>=' ) ) { ?>
79
+ <tr valign="top">
80
+ <td><?php _e('Favorite Actions', 'adminimize'); ?></td>
81
+ <td>
82
+ <?php $_mw_adminimize_favorite_actions = _mw_adminimize_getOptionValue('_mw_adminimize_favorite_actions'); ?>
83
+ <select name="_mw_adminimize_favorite_actions">
84
+ <option value="0"<?php if ($_mw_adminimize_favorite_actions == '0') { echo ' selected="selected"'; } ?>><?php _e('Default', 'adminimize'); ?></option>
85
+ <option value="1"<?php if ($_mw_adminimize_favorite_actions == '1') { echo ' selected="selected"'; } ?>><?php _e('Activate', 'adminimize'); ?></option>
86
+ </select> <?php _e('It is possible to hide the favorite-actions in the header.', 'adminimize'); ?>
87
+ </td>
88
+ </tr>
89
+ <tr valign="top">
90
+ <td><?php _e('Screen Options', 'adminimize'); ?></td>
91
+ <td>
92
+ <?php $_mw_adminimize_screen_options = _mw_adminimize_getOptionValue('_mw_adminimize_screen_options'); ?>
93
+ <select name="_mw_adminimize_screen_options">
94
+ <option value="0"<?php if ($_mw_adminimize_screen_options == '0') { echo ' selected="selected"'; } ?>><?php _e('Default', 'adminimize'); ?></option>
95
+ <option value="1"<?php if ($_mw_adminimize_screen_options == '1') { echo ' selected="selected"'; } ?>><?php _e('Activate', 'adminimize'); ?></option>
96
+ </select> <?php _e('It is possible to hide the screen-options.', 'adminimize'); ?>
97
+ </td>
98
+ </tr>
99
+ <?php } ?>
100
+ <tr valign="top">
101
+ <td><?php _e('Menu Order', 'adminimize'); ?></td>
102
+ <td>
103
+ <?php $_mw_adminimize_menu_order = _mw_adminimize_getOptionValue('_mw_adminimize_menu_order'); ?>
104
+ <select name="_mw_adminimize_menu_order">
105
+ <option value="0"<?php if ($_mw_adminimize_menu_order == '0') { echo ' selected="selected"'; } ?>><?php _e('Default', 'adminimize'); ?></option>
106
+ <option value="1"<?php if ($_mw_adminimize_menu_order == '1') { echo ' selected="selected"'; } ?>><?php _e('Activate', 'adminimize'); ?></option>
107
+ </select> <?php _e('It is possible to set a new menu-order.', 'adminimize'); ?>
108
+ </td>
109
+ </tr>
110
  <tr valign="top">
111
  <td><?php _e('Sidebar Width', 'adminimize'); ?></td>
112
  <td>
120
  </select> <?php _e('The sidebar on the right side in the area <em>Edit</em> is configurable. Default is 200 pixel in the WordPress Theme <em>Classic</em> and <em>Fresh</em>', 'adminimize'); ?>
121
  </td>
122
  </tr>
123
+ <?php
124
+ /**
125
+ * for WP 2.7
126
+ * new @ version 1.5
127
+ */
128
+ if ( isset( $top_menu ) && ($top_menu != '') ) {
129
+ ?>
130
+ <tr valign="top">
131
+ <td><?php _e('Dashmenu', 'adminimize'); ?></td>
132
+ <td>
133
+ <?php $_mw_adminimize_dashmenu = _mw_adminimize_getOptionValue('_mw_adminimize_dashmenu'); ?>
134
+ <select name="_mw_adminimize_dashmenu">
135
+ <option value="0"<?php if ($_mw_adminimize_dashmenu == '0') { echo ' selected="selected"'; } ?>><?php _e('Default', 'adminimize'); ?></option>
136
+ <option value="1"<?php if ($_mw_adminimize_dashmenu == '1') { echo ' selected="selected"'; } ?>><?php _e('Hide', 'adminimize'); ?></option>
137
+ </select> <?php _e('The &quot;Dashboard-area&quot; is on the top left side of the backend. You can hide show.', 'adminimize'); ?>
138
+ </td>
139
+ </tr>
140
+ <?php } ?>
141
  <tr valign="top">
142
  <td><?php _e('User-Info', 'adminimize'); ?></td>
143
  <td>
151
  </td>
152
  </tr>
153
  <?php if ( ($_mw_adminimize_user_info == '') || ($_mw_adminimize_user_info == '1') || ($_mw_adminimize_user_info == '0') ) $disabled_item = ' disabled="disabled"' ?>
154
+ <tr valign="top" class="form-invalid">
155
  <td><?php _e('Change User-Info, redirect to', 'adminimize'); ?></td>
156
  <td>
157
  <?php $_mw_adminimize_ui_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_ui_redirect'); ?>
161
  </select> <?php _e('When the &quot;User-Info-area&quot; change it, then it is possible to change the redirect.', 'adminimize'); ?>
162
  </td>
163
  </tr>
164
+ <tr valign="top">
165
+ <td><?php _e('Admin Color Scheme', 'adminimize'); ?></td>
166
+ <td>
167
+ <?php $mw_adminimize_disabled_colorscheme = _mw_adminimize_getOptionValue('mw_adminimize_disabled_colorscheme'); ?>
168
+ <select name="mw_adminimize_disabled_colorscheme">
169
+ <option value="0"<?php if ($mw_adminimize_disabled_colorscheme == '0') { echo ' selected="selected"'; } ?>><?php _e('Default', 'adminimize'); ?></option>
170
+ <option value="1"<?php if ($mw_adminimize_disabled_colorscheme == '1') { echo ' selected="selected"'; } ?>><?php _e('Activate', 'adminimize'); ?></option>
171
+ </select> <?php _e('It is possible to hide the Admin Color Schemes.', 'adminimize'); ?>
172
+ </td>
173
+ </tr>
174
  <tr valign="top">
175
  <td><?php _e('Footer', 'adminimize'); ?></td>
176
  <td>
224
  </tr>
225
  <?php
226
  // when remove dashboard
227
+ $disabled_menu_subscriber = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_subscriber_items');
228
+ $disabled_submenu_subscriber = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_subscriber_items');
229
+ $disabled_top_menu_subscriber = _mw_adminimize_getOptionValue('mw_adminimize_disabled_top_menu_subscriber_items');
230
+ $disabled_menu_contributor = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_contributor_items');
231
+ $disabled_submenu_contributor = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_contributor_items');
232
+ $disabled_top_menu_contributor = _mw_adminimize_getOptionValue('mw_adminimize_disabled_top_menu_contributor_items');
233
+ $disabled_menu_author = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_author_items');
234
+ $disabled_submenu_author = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_author_items');
235
+ $disabled_top_menu_author = _mw_adminimize_getOptionValue('mw_adminimize_disabled_top_menu_author_items');
236
+ $disabled_menu = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_items');
237
+ $disabled_submenu = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_items');
238
+ $disabled_top_menu = _mw_adminimize_getOptionValue('mw_adminimize_disabled_top_menu_items');
239
+ $disabled_menu_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_adm_items');
240
+ $disabled_submenu_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_adm_items');
241
+ $disabled_top_menu_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_top_menu_adm_items');
242
+
243
+ $disabled_menu_all = array();
244
+ array_push($disabled_menu_all, $disabled_menu_subscriber);
245
+ array_push($disabled_menu_all, $disabled_submenu_subscriber);
246
+ array_push($disabled_menu_all, $disabled_top_menu_subscriber);
247
+ array_push($disabled_menu_all, $disabled_menu_contributor);
248
+ array_push($disabled_menu_all, $disabled_submenu_contributor);
249
+ array_push($disabled_menu_all, $disabled_top_menu_contributor);
250
+ array_push($disabled_menu_all, $disabled_menu_author);
251
+ array_push($disabled_menu_all, $disabled_submenu_author);
252
+ array_push($disabled_menu_all, $disabled_top_menu_author);
253
+ array_push($disabled_menu_all, $disabled_menu);
254
+ array_push($disabled_menu_all, $disabled_submenu);
255
+ array_push($disabled_menu_all, $disabled_top_menu);
256
+ array_push($disabled_menu_all, $disabled_menu_adm);
257
+ array_push($disabled_menu_all, $disabled_submenu_adm);
258
+ array_push($disabled_menu_all, $disabled_top_menu_adm);
259
+
260
+ if ($disabled_menu_all != '') {
261
+ if ( !recursive_in_array('index.php', $disabled_menu_all) ) {
262
+ $disabled_item2 = ' disabled="disabled"';
263
+ }
264
+ ?>
265
+ <tr valign="top" class="form-invalid">
266
+ <td><?php _e('Dashboard deaktivate, redirect to', 'adminimize'); ?></td>
267
+ <td>
268
+ <?php $_mw_adminimize_db_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_db_redirect'); ?>
269
+ <select name="_mw_adminimize_db_redirect"<?php echo $disabled_item2; ?>>
270
+ <option value="0"<?php if ($_mw_adminimize_db_redirect == '0') { echo ' selected="selected"'; } ?>><?php _e('Default', 'adminimize'); ?> (profile.php)</option>
271
+ <option value="1"<?php if ($_mw_adminimize_db_redirect == '1') { echo ' selected="selected"'; } ?>><?php _e('Manage Posts', 'adminimize'); ?> (edit.php)</option>
272
+ <option value="2"<?php if ($_mw_adminimize_db_redirect == '2') { echo ' selected="selected"'; } ?>><?php _e('Manage Pages', 'adminimize'); ?> (edit-pages.php)</option>
273
+ <option value="3"<?php if ($_mw_adminimize_db_redirect == '3') { echo ' selected="selected"'; } ?>><?php _e('Write Post', 'adminimize'); ?> (post-new.php)</option>
274
+ <option value="4"<?php if ($_mw_adminimize_db_redirect == '4') { echo ' selected="selected"'; } ?>><?php _e('Write Page', 'adminimize'); ?> (page-new.php)</option>
275
+ <option value="5"<?php if ($_mw_adminimize_db_redirect == '5') { echo ' selected="selected"'; } ?>><?php _e('Comments', 'adminimize'); ?> (edit-comments.php)</option>
276
+ <option value="6"<?php if ($_mw_adminimize_db_redirect == '6') { echo ' selected="selected"'; } ?>><?php _e('other Page', 'adminimize'); ?></option>
277
+ </select>
278
+ <textarea style="width: 85%;" class="code" rows="1" cols="60" name="_mw_adminimize_db_redirect_txt" id="_mw_adminimize_db_redirect_txt" ><?php echo htmlspecialchars(stripslashes(_mw_adminimize_getOptionValue('_mw_adminimize_db_redirect_txt'))); ?></textarea>
279
+ <br /><?php _e('You have deaktivate the Dashboard, please select a page for redirect?', 'adminimize'); ?>
280
+ </td>
281
+ </tr>
282
+ <?php
283
+ }
284
  ?>
285
+ </tbody>
286
+ </table>
287
+ <p id="submitbutton">
288
+ <input class="button button-primary" type="submit" name="_mw_adminimize_save" value="<?php _e('Update Options', 'adminimize'); ?> &raquo;" /><input type="hidden" name="page_options" value="'dofollow_timeout'" />
289
+ </p>
290
+
291
+ </div>
292
+ </div>
293
+ </div>
294
+
295
+ <?php
296
+ /**
297
+ * for WP 2.7
298
+ * new @ version 1.5
299
+ */
300
+ if ( isset( $top_menu ) && ($top_menu != '') ) {
301
+ ?>
302
+ <div id="poststuff" class="ui-sortable">
303
+ <div class="postbox closed" >
304
+ <h3 id="config_top_menu"><?php _e('Top Menu Options', 'adminimize'); ?></h3>
305
+ <div class="inside">
306
+ <br class="clear" />
307
+ <table summary="config_top_menu" class="widefat">
308
+ <thead>
309
+ <tr>
310
+ <th><?php _e('Top Menu Options', 'adminimize'); ?></th>
311
+ <th><?php _e('Deactivate for Subscriber', 'adminimize'); ?></th>
312
+ <th><?php _e('Deactivate for Contributor', 'adminimize'); ?></th>
313
+ <th><?php _e('Deactivate for Author', 'adminimize'); ?></th>
314
+ <th><?php _e('Deactivate for Editor', 'adminimize'); ?></th>
315
+ <th><?php _e('Deactivate for Administrator', 'adminimize'); ?></th>
316
  </tr>
317
+ </thead>
318
+ <tbody>
319
  <?php
320
+ $top_menu = _mw_adminimize_getOptionValue('mw_adminimize_default_top_menu');
321
+
322
+ $x = 0;
323
+ foreach ($top_menu as $item) {
324
+
325
+ // checkbox checked
326
+ if ( in_array($item[2], $disabled_top_menu_subscriber) ) {
327
+ $checked_subscriber = ' checked="checked"';
328
+ } else {
329
+ $checked_subscriber = '';
330
+ }
331
+
332
+ // checkbox checked
333
+ if ( in_array($item[2], $disabled_top_menu_contributor) ) {
334
+ $checked_contributor = ' checked="checked"';
335
+ } else {
336
+ $checked_contributor = '';
337
  }
338
+
339
+ // checkbox checked
340
+ if ( in_array($item[2], $disabled_top_menu_author) ) {
341
+ $checked_author = ' checked="checked"';
342
+ } else {
343
+ $checked_author = '';
344
+ }
345
+
346
+ // checkbox checked
347
+ if ( in_array($item[2], $disabled_top_menu) ) {
348
+ $checked = ' checked="checked"';
349
+ } else {
350
+ $checked = '';
351
+ }
352
+
353
+ // checkbox checked for admin
354
+ if ( in_array($item[2], $disabled_top_menu_adm) ) {
355
+ $checked_adm = ' checked="checked"';
356
+ } else {
357
+ $checked_adm = '';
358
+ }
359
+
360
+ echo '<tr>' . "\n";
361
+ echo "\t" . '<th>' . $item[0] . ' <span style="color:#ccc; font-weight: 400;">(' . $item[2] . ')</span> </th>';
362
+ echo "\t" . '<td class="num"><input id="check_top_menusubscriber'. $x .'" type="checkbox"' . $checked_subscriber . ' name="mw_adminimize_disabled_top_menu_subscriber_items[]" value="' . $item[2] . '"/></td>' . "\n";
363
+ echo "\t" . '<td class="num"><input id="check_top_menucontributor'. $x .'" type="checkbox"' . $checked_contributor . ' name="mw_adminimize_disabled_top_menu_contributor_items[]" value="' . $item[2] . '"/></td>' . "\n";
364
+ echo "\t" . '<td class="num"><input id="check_top_menuauthor'. $x .'" type="checkbox"' . $checked_author . ' name="mw_adminimize_disabled_top_menu_author_items[]" value="' . $item[2] . '"/></td>' . "\n";
365
+ echo "\t" . '<td class="num"><input id="check_top_menu'. $x .'" type="checkbox"' . $checked . ' name="mw_adminimize_disabled_top_menu_items[]" value="' . $item[2] . '"/></td>' . "\n";
366
+ echo "\t" . '<td class="num"><input id="check_top_menuadm'. $x .'" type="checkbox"' . $checked_adm . ' name="mw_adminimize_disabled_top_menu_adm_items[]" value="' . $item[2] . '"/></td>' . "\n";
367
+ echo '</tr>';
368
+ $x++;
369
  }
370
  ?>
371
  </tbody>
372
  </table>
373
  <p id="submitbutton">
374
+ <input class="button button-primary" type="submit" name="_mw_adminimize_save" value="<?php _e('Update Options', 'adminimize'); ?> &raquo;" /><input type="hidden" name="page_options" value="'dofollow_timeout'" />
375
  </p>
376
 
377
  </div>
378
  </div>
379
  </div>
380
+ <?php } ?>
381
+
382
+ <div id="poststuff" class="ui-sortable">
383
  <div class="postbox closed" >
384
  <h3 id="config_menu"><?php _e('Menu Options', 'adminimize'); ?></h3>
385
  <div class="inside">
388
  <thead>
389
  <tr>
390
  <th><?php _e('Menu options - Menu, <span style=\"font-weight: 400;\">Submenu</span>', 'adminimize'); ?></th>
391
+ <th><?php _e('Deactivate for Subscriber', 'adminimize'); ?></th>
392
+ <th><?php _e('Deactivate for Contributor', 'adminimize'); ?></th>
393
+ <th><?php _e('Deactivate for Author', 'adminimize'); ?></th>
394
+ <th><?php _e('Deactivate for Editor', 'adminimize'); ?></th>
395
+ <th><?php _e('Deactivate for Administrator', 'adminimize'); ?></th>
396
  </tr>
397
  </thead>
398
  <tbody>
399
  <?php
400
+ $menu = _mw_adminimize_getOptionValue('mw_adminimize_default_menu');
401
  $submenu = _mw_adminimize_getOptionValue('mw_adminimize_default_submenu');
402
+
403
+ $disabled_metaboxes_post_subscriber = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_subscriber_items');
404
+ $disabled_metaboxes_page_subscriber = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_subscriber_items');
405
+ $disabled_metaboxes_post_contributor = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_contributor_items');
406
+ $disabled_metaboxes_page_contributor = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_contributor_items');
407
+ $disabled_metaboxes_post_author = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_author_items');
408
+ $disabled_metaboxes_page_author = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_author_items');
409
+ $disabled_metaboxes_post = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_items');
410
+ $disabled_metaboxes_page = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_items');
411
+ $disabled_metaboxes_post_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_adm_items');
412
+ $disabled_metaboxes_page_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_adm_items');
413
+
414
  $metaboxes = array(
415
  '#pageslugdiv',
416
  '#tagsdiv,#tagsdivsb',
439
  array_push($metaboxes, '#postaiosp');
440
  if (function_exists('tdomf_edit_post_panel_admin_head'))
441
  array_push($metaboxes, '#tdomf');
442
+ if (function_exists('post_notification_form'))
443
+ array_push($metaboxes, '#post_notification');
444
+ if (function_exists('sticky_add_meta_box'))
445
+ array_push($metaboxes, '#poststickystatusdiv');
446
 
447
  $metaboxes_names = array(
448
  __('Permalink', 'adminimize'),
472
  array_push($metaboxes_names, 'All in One SEO Pack');
473
  if (function_exists('tdomf_edit_post_panel_admin_head'))
474
  array_push($metaboxes_names, 'TDOMF');
475
+ if (function_exists('post_notification_form'))
476
+ array_push($metaboxes_names, 'Post Notification');
477
+ if (function_exists('sticky_add_meta_box'))
478
+ array_push($metaboxes, 'Post Sticky Status');
479
+
480
  $metaboxes_page = array(
481
  '#pageslugdiv',
482
  '#pagepostcustom, #pagecustomdiv',
501
  array_push($metaboxes_page, '#postaiosp');
502
  if (function_exists('tdomf_edit_post_panel_admin_head'))
503
  array_push($metaboxes_page, '#tdomf');
504
+ if (function_exists('post_notification_form'))
505
+ array_push($metaboxes_page, '#post_notification');
506
 
507
  $metaboxes_names_page = array(
508
  __('Permalink', 'adminimize'),
528
  array_push($metaboxes_names_page, 'All in One SEO Pack');
529
  if (function_exists('tdomf_edit_post_panel_admin_head'))
530
  array_push($metaboxes_names_page, 'TDOMF');
531
+ if (function_exists('post_notification_form'))
532
+ array_push($metaboxes_names_page, 'Post Notification');
533
+ if (class_exists('HTMLSpecialCharactersHelper'))
534
+ array_push($metaboxes_names_page, 'HTML Special Characters');
535
 
536
  // print menu, submenu
537
+ if ( isset($menu) && $menu != '') {
538
 
539
  $i = 0;
540
  $x = 0;
541
  foreach ($menu as $item) {
542
+
543
+ // checkbox checked
544
+ if ( isset($disabled_menu_subscriber) && in_array($item[2], $disabled_menu_subscriber) ) {
545
+ $checked_subscriber = ' checked="checked"';
546
+ } else {
547
+ $checked_subscriber = '';
548
+ }
549
+
550
+ // checkbox checked
551
+ if ( isset($disabled_menu_contributor) && in_array($item[2], $disabled_menu_contributor) ) {
552
+ $checked_contributor = ' checked="checked"';
553
  } else {
554
+ $checked_contributor = '';
555
  }
556
 
557
  // checkbox checked
558
+ if ( isset($disabled_menu_author) && in_array($item[2], $disabled_menu_author) ) {
559
+ $checked_author = ' checked="checked"';
560
+ } else {
561
+ $checked_author = '';
562
+ }
563
+
564
+ // checkbox checked
565
+ if ( isset($disabled_menu) && in_array($item[2], $disabled_menu) ) {
566
  $checked = ' checked="checked"';
567
  } else {
568
  $checked = '';
569
  }
570
 
571
  // checkbox checked for admin
572
+ if ( isset($disabled_menu_adm) && in_array($item[2], $disabled_menu_adm) ) {
573
  $checked_adm = ' checked="checked"';
574
  } else {
575
  $checked_adm = '';
576
  }
577
 
578
+ // menu items
579
+ // items disabled for user
580
+ if ( $item[2] == 'options-general.php' ) {
581
+ $disabled_item_adm = ' disabled="disabled"';
582
+ $checked_adm = '';
583
+ } else {
584
+ $disabled_item_adm = '';
585
+ }
586
+
587
  echo '<tr class="form-invalid">' . "\n";
588
+ echo "\t" . '<th>' . $item[0] . ' <span style="color:#ccc; font-weight: 400;">(' . $item[2] . ')</span> </th>';
589
+ echo "\t" . '<td class="num"><input id="check_menusubscriber'. $x .'" type="checkbox"' . $checked_subscriber . ' name="mw_adminimize_disabled_menu_subscriber_items[]" value="' . $item[2] . '"/></td>' . "\n";
590
+ echo "\t" . '<td class="num"><input id="check_menucontributor'. $x .'" type="checkbox"' . $checked_contributor . ' name="mw_adminimize_disabled_menu_contributor_items[]" value="' . $item[2] . '"/></td>' . "\n";
591
+ echo "\t" . '<td class="num"><input id="check_menuauthor'. $x .'" type="checkbox"' . $checked_author . ' name="mw_adminimize_disabled_menu_author_items[]" value="' . $item[2] . '"/></td>' . "\n";
592
+ echo "\t" . '<td class="num"><input id="check_menu'. $x .'" type="checkbox"' . $checked . ' name="mw_adminimize_disabled_menu_items[]" value="' . $item[2] . '"/></td>' . "\n";
593
+ echo "\t" . '<td class="num"><input id="check_menuadm'. $x .'" type="checkbox"' . $disabled_item_adm . $checked_adm . ' name="mw_adminimize_disabled_menu_adm_items[]" value="' . $item[2] . '"/></td>' . "\n";
594
  echo '</tr>';
595
  $x++;
596
+
597
  if ( !isset($submenu[$item[2]]) )
598
  continue;
599
 
604
  // items disabled for adm
605
  if ( $subitem[2] == 'adminimize/adminimize.php' ) {
606
  $disabled_subitem_adm = ' disabled="disabled"';
607
+ $checked_adm = '';
608
  } else {
609
  $disabled_subitem_adm = '';
610
  }
611
 
612
  echo '<tr>' . "\n";
613
 
614
+ if ( isset($disabled_submenu_subscriber) )
615
+ $checked_subscriber = ( in_array($subitem[2], $disabled_submenu_subscriber ) ) ? ' checked="checked"' : '';
616
+ if ( isset($disabled_submenu_contributor) )
617
+ $checked_contributor = ( in_array($subitem[2], $disabled_submenu_contributor ) ) ? ' checked="checked"' : '';
618
+ if ( isset($disabled_submenu_author) )
619
+ $checked_author = ( in_array($subitem[2], $disabled_submenu_author ) ) ? ' checked="checked"' : '';
620
+ if ( isset($disabled_submenu) )
621
+ $checked = ( in_array($subitem[2], $disabled_submenu ) ) ? ' checked="checked"' : '';
622
+ if ( isset($disabled_submenu_adm) )
623
+ $checked_adm = ( in_array($subitem[2], $disabled_submenu_adm ) ) ? ' checked="checked"' : '';
624
 
625
  echo '<td> &mdash; ' . $subitem[0] . ' <span style="color:#ccc; font-weight: 400;">(' . $subitem[2] . ')</span> </td>' . "\n";
626
+ echo "\t" . '<td class="num"><input id="check_menusubscriber'. $x .'" type="checkbox"' . $checked_subscriber . ' name="mw_adminimize_disabled_submenu_subscriber_items[]" value="' . $subitem[2] . '" /></td>' . "\n";
627
+ echo "\t" . '<td class="num"><input id="check_menucontributor'. $x .'" type="checkbox"' . $checked_contributor . ' name="mw_adminimize_disabled_submenu_contributor_items[]" value="' . $subitem[2] . '" /></td>' . "\n";
628
+ echo "\t" . '<td class="num"><input id="check_menuauthor'. $x .'" type="checkbox"' . $checked_author . ' name="mw_adminimize_disabled_submenu_author_items[]" value="' . $subitem[2] . '" /></td>' . "\n";
629
+ echo "\t" . '<td class="num"><input id="check_menu'. $x .'" type="checkbox"' . $checked . ' name="mw_adminimize_disabled_submenu_items[]" value="' . $subitem[2] . '" /></td>' . "\n";
630
+ echo "\t" . '<td class="num"><input id="check_menuadm'. $x .'" type="checkbox"' . $disabled_subitem_adm . $checked_adm . ' name="mw_adminimize_disabled_submenu_adm_items[]" value="' . $subitem[2] . '" /></td>' . "\n";
631
  echo '</tr>' . "\n";
632
  $x++;
633
  }
636
  }
637
  echo '<tr>' . "\n";
638
  echo '<th>' . __('All items', 'adminimize') . '</th>';
639
+ echo "\t" . '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_menusubscriber" onClick="toggleCheckboxes_menusubscriber();"><a id="atoggleCheckboxes_menusubscriber" href="javascript:toggleCheckboxes_menusubscriber();"> ' . __('All', 'adminimize') . '</a></td>';
640
+ echo "\t" . '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_menucontributor" onClick="toggleCheckboxes_menucontributor();"><a id="atoggleCheckboxes_menucontributor" href="javascript:toggleCheckboxes_menucontributor();"> ' . __('All', 'adminimize') . '</a></td>';
641
+ echo "\t" . '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_menuauthor" onClick="toggleCheckboxes_menuauthor();"><a id="atoggleCheckboxes_menuauthor" href="javascript:toggleCheckboxes_menuauthor();"> ' . __('All', 'adminimize') . '</a></td>';
642
+ echo "\t" . '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_menu" onClick="toggleCheckboxes_menu();"><a id="atoggleCheckboxes_menu" href="javascript:toggleCheckboxes_menu();"> ' . __('All', 'adminimize') . '</a></td>';
643
+ echo "\t" . '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_menuadm" onClick="toggleCheckboxes_menuadm();"><a id="atoggleCheckboxes_menuadm" href="javascript:toggleCheckboxes_menuadm();"> ' . __('All', 'adminimize') . '</a></td>';
644
  echo '</tr>' . "\n";
645
 
646
  } else {
651
  </tbody>
652
  </table>
653
  <p id="submitbutton">
654
+ <input class="button button-primary" type="submit" name="_mw_adminimize_save" value="<?php _e('Update Options', 'adminimize'); ?> &raquo;" /><input type="hidden" name="page_options" value="'dofollow_timeout'" />
655
  </p>
656
 
657
  </div>
658
  </div>
659
  </div>
660
 
661
+ <div id="poststuff" class="ui-sortable">
662
  <div class="postbox closed" >
663
+ <h3 id="config_edit"><?php _e('Write options - Post', 'adminimize'); ?></h3>
664
  <div class="inside">
665
  <br class="clear" />
666
+
667
+ <table summary="config_edit_post" class="widefat">
668
  <thead>
669
  <tr>
670
  <th><?php _e('Write options - Post', 'adminimize'); ?></th>
671
+ <th><?php _e('Deactivate for Subscriber', 'adminimize'); ?></th>
672
+ <th><?php _e('Deactivate for Contributor', 'adminimize'); ?></th>
673
+ <th><?php _e('Deactivate for Author', 'adminimize'); ?></th>
674
+ <th><?php _e('Deactivate for Editor', 'adminimize'); ?></th>
675
+ <th><?php _e('Deactivate for Administrator', 'adminimize'); ?></th>
676
+ </tr>
677
+ </thead>
678
+
679
+ <tbody>
680
+ <?php
681
+ $x = 0;
682
+ foreach ($metaboxes as $index => $metabox) {
683
+ $checked_subscriber = ( isset($disabled_metaboxes_post_subscriber) && in_array($metabox, $disabled_metaboxes_post_subscriber) ) ? ' checked="checked"' : '';
684
+ $checked_contributor = ( isset($disabled_metaboxes_post_contributor) && in_array($metabox, $disabled_metaboxes_post_contributor) ) ? ' checked="checked"' : '';
685
+ $checked_author = ( isset($disabled_metaboxes_post_author) && in_array($metabox, $disabled_metaboxes_post_author) ) ? ' checked="checked"' : '';
686
+ $checked = ( isset($disabled_metaboxes_post) && in_array($metabox, $disabled_metaboxes_post) ) ? ' checked="checked"' : '';
687
+ $checked_adm = ( isset($disabled_metaboxes_post_adm) && in_array($metabox, $disabled_metaboxes_post_adm) ) ? ' checked="checked"' : '';
688
+
689
+ echo '<tr>' . "\n";
690
+ echo '<td>' . $metaboxes_names[$index] . ' <span style="color:#ccc; font-weight: 400;">(' . $metabox . ')</span> </td>' . "\n";
691
+ echo '<td class="num"><input id="check_postsubscriber'. $x .'" type="checkbox"' . $checked_subscriber . ' name="mw_adminimize_disabled_metaboxes_post_subscriber_items[]" value="' . $metabox . '" /></td>' . "\n";
692
+ echo '<td class="num"><input id="check_postcontributor'. $x .'" type="checkbox"' . $checked_contributor . ' name="mw_adminimize_disabled_metaboxes_post_contributor_items[]" value="' . $metabox . '" /></td>' . "\n";
693
+ echo '<td class="num"><input id="check_postauthor'. $x .'" type="checkbox"' . $checked_author . ' name="mw_adminimize_disabled_metaboxes_post_author_items[]" value="' . $metabox . '" /></td>' . "\n";
694
+ echo '<td class="num"><input id="check_post'. $x .'" type="checkbox"' . $checked . ' name="mw_adminimize_disabled_metaboxes_post_items[]" value="' . $metabox . '" /></td>' . "\n";
695
+ echo '<td class="num"><input id="check_postadm'. $x .'" type="checkbox"' . $checked_adm . ' name="mw_adminimize_disabled_metaboxes_post_adm_items[]" value="' . $metabox . '" /></td>' . "\n";
696
+ echo '</tr>' . "\n";
697
+ $x++;
698
+ }
699
+ ?>
700
+ <tr>
701
+ <th><?php _e('All items', 'adminimize'); ?></th>
702
+ <?php
703
+ echo '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_postsubscriber" onClick="toggleCheckboxes_postsubscriber();"><a id="atoggleCheckboxes_postsubscriber" href="javascript:toggleCheckboxes_postsubscriber();"> ' . __('All', 'adminimize') . '</a></td>';
704
+ echo '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_postcontributor" onClick="toggleCheckboxes_postcontributor();"><a id="atoggleCheckboxes_postcontributor" href="javascript:toggleCheckboxes_postcontributor();"> ' . __('All', 'adminimize') . '</a></td>';
705
+ echo '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_postauthor" onClick="toggleCheckboxes_postauthor();"><a id="atoggleCheckboxes_postauthor" href="javascript:toggleCheckboxes_postauthor();"> ' . __('All', 'adminimize') . '</a></td>';
706
+ echo '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_post" onClick="toggleCheckboxes_post();"><a id="atoggleCheckboxes_post" href="javascript:toggleCheckboxes_post();"> ' . __('All', 'adminimize') . '</a></td>';
707
+ echo '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_postadm" onClick="toggleCheckboxes_postadm();"><a id="atoggleCheckboxes_postadm" href="javascript:toggleCheckboxes_postadm();"> ' . __('All', 'adminimize') . '</a></td>';
708
+ ?>
709
+ </tr>
710
+ </tbody>
711
+ </table>
712
+
713
+ <p id="submitbutton">
714
+ <input type="hidden" name="_mw_adminimize_action" value="_mw_adminimize_insert" />
715
+ <input class="button button-primary" type="submit" name="_mw_adminimize_save" value="<?php _e('Update Options', 'adminimize'); ?> &raquo;" /><input type="hidden" name="page_options" value="'dofollow_timeout'" />
716
+ </p>
717
+
718
+ </div>
719
+ </div>
720
+ </div>
721
+
722
+ <div id="poststuff" class="ui-sortable">
723
+ <div class="postbox closed" >
724
+ <h3 id="config_edit"><?php _e('Write options - Page', 'adminimize'); ?></h3>
725
+ <div class="inside">
726
+ <br class="clear" />
727
+
728
+ <table summary="config_edit_page" class="widefat">
729
+ <thead>
730
+ <tr>
731
  <th><?php _e('Write options - Page', 'adminimize'); ?></th>
732
+ <th><?php _e('Deactivate for Subscriber', 'adminimize'); ?></th>
733
+ <th><?php _e('Deactivate for Contributor', 'adminimize'); ?></th>
734
+ <th><?php _e('Deactivate for Author', 'adminimize'); ?></th>
735
+ <th><?php _e('Deactivate for Editor', 'adminimize'); ?></th>
736
+ <th><?php _e('Deactivate for Administrator', 'adminimize'); ?></th>
737
  </tr>
738
  </thead>
739
 
740
  <tbody>
741
+ <?php
742
+ $x = 0;
743
+ foreach ($metaboxes_page as $index => $metabox) {
744
+ $checked_subscriber = ( isset($disabled_metaboxes_page_subscriber) && in_array($metabox, $disabled_metaboxes_page_subscriber) ) ? ' checked="checked"' : '';
745
+ $checked_contributor = ( isset($disabled_metaboxes_page_contributor) && in_array($metabox, $disabled_metaboxes_page_contributor) ) ? ' checked="checked"' : '';
746
+ $checked_author = ( isset($disabled_metaboxes_page_author) && in_array($metabox, $disabled_metaboxes_page_author) ) ? ' checked="checked"' : '';
747
+ $checked = ( isset($disabled_metaboxes_page) && in_array($metabox, $disabled_metaboxes_page) ) ? ' checked="checked"' : '';
748
+ $checked_adm = ( isset($disabled_metaboxes_page_adm) && in_array($metabox, $disabled_metaboxes_page_adm) ) ? ' checked="checked"' : '';
749
+
750
+ echo '<tr>' . "\n";
751
+ echo '<td>' . $metaboxes_names_page[$index] . ' <span style="color:#ccc; font-weight: 400;">(' . $metabox . ')</span> </td>' . "\n";
752
+ echo '<td class="num"><input id="check_pagesubscriber'. $x .'" type="checkbox"' . $checked_subscriber . ' name="mw_adminimize_disabled_metaboxes_page_subscriber_items[]" value="' . $metabox . '" /></td>' . "\n";
753
+ echo '<td class="num"><input id="check_pagecontributor'. $x .'" type="checkbox"' . $checked_contributor . ' name="mw_adminimize_disabled_metaboxes_page_contributor_items[]" value="' . $metabox . '" /></td>' . "\n";
754
+ echo '<td class="num"><input id="check_pageauthor'. $x .'" type="checkbox"' . $checked_author . ' name="mw_adminimize_disabled_metaboxes_page_author_items[]" value="' . $metabox . '" /></td>' . "\n";
755
+ echo '<td class="num"><input id="check_page'. $x .'" type="checkbox"' . $checked . ' name="mw_adminimize_disabled_metaboxes_page_items[]" value="' . $metabox . '" /></td>' . "\n";
756
+ echo '<td class="num"><input id="check_pageadm'. $x .'" type="checkbox"' . $checked_adm . ' name="mw_adminimize_disabled_metaboxes_page_adm_items[]" value="' . $metabox . '" /></td>' . "\n";
757
+ echo '</tr>' . "\n";
758
+ $x++;
759
+ }
760
+ ?>
761
+ <tr>
762
+ <th><?php _e('All items', 'adminimize'); ?></th>
763
+ <?php
764
+ echo '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_pagesubscriber" onClick="toggleCheckboxes_pagesubscriber();"><a id="atoggleCheckboxes_pagesubscriber" href="javascript:toggleCheckboxes_pagesubscriber();"> ' . __('All', 'adminimize') . '</a></td>';
765
+ echo '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_pagecontributor" onClick="toggleCheckboxes_pagecontributor();"><a id="atoggleCheckboxes_pagecontributor" href="javascript:toggleCheckboxes_pagecontributor();"> ' . __('All', 'adminimize') . '</a></td>';
766
+ echo '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_pageauthor" onClick="toggleCheckboxes_pageauthor();"><a id="atoggleCheckboxes_pageauthor" href="javascript:toggleCheckboxes_pageauthor();"> ' . __('All', 'adminimize') . '</a></td>';
767
+ echo '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_page" onClick="toggleCheckboxes_page();"><a id="atoggleCheckboxes_page" href="javascript:toggleCheckboxes_page();"> ' . __('All', 'adminimize') . '</a></td>';
768
+ echo '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_pageadm" onClick="toggleCheckboxes_pageadm();"><a id="atoggleCheckboxes_pageadm" href="javascript:toggleCheckboxes_pageadm();"> ' . __('All', 'adminimize') . '</a></td>';
769
+ ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
770
  </tr>
771
  </tbody>
772
  </table>
773
 
774
  <p id="submitbutton">
775
  <input type="hidden" name="_mw_adminimize_action" value="_mw_adminimize_insert" />
776
+ <input class="button button-primary" type="submit" name="_mw_adminimize_save" value="<?php _e('Update Options', 'adminimize'); ?> &raquo;" /><input type="hidden" name="page_options" value="'dofollow_timeout'" />
777
  </p>
778
  </form>
779
 
781
  </div>
782
  </div>
783
 
784
+ <div id="poststuff" class="ui-sortable">
785
  <div class="postbox closed" >
786
  <h3 id="set_theme"><?php _e('Set Theme', 'adminimize') ?></h3>
787
  <div class="inside">
795
  <th class="num"><?php _e('User-ID') ?></th>
796
  <th><?php _e('Username') ?></th>
797
  <th><?php _e('Display name publicly as') ?></th>
798
+ <th><?php _e('Admin-Color Scheme') ?></th>
799
  <th><?php _e('User Level') ?></th>
800
  <th><?php _e('Role') ?></th>
801
  </tr>
817
 
818
  $style = ( ' class="alternate"' == $style ) ? '' : ' class="alternate"';
819
  $return = '';
820
+ $return .= '<tr>' . "\n";
821
+ $return .= "\t" . '<td><input type="checkbox" name="mw_adminimize_theme_items[]" value="' . $user_id . '" /></td>' . "\n";
822
+ $return .= "\t" . '<td class="num">'. $user_id .'</td>' . "\n";
823
+ $return .= "\t" . '<td>'. $user_login .'</td>' . "\n";
824
+ $return .= "\t" . '<td>'. $display_name .'</td>' . "\n";
825
+ $return .= "\t" . '<td>'. $current_color . '</td>' . "\n";
826
+ $return .= "\t" . '<td class="num">'. $user_level . '</td>' . "\n";
827
+ $return .= "\t" . '<td>'. $role . '</td>' . "\n";
828
+ $return .= '</tr>' . "\n";
829
 
830
  print($return);
831
  }
849
  </table>
850
  <p id="submitbutton">
851
  <input type="hidden" name="_mw_adminimize_action" value="_mw_adminimize_set_theme" />
852
+ <input type="submit" name="_mw_adminimize_save" value="<?php _e('Set Theme', 'adminimize'); ?> &raquo;" class="button button-primary" />
853
  </p>
854
  </form>
855
 
857
  </div>
858
  </div>
859
 
860
+ <div id="poststuff" class="ui-sortable">
861
  <div class="postbox closed" >
862
+ <h3 id="uninstall"><?php _e('Deinstall Options', 'adminimize') ?></h3>
863
  <div class="inside">
864
 
865
  <p><?php _e('Use this option for clean your database from all entries of this plugin. When you deactivate the plugin, the deinstall of the plugin <strong>clean not</strong> all entries in the database.', 'adminimize'); ?></p>
866
  <form name="deinstall_options" method="post" id="_mw_adminimize_options_deinstall" action="?page=<?php echo $_GET['page'];?>">
867
  <?php wp_nonce_field('mw_adminimize_nonce'); ?>
868
  <p id="submitbutton">
869
+ <input type="submit" name="_mw_adminimize_deinstall" value="<?php _e('Delete Options', 'adminimize'); ?> &raquo;" class="button-secondary" />
870
  <input type="checkbox" name="_mw_adminimize_deinstall_yes" value="_mw_adminimize_deinstall" />
871
  <input type="hidden" name="_mw_adminimize_action" value="_mw_adminimize_deinstall" />
872
  </p>
876
  </div>
877
  </div>
878
 
879
+ <div id="poststuff" class="ui-sortable">
880
  <div class="postbox closed" >
881
+ <h3 id="about"><?php _e('About the plugin', 'adminimize') ?></h3>
882
  <div class="inside">
883
 
884
  <p><?php _e('Further information: Visit the <a href="http://bueltge.de/wordpress-admin-theme-adminimize/674/">plugin homepage</a> for further information or to grab the latest version of this plugin.', 'adminimize'); ?><br />&copy; Copyright 2008 - <?php echo date("Y"); ?> <a href="http://bueltge.de">Frank B&uuml;ltge</a> | <?php _e('You want to thank me? Visit my <a href="http://bueltge.de/wunschliste/">wishlist</a>.', 'adminimize'); ?></p>
889
 
890
  <script type="text/javascript">
891
  <!--
892
+ <?php if ( version_compare( substr($wp_version, 0, 3), '2.7', '<' ) ) { ?>
893
  jQuery('.postbox h3').prepend('<a class="togbox">+</a> ');
894
+ <?php } ?>
895
  jQuery('.postbox h3').click( function() { jQuery(jQuery(this).parent().get(0)).toggleClass('closed'); } );
896
  jQuery('.postbox.close-me').each(function(){
897
  jQuery(this).addClass("closed");
css/mw_admin27.css ADDED
@@ -0,0 +1,117 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #wpwrap #wphead h1 {
2
+ font: italic 1.25em Georgia, "Times New Roman", Times, serif;
3
+ position: absolute;
4
+ top: 4px;
5
+ left: 5px;
6
+ padding-left: 25px;
7
+ padding-bottom: 10px;
8
+ background: url('../../../../favicon.ico') 6px center no-repeat;
9
+ }
10
+
11
+ #wpwrap #wphead #logo50, #wpwrap #wphead #header-logo {
12
+ display: none;
13
+ }
14
+
15
+ #wpwrap #wphead #breadcrumb {
16
+ font-size: .8em;
17
+ }
18
+ #wpwrap #wphead #breadcrumb a {
19
+ color: #2583AD;
20
+ }
21
+ #wpwrap #wphead #breadcrumb a:hover {
22
+ color: #D54E21;
23
+ }
24
+
25
+ #adminmenu a {
26
+ font-size: 1em;
27
+ line-height: 1.2;
28
+ }
29
+
30
+ #adminmenu .write-new-button {
31
+ margin-top: 45px !important;
32
+ }
33
+
34
+ #poststuff h3, #normal-sortables h3, #side-sortables h3 {
35
+ padding: 0.25em 0.5em;
36
+ }
37
+ .postbox .inside {
38
+ margin-top: .5em !important;
39
+ }
40
+ #poststuff #titlediv, #normal-sortables #titlediv, #side-sortables #titlediv {
41
+ position: relative;
42
+ margin-bottom: 0;
43
+ }
44
+
45
+ #poststuff #edit-slug-box, #normal-sortables #edit-slig-box, #side-sortables #edit-slig-box {
46
+ text-align: right;
47
+ position: absolute;
48
+ top: -2em;
49
+ right: 0;
50
+ margin: 0.5em;
51
+ }
52
+
53
+ #ed_toolbar input {
54
+ padding: 0 0.2em;
55
+ }
56
+
57
+ .submitbox .submit {
58
+ font-size: smaller;
59
+ padding: 0.75em;
60
+ text-align: center;
61
+ }
62
+ .submitbox .submit input, .submitbox .submit a {
63
+ margin: 0;
64
+ padding: 0.1em 0.2em;
65
+ }
66
+ .submitbox #previewview {
67
+ padding: 0.75em;
68
+ text-align: center;
69
+ }
70
+ .submitbox #previewview a {
71
+ border-bottom: medium none;
72
+ font-size: 0.95em;
73
+ font-weight: normal;
74
+ padding: 0.25em 0.5em;
75
+ text-decoration: none;
76
+ }
77
+ .submitbox #autosave {
78
+ display: block;
79
+ padding-top: 0.25em;
80
+ }
81
+
82
+ #poststuff .postbox, #poststuff .stuffbox,
83
+ #normal-sortables .postbox, #normal-sortables .stuffbox,
84
+ #side-sortables .postbox, #side-sortables .stuffbox {
85
+ padding: 0;
86
+ }
87
+ #poststuff .togbox, #normal-sortables .togbox, #side-sortables .togbox {
88
+ background-position: -10px 0.55em;
89
+ height: 1.75em;
90
+ margin-top: 0;
91
+ }
92
+
93
+ #poststuff .closed .togbox, #normal-sortables .closed .togbox, #side-sortables .closed .togbox {
94
+ background-position: 4px 0.55em;
95
+ }
96
+ #postdivrich h3 {
97
+ padding-bottom: 20px;
98
+ margin-bottom:20px;
99
+ }
100
+
101
+ #the-comment-list .unapproved {
102
+ background-color: #FFDFD0;
103
+ }
104
+
105
+ #tagchecklist strong {
106
+ margin-left: 0 !important;
107
+ position: relative !important;
108
+ }
109
+
110
+
111
+ .meta-box-sortables .postbox .handlediv {
112
+ height: 18px;
113
+ }
114
+
115
+ .meta-box-sortables .postbox:hover .handlediv {
116
+ background-position: left -114px;
117
+ }
css/mw_classic27.css ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ @import url(../../../../wp-admin/css/colors-classic.css);
2
+ @import url(mw_basic.css);
3
+ @import url(mw_admin27.css);
4
+ @import url(mw_cat.css);
5
+
6
+ #wphead h1 #viewsite a:hover {
7
+ color: #d54e21;
8
+ }
css/mw_fresh27.css ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ @import url(../../../../wp-admin/css/colors-fresh.css);
2
+ @import url(mw_basic.css);
3
+ @import url(mw_admin27.css);
4
+ @import url(mw_cat.css);
css/mw_small_user_info27.css ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #small_user_info {
2
+ float: right;
3
+ font-size: 12px;
4
+ line-height: 46px;
5
+ height: 46px;
6
+ position:absolute;
7
+ right:15px;
8
+ top:0;
9
+ }
10
+
11
+ #small_user_info a, #small_user_info a:visited {
12
+ color: #ccc;
13
+ text-decoration: none;
14
+ }
15
+
16
+ #small_user_info p {
17
+ margin: 0;
18
+ padding: 0;
19
+ line-height: 46px;
20
+ }
21
+
22
+ #favorite-actions {
23
+ position:absolute;
24
+ right:150px;
25
+ }
css/mw_wp23.css CHANGED
@@ -1,4 +1,4 @@
1
  @import url(colors-wp23.css);
2
  @import url(mw_basic.css);
3
  @import url(mw_admin.css);
4
- @import url(mw_cat.css);
1
  @import url(colors-wp23.css);
2
  @import url(mw_basic.css);
3
  @import url(mw_admin.css);
4
+ @import url(mw_cat.css);
js/adminimize.js CHANGED
@@ -1,10 +1,28 @@
1
  jQuery(function($) {
2
- jQuery("input#ctoggleCheckboxes_menu, input#ctoggleCheckboxes_menuadm, input#ctoggleCheckboxes_post, input#ctoggleCheckboxes_postadm, input#ctoggleCheckboxes_page, input#ctoggleCheckboxes_pageadm").css("display", "none");
3
  });
4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  var bAllChecked = false;
6
  function toggleCheckboxes_menu() {
7
- jQuery("input[id^='check_menu']").not("input[id^='check_menuadm']").attr("checked", !bAllChecked);
8
  bAllChecked = !bAllChecked; jQuery('#atoggleCheckboxes_menu').text( bAllChecked ? adminimizeL10n.none : adminimizeL10n.all );
9
  }
10
 
@@ -15,9 +33,27 @@ function toggleCheckboxes_menuadm() {
15
  }
16
 
17
  //post
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  var bAllChecked = false;
19
  function toggleCheckboxes_post() {
20
- jQuery("input[id^='check_post']").not("input[id^='check_postadm']").attr("checked", !bAllChecked);
21
  bAllChecked = !bAllChecked; jQuery('#atoggleCheckboxes_post').text( bAllChecked ? adminimizeL10n.none : adminimizeL10n.all );
22
  }
23
 
@@ -28,9 +64,27 @@ function toggleCheckboxes_postadm() {
28
  }
29
 
30
  //page
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  var bAllChecked = false;
32
  function toggleCheckboxes_page() {
33
- jQuery("input[id^='check_page']").not("input[id^='check_pageadm']").attr("checked", !bAllChecked);
34
  bAllChecked = !bAllChecked; jQuery('#atoggleCheckboxes_page').text( bAllChecked ? adminimizeL10n.none : adminimizeL10n.all );
35
  }
36
 
1
  jQuery(function($) {
2
+ jQuery("input#ctoggleCheckboxes_menusubscriber, input#ctoggleCheckboxes_menucontributor, input#ctoggleCheckboxes_menuauthor, input#ctoggleCheckboxes_menu, input#ctoggleCheckboxes_menuadm, input#ctoggleCheckboxes_postsubscriber, input#ctoggleCheckboxes_postcontributor, input#ctoggleCheckboxes_postauthor, input#ctoggleCheckboxes_post, input#ctoggleCheckboxes_postadm, input#ctoggleCheckboxes_pagesubscriber, input#ctoggleCheckboxes_pagecontributor, input#ctoggleCheckboxes_pageauthor, input#ctoggleCheckboxes_page, input#ctoggleCheckboxes_pageadm").css("display", "none");
3
  });
4
 
5
+ var bAllChecked = false;
6
+ function toggleCheckboxes_menusubscriber() {
7
+ jQuery("input[id^='check_menusubscriber']").attr("checked", !bAllChecked);
8
+ bAllChecked = !bAllChecked; jQuery('#atoggleCheckboxes_menusubscriber').text( bAllChecked ? adminimizeL10n.none : adminimizeL10n.all );
9
+ }
10
+
11
+ var bAllChecked = false;
12
+ function toggleCheckboxes_menucontributor() {
13
+ jQuery("input[id^='check_menucontributor']").attr("checked", !bAllChecked);
14
+ bAllChecked = !bAllChecked; jQuery('#atoggleCheckboxes_menucontributor').text( bAllChecked ? adminimizeL10n.none : adminimizeL10n.all );
15
+ }
16
+
17
+ var bAllChecked = false;
18
+ function toggleCheckboxes_menuauthor() {
19
+ jQuery("input[id^='check_menuauthor']").attr("checked", !bAllChecked);
20
+ bAllChecked = !bAllChecked; jQuery('#atoggleCheckboxes_menuauthor').text( bAllChecked ? adminimizeL10n.none : adminimizeL10n.all );
21
+ }
22
+
23
  var bAllChecked = false;
24
  function toggleCheckboxes_menu() {
25
+ jQuery("input[id^='check_menu']").not("input[id^='check_menuadm']").not("input[id^='check_menuauthor']").not("input[id^='check_menucontributor']").not("input[id^='check_menusubscriber']").attr("checked", !bAllChecked);
26
  bAllChecked = !bAllChecked; jQuery('#atoggleCheckboxes_menu').text( bAllChecked ? adminimizeL10n.none : adminimizeL10n.all );
27
  }
28
 
33
  }
34
 
35
  //post
36
+ var bAllChecked = false;
37
+ function toggleCheckboxes_postsubscriber() {
38
+ jQuery("input[id^='check_postsubscriber']").attr("checked", !bAllChecked);
39
+ bAllChecked = !bAllChecked; jQuery('#atoggleCheckboxes_postsubsciber').text( bAllChecked ? adminimizeL10n.none : adminimizeL10n.all );
40
+ }
41
+
42
+ var bAllChecked = false;
43
+ function toggleCheckboxes_postcontributor() {
44
+ jQuery("input[id^='check_postcontributor']").attr("checked", !bAllChecked);
45
+ bAllChecked = !bAllChecked; jQuery('#atoggleCheckboxes_postcontributor').text( bAllChecked ? adminimizeL10n.none : adminimizeL10n.all );
46
+ }
47
+
48
+ var bAllChecked = false;
49
+ function toggleCheckboxes_postauthor() {
50
+ jQuery("input[id^='check_postauthor']").attr("checked", !bAllChecked);
51
+ bAllChecked = !bAllChecked; jQuery('#atoggleCheckboxes_postauthor').text( bAllChecked ? adminimizeL10n.none : adminimizeL10n.all );
52
+ }
53
+
54
  var bAllChecked = false;
55
  function toggleCheckboxes_post() {
56
+ jQuery("input[id^='check_post']").not("input[id^='check_postsubscriber']").not("input[id^='check_postcontributor']").not("input[id^='check_postauthor']").not("input[id^='check_postadm']").attr("checked", !bAllChecked);
57
  bAllChecked = !bAllChecked; jQuery('#atoggleCheckboxes_post').text( bAllChecked ? adminimizeL10n.none : adminimizeL10n.all );
58
  }
59
 
64
  }
65
 
66
  //page
67
+ var bAllChecked = false;
68
+ function toggleCheckboxes_pagesubscriber() {
69
+ jQuery("input[id^='check_pagesubscriber']").attr("checked", !bAllChecked);
70
+ bAllChecked = !bAllChecked; jQuery('#atoggleCheckboxes_pagesubscriber').text( bAllChecked ? adminimizeL10n.none : adminimizeL10n.all );
71
+ }
72
+
73
+ var bAllChecked = false;
74
+ function toggleCheckboxes_pagecontributor() {
75
+ jQuery("input[id^='check_pagecontributor']").attr("checked", !bAllChecked);
76
+ bAllChecked = !bAllChecked; jQuery('#atoggleCheckboxes_pagecontributor').text( bAllChecked ? adminimizeL10n.none : adminimizeL10n.all );
77
+ }
78
+
79
+ var bAllChecked = false;
80
+ function toggleCheckboxes_pageauthor() {
81
+ jQuery("input[id^='check_pageauthor']").attr("checked", !bAllChecked);
82
+ bAllChecked = !bAllChecked; jQuery('#atoggleCheckboxes_pageauthor').text( bAllChecked ? adminimizeL10n.none : adminimizeL10n.all );
83
+ }
84
+
85
  var bAllChecked = false;
86
  function toggleCheckboxes_page() {
87
+ jQuery("input[id^='check_page']").not("input[id^='check_pagesubscriber']").not("input[id^='check_pagecontributor']").not("input[id^='check_pageauthor']").not("input[id^='check_pageadm']").attr("checked", !bAllChecked);
88
  bAllChecked = !bAllChecked; jQuery('#atoggleCheckboxes_page').text( bAllChecked ? adminimizeL10n.none : adminimizeL10n.all );
89
  }
90
 
languages/adminimize-de_DE.mo CHANGED
Binary file
languages/adminimize-de_DE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Adminimize\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-08-13 20:49+0100\n"
6
- "PO-Revision-Date: 2008-08-13 20:51+0100\n"
7
  "Last-Translator: Frank Bueltge <frank@bueltge.de>\n"
8
  "Language-Team: Frank Bueltge <frank@bueltge.de>\n"
9
  "MIME-Version: 1.0\n"
@@ -11,494 +11,592 @@ msgstr ""
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Poedit-SourceCharset: utf-8\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Basepath: D:\\xampp\\htdocs\\wpbeta\\wp-content\\plugins\\adminimize\\\n"
 
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
- #: adminimize.php:78
18
  msgid "Unknown error."
19
  msgstr "Unbekannter Fehler."
20
 
21
- #: adminimize.php:85
22
  msgid "The updates was saved."
23
  msgstr "Die Einstellungen wurden gespeichert"
24
 
25
- #: adminimize.php:86
26
  msgid "You have not enough rights for edit entries in the database."
27
  msgstr "Du hast nicht ausreichend Rechte um diese Aktion durchzuf&uuml;hren!"
28
 
29
- #: adminimize.php:87
30
  msgid "All entries in the database was delleted."
31
  msgstr "Die Einstellungen wurde gel&ouml;scht!"
32
 
33
- #: adminimize.php:88
34
  msgid "Set the checkbox on deinstall-button."
35
  msgstr "Checkbox setzen, wenn wirklich deinstalliert werden soll!"
36
 
37
- #: adminimize.php:89
38
  msgid "Can't load menu and submenu."
39
  msgstr "Menu und Submenu k&ouml;nnen nicht geladen werden!"
40
 
41
- #: adminimize.php:90
42
  msgid "Backend-Theme was activated!"
43
  msgstr "Backend-Theme wurde zugewiesen!"
44
 
45
- #: adminimize.php:313
46
- #: adminimize_page.php:263
47
  msgid "Categories"
48
  msgstr "Kategorien"
49
 
50
- #: adminimize.php:319
51
- #: adminimize.php:330
52
  msgid "+ Add New Category"
53
  msgstr "+ Add New Category"
54
 
55
- #: adminimize.php:321
56
- #: adminimize.php:332
57
  msgid "New category name"
58
  msgstr "New category name"
59
 
60
- #: adminimize.php:322
61
- #: adminimize.php:334
62
  msgid "Parent category"
63
  msgstr "Parent category"
64
 
65
- #: adminimize.php:323
66
- #: adminimize.php:335
67
  msgid "Add"
68
  msgstr "Add"
69
 
70
- #: adminimize.php:332
71
- #: adminimize_page.php:264
72
  msgid "Add New Category"
73
  msgstr "Add New Category"
74
 
75
- #: adminimize.php:356
76
- #: adminimize.php:357
77
- #: adminimize_page.php:262
78
  msgid "Tags"
79
  msgstr "Tags"
80
 
81
- #: adminimize.php:414
82
- #: adminimize.php:456
83
- #: adminimize.php:479
 
 
 
 
 
 
 
 
84
  msgid "Classic"
85
  msgstr "Classic"
86
 
87
- #: adminimize.php:421
88
- #: adminimize.php:463
89
- #: adminimize.php:486
90
  msgid "Fresh"
91
  msgstr "Fresh"
92
 
93
- #: adminimize.php:428
94
  msgid "WordPress 2.3"
95
  msgstr "WordPress 2.3"
96
 
97
- #: adminimize.php:435
98
  msgid "Maybe i'm colorblind"
99
  msgstr "Maybe i'm colorblind"
100
 
101
- #: adminimize.php:442
102
  msgid "Grey"
103
  msgstr "Grey"
104
 
105
- #: adminimize.php:542
106
- #: adminimize.php:545
107
  msgid "Dashboard"
108
  msgstr "Dashboard"
109
 
110
- #: adminimize.php:633
111
- #: adminimize.php:635
112
- #: adminimize.php:644
113
- #: adminimize.php:646
114
- #: adminimize.php:776
115
  msgid "Log Out"
116
  msgstr "Log Out"
117
 
118
- #: adminimize.php:674
119
- #: adminimize_page.php:392
120
- #: adminimize_page.php:393
121
- #: adminimize_page.php:454
122
- #: adminimize_page.php:455
123
- #: adminimize_page.php:489
124
- #: adminimize_page.php:490
 
 
 
 
 
 
 
 
 
125
  msgid "All"
126
  msgstr "Alle"
127
 
128
- #: adminimize.php:674
129
  msgid "None"
130
  msgstr "Keine"
131
 
132
- #: adminimize.php:795
133
  msgid "Visit plugin homepage"
134
  msgstr "Visit plugin homepage"
135
 
136
- #: adminimize.php:798
137
  msgid "plugin"
138
  msgstr "plugin"
139
 
140
- #: adminimize.php:798
141
  msgid "Version"
142
  msgstr "Version"
143
 
144
- #: adminimize.php:798
145
  msgid "History"
146
  msgstr "Historie"
147
 
148
- #: adminimize.php:798
149
  msgid "Author"
150
  msgstr "Author"
151
 
152
- #: adminimize.php:801
153
  msgid "plugin activate"
154
  msgstr "plugin activate"
155
 
156
- #: adminimize.php:816
157
  msgid "Settings"
158
  msgstr "Settings"
159
 
160
- #: adminimize.php:829
161
- msgid "Adminimize Options"
162
- msgstr "Adminimize Einstellungen"
163
-
164
- #: adminimize.php:829
165
- #: adminimize_page.php:65
166
  msgid "Adminimize"
167
  msgstr "Adminimize"
168
 
169
- #: adminimize.php:841
 
 
 
 
170
  msgid "Cheatin&#8217; uh?"
171
  msgstr "Cheatin&#8217; uh?"
172
 
173
- #: adminimize_page.php:69
174
- #: adminimize_page.php:78
175
- msgid "Backend options"
176
- msgstr "Backend Einstellungen"
177
 
178
- #: adminimize_page.php:84
179
- msgid "Sidebar Width"
180
- msgstr "Sidebar Width"
181
 
182
- #: adminimize_page.php:88
183
- #: adminimize_page.php:101
184
- #: adminimize_page.php:114
185
- #: adminimize_page.php:124
186
- #: adminimize_page.php:134
187
- #: adminimize_page.php:144
188
- #: adminimize_page.php:154
189
- #: adminimize_page.php:164
 
190
  #: adminimize_page.php:189
 
 
 
 
191
  msgid "Default"
192
  msgstr "Standard"
193
 
194
- #: adminimize_page.php:93
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
195
  msgid "The sidebar on the right side in the area <em>Edit</em> is configurable. Default is 200 pixel in the WordPress Theme <em>Classic</em> and <em>Fresh</em>"
196
  msgstr "Der Sidebar am rechten Rand des Bereich <em>Schreiben</em> kann konfiguriert werden. Standard sind 200 Pixel im WordPress Theme <em>Classic</em> und <em>Fresh</em>"
197
 
198
- #: adminimize_page.php:97
199
- msgid "User-Info"
200
- msgstr "User-Info"
201
 
202
- #: adminimize_page.php:102
203
- #: adminimize_page.php:125
 
204
  msgid "Hide"
205
  msgstr "Ausblenden"
206
 
207
- #: adminimize_page.php:103
 
 
 
 
 
 
 
 
208
  msgid "Only logout"
209
  msgstr "nur Abmelden"
210
 
211
- #: adminimize_page.php:104
212
  msgid "User &amp; Logout"
213
  msgstr "User &amp; Abmelden"
214
 
215
- #: adminimize_page.php:105
216
  msgid "The &quot;User-Info-area&quot; is on the top right side of the backend. You can hide or reduced show."
217
  msgstr "Der &quot;User-Info-Bereich&quot; ist im oberen rechten Bereich zu finden und kann ausgeblendet oder reduziert dargestellt werden."
218
 
219
- #: adminimize_page.php:110
220
  msgid "Change User-Info, redirect to"
221
  msgstr "User Info ge&auml;ndert, Weiterleitung nach"
222
 
223
- #: adminimize_page.php:115
224
  msgid "Frontpage of the Blog"
225
  msgstr "Startseite des Blog"
226
 
227
- #: adminimize_page.php:116
228
  msgid "When the &quot;User-Info-area&quot; change it, then it is possible to change the redirect."
229
  msgstr "Wenn der &quot;User-Info-Bereich&quot; ge&auml;ndert wird, dann kann die die Weiterleitung nach einem Logout ge&auml;ndert werden."
230
 
231
- #: adminimize_page.php:120
 
 
 
 
 
 
 
 
232
  msgid "Footer"
233
  msgstr "Footer"
234
 
235
- #: adminimize_page.php:126
236
  msgid "The Footer-area kann hide, include all links and details."
237
  msgstr "Der Footer-Bereich kann deaktiviert werden, inklusive aller Links und Hinweise."
238
 
239
- #: adminimize_page.php:130
240
  msgid "WriteScroll"
241
  msgstr "WriteScroll"
242
 
243
- #: adminimize_page.php:135
244
- #: adminimize_page.php:145
245
- #: adminimize_page.php:155
246
- #: adminimize_page.php:165
247
- msgid "Activate"
248
- msgstr "Aktiv"
249
-
250
- #: adminimize_page.php:136
251
  msgid "With the WriteScroll option active, these pages will automatically scroll to an optimal position for editing, when you visit Write Post or Write Page."
252
  msgstr "Automatisches Scrollen zum Editor beim Aufruf der Seite Schreiben in Beitr&auml;ge und Seite."
253
 
254
- #: adminimize_page.php:140
255
  msgid "Timestamp"
256
  msgstr "Timestamp"
257
 
258
- #: adminimize_page.php:146
259
  msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
260
  msgstr "Das Feld zum &Auml;ndern des Ver&ouml;ffentlichungsdatum ist immer ge&ouml;ffnet."
261
 
262
- #: adminimize_page.php:150
263
  msgid "Thickbox FullScreen"
264
  msgstr "Thickbox FullScreen"
265
 
266
- #: adminimize_page.php:156
267
  msgid "All Thickbox-function use the full area of the browser. Thickbox is for examble in upload media-files."
268
  msgstr "Alle Thickbox-Funktionen nutzen den kompletten Raum des Browsers, zum Beispiel beim uploaden von Bildern."
269
 
270
- #: adminimize_page.php:160
271
  msgid "Advice in Footer"
272
  msgstr "Hinweis im Footer"
273
 
274
- #: adminimize_page.php:167
 
275
  msgid "In the Footer kann you display a advice for change the Default-design, (x)HTML is possible."
276
  msgstr "Im Footer kann ein Hinweis auf die aktive Ver&auml;nderung des Standard-Layout gesetzt werden, (x)HTML erlaubt."
277
 
278
- #: adminimize_page.php:185
279
  msgid "Dashboard deaktivate, redirect to"
280
  msgstr "Dashboard inaktiv, Weiterleitung nach"
281
 
282
- #: adminimize_page.php:190
283
  msgid "Manage Posts"
284
  msgstr "Verwalten Beitr&auml;ge"
285
 
286
- #: adminimize_page.php:191
287
  msgid "Manage Pages"
288
  msgstr "Verwalten Seiten"
289
 
290
- #: adminimize_page.php:192
291
  msgid "Write Post"
292
  msgstr "Schreiben Beitrag"
293
 
294
- #: adminimize_page.php:193
295
  msgid "Write Page"
296
  msgstr "Schreiben Seite"
297
 
298
- #: adminimize_page.php:194
299
  msgid "Comments"
300
  msgstr "Kommentare"
301
 
302
- #: adminimize_page.php:195
 
 
 
 
303
  msgid "You have deaktivate the Dashboard, please select a page for redirect?"
304
  msgstr "Du hast das Dashboard deaktivert, wohin soll der Nutzer weitergeleitet werden?"
305
 
306
- #: adminimize_page.php:205
307
- #: adminimize_page.php:404
308
- #: adminimize_page.php:502
309
- msgid "Update options"
 
 
310
  msgstr "Einstellungen aktualisieren"
311
 
312
- #: adminimize_page.php:214
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
313
  msgid "Menu Options"
314
  msgstr "Menu Einstellungen"
315
 
316
- #: adminimize_page.php:220
 
317
  msgid "Menu options - Menu, <span style=\\\"font-weight: 400;\\\">Submenu</span>"
318
  msgstr "Menu Einstellungen - Menu, <span style=\"font-weight: 400;\">Submenu</span>"
319
 
320
- #: adminimize_page.php:221
321
- msgid "Deactivate &lt; User Level 10 (Admin)"
322
- msgstr "Deaktivieren &lt; User Level 10 (Admin)"
323
-
324
- #: adminimize_page.php:222
325
- msgid "Deactivate for Admin's"
326
- msgstr "Deaktivieren f&uuml;r Admin's"
327
-
328
- #: adminimize_page.php:261
329
- #: adminimize_page.php:307
330
  msgid "Permalink"
331
  msgstr "Permalink"
332
 
333
- #: adminimize_page.php:265
334
  msgid "Excerpt"
335
  msgstr "Auszug"
336
 
337
- #: adminimize_page.php:266
338
  msgid "Trackbacks"
339
  msgstr "Trackbacks"
340
 
341
- #: adminimize_page.php:267
342
- #: adminimize_page.php:308
343
  msgid "Custom Fields"
344
  msgstr "Benutzerdefinierte Felder"
345
 
346
- #: adminimize_page.php:268
347
- #: adminimize_page.php:309
348
  msgid "Comments &amp; Pings"
349
  msgstr "Kommentare &amp; Pings"
350
 
351
- #: adminimize_page.php:269
352
  msgid "Password Protect This Post"
353
  msgstr "Diesen Artikel durch ein Passwort sch&uuml;tzen"
354
 
355
- #: adminimize_page.php:270
356
  msgid "Post Author"
357
  msgstr "Autor"
358
 
359
- #: adminimize_page.php:271
360
  msgid "Post Revisions"
361
  msgstr "Post Revisions"
362
 
363
- #: adminimize_page.php:272
364
  msgid "Related, Shortcuts"
365
  msgstr "Siehe auch, Tastaturk&uuml;rzel"
366
 
367
- #: adminimize_page.php:273
368
- #: adminimize_page.php:317
369
  msgid "Messenges"
370
  msgstr "Mitteilungen"
371
 
372
- #: adminimize_page.php:274
373
- #: adminimize_page.php:318
374
  msgid "h2: Advanced Options"
375
  msgstr "h2: Erweiterte Einstellungen"
376
 
377
- #: adminimize_page.php:275
378
- #: adminimize_page.php:319
379
  msgid "Media Buttons (all)"
380
  msgstr "Media Buttons (alle)"
381
 
382
- #: adminimize_page.php:279
383
- #: adminimize_page.php:323
384
  msgid "Suggested tags from"
385
  msgstr "Suggested tags from"
386
 
387
- #: adminimize_page.php:281
388
  msgid "Text Control"
389
  msgstr "Text Control"
390
 
391
- #: adminimize_page.php:283
392
- #: adminimize_page.php:325
393
  msgid "HTML Special Characters"
394
  msgstr "HTML Special Characters"
395
 
396
- #: adminimize_page.php:310
397
  msgid "Password Protect This Page"
398
  msgstr "Diese Seite mit einem Passwort versehen"
399
 
400
- #: adminimize_page.php:311
401
  msgid "Page Parent"
402
  msgstr "&Uuml;bergeordnete Seite"
403
 
404
- #: adminimize_page.php:312
405
  msgid "Page Template"
406
  msgstr "Seiten Template"
407
 
408
- #: adminimize_page.php:313
409
  msgid "Page Order"
410
  msgstr "Reihenfolge"
411
 
412
- #: adminimize_page.php:314
413
  msgid "Page Author"
414
  msgstr "Seitenautor"
415
 
416
- #: adminimize_page.php:315
417
  msgid "Page Revisions"
418
  msgstr "Page Revisions"
419
 
420
- #: adminimize_page.php:316
421
  msgid "Related"
422
  msgstr "Siehe auch"
423
 
424
- #: adminimize_page.php:391
425
- #: adminimize_page.php:452
426
- #: adminimize_page.php:487
427
  msgid "All items"
428
  msgstr "Alle w&auml;hlen"
429
 
430
- #: adminimize_page.php:413
431
- msgid "Write options"
432
- msgstr "Schreiben Einstellungen"
433
-
434
- #: adminimize_page.php:419
435
  msgid "Write options - Post"
436
  msgstr "Schreiben Einstellungen - Beitr&auml;ge"
437
 
438
- #: adminimize_page.php:420
 
439
  msgid "Write options - Page"
440
  msgstr "Schreiben Einstellungen - Seiten"
441
 
442
- #: adminimize_page.php:431
443
- #: adminimize_page.php:466
444
- msgid "Deactivate for &lt; Admin's (level 1-9)"
445
- msgstr "Deaktivieren f&uuml;r &lt; Admin (Level 1-9)"
446
-
447
- #: adminimize_page.php:432
448
- #: adminimize_page.php:467
449
- msgid "Deactivate for Admin's (level 10)"
450
- msgstr "Deaktivieren f&uuml;r Admin (Level 10)"
451
-
452
- #: adminimize_page.php:512
453
- #: adminimize_page.php:578
454
  msgid "Set Theme"
455
  msgstr "Theme zuweisen"
456
 
457
- #: adminimize_page.php:521
458
  msgid "User-ID"
459
  msgstr "User-ID"
460
 
461
- #: adminimize_page.php:522
462
  msgid "Username"
463
  msgstr "Benutzername"
464
 
465
- #: adminimize_page.php:523
466
  msgid "Display name publicly as"
467
  msgstr "Name im Blog"
468
 
469
- #: adminimize_page.php:524
470
- msgid "Admin Color Scheme"
471
- msgstr "Aktuelles Theme"
472
 
473
- #: adminimize_page.php:525
474
  msgid "User Level"
475
  msgstr "User Level"
476
 
477
- #: adminimize_page.php:526
478
  msgid "Role"
479
  msgstr "Rolle"
480
 
481
- #: adminimize_page.php:588
482
- msgid "Deinstall options"
483
- msgstr "Deinstallation der Einstellungen"
484
 
485
- #: adminimize_page.php:591
486
  msgid "Use this option for clean your database from all entries of this plugin. When you deactivate the plugin, the deinstall of the plugin <strong>clean not</strong> all entries in the database."
487
  msgstr "Nutze diese Option, um die Einstellungen f&uuml;r das Plugin in der Datenbank zu l&ouml;schen. Das Plugin entfernt die Eintr&auml;ge <strong>nicht</strong>, wenn es deaktiviert wird!"
488
 
489
- #: adminimize_page.php:595
490
- msgid "Delete options"
491
- msgstr "Einstellungen l&ouml;schen"
492
 
493
- #: adminimize_page.php:607
494
  msgid "About the plugin"
495
  msgstr "&Uuml;ber das Plugin"
496
 
497
- #: adminimize_page.php:610
498
  msgid "Further information: Visit the <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
499
  msgstr "Weitere Information: Besuche die <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">Plugin Webseite</a> f&uuml;r weitere Informationen oder hole die aktuelle Version des Plugins."
500
 
501
- #: adminimize_page.php:610
502
  msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a>."
503
  msgstr "Du willst Danke sagen? Besuche meine <a href=\"http://bueltge.de/wunschliste/\">Wunschliste</a>."
504
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Adminimize\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-12-07 16:44+0100\n"
6
+ "PO-Revision-Date: 2008-12-07 16:44+0100\n"
7
  "Last-Translator: Frank Bueltge <frank@bueltge.de>\n"
8
  "Language-Team: Frank Bueltge <frank@bueltge.de>\n"
9
  "MIME-Version: 1.0\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Poedit-SourceCharset: utf-8\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
+ "X-Poedit-Basepath: D:\\Eigene\\WP-Plugins\\adminimize\\trunk\\\n"
15
+ ": \n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: adminimize.php:75
19
  msgid "Unknown error."
20
  msgstr "Unbekannter Fehler."
21
 
22
+ #: adminimize.php:82
23
  msgid "The updates was saved."
24
  msgstr "Die Einstellungen wurden gespeichert"
25
 
26
+ #: adminimize.php:83
27
  msgid "You have not enough rights for edit entries in the database."
28
  msgstr "Du hast nicht ausreichend Rechte um diese Aktion durchzuf&uuml;hren!"
29
 
30
+ #: adminimize.php:84
31
  msgid "All entries in the database was delleted."
32
  msgstr "Die Einstellungen wurde gel&ouml;scht!"
33
 
34
+ #: adminimize.php:85
35
  msgid "Set the checkbox on deinstall-button."
36
  msgstr "Checkbox setzen, wenn wirklich deinstalliert werden soll!"
37
 
38
+ #: adminimize.php:86
39
  msgid "Can't load menu and submenu."
40
  msgstr "Menu und Submenu k&ouml;nnen nicht geladen werden!"
41
 
42
+ #: adminimize.php:87
43
  msgid "Backend-Theme was activated!"
44
  msgstr "Backend-Theme wurde zugewiesen!"
45
 
46
+ #: adminimize.php:272
47
+ #: adminimize_page.php:450
48
  msgid "Categories"
49
  msgstr "Kategorien"
50
 
51
+ #: adminimize.php:278
52
+ #: adminimize.php:289
53
  msgid "+ Add New Category"
54
  msgstr "+ Add New Category"
55
 
56
+ #: adminimize.php:280
57
+ #: adminimize.php:291
58
  msgid "New category name"
59
  msgstr "New category name"
60
 
61
+ #: adminimize.php:281
62
+ #: adminimize.php:293
63
  msgid "Parent category"
64
  msgstr "Parent category"
65
 
66
+ #: adminimize.php:282
67
+ #: adminimize.php:294
68
  msgid "Add"
69
  msgstr "Add"
70
 
71
+ #: adminimize.php:291
72
+ #: adminimize_page.php:451
73
  msgid "Add New Category"
74
  msgstr "Add New Category"
75
 
76
+ #: adminimize.php:315
77
+ #: adminimize.php:316
78
+ #: adminimize_page.php:449
79
  msgid "Tags"
80
  msgstr "Tags"
81
 
82
+ #: adminimize.php:375
83
+ msgid "Blue"
84
+ msgstr "Blau"
85
+
86
+ #: adminimize.php:382
87
+ msgid "Gray"
88
+ msgstr "Grau"
89
+
90
+ #: adminimize.php:390
91
+ #: adminimize.php:432
92
+ #: adminimize.php:455
93
  msgid "Classic"
94
  msgstr "Classic"
95
 
96
+ #: adminimize.php:397
97
+ #: adminimize.php:439
98
+ #: adminimize.php:462
99
  msgid "Fresh"
100
  msgstr "Fresh"
101
 
102
+ #: adminimize.php:404
103
  msgid "WordPress 2.3"
104
  msgstr "WordPress 2.3"
105
 
106
+ #: adminimize.php:411
107
  msgid "Maybe i'm colorblind"
108
  msgstr "Maybe i'm colorblind"
109
 
110
+ #: adminimize.php:418
111
  msgid "Grey"
112
  msgstr "Grey"
113
 
114
+ #: adminimize.php:586
115
+ #: adminimize.php:589
116
  msgid "Dashboard"
117
  msgstr "Dashboard"
118
 
119
+ #: adminimize.php:711
120
+ #: adminimize.php:713
121
+ #: adminimize.php:726
122
+ #: adminimize.php:728
123
+ #: adminimize.php:919
124
  msgid "Log Out"
125
  msgstr "Log Out"
126
 
127
+ #: adminimize.php:764
128
+ #: adminimize_page.php:639
129
+ #: adminimize_page.php:640
130
+ #: adminimize_page.php:641
131
+ #: adminimize_page.php:642
132
+ #: adminimize_page.php:643
133
+ #: adminimize_page.php:703
134
+ #: adminimize_page.php:704
135
+ #: adminimize_page.php:705
136
+ #: adminimize_page.php:706
137
+ #: adminimize_page.php:707
138
+ #: adminimize_page.php:764
139
+ #: adminimize_page.php:765
140
+ #: adminimize_page.php:766
141
+ #: adminimize_page.php:767
142
+ #: adminimize_page.php:768
143
  msgid "All"
144
  msgstr "Alle"
145
 
146
+ #: adminimize.php:764
147
  msgid "None"
148
  msgstr "Keine"
149
 
150
+ #: adminimize.php:938
151
  msgid "Visit plugin homepage"
152
  msgstr "Visit plugin homepage"
153
 
154
+ #: adminimize.php:941
155
  msgid "plugin"
156
  msgstr "plugin"
157
 
158
+ #: adminimize.php:941
159
  msgid "Version"
160
  msgstr "Version"
161
 
162
+ #: adminimize.php:941
163
  msgid "History"
164
  msgstr "Historie"
165
 
166
+ #: adminimize.php:941
167
  msgid "Author"
168
  msgstr "Author"
169
 
170
+ #: adminimize.php:944
171
  msgid "plugin activate"
172
  msgstr "plugin activate"
173
 
174
+ #: adminimize.php:959
175
  msgid "Settings"
176
  msgstr "Settings"
177
 
178
+ #: adminimize.php:1024
179
+ #: adminimize_page.php:66
 
 
 
 
180
  msgid "Adminimize"
181
  msgstr "Adminimize"
182
 
183
+ #: adminimize.php:1026
184
+ msgid "Adminimize Options"
185
+ msgstr "Adminimize Einstellungen"
186
+
187
+ #: adminimize.php:1038
188
  msgid "Cheatin&#8217; uh?"
189
  msgstr "Cheatin&#8217; uh?"
190
 
191
+ #: adminimize_page.php:70
192
+ msgid "Backend Options"
193
+ msgstr "Einstellungen Backend"
 
194
 
195
+ #: adminimize_page.php:80
196
+ msgid "Favorite Actions"
197
+ msgstr "Favoriten"
198
 
199
+ #: adminimize_page.php:84
200
+ #: adminimize_page.php:94
201
+ #: adminimize_page.php:105
202
+ #: adminimize_page.php:115
203
+ #: adminimize_page.php:135
204
+ #: adminimize_page.php:146
205
+ #: adminimize_page.php:159
206
+ #: adminimize_page.php:169
207
+ #: adminimize_page.php:179
208
  #: adminimize_page.php:189
209
+ #: adminimize_page.php:199
210
+ #: adminimize_page.php:209
211
+ #: adminimize_page.php:219
212
+ #: adminimize_page.php:270
213
  msgid "Default"
214
  msgstr "Standard"
215
 
216
+ #: adminimize_page.php:85
217
+ #: adminimize_page.php:95
218
+ #: adminimize_page.php:106
219
+ #: adminimize_page.php:170
220
+ #: adminimize_page.php:190
221
+ #: adminimize_page.php:200
222
+ #: adminimize_page.php:210
223
+ #: adminimize_page.php:220
224
+ msgid "Activate"
225
+ msgstr "Aktiv"
226
+
227
+ #: adminimize_page.php:86
228
+ msgid "It is possible to hide the favorite-actions in the header."
229
+ msgstr "Es ist möglich die Favoriten-Zugriffe im Header auszublenden."
230
+
231
+ #: adminimize_page.php:90
232
+ msgid "Screen Options"
233
+ msgstr "Optionen einblenden"
234
+
235
+ #: adminimize_page.php:96
236
+ msgid "It is possible to hide the screen-options."
237
+ msgstr "Es ist möglich den Bereich der \"Optionen einblenden\" in allen Bereichen auszublenden."
238
+
239
+ #: adminimize_page.php:101
240
+ msgid "Menu Order"
241
+ msgstr "Menu Reihenfolge"
242
+
243
+ #: adminimize_page.php:107
244
+ msgid "It is possible to set a new menu-order."
245
+ msgstr "Setzt eine neue Reihenfolge der Menustruktur auf."
246
+
247
+ #: adminimize_page.php:111
248
+ msgid "Sidebar Width"
249
+ msgstr "Sidebar Width"
250
+
251
+ #: adminimize_page.php:120
252
  msgid "The sidebar on the right side in the area <em>Edit</em> is configurable. Default is 200 pixel in the WordPress Theme <em>Classic</em> and <em>Fresh</em>"
253
  msgstr "Der Sidebar am rechten Rand des Bereich <em>Schreiben</em> kann konfiguriert werden. Standard sind 200 Pixel im WordPress Theme <em>Classic</em> und <em>Fresh</em>"
254
 
255
+ #: adminimize_page.php:131
256
+ msgid "Dashmenu"
257
+ msgstr "Dashmenu"
258
 
259
+ #: adminimize_page.php:136
260
+ #: adminimize_page.php:147
261
+ #: adminimize_page.php:180
262
  msgid "Hide"
263
  msgstr "Ausblenden"
264
 
265
+ #: adminimize_page.php:137
266
+ msgid "The &quot;Dashboard-area&quot; is on the top left side of the backend. You can hide show."
267
+ msgstr "Unbekannter Fehler."
268
+
269
+ #: adminimize_page.php:142
270
+ msgid "User-Info"
271
+ msgstr "User-Info"
272
+
273
+ #: adminimize_page.php:148
274
  msgid "Only logout"
275
  msgstr "nur Abmelden"
276
 
277
+ #: adminimize_page.php:149
278
  msgid "User &amp; Logout"
279
  msgstr "User &amp; Abmelden"
280
 
281
+ #: adminimize_page.php:150
282
  msgid "The &quot;User-Info-area&quot; is on the top right side of the backend. You can hide or reduced show."
283
  msgstr "Der &quot;User-Info-Bereich&quot; ist im oberen rechten Bereich zu finden und kann ausgeblendet oder reduziert dargestellt werden."
284
 
285
+ #: adminimize_page.php:155
286
  msgid "Change User-Info, redirect to"
287
  msgstr "User Info ge&auml;ndert, Weiterleitung nach"
288
 
289
+ #: adminimize_page.php:160
290
  msgid "Frontpage of the Blog"
291
  msgstr "Startseite des Blog"
292
 
293
+ #: adminimize_page.php:161
294
  msgid "When the &quot;User-Info-area&quot; change it, then it is possible to change the redirect."
295
  msgstr "Wenn der &quot;User-Info-Bereich&quot; ge&auml;ndert wird, dann kann die die Weiterleitung nach einem Logout ge&auml;ndert werden."
296
 
297
+ #: adminimize_page.php:165
298
+ msgid "Admin Color Scheme"
299
+ msgstr "Farbschema verwalten"
300
+
301
+ #: adminimize_page.php:171
302
+ msgid "It is possible to hide the Admin Color Schemes."
303
+ msgstr "Es ist möglich den Bereich der \"Farbschema verwalten\" im Profil des Users auszublenden."
304
+
305
+ #: adminimize_page.php:175
306
  msgid "Footer"
307
  msgstr "Footer"
308
 
309
+ #: adminimize_page.php:181
310
  msgid "The Footer-area kann hide, include all links and details."
311
  msgstr "Der Footer-Bereich kann deaktiviert werden, inklusive aller Links und Hinweise."
312
 
313
+ #: adminimize_page.php:185
314
  msgid "WriteScroll"
315
  msgstr "WriteScroll"
316
 
317
+ #: adminimize_page.php:191
 
 
 
 
 
 
 
318
  msgid "With the WriteScroll option active, these pages will automatically scroll to an optimal position for editing, when you visit Write Post or Write Page."
319
  msgstr "Automatisches Scrollen zum Editor beim Aufruf der Seite Schreiben in Beitr&auml;ge und Seite."
320
 
321
+ #: adminimize_page.php:195
322
  msgid "Timestamp"
323
  msgstr "Timestamp"
324
 
325
+ #: adminimize_page.php:201
326
  msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
327
  msgstr "Das Feld zum &Auml;ndern des Ver&ouml;ffentlichungsdatum ist immer ge&ouml;ffnet."
328
 
329
+ #: adminimize_page.php:205
330
  msgid "Thickbox FullScreen"
331
  msgstr "Thickbox FullScreen"
332
 
333
+ #: adminimize_page.php:211
334
  msgid "All Thickbox-function use the full area of the browser. Thickbox is for examble in upload media-files."
335
  msgstr "Alle Thickbox-Funktionen nutzen den kompletten Raum des Browsers, zum Beispiel beim uploaden von Bildern."
336
 
337
+ #: adminimize_page.php:215
338
  msgid "Advice in Footer"
339
  msgstr "Hinweis im Footer"
340
 
341
+ #: adminimize_page.php:222
342
+ #, fuzzy
343
  msgid "In the Footer kann you display a advice for change the Default-design, (x)HTML is possible."
344
  msgstr "Im Footer kann ein Hinweis auf die aktive Ver&auml;nderung des Standard-Layout gesetzt werden, (x)HTML erlaubt."
345
 
346
+ #: adminimize_page.php:266
347
  msgid "Dashboard deaktivate, redirect to"
348
  msgstr "Dashboard inaktiv, Weiterleitung nach"
349
 
350
+ #: adminimize_page.php:271
351
  msgid "Manage Posts"
352
  msgstr "Verwalten Beitr&auml;ge"
353
 
354
+ #: adminimize_page.php:272
355
  msgid "Manage Pages"
356
  msgstr "Verwalten Seiten"
357
 
358
+ #: adminimize_page.php:273
359
  msgid "Write Post"
360
  msgstr "Schreiben Beitrag"
361
 
362
+ #: adminimize_page.php:274
363
  msgid "Write Page"
364
  msgstr "Schreiben Seite"
365
 
366
+ #: adminimize_page.php:275
367
  msgid "Comments"
368
  msgstr "Kommentare"
369
 
370
+ #: adminimize_page.php:276
371
+ msgid "other Page"
372
+ msgstr "andere Seite"
373
+
374
+ #: adminimize_page.php:279
375
  msgid "You have deaktivate the Dashboard, please select a page for redirect?"
376
  msgstr "Du hast das Dashboard deaktivert, wohin soll der Nutzer weitergeleitet werden?"
377
 
378
+ #: adminimize_page.php:288
379
+ #: adminimize_page.php:374
380
+ #: adminimize_page.php:654
381
+ #: adminimize_page.php:715
382
+ #: adminimize_page.php:776
383
+ msgid "Update Options"
384
  msgstr "Einstellungen aktualisieren"
385
 
386
+ #: adminimize_page.php:304
387
+ #: adminimize_page.php:310
388
+ msgid "Top Menu Options"
389
+ msgstr "Top Menu Einstellungen"
390
+
391
+ #: adminimize_page.php:311
392
+ #: adminimize_page.php:391
393
+ #: adminimize_page.php:671
394
+ #: adminimize_page.php:732
395
+ msgid "Deactivate for Subscriber"
396
+ msgstr "Deaktiviere für Registrierte Leser"
397
+
398
+ #: adminimize_page.php:312
399
+ #: adminimize_page.php:392
400
+ #: adminimize_page.php:672
401
+ #: adminimize_page.php:733
402
+ msgid "Deactivate for Contributor"
403
+ msgstr "Deaktiviere für Mitarbeiter"
404
+
405
+ #: adminimize_page.php:313
406
+ #: adminimize_page.php:393
407
+ #: adminimize_page.php:673
408
+ #: adminimize_page.php:734
409
+ msgid "Deactivate for Author"
410
+ msgstr "Deaktiviere für Autoren"
411
+
412
+ #: adminimize_page.php:314
413
+ #: adminimize_page.php:394
414
+ #: adminimize_page.php:674
415
+ #: adminimize_page.php:735
416
+ msgid "Deactivate for Editor"
417
+ msgstr "Deaktiviere für Herausgeber"
418
+
419
+ #: adminimize_page.php:315
420
+ #: adminimize_page.php:395
421
+ #: adminimize_page.php:675
422
+ #: adminimize_page.php:736
423
+ msgid "Deactivate for Administrator"
424
+ msgstr "Deaktiviere für Admin's"
425
+
426
+ #: adminimize_page.php:384
427
  msgid "Menu Options"
428
  msgstr "Menu Einstellungen"
429
 
430
+ #: adminimize_page.php:390
431
+ #, fuzzy
432
  msgid "Menu options - Menu, <span style=\\\"font-weight: 400;\\\">Submenu</span>"
433
  msgstr "Menu Einstellungen - Menu, <span style=\"font-weight: 400;\">Submenu</span>"
434
 
435
+ #: adminimize_page.php:448
436
+ #: adminimize_page.php:508
 
 
 
 
 
 
 
 
437
  msgid "Permalink"
438
  msgstr "Permalink"
439
 
440
+ #: adminimize_page.php:452
441
  msgid "Excerpt"
442
  msgstr "Auszug"
443
 
444
+ #: adminimize_page.php:453
445
  msgid "Trackbacks"
446
  msgstr "Trackbacks"
447
 
448
+ #: adminimize_page.php:454
449
+ #: adminimize_page.php:509
450
  msgid "Custom Fields"
451
  msgstr "Benutzerdefinierte Felder"
452
 
453
+ #: adminimize_page.php:455
454
+ #: adminimize_page.php:510
455
  msgid "Comments &amp; Pings"
456
  msgstr "Kommentare &amp; Pings"
457
 
458
+ #: adminimize_page.php:456
459
  msgid "Password Protect This Post"
460
  msgstr "Diesen Artikel durch ein Passwort sch&uuml;tzen"
461
 
462
+ #: adminimize_page.php:457
463
  msgid "Post Author"
464
  msgstr "Autor"
465
 
466
+ #: adminimize_page.php:458
467
  msgid "Post Revisions"
468
  msgstr "Post Revisions"
469
 
470
+ #: adminimize_page.php:459
471
  msgid "Related, Shortcuts"
472
  msgstr "Siehe auch, Tastaturk&uuml;rzel"
473
 
474
+ #: adminimize_page.php:460
475
+ #: adminimize_page.php:518
476
  msgid "Messenges"
477
  msgstr "Mitteilungen"
478
 
479
+ #: adminimize_page.php:461
480
+ #: adminimize_page.php:519
481
  msgid "h2: Advanced Options"
482
  msgstr "h2: Erweiterte Einstellungen"
483
 
484
+ #: adminimize_page.php:462
485
+ #: adminimize_page.php:520
486
  msgid "Media Buttons (all)"
487
  msgstr "Media Buttons (alle)"
488
 
489
+ #: adminimize_page.php:466
490
+ #: adminimize_page.php:524
491
  msgid "Suggested tags from"
492
  msgstr "Suggested tags from"
493
 
494
+ #: adminimize_page.php:468
495
  msgid "Text Control"
496
  msgstr "Text Control"
497
 
498
+ #: adminimize_page.php:470
499
+ #: adminimize_page.php:526
500
  msgid "HTML Special Characters"
501
  msgstr "HTML Special Characters"
502
 
503
+ #: adminimize_page.php:511
504
  msgid "Password Protect This Page"
505
  msgstr "Diese Seite mit einem Passwort versehen"
506
 
507
+ #: adminimize_page.php:512
508
  msgid "Page Parent"
509
  msgstr "&Uuml;bergeordnete Seite"
510
 
511
+ #: adminimize_page.php:513
512
  msgid "Page Template"
513
  msgstr "Seiten Template"
514
 
515
+ #: adminimize_page.php:514
516
  msgid "Page Order"
517
  msgstr "Reihenfolge"
518
 
519
+ #: adminimize_page.php:515
520
  msgid "Page Author"
521
  msgstr "Seitenautor"
522
 
523
+ #: adminimize_page.php:516
524
  msgid "Page Revisions"
525
  msgstr "Page Revisions"
526
 
527
+ #: adminimize_page.php:517
528
  msgid "Related"
529
  msgstr "Siehe auch"
530
 
531
+ #: adminimize_page.php:638
532
+ #: adminimize_page.php:701
533
+ #: adminimize_page.php:762
534
  msgid "All items"
535
  msgstr "Alle w&auml;hlen"
536
 
537
+ #: adminimize_page.php:663
538
+ #: adminimize_page.php:670
 
 
 
539
  msgid "Write options - Post"
540
  msgstr "Schreiben Einstellungen - Beitr&auml;ge"
541
 
542
+ #: adminimize_page.php:724
543
+ #: adminimize_page.php:731
544
  msgid "Write options - Page"
545
  msgstr "Schreiben Einstellungen - Seiten"
546
 
547
+ #: adminimize_page.php:786
548
+ #: adminimize_page.php:852
 
 
 
 
 
 
 
 
 
 
549
  msgid "Set Theme"
550
  msgstr "Theme zuweisen"
551
 
552
+ #: adminimize_page.php:795
553
  msgid "User-ID"
554
  msgstr "User-ID"
555
 
556
+ #: adminimize_page.php:796
557
  msgid "Username"
558
  msgstr "Benutzername"
559
 
560
+ #: adminimize_page.php:797
561
  msgid "Display name publicly as"
562
  msgstr "Name im Blog"
563
 
564
+ #: adminimize_page.php:798
565
+ msgid "Admin-Color Scheme"
566
+ msgstr "Admin Farbschema"
567
 
568
+ #: adminimize_page.php:799
569
  msgid "User Level"
570
  msgstr "User Level"
571
 
572
+ #: adminimize_page.php:800
573
  msgid "Role"
574
  msgstr "Rolle"
575
 
576
+ #: adminimize_page.php:862
577
+ msgid "Deinstall Options"
578
+ msgstr "Einstellungen deinstallieren"
579
 
580
+ #: adminimize_page.php:865
581
  msgid "Use this option for clean your database from all entries of this plugin. When you deactivate the plugin, the deinstall of the plugin <strong>clean not</strong> all entries in the database."
582
  msgstr "Nutze diese Option, um die Einstellungen f&uuml;r das Plugin in der Datenbank zu l&ouml;schen. Das Plugin entfernt die Eintr&auml;ge <strong>nicht</strong>, wenn es deaktiviert wird!"
583
 
584
+ #: adminimize_page.php:869
585
+ msgid "Delete Options"
586
+ msgstr "Einstellungen Löschen"
587
 
588
+ #: adminimize_page.php:881
589
  msgid "About the plugin"
590
  msgstr "&Uuml;ber das Plugin"
591
 
592
+ #: adminimize_page.php:884
593
  msgid "Further information: Visit the <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
594
  msgstr "Weitere Information: Besuche die <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">Plugin Webseite</a> f&uuml;r weitere Informationen oder hole die aktuelle Version des Plugins."
595
 
596
+ #: adminimize_page.php:884
597
  msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a>."
598
  msgstr "Du willst Danke sagen? Besuche meine <a href=\"http://bueltge.de/wunschliste/\">Wunschliste</a>."
599
 
600
+ #~ msgid "Write Options"
601
+ #~ msgstr "Einstellungen Schreiben"
602
+
languages/adminimize-es_ES.mo ADDED
Binary file
languages/adminimize-es_ES.po ADDED
@@ -0,0 +1,585 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Adminimize\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-11-03 10:55+0100\n"
6
+ "PO-Revision-Date: 2008-11-04 17:41-0300\n"
7
+ "Last-Translator: Gabriel Scheffer <scheffer.gabriel@gmail.com>\n"
8
+ "Language-Team: Frank Bueltge <frank@bueltge.de>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-SourceCharset: utf-8\n"
13
+ "X-Poedit-KeywordsList: __;_e\n"
14
+ "X-Poedit-Basepath: D:\\Eigene\\WP-Plugins\\adminimize\\trunk\\\n"
15
+ ": \n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: adminimize.php:75
19
+ msgid "Unknown error."
20
+ msgstr "Error desconocido."
21
+
22
+ #: adminimize.php:82
23
+ msgid "The updates was saved."
24
+ msgstr "Los cambios se modificaron con éxito."
25
+
26
+ #: adminimize.php:83
27
+ msgid "You have not enough rights for edit entries in the database."
28
+ msgstr "Usted no tiene derechos suficientes para editar las entradas en la base de datos."
29
+
30
+ #: adminimize.php:84
31
+ msgid "All entries in the database was delleted."
32
+ msgstr "Todas las entradas en la base de datos se han eliminado."
33
+
34
+ #: adminimize.php:85
35
+ msgid "Set the checkbox on deinstall-button."
36
+ msgstr "Clicke en la casilla de verificación y presione el botón desinstalar."
37
+
38
+ #: adminimize.php:86
39
+ msgid "Can't load menu and submenu."
40
+ msgstr "No se puede cargar el menú y submenú."
41
+
42
+ #: adminimize.php:87
43
+ msgid "Backend-Theme was activated!"
44
+ msgstr "El tema se ha activado!"
45
+
46
+ #: adminimize.php:272
47
+ #: adminimize_page.php:446
48
+ msgid "Categories"
49
+ msgstr "Categorías"
50
+
51
+ #: adminimize.php:278
52
+ #: adminimize.php:289
53
+ msgid "+ Add New Category"
54
+ msgstr "+ Agregar nueva categoría"
55
+
56
+ #: adminimize.php:280
57
+ #: adminimize.php:291
58
+ msgid "New category name"
59
+ msgstr "Nueva categoría"
60
+
61
+ #: adminimize.php:281
62
+ #: adminimize.php:293
63
+ msgid "Parent category"
64
+ msgstr "Categoría padre "
65
+
66
+ #: adminimize.php:282
67
+ #: adminimize.php:294
68
+ msgid "Add"
69
+ msgstr "Agregar"
70
+
71
+ #: adminimize.php:291
72
+ #: adminimize_page.php:447
73
+ msgid "Add New Category"
74
+ msgstr "Agregar nueva categoría"
75
+
76
+ #: adminimize.php:315
77
+ #: adminimize.php:316
78
+ #: adminimize_page.php:445
79
+ msgid "Tags"
80
+ msgstr "Etiquetas"
81
+
82
+ #: adminimize.php:375
83
+ #: adminimize.php:412
84
+ #: adminimize.php:454
85
+ #: adminimize.php:477
86
+ msgid "Classic"
87
+ msgstr "Classic"
88
+
89
+ #: adminimize.php:382
90
+ #: adminimize.php:419
91
+ #: adminimize.php:461
92
+ #: adminimize.php:484
93
+ msgid "Fresh"
94
+ msgstr "Fresh"
95
+
96
+ #: adminimize.php:397
97
+ #: adminimize.php:433
98
+ msgid "Maybe i'm colorblind"
99
+ msgstr "Maybe \"Colorido\""
100
+
101
+ #: adminimize.php:404
102
+ #: adminimize.php:440
103
+ msgid "Grey"
104
+ msgstr "Gris"
105
+
106
+ #: adminimize.php:426
107
+ msgid "WordPress 2.3"
108
+ msgstr "WordPress 2.3"
109
+
110
+ #: adminimize.php:608
111
+ #: adminimize.php:611
112
+ msgid "Dashboard"
113
+ msgstr "Dashboard"
114
+
115
+ #: adminimize.php:733
116
+ #: adminimize.php:735
117
+ #: adminimize.php:748
118
+ #: adminimize.php:750
119
+ #: adminimize.php:936
120
+ msgid "Log Out"
121
+ msgstr "Cerrar sesión"
122
+
123
+ #: adminimize.php:786
124
+ #: adminimize_page.php:635
125
+ #: adminimize_page.php:636
126
+ #: adminimize_page.php:637
127
+ #: adminimize_page.php:638
128
+ #: adminimize_page.php:639
129
+ #: adminimize_page.php:699
130
+ #: adminimize_page.php:700
131
+ #: adminimize_page.php:701
132
+ #: adminimize_page.php:702
133
+ #: adminimize_page.php:703
134
+ #: adminimize_page.php:747
135
+ #: adminimize_page.php:748
136
+ #: adminimize_page.php:749
137
+ #: adminimize_page.php:750
138
+ #: adminimize_page.php:751
139
+ msgid "All"
140
+ msgstr "Todo"
141
+
142
+ #: adminimize.php:786
143
+ msgid "None"
144
+ msgstr "Ninguno"
145
+
146
+ #: adminimize.php:955
147
+ msgid "Visit plugin homepage"
148
+ msgstr "Visita la página principal del plugin"
149
+
150
+ #: adminimize.php:958
151
+ msgid "plugin"
152
+ msgstr "plugin"
153
+
154
+ #: adminimize.php:958
155
+ msgid "Version"
156
+ msgstr "Versión"
157
+
158
+ #: adminimize.php:958
159
+ msgid "History"
160
+ msgstr "Historia"
161
+
162
+ #: adminimize.php:958
163
+ msgid "Author"
164
+ msgstr "Autor"
165
+
166
+ #: adminimize.php:961
167
+ msgid "plugin activate"
168
+ msgstr "activar el plugin"
169
+
170
+ #: adminimize.php:976
171
+ msgid "Settings"
172
+ msgstr "Configuración"
173
+
174
+ #: adminimize.php:1040
175
+ #: adminimize_page.php:66
176
+ msgid "Adminimize"
177
+ msgstr "Adminimize"
178
+
179
+ #: adminimize.php:1042
180
+ msgid "Adminimize Options"
181
+ msgstr "Opciones de Adminimize "
182
+
183
+ #: adminimize.php:1054
184
+ msgid "Cheatin&#8217; uh?"
185
+ msgstr "Cheatin&#8217; uh?"
186
+
187
+ #: adminimize_page.php:70
188
+ #: adminimize_page.php:79
189
+ msgid "Backend Options"
190
+ msgstr "Opciones Generales"
191
+
192
+ #: adminimize_page.php:86
193
+ msgid "Favorite Actions"
194
+ msgstr "Acciones favoritas"
195
+
196
+ #: adminimize_page.php:90
197
+ #: adminimize_page.php:100
198
+ #: adminimize_page.php:111
199
+ #: adminimize_page.php:121
200
+ #: adminimize_page.php:141
201
+ #: adminimize_page.php:152
202
+ #: adminimize_page.php:165
203
+ #: adminimize_page.php:175
204
+ #: adminimize_page.php:185
205
+ #: adminimize_page.php:195
206
+ #: adminimize_page.php:205
207
+ #: adminimize_page.php:215
208
+ #: adminimize_page.php:266
209
+ msgid "Default"
210
+ msgstr "Predeterminado"
211
+
212
+ #: adminimize_page.php:91
213
+ #: adminimize_page.php:101
214
+ #: adminimize_page.php:112
215
+ #: adminimize_page.php:186
216
+ #: adminimize_page.php:196
217
+ #: adminimize_page.php:206
218
+ #: adminimize_page.php:216
219
+ msgid "Activate"
220
+ msgstr "Activar"
221
+
222
+ #: adminimize_page.php:92
223
+ msgid "It is possible to hide the favorite-actions in the header."
224
+ msgstr "Oculta \"Acciones favoritas\" en la cabecera."
225
+
226
+ #: adminimize_page.php:96
227
+ msgid "Screen Options"
228
+ msgstr "Opciones de la pantalla"
229
+
230
+ #: adminimize_page.php:102
231
+ msgid "It is possible to hide the screen-options."
232
+ msgstr "Oculta el boton \"Opciones de la pantalla\""
233
+
234
+ #: adminimize_page.php:107
235
+ msgid "Menu Order"
236
+ msgstr "Orden del Menú "
237
+
238
+ #: adminimize_page.php:113
239
+ msgid "It is possible to set a new menu-order."
240
+ msgstr "Asigna un nuevo orden al menú ."
241
+
242
+ #: adminimize_page.php:117
243
+ msgid "Sidebar Width"
244
+ msgstr "Ancho de la barra lateral"
245
+
246
+ #: adminimize_page.php:126
247
+ msgid "The sidebar on the right side in the area <em>Edit</em> is configurable. Default is 200 pixel in the WordPress Theme <em>Classic</em> and <em>Fresh</em>"
248
+ msgstr "La barra lateral en el lado derecho en la zona <em>Editar</em>es configurable. El valor por defecto es de 200 píxeles en el Tema WordPress <em>Classic</em> o <em>Fresh</em>"
249
+
250
+ #: adminimize_page.php:137
251
+ msgid "Dashmenu"
252
+ msgstr "Dashmenu"
253
+
254
+ #: adminimize_page.php:142
255
+ #: adminimize_page.php:153
256
+ #: adminimize_page.php:176
257
+ msgid "Hide"
258
+ msgstr "Ocultar"
259
+
260
+ #: adminimize_page.php:143
261
+ msgid "The &quot;Dashboard-area&quot; is on the top left side of the backend. You can hide show."
262
+ msgstr "Puede mostrar o esconder la parte superior izquierda de la administracion. "
263
+
264
+ #: adminimize_page.php:148
265
+ msgid "User-Info"
266
+ msgstr "Informacion del Usuario"
267
+
268
+ #: adminimize_page.php:154
269
+ msgid "Only logout"
270
+ msgstr "Solo Cerrar Sesión"
271
+
272
+ #: adminimize_page.php:155
273
+ msgid "User &amp; Logout"
274
+ msgstr "Usuario &amp; Cerrar Sesión"
275
+
276
+ #: adminimize_page.php:156
277
+ msgid "The &quot;User-Info-area&quot; is on the top right side of the backend. You can hide or reduced show."
278
+ msgstr "Usted puede ocultar o mostrar reducido el &quot;área de información de usuario&quot; \"es en la parte superior derecha\" de la Administracion. "
279
+
280
+ #: adminimize_page.php:161
281
+ msgid "Change User-Info, redirect to"
282
+ msgstr "Cambio de usuario-info, se redirige a"
283
+
284
+ #: adminimize_page.php:166
285
+ msgid "Frontpage of the Blog"
286
+ msgstr "Portada del Blog"
287
+
288
+ #: adminimize_page.php:167
289
+ msgid "When the &quot;User-Info-area&quot; change it, then it is possible to change the redirect."
290
+ msgstr "Cuando el area de informacion del usuario cambia, es posible cambiar la redirección."
291
+
292
+ #: adminimize_page.php:171
293
+ msgid "Footer"
294
+ msgstr "Pie de página"
295
+
296
+ #: adminimize_page.php:177
297
+ msgid "The Footer-area kann hide, include all links and details."
298
+ msgstr "Oculta \"TODO\" el pie de pagina."
299
+
300
+ #: adminimize_page.php:181
301
+ msgid "WriteScroll"
302
+ msgstr "WriteScroll"
303
+
304
+ #: adminimize_page.php:187
305
+ msgid "With the WriteScroll option active, these pages will automatically scroll to an optimal position for editing, when you visit Write Post or Write Page."
306
+ msgstr "Con la opción activa, la página automáticamente se modifica para una óptima edición."
307
+
308
+ #: adminimize_page.php:191
309
+ msgid "Timestamp"
310
+ msgstr "Fecha y hora"
311
+
312
+ #: adminimize_page.php:197
313
+ msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
314
+ msgstr "Deja abierto el campo de edición \"fecha y hora\", sin que usted tenga que hacer clic en el vínculo \"Modificar\"."
315
+
316
+ #: adminimize_page.php:201
317
+ msgid "Thickbox FullScreen"
318
+ msgstr "Thickbox en Pantalla Completa"
319
+
320
+ #: adminimize_page.php:207
321
+ msgid "All Thickbox-function use the full area of the browser. Thickbox is for examble in upload media-files."
322
+ msgstr "Thickbox por ejemplo se usa, para cargar los archivos de los medios."
323
+
324
+ #: adminimize_page.php:211
325
+ msgid "Advice in Footer"
326
+ msgstr "Creditos en Pie de página"
327
+
328
+ #: adminimize_page.php:218
329
+ msgid "In the Footer kann you display a advice for change the Default-design, (x)HTML is possible."
330
+ msgstr "Puede cambiar el valor por defecto del pie de pagina de su diseño mostrando creditos adicionales, (x)HTML es valido."
331
+
332
+ #: adminimize_page.php:262
333
+ msgid "Dashboard deaktivate, redirect to"
334
+ msgstr "Cuando el \"Dashboard\" se desactive, redirigir a"
335
+
336
+ #: adminimize_page.php:267
337
+ msgid "Manage Posts"
338
+ msgstr "Gestionar Entradas"
339
+
340
+ #: adminimize_page.php:268
341
+ msgid "Manage Pages"
342
+ msgstr "Gestionar Páginas"
343
+
344
+ #: adminimize_page.php:269
345
+ msgid "Write Post"
346
+ msgstr "Escribir Entrada"
347
+
348
+ #: adminimize_page.php:270
349
+ msgid "Write Page"
350
+ msgstr "Escribir Pagina"
351
+
352
+ #: adminimize_page.php:271
353
+ msgid "Comments"
354
+ msgstr "Comentarios"
355
+
356
+ #: adminimize_page.php:272
357
+ msgid "other Page"
358
+ msgstr "otra página"
359
+
360
+ #: adminimize_page.php:275
361
+ msgid "You have deaktivate the Dashboard, please select a page for redirect?"
362
+ msgstr "Usted puede desabilitar el \"Dashboard\" por favor, seleccionar una página para redireccionar?"
363
+
364
+ #: adminimize_page.php:284
365
+ #: adminimize_page.php:370
366
+ #: adminimize_page.php:650
367
+ #: adminimize_page.php:759
368
+ msgid "Update Options"
369
+ msgstr "Opciones de Actualización"
370
+
371
+ #: adminimize_page.php:300
372
+ #: adminimize_page.php:306
373
+ msgid "Top Menu Options"
374
+ msgstr "Opciones del menú superior"
375
+
376
+ #: adminimize_page.php:307
377
+ #: adminimize_page.php:387
378
+ #: adminimize_page.php:667
379
+ #: adminimize_page.php:715
380
+ msgid "Deactivate for Subscriber"
381
+ msgstr "Desactivar para el Suscriptor"
382
+
383
+ #: adminimize_page.php:308
384
+ #: adminimize_page.php:388
385
+ #: adminimize_page.php:668
386
+ #: adminimize_page.php:716
387
+ msgid "Deactivate for Contributor"
388
+ msgstr "Desactivar para Contribuyente"
389
+
390
+ #: adminimize_page.php:309
391
+ #: adminimize_page.php:389
392
+ #: adminimize_page.php:669
393
+ #: adminimize_page.php:717
394
+ msgid "Deactivate for Author"
395
+ msgstr "Desactivar para el Autor"
396
+
397
+ #: adminimize_page.php:310
398
+ #: adminimize_page.php:390
399
+ #: adminimize_page.php:670
400
+ #: adminimize_page.php:718
401
+ msgid "Deactivate for Editor"
402
+ msgstr "Desactivar para el Editor"
403
+
404
+ #: adminimize_page.php:311
405
+ #: adminimize_page.php:391
406
+ #: adminimize_page.php:671
407
+ #: adminimize_page.php:719
408
+ msgid "Deactivate for Administrator"
409
+ msgstr "Desactivar para el Administrador"
410
+
411
+ #: adminimize_page.php:380
412
+ msgid "Menu Options"
413
+ msgstr "Opciones del Menú "
414
+
415
+ #: adminimize_page.php:386
416
+ msgid "Menu options - Menu, <span style=\\\"font-weight: 400;\\\">Submenu</span>"
417
+ msgstr "Opciones de menú - Menu, <span style=\"font-weight: 400;\">Submenu</span>"
418
+
419
+ #: adminimize_page.php:444
420
+ #: adminimize_page.php:504
421
+ msgid "Permalink"
422
+ msgstr "Enlace permanente"
423
+
424
+ #: adminimize_page.php:448
425
+ msgid "Excerpt"
426
+ msgstr "Extracto"
427
+
428
+ #: adminimize_page.php:449
429
+ msgid "Trackbacks"
430
+ msgstr "Trackbacks"
431
+
432
+ #: adminimize_page.php:450
433
+ #: adminimize_page.php:505
434
+ msgid "Custom Fields"
435
+ msgstr "Campos personalizados"
436
+
437
+ #: adminimize_page.php:451
438
+ #: adminimize_page.php:506
439
+ msgid "Comments &amp; Pings"
440
+ msgstr "Comentarios &amp; Pings"
441
+
442
+ #: adminimize_page.php:452
443
+ msgid "Password Protect This Post"
444
+ msgstr "Proteger esta entrada con contraseña "
445
+
446
+ #: adminimize_page.php:453
447
+ msgid "Post Author"
448
+ msgstr "Autor"
449
+
450
+ #: adminimize_page.php:454
451
+ msgid "Post Revisions"
452
+ msgstr "Revisiones de la entrada"
453
+
454
+ #: adminimize_page.php:455
455
+ msgid "Related, Shortcuts"
456
+ msgstr "Relacionados, accesos directos"
457
+
458
+ #: adminimize_page.php:456
459
+ #: adminimize_page.php:514
460
+ msgid "Messenges"
461
+ msgstr "Mensajes"
462
+
463
+ #: adminimize_page.php:457
464
+ #: adminimize_page.php:515
465
+ msgid "h2: Advanced Options"
466
+ msgstr "h2:Opciones avanzadas"
467
+
468
+ #: adminimize_page.php:458
469
+ #: adminimize_page.php:516
470
+ msgid "Media Buttons (all)"
471
+ msgstr "Botones de los medios (todos)"
472
+
473
+ #: adminimize_page.php:462
474
+ #: adminimize_page.php:520
475
+ msgid "Suggested tags from"
476
+ msgstr "Etiquetas"
477
+
478
+ #: adminimize_page.php:464
479
+ msgid "Text Control"
480
+ msgstr "Control de texto"
481
+
482
+ #: adminimize_page.php:466
483
+ #: adminimize_page.php:522
484
+ msgid "HTML Special Characters"
485
+ msgstr "HTML Caracteres especiales"
486
+
487
+ #: adminimize_page.php:507
488
+ msgid "Password Protect This Page"
489
+ msgstr "Proteger página con contraseña"
490
+
491
+ #: adminimize_page.php:508
492
+ msgid "Page Parent"
493
+ msgstr "Page Parent"
494
+
495
+ #: adminimize_page.php:509
496
+ msgid "Page Template"
497
+ msgstr "Template de la página"
498
+
499
+ #: adminimize_page.php:510
500
+ msgid "Page Order"
501
+ msgstr "Orden de las páginas"
502
+
503
+ #: adminimize_page.php:511
504
+ msgid "Page Author"
505
+ msgstr "Autor de la página"
506
+
507
+ #: adminimize_page.php:512
508
+ msgid "Page Revisions"
509
+ msgstr "Revisiones de la página"
510
+
511
+ #: adminimize_page.php:513
512
+ msgid "Related"
513
+ msgstr "Relacionado"
514
+
515
+ #: adminimize_page.php:634
516
+ #: adminimize_page.php:697
517
+ #: adminimize_page.php:745
518
+ msgid "All items"
519
+ msgstr "Todos los artículos"
520
+
521
+ #: adminimize_page.php:659
522
+ msgid "Write Options"
523
+ msgstr "Opciones de escritura"
524
+
525
+ #: adminimize_page.php:666
526
+ msgid "Write options - Post"
527
+ msgstr "Opciones de escritura - Entradas"
528
+
529
+ #: adminimize_page.php:714
530
+ msgid "Write options - Page"
531
+ msgstr "Opciones de escritura - Paginas"
532
+
533
+ #: adminimize_page.php:769
534
+ #: adminimize_page.php:835
535
+ msgid "Set Theme"
536
+ msgstr "Seleccionar diseño"
537
+
538
+ #: adminimize_page.php:778
539
+ msgid "User-ID"
540
+ msgstr "ID del Usuario"
541
+
542
+ #: adminimize_page.php:779
543
+ msgid "Username"
544
+ msgstr "Usuario"
545
+
546
+ #: adminimize_page.php:780
547
+ msgid "Display name publicly as"
548
+ msgstr "Nombre para mostrar"
549
+
550
+ #: adminimize_page.php:781
551
+ msgid "Admin Color Scheme"
552
+ msgstr "Colores de la administración"
553
+
554
+ #: adminimize_page.php:782
555
+ msgid "User Level"
556
+ msgstr "Nivel de Usuario"
557
+
558
+ #: adminimize_page.php:783
559
+ msgid "Role"
560
+ msgstr "Role"
561
+
562
+ #: adminimize_page.php:845
563
+ msgid "Deinstall Options"
564
+ msgstr "Opciones de desinstalacion"
565
+
566
+ #: adminimize_page.php:848
567
+ msgid "Use this option for clean your database from all entries of this plugin. When you deactivate the plugin, the deinstall of the plugin <strong>clean not</strong> all entries in the database."
568
+ msgstr "Utiliza esta opción para limpiar la base de datos de todas las entradas de este plugin. Cuando desactiva o desinstalador el plugin <strong> no limpia </ strong> todas las entradas en la base de datos."
569
+
570
+ #: adminimize_page.php:852
571
+ msgid "Delete Options"
572
+ msgstr "Opciones de eliminación"
573
+
574
+ #: adminimize_page.php:864
575
+ msgid "About the plugin"
576
+ msgstr "Acerca del plugin"
577
+
578
+ #: adminimize_page.php:867
579
+ msgid "Further information: Visit the <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
580
+ msgstr "Nota: Para más información o para obtener la última versión de este plugin, visite la<a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">Pagína del Plugin</a> "
581
+
582
+ #: adminimize_page.php:867
583
+ msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a>."
584
+ msgstr "¿Quieres dar las gracias por el plugins? Visita el sitio del creador: <a href=\"http://bueltge.de/wunschliste/\">Wunschliste</a>."
585
+
languages/adminimize-tr.po ADDED
@@ -0,0 +1,559 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: adminimize\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-08-13 20:49+0100\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Gürkan Gür <seqizz@gmail.com>\n"
8
+ "Language-Team: seqizz <seqizz@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Country: Turkey\n"
13
+ "Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1\n"
14
+
15
+ #: adminimize.php:63
16
+ msgid "Unknown error."
17
+ msgstr "Bilinmeyen hata."
18
+
19
+ #: adminimize.php:70
20
+ msgid "The updates was saved."
21
+ msgstr "Değişiklikler kaydedildi."
22
+
23
+ #: adminimize.php:71
24
+ msgid "You have not enough rights for edit entries in the database."
25
+ msgstr "Veritabanındaki girdileri değiştirmek için yeterli yetkilere sahip değilsiniz."
26
+
27
+ #: adminimize.php:72
28
+ msgid "All entries in the database was delleted."
29
+ msgstr "Veritabanındaki bütün girdiler silindi."
30
+
31
+ #: adminimize.php:73
32
+ msgid "Set the checkbox on deinstall-button."
33
+ msgstr ""
34
+
35
+ #: adminimize.php:74
36
+ msgid "Can't load menu and submenu."
37
+ msgstr "Menü ve alt menü yüklenemiyor."
38
+
39
+ #: adminimize.php:75
40
+ msgid "Backend-Theme was activated!"
41
+ msgstr "Arkaplan teması aktifleştirildi!"
42
+
43
+ #: adminimize.php:239
44
+ #: adminimize_page.php:421
45
+ msgid "Categories"
46
+ msgstr "Kategotiler"
47
+
48
+ #: adminimize.php:245
49
+ #: adminimize.php:256
50
+ msgid "+ Add New Category"
51
+ msgstr "+ Yeni kategori ekle"
52
+
53
+ #: adminimize.php:247
54
+ #: adminimize.php:258
55
+ msgid "New category name"
56
+ msgstr "Yeni kategori adı"
57
+
58
+ #: adminimize.php:248
59
+ #: adminimize.php:260
60
+ msgid "Parent category"
61
+ msgstr "Üst kategori"
62
+
63
+ #: adminimize.php:249
64
+ #: adminimize.php:261
65
+ msgid "Add"
66
+ msgstr "Ekle"
67
+
68
+ #: adminimize.php:258
69
+ #: adminimize_page.php:422
70
+ msgid "Add New Category"
71
+ msgstr "Yeni Kategori Ekle"
72
+
73
+ #: adminimize.php:282
74
+ #: adminimize.php:283
75
+ #: adminimize_page.php:420
76
+ msgid "Tags"
77
+ msgstr "Etiketler"
78
+
79
+ #: adminimize.php:342
80
+ #: adminimize.php:379
81
+ #: adminimize.php:421
82
+ #: adminimize.php:444
83
+ msgid "Classic"
84
+ msgstr "Klasik"
85
+
86
+ #: adminimize.php:349
87
+ #: adminimize.php:386
88
+ #: adminimize.php:428
89
+ #: adminimize.php:451
90
+ msgid "Fresh"
91
+ msgstr "Taze"
92
+
93
+ #: adminimize.php:356
94
+ #: adminimize.php:393
95
+ msgid "WordPress 2.3"
96
+ msgstr "WordPress 2.3"
97
+
98
+ #: adminimize.php:364
99
+ #: adminimize.php:400
100
+ msgid "Maybe i'm colorblind"
101
+ msgstr "Belki ben renk körüyüm"
102
+
103
+ #: adminimize.php:371
104
+ #: adminimize.php:407
105
+ msgid "Grey"
106
+ msgstr "Gri"
107
+
108
+ #: adminimize.php:550
109
+ #: adminimize.php:553
110
+ msgid "Dashboard"
111
+ msgstr "Kontrol Paneli"
112
+
113
+ #: adminimize.php:647
114
+ #: adminimize.php:649
115
+ #: adminimize.php:658
116
+ #: adminimize.php:660
117
+ #: adminimize.php:840
118
+ msgid "Log Out"
119
+ msgstr "Çıkış"
120
+
121
+ #: adminimize.php:696
122
+ #: adminimize_page.php:608
123
+ #: adminimize_page.php:609
124
+ #: adminimize_page.php:610
125
+ #: adminimize_page.php:611
126
+ #: adminimize_page.php:612
127
+ #: adminimize_page.php:672
128
+ #: adminimize_page.php:673
129
+ #: adminimize_page.php:674
130
+ #: adminimize_page.php:675
131
+ #: adminimize_page.php:676
132
+ #: adminimize_page.php:720
133
+ #: adminimize_page.php:721
134
+ #: adminimize_page.php:722
135
+ #: adminimize_page.php:723
136
+ #: adminimize_page.php:724
137
+ msgid "All"
138
+ msgstr "Tümü"
139
+
140
+ #: adminimize.php:696
141
+ msgid "None"
142
+ msgstr "Hiçbiri"
143
+
144
+ #: adminimize.php:859
145
+ msgid "Visit plugin homepage"
146
+ msgstr "Eklenti anasayfasına git"
147
+
148
+ #: adminimize.php:862
149
+ msgid "plugin"
150
+ msgstr "eklenti"
151
+
152
+ #: adminimize.php:862
153
+ msgid "Version"
154
+ msgstr "Sürüm"
155
+
156
+ #: adminimize.php:862
157
+ msgid "History"
158
+ msgstr "Geçmiş"
159
+
160
+ #: adminimize.php:862
161
+ msgid "Author"
162
+ msgstr "Sahibi"
163
+
164
+ #: adminimize.php:865
165
+ msgid "plugin activate"
166
+ msgstr "eklenti etkinleştirme"
167
+
168
+ #: adminimize.php:880
169
+ msgid "Settings"
170
+ msgstr "Ayarlar"
171
+
172
+ #: adminimize.php:892
173
+ msgid "Adminimize Options"
174
+ msgstr "Adminimize Seçenekleri"
175
+
176
+ #: adminimize.php:892
177
+ #: adminimize_page.php:67
178
+ msgid "Adminimize"
179
+ msgstr "Adminimize"
180
+
181
+ #: adminimize.php:904
182
+ msgid "Cheatin&#8217; uh?"
183
+ msgstr ""
184
+
185
+ #: adminimize_page.php:96
186
+ msgid "Sidebar Width"
187
+ msgstr "Yan Panel Genişliği"
188
+
189
+ #: adminimize_page.php:90
190
+ #: adminimize_page.php:100
191
+ #: adminimize_page.php:120
192
+ #: adminimize_page.php:131
193
+ #: adminimize_page.php:144
194
+ #: adminimize_page.php:154
195
+ #: adminimize_page.php:164
196
+ #: adminimize_page.php:174
197
+ #: adminimize_page.php:184
198
+ #: adminimize_page.php:194
199
+ #: adminimize_page.php:243
200
+ msgid "Default"
201
+ msgstr "Standart"
202
+
203
+ #: adminimize_page.php:105
204
+ msgid "The sidebar on the right side in the area <em>Edit</em> is configurable. Default is 200 pixel in the WordPress Theme <em>Classic</em> and <em>Fresh</em>"
205
+ msgstr "Sağ taraftaki <em>Düzenle</em> bölgesindeki yan panel düzenlenebilir. Standart olarak <em>klasik</em> ve <em>taze</em> tema ile 200 piksel boyutundadır."
206
+
207
+ #: adminimize_page.php:127
208
+ msgid "User-Info"
209
+ msgstr "Kullanıcı Bilgisi"
210
+
211
+ #: adminimize_page.php:121
212
+ #: adminimize_page.php:132
213
+ #: adminimize_page.php:155
214
+ msgid "Hide"
215
+ msgstr "Gizle"
216
+
217
+ #: adminimize_page.php:133
218
+ msgid "Only logout"
219
+ msgstr "Sadece çıkış"
220
+
221
+ #: adminimize_page.php:134
222
+ msgid "User &amp; Logout"
223
+ msgstr "Kullanıcı &amp; Çıkış"
224
+
225
+ #: adminimize_page.php:135
226
+ msgid "The &quot;User-Info-area&quot; is on the top right side of the backend. You can hide or reduced show."
227
+ msgstr "&quot;Kullanıcı Bilgisi bölgesi&quot; sağ üst taraftadır. Gizleyebilir veya görüntüleyebilirsiniz."
228
+
229
+ #: adminimize_page.php:140
230
+ msgid "Change User-Info, redirect to"
231
+ msgstr "Kullanıcı Bilgisi değiştir, yönlendirme yeri"
232
+
233
+ #: adminimize_page.php:145
234
+ msgid "Frontpage of the Blog"
235
+ msgstr "Blogun önsayfası"
236
+
237
+ #: adminimize_page.php:146
238
+ msgid "When the &quot;User-Info-area&quot; change it, then it is possible to change the redirect."
239
+ msgstr "&quot;Kullanıcı bilgisi bölgesi&quot; yönlendirilebilir."
240
+
241
+ #: adminimize_page.php:150
242
+ msgid "Footer"
243
+ msgstr "Taban"
244
+
245
+ #: adminimize_page.php:156
246
+ msgid "The Footer-area kann hide, include all links and details."
247
+ msgstr "Taban bölgesi, içerdiği bütün link ve detaylar ile gizlenebilir."
248
+
249
+ #: adminimize_page.php:160
250
+ msgid "WriteScroll"
251
+ msgstr "YazmayaGit"
252
+
253
+ #: adminimize_page.php:91
254
+ #: adminimize_page.php:165
255
+ #: adminimize_page.php:175
256
+ #: adminimize_page.php:185
257
+ #: adminimize_page.php:195
258
+ msgid "Activate"
259
+ msgstr "Aktifleştir"
260
+
261
+ #: adminimize_page.php:166
262
+ msgid "With the WriteScroll option active, these pages will automatically scroll to an optimal position for editing, when you visit Write Post or Write Page."
263
+ msgstr "YazmayaGit özelliği aktifse, yazı yazmak için bir sayfaya girdiğinizde sayfa otomatik olarak yazmaya uygun bir bölgeye kayacaktır."
264
+
265
+ #: adminimize_page.php:170
266
+ msgid "Timestamp"
267
+ msgstr "Zaman Etiketi"
268
+
269
+ #: adminimize_page.php:176
270
+ msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
271
+ msgstr "Zaman etiketlerini açmak için \"Düzenle\" linkini tıklamanıza gerek kalmaz."
272
+
273
+ #: adminimize_page.php:180
274
+ msgid "Thickbox FullScreen"
275
+ msgstr "Thickbox Tam Ekran"
276
+
277
+ #: adminimize_page.php:186
278
+ msgid "All Thickbox-function use the full area of the browser. Thickbox is for examble in upload media-files."
279
+ msgstr "Ortam dosyaları yüklerken çıkacak olan kutucuğun tam ekran olarak kullanılmasını sağlar."
280
+
281
+ #: adminimize_page.php:190
282
+ msgid "Advice in Footer"
283
+ msgstr "Tabanda Tavsiyeler"
284
+
285
+ #: adminimize_page.php:197
286
+ msgid "In the Footer kann you display a advice for change the Default-design, (x)HTML is possible."
287
+ msgstr "Taban bölümde öntanımlı dizaynı değiştirmek için tavsiyeler gösterebilirsiniz, (x)HTML mümkün."
288
+
289
+ #: adminimize_page.php:239
290
+ msgid "Dashboard deaktivate, redirect to"
291
+ msgstr "Yönetim paneli pasif, yönlendirme yeri"
292
+
293
+ #: adminimize_page.php:244
294
+ msgid "Manage Posts"
295
+ msgstr "Yazıları Yönet"
296
+
297
+ #: adminimize_page.php:245
298
+ msgid "Manage Pages"
299
+ msgstr "Sayfaları Yönet"
300
+
301
+ #: adminimize_page.php:246
302
+ msgid "Write Post"
303
+ msgstr "Yazı Yaz"
304
+
305
+ #: adminimize_page.php:247
306
+ msgid "Write Page"
307
+ msgstr "Sayfa Yaz"
308
+
309
+ #: adminimize_page.php:248
310
+ msgid "Comments"
311
+ msgstr "Yorumlar"
312
+
313
+ #: adminimize_page.php:249
314
+ msgid "You have deaktivate the Dashboard, please select a page for redirect?"
315
+ msgstr "Yönetim panelini pasifleştirdiniz, lütfen yönlendirme için bir sayfa seçin."
316
+
317
+ #: adminimize_page.php:355
318
+ msgid "Menu Options"
319
+ msgstr "Menü Seçenekleri"
320
+
321
+ #: adminimize_page.php:419
322
+ #: adminimize_page.php:479
323
+ msgid "Permalink"
324
+ msgstr "Permalink"
325
+
326
+ #: adminimize_page.php:423
327
+ msgid "Excerpt"
328
+ msgstr "Seçilmiş parça"
329
+
330
+ #: adminimize_page.php:424
331
+ msgid "Trackbacks"
332
+ msgstr "Geribildirimler"
333
+
334
+ #: adminimize_page.php:425
335
+ #: adminimize_page.php:480
336
+ msgid "Custom Fields"
337
+ msgstr "Özel Bölgeler"
338
+
339
+ #: adminimize_page.php:426
340
+ #: adminimize_page.php:481
341
+ msgid "Comments &amp; Pings"
342
+ msgstr "Yorumlar &amp; Pingler"
343
+
344
+ #: adminimize_page.php:427
345
+ msgid "Password Protect This Post"
346
+ msgstr "Bu Yazıyı Şifre İle Koru"
347
+
348
+ #: adminimize_page.php:428
349
+ msgid "Post Author"
350
+ msgstr "Yazar"
351
+
352
+ #: adminimize_page.php:429
353
+ msgid "Post Revisions"
354
+ msgstr "Yazı Sürümü"
355
+
356
+ #: adminimize_page.php:430
357
+ msgid "Related, Shortcuts"
358
+ msgstr "İlgili, Kısayollar"
359
+
360
+ #: adminimize_page.php:431
361
+ #: adminimize_page.php:489
362
+ msgid "Messenges"
363
+ msgstr "Sürümler"
364
+
365
+ #: adminimize_page.php:432
366
+ #: adminimize_page.php:490
367
+ msgid "h2: Advanced Options"
368
+ msgstr "h2: Geçişmiş Seçenekler"
369
+
370
+ #: adminimize_page.php:433
371
+ #: adminimize_page.php:491
372
+ msgid "Media Buttons (all)"
373
+ msgstr "Ortam Tuşları (hepsi)"
374
+
375
+ #: adminimize_page.php:437
376
+ #: adminimize_page.php:495
377
+ msgid "Suggested tags from"
378
+ msgstr "Önerilen etiketler"
379
+
380
+ #: adminimize_page.php:439
381
+ msgid "Text Control"
382
+ msgstr "Yazı Kontrolü"
383
+
384
+ #: adminimize_page.php:441
385
+ #: adminimize_page.php:497
386
+ msgid "HTML Special Characters"
387
+ msgstr "HTML Özel Karakterleri"
388
+
389
+ #: adminimize_page.php:482
390
+ msgid "Password Protect This Page"
391
+ msgstr "Bu Sayfayı Şifre İle Koru"
392
+
393
+ #: adminimize_page.php:483
394
+ msgid "Page Parent"
395
+ msgstr "Üst Sayfa"
396
+
397
+ #: adminimize_page.php:484
398
+ msgid "Page Template"
399
+ msgstr "Sayfa Teması"
400
+
401
+ #: adminimize_page.php:485
402
+ msgid "Page Order"
403
+ msgstr "Sayfa Sırası"
404
+
405
+ #: adminimize_page.php:486
406
+ msgid "Page Author"
407
+ msgstr "Sayfa Yazarı"
408
+
409
+ #: adminimize_page.php:487
410
+ msgid "Page Revisions"
411
+ msgstr "Sayfa Sürümleri"
412
+
413
+ #: adminimize_page.php:488
414
+ msgid "Related"
415
+ msgstr "İlgili"
416
+
417
+ #: adminimize_page.php:607
418
+ #: adminimize_page.php:670
419
+ #: adminimize_page.php:718
420
+ msgid "All items"
421
+ msgstr "Bütün Nesneler"
422
+
423
+ #: adminimize_page.php:639
424
+ msgid "Write options - Post"
425
+ msgstr "Yazım Seçenekleri - Yazı"
426
+
427
+ #: adminimize_page.php:687
428
+ msgid "Write options - Page"
429
+ msgstr "Yazım Seçenekleri - Sayfa"
430
+
431
+ #: adminimize_page.php:742
432
+ #: adminimize_page.php:808
433
+ msgid "Set Theme"
434
+ msgstr "Tema Seç"
435
+
436
+ #: adminimize_page.php:751
437
+ msgid "User-ID"
438
+ msgstr "Kullanıcı Kimliği"
439
+
440
+ #: adminimize_page.php:752
441
+ msgid "Username"
442
+ msgstr "Kullanıcı Adı"
443
+
444
+ #: adminimize_page.php:753
445
+ msgid "Display name publicly as"
446
+ msgstr "İsmi göster"
447
+
448
+ #: adminimize_page.php:754
449
+ msgid "Admin Color Scheme"
450
+ msgstr "Yönetici Renk Şeması"
451
+
452
+ #: adminimize_page.php:755
453
+ msgid "User Level"
454
+ msgstr "Kullanıcı Seviyesi"
455
+
456
+ #: adminimize_page.php:756
457
+ msgid "Role"
458
+ msgstr "Rol"
459
+
460
+ #: adminimize_page.php:821
461
+ msgid "Use this option for clean your database from all entries of this plugin. When you deactivate the plugin, the deinstall of the plugin <strong>clean not</strong> all entries in the database."
462
+ msgstr "Veritabanınızı bu eklenti ile gelen bütün girdilerden temizler. Kullanılmazsa eklentinin kaldırılması veya etkisizleştirilmesi veritabanınızı <strong>temizlemeyecektir</strong>."
463
+
464
+ #: adminimize_page.php:837
465
+ msgid "About the plugin"
466
+ msgstr "Eklenti Hakkında"
467
+
468
+ #: adminimize_page.php:840
469
+ msgid "Further information: Visit the <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
470
+ msgstr "Detaylı Bilgi: Daha detaylı bilgi ve yeni sürümler için <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">eklenti anasayfası</a>nı inceleyebilirsiniz."
471
+
472
+ #: adminimize_page.php:840
473
+ msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a>."
474
+ msgstr "Teşekkür etmek mi istiyorsunuz? Lütfen<a href=\"http://bueltge.de/wunschliste/\">istek listem</a>e bakınız."
475
+
476
+ #: adminimize_page.php:86
477
+ msgid "Menu Order"
478
+ msgstr "Menü Sırası"
479
+
480
+ #: adminimize_page.php:92
481
+ msgid "It is possible to set a new menu-order."
482
+ msgstr "Yeni bir menü sırası ayarlamak mümkün."
483
+
484
+ #: adminimize_page.php:116
485
+ msgid "Dashmenu"
486
+ msgstr "Yönetim menüsü"
487
+
488
+ #: adminimize_page.php:122
489
+ msgid "The &quot;Dashboard-area&quot; is on the top left side of the backend. You can hide show."
490
+ msgstr "&quot;Yönetim Bölgesi&quot; arkaplan sayfalarının sol üstündedir. Gizleyip gösterebilirsiniz."
491
+
492
+ #: adminimize_page.php:275
493
+ #: adminimize_page.php:281
494
+ msgid "Top Menu Options"
495
+ msgstr "Üst Menü Seçenekleri"
496
+
497
+ #: adminimize_page.php:282
498
+ #: adminimize_page.php:362
499
+ #: adminimize_page.php:640
500
+ #: adminimize_page.php:688
501
+ msgid "Deactivate for Subscriber"
502
+ msgstr "Bildirici (Subscriber) için pasifleştir"
503
+
504
+ #: adminimize_page.php:283
505
+ #: adminimize_page.php:363
506
+ #: adminimize_page.php:641
507
+ #: adminimize_page.php:689
508
+ msgid "Deactivate for Contributor"
509
+ msgstr "Katkıcı (Contributor) için pasifleştir"
510
+
511
+ #: adminimize_page.php:284
512
+ #: adminimize_page.php:364
513
+ #: adminimize_page.php:642
514
+ #: adminimize_page.php:690
515
+ msgid "Deactivate for Author"
516
+ msgstr "Yazar için pasifleştir"
517
+
518
+ #: adminimize_page.php:285
519
+ #: adminimize_page.php:365
520
+ #: adminimize_page.php:643
521
+ #: adminimize_page.php:691
522
+ msgid "Deactivate for Editor"
523
+ msgstr "Editör için pasifleştir"
524
+
525
+ #: adminimize_page.php:286
526
+ #: adminimize_page.php:366
527
+ #: adminimize_page.php:644
528
+ #: adminimize_page.php:692
529
+ msgid "Deactivate for Administrator"
530
+ msgstr "Yönetici için pasifleştir"
531
+
532
+ #: adminimize_page.php:361
533
+ msgid "Menu options - Menu, <span style=\"font-weight: 400;\">Submenu</span>"
534
+ msgstr "Menü seçenekleri - Menü, <span style=\"font-weight: 400;\">Altmenü</span>"
535
+
536
+ #: adminimize_page.php:71
537
+ #: adminimize_page.php:80
538
+ msgid "Backend Options"
539
+ msgstr "Arkaplan Seçenekleri"
540
+
541
+ #: adminimize_page.php:259
542
+ #: adminimize_page.php:345
543
+ #: adminimize_page.php:623
544
+ #: adminimize_page.php:732
545
+ msgid "Update Options"
546
+ msgstr "Güncelle"
547
+
548
+ #: adminimize_page.php:632
549
+ msgid "Write Options"
550
+ msgstr "Yazma Seçenekleri"
551
+
552
+ #: adminimize_page.php:818
553
+ msgid "Deinstall Options"
554
+ msgstr "Kaldırma Seçenekleri"
555
+
556
+ #: adminimize_page.php:825
557
+ msgid "Delete Options"
558
+ msgstr "Silme Seçenekleri"
559
+
languages/adminimize.pot CHANGED
@@ -1,504 +1,559 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Adminimize\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-08-13 20:49+0100\n"
6
- "PO-Revision-Date: 2008-08-13 20:51+0100\n"
7
- "Last-Translator: Frank Bueltge <frank@bueltge.de>\n"
8
- "Language-Team: Frank Bueltge <frank@bueltge.de>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-SourceCharset: utf-8\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Basepath: D:\\xampp\\htdocs\\wpbeta\\wp-content\\plugins\\adminimize\\\n"
15
- "X-Poedit-SearchPath-0: .\n"
16
 
17
- #: adminimize.php:78
18
  msgid "Unknown error."
19
- msgstr "Unbekannter Fehler."
20
 
21
- #: adminimize.php:85
22
  msgid "The updates was saved."
23
- msgstr "Die Einstellungen wurden gespeichert"
24
 
25
- #: adminimize.php:86
26
  msgid "You have not enough rights for edit entries in the database."
27
- msgstr "Du hast nicht ausreichend Rechte um diese Aktion durchzuf&uuml;hren!"
28
 
29
- #: adminimize.php:87
30
  msgid "All entries in the database was delleted."
31
- msgstr "Die Einstellungen wurde gel&ouml;scht!"
32
 
33
- #: adminimize.php:88
34
  msgid "Set the checkbox on deinstall-button."
35
- msgstr "Checkbox setzen, wenn wirklich deinstalliert werden soll!"
36
 
37
- #: adminimize.php:89
38
  msgid "Can't load menu and submenu."
39
- msgstr "Menu und Submenu k&ouml;nnen nicht geladen werden!"
40
 
41
- #: adminimize.php:90
42
  msgid "Backend-Theme was activated!"
43
- msgstr "Backend-Theme wurde zugewiesen!"
44
 
45
- #: adminimize.php:313
46
- #: adminimize_page.php:263
47
  msgid "Categories"
48
- msgstr "Kategorien"
49
 
50
- #: adminimize.php:319
51
- #: adminimize.php:330
52
  msgid "+ Add New Category"
53
- msgstr "+ Add New Category"
54
 
55
- #: adminimize.php:321
56
- #: adminimize.php:332
57
  msgid "New category name"
58
- msgstr "New category name"
59
 
60
- #: adminimize.php:322
61
- #: adminimize.php:334
62
  msgid "Parent category"
63
- msgstr "Parent category"
64
 
65
- #: adminimize.php:323
66
- #: adminimize.php:335
67
  msgid "Add"
68
- msgstr "Add"
69
 
70
- #: adminimize.php:332
71
- #: adminimize_page.php:264
72
  msgid "Add New Category"
73
- msgstr "Add New Category"
74
 
75
- #: adminimize.php:356
76
- #: adminimize.php:357
77
- #: adminimize_page.php:262
78
  msgid "Tags"
79
- msgstr "Tags"
80
 
81
- #: adminimize.php:414
82
- #: adminimize.php:456
83
- #: adminimize.php:479
 
84
  msgid "Classic"
85
- msgstr "Classic"
86
 
87
- #: adminimize.php:421
88
- #: adminimize.php:463
89
- #: adminimize.php:486
 
90
  msgid "Fresh"
91
- msgstr "Fresh"
92
 
93
- #: adminimize.php:428
 
94
  msgid "WordPress 2.3"
95
  msgstr "WordPress 2.3"
96
 
97
- #: adminimize.php:435
 
98
  msgid "Maybe i'm colorblind"
99
- msgstr "Maybe i'm colorblind"
100
 
101
- #: adminimize.php:442
 
102
  msgid "Grey"
103
- msgstr "Grey"
104
 
105
- #: adminimize.php:542
106
- #: adminimize.php:545
107
  msgid "Dashboard"
108
- msgstr "Dashboard"
109
 
110
- #: adminimize.php:633
111
- #: adminimize.php:635
112
- #: adminimize.php:644
113
- #: adminimize.php:646
114
- #: adminimize.php:776
115
  msgid "Log Out"
116
- msgstr "Log Out"
117
 
118
- #: adminimize.php:674
119
- #: adminimize_page.php:392
120
- #: adminimize_page.php:393
121
- #: adminimize_page.php:454
122
- #: adminimize_page.php:455
123
- #: adminimize_page.php:489
124
- #: adminimize_page.php:490
 
 
 
 
 
 
 
 
 
125
  msgid "All"
126
- msgstr "Alle"
127
 
128
- #: adminimize.php:674
129
  msgid "None"
130
- msgstr "Keine"
131
 
132
- #: adminimize.php:795
133
  msgid "Visit plugin homepage"
134
- msgstr "Visit plugin homepage"
135
 
136
- #: adminimize.php:798
137
  msgid "plugin"
138
- msgstr "plugin"
139
 
140
- #: adminimize.php:798
141
  msgid "Version"
142
- msgstr "Version"
143
 
144
- #: adminimize.php:798
145
  msgid "History"
146
- msgstr "Historie"
147
 
148
- #: adminimize.php:798
149
  msgid "Author"
150
- msgstr "Author"
151
 
152
- #: adminimize.php:801
153
  msgid "plugin activate"
154
- msgstr "plugin activate"
155
 
156
- #: adminimize.php:816
157
  msgid "Settings"
158
- msgstr "Settings"
159
 
160
- #: adminimize.php:829
161
  msgid "Adminimize Options"
162
- msgstr "Adminimize Einstellungen"
163
 
164
- #: adminimize.php:829
165
- #: adminimize_page.php:65
166
  msgid "Adminimize"
167
  msgstr "Adminimize"
168
 
169
- #: adminimize.php:841
170
  msgid "Cheatin&#8217; uh?"
171
- msgstr "Cheatin&#8217; uh?"
172
-
173
- #: adminimize_page.php:69
174
- #: adminimize_page.php:78
175
- msgid "Backend options"
176
- msgstr "Backend Einstellungen"
177
 
178
- #: adminimize_page.php:84
179
  msgid "Sidebar Width"
180
- msgstr "Sidebar Width"
181
 
182
- #: adminimize_page.php:88
183
- #: adminimize_page.php:101
184
- #: adminimize_page.php:114
185
- #: adminimize_page.php:124
186
- #: adminimize_page.php:134
187
  #: adminimize_page.php:144
188
  #: adminimize_page.php:154
189
  #: adminimize_page.php:164
190
- #: adminimize_page.php:189
 
 
 
191
  msgid "Default"
192
- msgstr "Standard"
193
 
194
- #: adminimize_page.php:93
195
  msgid "The sidebar on the right side in the area <em>Edit</em> is configurable. Default is 200 pixel in the WordPress Theme <em>Classic</em> and <em>Fresh</em>"
196
- msgstr "Der Sidebar am rechten Rand des Bereich <em>Schreiben</em> kann konfiguriert werden. Standard sind 200 Pixel im WordPress Theme <em>Classic</em> und <em>Fresh</em>"
197
 
198
- #: adminimize_page.php:97
199
  msgid "User-Info"
200
- msgstr "User-Info"
201
 
202
- #: adminimize_page.php:102
203
- #: adminimize_page.php:125
 
204
  msgid "Hide"
205
- msgstr "Ausblenden"
206
 
207
- #: adminimize_page.php:103
208
  msgid "Only logout"
209
- msgstr "nur Abmelden"
210
 
211
- #: adminimize_page.php:104
212
  msgid "User &amp; Logout"
213
- msgstr "User &amp; Abmelden"
214
 
215
- #: adminimize_page.php:105
216
  msgid "The &quot;User-Info-area&quot; is on the top right side of the backend. You can hide or reduced show."
217
- msgstr "Der &quot;User-Info-Bereich&quot; ist im oberen rechten Bereich zu finden und kann ausgeblendet oder reduziert dargestellt werden."
218
 
219
- #: adminimize_page.php:110
220
  msgid "Change User-Info, redirect to"
221
- msgstr "User Info ge&auml;ndert, Weiterleitung nach"
222
 
223
- #: adminimize_page.php:115
224
  msgid "Frontpage of the Blog"
225
- msgstr "Startseite des Blog"
226
 
227
- #: adminimize_page.php:116
228
  msgid "When the &quot;User-Info-area&quot; change it, then it is possible to change the redirect."
229
- msgstr "Wenn der &quot;User-Info-Bereich&quot; ge&auml;ndert wird, dann kann die die Weiterleitung nach einem Logout ge&auml;ndert werden."
230
 
231
- #: adminimize_page.php:120
232
  msgid "Footer"
233
- msgstr "Footer"
234
 
235
- #: adminimize_page.php:126
236
  msgid "The Footer-area kann hide, include all links and details."
237
- msgstr "Der Footer-Bereich kann deaktiviert werden, inklusive aller Links und Hinweise."
238
 
239
- #: adminimize_page.php:130
240
  msgid "WriteScroll"
241
- msgstr "WriteScroll"
242
 
243
- #: adminimize_page.php:135
244
- #: adminimize_page.php:145
245
- #: adminimize_page.php:155
246
  #: adminimize_page.php:165
 
 
 
247
  msgid "Activate"
248
- msgstr "Aktiv"
249
 
250
- #: adminimize_page.php:136
251
  msgid "With the WriteScroll option active, these pages will automatically scroll to an optimal position for editing, when you visit Write Post or Write Page."
252
- msgstr "Automatisches Scrollen zum Editor beim Aufruf der Seite Schreiben in Beitr&auml;ge und Seite."
253
 
254
- #: adminimize_page.php:140
255
  msgid "Timestamp"
256
- msgstr "Timestamp"
257
 
258
- #: adminimize_page.php:146
259
  msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
260
- msgstr "Das Feld zum &Auml;ndern des Ver&ouml;ffentlichungsdatum ist immer ge&ouml;ffnet."
261
 
262
- #: adminimize_page.php:150
263
  msgid "Thickbox FullScreen"
264
- msgstr "Thickbox FullScreen"
265
 
266
- #: adminimize_page.php:156
267
  msgid "All Thickbox-function use the full area of the browser. Thickbox is for examble in upload media-files."
268
- msgstr "Alle Thickbox-Funktionen nutzen den kompletten Raum des Browsers, zum Beispiel beim uploaden von Bildern."
269
 
270
- #: adminimize_page.php:160
271
  msgid "Advice in Footer"
272
- msgstr "Hinweis im Footer"
273
 
274
- #: adminimize_page.php:167
275
  msgid "In the Footer kann you display a advice for change the Default-design, (x)HTML is possible."
276
- msgstr "Im Footer kann ein Hinweis auf die aktive Ver&auml;nderung des Standard-Layout gesetzt werden, (x)HTML erlaubt."
277
 
278
- #: adminimize_page.php:185
279
  msgid "Dashboard deaktivate, redirect to"
280
- msgstr "Dashboard inaktiv, Weiterleitung nach"
281
 
282
- #: adminimize_page.php:190
283
  msgid "Manage Posts"
284
- msgstr "Verwalten Beitr&auml;ge"
285
 
286
- #: adminimize_page.php:191
287
  msgid "Manage Pages"
288
- msgstr "Verwalten Seiten"
289
 
290
- #: adminimize_page.php:192
291
  msgid "Write Post"
292
- msgstr "Schreiben Beitrag"
293
 
294
- #: adminimize_page.php:193
295
  msgid "Write Page"
296
- msgstr "Schreiben Seite"
297
 
298
- #: adminimize_page.php:194
299
  msgid "Comments"
300
- msgstr "Kommentare"
301
 
302
- #: adminimize_page.php:195
303
  msgid "You have deaktivate the Dashboard, please select a page for redirect?"
304
- msgstr "Du hast das Dashboard deaktivert, wohin soll der Nutzer weitergeleitet werden?"
305
 
306
- #: adminimize_page.php:205
307
- #: adminimize_page.php:404
308
- #: adminimize_page.php:502
309
- msgid "Update options"
310
- msgstr "Einstellungen aktualisieren"
311
-
312
- #: adminimize_page.php:214
313
  msgid "Menu Options"
314
- msgstr "Menu Einstellungen"
315
-
316
- #: adminimize_page.php:220
317
- msgid "Menu options - Menu, <span style=\\\"font-weight: 400;\\\">Submenu</span>"
318
- msgstr "Menu Einstellungen - Menu, <span style=\"font-weight: 400;\">Submenu</span>"
319
-
320
- #: adminimize_page.php:221
321
- msgid "Deactivate &lt; User Level 10 (Admin)"
322
- msgstr "Deaktivieren &lt; User Level 10 (Admin)"
323
 
324
- #: adminimize_page.php:222
325
- msgid "Deactivate for Admin's"
326
- msgstr "Deaktivieren f&uuml;r Admin's"
327
-
328
- #: adminimize_page.php:261
329
- #: adminimize_page.php:307
330
  msgid "Permalink"
331
  msgstr "Permalink"
332
 
333
- #: adminimize_page.php:265
334
  msgid "Excerpt"
335
- msgstr "Auszug"
336
 
337
- #: adminimize_page.php:266
338
  msgid "Trackbacks"
339
- msgstr "Trackbacks"
340
 
341
- #: adminimize_page.php:267
342
- #: adminimize_page.php:308
343
  msgid "Custom Fields"
344
- msgstr "Benutzerdefinierte Felder"
345
 
346
- #: adminimize_page.php:268
347
- #: adminimize_page.php:309
348
  msgid "Comments &amp; Pings"
349
- msgstr "Kommentare &amp; Pings"
350
 
351
- #: adminimize_page.php:269
352
  msgid "Password Protect This Post"
353
- msgstr "Diesen Artikel durch ein Passwort sch&uuml;tzen"
354
 
355
- #: adminimize_page.php:270
356
  msgid "Post Author"
357
- msgstr "Autor"
358
 
359
- #: adminimize_page.php:271
360
  msgid "Post Revisions"
361
- msgstr "Post Revisions"
362
 
363
- #: adminimize_page.php:272
364
  msgid "Related, Shortcuts"
365
- msgstr "Siehe auch, Tastaturk&uuml;rzel"
366
 
367
- #: adminimize_page.php:273
368
- #: adminimize_page.php:317
369
  msgid "Messenges"
370
- msgstr "Mitteilungen"
371
 
372
- #: adminimize_page.php:274
373
- #: adminimize_page.php:318
374
  msgid "h2: Advanced Options"
375
- msgstr "h2: Erweiterte Einstellungen"
376
 
377
- #: adminimize_page.php:275
378
- #: adminimize_page.php:319
379
  msgid "Media Buttons (all)"
380
- msgstr "Media Buttons (alle)"
381
 
382
- #: adminimize_page.php:279
383
- #: adminimize_page.php:323
384
  msgid "Suggested tags from"
385
- msgstr "Suggested tags from"
386
 
387
- #: adminimize_page.php:281
388
  msgid "Text Control"
389
- msgstr "Text Control"
390
 
391
- #: adminimize_page.php:283
392
- #: adminimize_page.php:325
393
  msgid "HTML Special Characters"
394
- msgstr "HTML Special Characters"
395
 
396
- #: adminimize_page.php:310
397
  msgid "Password Protect This Page"
398
- msgstr "Diese Seite mit einem Passwort versehen"
399
 
400
- #: adminimize_page.php:311
401
  msgid "Page Parent"
402
- msgstr "&Uuml;bergeordnete Seite"
403
 
404
- #: adminimize_page.php:312
405
  msgid "Page Template"
406
- msgstr "Seiten Template"
407
 
408
- #: adminimize_page.php:313
409
  msgid "Page Order"
410
- msgstr "Reihenfolge"
411
 
412
- #: adminimize_page.php:314
413
  msgid "Page Author"
414
- msgstr "Seitenautor"
415
 
416
- #: adminimize_page.php:315
417
  msgid "Page Revisions"
418
- msgstr "Page Revisions"
419
 
420
- #: adminimize_page.php:316
421
  msgid "Related"
422
- msgstr "Siehe auch"
423
 
424
- #: adminimize_page.php:391
425
- #: adminimize_page.php:452
426
- #: adminimize_page.php:487
427
  msgid "All items"
428
- msgstr "Alle w&auml;hlen"
429
-
430
- #: adminimize_page.php:413
431
- msgid "Write options"
432
- msgstr "Schreiben Einstellungen"
433
 
434
- #: adminimize_page.php:419
435
  msgid "Write options - Post"
436
- msgstr "Schreiben Einstellungen - Beitr&auml;ge"
437
 
438
- #: adminimize_page.php:420
439
  msgid "Write options - Page"
440
- msgstr "Schreiben Einstellungen - Seiten"
441
 
442
- #: adminimize_page.php:431
443
- #: adminimize_page.php:466
444
- msgid "Deactivate for &lt; Admin's (level 1-9)"
445
- msgstr "Deaktivieren f&uuml;r &lt; Admin (Level 1-9)"
446
-
447
- #: adminimize_page.php:432
448
- #: adminimize_page.php:467
449
- msgid "Deactivate for Admin's (level 10)"
450
- msgstr "Deaktivieren f&uuml;r Admin (Level 10)"
451
-
452
- #: adminimize_page.php:512
453
- #: adminimize_page.php:578
454
  msgid "Set Theme"
455
- msgstr "Theme zuweisen"
456
 
457
- #: adminimize_page.php:521
458
  msgid "User-ID"
459
- msgstr "User-ID"
460
 
461
- #: adminimize_page.php:522
462
  msgid "Username"
463
- msgstr "Benutzername"
464
 
465
- #: adminimize_page.php:523
466
  msgid "Display name publicly as"
467
- msgstr "Name im Blog"
468
 
469
- #: adminimize_page.php:524
470
  msgid "Admin Color Scheme"
471
- msgstr "Aktuelles Theme"
472
 
473
- #: adminimize_page.php:525
474
  msgid "User Level"
475
- msgstr "User Level"
476
 
477
- #: adminimize_page.php:526
478
  msgid "Role"
479
- msgstr "Rolle"
480
-
481
- #: adminimize_page.php:588
482
- msgid "Deinstall options"
483
- msgstr "Deinstallation der Einstellungen"
484
 
485
- #: adminimize_page.php:591
486
  msgid "Use this option for clean your database from all entries of this plugin. When you deactivate the plugin, the deinstall of the plugin <strong>clean not</strong> all entries in the database."
487
- msgstr "Nutze diese Option, um die Einstellungen f&uuml;r das Plugin in der Datenbank zu l&ouml;schen. Das Plugin entfernt die Eintr&auml;ge <strong>nicht</strong>, wenn es deaktiviert wird!"
488
 
489
- #: adminimize_page.php:595
490
- msgid "Delete options"
491
- msgstr "Einstellungen l&ouml;schen"
492
-
493
- #: adminimize_page.php:607
494
  msgid "About the plugin"
495
- msgstr "&Uuml;ber das Plugin"
496
 
497
- #: adminimize_page.php:610
498
  msgid "Further information: Visit the <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
499
- msgstr "Weitere Information: Besuche die <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">Plugin Webseite</a> f&uuml;r weitere Informationen oder hole die aktuelle Version des Plugins."
500
 
501
- #: adminimize_page.php:610
502
  msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a>."
503
- msgstr "Du willst Danke sagen? Besuche meine <a href=\"http://bueltge.de/wunschliste/\">Wunschliste</a>."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
504
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: adminimize\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-08-13 20:49+0100\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Gürkan Gür <seqizz@gmail.com>\n"
8
+ "Language-Team: seqizz <seqizz@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Country: Turkey\n"
13
+ "Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1\n"
 
 
14
 
15
+ #: adminimize.php:63
16
  msgid "Unknown error."
17
+ msgstr "Bilinmeyen hata."
18
 
19
+ #: adminimize.php:70
20
  msgid "The updates was saved."
21
+ msgstr "Değişiklikler kaydedildi."
22
 
23
+ #: adminimize.php:71
24
  msgid "You have not enough rights for edit entries in the database."
25
+ msgstr "Veritabanındaki girdileri değiştirmek için yeterli yetkilere sahip değilsiniz."
26
 
27
+ #: adminimize.php:72
28
  msgid "All entries in the database was delleted."
29
+ msgstr "Veritabanındaki bütün girdiler silindi."
30
 
31
+ #: adminimize.php:73
32
  msgid "Set the checkbox on deinstall-button."
33
+ msgstr ""
34
 
35
+ #: adminimize.php:74
36
  msgid "Can't load menu and submenu."
37
+ msgstr "Menü ve alt menü yüklenemiyor."
38
 
39
+ #: adminimize.php:75
40
  msgid "Backend-Theme was activated!"
41
+ msgstr "Arkaplan teması aktifleştirildi!"
42
 
43
+ #: adminimize.php:239
44
+ #: adminimize_page.php:421
45
  msgid "Categories"
46
+ msgstr "Kategotiler"
47
 
48
+ #: adminimize.php:245
49
+ #: adminimize.php:256
50
  msgid "+ Add New Category"
51
+ msgstr "+ Yeni kategori ekle"
52
 
53
+ #: adminimize.php:247
54
+ #: adminimize.php:258
55
  msgid "New category name"
56
+ msgstr "Yeni kategori adı"
57
 
58
+ #: adminimize.php:248
59
+ #: adminimize.php:260
60
  msgid "Parent category"
61
+ msgstr "Üst kategori"
62
 
63
+ #: adminimize.php:249
64
+ #: adminimize.php:261
65
  msgid "Add"
66
+ msgstr "Ekle"
67
 
68
+ #: adminimize.php:258
69
+ #: adminimize_page.php:422
70
  msgid "Add New Category"
71
+ msgstr "Yeni Kategori Ekle"
72
 
73
+ #: adminimize.php:282
74
+ #: adminimize.php:283
75
+ #: adminimize_page.php:420
76
  msgid "Tags"
77
+ msgstr "Etiketler"
78
 
79
+ #: adminimize.php:342
80
+ #: adminimize.php:379
81
+ #: adminimize.php:421
82
+ #: adminimize.php:444
83
  msgid "Classic"
84
+ msgstr "Klasik"
85
 
86
+ #: adminimize.php:349
87
+ #: adminimize.php:386
88
+ #: adminimize.php:428
89
+ #: adminimize.php:451
90
  msgid "Fresh"
91
+ msgstr "Taze"
92
 
93
+ #: adminimize.php:356
94
+ #: adminimize.php:393
95
  msgid "WordPress 2.3"
96
  msgstr "WordPress 2.3"
97
 
98
+ #: adminimize.php:364
99
+ #: adminimize.php:400
100
  msgid "Maybe i'm colorblind"
101
+ msgstr "Belki ben renk körüyüm"
102
 
103
+ #: adminimize.php:371
104
+ #: adminimize.php:407
105
  msgid "Grey"
106
+ msgstr "Gri"
107
 
108
+ #: adminimize.php:550
109
+ #: adminimize.php:553
110
  msgid "Dashboard"
111
+ msgstr "Kontrol Paneli"
112
 
113
+ #: adminimize.php:647
114
+ #: adminimize.php:649
115
+ #: adminimize.php:658
116
+ #: adminimize.php:660
117
+ #: adminimize.php:840
118
  msgid "Log Out"
119
+ msgstr "Çıkış"
120
 
121
+ #: adminimize.php:696
122
+ #: adminimize_page.php:608
123
+ #: adminimize_page.php:609
124
+ #: adminimize_page.php:610
125
+ #: adminimize_page.php:611
126
+ #: adminimize_page.php:612
127
+ #: adminimize_page.php:672
128
+ #: adminimize_page.php:673
129
+ #: adminimize_page.php:674
130
+ #: adminimize_page.php:675
131
+ #: adminimize_page.php:676
132
+ #: adminimize_page.php:720
133
+ #: adminimize_page.php:721
134
+ #: adminimize_page.php:722
135
+ #: adminimize_page.php:723
136
+ #: adminimize_page.php:724
137
  msgid "All"
138
+ msgstr "Tümü"
139
 
140
+ #: adminimize.php:696
141
  msgid "None"
142
+ msgstr "Hiçbiri"
143
 
144
+ #: adminimize.php:859
145
  msgid "Visit plugin homepage"
146
+ msgstr "Eklenti anasayfasına git"
147
 
148
+ #: adminimize.php:862
149
  msgid "plugin"
150
+ msgstr "eklenti"
151
 
152
+ #: adminimize.php:862
153
  msgid "Version"
154
+ msgstr "Sürüm"
155
 
156
+ #: adminimize.php:862
157
  msgid "History"
158
+ msgstr "Geçmiş"
159
 
160
+ #: adminimize.php:862
161
  msgid "Author"
162
+ msgstr "Sahibi"
163
 
164
+ #: adminimize.php:865
165
  msgid "plugin activate"
166
+ msgstr "eklenti etkinleştirme"
167
 
168
+ #: adminimize.php:880
169
  msgid "Settings"
170
+ msgstr "Ayarlar"
171
 
172
+ #: adminimize.php:892
173
  msgid "Adminimize Options"
174
+ msgstr "Adminimize Seçenekleri"
175
 
176
+ #: adminimize.php:892
177
+ #: adminimize_page.php:67
178
  msgid "Adminimize"
179
  msgstr "Adminimize"
180
 
181
+ #: adminimize.php:904
182
  msgid "Cheatin&#8217; uh?"
183
+ msgstr ""
 
 
 
 
 
184
 
185
+ #: adminimize_page.php:96
186
  msgid "Sidebar Width"
187
+ msgstr "Yan Panel Genişliği"
188
 
189
+ #: adminimize_page.php:90
190
+ #: adminimize_page.php:100
191
+ #: adminimize_page.php:120
192
+ #: adminimize_page.php:131
 
193
  #: adminimize_page.php:144
194
  #: adminimize_page.php:154
195
  #: adminimize_page.php:164
196
+ #: adminimize_page.php:174
197
+ #: adminimize_page.php:184
198
+ #: adminimize_page.php:194
199
+ #: adminimize_page.php:243
200
  msgid "Default"
201
+ msgstr "Standart"
202
 
203
+ #: adminimize_page.php:105
204
  msgid "The sidebar on the right side in the area <em>Edit</em> is configurable. Default is 200 pixel in the WordPress Theme <em>Classic</em> and <em>Fresh</em>"
205
+ msgstr "Sağ taraftaki <em>Düzenle</em> bölgesindeki yan panel düzenlenebilir. Standart olarak <em>klasik</em> ve <em>taze</em> tema ile 200 piksel boyutundadır."
206
 
207
+ #: adminimize_page.php:127
208
  msgid "User-Info"
209
+ msgstr "Kullanıcı Bilgisi"
210
 
211
+ #: adminimize_page.php:121
212
+ #: adminimize_page.php:132
213
+ #: adminimize_page.php:155
214
  msgid "Hide"
215
+ msgstr "Gizle"
216
 
217
+ #: adminimize_page.php:133
218
  msgid "Only logout"
219
+ msgstr "Sadece çıkış"
220
 
221
+ #: adminimize_page.php:134
222
  msgid "User &amp; Logout"
223
+ msgstr "Kullanıcı &amp; Çıkış"
224
 
225
+ #: adminimize_page.php:135
226
  msgid "The &quot;User-Info-area&quot; is on the top right side of the backend. You can hide or reduced show."
227
+ msgstr "&quot;Kullanıcı Bilgisi bölgesi&quot; sağ üst taraftadır. Gizleyebilir veya görüntüleyebilirsiniz."
228
 
229
+ #: adminimize_page.php:140
230
  msgid "Change User-Info, redirect to"
231
+ msgstr "Kullanıcı Bilgisi değiştir, yönlendirme yeri"
232
 
233
+ #: adminimize_page.php:145
234
  msgid "Frontpage of the Blog"
235
+ msgstr "Blogun önsayfası"
236
 
237
+ #: adminimize_page.php:146
238
  msgid "When the &quot;User-Info-area&quot; change it, then it is possible to change the redirect."
239
+ msgstr "&quot;Kullanıcı bilgisi bölgesi&quot; yönlendirilebilir."
240
 
241
+ #: adminimize_page.php:150
242
  msgid "Footer"
243
+ msgstr "Taban"
244
 
245
+ #: adminimize_page.php:156
246
  msgid "The Footer-area kann hide, include all links and details."
247
+ msgstr "Taban bölgesi, içerdiği bütün link ve detaylar ile gizlenebilir."
248
 
249
+ #: adminimize_page.php:160
250
  msgid "WriteScroll"
251
+ msgstr "YazmayaGit"
252
 
253
+ #: adminimize_page.php:91
 
 
254
  #: adminimize_page.php:165
255
+ #: adminimize_page.php:175
256
+ #: adminimize_page.php:185
257
+ #: adminimize_page.php:195
258
  msgid "Activate"
259
+ msgstr "Aktifleştir"
260
 
261
+ #: adminimize_page.php:166
262
  msgid "With the WriteScroll option active, these pages will automatically scroll to an optimal position for editing, when you visit Write Post or Write Page."
263
+ msgstr "YazmayaGit özelliği aktifse, yazı yazmak için bir sayfaya girdiğinizde sayfa otomatik olarak yazmaya uygun bir bölgeye kayacaktır."
264
 
265
+ #: adminimize_page.php:170
266
  msgid "Timestamp"
267
+ msgstr "Zaman Etiketi"
268
 
269
+ #: adminimize_page.php:176
270
  msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
271
+ msgstr "Zaman etiketlerini açmak için \"Düzenle\" linkini tıklamanıza gerek kalmaz."
272
 
273
+ #: adminimize_page.php:180
274
  msgid "Thickbox FullScreen"
275
+ msgstr "Thickbox Tam Ekran"
276
 
277
+ #: adminimize_page.php:186
278
  msgid "All Thickbox-function use the full area of the browser. Thickbox is for examble in upload media-files."
279
+ msgstr "Ortam dosyaları yüklerken çıkacak olan kutucuğun tam ekran olarak kullanılmasını sağlar."
280
 
281
+ #: adminimize_page.php:190
282
  msgid "Advice in Footer"
283
+ msgstr "Tabanda Tavsiyeler"
284
 
285
+ #: adminimize_page.php:197
286
  msgid "In the Footer kann you display a advice for change the Default-design, (x)HTML is possible."
287
+ msgstr "Taban bölümde öntanımlı dizaynı değiştirmek için tavsiyeler gösterebilirsiniz, (x)HTML mümkün."
288
 
289
+ #: adminimize_page.php:239
290
  msgid "Dashboard deaktivate, redirect to"
291
+ msgstr "Yönetim paneli pasif, yönlendirme yeri"
292
 
293
+ #: adminimize_page.php:244
294
  msgid "Manage Posts"
295
+ msgstr "Yazıları Yönet"
296
 
297
+ #: adminimize_page.php:245
298
  msgid "Manage Pages"
299
+ msgstr "Sayfaları Yönet"
300
 
301
+ #: adminimize_page.php:246
302
  msgid "Write Post"
303
+ msgstr "Yazı Yaz"
304
 
305
+ #: adminimize_page.php:247
306
  msgid "Write Page"
307
+ msgstr "Sayfa Yaz"
308
 
309
+ #: adminimize_page.php:248
310
  msgid "Comments"
311
+ msgstr "Yorumlar"
312
 
313
+ #: adminimize_page.php:249
314
  msgid "You have deaktivate the Dashboard, please select a page for redirect?"
315
+ msgstr "Yönetim panelini pasifleştirdiniz, lütfen yönlendirme için bir sayfa seçin."
316
 
317
+ #: adminimize_page.php:355
 
 
 
 
 
 
318
  msgid "Menu Options"
319
+ msgstr "Menü Seçenekleri"
 
 
 
 
 
 
 
 
320
 
321
+ #: adminimize_page.php:419
322
+ #: adminimize_page.php:479
 
 
 
 
323
  msgid "Permalink"
324
  msgstr "Permalink"
325
 
326
+ #: adminimize_page.php:423
327
  msgid "Excerpt"
328
+ msgstr "Seçilmiş parça"
329
 
330
+ #: adminimize_page.php:424
331
  msgid "Trackbacks"
332
+ msgstr "Geribildirimler"
333
 
334
+ #: adminimize_page.php:425
335
+ #: adminimize_page.php:480
336
  msgid "Custom Fields"
337
+ msgstr "Özel Bölgeler"
338
 
339
+ #: adminimize_page.php:426
340
+ #: adminimize_page.php:481
341
  msgid "Comments &amp; Pings"
342
+ msgstr "Yorumlar &amp; Pingler"
343
 
344
+ #: adminimize_page.php:427
345
  msgid "Password Protect This Post"
346
+ msgstr "Bu Yazıyı Şifre İle Koru"
347
 
348
+ #: adminimize_page.php:428
349
  msgid "Post Author"
350
+ msgstr "Yazar"
351
 
352
+ #: adminimize_page.php:429
353
  msgid "Post Revisions"
354
+ msgstr "Yazı Sürümü"
355
 
356
+ #: adminimize_page.php:430
357
  msgid "Related, Shortcuts"
358
+ msgstr "İlgili, Kısayollar"
359
 
360
+ #: adminimize_page.php:431
361
+ #: adminimize_page.php:489
362
  msgid "Messenges"
363
+ msgstr "Sürümler"
364
 
365
+ #: adminimize_page.php:432
366
+ #: adminimize_page.php:490
367
  msgid "h2: Advanced Options"
368
+ msgstr "h2: Geçişmiş Seçenekler"
369
 
370
+ #: adminimize_page.php:433
371
+ #: adminimize_page.php:491
372
  msgid "Media Buttons (all)"
373
+ msgstr "Ortam Tuşları (hepsi)"
374
 
375
+ #: adminimize_page.php:437
376
+ #: adminimize_page.php:495
377
  msgid "Suggested tags from"
378
+ msgstr "Önerilen etiketler"
379
 
380
+ #: adminimize_page.php:439
381
  msgid "Text Control"
382
+ msgstr "Yazı Kontrolü"
383
 
384
+ #: adminimize_page.php:441
385
+ #: adminimize_page.php:497
386
  msgid "HTML Special Characters"
387
+ msgstr "HTML Özel Karakterleri"
388
 
389
+ #: adminimize_page.php:482
390
  msgid "Password Protect This Page"
391
+ msgstr "Bu Sayfayı Şifre İle Koru"
392
 
393
+ #: adminimize_page.php:483
394
  msgid "Page Parent"
395
+ msgstr "Üst Sayfa"
396
 
397
+ #: adminimize_page.php:484
398
  msgid "Page Template"
399
+ msgstr "Sayfa Teması"
400
 
401
+ #: adminimize_page.php:485
402
  msgid "Page Order"
403
+ msgstr "Sayfa Sırası"
404
 
405
+ #: adminimize_page.php:486
406
  msgid "Page Author"
407
+ msgstr "Sayfa Yazarı"
408
 
409
+ #: adminimize_page.php:487
410
  msgid "Page Revisions"
411
+ msgstr "Sayfa Sürümleri"
412
 
413
+ #: adminimize_page.php:488
414
  msgid "Related"
415
+ msgstr "İlgili"
416
 
417
+ #: adminimize_page.php:607
418
+ #: adminimize_page.php:670
419
+ #: adminimize_page.php:718
420
  msgid "All items"
421
+ msgstr "Bütün Nesneler"
 
 
 
 
422
 
423
+ #: adminimize_page.php:639
424
  msgid "Write options - Post"
425
+ msgstr "Yazım Seçenekleri - Yazı"
426
 
427
+ #: adminimize_page.php:687
428
  msgid "Write options - Page"
429
+ msgstr "Yazım Seçenekleri - Sayfa"
430
 
431
+ #: adminimize_page.php:742
432
+ #: adminimize_page.php:808
 
 
 
 
 
 
 
 
 
 
433
  msgid "Set Theme"
434
+ msgstr "Tema Seç"
435
 
436
+ #: adminimize_page.php:751
437
  msgid "User-ID"
438
+ msgstr "Kullanıcı Kimliği"
439
 
440
+ #: adminimize_page.php:752
441
  msgid "Username"
442
+ msgstr "Kullanıcı Adı"
443
 
444
+ #: adminimize_page.php:753
445
  msgid "Display name publicly as"
446
+ msgstr "İsmi göster"
447
 
448
+ #: adminimize_page.php:754
449
  msgid "Admin Color Scheme"
450
+ msgstr "Yönetici Renk Şeması"
451
 
452
+ #: adminimize_page.php:755
453
  msgid "User Level"
454
+ msgstr "Kullanıcı Seviyesi"
455
 
456
+ #: adminimize_page.php:756
457
  msgid "Role"
458
+ msgstr "Rol"
 
 
 
 
459
 
460
+ #: adminimize_page.php:821
461
  msgid "Use this option for clean your database from all entries of this plugin. When you deactivate the plugin, the deinstall of the plugin <strong>clean not</strong> all entries in the database."
462
+ msgstr "Veritabanınızı bu eklenti ile gelen bütün girdilerden temizler. Kullanılmazsa eklentinin kaldırılması veya etkisizleştirilmesi veritabanınızı <strong>temizlemeyecektir</strong>."
463
 
464
+ #: adminimize_page.php:837
 
 
 
 
465
  msgid "About the plugin"
466
+ msgstr "Eklenti Hakkında"
467
 
468
+ #: adminimize_page.php:840
469
  msgid "Further information: Visit the <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
470
+ msgstr "Detaylı Bilgi: Daha detaylı bilgi ve yeni sürümler için <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">eklenti anasayfası</a> inceleyebilirsiniz."
471
 
472
+ #: adminimize_page.php:840
473
  msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a>."
474
+ msgstr "Teşekkür etmek mi istiyorsunuz? Lütfen<a href=\"http://bueltge.de/wunschliste/\">istek listem</a>e bakınız."
475
+
476
+ #: adminimize_page.php:86
477
+ msgid "Menu Order"
478
+ msgstr "Menü Sırası"
479
+
480
+ #: adminimize_page.php:92
481
+ msgid "It is possible to set a new menu-order."
482
+ msgstr "Yeni bir menü sırası ayarlamak mümkün."
483
+
484
+ #: adminimize_page.php:116
485
+ msgid "Dashmenu"
486
+ msgstr "Yönetim menüsü"
487
+
488
+ #: adminimize_page.php:122
489
+ msgid "The &quot;Dashboard-area&quot; is on the top left side of the backend. You can hide show."
490
+ msgstr "&quot;Yönetim Bölgesi&quot; arkaplan sayfalarının sol üstündedir. Gizleyip gösterebilirsiniz."
491
+
492
+ #: adminimize_page.php:275
493
+ #: adminimize_page.php:281
494
+ msgid "Top Menu Options"
495
+ msgstr "Üst Menü Seçenekleri"
496
+
497
+ #: adminimize_page.php:282
498
+ #: adminimize_page.php:362
499
+ #: adminimize_page.php:640
500
+ #: adminimize_page.php:688
501
+ msgid "Deactivate for Subscriber"
502
+ msgstr "Bildirici (Subscriber) için pasifleştir"
503
+
504
+ #: adminimize_page.php:283
505
+ #: adminimize_page.php:363
506
+ #: adminimize_page.php:641
507
+ #: adminimize_page.php:689
508
+ msgid "Deactivate for Contributor"
509
+ msgstr "Katkıcı (Contributor) için pasifleştir"
510
+
511
+ #: adminimize_page.php:284
512
+ #: adminimize_page.php:364
513
+ #: adminimize_page.php:642
514
+ #: adminimize_page.php:690
515
+ msgid "Deactivate for Author"
516
+ msgstr "Yazar için pasifleştir"
517
+
518
+ #: adminimize_page.php:285
519
+ #: adminimize_page.php:365
520
+ #: adminimize_page.php:643
521
+ #: adminimize_page.php:691
522
+ msgid "Deactivate for Editor"
523
+ msgstr "Editör için pasifleştir"
524
+
525
+ #: adminimize_page.php:286
526
+ #: adminimize_page.php:366
527
+ #: adminimize_page.php:644
528
+ #: adminimize_page.php:692
529
+ msgid "Deactivate for Administrator"
530
+ msgstr "Yönetici için pasifleştir"
531
+
532
+ #: adminimize_page.php:361
533
+ msgid "Menu options - Menu, <span style=\"font-weight: 400;\">Submenu</span>"
534
+ msgstr "Menü seçenekleri - Menü, <span style=\"font-weight: 400;\">Altmenü</span>"
535
+
536
+ #: adminimize_page.php:71
537
+ #: adminimize_page.php:80
538
+ msgid "Backend Options"
539
+ msgstr "Arkaplan Seçenekleri"
540
+
541
+ #: adminimize_page.php:259
542
+ #: adminimize_page.php:345
543
+ #: adminimize_page.php:623
544
+ #: adminimize_page.php:732
545
+ msgid "Update Options"
546
+ msgstr "Güncelle"
547
+
548
+ #: adminimize_page.php:632
549
+ msgid "Write Options"
550
+ msgstr "Yazma Seçenekleri"
551
+
552
+ #: adminimize_page.php:818
553
+ msgid "Deinstall Options"
554
+ msgstr "Kaldırma Seçenekleri"
555
+
556
+ #: adminimize_page.php:825
557
+ msgid "Delete Options"
558
+ msgstr "Silme Seçenekleri"
559
 
readme.txt CHANGED
@@ -3,15 +3,15 @@ Contributors: Bueltge
3
  Donate link: http://bueltge.de/wunschliste/
4
  Tags: color, scheme, theme, admin, dashboard, color scheme, plugin, interface, ui, metabox, hide, editor, minimal, menu, customization, interface, administration, lite, light, usability, lightweight, layout, zen
5
  Requires at least: 2.5
6
- Tested up to: 2.7beta
7
  Stable tag: 0.5
8
 
9
  At first: Visually compresses the administratrive header so that more admin page content can be initially seen. Also moves 'Dashboard' onto the main administrative menu because having it sit in the tip-top black bar was ticking me off and many other changes in the edit-area.
10
- At second. Adminimize is a WordPress plugin that lets you hide 'unnecessary' items from the WordPress administration menu, submenu and even the 'Dashboard', with forwarding to the Manage-page. On top of that, you can also hide post meta controls on the Write page and other areas in the admin-area and Write-page, so as to simplify the editing interface. All is addicted from your rights, admin (user_level 10) or not admin-rights (smaller user_level 10).
11
 
12
  == Description ==
13
  Visually compresses the administratrive header so that more admin page content can be initially seen. Also moves 'Dashboard' onto the main administrative menu because having it sit in the tip-top black bar was ticking me off and many other changes in the edit-area. Adminimize is a WordPress plugin that lets you hide 'unnecessary' items from the WordPress administration menu, submenu and even the 'Dashboard', with forwarding to the Manage-page. On top of that, you can also hide post meta controls on the Write page and other areas in the admin-area and Write-page, so as to simplify the editing interface. Compatible with WordPress 2.5 or later.
14
- Configure all metaboxes and other areas in the write-area. The new theme move the Tags- and Categorys-box to the sidebar, switch off optional metaboxes and other areas in the write-area. Scoll automatocly to the Textbox, when you click the write-button. Many options for menu, submenu and all areas, metaboxes in the write-area, separated for admins (user_level 10) and other users (< user_level 10).
15
 
16
  = Compatibility with the drop-down menu plugins =
17
  1. [Ozh Admin Drop Down Menu](http://planetozh.com/blog/my-projects/wordpress-admin-menu-drop-down-css/ "Admin Drop Down Menu for WordPress 2.5") by Ozh
@@ -22,6 +22,8 @@ Configure all metaboxes and other areas in the write-area. The new theme move th
22
  1. [Text Control](http://dev.wp-plugins.org/wiki/TextControl "Text Control") by Michael Torbert
23
  1. [All in One SEO Pack](http://semperfiwebdesign.com "All in One SEO Pack") by Jeff Minard and Frank Bueltge
24
  1. [TDO Mini Forms](http://thedeadone.net/software/tdo-mini-forms-wordpress-plugin/ "TDO Mini Forms") by Mark Cunningham
 
 
25
 
26
  = Requirements =
27
  1. WordPress version 2.5 and later
@@ -84,8 +86,8 @@ See on [the official website](http://bueltge.de/wordpress-admin-theme-adminimize
84
  == Other Notes ==
85
  = Acknowledgements =
86
  Thanks to [Eric Meyer](http://meyerweb.com/ "Eric Meyer") for the Idea and the Stylesheet to minimize the header of backend and thanks to [Alphawolf](http://www.schloebe.de/ "Alphawolf") for write a smaller javascript with jQuery.
87
- Also Thanks to [Ovidio](http://pacura.ru/ "pacaru.ru") for an translations the details in english.
88
-
89
 
90
  = Licence =
91
  Good news, this plugin is free for everyone! Since it's released under the GPL, you can use it free of charge on your personal or commercial blog. But if you enjoy this plugin, you can thank me and leave a [small donation](http://bueltge.de/wunschliste/ "Wishliste and Donate") for the time I've spent writing and supporting this plugin. And I really don't want to know how many hours of my life this plugin has already eaten ;)
3
  Donate link: http://bueltge.de/wunschliste/
4
  Tags: color, scheme, theme, admin, dashboard, color scheme, plugin, interface, ui, metabox, hide, editor, minimal, menu, customization, interface, administration, lite, light, usability, lightweight, layout, zen
5
  Requires at least: 2.5
6
+ Tested up to: 2.7
7
  Stable tag: 0.5
8
 
9
  At first: Visually compresses the administratrive header so that more admin page content can be initially seen. Also moves 'Dashboard' onto the main administrative menu because having it sit in the tip-top black bar was ticking me off and many other changes in the edit-area.
10
+ At second. Adminimize is a WordPress plugin that lets you hide 'unnecessary' items from the WordPress administration menu, submenu and even the 'Dashboard', with forwarding to the Manage-page. On top of that, you can also hide post meta controls on the Write page and other areas in the admin-area and Write-page, so as to simplify the editing interface. All is addicted from your rights, admin (user_level 10) or other roles.
11
 
12
  == Description ==
13
  Visually compresses the administratrive header so that more admin page content can be initially seen. Also moves 'Dashboard' onto the main administrative menu because having it sit in the tip-top black bar was ticking me off and many other changes in the edit-area. Adminimize is a WordPress plugin that lets you hide 'unnecessary' items from the WordPress administration menu, submenu and even the 'Dashboard', with forwarding to the Manage-page. On top of that, you can also hide post meta controls on the Write page and other areas in the admin-area and Write-page, so as to simplify the editing interface. Compatible with WordPress 2.5 or later.
14
+ Configure all metaboxes and other areas in the write-area. The new theme move the Tags- and Categorys-box to the sidebar, switch off optional metaboxes and other areas in the write-area. Scoll automatocly to the Textbox, when you click the write-button. Many options for menu, submenu and all areas, metaboxes in the write-area, separated for admins (user_level 10) and other roles.
15
 
16
  = Compatibility with the drop-down menu plugins =
17
  1. [Ozh Admin Drop Down Menu](http://planetozh.com/blog/my-projects/wordpress-admin-menu-drop-down-css/ "Admin Drop Down Menu for WordPress 2.5") by Ozh
22
  1. [Text Control](http://dev.wp-plugins.org/wiki/TextControl "Text Control") by Michael Torbert
23
  1. [All in One SEO Pack](http://semperfiwebdesign.com "All in One SEO Pack") by Jeff Minard and Frank Bueltge
24
  1. [TDO Mini Forms](http://thedeadone.net/software/tdo-mini-forms-wordpress-plugin/ "TDO Mini Forms") by Mark Cunningham
25
+ 1. [Post Notification](http://pn.xn--strbe-mva.de/ "Post Notification") by Moritz Str&uuml;be
26
+ 1. [HTML Special Characters Helper](http://coffee2code.com/wp-plugins/html-special-characters-helper "HTML Special Characters Helper") by Scott Reilly
27
 
28
  = Requirements =
29
  1. WordPress version 2.5 and later
86
  == Other Notes ==
87
  = Acknowledgements =
88
  Thanks to [Eric Meyer](http://meyerweb.com/ "Eric Meyer") for the Idea and the Stylesheet to minimize the header of backend and thanks to [Alphawolf](http://www.schloebe.de/ "Alphawolf") for write a smaller javascript with jQuery.
89
+ Also Thanks to [Ovidio](http://pacura.ru/ "pacaru.ru") for an translations the details in english and [G&uuml;rkan G&uuml;r](http://www.seqizz.net/ "G�rkan G�r") for translation in turkish.
90
+ Thanks to [Gabriel Scheffer](http://www.gabrielscheffer.com.ar "Gabriel Scheffer") for the spanish language files.
91
 
92
  = Licence =
93
  Good news, this plugin is free for everyone! Since it's released under the GPL, you can use it free of charge on your personal or commercial blog. But if you enjoy this plugin, you can thank me and leave a [small donation](http://bueltge.de/wunschliste/ "Wishliste and Donate") for the time I've spent writing and supporting this plugin. And I really don't want to know how many hours of my life this plugin has already eaten ;)
screenshot-3.png CHANGED
Binary file