Adminimize - Version 1.7.26

Version Description

Download this release

Release Info

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

Code changes from version 1.7.25 to 1.7.26

Files changed (51) hide show
  1. adminimize.php +3 -304
  2. css/colors-colorblind.css +0 -733
  3. css/colors-grey.css +0 -733
  4. css/colors-wp23.css +0 -940
  5. css/mw_admin.css +0 -121
  6. css/mw_admin27.css +0 -121
  7. css/mw_admin28_tweak.css +0 -2997
  8. css/mw_basic.css +0 -16
  9. css/mw_big_sidebar.css +0 -7
  10. css/mw_cat.css +0 -26
  11. css/mw_classic.css +0 -8
  12. css/mw_classic27.css +0 -7
  13. css/mw_classic28_fixed.css +0 -9
  14. css/mw_classic28_fixed.dev.css +0 -9
  15. css/mw_classic28_save_50px.css +0 -7
  16. css/mw_classic28_tweak.css +0 -2
  17. css/mw_classic28_tweak.dev.css +0 -2
  18. css/mw_classic_lm.css +0 -7
  19. css/mw_classic_ozh_am.css +0 -7
  20. css/mw_colorblind.css +0 -4
  21. css/mw_fixed_header.css +0 -25
  22. css/mw_fixed_menu.css +0 -4
  23. css/mw_fresh.css +0 -4
  24. css/mw_fresh27.css +0 -3
  25. css/mw_fresh27.dev.css +0 -3
  26. css/mw_fresh28_fixed.css +0 -5
  27. css/mw_fresh28_fixed.dev.css +0 -5
  28. css/mw_fresh28_save_50px.css +0 -3
  29. css/mw_fresh28_tweak.css +0 -3
  30. css/mw_fresh28_tweak.dev.css +0 -3
  31. css/mw_fresh_lm.css +0 -3
  32. css/mw_fresh_ozh_am.css +0 -3
  33. css/mw_grey.css +0 -4
  34. css/mw_save_50px.css +0 -119
  35. css/mw_wp23.css +0 -4
  36. inc-options/backend_options.php +0 -10
  37. inc-options/menu_options.php +0 -0
  38. inc-options/settings_notice.php +1 -1
  39. inc-options/write_cp_options.php +2 -3
  40. inc-options/write_page_options.php +0 -20
  41. inc-options/write_post_options.php +0 -28
  42. inc-setup/admin-footer.php +27 -0
  43. js/writescroll.js +0 -13
  44. languages/adminimize-de_DE.mo +0 -0
  45. languages/adminimize-de_DE.po +199 -278
  46. languages/adminimize-lt_LT.mo +0 -0
  47. languages/adminimize-lt_LT.po +1120 -0
  48. languages/adminimize-ro_RO.mo +0 -0
  49. languages/adminimize-ro_RO.po +1109 -0
  50. languages/adminimize-xx_XX.pot +199 -278
  51. readme.txt +18 -9
adminimize.php CHANGED
@@ -12,7 +12,7 @@
12
  * Description: Visually compresses the administratrive meta-boxes so that more admin page content can be initially seen. The plugin that lets you hide 'unnecessary' items from the WordPress administration menu, for alle roles of your install. You can also hide post meta controls on the edit-area to simplify the interface. It is possible to simplify the admin in different for all roles.
13
  * Author: Frank Bültge
14
  * Author URI: http://bueltge.de/
15
- * Version: 1.7.25
16
  * License: GPLv3
17
  */
18
 
@@ -317,13 +317,7 @@ function _mw_adminimize_admin_init() {
317
 
318
  //post-page options
319
  if ( in_array( $pagenow, $def_post_pages ) ) {
320
-
321
- $_mw_adminimize_writescroll = _mw_adminimize_get_option_value( '_mw_adminimize_writescroll' );
322
- switch ( $_mw_adminimize_writescroll ) {
323
- case 1:
324
- wp_enqueue_script( '_mw_adminimize_writescroll', WP_PLUGIN_URL . '/' . FB_ADMINIMIZE_BASEFOLDER . '/js/writescroll.js', array( 'jquery' ) );
325
- break;
326
- }
327
  $_mw_adminimize_tb_window = _mw_adminimize_get_option_value( '_mw_adminimize_tb_window' );
328
  switch ( $_mw_adminimize_tb_window) {
329
  case 1:
@@ -414,59 +408,10 @@ function _mw_adminimize_admin_init() {
414
  // set wp nav menu options
415
  if ( in_array( $pagenow, $nav_menu_pages ) )
416
  add_action( 'admin_head', '_mw_adminimize_set_nav_menu_option', 1 );
417
-
418
- add_action( 'in_admin_footer', '_mw_adminimize_admin_footer' );
419
 
420
  $adminimizeoptions['mw_adminimize_default_menu'] = $menu;
421
  $adminimizeoptions['mw_adminimize_default_submenu'] = $submenu;
422
 
423
- // if custom design of Adminimize; kill with version 1.7.18
424
- if ( ( $_mw_admin_color == 'mw_fresh' ) ||
425
- ( $_mw_admin_color == 'mw_classic' ) ||
426
- ( $_mw_admin_color == 'mw_colorblind' ) ||
427
- ( $_mw_admin_color == 'mw_grey' ) ||
428
- ( $_mw_admin_color == 'mw_fresh_ozh_am' ) ||
429
- ( $_mw_admin_color == 'mw_classic_ozh_am' ) ||
430
- ( $_mw_admin_color == 'mw_fresh_lm' ) ||
431
- ( $_mw_admin_color == 'mw_classic_lm' ) ||
432
- ( $_mw_admin_color == 'mw_wp23' )
433
- ) {
434
-
435
- // only posts
436
- if ( ( 'post-new.php' == $pagenow ) ||
437
- ( 'post.php' == $pagenow ) ||
438
- ( 'post' == $post_type )
439
- ) {
440
- if ( version_compare( substr( $wp_version, 0, 3), '2.7', '<' ) )
441
- add_action( 'admin_head', '_mw_adminimize_remove_box', 99 );
442
-
443
- // check for array empty
444
- if ( !isset( $disabled_metaboxes_post_['editor']['0'] ) )
445
- $disabled_metaboxes_post_['editor']['0'] = '';
446
- if ( isset( $disabled_metaboxes_post_['administrator']['0'] ) )
447
- $disabled_metaboxes_post_['administrator']['0'] = '';
448
- if ( version_compare(substr( $wp_version, 0, 3), '2.7', '<' ) ) {
449
- if ( !_mw_adminimize_recursive_in_array( '#categorydivsb', $disabled_metaboxes_post_all ) )
450
- add_action( 'submitpost_box', '_mw_adminimize_sidecat_list_category_box' );
451
- if ( !_mw_adminimize_recursive_in_array( '#tagsdivsb', $disabled_metaboxes_post_all ) )
452
- add_action( 'submitpost_box', '_mw_adminimize_sidecat_list_tag_box' );
453
- }
454
- }
455
-
456
- // only pages
457
- if ( ( 'page-new.php' == $pagenow ) ||
458
- ( 'page.php' == $pagenow ) ||
459
- ( 'post_type=page' == esc_attr( $_SERVER['QUERY_STRING'] ) ) ||
460
- ( 'page' == $post_type )
461
- ) {
462
- // check for array empty
463
- if ( !isset( $disabled_metaboxes_page_['editor']['0'] ) )
464
- $disabled_metaboxes_page_['editor']['0'] = '';
465
- if ( isset( $disabled_metaboxes_page_['administrator']['0'] ) )
466
- $disabled_metaboxes_page_['administrator']['0'] = '';
467
- }
468
-
469
- }
470
  }
471
 
472
  // on admin init
@@ -475,8 +420,6 @@ add_action( 'admin_init', '_mw_adminimize_register_styles', 1 );
475
  add_action( 'admin_init', '_mw_adminimize_admin_init', 2 );
476
  add_action( 'admin_menu', '_mw_adminimize_add_settings_page' );
477
  add_action( 'admin_menu', '_mw_adminimize_remove_dashboard' );
478
- if ( version_compare( $wp_version, '3.2alpha', '<=' ) )
479
- add_action( 'admin_init', '_mw_adminimize_admin_styles', 1 );
480
 
481
  register_activation_hook( __FILE__, '_mw_adminimize_install' );
482
  register_uninstall_hook( __FILE__, '_mw_adminimize_deinstall' );
@@ -555,201 +498,6 @@ function _mw_adminimize_sidecat_list_category_box() {
555
  }
556
 
557
 
558
- /**
559
- * list tag-box in sidebar
560
- * @uses $post_ID
561
- */
562
- function _mw_adminimize_sidecat_list_tag_box() {
563
- global $post_ID;
564
-
565
- if ( !class_exists( 'SimpleTagsAdmin' ) ) {
566
- ?>
567
- <div class="inside" id="tagsdivsb">
568
- <p><strong><?php _e( 'Tags' ); ?></strong></p>
569
- <p id="jaxtag"><label class="hidden" for="newtag"><?php _e( 'Tags' ); ?></label><input type="text" name="tags_input" class="tags-input" id="tags-input" size="40" tabindex="3" value="<?php echo get_tags_to_edit( $post_ID); ?>" /></p>
570
- <div id="tagchecklist"></div>
571
- </div>
572
- <?php
573
- }
574
- }
575
-
576
-
577
- /**
578
- * remove default categorydiv
579
- * @echo script
580
- */
581
- function _mw_adminimize_remove_box() {
582
-
583
- if ( function_exists( 'remove_meta_box' ) ) {
584
- if ( !class_exists( 'SimpleTagsAdmin' ) )
585
- remove_meta_box( 'tagsdiv', 'post', 'normal' );
586
-
587
- remove_meta_box( 'categorydiv', 'post', 'normal' );
588
- } else {
589
- $_mw_adminimize_sidecat_admin_head = "\n" . '<script type="text/javascript">' . "\n";
590
- $_mw_adminimize_sidecat_admin_head .= "\t" . 'jQuery(document).ready(function() { jQuery(\'#categorydiv\' ).remove(); });' . "\n";
591
- $_mw_adminimize_sidecat_admin_head .= "\t" . 'jQuery(document).ready(function() { jQuery(\'#tagsdiv\' ).remove(); });' . "\n";
592
- $_mw_adminimize_sidecat_admin_head .= '</script>' . "\n";
593
-
594
- echo $_mw_adminimize_sidecat_admin_head;
595
- }
596
- }
597
-
598
-
599
- /**
600
- * add new adminstyle to usersettings
601
- * @param $file
602
- */
603
- function _mw_adminimize_admin_styles( $file ) {
604
- global $wp_version;
605
-
606
- $_mw_adminimize_path = WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/';
607
-
608
- if ( version_compare( $wp_version, '3.0alpha', '>=' ) ) {
609
-
610
- // MW Adminimize Classic Tweak
611
- $styleName = 'Adminimize:' . ' Tweak ' . __( 'Blue' );
612
- wp_admin_css_color (
613
- 'mw_classic_tweak', $styleName, $_mw_adminimize_path . 'mw_classic28_tweak.css',
614
- array( '#073447', '#21759b', '#eaf3fa', '#bbd8e7' )
615
- );
616
-
617
- // MW Adminimize Fresh Tweak
618
- $styleName = 'Adminimize:' . ' Tweak ' . __( 'Gray' );
619
- wp_admin_css_color (
620
- 'mw_fresh_tweak', $styleName, $_mw_adminimize_path . 'mw_fresh28_tweak.css',
621
- array( '#464646', '#6d6d6d', '#f1f1f1', '#dfdfdf' )
622
- );
623
-
624
- }
625
-
626
- if ( version_compare( $wp_version, '2.7alpha', '>=' ) && version_compare( $wp_version, '3.0alpha', '<' ) ) {
627
- // MW Adminimize Classic
628
- $styleName = 'Adminimize:' . ' ' . __( 'Blue' );
629
- wp_admin_css_color (
630
- 'mw_classic', $styleName, $_mw_adminimize_path . 'mw_classic27.css',
631
- array( '#073447', '#21759b', '#eaf3fa', '#bbd8e7' )
632
- );
633
-
634
- // MW Adminimize Fresh
635
- $styleName = 'Adminimize:' . ' ' . __( 'Gray' );
636
- wp_admin_css_color (
637
- 'mw_fresh', $styleName, $_mw_adminimize_path . 'mw_fresh27.css',
638
- array( '#464646', '#6d6d6d', '#f1f1f1', '#dfdfdf' )
639
- );
640
-
641
- // MW Adminimize Classic Fixed
642
- $styleName = 'Adminimize:' . ' Fixed ' . __( 'Blue' );
643
- wp_admin_css_color (
644
- 'mw_classic_fixed', $styleName, $_mw_adminimize_path . 'mw_classic28_fixed.css',
645
- array( '#073447', '#21759b', '#eaf3fa', '#bbd8e7' )
646
- );
647
-
648
- // MW Adminimize Fresh Fixed
649
- $styleName = 'Adminimize:' . ' Fixed ' . __( 'Gray' );
650
- wp_admin_css_color (
651
- 'mw_fresh_fixed', $styleName, $_mw_adminimize_path . 'mw_fresh28_fixed.css',
652
- array( '#464646', '#6d6d6d', '#f1f1f1', '#dfdfdf' )
653
- );
654
-
655
- // MW Adminimize Classic Tweak
656
- $styleName = 'Adminimize:' . ' Tweak ' . __( 'Blue' );
657
- wp_admin_css_color (
658
- 'mw_classic_tweak', $styleName, $_mw_adminimize_path . 'mw_classic28_tweak.css',
659
- array( '#073447', '#21759b', '#eaf3fa', '#bbd8e7' )
660
- );
661
-
662
- // MW Adminimize Fresh Tweak
663
- $styleName = 'Adminimize:' . ' Tweak ' . __( 'Gray' );
664
- wp_admin_css_color (
665
- 'mw_fresh_tweak', $styleName, $_mw_adminimize_path . 'mw_fresh28_tweak.css',
666
- array( '#464646', '#6d6d6d', '#f1f1f1', '#dfdfdf' )
667
- );
668
-
669
- } elseif ( version_compare( $wp_version, '2.7alpha', '<' ) ) {
670
- // MW Adminimize Classic
671
- $styleName = 'MW Adminimize:' . ' ' . __( 'Classic' );
672
- wp_admin_css_color (
673
- 'mw_classic', $styleName, $_mw_adminimize_path . 'mw_classic.css',
674
- array( '#07273E', '#14568A', '#D54E21', '#2683AE' )
675
- );
676
-
677
- // MW Adminimize Fresh
678
- $styleName = 'MW Adminimize:' . ' ' . __( 'Fresh' );
679
- wp_admin_css_color (
680
- 'mw_fresh', $styleName, $_mw_adminimize_path . 'mw_fresh.css',
681
- array( '#464646', '#CEE1EF', '#D54E21', '#2683AE' )
682
- );
683
-
684
- // MW Adminimize WordPress 2.3
685
- $styleName = 'MW Adminimize:' . ' ' . __( 'WordPress 2.3' );
686
- wp_admin_css_color (
687
- 'mw_wp23', $styleName, $_mw_adminimize_path . 'mw_wp23.css',
688
- array( '#000000', '#14568A', '#448ABD', '#83B4D8' )
689
- );
690
-
691
- // MW Adminimize Colorblind
692
- $styleName = 'MW Adminimize:' . ' ' . __( 'Maybe i\'m colorblind' );
693
- wp_admin_css_color (
694
- 'mw_colorblind', $styleName, $_mw_adminimize_path . 'mw_colorblind.css',
695
- array( '#FF9419', '#F0720C', '#710001', '#550007', '#CF4529' )
696
- );
697
-
698
- // MW Adminimize Grey
699
- $styleName = 'MW Adminimize:' . ' ' . __( 'Grey' );
700
- wp_admin_css_color (
701
- 'mw_grey', $styleName, $_mw_adminimize_path . 'mw_grey.css',
702
- array( '#000000', '#787878', '#F0F0F0', '#D8D8D8', '#909090' )
703
- );
704
- }
705
- /**
706
- * style and changes for plugin Admin Drop Down Menu
707
- * by Ozh
708
- * http://planetozh.com/blog/my-projects/wordpress-admin-menu-drop-down-css/
709
- */
710
- if ( function_exists( 'wp_ozh_adminmenu' ) ) {
711
-
712
- // MW Adminimize Classic include ozh adminmenu
713
- $styleName = 'MW Adminimize inc. Admin Drop Down Menu' . ' ' . __( 'Classic' );
714
- wp_admin_css_color (
715
- 'mw_classic_ozh_am', $styleName, $_mw_adminimize_path . 'mw_classic_ozh_am.css',
716
- array( '#07273E', '#14568A', '#D54E21', '#2683AE' )
717
- );
718
-
719
- // MW Adminimize Fresh include ozh adminmenu
720
- $styleName = 'MW Adminimize inc. Admin Drop Down Menu' . ' ' . __( 'Fresh' );
721
- wp_admin_css_color (
722
- 'mw_fresh_ozh_am', $styleName, $_mw_adminimize_path . 'mw_fresh_ozh_am.css',
723
- array( '#464646', '#CEE1EF', '#D54E21', '#2683AE' )
724
- );
725
-
726
- }
727
-
728
- /**
729
- * style and changes for plugin Lighter Menus
730
- * by corpodibacco
731
- * http://www.italyisfalling.com/lighter-menus
732
- */
733
- if ( function_exists( 'lm_build' ) ) {
734
-
735
- // MW Adminimize Classic include Lighter Menus
736
- $styleName = 'MW Adminimize inc. Lighter Menus' . ' ' . __( 'Classic' );
737
- wp_admin_css_color (
738
- 'mw_classic_lm', $styleName, $_mw_adminimize_path . 'mw_classic_lm.css',
739
- array( '#07273E', '#14568A', '#D54E21', '#2683AE' )
740
- );
741
-
742
- // MW Adminimize Fresh include Lighter Menus
743
- $styleName = 'MW Adminimize inc. Lighter Menus' . ' ' . __( 'Fresh' );
744
- wp_admin_css_color (
745
- 'mw_fresh_lm', $styleName, $_mw_adminimize_path . 'mw_fresh_lm.css',
746
- array( '#464646', '#CEE1EF', '#D54E21', '#2683AE' )
747
- );
748
-
749
- }
750
- }
751
-
752
-
753
  /**
754
  * remove the dashbord
755
  * @author of basic Austin Matzko
@@ -839,14 +587,6 @@ function _mw_adminimize_remove_dashboard() {
839
  }
840
 
841
 
842
- /**
843
- * remove the flash_uploader
844
- */
845
- function _mw_adminimize_disable_flash_uploader() {
846
-
847
- return FALSE;
848
- }
849
-
850
  /**
851
  * set menu options from database
852
  */
@@ -1303,29 +1043,10 @@ function _mw_adminimize_small_user_info() {
1303
  require_once( 'adminimize_page.php' );
1304
  require_once( 'inc-setup/dashboard.php' );
1305
  require_once( 'inc-setup/admin-bar.php' );
 
1306
  // globale settings
1307
  require_once( 'inc-options/settings_notice.php' );
1308
 
1309
- /**
1310
- * credit in wp-footer
1311
- */
1312
- function _mw_adminimize_admin_footer() {
1313
-
1314
- $plugin_data = get_plugin_data( __FILE__ );
1315
- $plugin_data['Title'] = $plugin_data['Name'];
1316
-
1317
- if ( !empty( $plugin_data['PluginURI'] ) && !empty( $plugin_data['Name'] ) )
1318
- $plugin_data['Title'] = '<a href="' . $plugin_data['PluginURI'] . '" title="'.__( 'Visit plugin homepage' ).'">' . $plugin_data['Name'] . '</a>';
1319
-
1320
- if ( basename( $_SERVER['REQUEST_URI'] ) == 'adminimize.php' ) {
1321
- printf( '%1$s ' . __( 'plugin' ) . ' | ' . __( 'Version' ) . ' <a href="http://wordpress.org/extend/plugins/adminimize/changelog/" title="' . __( 'History', FB_ADMINIMIZE_TEXTDOMAIN ) . '">%2$s</a> | ' . __( 'Author' ) . ' %3$s<br />', $plugin_data['Title'], $plugin_data['Version'], $plugin_data['Author'] );
1322
- }
1323
-
1324
- if ( _mw_adminimize_get_option_value( '_mw_adminimize_advice' ) == 1 && basename( $_SERVER['REQUEST_URI'] ) != 'adminimize.php' ) {
1325
- printf( '%1$s ' . __( 'plugin activate', FB_ADMINIMIZE_TEXTDOMAIN ) . ' | ' . stripslashes( _mw_adminimize_get_option_value( '_mw_adminimize_advice_txt' ) ) . '<br />', $plugin_data['Title'] );
1326
- }
1327
-
1328
- }
1329
 
1330
 
1331
  /**
@@ -1351,20 +1072,6 @@ function _mw_adminimize_filter_plugin_meta( $links, $file ) {
1351
  }
1352
 
1353
 
1354
- /**
1355
- * content of help
1356
- */
1357
- function _mw_adminimize_contextual_help( $contextual_help, $screen_id, $screen ) {
1358
-
1359
- if ( 'settings_page_adminimize/adminimize' !== $screen_id )
1360
- return $contextual_help;
1361
-
1362
- $contextual_help = __( '<a href="http://wordpress.org/extend/plugins/adminimize/">Documentation</a>', FB_ADMINIMIZE_TEXTDOMAIN );
1363
-
1364
- return $contextual_help;
1365
- }
1366
-
1367
-
1368
  /**
1369
  * settings in plugin-admin-page
1370
  */
@@ -1390,8 +1097,6 @@ function _mw_adminimize_add_settings_page() {
1390
 
1391
  function _mw_adminimize_on_load_page() {
1392
 
1393
- add_filter( 'contextual_help', '_mw_adminimize_contextual_help', 10, 3 );
1394
-
1395
  wp_enqueue_style( 'adminimize-style' );
1396
  }
1397
 
@@ -1468,12 +1173,6 @@ function _mw_adminimize_update() {
1468
  } else {
1469
  $adminimizeoptions['_mw_adminimize_exclude_super_admin'] = 0;
1470
  }
1471
-
1472
- if ( isset( $_POST['_mw_adminimize_writescroll'] ) ) {
1473
- $adminimizeoptions['_mw_adminimize_writescroll'] = strip_tags(stripslashes( $_POST['_mw_adminimize_writescroll'] ) );
1474
- } else {
1475
- $adminimizeoptions['_mw_adminimize_writescroll'] = 0;
1476
- }
1477
 
1478
  if ( isset( $_POST['_mw_adminimize_tb_window'] ) ) {
1479
  $adminimizeoptions['_mw_adminimize_tb_window'] = strip_tags(stripslashes( $_POST['_mw_adminimize_tb_window'] ) );
12
  * Description: Visually compresses the administratrive meta-boxes so that more admin page content can be initially seen. The plugin that lets you hide 'unnecessary' items from the WordPress administration menu, for alle roles of your install. You can also hide post meta controls on the edit-area to simplify the interface. It is possible to simplify the admin in different for all roles.
13
  * Author: Frank B&uuml;ltge
14
  * Author URI: http://bueltge.de/
15
+ * Version: 1.7.26
16
  * License: GPLv3
17
  */
18
 
317
 
318
  //post-page options
319
  if ( in_array( $pagenow, $def_post_pages ) ) {
320
+
 
 
 
 
 
 
321
  $_mw_adminimize_tb_window = _mw_adminimize_get_option_value( '_mw_adminimize_tb_window' );
322
  switch ( $_mw_adminimize_tb_window) {
323
  case 1:
408
  // set wp nav menu options
409
  if ( in_array( $pagenow, $nav_menu_pages ) )
410
  add_action( 'admin_head', '_mw_adminimize_set_nav_menu_option', 1 );
 
 
411
 
412
  $adminimizeoptions['mw_adminimize_default_menu'] = $menu;
413
  $adminimizeoptions['mw_adminimize_default_submenu'] = $submenu;
414
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
415
  }
416
 
417
  // on admin init
420
  add_action( 'admin_init', '_mw_adminimize_admin_init', 2 );
421
  add_action( 'admin_menu', '_mw_adminimize_add_settings_page' );
422
  add_action( 'admin_menu', '_mw_adminimize_remove_dashboard' );
 
 
423
 
424
  register_activation_hook( __FILE__, '_mw_adminimize_install' );
425
  register_uninstall_hook( __FILE__, '_mw_adminimize_deinstall' );
498
  }
499
 
500
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
501
  /**
502
  * remove the dashbord
503
  * @author of basic Austin Matzko
587
  }
588
 
589
 
 
 
 
 
 
 
 
 
590
  /**
591
  * set menu options from database
592
  */
1043
  require_once( 'adminimize_page.php' );
1044
  require_once( 'inc-setup/dashboard.php' );
1045
  require_once( 'inc-setup/admin-bar.php' );
1046
+ require_once( 'inc-setup/admin-footer.php' );
1047
  // globale settings
1048
  require_once( 'inc-options/settings_notice.php' );
1049
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1050
 
1051
 
1052
  /**
1072
  }
1073
 
1074
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1075
  /**
1076
  * settings in plugin-admin-page
1077
  */
1097
 
1098
  function _mw_adminimize_on_load_page() {
1099
 
 
 
1100
  wp_enqueue_style( 'adminimize-style' );
1101
  }
1102
 
1173
  } else {
1174
  $adminimizeoptions['_mw_adminimize_exclude_super_admin'] = 0;
1175
  }
 
 
 
 
 
 
1176
 
1177
  if ( isset( $_POST['_mw_adminimize_tb_window'] ) ) {
1178
  $adminimizeoptions['_mw_adminimize_tb_window'] = strip_tags(stripslashes( $_POST['_mw_adminimize_tb_window'] ) );
css/colors-colorblind.css DELETED
@@ -1,733 +0,0 @@
1
- a.page-numbers:hover {
2
- border-color: #FF9419; /* colorvalue 1 */
3
- }
4
-
5
- body {
6
- background: #fff;
7
- color: #333;
8
- }
9
-
10
- body > #upload-menu {
11
- border-bottom-color: #fff;;
12
- }
13
-
14
- div#current-widgets, #postcustomstuff table, #your-profile fieldset, a.page-numbers, #rightnow, div.dashboard-widget, .widefat {
15
- border-color: #CF4529; /* colorvalue 5 */
16
- }
17
-
18
- div.dashboard-widget-error {
19
- background-color: #CF4529; /* colorvalue 5 */
20
- }
21
-
22
- div.dashboard-widget-notice {
23
- background-color: #550007; /* colorvalue 4 */
24
- }
25
-
26
- div.dashboard-widget-submit, ul.widget-control-list div.widget-control-actions {
27
- border-top-color: #CF4529; /* colorvalue 5 */
28
- }
29
-
30
- input.disabled, textarea.disabled {
31
- background-color: #550007; /* colorvalue 4 */
32
- }
33
-
34
- #user_info a:hover, li.widget-list-control-item h4.widget-title a:hover, .submit a, #dashmenu a:hover, #footer a, #upload-menu li a.upload-tab-link, li.widget-list-control-item h4.widget-title a,
35
- #dragHelper li.widget-list-control-item h4.widget-title a,
36
- #draghelper li.widget-list-control-item h4.widget-title a:visited, .login #backtoblog a:hover {
37
- color: #550007; /* colorvalue 4 */
38
- }
39
-
40
- ul#category-tabs li.ui-tabs-selected, li.widget-list-control-item, div.nav, .tablenav, .submitbox, h3.dashboard-widget-title, h3.dashboard-widget-title span, h3.dashboard-widget-title small, ul.view-switch li.current, .form-table tr, #poststuff h3, .login form {
41
- background-color:#710001; /* colorvalue 3 */
42
- color:#FF9419; /* colorvalue 1 */
43
- }
44
-
45
- div.ui-tabs-panel {
46
- border-color: #710001; /* colorvalue 3 */
47
- }
48
-
49
- select {
50
- background-color: #fff;
51
- border-color: #CF4529; /* colorvalue 5 */
52
- }
53
-
54
- strong .post-com-count span {
55
- background-color: #2583ad;
56
- }
57
-
58
- .button-secondary, #login form .submit input {
59
- background-color: #FF9419; /* colorvalue 1 */
60
- }
61
-
62
- ul#widget-list li.widget-list-item h4.widget-title {
63
- background-color: #CF4529; /* colorvalue 5 */
64
- color: #333;
65
- }
66
-
67
- ul.widget-control-list .sorthelper {
68
- background-color: #CF4529; /* colorvalue 5 */
69
- }
70
-
71
- .ac_match, .subsubsub a.current, h2 {
72
- color: #333;
73
- }
74
-
75
- .ac_over {
76
- background-color: #550007; /* colorvalue 4 */
77
- }
78
-
79
- .ac_results {
80
- background-color: #fff;
81
- border-color: #CF4529; /* colorvalue 5 */
82
- }
83
-
84
- .ac_results li {
85
- color: #333;
86
- }
87
-
88
- .alternate {
89
- background-color: #550007; /* colorvalue 4 */
90
- }
91
-
92
- .available-theme a.screenshot {
93
- background-color: #550007; /* colorvalue 4 */
94
- border-color: #CF4529; /* colorvalue 5 */
95
- }
96
-
97
- .bar {
98
- background-color: #CF4529; /* colorvalue 5 */
99
- border-right-color: #550007; /* colorvalue 4 */
100
- }
101
-
102
- .describe {
103
- border-top-color: #CF4529; /* colorvalue 5 */
104
- }
105
-
106
- .error, #login #login_error {
107
- background-color: #ffebe8;
108
- border-color: #c00;
109
- }
110
-
111
- .error a {
112
- color: #c00;
113
- }
114
-
115
- .form-invalid {
116
- background-color: #ffebe8 !important;
117
- }
118
-
119
- .form-invalid input {
120
- border-color: #c00 !important;
121
- }
122
-
123
- .form-table input, .form-table textarea {
124
- border-color: #CF4529; /* colorvalue 5 */
125
- }
126
-
127
- .form-table td, .form-table th {
128
- border-bottom-color: #fff;
129
- }
130
-
131
- .highlight {
132
- background-color: #710001; /* colorvalue 3 */
133
- color: #F0720C; /* colorvalue 2 */
134
- }
135
-
136
- .howto, .nonessential, #sidemenu, #edit-slug-box, .form-input-tip, #dashboard_primary span.rss-date, .subsubsub, #dashboard_secondary div.dashboard-widget-content ul li a cite {
137
- color: #CF4529; /* colorvalue 5 */
138
- }
139
-
140
- #dashmenu a, #user_info a {
141
- color: #710001; /* colorvalue 3 */
142
- }
143
-
144
- .media-item {
145
- border-bottom-color: #CF4529; /* colorvalue 5 */
146
- }
147
-
148
- .media-upload-form label.form-help, td.help {
149
- color: #F0720C; /* colorvalue 2 */
150
- }
151
-
152
- .page-numbers {
153
- background-color: #fff;
154
- border-color: #fff;
155
- }
156
-
157
- .page-numbers.current {
158
- background-color: #F0720C; /* colorvalue 2 */
159
- border-color: #F0720C; /* colorvalue 2 */
160
- color: #fff;
161
- }
162
-
163
- .post-com-count {
164
- background-image: url(../../../../wp-admin/images/bubble_bg.gif);
165
- color: #fff;
166
- }
167
-
168
- .post-com-count span {
169
- background-color: #bbb;
170
- color: #fff;
171
- }
172
-
173
- .post-com-count:hover span {
174
- background-color: #d54e21;
175
- }
176
-
177
- .quicktags, .search {
178
- background-color: #F0720C; /* colorvalue 2 */
179
- color: #333;
180
- }
181
-
182
- .side-info h5, .bordertitle {
183
- border-bottom-color: #CF4529; /* colorvalue 5 */
184
- }
185
-
186
- .side-info ul, .widget-description {
187
- color: #F0720C; /* colorvalue 2 */
188
- }
189
-
190
- .submit input, .button, .button-secondary, #login form .submit input, div.dashboard-widget-submit input, #edit-slug-buttons a.save {
191
- background-color: #550007; /* colorvalue 4 */
192
- color: #F0720C; /* colorvalue 2 */
193
- border-color: #710001; /* colorvalue 3 */
194
- }
195
-
196
- .tablenav .button-secondary {
197
- border-color: #F0720C; /* colorvalue 2 */
198
- }
199
-
200
- .submit input:hover, .button:hover, #edit-slug-buttons a.save:hover {
201
- border-color: #710001; /* colorvalue 3 */
202
- }
203
-
204
- .submit input:hover, .button:hover, .button-secondary:hover, #wphead #viewsite a:hover, #submenu a.current, #submenu a:hover, .submitbox #previewview a:hover, #the-comment-list .comment a:hover, #rightnow a:hover, a:hover, .subsubsub a:hover, .subsubsub a.current:hover, #login form .submit input:hover, div.dashboard-widget-submit input:hover, #edit-slug-buttons a.save:hover {
205
- color: #FF9419; /* colorvalue 1 */
206
- }
207
-
208
- #adminmenu a:hover, #sidemenu a:hover {
209
- color: #550007; /* colorvalue 4 */
210
- }
211
-
212
- .button-secondary:hover, #login form .submit input:hover {
213
- border-color: #F0720C; /* colorvalue 2 */
214
- background-color: #550007; /* colorvalue 4 */
215
- }
216
-
217
- .submitbox #autosave .error, ul.view-switch li.current a {
218
- color: #CF4529; /* colorvalue 5 */
219
- }
220
-
221
- .submitbox #previewview {
222
- background-color:#F0720C; /* colorvalue 2 */
223
- }
224
-
225
- .submitbox #previewview a, #rightnow .rbutton {
226
- background-color: #CF4529; /* colorvalue 5 */
227
- color: #710001; /* colorvalue 3 */
228
- }
229
-
230
- .submitbox .submit {
231
- background-color: #CF4529; /* colorvalue 5 */
232
- color: #710001; /* colorvalue 3 */
233
- }
234
-
235
- .submitbox .submitdelete {
236
- border-bottom-color: #CF4529; /* colorvalue 5 */
237
- }
238
-
239
- .submitbox .submitdelete:hover {
240
- color: #fff;
241
- background-color: #f00;
242
- border-bottom-color: #f00;
243
- }
244
-
245
- .tablenav .dots {
246
- background-color: #710001; /* colorvalue 3 */
247
- border-color: #710001; /* colorvalue 3 */
248
- }
249
-
250
- .tablenav .next, .tablenav .prev{
251
- background-color: #710001; /* colorvalue 3 */
252
- border-bottom-color: #710001; /* colorvalue 3 */
253
- border-color: #710001; /* colorvalue 3 */
254
- color: #F0720C; /* colorvalue 2 */
255
- }
256
-
257
- .tablenav .next:hover, .tablenav .prev:hover {
258
- border-bottom-color: #d54e21;
259
- border-color: #710001; /* colorvalue 3 */
260
- color: #d54e21;
261
- }
262
-
263
- .updated, .login #login_error, .login .message {
264
- background-color:#F0720C; /* colorvalue 2 */
265
- border-color:#FF9419; /* colorvalue 1 */
266
- }
267
-
268
- .updated a {
269
- border-bottom-color: #710001; /* colorvalue 3 */
270
- }
271
-
272
- .widefat td, .widefat th, div#available-widgets-filter, ul#widget-list li.widget-list-item, .commentlist li {
273
- border-bottom-color: #CF4529; /* colorvalue 5 */
274
- }
275
-
276
- .widefat thead, .thead {
277
- background-color:#CF4529; /* colorvalue 5 */
278
- color: #F0720C; /* colorvalue 2 */
279
- }
280
-
281
- .widget-control-save, .widget-control-remove {
282
- background-color: #710001; /* colorvalue 3 */
283
- color: #CF4529; /* colorvalue 5 */
284
- }
285
-
286
- .wrap h2 {
287
- border-bottom-color:#710001; /* colorvalue 3 */
288
- color:#F0720C; /* colorvalue 2 */
289
- }
290
-
291
- #poststuff #edButtonPreview, #poststuff #edButtonHTML, #the-comment-list p.comment-author strong a, a {
292
- color: #F0720C; /* colorvalue 2 */
293
- }
294
-
295
- #adminmenu a {
296
- color: #710001; /* colorvalue 3 */
297
- }
298
-
299
- #submenu a {
300
- color: #F0720C; /* colorvalue 2 */
301
- }
302
- /* Because we don't want visited on these links */
303
- #adminmenu a.current, #sidemenu a.current {
304
- background-color: #fff;
305
- border-color: #FF9419; /* colorvalue 1 */
306
- border-bottom-color: #fff;
307
- color: #333;
308
- font-weight: bold;
309
- }
310
-
311
- #adminmenu li a #awaiting-mod {
312
- background-image: url(../../../../wp-admin/images/comment-stalk-classic.gif);
313
- }
314
-
315
- #adminmenu li a #awaiting-mod span {
316
- background-color: #d54e21;
317
- color: #fff;
318
- }
319
-
320
- #rightnow .reallynow {
321
- background-color:#F0720C; /* colorvalue 2 */
322
- color:#550007; /* colorvalue 4 */
323
- }
324
-
325
- #rightnow .reallynow a {
326
- background-color:#550007; /* colorvalue 4 */
327
- color:#F0720C; /* colorvalue 2 */
328
- }
329
-
330
- #rightnow .reallynow a:hover {
331
- color:#CF4529; /* colorvalue 5 */
332
- }
333
-
334
-
335
- #adminmenu li a:hover #awaiting-mod span {
336
- background-color: #FF9419; /* colorvalue 1 */
337
- }
338
-
339
- #adminmenu, div#media-upload-header {
340
- background-color: #F0720C; /* colorvalue 2 */
341
- border-bottom-color: #FF9419; /* colorvalue 1 */
342
- }
343
-
344
- #currenttheme img {
345
- border-color: #CF4529; /* colorvalue 5 */
346
- }
347
-
348
- #current-widgets .drop-widget-here {
349
- background-color: #ffc;
350
- }
351
-
352
- #dashboard_secondary div.dashboard-widget-content ul li a {
353
- background-color: #550007; /* colorvalue 4 */
354
- }
355
-
356
- input.readonly {
357
- background-color: #CF4529; /* colorvalue 5 */
358
- }
359
-
360
- #dashmenu a.current {
361
- background-color: #F0720C; /* colorvalue 2 */
362
- color: #710001; /* colorvalue 3 */
363
- }
364
-
365
- #dragHelper h4.widget-title, li.widget-list-control-item h4, #dragHelper li.widget-list-control-item h4 {
366
- background-color: #F0720C; /* colorvalue 2 */
367
- color: #550007; /* colorvalue 4 */
368
- }
369
-
370
- #ed_toolbar input {
371
- background: url( ../../../../wp-admin/images/fade-butt.png ) #fff repeat-x 0 -2px;
372
- }
373
-
374
- #editable-post-name {
375
- background-color: #fffbcc;
376
- }
377
-
378
- #edit-slug-box strong, .login #nav a {
379
- color: #CF4529; /* colorvalue 5 */
380
- }
381
-
382
- #edit-slug-buttons a.save {
383
- background-color: #CF4529; /* colorvalue 5 */
384
- }
385
-
386
- #footer {
387
- background-image: url(../img/wplogo.png) !important;
388
- background-position:10px 10px;
389
- background-repeat: no-repeat;
390
- _background-image: url(../img/wplogo.gif);
391
- background-color:#CF4529; /* colorvalue 5 */
392
- color:#FF9419; /* colorvalue 1 */
393
- }
394
-
395
- #media-items {
396
- border-color: #CF4529; /* colorvalue 5 */
397
- }
398
-
399
- #pass-strength-result {
400
- background-color: #CF4529; /* colorvalue 5 */
401
- border-color: #550007; /* colorvalue 4 */
402
- }
403
-
404
- #pass-strength-result.bad {
405
- background-color: #550007; /* colorvalue 4 */
406
- border-color: #FF9419; /* colorvalue 1 */
407
- }
408
-
409
- #pass-strength-result.good {
410
- background-color: #CF4529; /* colorvalue 5 */
411
- border-color: #550007; /* colorvalue 4 */
412
- }
413
-
414
- #pass-strength-result.short {
415
- background-color: #CF4529; /* colorvalue 5 */
416
- }
417
-
418
- #pass-strength-result.strong {
419
- background-color: #F0720C; /* colorvalue 2 */
420
- border-color: #550007; /* colorvalue 4 */
421
- }
422
-
423
- .checkbox, .side-info, #your-profile #rich_editing {
424
- background-color: #fff;
425
- }
426
-
427
- #plugins .active {
428
- background-color:#710001; /* colorvalue 3 */
429
- color:#F0720C; /* colorvalue 2 */
430
- }
431
-
432
- #plugins .togl {
433
- border-right-color: #550007; /* colorvalue 4 */
434
- }
435
-
436
- #the-comment-list .unapproved {
437
- background-color: #ffffe0;
438
- }
439
-
440
- #plugins tr {
441
- background-color: #fff;
442
- }
443
-
444
- #poststuff #editor-toolbar .active {
445
- background-color: #550007; /* colorvalue 4 */
446
- color: #F0720C; /* colorvalue 2 */
447
- }
448
-
449
- #poststuff .closed .togbox {
450
- background-color: #710001; /* colorvalue 3 */
451
- background-image: url(../../../../wp-admin/images/toggle-arrow.gif);
452
- }
453
-
454
- #poststuff .postbox, #titlediv, #poststuff .postarea, #poststuff .stuffbox {
455
- border-color: #CF4529; /* colorvalue 5 */
456
- border-right-color: #710001; /* colorvalue 3 */
457
- border-bottom-color: #710001; /* colorvalue 3 */
458
- }
459
-
460
- #poststuff .togbox {
461
- background-color:#CF4529; /* colorvalue 5 */
462
- background-image: url(../../../../wp-admin/images/toggle-arrow.gif);
463
- }
464
-
465
- #quicktags #ed_link {
466
- color: #F0720C; /* colorvalue 2 */
467
- }
468
-
469
- #rightnow .youhave {
470
- background-color: #710001; /* colorvalue 3 */
471
- }
472
-
473
- #rightnow a {
474
- color: #F0720C; /* colorvalue 2 */
475
- }
476
-
477
- #sidemenu a {
478
- background-color: #F0720C; /* colorvalue 2 */
479
- border-bottom-color: #FF9419; /* colorvalue 1 */
480
- border-top-color: #F0720C; /* colorvalue 2 */
481
- color: #710001; /* colorvalue 3 */
482
- }
483
-
484
- #tagchecklist span a {
485
- background: url(../../../../wp-admin/images/xit.gif) no-repeat;
486
- }
487
-
488
- #tagchecklist span a:hover {
489
- background: url(../../../../wp-admin/images/xit.gif) no-repeat -10px 0;
490
- }
491
-
492
- #the-comment-list .comment a {
493
- border-bottom-color: #CF4529; /* colorvalue 5 */
494
- color: #710001; /* colorvalue 3 */
495
- }
496
-
497
- #update-nag, .plugin-update {
498
- background-color: #fffeeb;
499
- border-bottom-color: #ccc;
500
- border-top-color: #ccc;
501
- color: #555;
502
- }
503
-
504
- #upload-files a.file-link {
505
- background-color: #550007; /* colorvalue 4 */
506
- }
507
-
508
- #upload-file-view a img {
509
- border-bottom-color: #F0720C; /* colorvalue 2 */
510
- }
511
-
512
- #upload-menu li #current-tab-nav, #upload-file {
513
- background-color: #550007; /* colorvalue 4 */
514
- }
515
-
516
- #upload-menu li span a.page-numbers {
517
- color: #FF9419; /* colorvalue 1 */
518
- }
519
-
520
- #upload-menu li.current {
521
- border-right-color: #710001; /* colorvalue 3 */
522
- color: #333;
523
- }
524
-
525
- #upload-menu li.current a.upload-tab-link, #upload-menu li a:hover {
526
- background-color: #550007; /* colorvalue 4 */
527
- color: #333;
528
- }
529
-
530
- #upload-menu, #upload-menu li {
531
- border-top-color: #550007; /* colorvalue 4 */
532
- }
533
-
534
- #user_info, .login #backtoblog a {
535
- color: #550007; /* colorvalue 4 */
536
- }
537
-
538
- #wphead {
539
- background-color:#F0720C; /* colorvalue 2 */
540
- color:#710001; /* colorvalue 3 */
541
- }
542
-
543
- #wphead, body.login {
544
- border-top-color:#FF9419; /* colorvalue 1 */
545
- color:#F0720C; /* colorvalue 2 */
546
- }
547
-
548
- #wphead #viewsite a {
549
- background-color: #710001; /* colorvalue 3 */
550
- color: #F0720C; /* colorvalue 2 */
551
- border-color: #550007; /* colorvalue 4 */
552
- }
553
-
554
- #wphead #viewsite a:hover {
555
- color: #FF9419; /* colorvalue 1 */
556
- }
557
-
558
- #wphead h1, #dashmenu a.current:hover {
559
- color:#710001; /* colorvalue 3 */
560
- }
561
-
562
- div#media-upload-error, .file-error, abbr.required, .widget-control-remove:hover, .delete:hover {
563
- color: #f00;
564
- }
565
-
566
- #media-upload a.delete {
567
- color: #CF4529; /* colorvalue 5 */
568
- }
569
-
570
-
571
- /* TinyMCE */
572
- .wp_themeSkin *,
573
- .wp_themeSkin a:hover,
574
- .wp_themeSkin a:link,
575
- .wp_themeSkin a:visited,
576
- .wp_themeSkin a:active {
577
- color: #000;
578
- }
579
-
580
- /* Containers */
581
- .wp_themeSkin table {
582
- background: #710001; /* colorvalue 3 */
583
- }
584
-
585
- .wp_themeSkin iframe {
586
- background: #fff;
587
- }
588
-
589
- /* Layout */
590
- .wp_themeSkin .mceStatusbar {
591
- color:#333;
592
- background-color: #550007; /* colorvalue 4 */
593
- }
594
-
595
- /* Button */
596
- .wp_themeSkin .mceButton {
597
- background-color: #CF4529; /* colorvalue 5 */
598
- border-color: #710001; /* colorvalue 3 */
599
- }
600
-
601
- .wp_themeSkin a.mceButtonEnabled:hover,
602
- .wp_themeSkin a.mceButtonActive,
603
- .wp_themeSkin a.mceButtonSelected {
604
- background-color: #d6d8da;
605
- border-color: #7789ba !important;
606
- }
607
-
608
- .wp_themeSkin .mceButtonDisabled {
609
- border-color: #83B4D5 !important;
610
- }
611
-
612
- /* ListBox */
613
- .wp_themeSkin .mceListBox .mceText,
614
- .wp_themeSkin .mceListBox .mceOpen {
615
- border-color: #710001; /* colorvalue 3 */
616
- background-color: #CF4529; /* colorvalue 5 */
617
- }
618
-
619
- .wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
620
- .wp_themeSkin .mceListBoxHover .mceOpen,
621
- .wp_themeSkin .mceListBoxSelected .mceOpen,
622
- .wp_themeSkin .mceListBoxSelected .mceText {
623
- border-color: #7789ba !important;
624
- background-color: #d6d8da;
625
- }
626
-
627
- .wp_themeSkin table.mceListBoxEnabled:hover .mceText,
628
- .wp_themeSkin .mceListBoxHover .mceText {
629
- border-color: #7789ba !important;
630
- }
631
-
632
- .wp_themeSkin select.mceListBox {
633
- border-color: #550007; /* colorvalue 4 */
634
- background-color: #fff;
635
- }
636
-
637
- /* SplitButton */
638
- .wp_themeSkin .mceSplitButton a.mceAction,
639
- .wp_themeSkin .mceSplitButton a.mceOpen {
640
- background-color: #CF4529; /* colorvalue 5 */
641
- border-color: #710001; /* colorvalue 3 */
642
- }
643
-
644
- .wp_themeSkin .mceSplitButton a.mceOpen:hover,
645
- .wp_themeSkin .mceSplitButtonSelected a.mceOpen,
646
- .wp_themeSkin table.mceSplitButtonEnabled:hover a.mceAction,
647
- .wp_themeSkin .mceSplitButton a.mceAction:hover {
648
- background-color: #d6d8da;
649
- border-color: #7789ba !important;
650
- }
651
-
652
- .wp_themeSkin .mceSplitButtonActive {
653
- background-color: #d6d8da;
654
- }
655
-
656
- /* ColorSplitButton */
657
- .wp_themeSkin div.mceColorSplitMenu table {
658
- background-color: #ebeaeb;
659
- border-color: #808080;
660
- }
661
-
662
- .wp_themeSkin .mceColorSplitMenu a {
663
- border-color: #808080;
664
- }
665
-
666
- .wp_themeSkin .mceColorSplitMenu a.mceMoreColors {
667
- border-color: #fff;
668
- }
669
-
670
- .wp_themeSkin .mceColorSplitMenu a.mceMoreColors:hover {
671
- border-color: #0A246A;
672
- background-color: #B6BDD2;
673
- }
674
-
675
- .wp_themeSkin a.mceMoreColors:hover {
676
- border-color: #0A246A;
677
- }
678
-
679
- /* Menu */
680
- .wp_themeSkin .mceMenu {
681
- border-color: #ddd;
682
- }
683
-
684
- .wp_themeSkin .mceMenu table {
685
- background-color: #ebeaeb;
686
- }
687
-
688
- .wp_themeSkin .mceMenu .mceText {
689
- color: #000;
690
- }
691
-
692
- .wp_themeSkin .mceMenu .mceMenuItemEnabled a:hover,
693
- .wp_themeSkin .mceMenu .mceMenuItemActive, #quicktags {
694
- background-color:#550007; /* colorvalue 4 */
695
- }
696
- .wp_themeSkin td.mceMenuItemSeparator {
697
- background-color: #aaa;
698
- }
699
- .wp_themeSkin .mceMenuItemTitle a {
700
- background-color: #ccc;
701
- border-bottom-color: #aaa;
702
- }
703
- .wp_themeSkin .mceMenuItemTitle span.mceText {
704
- color: #000;
705
- }
706
- .wp_themeSkin .mceMenuItemDisabled .mceText {
707
- color: #888;
708
- }
709
-
710
- /* pop-up */
711
- .clearlooks2 .mceTop .mceLeft, .clearlooks2 .mceTop .mceRight {
712
- background-color: #550007; /* colorvalue 4 */
713
- border-color: #710001; /* colorvalue 3 */
714
- }
715
-
716
- .clearlooks2 .mceFocus .mceTop .mceLeft, .clearlooks2 .mceFocus .mceTop .mceRight {
717
- background-color: #710001; /* colorvalue 3 */
718
- border-color: #CF4529; /* colorvalue 5 */
719
- }
720
-
721
- #editorcontainer {
722
- border-color: #CF4529; /* colorvalue 5 */
723
- }
724
-
725
- #poststuff #titlewrap {
726
- border-color: #CF4529; /* colorvalue 5 */
727
- }
728
-
729
- #tTips p#tTips_inside {
730
- background-color: #ddd;
731
- color: #333;
732
- }
733
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
css/colors-grey.css DELETED
@@ -1,733 +0,0 @@
1
- a.page-numbers:hover {
2
- border-color: #000000; /* colorvalue 1 */
3
- }
4
-
5
- body {
6
- background: #fff;
7
- color: #333;
8
- }
9
-
10
- body > #upload-menu {
11
- border-bottom-color: #fff;;
12
- }
13
-
14
- div#current-widgets, #postcustomstuff table, #your-profile fieldset, a.page-numbers, #rightnow, div.dashboard-widget, .widefat {
15
- border-color: #909090; /* colorvalue 5 */
16
- }
17
-
18
- div.dashboard-widget-error {
19
- background-color: #909090; /* colorvalue 5 */
20
- }
21
-
22
- div.dashboard-widget-notice {
23
- background-color: #D8D8D8; /* colorvalue 4 */
24
- }
25
-
26
- div.dashboard-widget-submit, ul.widget-control-list div.widget-control-actions {
27
- border-top-color: #909090; /* colorvalue 5 */
28
- }
29
-
30
- input.disabled, textarea.disabled {
31
- background-color: #D8D8D8; /* colorvalue 4 */
32
- }
33
-
34
- #user_info a:hover, li.widget-list-control-item h4.widget-title a:hover, .submit a, #dashmenu a:hover, #footer a, #upload-menu li a.upload-tab-link, li.widget-list-control-item h4.widget-title a,
35
- #dragHelper li.widget-list-control-item h4.widget-title a,
36
- #draghelper li.widget-list-control-item h4.widget-title a:visited, .login #backtoblog a:hover {
37
- color: #D8D8D8; /* colorvalue 4 */
38
- }
39
-
40
- ul#category-tabs li.ui-tabs-selected, li.widget-list-control-item, div.nav, .tablenav, .submitbox, h3.dashboard-widget-title, h3.dashboard-widget-title span, h3.dashboard-widget-title small, ul.view-switch li.current, .form-table tr, #poststuff h3, .login form {
41
- background-color:#F0F0F0; /* colorvalue 3 */
42
- color:#000000; /* colorvalue 1 */
43
- }
44
-
45
- div.ui-tabs-panel {
46
- border-color: #F0F0F0; /* colorvalue 3 */
47
- }
48
-
49
- select {
50
- background-color: #fff;
51
- border-color: #909090; /* colorvalue 5 */
52
- }
53
-
54
- strong .post-com-count span {
55
- background-color: #2583ad;
56
- }
57
-
58
- .button-secondary, #login form .submit input {
59
- background-color: #000000; /* colorvalue 1 */
60
- }
61
-
62
- ul#widget-list li.widget-list-item h4.widget-title {
63
- background-color: #909090; /* colorvalue 5 */
64
- color: #333;
65
- }
66
-
67
- ul.widget-control-list .sorthelper {
68
- background-color: #909090; /* colorvalue 5 */
69
- }
70
-
71
- .ac_match, .subsubsub a.current, h2 {
72
- color: #333;
73
- }
74
-
75
- .ac_over {
76
- background-color: #D8D8D8; /* colorvalue 4 */
77
- }
78
-
79
- .ac_results {
80
- background-color: #fff;
81
- border-color: #909090; /* colorvalue 5 */
82
- }
83
-
84
- .ac_results li {
85
- color: #333;
86
- }
87
-
88
- .alternate {
89
- background-color: #D8D8D8; /* colorvalue 4 */
90
- }
91
-
92
- .available-theme a.screenshot {
93
- background-color: #D8D8D8; /* colorvalue 4 */
94
- border-color: #909090; /* colorvalue 5 */
95
- }
96
-
97
- .bar {
98
- background-color: #909090; /* colorvalue 5 */
99
- border-right-color: #D8D8D8; /* colorvalue 4 */
100
- }
101
-
102
- .describe {
103
- border-top-color: #909090; /* colorvalue 5 */
104
- }
105
-
106
- .error, #login #login_error {
107
- background-color: #ffebe8;
108
- border-color: #c00;
109
- }
110
-
111
- .error a {
112
- color: #c00;
113
- }
114
-
115
- .form-invalid {
116
- background-color: #ffebe8 !important;
117
- }
118
-
119
- .form-invalid input {
120
- border-color: #c00 !important;
121
- }
122
-
123
- .form-table input, .form-table textarea {
124
- border-color: #909090; /* colorvalue 5 */
125
- }
126
-
127
- .form-table td, .form-table th {
128
- border-bottom-color: #fff;
129
- }
130
-
131
- .highlight {
132
- background-color: #F0F0F0; /* colorvalue 3 */
133
- color: #787878; /* colorvalue 2 */
134
- }
135
-
136
- .howto, .nonessential, #sidemenu, #edit-slug-box, .form-input-tip, #dashboard_primary span.rss-date, .subsubsub, #dashboard_secondary div.dashboard-widget-content ul li a cite {
137
- color: #909090; /* colorvalue 5 */
138
- }
139
-
140
- #dashmenu a, #user_info a {
141
- color: #F0F0F0; /* colorvalue 3 */
142
- }
143
-
144
- .media-item {
145
- border-bottom-color: #909090; /* colorvalue 5 */
146
- }
147
-
148
- .media-upload-form label.form-help, td.help {
149
- color: #787878; /* colorvalue 2 */
150
- }
151
-
152
- .page-numbers {
153
- background-color: #fff;
154
- border-color: #fff;
155
- }
156
-
157
- .page-numbers.current {
158
- background-color: #787878; /* colorvalue 2 */
159
- border-color: #787878; /* colorvalue 2 */
160
- color: #fff;
161
- }
162
-
163
- .post-com-count {
164
- background-image: url(../../../../wp-admin/images/bubble_bg.gif);
165
- color: #fff;
166
- }
167
-
168
- .post-com-count span {
169
- background-color: #bbb;
170
- color: #fff;
171
- }
172
-
173
- .post-com-count:hover span {
174
- background-color: #d54e21;
175
- }
176
-
177
- .quicktags, .search {
178
- background-color: #787878; /* colorvalue 2 */
179
- color: #333;
180
- }
181
-
182
- .side-info h5, .bordertitle {
183
- border-bottom-color: #909090; /* colorvalue 5 */
184
- }
185
-
186
- .side-info ul, .widget-description {
187
- color: #787878; /* colorvalue 2 */
188
- }
189
-
190
- .submit input, .button, .button-secondary, #login form .submit input, div.dashboard-widget-submit input, #edit-slug-buttons a.save {
191
- background-color: #D8D8D8; /* colorvalue 4 */
192
- color: #787878; /* colorvalue 2 */
193
- border-color: #F0F0F0; /* colorvalue 3 */
194
- }
195
-
196
- .tablenav .button-secondary {
197
- border-color: #787878; /* colorvalue 2 */
198
- }
199
-
200
- .submit input:hover, .button:hover, #edit-slug-buttons a.save:hover {
201
- border-color: #F0F0F0; /* colorvalue 3 */
202
- }
203
-
204
- .submit input:hover, .button:hover, .button-secondary:hover, #wphead #viewsite a:hover, #submenu a.current, #submenu a:hover, .submitbox #previewview a:hover, #the-comment-list .comment a:hover, #rightnow a:hover, a:hover, .subsubsub a:hover, .subsubsub a.current:hover, #login form .submit input:hover, div.dashboard-widget-submit input:hover, #edit-slug-buttons a.save:hover {
205
- color: #000000; /* colorvalue 1 */
206
- }
207
-
208
- #adminmenu a:hover, #sidemenu a:hover {
209
- color: #D8D8D8; /* colorvalue 4 */
210
- }
211
-
212
- .button-secondary:hover, #login form .submit input:hover {
213
- border-color: #787878; /* colorvalue 2 */
214
- background-color: #D8D8D8; /* colorvalue 4 */
215
- }
216
-
217
- .submitbox #autosave .error, ul.view-switch li.current a {
218
- color: #909090; /* colorvalue 5 */
219
- }
220
-
221
- .submitbox #previewview {
222
- background-color:#787878; /* colorvalue 2 */
223
- }
224
-
225
- .submitbox #previewview a, #rightnow .rbutton {
226
- background-color: #909090; /* colorvalue 5 */
227
- color: #F0F0F0; /* colorvalue 3 */
228
- }
229
-
230
- .submitbox .submit {
231
- background-color: #909090; /* colorvalue 5 */
232
- color: #F0F0F0; /* colorvalue 3 */
233
- }
234
-
235
- .submitbox .submitdelete {
236
- border-bottom-color: #909090; /* colorvalue 5 */
237
- }
238
-
239
- .submitbox .submitdelete:hover {
240
- color: #fff;
241
- background-color: #f00;
242
- border-bottom-color: #f00;
243
- }
244
-
245
- .tablenav .dots {
246
- background-color: #F0F0F0; /* colorvalue 3 */
247
- border-color: #F0F0F0; /* colorvalue 3 */
248
- }
249
-
250
- .tablenav .next, .tablenav .prev{
251
- background-color: #F0F0F0; /* colorvalue 3 */
252
- border-bottom-color: #F0F0F0; /* colorvalue 3 */
253
- border-color: #F0F0F0; /* colorvalue 3 */
254
- color: #787878; /* colorvalue 2 */
255
- }
256
-
257
- .tablenav .next:hover, .tablenav .prev:hover {
258
- border-bottom-color: #d54e21;
259
- border-color: #F0F0F0; /* colorvalue 3 */
260
- color: #d54e21;
261
- }
262
-
263
- .updated, .login #login_error, .login .message {
264
- background-color:#787878; /* colorvalue 2 */
265
- border-color:#000000; /* colorvalue 1 */
266
- }
267
-
268
- .updated a {
269
- border-bottom-color: #F0F0F0; /* colorvalue 3 */
270
- }
271
-
272
- .widefat td, .widefat th, div#available-widgets-filter, ul#widget-list li.widget-list-item, .commentlist li {
273
- border-bottom-color: #909090; /* colorvalue 5 */
274
- }
275
-
276
- .widefat thead, .thead {
277
- background-color:#909090; /* colorvalue 5 */
278
- color: #787878; /* colorvalue 2 */
279
- }
280
-
281
- .widget-control-save, .widget-control-remove {
282
- background-color: #F0F0F0; /* colorvalue 3 */
283
- color: #909090; /* colorvalue 5 */
284
- }
285
-
286
- .wrap h2 {
287
- border-bottom-color:#F0F0F0; /* colorvalue 3 */
288
- color:#787878; /* colorvalue 2 */
289
- }
290
-
291
- #poststuff #edButtonPreview, #poststuff #edButtonHTML, #the-comment-list p.comment-author strong a, a {
292
- color: #787878; /* colorvalue 2 */
293
- }
294
-
295
- #adminmenu a {
296
- color: #F0F0F0; /* colorvalue 3 */
297
- }
298
-
299
- #submenu a {
300
- color: #787878; /* colorvalue 2 */
301
- }
302
- /* Because we don't want visited on these links */
303
- #adminmenu a.current, #sidemenu a.current {
304
- background-color: #fff;
305
- border-color: #000000; /* colorvalue 1 */
306
- border-bottom-color: #fff;
307
- color: #333;
308
- font-weight: bold;
309
- }
310
-
311
- #adminmenu li a #awaiting-mod {
312
- background-image: url(../../../../wp-admin/images/comment-stalk-classic.gif);
313
- }
314
-
315
- #adminmenu li a #awaiting-mod span {
316
- background-color: #d54e21;
317
- color: #fff;
318
- }
319
-
320
- #rightnow .reallynow {
321
- background-color:#787878; /* colorvalue 2 */
322
- color:#D8D8D8; /* colorvalue 4 */
323
- }
324
-
325
- #rightnow .reallynow a {
326
- background-color:#D8D8D8; /* colorvalue 4 */
327
- color:#787878; /* colorvalue 2 */
328
- }
329
-
330
- #rightnow .reallynow a:hover {
331
- color:#909090; /* colorvalue 5 */
332
- }
333
-
334
-
335
- #adminmenu li a:hover #awaiting-mod span {
336
- background-color: #000000; /* colorvalue 1 */
337
- }
338
-
339
- #adminmenu, div#media-upload-header {
340
- background-color: #787878; /* colorvalue 2 */
341
- border-bottom-color: #000000; /* colorvalue 1 */
342
- }
343
-
344
- #currenttheme img {
345
- border-color: #909090; /* colorvalue 5 */
346
- }
347
-
348
- #current-widgets .drop-widget-here {
349
- background-color: #ffc;
350
- }
351
-
352
- #dashboard_secondary div.dashboard-widget-content ul li a {
353
- background-color: #D8D8D8; /* colorvalue 4 */
354
- }
355
-
356
- input.readonly {
357
- background-color: #909090; /* colorvalue 5 */
358
- }
359
-
360
- #dashmenu a.current {
361
- background-color: #787878; /* colorvalue 2 */
362
- color: #F0F0F0; /* colorvalue 3 */
363
- }
364
-
365
- #dragHelper h4.widget-title, li.widget-list-control-item h4, #dragHelper li.widget-list-control-item h4 {
366
- background-color: #787878; /* colorvalue 2 */
367
- color: #D8D8D8; /* colorvalue 4 */
368
- }
369
-
370
- #ed_toolbar input {
371
- background: url( ../../../../wp-admin/images/fade-butt.png ) #fff repeat-x 0 -2px;
372
- }
373
-
374
- #editable-post-name {
375
- background-color: #fffbcc;
376
- }
377
-
378
- #edit-slug-box strong, .login #nav a {
379
- color: #909090; /* colorvalue 5 */
380
- }
381
-
382
- #edit-slug-buttons a.save {
383
- background-color: #909090; /* colorvalue 5 */
384
- }
385
-
386
- #footer {
387
- background-image: url(../img/wplogo.png) !important;
388
- background-position:10px 10px;
389
- background-repeat: no-repeat;
390
- _background-image: url(../img/wplogo.gif);
391
- background-color:#909090; /* colorvalue 5 */
392
- color:#000000; /* colorvalue 1 */
393
- }
394
-
395
- #media-items {
396
- border-color: #909090; /* colorvalue 5 */
397
- }
398
-
399
- #pass-strength-result {
400
- background-color: #909090; /* colorvalue 5 */
401
- border-color: #D8D8D8; /* colorvalue 4 */
402
- }
403
-
404
- #pass-strength-result.bad {
405
- background-color: #D8D8D8; /* colorvalue 4 */
406
- border-color: #000000; /* colorvalue 1 */
407
- }
408
-
409
- #pass-strength-result.good {
410
- background-color: #909090; /* colorvalue 5 */
411
- border-color: #D8D8D8; /* colorvalue 4 */
412
- }
413
-
414
- #pass-strength-result.short {
415
- background-color: #909090; /* colorvalue 5 */
416
- }
417
-
418
- #pass-strength-result.strong {
419
- background-color: #787878; /* colorvalue 2 */
420
- border-color: #D8D8D8; /* colorvalue 4 */
421
- }
422
-
423
- .checkbox, .side-info, #your-profile #rich_editing {
424
- background-color: #fff;
425
- }
426
-
427
- #plugins .active {
428
- background-color:#F0F0F0; /* colorvalue 3 */
429
- color:#787878; /* colorvalue 2 */
430
- }
431
-
432
- #plugins .togl {
433
- border-right-color: #D8D8D8; /* colorvalue 4 */
434
- }
435
-
436
- #the-comment-list .unapproved {
437
- background-color: #ffffe0;
438
- }
439
-
440
- #plugins tr {
441
- background-color: #fff;
442
- }
443
-
444
- #poststuff #editor-toolbar .active {
445
- background-color: #D8D8D8; /* colorvalue 4 */
446
- color: #787878; /* colorvalue 2 */
447
- }
448
-
449
- #poststuff .closed .togbox {
450
- background-color: #F0F0F0; /* colorvalue 3 */
451
- background-image: url(../../../../wp-admin/images/toggle-arrow.gif);
452
- }
453
-
454
- #poststuff .postbox, #titlediv, #poststuff .postarea, #poststuff .stuffbox {
455
- border-color: #909090; /* colorvalue 5 */
456
- border-right-color: #F0F0F0; /* colorvalue 3 */
457
- border-bottom-color: #F0F0F0; /* colorvalue 3 */
458
- }
459
-
460
- #poststuff .togbox {
461
- background-color:#909090; /* colorvalue 5 */
462
- background-image: url(../../../../wp-admin/images/toggle-arrow.gif);
463
- }
464
-
465
- #quicktags #ed_link {
466
- color: #787878; /* colorvalue 2 */
467
- }
468
-
469
- #rightnow .youhave {
470
- background-color: #F0F0F0; /* colorvalue 3 */
471
- }
472
-
473
- #rightnow a {
474
- color: #787878; /* colorvalue 2 */
475
- }
476
-
477
- #sidemenu a {
478
- background-color: #787878; /* colorvalue 2 */
479
- border-bottom-color: #000000; /* colorvalue 1 */
480
- border-top-color: #787878; /* colorvalue 2 */
481
- color: #F0F0F0; /* colorvalue 3 */
482
- }
483
-
484
- #tagchecklist span a {
485
- background: url(../../../../wp-admin/images/xit.gif) no-repeat;
486
- }
487
-
488
- #tagchecklist span a:hover {
489
- background: url(../../../../wp-admin/images/xit.gif) no-repeat -10px 0;
490
- }
491
-
492
- #the-comment-list .comment a {
493
- border-bottom-color: #909090; /* colorvalue 5 */
494
- color: #F0F0F0; /* colorvalue 3 */
495
- }
496
-
497
- #update-nag, .plugin-update {
498
- background-color: #fffeeb;
499
- border-bottom-color: #ccc;
500
- border-top-color: #ccc;
501
- color: #555;
502
- }
503
-
504
- #upload-files a.file-link {
505
- background-color: #D8D8D8; /* colorvalue 4 */
506
- }
507
-
508
- #upload-file-view a img {
509
- border-bottom-color: #787878; /* colorvalue 2 */
510
- }
511
-
512
- #upload-menu li #current-tab-nav, #upload-file {
513
- background-color: #D8D8D8; /* colorvalue 4 */
514
- }
515
-
516
- #upload-menu li span a.page-numbers {
517
- color: #000000; /* colorvalue 1 */
518
- }
519
-
520
- #upload-menu li.current {
521
- border-right-color: #F0F0F0; /* colorvalue 3 */
522
- color: #333;
523
- }
524
-
525
- #upload-menu li.current a.upload-tab-link, #upload-menu li a:hover {
526
- background-color: #D8D8D8; /* colorvalue 4 */
527
- color: #333;
528
- }
529
-
530
- #upload-menu, #upload-menu li {
531
- border-top-color: #D8D8D8; /* colorvalue 4 */
532
- }
533
-
534
- #user_info, .login #backtoblog a {
535
- color: #D8D8D8; /* colorvalue 4 */
536
- }
537
-
538
- #wphead {
539
- background-color:#787878; /* colorvalue 2 */
540
- color:#F0F0F0; /* colorvalue 3 */
541
- }
542
-
543
- #wphead, body.login {
544
- border-top-color:#000000; /* colorvalue 1 */
545
- color:#787878; /* colorvalue 2 */
546
- }
547
-
548
- #wphead #viewsite a {
549
- background-color: #F0F0F0; /* colorvalue 3 */
550
- color: #787878; /* colorvalue 2 */
551
- border-color: #D8D8D8; /* colorvalue 4 */
552
- }
553
-
554
- #wphead #viewsite a:hover {
555
- color: #000000; /* colorvalue 1 */
556
- }
557
-
558
- #wphead h1, #dashmenu a.current:hover {
559
- color:#F0F0F0; /* colorvalue 3 */
560
- }
561
-
562
- div#media-upload-error, .file-error, abbr.required, .widget-control-remove:hover, .delete:hover {
563
- color: #f00;
564
- }
565
-
566
- #media-upload a.delete {
567
- color: #909090; /* colorvalue 5 */
568
- }
569
-
570
-
571
- /* TinyMCE */
572
- .wp_themeSkin *,
573
- .wp_themeSkin a:hover,
574
- .wp_themeSkin a:link,
575
- .wp_themeSkin a:visited,
576
- .wp_themeSkin a:active {
577
- color: #000;
578
- }
579
-
580
- /* Containers */
581
- .wp_themeSkin table {
582
- background: #F0F0F0; /* colorvalue 3 */
583
- }
584
-
585
- .wp_themeSkin iframe {
586
- background: #fff;
587
- }
588
-
589
- /* Layout */
590
- .wp_themeSkin .mceStatusbar {
591
- color:#333;
592
- background-color: #D8D8D8; /* colorvalue 4 */
593
- }
594
-
595
- /* Button */
596
- .wp_themeSkin .mceButton {
597
- background-color: #909090; /* colorvalue 5 */
598
- border-color: #F0F0F0; /* colorvalue 3 */
599
- }
600
-
601
- .wp_themeSkin a.mceButtonEnabled:hover,
602
- .wp_themeSkin a.mceButtonActive,
603
- .wp_themeSkin a.mceButtonSelected {
604
- background-color: #d6d8da;
605
- border-color: #7789ba !important;
606
- }
607
-
608
- .wp_themeSkin .mceButtonDisabled {
609
- border-color: #83B4D5 !important;
610
- }
611
-
612
- /* ListBox */
613
- .wp_themeSkin .mceListBox .mceText,
614
- .wp_themeSkin .mceListBox .mceOpen {
615
- border-color: #F0F0F0; /* colorvalue 3 */
616
- background-color: #909090; /* colorvalue 5 */
617
- }
618
-
619
- .wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
620
- .wp_themeSkin .mceListBoxHover .mceOpen,
621
- .wp_themeSkin .mceListBoxSelected .mceOpen,
622
- .wp_themeSkin .mceListBoxSelected .mceText {
623
- border-color: #7789ba !important;
624
- background-color: #d6d8da;
625
- }
626
-
627
- .wp_themeSkin table.mceListBoxEnabled:hover .mceText,
628
- .wp_themeSkin .mceListBoxHover .mceText {
629
- border-color: #7789ba !important;
630
- }
631
-
632
- .wp_themeSkin select.mceListBox {
633
- border-color: #D8D8D8; /* colorvalue 4 */
634
- background-color: #fff;
635
- }
636
-
637
- /* SplitButton */
638
- .wp_themeSkin .mceSplitButton a.mceAction,
639
- .wp_themeSkin .mceSplitButton a.mceOpen {
640
- background-color: #909090; /* colorvalue 5 */
641
- border-color: #F0F0F0; /* colorvalue 3 */
642
- }
643
-
644
- .wp_themeSkin .mceSplitButton a.mceOpen:hover,
645
- .wp_themeSkin .mceSplitButtonSelected a.mceOpen,
646
- .wp_themeSkin table.mceSplitButtonEnabled:hover a.mceAction,
647
- .wp_themeSkin .mceSplitButton a.mceAction:hover {
648
- background-color: #d6d8da;
649
- border-color: #7789ba !important;
650
- }
651
-
652
- .wp_themeSkin .mceSplitButtonActive {
653
- background-color: #d6d8da;
654
- }
655
-
656
- /* ColorSplitButton */
657
- .wp_themeSkin div.mceColorSplitMenu table {
658
- background-color: #ebeaeb;
659
- border-color: #808080;
660
- }
661
-
662
- .wp_themeSkin .mceColorSplitMenu a {
663
- border-color: #808080;
664
- }
665
-
666
- .wp_themeSkin .mceColorSplitMenu a.mceMoreColors {
667
- border-color: #fff;
668
- }
669
-
670
- .wp_themeSkin .mceColorSplitMenu a.mceMoreColors:hover {
671
- border-color: #0A246A;
672
- background-color: #B6BDD2;
673
- }
674
-
675
- .wp_themeSkin a.mceMoreColors:hover {
676
- border-color: #0A246A;
677
- }
678
-
679
- /* Menu */
680
- .wp_themeSkin .mceMenu {
681
- border-color: #ddd;
682
- }
683
-
684
- .wp_themeSkin .mceMenu table {
685
- background-color: #ebeaeb;
686
- }
687
-
688
- .wp_themeSkin .mceMenu .mceText {
689
- color: #000;
690
- }
691
-
692
- .wp_themeSkin .mceMenu .mceMenuItemEnabled a:hover,
693
- .wp_themeSkin .mceMenu .mceMenuItemActive, #quicktags {
694
- background-color:#D8D8D8; /* colorvalue 4 */
695
- }
696
- .wp_themeSkin td.mceMenuItemSeparator {
697
- background-color: #aaa;
698
- }
699
- .wp_themeSkin .mceMenuItemTitle a {
700
- background-color: #ccc;
701
- border-bottom-color: #aaa;
702
- }
703
- .wp_themeSkin .mceMenuItemTitle span.mceText {
704
- color: #000;
705
- }
706
- .wp_themeSkin .mceMenuItemDisabled .mceText {
707
- color: #888;
708
- }
709
-
710
- /* pop-up */
711
- .clearlooks2 .mceTop .mceLeft, .clearlooks2 .mceTop .mceRight {
712
- background-color: #D8D8D8; /* colorvalue 4 */
713
- border-color: #F0F0F0; /* colorvalue 3 */
714
- }
715
-
716
- .clearlooks2 .mceFocus .mceTop .mceLeft, .clearlooks2 .mceFocus .mceTop .mceRight {
717
- background-color: #F0F0F0; /* colorvalue 3 */
718
- border-color: #909090; /* colorvalue 5 */
719
- }
720
-
721
- #editorcontainer {
722
- border-color: #909090; /* colorvalue 5 */
723
- }
724
-
725
- #poststuff #titlewrap {
726
- border-color: #909090; /* colorvalue 5 */
727
- }
728
-
729
- #tTips p#tTips_inside {
730
- background-color: #ddd;
731
- color: #333;
732
- }
733
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
css/colors-wp23.css DELETED
@@ -1,940 +0,0 @@
1
- /*
2
- Scheme: WordPress 2.3
3
- Colors: 000000|14568A|448ABD|83B4D8
4
- Author of Basis: James Dick
5
- Basis from Plugin: http://www.jamesdimick.com/creations/easy-admin-color-schemes/
6
- */
7
- a.page-numbers:hover {
8
- border-color: #999;
9
- }
10
-
11
- body > #upload-menu {
12
- border-bottom-color: #fff;
13
- }
14
-
15
- div#current-widgets, #postcustomstuff table, #your-profile fieldset, a.page-numbers, #rightnow, div.dashboard-widget, .widefat {
16
- border-color: #ccc;
17
- }
18
-
19
- div.dashboard-widget-error {
20
- background-color: #c43;
21
- }
22
-
23
- div.dashboard-widget-notice {
24
- background-color: #F0F6FB;
25
- }
26
-
27
- div.dashboard-widget-submit, ul.widget-control-list div.widget-control-actions {
28
- border-top-color: #ccc;
29
- }
30
-
31
- input.disabled, textarea.disabled {
32
- background-color: #ccc;
33
- }
34
-
35
- li.widget-list-control-item h4.widget-title a:hover, .submit a, #upload-menu li a.upload-tab-link, li.widget-list-control-item h4.widget-title a,
36
- #dragHelper li.widget-list-control-item h4.widget-title a,
37
- #draghelper li.widget-list-control-item h4.widget-title a:visited, .login #backtoblog a:hover {
38
- color: #fff;
39
- }
40
-
41
- ul#category-tabs li.ui-tabs-selected, li.widget-list-control-item, div.nav, .tablenav, .submitbox, h3.dashboard-widget-title, h3.dashboard-widget-title span, h3.dashboard-widget-title small, ul.view-switch li.current, .form-table tr, #poststuff h3, .login form {
42
- background-color: #cfebf7;
43
- }
44
-
45
- div.ui-tabs-panel {
46
- border-color: #cfebf7;
47
- }
48
-
49
- select {
50
- background-color: #fff;
51
- border-color: #ddd;
52
- }
53
-
54
- strong .post-com-count span {
55
- background-color: #2583ad;
56
- }
57
-
58
- .button-secondary, #login form .submit input {
59
- background-color: #8ebddc !important;
60
- }
61
-
62
- ul#widget-list li.widget-list-item h4.widget-title {
63
- background-color: #f0f0f0;
64
- color: #000;
65
- }
66
-
67
- ul.widget-control-list .sorthelper {
68
- background-color: #ccf3fa;
69
- }
70
-
71
- .ac_match, .subsubsub a.current, h2 {
72
- color: #000;
73
- }
74
-
75
- .ac_over {
76
- background-color: #f0f0b8;
77
- }
78
-
79
- .ac_results {
80
- background-color: #fff;
81
- border-color: #808080;
82
- }
83
-
84
- .ac_results li {
85
- color: #101010;
86
- }
87
-
88
- .alternate {
89
- background-color: #f9f9f9;
90
- }
91
-
92
- .available-theme a.screenshot {
93
- background-color: #f1f1f1;
94
- border-color: #ccc;
95
- }
96
-
97
- .bar {
98
- background-color: #e8e8e8;
99
- border-right-color: #99d;
100
- }
101
-
102
- .describe {
103
- border-top-color: #d0d0d0;
104
- }
105
-
106
- #login #login_error {
107
- background-color: #ffebe8;
108
- border-color: #c00;
109
- }
110
-
111
- .form-invalid {
112
- background-color: #ffebe8 !important;
113
- }
114
-
115
- .form-invalid input {
116
- border-color: #c00 !important;
117
- }
118
-
119
- .form-table input, .form-table textarea {
120
- border-color: #c6d9e9;
121
- }
122
-
123
- .form-table td, .form-table th {
124
- border-bottom-color: #fff;
125
- }
126
-
127
- .highlight {
128
- background-color: #cfebf7;
129
- color: #d54e21;
130
- }
131
-
132
- .howto, .nonessential, #edit-slug-box, .form-input-tip, #dashboard_primary span.rss-date, .subsubsub, #dashboard_secondary div.dashboard-widget-content ul li a cite {
133
- color: #999;
134
- }
135
-
136
- .media-item {
137
- border-bottom-color: #d0d0d0;
138
- }
139
-
140
- .media-upload-form label.form-help, td.help {
141
- color: #9a9a9a;
142
- }
143
-
144
- .page-numbers {
145
- background-color: #fff;
146
- border-color: #fff;
147
- }
148
-
149
- .page-numbers.current {
150
- background-color: #328ab2;
151
- border-color: #328ab2;
152
- color: #fff;
153
- }
154
-
155
- .post-com-count {
156
- background-image: url(../../../../wp-admin/images/bubble_bg.gif);
157
- color: #fff;
158
- }
159
-
160
- .post-com-count span {
161
- background-color: #bbb;
162
- color: #fff;
163
- }
164
-
165
- .post-com-count:hover span {
166
- background-color: #d54e21;
167
- }
168
-
169
- .quicktags, .search {
170
- background-color: #ccc;
171
- color: #000;
172
- }
173
-
174
- .side-info h5, .bordertitle {
175
- border-bottom-color: #dadada;
176
- }
177
-
178
- .side-info ul, .widget-description {
179
- color: #666;
180
- }
181
-
182
- .submit input, .button, .button-secondary, #login form .submit input, div.dashboard-widget-submit input, #edit-slug-buttons a.save {
183
- background-color: #e5e5e5;
184
- color: #07273e;
185
- border-color: #a3a3a3;
186
- }
187
-
188
- .button[disabled], .button:disabled {
189
- background-color: #999;
190
- }
191
-
192
- .tablenav .button-secondary {
193
- border-color: #5396c5;
194
- }
195
-
196
- .submit input:hover, .button:hover, #edit-slug-buttons a.save:hover {
197
- border-color: #535353;
198
- }
199
-
200
- .submit input:hover, .button:hover, .button-secondary:hover, .submitbox #previewview a:hover, #the-comment-list .comment a:hover, #rightnow a:hover, a:hover, .subsubsub a:hover, .subsubsub a.current:hover, #login form .submit input:hover, div.dashboard-widget-submit input:hover, #edit-slug-buttons a.save:hover {
201
- color: #d54e21;
202
- }
203
-
204
- .button-secondary:hover, #login form .submit input:hover {
205
- border-color: #328ab2;
206
- background-color: #a6d2e5 !important;
207
- }
208
-
209
- .submitbox #autosave .error, ul.view-switch li.current a {
210
- color: #333;
211
- }
212
-
213
- .submitbox #previewview {
214
- background-color: #5488af;
215
- }
216
-
217
- .submitbox #previewview a, #rightnow .rbutton {
218
- background-color: #ebebeb;
219
- color: #264761;
220
- }
221
-
222
- .submitbox .submit {
223
- background-color: #464646;
224
- color: #ccc;
225
- }
226
-
227
- .submitbox .submitdelete {
228
- border-bottom-color: #999;
229
- }
230
-
231
- .submitbox .submitdelete:hover {
232
- color: #fff;
233
- background-color: #f00;
234
- border-bottom-color: #f00;
235
- }
236
-
237
- .tablenav .dots {
238
- background-color: #cfebf7;
239
- border-color: #cfebf7;
240
- }
241
-
242
- .tablenav .next, .tablenav .prev{
243
- background-color: #cfebf7;
244
- border-bottom-color: #cfebf7;
245
- border-color: #cfebf7;
246
- color: #2583ad;
247
- }
248
-
249
- .tablenav .next:hover, .tablenav .prev:hover {
250
- border-bottom-color: #d54e21;
251
- border-color: #cfebf7;
252
- color: #d54e21;
253
- }
254
-
255
- .updated, .login #login_error, .login .message {
256
- background-color: #ffffe0;
257
- border-color: #e6db55;
258
- }
259
-
260
- .widefat td, .widefat th, div#available-widgets-filter, ul#widget-list li.widget-list-item, .commentlist li {
261
- border-bottom-color: #ccc;
262
- }
263
-
264
- .widefat thead, .thead {
265
- background-color: #464646;
266
- color: #d7d7d7;
267
- }
268
-
269
- .widget-control-save, .widget-control-remove {
270
- background-color: #83b4d5;
271
- color: #246;
272
- }
273
-
274
- .wrap h2 {
275
- border-bottom-color: #dadada;
276
- color: #5a5a5a;
277
- }
278
-
279
- #poststuff #edButtonPreview, #poststuff #edButtonHTML, #the-comment-list p.comment-author strong a, a {
280
- color: #2e7ca0;
281
- }
282
-
283
- #rightnow .reallynow {
284
- background-color: #14568a;
285
- color: #fff;
286
- }
287
-
288
- div#media-upload-header {
289
- background-color: #14568a;
290
- border-bottom-color: #07273e;
291
- }
292
-
293
- #currenttheme img {
294
- border-color: #666;
295
- }
296
-
297
- #current-widgets .drop-widget-here {
298
- background-color: #ffc;
299
- }
300
-
301
- #dashboard_secondary div.dashboard-widget-content ul li a {
302
- background-color: #f9f9f9;
303
- }
304
-
305
- input.readonly {
306
- background-color: #ddd;
307
- }
308
-
309
- #dragHelper h4.widget-title, li.widget-list-control-item h4, #dragHelper li.widget-list-control-item h4 {
310
- background-color: #2683ae;
311
- color: #fff;
312
- }
313
-
314
- #ed_toolbar input {
315
- background: url( ../images/fade-butt.png ) #fff repeat-x 0 -2px;
316
- }
317
-
318
- #editable-post-name {
319
- background-color: #fffbcc;
320
- }
321
-
322
- #edit-slug-box strong, .login #nav a {
323
- color: #777;
324
- }
325
-
326
- #edit-slug-buttons a.save {
327
- background-color: #ebebeb;
328
- }
329
-
330
- #media-items {
331
- border-color: #c0c0c0;
332
- }
333
-
334
- #pass-strength-result {
335
- background-color: #e3e3e3;
336
- border-color: #000;
337
- }
338
-
339
- #pass-strength-result.bad {
340
- background-color: #ffeff7;
341
- border-color: #c69;
342
- }
343
-
344
- #pass-strength-result.good {
345
- background-color: #effff4;
346
- border-color: #66cc87;
347
- }
348
-
349
- #pass-strength-result.short {
350
- background-color: #e3e3e3;
351
- }
352
-
353
- #pass-strength-result.strong {
354
- background-color: #59ef86;
355
- border-color: #319f52;
356
- }
357
-
358
- .checkbox, .side-info, #your-profile #rich_editing {
359
- background-color: #fff;
360
- }
361
-
362
- #plugins .active {
363
- background-color: #BBEEBB;
364
- }
365
-
366
- #plugins .togl {
367
- border-right-color: #ccc;
368
- }
369
-
370
- #the-comment-list .unapproved {
371
- background-color: #ffffe0;
372
- }
373
-
374
- #plugins tr {
375
- background-color: #fff;
376
- }
377
-
378
- #poststuff #editor-toolbar .active {
379
- background-color: #83b4d5;
380
- color: #333;
381
- }
382
-
383
- #poststuff .closed .togbox {
384
- background-color: #2583ad;
385
- background-image: url(../../../../wp-admin/images/toggle-arrow.gif);
386
- }
387
-
388
- #poststuff .postbox, #titlediv, #poststuff .postarea, #poststuff .stuffbox {
389
- border-color: #ebebeb;
390
- border-right-color: #ccc;
391
- border-bottom-color: #ccc;
392
- }
393
-
394
- #poststuff .togbox {
395
- background-color: #b2b2b2;
396
- background-image: url(../../../../wp-admin/images/toggle-arrow.gif);
397
- }
398
-
399
- #quicktags #ed_link {
400
- color: #00f;
401
- }
402
-
403
- #rightnow .youhave {
404
- background-color: #f0f6fb;
405
- }
406
-
407
- #rightnow a {
408
- color: #448abd;
409
- }
410
-
411
- #tagchecklist span a {
412
- background: url(../../../../wp-admin/images/xit.gif) no-repeat;
413
- }
414
-
415
- #tagchecklist span a:hover {
416
- background: url(../../../../wp-admin/images/xit.gif) no-repeat -10px 0;
417
- }
418
-
419
- #the-comment-list .comment a {
420
- border-bottom-color: #ababab;
421
- color: #666;
422
- }
423
-
424
- #update-nag, .plugin-update {
425
- background-color: #fffeeb;
426
- border-bottom-color: #ccc;
427
- border-top-color: #ccc;
428
- color: #555;
429
- }
430
-
431
- #upload-files a.file-link {
432
- background-color: #d1e2ef;
433
- }
434
-
435
- #upload-file-view a img {
436
- border-bottom-color: #69c;
437
- }
438
-
439
- #upload-menu li #current-tab-nav, #upload-file {
440
- background-color: #f9fcfe;
441
- }
442
-
443
- #upload-menu li span a.page-numbers {
444
- color: #00019b;
445
- }
446
-
447
- #upload-menu li.current {
448
- border-right-color: #448abd;
449
- color: #000;
450
- }
451
-
452
- #upload-menu li.current a.upload-tab-link, #upload-menu li a:hover {
453
- background-color: #f9fcfe;
454
- color: #000;
455
- }
456
-
457
- #upload-menu, #upload-menu li {
458
- border-top-color: #247fab;
459
- }
460
-
461
- #user_info, .login #backtoblog a {
462
- color: #ccc;
463
- }
464
-
465
- body.login {
466
- border-top-color: #07273e;
467
- }
468
-
469
- div#media-upload-error, .file-error, abbr.required, .widget-control-remove:hover, .delete:hover {
470
- color: #f00;
471
- }
472
-
473
- #media-upload a.delete {
474
- color: #888;
475
- }
476
-
477
- .wp_themeSkin *,
478
- .wp_themeSkin a:hover,
479
- .wp_themeSkin a:link,
480
- .wp_themeSkin a:visited,
481
- .wp_themeSkin a:active {
482
- color: #000;
483
- }
484
-
485
- .wp_themeSkin table {
486
- background: #83B4D5;
487
- }
488
-
489
- .wp_themeSkin iframe {
490
- background: #fff;
491
- }
492
-
493
- .wp_themeSkin .mceStatusbar {
494
- color:#000;
495
- background-color: #eaf3fa;
496
- }
497
-
498
- .wp_themeSkin .mceButton {
499
- background-color: #e9e8e8;
500
- border-color: #83B4D5;
501
- }
502
-
503
- .wp_themeSkin a.mceButtonEnabled:hover,
504
- .wp_themeSkin a.mceButtonActive,
505
- .wp_themeSkin a.mceButtonSelected {
506
- background-color: #d6d8da;
507
- border-color: #7789ba !important;
508
- }
509
-
510
- .wp_themeSkin .mceButtonDisabled {
511
- border-color: #83B4D5 !important;
512
- }
513
-
514
- .wp_themeSkin .mceListBox .mceText,
515
- .wp_themeSkin .mceListBox .mceOpen {
516
- border-color: #83B4D5;
517
- background-color: #e9e8e8;
518
- }
519
-
520
- .wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
521
- .wp_themeSkin .mceListBoxHover .mceOpen,
522
- .wp_themeSkin .mceListBoxSelected .mceOpen,
523
- .wp_themeSkin .mceListBoxSelected .mceText {
524
- border-color: #7789ba !important;
525
- background-color: #d6d8da;
526
- }
527
-
528
- .wp_themeSkin table.mceListBoxEnabled:hover .mceText,
529
- .wp_themeSkin .mceListBoxHover .mceText {
530
- border-color: #7789ba !important;
531
- }
532
-
533
- .wp_themeSkin select.mceListBox {
534
- border-color: #b3c7e1;
535
- background-color: #fff;
536
- }
537
-
538
- .wp_themeSkin .mceSplitButton a.mceAction,
539
- .wp_themeSkin .mceSplitButton a.mceOpen {
540
- background-color: #e9e8e8;
541
- border-color: #83B4D5;
542
- }
543
-
544
- .wp_themeSkin .mceSplitButton a.mceOpen:hover,
545
- .wp_themeSkin .mceSplitButtonSelected a.mceOpen,
546
- .wp_themeSkin table.mceSplitButtonEnabled:hover a.mceAction,
547
- .wp_themeSkin .mceSplitButton a.mceAction:hover {
548
- background-color: #d6d8da;
549
- border-color: #7789ba !important;
550
- }
551
-
552
- .wp_themeSkin .mceSplitButtonActive {
553
- background-color: #d6d8da;
554
- }
555
-
556
- .wp_themeSkin div.mceColorSplitMenu table {
557
- background-color: #ebeaeb;
558
- border-color: #808080;
559
- }
560
-
561
- .wp_themeSkin .mceColorSplitMenu a {
562
- border-color: #808080;
563
- }
564
-
565
- .wp_themeSkin .mceColorSplitMenu a.mceMoreColors {
566
- border-color: #fff;
567
- }
568
-
569
- .wp_themeSkin .mceColorSplitMenu a.mceMoreColors:hover {
570
- border-color: #0A246A;
571
- background-color: #B6BDD2;
572
- }
573
-
574
- .wp_themeSkin a.mceMoreColors:hover {
575
- border-color: #0A246A;
576
- }
577
-
578
- .wp_themeSkin .mceMenu {
579
- border-color: #ddd;
580
- }
581
-
582
- .wp_themeSkin .mceMenu table {
583
- background-color: #ebeaeb;
584
- }
585
-
586
- .wp_themeSkin .mceMenu .mceText {
587
- color: #000;
588
- }
589
-
590
- .wp_themeSkin .mceMenu .mceMenuItemEnabled a:hover,
591
- .wp_themeSkin .mceMenu .mceMenuItemActive, #quicktags {
592
- background-color: #83B4D5;
593
- }
594
- .wp_themeSkin td.mceMenuItemSeparator {
595
- background-color: #aaa;
596
- }
597
- .wp_themeSkin .mceMenuItemTitle a {
598
- background-color: #ccc;
599
- border-bottom-color: #aaa;
600
- }
601
- .wp_themeSkin .mceMenuItemTitle span.mceText {
602
- color: #000;
603
- }
604
- .wp_themeSkin .mceMenuItemDisabled .mceText {
605
- color: #888;
606
- }
607
-
608
- .clearlooks2 .mceTop .mceLeft, .clearlooks2 .mceTop .mceRight {
609
- background-color: #cee1ef;
610
- border-color: #c6d9e9;
611
- }
612
-
613
- .clearlooks2 .mceFocus .mceTop .mceLeft, .clearlooks2 .mceFocus .mceTop .mceRight {
614
- background-color: #5488AF;
615
- border-color: #464646;
616
- }
617
-
618
- #editorcontainer {
619
- border-color: #ccc;
620
- }
621
-
622
- #poststuff #titlewrap {
623
- border-color: #ccc;
624
- }
625
-
626
- #tTips p#tTips_inside {
627
- background-color: #ddd;
628
- color: #333;
629
- }
630
-
631
- /******************** Styles added for 2.3 look ********************/
632
- #wpcontent, #wphead, #wphead *, #user_info, #user_info *, #dashmenu, #dashmenu *, #adminmenu, #adminmenu *, #sidemenu, #sidemenu *, #minisub, #minisub *, #submenu, #submenu *, #wpbody, .wrap, #footer, #footer * {
633
- position: static !important;
634
- float: none !important;
635
- clear: none !important;
636
- font-size: 14px !important;
637
- text-decoration: none !important;
638
- letter-spacing: normal !important;
639
- line-height: normal !important;
640
- color: #000 !important;
641
- background: transparent !important;
642
- list-style: none !important;
643
- padding: 0 !important;
644
- border: none !important;
645
- -moz-border-radius: 0 !important;
646
- -khtml-border-radius: 0 !important;
647
- -webkit-border-radius: 0 !important;
648
- border-radius: 0 !important;
649
- margin: 0 !important;
650
- }
651
-
652
- body {
653
- background: #f9fcfe !important;
654
- }
655
-
656
- #wpcontent {
657
- background: #83B4D8 !important;
658
- }
659
-
660
- #wphead {
661
- color: #c3def1 !important;
662
- background: #14568a !important;
663
- padding: .7em 19em .8em 1.9em !important;
664
- border-bottom: 3px solid #448abd !important;
665
- }
666
-
667
- #wphead h1 {
668
- font: normal 1.5em/1 Georgia, "Times New Roman", Times, serif !important;
669
- letter-spacing: -.05em !important;
670
- color: #c3def1 !important;
671
- padding: 0.5em 170px 16px 12px;
672
- margin: 0;
673
- position: absolute;
674
- top: 0;
675
- left: 0;
676
- margin: 0 15% 0 0.5em;
677
- }
678
-
679
- #wphead h1 #viewsite, #wphead h1 #viewsite a {
680
- font-family: Georgia, "Times New Roman", Times, serif !important;
681
- color: #c3def1 !important;
682
- }
683
-
684
- #wphead h1 #viewsite {
685
- font-size: 14px !important;
686
- margin: 0 0 0 0.5em !important;
687
- }
688
-
689
- #wphead h1 #viewsite:before {
690
- content: '\0028';
691
- }
692
-
693
- #wphead h1 #viewsite:after {
694
- content: '\0029';
695
- }
696
-
697
- #wphead h1 #viewsite a {
698
- display: inline !important;
699
- color: #fff !important;
700
- border-bottom: 1px solid #69c !important;
701
- }
702
-
703
- #wphead h1 #viewsite a:after {
704
- content: ' \00BB';
705
- }
706
-
707
- #user_info, #user_info p, #user_info a {
708
- color: #fff !important;
709
- }
710
-
711
- #user_info {
712
- position: absolute !important;
713
- top: 0 !important;
714
- right: 1em !important;
715
- }
716
-
717
- #user_info p, #user_info a {
718
- font-size: 12px !important;
719
- }
720
-
721
- #user_info p {
722
- margin-top: .9em !important;
723
- }
724
-
725
- #user_info a {
726
- border-bottom: 1px solid #69c !important;
727
- }
728
-
729
- #dashmenu, #adminmenu {
730
- float: left !important;
731
- }
732
-
733
- #dashmenu {
734
- padding: 0 0 0 2em !important;
735
- }
736
-
737
- #sidemenu {
738
- padding: 0 2em 0 0 !important;
739
- }
740
-
741
- #dashmenu li, #adminmenu li, #sidemenu li, #submenu li {
742
- display: inline !important;
743
- }
744
-
745
- #sidemenu a {
746
- display: block !important;
747
- float: right !important;
748
- padding: 4px 5px 3px 5px !important;
749
- margin: 0 2px 2px 2px !important;
750
- }
751
-
752
- #dashmenu a, #adminmenu a, #submenu a {
753
- display: block !important;
754
- float: left !important;
755
- padding: 4px 5px 3px 5px !important;
756
- margin: 0 2px 2px 2px !important;
757
- }
758
-
759
- #dashmenu a:hover, #dashmenu a.current, #adminmenu a:hover, #adminmenu a.current, #sidemenu a:hover, #sidemenu a.current, #submenu a:hover, #submenu a.current {
760
- color: #333 !important;
761
- background: #ddeaf4 !important;
762
- }
763
-
764
- #dashmenu a.current, #adminmenu a.current, #sidemenu a.current, #submenu a.current {
765
- font-weight: bold !important;
766
- color: #fff !important;
767
- background: #0d324f !important;
768
- padding-bottom: 7px !important;
769
- border-top: 1px solid #96c0de !important;
770
- border-right: 2px solid #4f96c8 !important;
771
- margin: 0 2px -8px 2px !important;
772
- }
773
-
774
- #adminmenu .comment-count, #sidemenu .plugin-count {
775
- font-size: 11px !important;
776
- }
777
-
778
- #adminmenu li a #awaiting-mod, #sidemenu li a #update-plugins {
779
- position: absolute !important;
780
- background-image: url(../../../../wp-admin/images/comment-stalk-classic.gif) 0 bottom no-repeat !important;
781
- height: 0.9em !important;
782
- width: 1em !important;
783
- margin-top: -0.4em !important;
784
- margin-left: -0.4em !important;
785
- }
786
-
787
- #adminmenu li a:hover #awaiting-mod, #sidemenu li a:hover #update-plugins {
788
- background-position: -80px bottom !important;
789
- }
790
-
791
- #adminmenu li a #awaiting-mod span, #sidemenu li a #update-plugins span {
792
- position: absolute !important;
793
- top: -0.5em !important;
794
- right: 0 !important;
795
- display: block !important;
796
- line-height: 1.3em !important;
797
- color: #fff !important;
798
- background-color: #d54e21 !important;
799
- height: 1.3em !important;
800
- padding: 0 0.6em !important;
801
- -moz-border-radius: 3px !important;
802
- -khtml-border-radius: 3px !important;
803
- -webkit-border-radius: 3px !important;
804
- border-radius: 3px !important;
805
- }
806
-
807
- #adminmenu li a:hover #awaiting-mod span, #sidemenu li a:hover #update-plugins span {
808
- background-color: #07273E !important;
809
- }
810
-
811
- #minisub, #submenu {
812
- clear: both !important;
813
- background: #0d324f !important;
814
- padding: 1px 2em 0 4em !important;
815
- }
816
-
817
- #minisub {
818
- height: 8px !important;
819
- }
820
-
821
- #submenu, #submenu a {
822
- font-size: 12px !important;
823
- line-height: 180% !important;
824
- color: #fff !important;
825
- }
826
-
827
- #submenu, #submenu li {
828
- height: 25px !important;
829
- }
830
-
831
- #submenu:after {
832
- display: block !important;
833
- visibility: hidden !important;
834
- clear: both !important;
835
- content: '.';
836
- height: 0 !important;
837
- width: 0 !important;
838
- }
839
-
840
- #submenu a {
841
- padding: .2em .4em .3em !important;
842
- }
843
-
844
- #submenu a.current {
845
- color: #000 !important;
846
- background: #f9fcfe !important;
847
- padding-bottom: 2px !important;
848
- border-top: 1px solid #045290 !important;
849
- border-right: 2px solid #045290 !important;
850
- margin: 0 2px -8px 2px !important;
851
- }
852
-
853
- #submenu a:hover {
854
- color: #393939 !important;
855
- background: #ddeaf4 !important;
856
- }
857
-
858
- .updated, .confirm {
859
- background: #CFEBF7 url(notice.gif) no-repeat 1em !important;
860
- padding: 0 1em 0 3em !important;
861
- border: 1px solid #2580B2 !important;
862
- margin: 1em 5% 10px !important;
863
- }
864
-
865
- .updated a {
866
- border-bottom-color: #2583ad !important;
867
- }
868
-
869
- .error {
870
- background: #FFEFF7 !important;
871
- padding: 0 1em 0 1em !important;
872
- border: 1px solid #c69 !important;
873
- margin: 1em 5% 10px !important;
874
- }
875
-
876
- .error a {
877
- color: #c00 !important;
878
- }
879
-
880
- #wpbody {
881
- background: #f9fcfe !important;
882
- padding: 1px 0 0 0 !important;
883
- }
884
-
885
- .wrap {
886
- background: #fff !important;
887
- padding: 1em !important;
888
- border: 1px solid #ccc !important;
889
- margin: 15px 5% !important;
890
- }
891
-
892
- .submit input, .submit input:focus, .button, .button:focus {
893
- font-size: 13px !important;
894
- color: #333 !important;
895
- background: url(../../../../wp-admin/images/fade-butt.png) !important;
896
- padding: 0.10em 0.25em !important;
897
- border: 3px double #999 !important;
898
- border-top-color: #ccc !important;
899
- border-left-color: #ccc !important;
900
- -moz-border-radius: 0 !important;
901
- -khtml-border-radius: 0 !important;
902
- -webkit-border-radius: 0 !important;
903
- border-radius: 0 !important;
904
- }
905
-
906
- .submit input:active, .button:active {
907
- background: #f4f4f4 !important;
908
- border: 3px double #ccc !important;
909
- border-top-color: #999 !important;
910
- border-left-color: #999 !important;
911
- }
912
-
913
- #footer, #footer p, #footer a {
914
- font-size: 13px !important;
915
- }
916
-
917
- #footer {
918
- clear: both !important;
919
- background: #f9fcfe url(logo-ghost.png) no-repeat top left !important;
920
- height: 35px !important;
921
- padding: 0 0 15px 40px !important;
922
- margin: 15px 5% !important;
923
- }
924
-
925
- #footer p {
926
- padding: 5px 0 !important;
927
- }
928
-
929
- #footer a {
930
- color: #00019b !important;
931
- border-bottom: 1px solid #69c !important;
932
- }
933
-
934
- #footer a:visited {
935
- color: #004 !important;
936
- }
937
-
938
- #footer a:hover {
939
- color: #069 !important;
940
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
css/mw_admin.css DELETED
@@ -1,121 +0,0 @@
1
- #wpwrap #wphead h1 {
2
- font: italic 1.25em/1 Georgia, "Times New Roman", Times, serif;
3
- padding: 0.5em 170px 16px 12px;
4
- margin: 0;
5
- position: absolute;
6
- top: 0;
7
- left: 0;
8
- margin: 0 15% 0 0.5em;
9
- color: #ABACAB;
10
- }
11
- #wphead h1 #viewsite {
12
- position: static;
13
- margin: 0;
14
- }
15
-
16
- #wphead h1 #viewsite a {
17
- padding: 0 2em;
18
- font: small-caps smaller "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif;
19
- background: transparent;
20
- color: #CEE1EF;
21
- display: inline;
22
- letter-spacing: normal;
23
- border-style: none;
24
- }
25
- #wphead h1 #viewsite a:after {
26
- content: " \BB ";
27
- }
28
-
29
- #adminmenu {
30
- padding-top: 0.4em;
31
- }
32
- #adminmenu a {
33
- font-size: 1em;
34
- line-height: 2;
35
- }
36
-
37
- #submenu {
38
- padding: 0;
39
- border-bottom: 2px solid #C6D9E9;
40
- margin-bottom: 1em;
41
- }
42
- #submenu li {
43
- font-size: 0.95em;
44
- }
45
-
46
-
47
- #poststuff h3 {wp-admin.css (line 975)
48
- font-size: 1em;
49
- margin: 0;
50
- padding: 0.25em 0.5em;
51
- }
52
- #poststuff #titlediv {
53
- position: relative;
54
- margin-bottom: 0;
55
- }
56
- #poststuff #editor-toolbar {
57
- margin-top: -2em;
58
- height: 2em;
59
- }
60
- #poststuff #edit-slug-box {
61
- text-align: right;
62
- position: absolute;
63
- top: 0;
64
- right: 0;
65
- margin: 0.5em;
66
- }
67
-
68
- #ed_toolbar input {
69
- padding: 0 0.2em;
70
- }
71
-
72
-
73
- .submitbox .submit {
74
- font-size: smaller;
75
- padding: 0.75em;
76
- text-align: center;
77
- }
78
- .submitbox .submit input {
79
- margin: 0;
80
- padding: 0.1em 0.2em;
81
- }
82
-
83
- .submitbox #previewview {
84
- padding: 0.75em;
85
- text-align: center;
86
- }
87
- .submitbox #previewview a {
88
- border-bottom: medium none;
89
- font-size: 0.95em;
90
- font-weight: normal;
91
- padding: 0.25em 0.5em;
92
- text-decoration: none;
93
- }
94
- .submitbox #autosave {
95
- display: block;
96
- padding-top: 0.25em;
97
- }
98
-
99
- #poststuff .postbox, #poststuff .stuffbox {
100
- padding: 0;
101
- }
102
- #poststuff .togbox {
103
- background-position: -10px 0.55em;
104
- height: 1.75em;
105
- margin-left: -20px;
106
- margin-top: -3px;
107
- }
108
-
109
- #poststuff .closed .togbox {
110
- background-position: 4px 0.55em;
111
- }
112
-
113
-
114
- #the-comment-list .unapproved {
115
- background-color: #FFDFD0;
116
- }
117
-
118
- #tagchecklist strong {
119
- margin-left: 0 !important;
120
- position: relative !important;
121
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
css/mw_admin27.css DELETED
@@ -1,121 +0,0 @@
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 h1 span {
12
- display: none;
13
- }
14
-
15
- #wpwrap #wphead #logo50, #wpwrap #wphead #header-logo {
16
- display: none;
17
- }
18
-
19
- #wpwrap #wphead #breadcrumb {
20
- font-size: .8em;
21
- }
22
- #wpwrap #wphead #breadcrumb a {
23
- color: #2583AD;
24
- }
25
- #wpwrap #wphead #breadcrumb a:hover {
26
- color: #D54E21;
27
- }
28
-
29
- #adminmenu a {
30
- font-size: 1em;
31
- line-height: 1.2;
32
- }
33
-
34
- #adminmenu .write-new-button {
35
- margin-top: 45px !important;
36
- }
37
-
38
- #poststuff h3, #normal-sortables h3, #side-sortables h3 {
39
- padding: 0.25em 0.5em;
40
- }
41
- .postbox .inside {
42
- margin-top: .5em !important;
43
- }
44
- #poststuff #titlediv, #normal-sortables #titlediv, #side-sortables #titlediv {
45
- position: relative;
46
- margin-bottom: 0;
47
- }
48
-
49
- #poststuff #edit-slug-box, #normal-sortables #edit-slig-box, #side-sortables #edit-slig-box {
50
- text-align: right;
51
- position: absolute;
52
- top: -2em;
53
- right: 0;
54
- margin: 0.5em;
55
- }
56
-
57
- #ed_toolbar input {
58
- padding: 0 0.2em;
59
- }
60
-
61
- .submitbox .submit {
62
- font-size: smaller;
63
- padding: 0.75em;
64
- text-align: center;
65
- }
66
- .submitbox .submit input, .submitbox .submit a {
67
- margin: 0;
68
- padding: 0.1em 0.2em;
69
- }
70
- .submitbox #previewview {
71
- padding: 0.75em;
72
- text-align: center;
73
- }
74
- .submitbox #previewview a {
75
- border-bottom: medium none;
76
- font-size: 0.95em;
77
- font-weight: normal;
78
- padding: 0.25em 0.5em;
79
- text-decoration: none;
80
- }
81
- .submitbox #autosave {
82
- display: block;
83
- padding-top: 0.25em;
84
- }
85
-
86
- #poststuff .postbox, #poststuff .stuffbox,
87
- #normal-sortables .postbox, #normal-sortables .stuffbox,
88
- #side-sortables .postbox, #side-sortables .stuffbox {
89
- padding: 0;
90
- }
91
- #poststuff .togbox, #normal-sortables .togbox, #side-sortables .togbox {
92
- background-position: -10px 0.55em;
93
- height: 1.75em;
94
- margin-top: 0;
95
- }
96
-
97
- #poststuff .closed .togbox, #normal-sortables .closed .togbox, #side-sortables .closed .togbox {
98
- background-position: 4px 0.55em;
99
- }
100
- #postdivrich h3 {
101
- padding-bottom: 20px;
102
- margin-bottom:20px;
103
- }
104
-
105
- #the-comment-list .unapproved {
106
- background-color: #FFDFD0;
107
- }
108
-
109
- #tagchecklist strong {
110
- margin-left: 0 !important;
111
- position: relative !important;
112
- }
113
-
114
-
115
- .meta-box-sortables .postbox .handlediv {
116
- height: 18px;
117
- }
118
-
119
- .meta-box-sortables .postbox:hover .handlediv {
120
- background-position: left -114px;
121
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
css/mw_admin28_tweak.css DELETED
@@ -1,2997 +0,0 @@
1
- /**
2
- * @author design by John James Jacoby & Frank Bueltge
3
- * @author-url http://www.johnjamesjacoby.com/ & http://bueltge.de/
4
- * @return design tweak for backend design of WordPress
5
- * @link http://wordpress.org/development/2009/04/design-tweaks-whos-in-an-idea-in-three-acts/#comment-43402
6
- */
7
- p, ul, ol, blockquote { font-size: 12px; }
8
-
9
- .plugins .name,
10
- #pass-strength-result.strong,
11
- #pass-strength-result.short,
12
- .button-highlighted,
13
- #quicktags #ed_strong,
14
- #ed_reply_toolbar #ed_reply_strong {
15
- font-weight: bold;
16
- }
17
-
18
- .plugins p {
19
- margin: 0 4px;
20
- padding: 0;
21
- }
22
-
23
- .plugins .action-links {
24
- white-space: nowrap;
25
- }
26
-
27
- .import-system {
28
- font-size: 16px;
29
- }
30
-
31
- .anchors {
32
- margin: 10px 20px 10px 20px;
33
- }
34
-
35
- table#availablethemes {
36
- border-spacing: 0;
37
- border-width: 1px 0;
38
- border-style: solid none;
39
- margin: 10px auto;
40
- width: 100%;
41
- }
42
-
43
- td.available-theme {
44
- vertical-align: top;
45
- width: 240px;
46
- margin: 0;
47
- padding: 20px;
48
- text-align: left;
49
- }
50
-
51
- table#availablethemes td {
52
- border-width: 0 1px 1px;
53
- border-style: none solid solid;
54
- }
55
-
56
- table#availablethemes td.right,
57
- table#availablethemes td.left {
58
- border-right: 0 none;
59
- border-left: 0 none;
60
- }
61
-
62
- table#availablethemes td.bottom {
63
- border-bottom: 0 none;
64
- }
65
-
66
- .available-theme a.screenshot {
67
- width: 240px;
68
- height: 180px;
69
- display: block;
70
- border-width: 1px;
71
- border-style: solid;
72
- margin-bottom: 10px;
73
- overflow: hidden;
74
- }
75
-
76
- .available-theme img {
77
- width: 240px;
78
- }
79
-
80
- .available-theme h3 {
81
- margin: 15px 0 5px;
82
- }
83
-
84
- #current-theme {
85
- margin: 1em 0 1.5em;
86
- }
87
-
88
- #current-theme a {
89
- border-bottom: none;
90
- }
91
-
92
- #current-theme h3 {
93
- font-size: 17px;
94
- font-weight: normal;
95
- margin: 0;
96
- }
97
-
98
- #current-theme .description {
99
- margin-top: 5px;
100
- }
101
-
102
- #current-theme img {
103
- float: left;
104
- border-width: 1px;
105
- border-style: solid;
106
- margin-right: 1em;
107
- margin-bottom: 1.5em;
108
- width: 150px;
109
- }
110
-
111
- #TB_window #TB_title a.tb-theme-preview-link,
112
- #TB_window #TB_title a.tb-theme-preview-link:visited {
113
- font-weight: bold;
114
- text-decoration: none;
115
- }
116
-
117
- .checkbox {
118
- border: none;
119
- margin: 0;
120
- padding: 0;
121
- }
122
-
123
- .code, code {
124
- font-family: Consolas, Monaco, Courier, monospace;
125
- }
126
-
127
- kbd, code {
128
- padding: 1px 3px;
129
- margin: 0 1px;
130
- font-size: 11px;
131
- }
132
-
133
- .commentlist li {
134
- padding: 1em 1em .2em;
135
- margin: 0;
136
- border-bottom-width: 1px;
137
- border-bottom-style: solid;
138
- }
139
-
140
- .commentlist li li {
141
- border-bottom: 0;
142
- padding: 0;
143
- }
144
-
145
- .commentlist p {
146
- padding: 0;
147
- margin: 0 0 .8em;
148
- }
149
-
150
- .post-categories {
151
- display: inline;
152
- margin: 0;
153
- padding: 0;
154
- }
155
-
156
- .post-categories li {
157
- display: inline;
158
- }
159
-
160
- .quicktags, .search {
161
- font: 12px Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
162
- }
163
-
164
- .submit {
165
- padding: 1.5em 0;
166
- margin: 5px 0;
167
- -moz-border-radius: 0 0 3px 3px;
168
- -webkit-border-bottom-left-radius: 3px;
169
- -webkit-border-bottom-right-radius: 3px;
170
- -khtml-border-bottom-left-radius: 3px;
171
- -khtml-border-bottom-right-radius: 3px;
172
- border-bottom-left-radius: 3px;
173
- border-bottom-right-radius: 3px;
174
- }
175
-
176
- form p.submit a.cancel:hover {
177
- text-decoration: none;
178
- }
179
-
180
- #submitdiv h3,
181
- #pagesubmitdiv h3 {
182
- margin-bottom: 0 !important;
183
- }
184
-
185
- #misc-publishing-actions {
186
- padding: 6px 0 16px 0;
187
- }
188
-
189
- .misc-pub-section {
190
- padding: 6px;
191
- border-bottom-width: 1px;
192
- border-bottom-style: solid;
193
- }
194
-
195
- .misc-pub-section-last {
196
- border-bottom: 0 none;
197
- }
198
-
199
- #minor-publishing-actions {
200
- padding: 6px;
201
- text-align: right;
202
- }
203
-
204
- #minor-publishing {
205
- border-bottom-width: 1px;
206
- border-bottom-style: solid;
207
- }
208
-
209
- #save-post {
210
- float: left;
211
- }
212
-
213
- .preview {
214
- float: right;
215
- }
216
-
217
- #major-publishing-actions {
218
- padding: 6px;
219
- clear: both;
220
- border-top: none;
221
- }
222
-
223
- #minor-publishing-actions input,
224
- #major-publishing-actions input,
225
- #minor-publishing-actions .preview {
226
- min-width: 80px;
227
- text-align: center;
228
- }
229
-
230
- #delete-action {
231
- line-height: 25px;
232
- vertical-align: middle;
233
- text-align: left;
234
- float: left;
235
- }
236
-
237
- #publishing-action {
238
- text-align: right;
239
- float: right;
240
- }
241
-
242
- #post-body #minor-publishing {
243
- padding-bottom: 10px;
244
- }
245
-
246
- #post-body #misc-publishing-actions {
247
- padding: 0;
248
- }
249
-
250
- #post-body .misc-pub-section {
251
- border-right-width: 1px;
252
- border-right-style: solid;
253
- border-bottom: 0 none;
254
- min-height: 30px;
255
- float: left;
256
- max-width: 32%;
257
- }
258
-
259
- #post-body .misc-pub-section-last {
260
- border-right: 0;
261
- }
262
-
263
- #sticky-span {
264
- margin-left: 18px;
265
- }
266
-
267
- .side-info {
268
- margin: 0;
269
- padding: 4px;
270
- font-size: 11px;
271
- }
272
-
273
- .side-info h5 {
274
- padding-bottom: 7px;
275
- font-size: 14px;
276
- margin: 12px 2px 5px;
277
- border-bottom-width: 1px;
278
- border-bottom-style: solid;
279
- }
280
-
281
- .side-info ul {
282
- margin: 0;
283
- padding-left: 18px;
284
- list-style: square;
285
- }
286
-
287
- .submit input,
288
- .button,
289
- .button-primary,
290
- .button-secondary,
291
- .button-highlighted,
292
- #postcustomstuff .submit input {
293
- font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
294
- text-decoration: none;
295
- font-size: 11px !important;
296
- line-height: 16px;
297
- padding: 2px 8px;
298
- cursor: pointer;
299
- border-width: 1px;
300
- border-style: solid;
301
- -moz-border-radius: 11px;
302
- -khtml-border-radius: 11px;
303
- -webkit-border-radius: 11px;
304
- border-radius: 11px;
305
- -moz-box-sizing: content-box;
306
- -webkit-box-sizing: content-box;
307
- -khtml-box-sizing: content-box;
308
- box-sizing: content-box;
309
- }
310
-
311
- a.button,
312
- a.button-primary,
313
- a.button-secondary {
314
- line-height: 1.2em;
315
- -webkit-border-radius: 10px;
316
- padding: 4px 10px;
317
- }
318
-
319
- #doaction,
320
- #doaction2 {
321
- margin-right: 8px;
322
- }
323
-
324
- .tablenav select[name="action"],
325
- .tablenav select[name="action2"] {
326
- width: 120px;
327
- }
328
-
329
- .tablenav select[name="m"] {
330
- width: 120px;
331
- }
332
-
333
- .tablenav select#cat {
334
- width: 150px;
335
- }
336
-
337
- #wpcontent select {
338
- font: 11px/20px "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
339
- padding: 2px;
340
- border-width: 1px;
341
- border-style: solid;
342
- height: 2em;
343
- vertical-align: top;
344
- }
345
-
346
- #wpcontent option {
347
- padding: 2px;
348
- }
349
-
350
- .approve {
351
- display: none;
352
- }
353
-
354
- .unapproved .approve, .spam .approve {
355
- display: inline;
356
- }
357
-
358
- .unapproved .unapprove {
359
- display: none;
360
- }
361
-
362
- .narrow {
363
- width: 70%;
364
- margin-bottom: 40px;
365
- }
366
-
367
- .narrow p {
368
- line-height: 150%;
369
- }
370
-
371
- table .vers {
372
- text-align: center;
373
- }
374
-
375
- textarea.all-options, input.all-options {
376
- width: 250px;
377
- }
378
-
379
- #namediv table {
380
- width: 100%;
381
- }
382
-
383
- #namediv td.first {
384
- width: 10px;
385
- white-space: nowrap;
386
- }
387
-
388
- #namediv input {
389
- width: 98%;
390
- }
391
-
392
- #namediv p {
393
- margin: 10px 0;
394
- }
395
-
396
- #wpbody-content .metabox-holder {
397
- padding-top: 10px;
398
- }
399
-
400
- #content {
401
- margin: 0;
402
- width: 100%;
403
- }
404
-
405
- #editorcontainer #content {
406
- padding: 6px;
407
- line-height: 150%;
408
- border: 0 none;
409
- outline: none;
410
- -moz-box-sizing: border-box;
411
- -webkit-box-sizing: border-box;
412
- -khtml-box-sizing: border-box;
413
- box-sizing: border-box;
414
- }
415
-
416
- #editorcontainer,
417
- #quicktags {
418
- border-style: solid;
419
- border-width: 1px;
420
- border-collapse: separate;
421
- -moz-border-radius: 6px 6px 0 0;
422
- -webkit-border-top-right-radius: 6px;
423
- -webkit-border-top-left-radius: 6px;
424
- -khtml-border-top-right-radius: 6px;
425
- -khtml-border-top-left-radius: 6px;
426
- border-top-right-radius: 6px;
427
- border-top-left-radius: 6px;
428
- }
429
-
430
- #quicktags {
431
- padding: 0;
432
- margin-bottom: -3px;
433
- border-bottom-width: 3px;
434
- background-image: url( '../../../../wp-admin/images/ed-bg.gif' );
435
- background-position: left top;
436
- background-repeat: repeat-x;
437
- }
438
-
439
- #quicktags #ed_toolbar {
440
- padding: 2px 4px 0;
441
- }
442
-
443
- #ed_toolbar input,
444
- #ed_reply_toolbar input {
445
- margin: 3px 1px 4px;
446
- line-height: 18px;
447
- display: inline-block;
448
- border-width: 1px;
449
- border-style: solid;
450
- min-width: 26px;
451
- padding: 2px 4px;
452
- font-size: 12px;
453
- -moz-border-radius: 3px;
454
- -khtml-border-radius: 3px;
455
- -webkit-border-radius: 3px;
456
- border-radius: 3px;
457
- }
458
-
459
- #ed_reply_toolbar input {
460
- margin: 1px 2px 1px 1px;
461
- }
462
-
463
- #quicktags #ed_link,
464
- #ed_reply_toolbar #ed_reply_link {
465
- text-decoration: underline;
466
- }
467
-
468
- #quicktags #ed_del,
469
- #ed_reply_toolbar #ed_reply_del {
470
- text-decoration: line-through;
471
- }
472
-
473
- #quicktags #ed_em,
474
- #ed_reply_toolbar #ed_reply_em {
475
- font-style: italic;
476
- }
477
-
478
- #excerpt, .attachmentlinks {
479
- margin: 0;
480
- height: 4em;
481
- width: 98%;
482
- }
483
-
484
- /* post meta postbox */
485
- #postcustomstuff table,
486
- #postcustomstuff input,
487
- #postcustomstuff textarea {
488
- border-width: 1px;
489
- border-style: solid;
490
- -moz-border-radius: 3px;
491
- -khtml-border-radius: 3px;
492
- -webkit-border-radius: 3px;
493
- border-radius: 3px;
494
- }
495
-
496
- #postcustomstuff .updatemeta,
497
- #postcustomstuff .deletemeta {
498
- margin: auto;
499
- }
500
-
501
- #postcustomstuff thead th {
502
- padding: 5px 8px 8px;
503
- }
504
-
505
- #postcustom #postcustomstuff .submit,
506
- #pagecustomdiv #postcustomstuff .submit {
507
- border: 0 none;
508
- float: none;
509
- padding: 5px 8px;
510
- }
511
-
512
- #side-sortables #postcustom #postcustomstuff .submit,
513
- #side-sortables #pagecustomdiv #postcustomstuff .submit {
514
- padding: 0 5px;
515
- }
516
-
517
- #side-sortables #postcustom #postcustomstuff td.left input,
518
- #side-sortables #pagecustomdiv #postcustomstuff td.left input {
519
- margin: 3px 3px 0;
520
- }
521
-
522
- #side-sortables #postcustom #postcustomstuff #the-list textarea,
523
- #side-sortables #pagecustomdiv #postcustomstuff #the-list textarea {
524
- height: 85px;
525
- margin: 3px;
526
- }
527
-
528
- #postcustomstuff table {
529
- margin: 0;
530
- width: 100%;
531
- border-width: 1px;
532
- border-style: solid;
533
- border-spacing: 0;
534
- }
535
-
536
- #postcustomstuff table input,
537
- #postcustomstuff table select,
538
- #postcustomstuff table textarea {
539
- width: 95%;
540
- margin: 8px 0 8px 8px;
541
- }
542
-
543
- #postcustomstuff th.left,
544
- #postcustomstuff td.left {
545
- width: 38%;
546
- }
547
-
548
- #postcustomstuff .submit input {
549
- width: auto;
550
- }
551
-
552
- #postcustomstuff #newmeta .submit {
553
- padding: 0 8px;
554
- }
555
-
556
- #postcustomstuff table #addmetasub {
557
- width: auto;
558
- }
559
-
560
- #postcustomstuff #newmetaleft {
561
- vertical-align: top;
562
- }
563
-
564
- #postcustomstuff #newmetaleft a {
565
- padding: 0 10px;
566
- text-decoration: none;
567
- }
568
-
569
- #save {
570
- width: 15em;
571
- }
572
-
573
- #template div {
574
- margin-right: 190px;
575
- }
576
-
577
- * html #template div {
578
- margin-right: 0;
579
- }
580
-
581
- /* A handy div class for hiding controls.
582
- Some browsers will disable them when you
583
- set display: none; */
584
- .zerosize {
585
- height: 0;
586
- width: 0;
587
- margin: 0;
588
- border: 0;
589
- padding: 0;
590
- overflow: hidden;
591
- position: absolute;
592
- }
593
-
594
- * html #themeselect {
595
- padding: 0 3px;
596
- height: 22px;
597
- }
598
-
599
- #your-profile legend {
600
- font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
601
- font-size: 22px;
602
- }
603
-
604
- #your-profile #rich_editing {
605
- border: none;
606
- }
607
-
608
- #howto {
609
- font-size: 11px;
610
- margin: 0 5px;
611
- display: block;
612
- }
613
-
614
- #ajax-response.alignleft {
615
- margin-left: 2em;
616
- }
617
-
618
- div.nav {
619
- height: 2em;
620
- padding: 7px 10px;
621
- vertical-align: text-top;
622
- margin: 5px 0;
623
- }
624
-
625
- .nav .button-secondary {
626
- padding: 2px 4px;
627
- }
628
-
629
- a.page-numbers {
630
- border-bottom-style: solid;
631
- border-bottom-width: 2px;
632
- font-weight: bold;
633
- margin-right: 1px;
634
- padding: 0 2px;
635
- }
636
-
637
- p.pagenav {
638
- margin: 0;
639
- display: inline;
640
- }
641
-
642
- .pagenav span {
643
- font-weight: bold;
644
- margin: 0 6px;
645
- }
646
-
647
- .row-title {
648
- font-size: 12px !important;
649
- font-weight: bold;
650
- }
651
-
652
- .column-comment p {
653
- margin: 0.6em 0;
654
- }
655
-
656
- .column-author img, .column-username img {
657
- float: left;
658
- margin-right: 10px;
659
- margin-top: 3px;
660
- }
661
-
662
- .tablenav a.button-secondary {
663
- display: block;
664
- margin: 3px 8px 0 0;
665
- }
666
-
667
- .tablenav {
668
- clear: both;
669
- height: 30px;
670
- margin: 6px 0 4px;
671
- vertical-align: middle;
672
- }
673
-
674
- .tablenav .tablenav-pages {
675
- float: right;
676
- display: block;
677
- cursor: default;
678
- height: 30px;
679
- line-height: 30px;
680
- font-size: 11px;
681
- }
682
-
683
- .tablenav .tablenav-pages a, .tablenav-pages span.current {
684
- text-decoration: none;
685
- border: none;
686
- padding: 3px 6px;
687
- border-width: 1px;
688
- border-style: solid;
689
- -moz-border-radius: 5px;
690
- -khtml-border-radius: 5px;
691
- -webkit-border-radius: 5px;
692
- border-radius: 5px;
693
- }
694
-
695
- .tablenav .displaying-num {
696
- margin-right: 10px;
697
- font-size: 12px;
698
- font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
699
- font-style: italic;
700
- }
701
-
702
- .tablenav .actions {
703
- padding: 2px 8px 0 0;
704
- }
705
-
706
- td.media-icon {
707
- vertical-align: middle;
708
- text-align: center;
709
- width: 80px;
710
- }
711
-
712
- td.media-icon img {
713
- max-width: 80px;
714
- max-height: 60px;
715
- }
716
-
717
- #update-nag, .plugin-update {
718
- line-height: 29px;
719
- font-size: 12px;
720
- text-align: center;
721
- border-bottom-width: 1px;
722
- border-bottom-style: solid;
723
- border-top-width: 1px;
724
- border-top-style: solid;
725
- }
726
-
727
- #update-nag a, .plugin-update a {
728
- font-size: 1.1em;
729
- }
730
-
731
- #pass-strength-result {
732
- border-style: solid;
733
- border-width: 1px;
734
- float: left;
735
- margin: 12px 5px 5px 1px;
736
- padding: 3px 5px;
737
- text-align: center;
738
- width: 200px;
739
- }
740
-
741
- .row-actions {
742
- visibility: hidden;
743
- padding: 2px 0 0;
744
- }
745
-
746
- tr:hover .row-actions,
747
- div.comment-item:hover .row-actions {
748
- visibility: visible;
749
- }
750
-
751
- /* Admin Header */
752
- #wphead-info {
753
- margin: 0 0 0 15px;
754
- padding-right: 15px;
755
- }
756
-
757
- #user_info {
758
- float: right;
759
- font-size: 12px;
760
- line-height: 46px;
761
- height: 46px;
762
- }
763
-
764
- #user_info p {
765
- margin: 0;
766
- padding: 0;
767
- line-height: 46px;
768
- }
769
-
770
- #wphead {
771
- height: 46px;
772
- }
773
-
774
- #wphead a,
775
- #adminmenu a,
776
- #sidemenu a,
777
- #taglist a,
778
- #catlist a,
779
- #show-settings a {
780
- text-decoration: none;
781
- }
782
-
783
- #header-logo {
784
- float: left;
785
- margin: 7px 0 0 15px;
786
- }
787
-
788
- #wphead h1 {
789
- font: normal 22px Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
790
- padding: 10px 8px 5px;
791
- margin: 0;
792
- float: left;
793
- }
794
-
795
- #wphead h1.long-title {
796
- font: normal 18px Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
797
- padding: 12px 10px 5px;
798
- }
799
-
800
- #wphead h1 span {
801
- font-size: 50%;
802
- }
803
-
804
- /* side admin menu */
805
- #adminmenu * {
806
- -webkit-user-select: none;
807
- -moz-user-select: none;
808
- -khtml-user-select: none;
809
- user-select: none;
810
- }
811
-
812
- #adminmenu .wp-submenu {
813
- display: none;
814
- list-style: none;
815
- padding: 0;
816
- margin: 0;
817
- position: relative;
818
- z-index: 2;
819
- border-width: 1px 0 0;
820
- border-style: solid none none;
821
- }
822
-
823
- #adminmenu .wp-submenu a {
824
- font: normal 11px/18px "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
825
- }
826
-
827
- #adminmenu .wp-submenu li.current,
828
- #adminmenu .wp-submenu li.current a,
829
- #adminmenu .wp-submenu li.current a:hover {
830
- font-weight: bold;
831
- }
832
-
833
- #adminmenu a.menu-top,
834
- #adminmenu .wp-submenu-head {
835
- font: normal 13px/18px Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
836
- }
837
-
838
- #adminmenu div.wp-submenu-head {
839
- display: none;
840
- }
841
-
842
- .folded #adminmenu div.wp-submenu-head,
843
- .folded #adminmenu li.wp-has-submenu div.sub-open {
844
- display: block;
845
- }
846
-
847
- .folded #adminmenu a.menu-top,
848
- .folded #adminmenu .wp-submenu,
849
- .folded #adminmenu li.wp-menu-open .wp-submenu,
850
- .folded #adminmenu div.wp-menu-toggle {
851
- display: none;
852
- }
853
-
854
- #adminmenu li.wp-menu-open .wp-submenu {
855
- display: block;
856
- }
857
-
858
- #adminmenu div.wp-menu-image {
859
- float: left;
860
- width: 28px;
861
- height: 28px;
862
- }
863
-
864
- #adminmenu li {
865
- margin: 0;
866
- padding: 0;
867
- cursor: pointer;
868
- }
869
-
870
- #adminmenu a {
871
- display: block;
872
- line-height: 18px;
873
- padding: 1px 5px 3px;
874
- }
875
-
876
- #adminmenu li.menu-top {
877
- min-height: 26px;
878
- }
879
-
880
- #adminmenu a.menu-top {
881
- line-height: 18px;
882
- min-width: 10em;
883
- padding: 5px 5px;
884
- border-width: 1px 1px 0;
885
- border-style: solid solid none;
886
- }
887
-
888
- #adminmenu .wp-submenu a {
889
- margin: 0;
890
- padding-left: 12px;
891
- border-width: 0 1px 0 0;
892
- border-style: none solid none none;
893
- }
894
-
895
- #adminmenu .menu-top-last ul.wp-submenu {
896
- border-width: 0 0 1px;
897
- border-style: none none solid;
898
- }
899
-
900
- #adminmenu .wp-submenu li {
901
- padding: 0;
902
- margin: 0;
903
- }
904
-
905
- .folded #adminmenu li.menu-top {
906
- width: 28px;
907
- height: 30px;
908
- overflow: hidden;
909
- border-width: 1px 1px 0;
910
- border-style: solid solid none;
911
- }
912
-
913
- #adminmenu .menu-top-first a.menu-top,
914
- .folded #adminmenu li.menu-top-first,
915
- #adminmenu .wp-submenu .wp-submenu-head {
916
- border-width: 1px 1px 0;
917
- border-style: solid solid none;
918
- -moz-border-radius-topleft :6px;
919
- -moz-border-radius-topright: 6px;
920
- -webkit-border-top-right-radius: 6px;
921
- -webkit-border-top-left-radius: 6px;
922
- -khtml-border-top-right-radius: 6px;
923
- -khtml-border-top-left-radius: 6px;
924
- border-top-right-radius: 6px;
925
- border-top-left-radius: 6px;
926
- }
927
-
928
- #adminmenu .menu-top-last a.menu-top,
929
- .folded #adminmenu li.menu-top-last {
930
- border-width: 1px;
931
- border-style: solid;
932
- -moz-border-radius-bottomleft: 6px;
933
- -moz-border-radius-bottomright: 6px;
934
- -webkit-border-bottom-right-radius: 6px;
935
- -webkit-border-bottom-left-radius: 6px;
936
- -khtml-border-bottom-right-radius: 6px;
937
- -khtml-border-bottom-left-radius: 6px;
938
- border-bottom-right-radius: 6px;
939
- border-bottom-left-radius: 6px;
940
- }
941
-
942
- #adminmenu li.wp-menu-open a.menu-top-last {
943
- border-bottom: 0 none;
944
- -moz-border-radius-bottomright: 0;
945
- -moz-border-radius-bottomleft: 0;
946
- -webkit-border-bottom-right-radius: 0;
947
- -webkit-border-bottom-left-radius: 0;
948
- -khtml-border-bottom-right-radius: 0;
949
- -khtml-border-bottom-left-radius: 0;
950
- border-bottom-right-radius: 0;
951
- border-bottom-left-radius: 0;
952
- }
953
-
954
- #adminmenu img.wp-menu-image {
955
- float: left;
956
- padding: 8px 6px 0;
957
- opacity: 0.6;
958
- filter: alpha(opacity=60);
959
- }
960
-
961
- #adminmenu li.menu-top:hover img.wp-menu-image,
962
- #adminmenu li.wp-has-current-submenu img.wp-menu-image {
963
- opacity: 1;
964
- filter: alpha(opacity=100);
965
- }
966
-
967
- .folded #adminmenu img.wp-menu-image {
968
- padding: 7px 0 0 6px;
969
- }
970
-
971
- #adminmenu li.wp-menu-separator {
972
- height: 21px;
973
- padding: 0;
974
- margin: 0;
975
- cursor: w-resize;
976
- }
977
-
978
- .folded #adminmenu li.wp-menu-separator {
979
- cursor: e-resize;
980
- }
981
-
982
- #adminmenu .wp-menu-separator-last {
983
- height: 10px;
984
- width: 1px;
985
- }
986
-
987
- #adminmenu .wp-submenu .wp-submenu-head {
988
- border-width: 1px;
989
- border-style: solid;
990
- padding: 6px 4px 6px 10px;
991
- cursor: default;
992
- }
993
-
994
- .folded #adminmenu .wp-submenu {
995
- position: absolute;
996
- margin: -1px 0 0 28px;
997
- padding: 0 8px 8px;
998
- z-index: 999;
999
- border: 0 none;
1000
- }
1001
-
1002
- .folded #adminmenu .wp-submenu ul {
1003
- width: 140px;
1004
- border-width: 0 0 1px;
1005
- border-style: none none solid;
1006
- }
1007
-
1008
- .folded #adminmenu .wp-submenu li.wp-first-item {
1009
- border-top: 0 none;
1010
- }
1011
-
1012
- .folded #adminmenu .wp-submenu a {
1013
- padding-left: 10px;
1014
- }
1015
-
1016
- .folded #adminmenu a.wp-has-submenu {
1017
- margin-left: 40px;
1018
- }
1019
-
1020
- #adminmenu li.menu-top-last .wp-submenu ul {
1021
- border-width: 0 0 1px;
1022
- border-style: none none solid;
1023
- }
1024
-
1025
- #adminmenu .wp-menu-toggle {
1026
- width: 22px;
1027
- clear: right;
1028
- float: right;
1029
- margin: 1px 0 0;
1030
- height: 27px;
1031
- padding: 1px 2px 0 0;
1032
- cursor: default;
1033
- }
1034
-
1035
- #adminmenu li.wp-has-current-submenu ul {
1036
- border-bottom-width: 1px;
1037
- border-bottom-style: solid;
1038
- }
1039
- /* end side admin menu */
1040
-
1041
- /* comments/plugins bubble in menu */
1042
- #adminmenu #awaiting-mod,
1043
- #adminmenu span.update-plugins,
1044
- #sidemenu li a span.update-plugins {
1045
- position: absolute;
1046
- font-family: Helvetica, Arial, sans-serif;
1047
- font-size: 7pt;
1048
- font-weight: bold;
1049
- margin-top: 2px;
1050
- margin-left: 2px;
1051
- -moz-border-radius: 7px;
1052
- -khtml-border-radius: 7px;
1053
- -webkit-border-radius: 7px;
1054
- border-radius: 7px;
1055
- }
1056
-
1057
- #adminmenu li #awaiting-mod span,
1058
- #adminmenu li span.update-plugins span,
1059
- #sidemenu li a span.update-plugins span {
1060
- float: left;
1061
- display: block;
1062
- height: 1.6em;
1063
- line-height: 1.6em;
1064
- padding: 0 6px;
1065
- }
1066
-
1067
- #adminmenu li span.count-0,
1068
- #sidemenu li a .count-0 {
1069
- display: none;
1070
- }
1071
- /* end menu stuff */
1072
-
1073
- /* comments bubble */
1074
- .post-com-count-wrapper {
1075
- min-width: 22px;
1076
- font-family: Helvetica, Arial, sans-serif;
1077
- }
1078
-
1079
- .post-com-count {
1080
- height: 1.3em;
1081
- line-height: 1.1em;
1082
- display: block;
1083
- text-decoration: none;
1084
- padding: 0 0 6px;
1085
- cursor: pointer;
1086
- background-position: center -80px;
1087
- background-repeat: no-repeat;
1088
- }
1089
-
1090
- .post-com-count span {
1091
- font-size: 9px;
1092
- font-weight: bild;
1093
- height: 1.7em;
1094
- line-height: 1.70em;
1095
- min-width: 0.7em;
1096
- padding: 0 6px;
1097
- display: inline-block;
1098
- cursor: pointer;
1099
- -moz-border-radius: 5px;
1100
- -khtml-border-radius: 5px;
1101
- -webkit-border-radius: 5px;
1102
- border-radius: 5px;
1103
- }
1104
-
1105
- strong .post-com-count {
1106
- background-position: center -55px;
1107
- }
1108
-
1109
- .post-com-count:hover {
1110
- background-position: center -3px;
1111
- }
1112
-
1113
- .column-response .post-com-count {
1114
- float: left;
1115
- margin-right: 5px;
1116
- text-align: center;
1117
- }
1118
-
1119
- .response-links {
1120
- margin: 4px 0;
1121
- }
1122
-
1123
- /* Admin Footer */
1124
- #footer {
1125
- margin-top: -45px;
1126
- }
1127
-
1128
- #footer,
1129
- #footer a {
1130
- font-size: 12px;
1131
- font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
1132
- font-style: italic;
1133
- }
1134
-
1135
- #footer p {
1136
- margin: 0;
1137
- padding: 15px;
1138
- line-height: 15px;
1139
- }
1140
-
1141
- #footer a {
1142
- text-decoration: none;
1143
- }
1144
-
1145
- #footer a:hover {
1146
- text-decoration: underline;
1147
- }
1148
-
1149
- /* Tables used on comment.php and option/setting pages */
1150
-
1151
- .form-table {
1152
- border-collapse: collapse;
1153
- margin-top: 0.5em;
1154
- width: 100%;
1155
- margin-bottom: -8px;
1156
- clear: both;
1157
- }
1158
-
1159
- .form-table td,
1160
- #wpbody-content .describe td {
1161
- margin-bottom: 9px;
1162
- padding: 4px 10px 12px;
1163
- line-height: 20px;
1164
- font-size: 11px;
1165
- }
1166
-
1167
- .form-table th,
1168
- .form-wrap label {
1169
- font-weight: normal;
1170
- text-shadow: rgba(255,255,255,1) 0 1px 0;
1171
- }
1172
-
1173
- .form-table th,
1174
- #wpbody-content .describe th {
1175
- vertical-align: top;
1176
- text-align: left;
1177
- padding: 10px;
1178
- width: 200px;
1179
- }
1180
-
1181
- .form-table th.th-full {
1182
- width: auto;
1183
- }
1184
-
1185
- .form-table input,
1186
- .form-table textarea,
1187
- #wpbody-content .describe input,
1188
- #wpbody-content .describe textarea {
1189
- border-width: 1px;
1190
- border-style: solid;
1191
- }
1192
-
1193
- .form-table div.color-option {
1194
- display: block;
1195
- clear: both;
1196
- margin-top: 12px;
1197
- }
1198
-
1199
- .form-table input.tog {
1200
- margin-top: 2px;
1201
- margin-right: 2px;
1202
- float: left;
1203
- }
1204
-
1205
- .form-table table.color-palette {
1206
- vertical-align: bottom;
1207
- float: left;
1208
- margin: -8px 3px 8px;
1209
- }
1210
-
1211
- .form-table .color-palette td {
1212
- border-width: 1px 1px 0;
1213
- border-stile: solid solid none;
1214
- height: 10px;
1215
- line-height: 20px;
1216
- width: 10px;
1217
- }
1218
-
1219
- textarea.large-text {
1220
- width: 99%;
1221
- }
1222
-
1223
- .form-table input.regular-text {
1224
- width: 325px;
1225
- }
1226
-
1227
- .form-table input.small-text {
1228
- width: 50px;
1229
- }
1230
-
1231
- #profile-page .form-table textarea {
1232
- width: 500px;
1233
- margin-bottom: 6px;
1234
- }
1235
-
1236
- #profile-page .form-table input[type=text] {
1237
- width: 300px;
1238
- }
1239
-
1240
- #profile-page .form-table #rich_editing {
1241
- margin-right: 5px
1242
- }
1243
-
1244
- .form-table .pre {
1245
- padding: 8px;
1246
- margin: 0;
1247
- }
1248
-
1249
- .pre {
1250
- /* http://www.longren.org/2006/09/27/wrapping-text-inside-pre-tags/ */
1251
- white-space: pre-wrap; /* css-3 */
1252
- white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
1253
- white-space: -pre-wrap; /* Opera 4-6 */
1254
- white-space: -o-pre-wrap; /* Opera 7 */
1255
- word-wrap: break-word; /* Internet Explorer 5.5+ */
1256
- }
1257
-
1258
- table.form-table td .updated {
1259
- font-size: 13px;
1260
- }
1261
-
1262
- /* divs for cats and tags pages */
1263
-
1264
- .form-wrap {
1265
- margin: 10px 0;
1266
- width: 97%;
1267
- }
1268
-
1269
- .form-wrap p,
1270
- .form-wrap label {
1271
- font-size: 11px;
1272
- }
1273
-
1274
- .form-wrap label {
1275
- display: block;
1276
- padding: 2px;
1277
- font-size: 12px;
1278
- }
1279
-
1280
- .form-field input,
1281
- .form-field textarea {
1282
- border-style: solid;
1283
- border-width: 1px;
1284
- width: 95%;
1285
- }
1286
-
1287
- .form-wrap p {
1288
- margin: 2px 0 5px;
1289
- }
1290
-
1291
- .setting-description, .form-wrap p {
1292
- font-style: italic;
1293
- font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
1294
- }
1295
-
1296
- .form-wrap .form-field {
1297
- margin: 0 0 10px;
1298
- padding: 8px;
1299
- }
1300
-
1301
- .col-wrap h3 {
1302
- margin: 12px 0;
1303
- font-size: 1.1em;
1304
- }
1305
-
1306
- .col-wrap p.submit {
1307
- margin-top: -10px;
1308
- }
1309
-
1310
- .tagcloud {
1311
- width: 97%;
1312
- margin: 0 0 40px;
1313
- }
1314
-
1315
- .tagcloud h3 {
1316
- margin: 2px 0 12px;
1317
- }
1318
-
1319
- /* Post Screen */
1320
- #normal-sortables {
1321
- min-height: 50px;
1322
- }
1323
-
1324
- .postbox {
1325
- position: relative;
1326
- min-width: 255px;
1327
- width: 99.5%;
1328
- }
1329
-
1330
- #trackback_url {
1331
- width: 99%;
1332
- }
1333
-
1334
- #normal-sortables .postbox .submit {
1335
- background: transparent none;
1336
- border: 0 none;
1337
- float: right;
1338
- padding: 0 12px;
1339
- margin: 0;
1340
- }
1341
-
1342
- #normal-sortables .postbox #replyrow .submit {
1343
- float: none;
1344
- margin: 0;
1345
- padding: 3px 7px;
1346
- }
1347
-
1348
- #side-sortables {
1349
- min-height: 300px;
1350
- }
1351
-
1352
- #side-sortables .submitbox .submit input,
1353
- #side-sortables .submitbox .submit .preview,
1354
- #side-sortables .submitbox .submit a.preview:hover {
1355
- border: 0 none;
1356
- }
1357
-
1358
- #side-sortables .inside-submitbox .insidebox,
1359
- .stuffbox .insidebox {
1360
- margin: 11px 0;
1361
- }
1362
-
1363
- #side-sortables .comments-box,
1364
- #side-sortables #show-comments {
1365
- display: none;
1366
- }
1367
-
1368
- #post-body #tagsdiv #newtag {
1369
- margin-right: 5px;
1370
- width: 16em;
1371
- }
1372
-
1373
- #side-info-column input#post_password {
1374
- width: 94%
1375
- }
1376
-
1377
- #side-info-column #tagsdiv #newtag {
1378
- width: 68%;
1379
- }
1380
-
1381
- #post-status-info {
1382
- font-size: 12px;
1383
- line-height: 2;
1384
- padding: 0 15px 0 7px;
1385
- border-width: 0 1px 1px;
1386
- border-style: none solid solid;
1387
- -moz-border-radius: 0 0 6px 6px;
1388
- -webkit-border-bottom-left-radius: 6px;
1389
- -webkit-border-bottom-right-radius: 6px;
1390
- -khtml-border-bottom-left-radius: 6px;
1391
- -khtml-border-bottom-right-radius: 6px;
1392
- border-bottom-left-radius: 6px;
1393
- border-bottom-right-radius: 6px;
1394
- }
1395
-
1396
- #editorcontent #post-status-info {
1397
- border: none;
1398
- }
1399
-
1400
- #post-body-content .wp_themeSkin .mceStatusbar a.mceResize {
1401
- display: block;
1402
- float: right;
1403
- background: transparent url( '../../../../wp-admin/images/resize.gif' ) no-repeat scroll right bottom;
1404
- width: 12px;
1405
- height: 12px;
1406
- cursor: se-resize;
1407
- margin: 0 2px;
1408
- position: relative;
1409
- right: 0;
1410
- top: 31px;
1411
- }
1412
-
1413
-
1414
- #pagesubmitdiv div.inside,
1415
- #linksubmitdiv div.inside,
1416
- div.inside {
1417
- padding: 0;
1418
- margin: 0;
1419
- }
1420
-
1421
- #comment-status-radio p {
1422
- margin: 3px 0 5px;
1423
- }
1424
-
1425
- #comment-status-radio input {
1426
- margin: 2px 3px 5px 0;
1427
- vertical-align: middle;
1428
- }
1429
-
1430
- #comment-status-radio label {
1431
- padding: 5px 0;
1432
- }
1433
-
1434
- #tagchecklist {
1435
- margin-left: 10px;
1436
- font-size: 12px;
1437
- overflow: auto;
1438
- }
1439
-
1440
- #tagchecklist strong {
1441
- margin-left: -8px;
1442
- position: absolute;
1443
- }
1444
-
1445
- #tagchecklist span {
1446
- margin-right: 25px;
1447
- display: block;
1448
- float: left;
1449
- font-size: 11px;
1450
- line-height: 1.8em;
1451
- white-space: nowrap;
1452
- cursor: default;
1453
- }
1454
-
1455
- #tagchecklist span a {
1456
- margin: 6px 0pt 0pt -9px;
1457
- cursor: pointer;
1458
- width: 10px;
1459
- height: 10px;
1460
- display: block;
1461
- float: left;
1462
- text-indent: -9999px;
1463
- overflow: hidden;
1464
- position: absolute;
1465
- }
1466
-
1467
- .howto {
1468
- font-style: italic;
1469
- display: block;
1470
- font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
1471
- }
1472
-
1473
- .ac_results {
1474
- padding: 0;
1475
- margin: 0;
1476
- list-style: none;
1477
- position: absolute;
1478
- z-index: 10000;
1479
- display: none;
1480
- border-width: 1px;
1481
- border-style: solid;
1482
- }
1483
-
1484
- .ac_results li {
1485
- padding: 2px 5px;
1486
- white-space: nowrap;
1487
- text-align: left;
1488
- }
1489
-
1490
- .ac_over {
1491
- cursor: pointer;
1492
- }
1493
-
1494
- .ac_match {
1495
- text-decoration: underline;
1496
- }
1497
-
1498
- #poststuff h2 {
1499
- margin-top: 20px;
1500
- font-size: 1.5em;
1501
- margin-bottom: 15px;
1502
- padding: 0 0 3px;
1503
- clear: left;
1504
- }
1505
-
1506
- .ui-sortable .postbox h3 {
1507
- cursor: pointer;
1508
- -webkit-user-select: none;
1509
- -moz-user-select: none;
1510
- -khtml-user-select: none;
1511
- user-select: none;
1512
- }
1513
-
1514
- .ui-sortable .postbox .hndle span {
1515
- padding: 6px 0;
1516
- }
1517
-
1518
- .ui-sortable .postbox .hndle {
1519
- cursor: move;
1520
- }
1521
-
1522
- .hndle a {
1523
- font-size: 11px;
1524
- font-weight: normal;
1525
- }
1526
-
1527
- .meta-box-sortables .postbox .handlediv {
1528
- float: right;
1529
- width: 23px;
1530
- height: 26px;
1531
- }
1532
-
1533
- .sortable-placeholder {
1534
- border-width: 1px;
1535
- border-style: dashed;
1536
- z-index: -1;
1537
- }
1538
-
1539
- #poststuff h3,
1540
- .metabox-holder h3 {
1541
- font-size: 12px;
1542
- font-weight: bold;
1543
- padding: 7px 9px;
1544
- margin: 0;
1545
- line-height: 1;
1546
- }
1547
-
1548
- .metabox-holder .postbox,
1549
- #poststuff .postbox,
1550
- #poststuff .stuffbox {
1551
- margin-bottom: 20px;
1552
- border-width: 1px;
1553
- border-style: solid;
1554
- line-height: 1;
1555
- -moz-border-radius: 6px;
1556
- -khtml-border-radius: 6px;
1557
- -webkit-border-radius: 6px;
1558
- border-radius: 6px;
1559
- }
1560
-
1561
- .metabox-holder .postbox h3,
1562
- #poststuff .postbox h3,
1563
- #poststuff .stuffbox h3 {
1564
- -moz-border-radius: 6px 6px 0 0;
1565
- -webkit-border-top-right-radius: 6px;
1566
- -webkit-border-top-left-radius: 6px;
1567
- -khtml-border-top-right-radius: 6px;
1568
- -khtml-border-top-left-radius: 6px;
1569
- border-top-right-radius: 6px;
1570
- border-top-left-radius: 6px;
1571
- }
1572
-
1573
- .postbox table.form-table {
1574
- margin-bottom: 0;
1575
- }
1576
-
1577
- .postbox input[type="text"],
1578
- .postbox textarea,
1579
- .stuffbox input[type="text"],
1580
- .stuffbox textarea {
1581
- border-width: 1px;
1582
- border-style: solid;
1583
- }
1584
-
1585
- #poststuff .inside,
1586
- #poststuff .inside p {
1587
- font-size: 11px;
1588
- margin: 6px;
1589
- }
1590
-
1591
- #poststuff .inside .submitbox p {
1592
- margin: 1em 0;
1593
- }
1594
-
1595
- #post-visibility-select {
1596
- line-height: 1.5em;
1597
- margin-top: 3px;
1598
- }
1599
-
1600
- #poststuff #submitdiv .inside {
1601
- margin: 0;
1602
- }
1603
-
1604
- #titlediv, #poststuff .postarea {
1605
- margin-bottom: 20px;
1606
- }
1607
-
1608
- #titlediv {
1609
- margin-bottom: 20px;
1610
- }
1611
- #titlediv label { cursor: text; }
1612
-
1613
- #titlediv div.inside {
1614
- margin: 0;
1615
- }
1616
-
1617
- #poststuff #titlewrap {
1618
- border: 0;
1619
- padding: 0;
1620
-
1621
- }
1622
-
1623
- #titlediv #title {
1624
- padding: 3px 4px;
1625
- border-width: 1px;
1626
- border-style: solid;
1627
- -moz-border-radius: 6px;
1628
- -khtml-border-radius: 6px;
1629
- -webkit-border-radius: 6px;
1630
- border-radius: 6px;
1631
- font-size: 1.7em;
1632
- width: 100%;
1633
- outline: none;
1634
- }
1635
-
1636
- #poststuff .inside-submitbox,
1637
- #side-info-column .inside-submitbox {
1638
- margin: 0 3px;
1639
- font-size: 11px;
1640
- }
1641
-
1642
- input#link_description,
1643
- input#link_url {
1644
- width: 98%;
1645
- }
1646
-
1647
- #pending {
1648
- background: 0 none;
1649
- border: 0 none;
1650
- padding: 0;
1651
- font-size: 11px;
1652
- margin-top: -1px;
1653
- }
1654
-
1655
- #edit-slug-box {
1656
- height: 1em;
1657
- margin-top: 8px;
1658
- padding: 0 7px;
1659
- }
1660
-
1661
- #editable-post-name-full {
1662
- display: none;
1663
- }
1664
-
1665
- #editable-post-name input {
1666
- width: 16em;
1667
- }
1668
-
1669
- .postarea h3 label {
1670
- float: left;
1671
- }
1672
-
1673
- .postarea #add-media-button {
1674
- float: right;
1675
- margin: 7px 0pt 0pt;
1676
- position: relative;
1677
- right: 10px;
1678
- }
1679
-
1680
- #poststuff #editor-toolbar {
1681
- height: 30px;
1682
- }
1683
-
1684
- .wp_themeSkin tr.mceFirst td.mceToolbar {
1685
- background-image: url( '../../../../wp-admin/images/ed-bg.gif');
1686
- background-position: left top;
1687
- background-repeat: repeat-x;
1688
- border-width: 0 0 1px;
1689
- border-style: none none solid;
1690
- }
1691
-
1692
- #poststuff #edButtonPreview,
1693
- #poststuff #edButtonHTML {
1694
- display: block;
1695
- height: 18px;
1696
- margin: 5px 5px 0 0;
1697
- padding: 4px 5px 2px;
1698
- float: right;
1699
- cursor: pointer;
1700
- border-width: 1px;
1701
- border-style: solid;
1702
- -moz-border-radius: 3px 3px 0 0;
1703
- -webkit-border-top-right-radius: 3px;
1704
- -webkit-border-top-left-radius: 3px;
1705
- -khtml-border-top-right-radius: 3px;
1706
- -khtml-border-top-left-radius: 3px;
1707
- border-top-right-radius: 3px;
1708
- border-top-left-radius: 3px;
1709
- }
1710
-
1711
- #poststuff #edButtonHTML {
1712
- margin-right: 15px;
1713
- }
1714
-
1715
- #media-buttons {
1716
- cursor: default;
1717
- padding: 8px 8px 0;
1718
- }
1719
-
1720
- #media-buttons a {
1721
- cursor: pointer;
1722
- padding: 0 0 5px 10px;
1723
- }
1724
-
1725
- #media-buttons img {
1726
- vertical-align: middle;
1727
- }
1728
-
1729
- .submitbox .submit {
1730
- text-align: left;
1731
- padding: 12px 10px 10px;
1732
- font-size: 11px;
1733
- }
1734
-
1735
- .submitbox .submitdelete {
1736
- border-bottom-width: 1px;
1737
- border-bottom-style: solid;
1738
- text-decoration: none;
1739
- padding: 1px 2px;
1740
- }
1741
-
1742
- .inside-submitbox #post_status {
1743
- margin: 2px 0 2px -2px;
1744
- }
1745
-
1746
- .submitbox .submit a:hover {
1747
- border-bottom-width: 1px;
1748
- border-bottom-style: solid;
1749
- }
1750
-
1751
- .submitbox .submit input {
1752
- margin-bottom: 8px;
1753
- margin-right: 4px;
1754
- padding: 6px;
1755
- }
1756
-
1757
- #post-status-select {
1758
- line-height: 2.5em;
1759
- margin-top: 3px;
1760
- }
1761
-
1762
- /* Categories */
1763
-
1764
- #category-adder {
1765
- margin-left: 120px;
1766
- padding: 4px 0;
1767
- }
1768
-
1769
- #category-adder h4 {
1770
- margin: 0 0 8px;
1771
- }
1772
-
1773
- #side-info-column #category-adder {
1774
- margin: 0;
1775
- }
1776
-
1777
- #post-body #category-add input, #category-add select {
1778
- width: 30%;
1779
- }
1780
-
1781
- #side-info-column #category-add input {
1782
- width: 94%;
1783
- }
1784
-
1785
- #side-info-column #category-add select {
1786
- width: 100%;
1787
- }
1788
-
1789
- #category-add input#category-add-sumbit {
1790
- width: auto;
1791
- }
1792
-
1793
- #post-body ul#category-tabs {
1794
- float: left;
1795
- width: 120px;
1796
- text-align: right;
1797
- /* Negative margin for the sake of those without JS: all tabs display */
1798
- margin: 0 -120px 0 0;
1799
- padding: 0;
1800
- }
1801
-
1802
- #post-body ul#category-tabs li {
1803
- padding: 8px;
1804
- }
1805
-
1806
- #post-body ul#category-tabs li.ui-tabs-selected {
1807
- -moz-border-radius: 3px 0 0 3px;
1808
- -webkit-border-top-left-radius: 3px;
1809
- -webkit-border-bottom-left-radius: 3px;
1810
- -khtml-border-top-left-radius: 3px;
1811
- -khtml-border-bottom-left-radius: 3px;
1812
- border-top-left-radius: 3px;
1813
- border-bottom-left-radius: 3px;
1814
- }
1815
-
1816
- #post-body ul#category-tabs li.ui-tabs-selected a {
1817
- font-weight: bold;
1818
- text-decoration: none;
1819
- }
1820
-
1821
- #categorydiv div.ui-tabs-panel,
1822
- #linkcategorydiv div.ui-tabs-panel {
1823
- height: 150px;
1824
- overflow: auto;
1825
- padding: 0.5em 0.9em;
1826
- }
1827
-
1828
- #post-body #categorydiv div.ui-tabs-panel,
1829
- #post-body #linkcategorydiv div.ui-tabs-panel {
1830
- margin: 0 5px 0 120px;
1831
- height: 10em;
1832
- overflow: auto;
1833
- border-width: 4px;
1834
- border-style: solid;
1835
- }
1836
-
1837
- #side-info-column #category-tabs li {
1838
- display: inline;
1839
- padding-right: 8px;
1840
- }
1841
-
1842
- #side-info-column #category-tabs a {
1843
- text-decoration: none;
1844
- }
1845
-
1846
- #side-info-column #category-tabs {
1847
- margin-bottom: 3px;
1848
- }
1849
-
1850
- #categorydiv ul,
1851
- #linkcategorydiv ul {
1852
- list-style: none;
1853
- padding: 0;
1854
- margin: 0;
1855
- }
1856
-
1857
- #categorydiv ul.categorychecklist ul,
1858
- #linkcategorydiv ul.categorychecklist ul {
1859
- margin-left: 18px;
1860
- }
1861
-
1862
- ul.categorychecklist li {
1863
- margin: 0;
1864
- padding: 0;
1865
- line-height: 19px;
1866
- }
1867
-
1868
- #category-adder h4 {
1869
- margin-top: 4px;
1870
- margin-bottom: 0px;
1871
- }
1872
-
1873
- #categorydiv .ui-tabs-panel {
1874
- border-width: 3px;
1875
- border-style: solid;
1876
- }
1877
-
1878
- ul#category-tabs {
1879
- margin-top: 12px;
1880
- }
1881
-
1882
- ul#category-tabs li {
1883
- padding: 5px 8px;
1884
- -moz-border-radius: 3px 3px 0 0;
1885
- -webkit-border-top-left-radius: 3px;
1886
- -webkit-border-top-right-radius: 3px;
1887
- -khtml-border-top-left-radius: 3px;
1888
- -khtml-border-top-right-radius: 3px;
1889
- border-top-left-radius: 3px;
1890
- border-top-right-radius: 3px;
1891
- }
1892
-
1893
- /* positioning etc. */
1894
-
1895
- form#tags-filter {
1896
- position: relative;
1897
- }
1898
-
1899
- p.search-box {
1900
- float: right;
1901
- margin: -5px 0 0;
1902
- }
1903
-
1904
- .search-input {
1905
- border-width: 1px;
1906
- border-style: solid;
1907
- padding: 2px;
1908
- }
1909
-
1910
- #posts-filter fieldset {
1911
- float: left;
1912
- margin: 0 1.5ex 1em 0;
1913
- padding: 0;
1914
- }
1915
-
1916
- #posts-filter fieldset legend {
1917
- padding: 0 0 .2em 1px;
1918
- }
1919
-
1920
- .bordertitle {
1921
- padding-bottom: 5px;
1922
- border-bottom-width: 1px;
1923
- border-bottom-style: solid;
1924
- }
1925
-
1926
- /* Edit posts */
1927
-
1928
- td.post-title strong {
1929
- display: block;
1930
- margin-bottom: .2em;
1931
- }
1932
-
1933
- td.post-title p {
1934
- margin: 6px 0;
1935
- }
1936
-
1937
- /* Global classes */
1938
-
1939
- .wp-hidden-children .wp-hidden-child,
1940
- .ui-tabs-hide {
1941
- display: none;
1942
- }
1943
-
1944
- .commentlist .avatar {
1945
- vertical-align: text-top;
1946
- }
1947
-
1948
- .defaultavatarpicker .avatar {
1949
- margin: 2px 0;
1950
- vertical-align: middle;
1951
- }
1952
-
1953
- body.wp-admin {
1954
- min-width: 785px;
1955
- }
1956
-
1957
- .view-switch {
1958
- float: right;
1959
- margin: 6px 8px 0;
1960
- }
1961
-
1962
- .view-switch a {
1963
- text-decoration: none;
1964
- }
1965
-
1966
- .filter {
1967
- float: left;
1968
- margin: -5px 0 0 10px;
1969
- }
1970
-
1971
- .filter .subsubsub {
1972
- margin-left: -10px;
1973
- margin-top: 13px;
1974
- }
1975
-
1976
- #the-comment-list td.comment p.comment-author {
1977
- margin-top: 0;
1978
- margin-left: 0;
1979
- }
1980
-
1981
- #the-comment-list p.comment-author img {
1982
- float: left;
1983
- margin-right: 8px;
1984
- }
1985
-
1986
- #the-comment-list p.comment-author strong a {
1987
- border: none;
1988
- }
1989
-
1990
- #the-comment-list td {
1991
- vertical-align: top;
1992
- }
1993
-
1994
- #the-comment-list td.comment {
1995
- word-wrap: break-word;
1996
- }
1997
-
1998
- #the-comment-list .check-column {
1999
- padding-top: 8px;
2000
- }
2001
-
2002
- #templateside ul li a {
2003
- text-decoration: none;
2004
- }
2005
-
2006
- .tablenav .delete {
2007
- margin-right: 20px;
2008
- }
2009
-
2010
- td.action-links, th.action-links {
2011
- text-align: right;
2012
- }
2013
-
2014
- /* Diff */
2015
-
2016
- table.diff {
2017
- width: 100%;
2018
- }
2019
-
2020
- table.diff col.content {
2021
- width: 50%;
2022
- }
2023
-
2024
- table.diff tr {
2025
- background-color: transparent;
2026
- }
2027
-
2028
- table.diff td, table.diff th {
2029
- padding: .5em;
2030
- font-family: Consolas, Monaco, Courier, monospace;
2031
- border: none;
2032
- }
2033
-
2034
- table.diff .diff-deletedline del, table.diff .diff-addedline ins {
2035
- text-decoration: none;
2036
- }
2037
-
2038
- #wp-word-count {
2039
- display: block;
2040
- }
2041
-
2042
- fieldset {
2043
- border: 0;
2044
- padding: 0;
2045
- margin: 0;
2046
- }
2047
-
2048
- .tool-box {
2049
- margin: 15px 0 35px;
2050
- }
2051
-
2052
- .tool-box .buttons {
2053
- margin: 15px 0;
2054
- }
2055
-
2056
- .tool-box .title {
2057
- margin: 8px 0;
2058
- font: 18px/24px Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
2059
- }
2060
-
2061
- .pressthis a {
2062
- font-size: 1.2em;
2063
- }
2064
-
2065
- #wp_editbtns,
2066
- #wp_gallerybtns {
2067
- padding: 2px;
2068
- position: absolute;
2069
- display: none;
2070
- z-index: 999998;
2071
- }
2072
-
2073
- #wp_editimgbtn,
2074
- #wp_delimgbtn,
2075
- #wp_editgallery,
2076
- #wp_delgallery {
2077
- margin: 2px;
2078
- padding: 2px;
2079
- border-width: 1px;
2080
- border-style: solid;
2081
- -moz-border-radius: 3px;
2082
- -khtml-border-radius: 3px;
2083
- -webkit-border-radius: 3px;
2084
- border-radius: 3px;
2085
- }
2086
-
2087
- .settings-toggle {
2088
- text-align: right;
2089
- margin: 5px 7px 15px 0;
2090
- font-size: 12px;
2091
- }
2092
-
2093
- .settings-toggle h3 {
2094
- margin: 0;
2095
- }
2096
-
2097
- #timestampdiv select {
2098
- height: 20px;
2099
- line-height: 20px;
2100
- padding: 0;
2101
- }
2102
-
2103
- #jj, #hh, #mn {
2104
- width: 2em;
2105
- padding: 1px;
2106
- font-size: 12px;
2107
- }
2108
-
2109
- #aa {
2110
- width: 3.4em;
2111
- padding: 1px;
2112
- font-size: 12px;
2113
- }
2114
-
2115
- .curtime #timestamp {
2116
- background-repeat: no-repeat;
2117
- background-position: left top;
2118
- padding-left: 18px;
2119
- }
2120
-
2121
- #timestampdiv {
2122
- padding-top: 5px;
2123
- line-height: 23px;
2124
- }
2125
-
2126
- #timestampdiv p {
2127
- margin: 8px 0 6px;
2128
- }
2129
-
2130
- #timestampdiv input {
2131
- border-width: 1px;
2132
- border-style: solid;
2133
- }
2134
-
2135
- /* media popup 0819 */
2136
- #sidemenu {
2137
- margin: -30px 15px 0 315px;
2138
- list-style: none;
2139
- position: relative;
2140
- float: right;
2141
- padding-left: 10px;
2142
- font-size: 12px;
2143
- }
2144
-
2145
- #sidemenu a {
2146
- padding: 0 7px;
2147
- display: block;
2148
- float: left;
2149
- line-height: 28px;
2150
- border-top-width: 1px;
2151
- border-top-style: solid;
2152
- border-bottom-width: 1px;
2153
- border-bottom-style: solid;
2154
- }
2155
-
2156
- #sidemenu li {
2157
- display: inline;
2158
- line-height: 200%;
2159
- list-style: none;
2160
- text-align: center;
2161
- white-space: nowrap;
2162
- margin: 0;
2163
- padding: 0;
2164
- }
2165
-
2166
- #sidemenu a.current {
2167
- font-weight: normal;
2168
- padding-left: 6px;
2169
- padding-right: 6px;
2170
- -moz-border-radius: 4px 4px 0 0;
2171
- -webkit-border-top-left-radius: 4px;
2172
- -webkit-border-top-right-radius: 4px;
2173
- -khtml-border-top-left-radius: 4px;
2174
- -khtml-border-top-right-radius: 4px;
2175
- border-top-left-radius: 4px;
2176
- border-top-right-radius: 4px;
2177
- border-width: 1px;
2178
- border-style: solid;
2179
- }
2180
-
2181
- #sidemenu {
2182
- margin: -30px 15px 0 315px;
2183
- list-style: none;
2184
- position: relative;
2185
- float: right;
2186
- padding-left: 10px;
2187
- font-size: 12px;
2188
- }
2189
-
2190
- #sidemenu a {
2191
- padding: 0 7px;
2192
- display: block;
2193
- float: left;
2194
- line-height: 28px;
2195
- border-top-width: 1px;
2196
- border-top-style: solid;
2197
- border-bottom-width: 1px;
2198
- border-bottom-style: solid;
2199
- }
2200
-
2201
- #sidemenu li a .count-0 {
2202
- display: none;
2203
- }
2204
-
2205
- /* reply to comments */
2206
- #replyrow {
2207
- font-size: 11px;
2208
- }
2209
-
2210
- #replyrow input {
2211
- border-width: 1px;
2212
- border-style: solid;
2213
- }
2214
-
2215
- #replyrow td {
2216
- padding: 2px;
2217
- }
2218
-
2219
- #replyrow #editorcontainer {
2220
- border: 0 none;
2221
- }
2222
-
2223
- #replysubmit {
2224
- margin: 0;
2225
- padding: 3px 7px;
2226
- }
2227
-
2228
- #replysubmit img.waiting,
2229
- .inline-edit-save img.waiting,
2230
- #commentstatusdiv img.waiting {
2231
- padding: 0 10px;
2232
- vertical-align: top;
2233
- }
2234
-
2235
- #replysubmit .button {
2236
- margin-right: 5px;
2237
- }
2238
-
2239
- #replyrow #editor-toolbar {
2240
- display: none;
2241
- }
2242
-
2243
- #replyhead {
2244
- font-size: 12px;
2245
- font-weight: bold;
2246
- padding: 2px 10px 4px;
2247
- }
2248
-
2249
- #edithead .inside {
2250
- float: left;
2251
- padding: 3px 0 2px 5px;
2252
- margin: 0;
2253
- text-align: center;
2254
- font-size: 11px;
2255
- }
2256
-
2257
- #edithead .inside input {
2258
- width: 180px;
2259
- font-size: 11px;
2260
- }
2261
-
2262
- #edithead label {
2263
- padding: 2px 0;
2264
- }
2265
-
2266
- #replycontainer {
2267
- padding: 5px;
2268
- border: 0 none;
2269
- height: 120px;
2270
- overflow: hidden;
2271
- position: relative;
2272
- }
2273
-
2274
- #replycontent {
2275
- resize: none;
2276
- margin: 0;
2277
- width: 100%;
2278
- height: 100%;
2279
- padding: 0;
2280
- line-height: 150%;
2281
- border: 0 none;
2282
- outline: none;
2283
- font-size: 12px;
2284
- }
2285
-
2286
- #replyrow #ed_reply_toolbar {
2287
- margin: 0;
2288
- padding: 2px 3px;
2289
- }
2290
-
2291
- /* show/hide settings */
2292
- #screen-meta {
2293
- position: relative;
2294
- clear: both;
2295
- }
2296
-
2297
- #screen-meta-links {
2298
- margin: 0 9px 0 0;
2299
- }
2300
-
2301
- #screen-meta .invisible {
2302
- visibility: hidden;
2303
- }
2304
-
2305
- #screen-options-link-wrap,
2306
- #contextual-help-link-wrap {
2307
- float: right;
2308
- font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
2309
- height: 22px;
2310
- padding: 0;
2311
- margin: 0 6px 0 0;
2312
- }
2313
-
2314
- #screen-meta a.show-settings {
2315
- text-decoration: none;
2316
- z-index: 1;
2317
- padding: 0 16px 0 6px;
2318
- height: 22px;
2319
- line-height: 22px;
2320
- font-size: 10px;
2321
- display: block;
2322
- background-repeat: no-repeat;
2323
- background-position: right bottom;
2324
- }
2325
-
2326
- #screen-meta a.show-settings {
2327
- background-image: url( '../../../../wp-admin/images/screen-options-right.gif' );
2328
- }
2329
-
2330
- #screen-meta a.show-settings:hover {
2331
- text-decoration: none;
2332
- }
2333
-
2334
- #screen-options-wrap h5,
2335
- #contextual-help-wrap h5 {
2336
- margin: 8px 0;
2337
- font-size: 13px;
2338
- }
2339
-
2340
- #screen-options-wrap,
2341
- #contextual-help-wrap {
2342
- border-style: none solid solid;
2343
- border-top: 0 none;
2344
- border-width: 0 1px 1px;
2345
- margin: 0 15px;
2346
- padding: 8px 12px 12px;
2347
- -moz-border-radius: 0 0 0 4px;
2348
- -webkit-border-bottom-left-radius: 4px;
2349
- -khtml-border-bottom-left-radius: 4px;
2350
- border-bottom-left-radius: 4px;
2351
- }
2352
-
2353
- .metabox-prefs label {
2354
- padding-right: 15px;
2355
- white-space: nowrap;
2356
- line-height: 30px;
2357
- }
2358
-
2359
- .metabox-prefs label input {
2360
- margin: 0 5px 0 2px;
2361
- }
2362
-
2363
- .metabox-prefs label a {
2364
- display: none;
2365
- }
2366
-
2367
- /* Inline Editor
2368
- .quick-edit* is for Quick Edit
2369
- .bulk-edit* is for Bulk Edit
2370
- .inline-edit* is for everything
2371
- */
2372
- /* Layout */
2373
- tr.inline-edit-row td {
2374
- padding: 0 0.5em;
2375
- }
2376
-
2377
- #wpbody-content .inline-edit-row fieldset {
2378
- font-size: 12px;
2379
- float: left;
2380
- margin: 0;
2381
- padding: 0;
2382
- width: 100%;
2383
- }
2384
-
2385
- #wpbody-content .inline-edit-row fieldset .inline-edit-col {
2386
- padding: 0 0.5em;
2387
- }
2388
-
2389
- #wpbody-content .quick-edit-row-page fieldset.inline-edit-col-right .inline-edit-col {
2390
- border-width: 0 0 0 1px;
2391
- border-style: none none none solid;
2392
- }
2393
-
2394
- #wpbody-content .quick-edit-row-post .inline-edit-col-left {
2395
- width: 40%;
2396
- }
2397
-
2398
- #wpbody-content .quick-edit-row-post .inline-edit-col-right {
2399
- width: 39%;
2400
- }
2401
-
2402
- #wpbody-content .inline-edit-row-post .inline-edit-col-center {
2403
- width: 20%;
2404
- }
2405
-
2406
- #wpbody-content .quick-edit-row-page .inline-edit-col-left {
2407
- width: 50%;
2408
- }
2409
-
2410
- #wpbody-content .quick-edit-row-page .inline-edit-col-right,
2411
- #wpbody-content .bulk-edit-row-post .inline-edit-col-right {
2412
- width: 49%;
2413
- }
2414
-
2415
- #wpbody-content .bulk-edit-row .inline-edit-col-left {
2416
- width: 30%;
2417
- }
2418
-
2419
- #wpbody-content .bulk-edit-row-page .inline-edit-col-right {
2420
- width: 69%;
2421
- }
2422
-
2423
- #wpbody-content .bulk-edit-row .inline-edit-col-bottom {
2424
- float: right;
2425
- width: 69%;
2426
- }
2427
-
2428
- #wpbody-content .inline-edit-row-page .inline-edit-col-right,
2429
- #owpbody-content .bulk-edit-row-post .inline-edit-col-right {
2430
- margin-top: 27px;
2431
- }
2432
-
2433
- .inline-edit-row fieldset .inline-edit-group {
2434
- clear: both;
2435
- }
2436
-
2437
- .inline-edit-row fieldset .inline-edit-group:after {
2438
- content: ".";
2439
- display: block;
2440
- height: 0;
2441
- clear: both;
2442
- visibility: hidden;
2443
- }
2444
-
2445
- .inline-edit-row p.submit {
2446
- clear: both;
2447
- padding: 0.5em;
2448
- margin: 0.5em 0 0;
2449
- }
2450
-
2451
- /* Positioning */
2452
- .inline-edit-row h4 {
2453
- margin: .2em 0;
2454
- padding: 0;
2455
- line-height: 23px;
2456
- }
2457
- .inline-edit-row fieldset span.title,
2458
- .inline-edit-row fieldset span.checkbox-title {
2459
- margin: 0;
2460
- padding: 0;
2461
- line-height: 27px;
2462
- }
2463
-
2464
- .inline-edit-row fieldset label,
2465
- .inline-edit-row fieldset span.inline-edit-categories-label {
2466
- display: block;
2467
- margin: .2em 0;
2468
- }
2469
-
2470
- .inline-edit-row fieldset label.inline-edit-tags {
2471
- margin-top: 0;
2472
- }
2473
-
2474
- .inline-edit-row fieldset label.inline-edit-tags span.title {
2475
- margin: .2em 0;
2476
- }
2477
-
2478
- .inline-edit-row fieldset label span.title {
2479
- display: block;
2480
- float: left;
2481
- width: 5em;
2482
- }
2483
-
2484
- .inline-edit-row fieldset label span.input-text-wrap {
2485
- display: block;
2486
- margin-left: 5em;
2487
- }
2488
-
2489
- .quick-edit-row-post fieldset.inline-edit-col-right label span.title {
2490
- width: auto;
2491
- padding-right: 0.5em;
2492
- }
2493
-
2494
- .inline-edit-row .input-text-wrap input[type=text] {
2495
- width: 100%;
2496
- }
2497
-
2498
- .inline-edit-row fieldset label input[type=checkbox] {
2499
- vertical-align: text-bottom;
2500
- }
2501
-
2502
- .inline-edit-row fieldset label textarea {
2503
- width: 100%;
2504
- height: 4em;
2505
- }
2506
-
2507
- #wpbody-content .bulk-edit-row fieldset .inline-edit-group label {
2508
- max-width: 50%;
2509
- }
2510
-
2511
- #wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child {
2512
- margin-right: 0.5em
2513
- }
2514
-
2515
- /* Styling */
2516
- .inline-edit-row h4 {
2517
- text-transform: uppercase;
2518
- }
2519
-
2520
- .inline-edit-row fieldset span.title,
2521
- .inline-edit-row fieldset span.checkbox-title {
2522
- font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
2523
- font-style: italic;
2524
- line-height: 1.8em;
2525
- }
2526
-
2527
- /* Specific Elements */
2528
- .inline-edit-row fieldset input[type="text"],
2529
- .inline-edit-row fieldset textarea {
2530
- border-style: solid;
2531
- border-width: 1px;
2532
- }
2533
-
2534
- .inline-edit-row fieldset .inline-edit-date {
2535
- float: left;
2536
- }
2537
-
2538
- .inline-edit-row fieldset input[name=jj],
2539
- .inline-edit-row fieldset input[name=hh],
2540
- .inline-edit-row fieldset input[name=mn] {
2541
- font-size: 12px;
2542
- width: 2.1em;
2543
- }
2544
-
2545
- .inline-edit-row fieldset input[name=aa] {
2546
- font-size: 12px;
2547
- width: 3.5em;
2548
- }
2549
-
2550
- .inline-edit-row fieldset label input.inline-edit-password-input {
2551
- width: 8em;
2552
- }
2553
-
2554
- ul.cat-checklist {
2555
- height: 12em;
2556
- border-style: solid;
2557
- border-width: 1px;
2558
- overflow-y: scroll;
2559
- padding: 0 5px;
2560
- margin: 0 0 5px;
2561
- }
2562
-
2563
- #bulk-titles {
2564
- display: block;
2565
- height: 12em;
2566
- border-style: solid;
2567
- border-width: 1px;
2568
- overflow-y: scroll;
2569
- padding: 0 5px;
2570
- margin: 0 0 5px;
2571
- }
2572
-
2573
- .inline-edit-row fieldset ul.cat-checklist li,
2574
- .inline-edit-row fieldset ul.cat-checklist input {
2575
- margin: 0;
2576
- }
2577
-
2578
- .inline-edit-row fieldset ul.cat-checklist label,
2579
- .inline-edit-row .catshow,
2580
- .inline-edit-row .cathide,
2581
- .inline-edit-row #bulk-titles div {
2582
- font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
2583
- font-style: normal;
2584
- font-size: 11px;
2585
- }
2586
-
2587
- table .inline-edit-row fieldset ul.cat-hover {
2588
- height: auto;
2589
- max-height: 30em;
2590
- overflow-y: auto;
2591
- position: absolute;
2592
- }
2593
-
2594
- .inline-edit-row fieldset label input.inline-edit-menu-order-input {
2595
- width: 3em;
2596
- }
2597
-
2598
- .inline-edit-row fieldset label input.inline-edit-slug-input {
2599
- width: 75%;
2600
- }
2601
-
2602
- .quick-edit-row-post fieldset label.inline-edit-status {
2603
- float: left;
2604
- }
2605
-
2606
- #bulk-titles {
2607
- line-height: 140%;
2608
- }
2609
- #bulk-titles div {
2610
- margin: 0.2em 0.3em;
2611
- }
2612
-
2613
- #bulk-titles div a {
2614
- cursor: pointer;
2615
- display: block;
2616
- float: left;
2617
- height: 10px;
2618
- margin: 3px 3px 0 -2px;
2619
- overflow: hidden;
2620
- position: relative;
2621
- text-indent: -9999px;
2622
- width: 10px;
2623
- }
2624
-
2625
- /* Media library */
2626
- #wpbody-content #media-items .describe {
2627
- border-collapse: collapse;
2628
- width: 100%;
2629
- border-top-style: solid;
2630
- border-top-width: 1px;
2631
- clear: both;
2632
- cursor: default;
2633
- padding: 5px;
2634
- width: 100%;
2635
- }
2636
-
2637
- #wpbody-content .describe .media-item-info tr {
2638
- background-color: transparent;
2639
- }
2640
-
2641
- #wpbody-content .filename {
2642
- margin-left: 10px;
2643
- }
2644
-
2645
- #wpbody-content .media-item .thumbnail {
2646
- max-height: 128px;
2647
- max-width: 128px;
2648
- }
2649
-
2650
- #wpbody-content .media-upload-form label {
2651
- display: block;
2652
- font-size: 13px;
2653
- margin: 0.5em;
2654
- }
2655
-
2656
- abbr.required {
2657
- border: medium none;
2658
- text-decoration: none;
2659
- }
2660
-
2661
- #wpbody-content .describe input[type="text"],
2662
- #wpbody-content .describe textarea {
2663
- width: 460px;
2664
- }
2665
-
2666
- #wpbody-content .describe p.help {
2667
- margin: 0;
2668
- padding: 0;
2669
- }
2670
-
2671
- .describe-toggle-on, .describe-toggle-off {
2672
- display: block;
2673
- line-height: 36px;
2674
- float: right;
2675
- margin-right: 20px;
2676
- }
2677
-
2678
- .describe-toggle-off {
2679
- display: none;
2680
- }
2681
-
2682
- #wpbody-content .media-item {
2683
- border-bottom-style: solid;
2684
- border-bottom-width: 1px;
2685
- min-height: 36px;
2686
- position: relative;
2687
- width: 100%;
2688
- }
2689
-
2690
- #wpbody-content #media-items {
2691
- border-style: solid solid none;
2692
- border-width: 1px;
2693
- width: 670px;
2694
- }
2695
-
2696
- #wpbody-content #media-items .filename {
2697
- float: left;
2698
- line-height: 36px;
2699
- margin-left: 10px;
2700
- max-width: 430px;
2701
- overflow: hidden;
2702
- }
2703
-
2704
- .media-item .pinkynail {
2705
- float: left;
2706
- height: 32px;
2707
- margin: 2px;
2708
- max-width: 40px;
2709
- max-height: 40px;
2710
- }
2711
-
2712
- .media-item .startopen,
2713
- .media-item .startclosed {
2714
- display: none;
2715
- }
2716
-
2717
- /* find posts */
2718
- .find-box {
2719
- width: 400px;
2720
- height: 250px;
2721
- overflow: hidden;
2722
- padding: 33px 5px 50px;
2723
- position: absolute;
2724
- z-index: 1000;
2725
- }
2726
-
2727
- .find-box-head {
2728
- cursor: move;
2729
- font-weight: bold;
2730
- height: 2em;
2731
- line-height: 2em;
2732
- padding: 1px 12px;
2733
- position: absolute;
2734
- top: 5px;
2735
- width: 100%;
2736
- }
2737
-
2738
- .find-box-inside {
2739
- overflow: auto;
2740
- width: 100%;
2741
- height: 100%;
2742
- }
2743
-
2744
- .find-box-search {
2745
- padding: 12px;
2746
- border-width: 1px;
2747
- border-style: none none solid;
2748
- }
2749
-
2750
- #find-posts-response {
2751
- margin: 8px 0;
2752
- padding: 0 1px;
2753
- }
2754
-
2755
- #find-posts-response table {
2756
- width: 100%;
2757
- }
2758
-
2759
- #find-posts-response .found-radio {
2760
- padding: 8px 0 0 8px;
2761
- width: 15px;
2762
- }
2763
-
2764
- .find-box-buttons {
2765
- bottom: 12px;
2766
- left: 12px;
2767
- position: absolute;
2768
- }
2769
-
2770
- .find-box-search label {
2771
- padding-right: 6px;
2772
- }
2773
-
2774
- /* favorite-actions */
2775
- #favorite-actions {
2776
- float: right;
2777
- margin: 11px 12px 0;
2778
- min-width: 130px;
2779
- position: relative;
2780
- }
2781
-
2782
- #favorite-first {
2783
- -moz-border-radius: 12px;
2784
- -khtml-border-radius: 12px;
2785
- -webkit-border-radius: 12px;
2786
- border-radius: 12px;
2787
- line-height: 15px;
2788
- padding: 3px 30px 4px 12px;
2789
- border-width: 1px;
2790
- border-style: solid;
2791
- }
2792
-
2793
- #favorite-inside {
2794
- margin: 0 0 0 0px;
2795
- padding: 0 1px 6px 1px;
2796
- border-width: 1px;
2797
- border-style: solid;
2798
- position: absolute;
2799
- z-index: 11;
2800
- display: none;
2801
- -moz-border-radius: 0 0 12px 12px;
2802
- -webkit-border-bottom-right-radius: 12px;
2803
- -webkit-border-bottom-left-radius: 12px;
2804
- -khtml-border-bottom-right-radius: 12px;
2805
- -khtml-border-bottom-left-radius: 12px;
2806
- border-bottom-right-radius: 12px;
2807
- border-bottom-left-radius: 12px;
2808
- }
2809
-
2810
- #favorite-actions a {
2811
- display: block;
2812
- text-decoration: none;
2813
- font-size: 11px;
2814
- }
2815
-
2816
- #favorite-inside a {
2817
- padding: 3px 5px 3px 10px;
2818
- }
2819
-
2820
- #favorite-toggle {
2821
- height: 22px;
2822
- position: absolute;
2823
- right: 0;
2824
- top: 1px;
2825
- width: 28px;
2826
- }
2827
-
2828
- #favorite-actions .slide-down {
2829
- background-image: url( '../../../../wp-admin/images/fav-top.png' );
2830
- background-repeat: repeat-x;
2831
- background-position: 0 top;
2832
- -moz-border-radius: 12px 12px 0 0;
2833
- -webkit-border-bottom-right-radius: 0;
2834
- -webkit-border-bottom-left-radius: 0;
2835
- -khtml-border-bottom-right-radius: 0;
2836
- -khtml-border-bottom-left-radius: 0;
2837
- border-bottom-right-radius: 0;
2838
- border-bottom-left-radius: 0;
2839
- border-bottom-width: 1px;
2840
- border-bottom-style: solid;
2841
- }
2842
-
2843
- #utc-time, #local-time {
2844
- padding-left: 25px;
2845
- font-style: italic;
2846
- font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
2847
- }
2848
-
2849
- ul#dismissed-updates {
2850
- display: none;
2851
- }
2852
- form.upgrade {
2853
- margin-top: 8px;
2854
- }
2855
-
2856
- #tagsdiv #the-tagcloud {
2857
- margin: 5px 5px 10px;
2858
- padding: 8px;
2859
- border-width: 1px;
2860
- border-style: solid;
2861
- line-height: 1.8em;
2862
- word-spacing: 3px;
2863
- -moz-border-radius: 6px;
2864
- -khtml-border-radius: 6px;
2865
- -webkit-border-radius: 6px;
2866
- border-radius: 6px;
2867
- }
2868
-
2869
- br.clear {
2870
- height: 2px;
2871
- line-height: 2px;
2872
- }
2873
-
2874
- .swfupload {
2875
- margin: 5px 10px;
2876
- vertical-align: middle;
2877
- }
2878
-
2879
- /* table.fixed column width */
2880
- table.fixed {
2881
- table-layout: fixed;
2882
- }
2883
-
2884
- .fixed .column-date,
2885
- .fixed .column-parent,
2886
- .fixed .column-visible,
2887
- .fixed .column-links {
2888
- width: 10%;
2889
- }
2890
-
2891
- .fixed .column-response,
2892
- .fixed .column-author,
2893
- .fixed .column-categories,
2894
- .fixed .column-tags,
2895
- .fixed .column-rel,
2896
- .fixed .column-role {
2897
- width: 15%;
2898
- }
2899
-
2900
- .fixed .column-comments {
2901
- width: 4em;
2902
- }
2903
-
2904
- .fixed .column-slug {
2905
- width: 25%;
2906
- }
2907
-
2908
- .fixed .column-posts {
2909
- width: 10%;
2910
- }
2911
-
2912
- .fixed .column-icon {
2913
- width: 80px;
2914
- }
2915
-
2916
- #commentstatusdiv .fixed .column-author,
2917
- #comments-form .fixed .column-author,
2918
- #commentstatusdiv .fixed .column-date {
2919
- width: 20%;
2920
- }
2921
-
2922
- .widefat th,
2923
- .widefat td {
2924
- overflow: hidden;
2925
- }
2926
-
2927
- .widefat th {
2928
- text-shadow: rgba(255,255,255,0.8) 0 1px 0;
2929
- }
2930
-
2931
- .icon32 {
2932
- float: left;
2933
- height: 36px;
2934
- margin: 14px 6px 0 0;
2935
- width: 36px;
2936
- }
2937
-
2938
- .key-labels label {
2939
- line-height: 24px;
2940
- }
2941
-
2942
- .subtitle {
2943
- font-size: 0.75em;
2944
- line-height: 1;
2945
- padding-left: 25px;
2946
- }
2947
-
2948
-
2949
- /*----------------------------------------
2950
- Styling changes for WordPress 2.8
2951
- By: John James Jacoby
2952
- www.johnjamesjacoby.com
2953
- ----------------------------------------*/
2954
-
2955
- #wphead {
2956
- margin-left: 175px;
2957
- -moz-border-radius: 0 0 0 12px;
2958
- -webkit-border-bottom-left-radius: 12px;
2959
- -khtml-border-bottom-left-radius: 12px;
2960
- border-bottom-left-radius: 12px;
2961
- position: relative;
2962
- }
2963
- .folded #wphead {
2964
- margin-left: 60px;
2965
- }
2966
- #adminmenu {
2967
- margin: -46px 0 0 -175px;
2968
- width: 160px;
2969
- height: 100%;
2970
- }
2971
- #update-nag {
2972
- text-align: left !important;
2973
- padding-left: 10px;
2974
- border: 1px solid #ccc !important;
2975
- margin: 30px 15px 0 0;
2976
- }
2977
-
2978
- #adminmenu .menu-top-first a.menu-top,
2979
- .folded #adminmenu li.menu-top-first,
2980
- #adminmenu .wp-submenu .wp-submenu-head {
2981
- -moz-border-radius: 0 !important;
2982
- -webkit-border-radius: 0 !important;
2983
- -khtml-border-radius: 0 !important;
2984
- border-radius: 0 !important;
2985
- }
2986
- #adminmenu .menu-top-last a.menu-top,
2987
- .folded #adminmenu li.menu-top-last {
2988
- -moz-border-radius: 0 !important;
2989
- -webkit-border-radius: 0 !important;
2990
- -khtml-border-radius: 0 !important;
2991
- border-radius: 0 !important;
2992
- }
2993
-
2994
- #adminmenu a.menu-top,
2995
- #adminmenu .wp-submenu-head {
2996
- font: normal 13px/18px "Lucida Grande",Verdana,Arial,"Bitstream Vera Sans",sans-serif !important;
2997
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
css/mw_basic.css DELETED
@@ -1,16 +0,0 @@
1
- .wrap, .updated, .error, #the-comment-list td.comment {
2
- max-width: 99%;
3
- }
4
-
5
- html {
6
- height: 100%;
7
- margin-bottom: 1px;
8
- }
9
-
10
- #newcat {
11
- width:95% !important;
12
- }
13
-
14
- #category-add select, #newtag {
15
- width: 75% !important;
16
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
css/mw_big_sidebar.css DELETED
@@ -1,7 +0,0 @@
1
- #poststuff #post-body {
2
- margin-right: 430px;
3
- }
4
-
5
- .submitbox {
6
- width: 420px;
7
- }
 
 
 
 
 
 
 
css/mw_cat.css DELETED
@@ -1,26 +0,0 @@
1
- /**
2
- * Category in sidebar
3
- */
4
- #poststuff h2 {
5
- clear: none;
6
- }
7
-
8
- .categorychecklist {
9
- list-style-type: none;
10
- margin: 0;
11
- overflow: auto;
12
- padding-left: 0;
13
- }
14
-
15
- .categorychecklist ul {
16
- list-style-type: none;
17
- margin: 0;
18
- padding-left: 17px;
19
- }
20
-
21
- .inside #categorychecklist {
22
- background: #fff;
23
- border: 2px solid #CEE1EF;
24
- max-height: 300px;
25
- padding: 3px 0 5px 5px;
26
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
css/mw_classic.css DELETED
@@ -1,8 +0,0 @@
1
- @import url(../../../../wp-admin/css/colors-classic.css);
2
- @import url(mw_basic.css);
3
- @import url(mw_admin.css);
4
- @import url(mw_cat.css);
5
-
6
- #wphead h1 #viewsite a:hover {
7
- color: #d54e21;
8
- }
 
 
 
 
 
 
 
 
css/mw_classic27.css DELETED
@@ -1,7 +0,0 @@
1
- @import url(../../../../wp-admin/css/colors-classic.css);
2
- @import url(mw_basic.css);
3
- @import url(mw_admin27.css);
4
-
5
- #wphead h1 #viewsite a:hover {
6
- color: #d54e21;
7
- }
 
 
 
 
 
 
 
css/mw_classic28_fixed.css DELETED
@@ -1,9 +0,0 @@
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_fixed_header.css);
5
- @import url(mw_fixed_menu.css);
6
-
7
- #wphead h1 #viewsite a:hover {
8
- color: #d54e21;
9
- }
 
 
 
 
 
 
 
 
 
css/mw_classic28_fixed.dev.css DELETED
@@ -1,9 +0,0 @@
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_fixed_header.css);
5
- @import url(mw_fixed_menu.css);
6
-
7
- #wphead h1 #viewsite a:hover {
8
- color: #d54e21;
9
- }
 
 
 
 
 
 
 
 
 
css/mw_classic28_save_50px.css DELETED
@@ -1,7 +0,0 @@
1
- @import url(../../../../wp-admin/css/colors-classic.css);
2
- @import url(mw_basic.css);
3
- @import url(mw_save_50px.css);
4
-
5
- #wphead h1 #viewsite a:hover {
6
- color: #d54e21;
7
- }
 
 
 
 
 
 
 
css/mw_classic28_tweak.css DELETED
@@ -1,2 +0,0 @@
1
- @import url(../../../../wp-admin/css/colors-classic.css);
2
- @import url(mw_admin28_tweak.css);
 
 
css/mw_classic28_tweak.dev.css DELETED
@@ -1,2 +0,0 @@
1
- @import url(../../../../wp-admin/css/colors-classic.css);
2
- @import url(mw_admin28_tweak.css);
 
 
css/mw_classic_lm.css DELETED
@@ -1,7 +0,0 @@
1
- @import url(../../../../wp-admin/css/colors-classic.css);
2
- @import url(mw_basic.css);
3
- @import url(mw_cat.css);
4
-
5
- #wphead h1 #viewsite a:hover {
6
- color: #d54e21;
7
- }
 
 
 
 
 
 
 
css/mw_classic_ozh_am.css DELETED
@@ -1,7 +0,0 @@
1
- @import url(../../../../wp-admin/css/colors-classic.css);
2
- @import url(mw_basic.css);
3
- @import url(mw_cat.css);
4
-
5
- #wphead h1 #viewsite a:hover {
6
- color: #d54e21;
7
- }
 
 
 
 
 
 
 
css/mw_colorblind.css DELETED
@@ -1,4 +0,0 @@
1
- @import url(colors-colorblind.css);
2
- @import url(mw_basic.css);
3
- @import url(mw_admin.css);
4
- @import url(mw_cat.css);
 
 
 
 
css/mw_fixed_header.css DELETED
@@ -1,25 +0,0 @@
1
- #wphead {
2
- position: fixed;
3
- width: 100%;
4
- z-index: 999;
5
- }
6
-
7
- #wpbody {
8
- padding-top: 46px;
9
- }
10
-
11
- #screen-meta {
12
- position: fixed;
13
- z-index: 999;
14
- right: 0;
15
- }
16
-
17
- #user_info p, #small_user_info p {
18
- position: fixed;
19
- right: 15px;
20
- z-index: 999;
21
- }
22
-
23
- #favorite-actions {
24
- right: 250px;
25
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
css/mw_fixed_menu.css DELETED
@@ -1,4 +0,0 @@
1
- #adminmenu {
2
- position: fixed;
3
- top: 46px;
4
- }
 
 
 
 
css/mw_fresh.css DELETED
@@ -1,4 +0,0 @@
1
- @import url(../../../../wp-admin/css/colors-fresh.css);
2
- @import url(mw_basic.css);
3
- @import url(mw_admin.css);
4
- @import url(mw_cat.css);
 
 
 
 
css/mw_fresh27.css DELETED
@@ -1,3 +0,0 @@
1
- @import url(../../../../wp-admin/css/colors-fresh.css);
2
- @import url(mw_basic.css);
3
- @import url(mw_admin27.css);
 
 
 
css/mw_fresh27.dev.css DELETED
@@ -1,3 +0,0 @@
1
- @import url(../../../../wp-admin/css/colors-fresh.css);
2
- @import url(mw_basic.css);
3
- @import url(mw_admin27.css);
 
 
 
css/mw_fresh28_fixed.css DELETED
@@ -1,5 +0,0 @@
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_fixed_header.css);
5
- @import url(mw_fixed_menu.css);
 
 
 
 
 
css/mw_fresh28_fixed.dev.css DELETED
@@ -1,5 +0,0 @@
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_fixed_header.css);
5
- @import url(mw_fixed_menu.css);
 
 
 
 
 
css/mw_fresh28_save_50px.css DELETED
@@ -1,3 +0,0 @@
1
- @import url(../../../../wp-admin/css/colors-fresh.css);
2
- @import url(mw_basic.css);
3
- @import url(mw_save_50px.css);
 
 
 
css/mw_fresh28_tweak.css DELETED
@@ -1,3 +0,0 @@
1
- @import url(../../../../wp-admin/css/wp-admin.css);
2
- @import url(../../../../wp-admin/css/colors-fresh.css);
3
- @import url(mw_admin28_tweak.css);
 
 
 
css/mw_fresh28_tweak.dev.css DELETED
@@ -1,3 +0,0 @@
1
- @import url(../../../../wp-admin/css/wp-admin.css);
2
- @import url(../../../../wp-admin/css/colors-fresh.css);
3
- @import url(mw_admin28_tweak.css);
 
 
 
css/mw_fresh_lm.css DELETED
@@ -1,3 +0,0 @@
1
- @import url(../../../../wp-admin/css/colors-fresh.css);
2
- @import url(mw_basic.css);
3
- @import url(mw_cat.css);
 
 
 
css/mw_fresh_ozh_am.css DELETED
@@ -1,3 +0,0 @@
1
- @import url(../../../../wp-admin/css/colors-fresh.css);
2
- @import url(mw_basic.css);
3
- @import url(mw_cat.css);
 
 
 
css/mw_grey.css DELETED
@@ -1,4 +0,0 @@
1
- @import url(colors-grey.css);
2
- @import url(mw_basic.css);
3
- @import url(mw_admin.css);
4
- @import url(mw_cat.css);
 
 
 
 
css/mw_save_50px.css DELETED
@@ -1,119 +0,0 @@
1
- /**
2
- * @author design by Kaspars Dambis & Frank Bueltge
3
- * @author-url http://konstruktors.com/blog/ & http://bueltge.de/
4
- * @return saved 50 pixels of vertical space
5
- * @link http://konstruktors.com/blog/wordpress/1077-tweaking-wordpress-admin-header-design/#wp-design-tweak
6
- */
7
- #wphead h1 a {
8
- background:#186F00;
9
- border-color:#030;
10
- }
11
- #wphead {
12
- height:0; background:none;
13
- float:right;
14
- }
15
- #wphead img {
16
- display:none;
17
- }
18
- #wphead h1 {
19
- font-family:"Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif;
20
- font-size:11px;
21
- line-height:15px;
22
- float:left;
23
- margin:0 0 -3em 0;
24
- padding:1.2em 1.75em 0 0;
25
- position:relative;
26
- overflow:visible;
27
- font-size-adjust:none;
28
- border-right:1px solid #ddd;
29
- }
30
- #wphead h1 a {
31
- color:#fff;
32
- display:block;
33
- float:left;
34
- -moz-border-radius:1em;
35
- -webkit-border-radius:1em;
36
- padding:3px 1em 4px;
37
- border-width:1px;
38
- border-style:solid;
39
- font-weight:bold;
40
- }
41
- #wphead h1 a:hover {
42
- background:#333;
43
- border-color:#000;
44
- color:#fff;
45
- text-decoration:none;
46
- }
47
- #wphead h1 span {
48
- display:none;
49
- }
50
- #wphead-info {
51
- float:right;
52
- margin:0.15em 1.25em -10em 0.5em;
53
- position:relative;
54
- }
55
-
56
- #icon-index {
57
- margin-top:0.9em;
58
- }
59
- #user_info {
60
- font-size:0.88em;
61
- }
62
-
63
- #user_info a:link {
64
- color:#666;
65
- }
66
-
67
- #screen-meta {
68
- margin:0;
69
- float:right;
70
- display:block;
71
- margin-right:50em;
72
- -moz-border-radius:1em;
73
- -webkit-border-radius:1em;
74
- }
75
-
76
- #screen-meta a.show-settings {
77
- background-image: none !important;
78
- }
79
-
80
- #screen-options-link-wrap {
81
- -moz-border-radius:1em 0 0 1em;
82
- -webkit-border-radius:1em;
83
- margin: 1em 1px 0 0;
84
- }
85
-
86
- #contextual-help-link-wrap {
87
- -moz-border-radius:0 1em 1em 0;
88
- -webkit-border-radius:1em;
89
- margin: 1em 0 0;
90
- }
91
-
92
- #wpbody ul.folded {
93
- margin:0;
94
- padding:0.75em
95
- 1em;
96
- }
97
-
98
- #themeselector {
99
- position:relative;
100
- bottom:-2em;
101
- right:210px;
102
- }
103
-
104
- #adminmenu {
105
- margin-top:1em;
106
- }
107
-
108
- p.search-box {
109
- margin:0.5em 0 -0.5em 0;
110
- }
111
-
112
- .wrap h2 {
113
- font-style:normal;
114
- font-size:1.75em;
115
- padding-top:0.5em;
116
- }
117
- .wrap h2.long-header {
118
- width:40%;
119
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
css/mw_wp23.css DELETED
@@ -1,4 +0,0 @@
1
- @import url(colors-wp23.css);
2
- @import url(mw_basic.css);
3
- @import url(mw_admin.css);
4
- @import url(mw_cat.css);
 
 
 
 
inc-options/backend_options.php CHANGED
@@ -76,16 +76,6 @@ if ( ! function_exists( 'add_action' ) ) {
76
  </select> <?php _e('The Header-area can hide, include all links and details.', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
77
  </td>
78
  </tr>
79
- <tr valign="top">
80
- <td><?php _e('WriteScroll', FB_ADMINIMIZE_TEXTDOMAIN ); ?></td>
81
- <td>
82
- <?php $_mw_adminimize_writescroll = _mw_adminimize_get_option_value('_mw_adminimize_writescroll'); ?>
83
- <select name="_mw_adminimize_writescroll">
84
- <option value="0"<?php if ($_mw_adminimize_writescroll == '0') { echo ' selected="selected"'; } ?>><?php _e('Default', FB_ADMINIMIZE_TEXTDOMAIN ); ?></option>
85
- <option value="1"<?php if ($_mw_adminimize_writescroll == '1') { echo ' selected="selected"'; } ?>><?php _e('Activate', FB_ADMINIMIZE_TEXTDOMAIN ); ?></option>
86
- </select> <?php _e('With the WriteScroll option active, these pages will automatically scroll to an optimal position for editing, when you visit Write Post or Write Page.', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
87
- </td>
88
- </tr>
89
  <tr valign="top">
90
  <td><?php _e('Timestamp', FB_ADMINIMIZE_TEXTDOMAIN ); ?></td>
91
  <td>
76
  </select> <?php _e('The Header-area can hide, include all links and details.', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
77
  </td>
78
  </tr>
 
 
 
 
 
 
 
 
 
 
79
  <tr valign="top">
80
  <td><?php _e('Timestamp', FB_ADMINIMIZE_TEXTDOMAIN ); ?></td>
81
  <td>
inc-options/menu_options.php CHANGED
File without changes
inc-options/settings_notice.php CHANGED
@@ -14,7 +14,7 @@ add_action( 'load-settings_page_adminimize/adminimize', '_mw_adminimize_add_sett
14
 
15
  function _mw_adminimize_add_settings_error() {
16
 
17
- $settings_hint_message = '<span style="font-size: 30px;">&#x261D;</span>' . __( 'Attention: The settings page ignores this settings and view all areas!', FB_ADMINIMIZE_TEXTDOMAIN );
18
 
19
  add_settings_error(
20
  '_mw_settings_hint_message',
14
 
15
  function _mw_adminimize_add_settings_error() {
16
 
17
+ $settings_hint_message = '<span style="font-size: 35px; float: left; margin: 10px 3px 0 0;">&#x261D;</span>' . __( 'Please note: The Adminimize settings page ignores the Menu Options below and displays the menu with all entries.<br /><span style="font-weight: 300;">To view your changes to the menu you need to navigate away from the Adminimize settings page.</span>', FB_ADMINIMIZE_TEXTDOMAIN );
18
 
19
  add_settings_error(
20
  '_mw_settings_hint_message',
inc-options/write_cp_options.php CHANGED
@@ -216,7 +216,7 @@ foreach ( get_post_types( $args ) as $post_type ) {
216
  <textarea name="_mw_adminimize_own_options_<?php echo $post_type; ?>"
217
  cols="60" rows="3"
218
  id="_mw_adminimize_own_options_<?php echo $post_type; ?>"
219
- style="width: 95%;" ><?php echo _mw_adminimize_get_option_value('_mw_adminimize_own_' . $post_type . '_options'); ?></textarea>
220
  <br />
221
  <?php _e('Possible nomination for ID or class. Separate multiple nominations through a carriage return.', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
222
  </td>
@@ -224,8 +224,7 @@ foreach ( get_post_types( $args ) as $post_type ) {
224
  <textarea class="code" name="_mw_adminimize_own_values_<?php echo $post_type; ?>"
225
  cols="60" rows="3"
226
  id="_mw_adminimize_own_values_<?php echo $post_type; ?>"
227
- style="width: 95%;" >
228
- <?php echo _mw_adminimize_get_option_value('_mw_adminimize_own_' . $post_type . '_values'); ?></textarea>
229
  <br />
230
  <?php _e('Possible IDs or classes. Separate multiple values through a carriage return.', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
231
  </td>
216
  <textarea name="_mw_adminimize_own_options_<?php echo $post_type; ?>"
217
  cols="60" rows="3"
218
  id="_mw_adminimize_own_options_<?php echo $post_type; ?>"
219
+ style="width: 95%;" ><?php echo _mw_adminimize_get_option_value('_mw_adminimize_own_options_' . $post_type ); ?></textarea>
220
  <br />
221
  <?php _e('Possible nomination for ID or class. Separate multiple nominations through a carriage return.', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
222
  </td>
224
  <textarea class="code" name="_mw_adminimize_own_values_<?php echo $post_type; ?>"
225
  cols="60" rows="3"
226
  id="_mw_adminimize_own_values_<?php echo $post_type; ?>"
227
+ style="width: 95%;" ><?php echo _mw_adminimize_get_option_value('_mw_adminimize_own_values_' . $post_type ); ?></textarea>
 
228
  <br />
229
  <?php _e('Possible IDs or classes. Separate multiple values through a carriage return.', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
230
  </td>
inc-options/write_page_options.php CHANGED
@@ -56,16 +56,6 @@ if ( ! function_exists( 'add_action' ) ) {
56
 
57
  if ( function_exists('current_theme_supports') && current_theme_supports( 'post-thumbnails', 'page' ) )
58
  array_push($metaboxes_page, '#postimagediv' );
59
- if (class_exists('SimpleTagsAdmin'))
60
- array_push($metaboxes_page, '#suggestedtags');
61
- if (class_exists('HTMLSpecialCharactersHelper'))
62
- array_push($metaboxes_page, '#htmlspecialchars');
63
- if (class_exists('All_in_One_SEO_Pack'))
64
- array_push($metaboxes_page, '#postaiosp, #aiosp');
65
- if (function_exists('tdomf_edit_post_panel_admin_head'))
66
- array_push($metaboxes_page, '#tdomf');
67
- if (function_exists('post_notification_form'))
68
- array_push($metaboxes_page, '#post_notification');
69
 
70
  // quick edit areas, id and class
71
  $quickedit_page_areas = array(
@@ -108,16 +98,6 @@ if ( ! function_exists( 'add_action' ) ) {
108
 
109
  if ( function_exists('current_theme_supports') && current_theme_supports( 'post-thumbnails', 'page' ) )
110
  array_push($metaboxes_names_page, __('Page Image', FB_ADMINIMIZE_TEXTDOMAIN) );
111
- if (class_exists('SimpleTagsAdmin'))
112
- array_push($metaboxes_names_page, __('Suggested tags from', FB_ADMINIMIZE_TEXTDOMAIN ));
113
- if (class_exists('HTMLSpecialCharactersHelper'))
114
- array_push($metaboxes_names_page, __('HTML Special Characters'));
115
- if (class_exists('All_in_One_SEO_Pack'))
116
- array_push($metaboxes_names_page, 'All in One SEO Pack');
117
- if (function_exists('tdomf_edit_post_panel_admin_head'))
118
- array_push($metaboxes_names_page, 'TDOMF');
119
- if (function_exists('post_notification_form'))
120
- array_push($metaboxes_names_page, 'Post Notification');
121
 
122
  // quick edit names
123
  $quickedit_page_names = array(
56
 
57
  if ( function_exists('current_theme_supports') && current_theme_supports( 'post-thumbnails', 'page' ) )
58
  array_push($metaboxes_page, '#postimagediv' );
 
 
 
 
 
 
 
 
 
 
59
 
60
  // quick edit areas, id and class
61
  $quickedit_page_areas = array(
98
 
99
  if ( function_exists('current_theme_supports') && current_theme_supports( 'post-thumbnails', 'page' ) )
100
  array_push($metaboxes_names_page, __('Page Image', FB_ADMINIMIZE_TEXTDOMAIN) );
 
 
 
 
 
 
 
 
 
 
101
 
102
  // quick edit names
103
  $quickedit_page_names = array(
inc-options/write_post_options.php CHANGED
@@ -59,20 +59,6 @@ if ( ! function_exists( 'add_action' ) ) {
59
 
60
  if ( function_exists('current_theme_supports') && current_theme_supports( 'post-thumbnails', 'post' ) )
61
  array_push($metaboxes, '#postimagediv');
62
- if (class_exists('SimpleTagsAdmin'))
63
- array_push($metaboxes, '#suggestedtags');
64
- if (function_exists('tc_post'))
65
- array_push($metaboxes, '#textcontroldiv');
66
- if (class_exists('HTMLSpecialCharactersHelper'))
67
- array_push($metaboxes, '#htmlspecialchars');
68
- if (class_exists('All_in_One_SEO_Pack'))
69
- array_push($metaboxes, '#postaiosp, #aiosp');
70
- if (function_exists('tdomf_edit_post_panel_admin_head'))
71
- array_push($metaboxes, '#tdomf');
72
- if (function_exists('post_notification_form'))
73
- array_push($metaboxes, '#post_notification');
74
- if (function_exists('sticky_add_meta_box'))
75
- array_push($metaboxes, '#poststickystatusdiv');
76
 
77
  // quick edit areas, id and class
78
  $quickedit_areas = array(
@@ -120,20 +106,6 @@ if ( ! function_exists( 'add_action' ) ) {
120
 
121
  if ( function_exists('current_theme_supports') && current_theme_supports( 'post-thumbnails', 'post' ) )
122
  array_push($metaboxes_names, __('Post Thumbnail', FB_ADMINIMIZE_TEXTDOMAIN) );
123
- if (class_exists('SimpleTagsAdmin'))
124
- array_push($metaboxes_names, 'Suggested tags from');
125
- if (function_exists('tc_post'))
126
- array_push($metaboxes_names, 'Text Control');
127
- if (class_exists('HTMLSpecialCharactersHelper'))
128
- array_push($metaboxes_names, 'HTML Special Characters');
129
- if (class_exists('All_in_One_SEO_Pack'))
130
- array_push($metaboxes_names, 'All in One SEO Pack');
131
- if (function_exists('tdomf_edit_post_panel_admin_head'))
132
- array_push($metaboxes_names, 'TDOMF');
133
- if (function_exists('post_notification_form'))
134
- array_push($metaboxes_names, 'Post Notification');
135
- if (function_exists('sticky_add_meta_box'))
136
- array_push($metaboxes_names, 'Post Sticky Status');
137
 
138
  // quick edit names
139
  $quickedit_names = array(
59
 
60
  if ( function_exists('current_theme_supports') && current_theme_supports( 'post-thumbnails', 'post' ) )
61
  array_push($metaboxes, '#postimagediv');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
62
 
63
  // quick edit areas, id and class
64
  $quickedit_areas = array(
106
 
107
  if ( function_exists('current_theme_supports') && current_theme_supports( 'post-thumbnails', 'post' ) )
108
  array_push($metaboxes_names, __('Post Thumbnail', FB_ADMINIMIZE_TEXTDOMAIN) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
109
 
110
  // quick edit names
111
  $quickedit_names = array(
inc-setup/admin-footer.php ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @package Adminimize
4
+ * @subpackage Add Hint in Admin Footer
5
+ * @author Frank Bültge
6
+ */
7
+ if ( ! function_exists( 'add_action' ) ) {
8
+ echo "Hi there! I'm just a part of plugin, not much I can do when called directly.";
9
+ exit;
10
+ }
11
+
12
+ // on init of WordPress
13
+ add_action( 'admin_init', '_mw_adminimize_init_admin_footer' );
14
+
15
+ function _mw_adminimize_init_admin_footer() {
16
+
17
+ if ( (int) _mw_adminimize_get_option_value( '_mw_adminimize_advice' ) === 1 )
18
+ add_action( 'in_admin_footer', '_mw_adminimize_add_admin_footer' );
19
+ }
20
+
21
+ /**
22
+ * Hint in wp-footer
23
+ */
24
+ function _mw_adminimize_add_admin_footer() {
25
+
26
+ echo stripslashes( _mw_adminimize_get_option_value( '_mw_adminimize_advice_txt' ) ) . '<br />';
27
+ }
js/writescroll.js DELETED
@@ -1,13 +0,0 @@
1
- /**
2
- * Automatically scroll Write pages to a good position
3
- * code by Dougal Campbell
4
- * http://dougal.gunters.org/blog/2008/06/03/writescroll
5
- */
6
- jQuery(function($) {
7
- // element to scroll
8
- var h = jQuery('html');
9
- // position to scroll to
10
- var wraptop = jQuery('div#wpbody').offset().top;
11
- var speed = 250; // ms
12
- h.animate({scrollTop: wraptop}, speed);
13
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/adminimize-de_DE.mo CHANGED
Binary file
languages/adminimize-de_DE.po CHANGED
@@ -59,177 +59,105 @@ msgstr "Backend-Theme wurde zugewiesen!"
59
  msgid "Load user data to themes was successful."
60
  msgstr "Das Laden der User-Daten zum Theme war erfolgreich."
61
 
62
- #: adminimize.php:521
63
  #: inc-options/links_options.php:52
64
  #: inc-options/write_cp_options.php:99
65
- #: inc-options/write_post_options.php:101
66
  #@ default
67
  #@ adminimize
68
  msgid "Categories"
69
  msgstr "Kategorien"
70
 
71
- #: adminimize.php:527
72
- #: adminimize.php:538
73
  #@ default
74
  msgid "+ Add New Category"
75
  msgstr "+ Add New Category"
76
 
77
- #: adminimize.php:529
78
- #: adminimize.php:540
79
  #@ default
80
  msgid "New category name"
81
  msgstr "New category name"
82
 
83
- #: adminimize.php:530
84
- #: adminimize.php:542
85
  #@ default
86
  msgid "Parent category"
87
  msgstr "Parent category"
88
 
89
- #: adminimize.php:531
90
- #: adminimize.php:543
91
  #@ default
92
  msgid "Add"
93
  msgstr "Add"
94
 
95
- #: adminimize.php:540
96
  #: inc-options/write_cp_options.php:100
97
- #: inc-options/write_post_options.php:102
98
  #@ default
99
  #@ adminimize
100
  msgid "Add New Category"
101
  msgstr "Add New Category"
102
 
103
- #: adminimize.php:564
104
- #: adminimize.php:565
105
  #: inc-options/write_cp_options.php:97
106
  #: inc-options/write_cp_options.php:135
107
- #: inc-options/write_post_options.php:99
108
- #: inc-options/write_post_options.php:149
109
- #@ default
110
  #@ adminimize
 
111
  msgid "Tags"
112
  msgstr "Tags"
113
 
114
- #: adminimize.php:607
115
- #: adminimize.php:624
116
- #: adminimize.php:638
117
- #: adminimize.php:652
118
- #@ default
119
- msgid "Blue"
120
- msgstr "Blau"
121
-
122
- #: adminimize.php:614
123
- #: adminimize.php:631
124
- #: adminimize.php:645
125
- #: adminimize.php:659
126
- #@ default
127
- msgid "Gray"
128
- msgstr "Grau"
129
-
130
- #: adminimize.php:667
131
- #: adminimize.php:709
132
- #: adminimize.php:732
133
- #@ default
134
- msgid "Classic"
135
- msgstr "Classic"
136
-
137
- #: adminimize.php:674
138
- #: adminimize.php:716
139
- #: adminimize.php:739
140
- #@ default
141
- msgid "Fresh"
142
- msgstr "Fresh"
143
-
144
- #: adminimize.php:681
145
- #@ default
146
- msgid "WordPress 2.3"
147
- msgstr "WordPress 2.3"
148
-
149
- #: adminimize.php:688
150
- #@ default
151
- msgid "Maybe i'm colorblind"
152
- msgstr "Maybe i'm colorblind"
153
-
154
- #: adminimize.php:695
155
- #@ default
156
- msgid "Grey"
157
- msgstr "Grey"
158
-
159
- #: adminimize.php:820
160
- #: adminimize.php:823
161
  #@ default
162
  msgid "Dashboard"
163
  msgstr "Dashboard"
164
 
165
- #: adminimize.php:891
166
- #: adminimize.php:893
167
- #: adminimize.php:914
168
- #: adminimize.php:916
169
- #: adminimize.php:1313
 
 
 
170
  #@ default
171
  msgid "Log Out"
172
  msgstr "Log Out"
173
 
174
- #: adminimize.php:1335
175
- #@ default
176
- msgid "Visit plugin homepage"
177
- msgstr "Visit plugin homepage"
178
-
179
- #: adminimize.php:1338
180
- #@ default
181
- msgid "plugin"
182
- msgstr "plugin"
183
-
184
- #: adminimize.php:1338
185
  #: inc-options/minimenu.php:85
186
- #@ default
187
  #@ adminimize
188
  msgid "Version"
189
  msgstr "Version"
190
 
191
- #: adminimize.php:1338
192
- #@ adminimize
193
- msgid "History"
194
- msgstr "Historie"
195
-
196
- #: adminimize.php:1338
197
  #: inc-options/write_cp_options.php:129
198
- #: inc-options/write_page_options.php:128
199
- #: inc-options/write_post_options.php:143
200
  #@ default
201
  msgid "Author"
202
  msgstr "Author"
203
 
204
- #: adminimize.php:1342
205
- #@ adminimize
206
- msgid "plugin activate"
207
- msgstr "plugin activate"
208
-
209
- #: adminimize.php:1363
210
  #@ default
211
  msgid "Settings"
212
  msgstr "Settings"
213
 
214
- #: adminimize.php:1379
215
- #@ adminimize
216
- msgid "<a href=\"http://wordpress.org/extend/plugins/adminimize/\">Documentation</a>"
217
- msgstr "<a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">Dokumentation</a> (<a href=\"http://wordpress.org/extend/plugins/adminimize/\">en</a>)"
218
-
219
  #. translators: plugin header field 'Name'
220
  #: adminimize.php:0
221
- #: adminimize.php:1396
222
  #: inc-options/minimenu.php:14
223
  #@ adminimize
224
  msgid "Adminimize"
225
  msgstr "Adminimize"
226
 
227
- #: adminimize.php:1395
228
  #@ adminimize
229
  msgid "Adminimize Options"
230
  msgstr "Adminimize Einstellungen"
231
 
232
- #: adminimize.php:1423
233
  #@ default
234
  msgid "Cheatin&#8217; uh?"
235
  msgstr "Cheatin&#8217; uh?"
@@ -258,165 +186,153 @@ msgstr "Zum Umschalten klicken"
258
  msgid "Backend Options"
259
  msgstr "Einstellungen Backend"
260
 
261
- #: inc-options/backend_options.php:36
262
  #@ adminimize
263
  msgid "User-Info"
264
  msgstr "User-Info"
265
 
266
- #: inc-options/backend_options.php:29
267
- #: inc-options/backend_options.php:40
268
- #: inc-options/backend_options.php:53
269
- #: inc-options/backend_options.php:63
270
- #: inc-options/backend_options.php:73
271
- #: inc-options/backend_options.php:83
272
- #: inc-options/backend_options.php:93
273
- #: inc-options/backend_options.php:103
274
- #: inc-options/backend_options.php:113
275
- #: inc-options/backend_options.php:123
276
- #: inc-options/backend_options.php:133
277
- #: inc-options/backend_options.php:162
278
  #@ adminimize
279
  msgid "Default"
280
  msgstr "Standard"
281
 
282
- #: inc-options/backend_options.php:41
283
- #: inc-options/backend_options.php:64
284
- #: inc-options/backend_options.php:74
285
  #@ adminimize
286
  msgid "Hide"
287
  msgstr "Ausblenden"
288
 
289
- #: inc-options/backend_options.php:42
290
  #@ adminimize
291
  msgid "Only logout"
292
  msgstr "nur Abmelden"
293
 
294
- #: inc-options/backend_options.php:43
295
  #@ adminimize
296
  msgid "User &amp; Logout"
297
  msgstr "User &amp; Abmelden"
298
 
299
- #: inc-options/backend_options.php:44
300
  #@ adminimize
301
  msgid "The &quot;User-Info-area&quot; is on the top right side of the backend. You can hide or reduced show."
302
  msgstr "Der &quot;User-Info-Bereich&quot; ist im oberen rechten Bereich zu finden und kann ausgeblendet oder reduziert dargestellt werden."
303
 
304
- #: inc-options/backend_options.php:49
305
  #@ adminimize
306
  msgid "Change User-Info, redirect to"
307
  msgstr "User Info ge&auml;ndert, Weiterleitung nach"
308
 
309
- #: inc-options/backend_options.php:54
310
  #@ adminimize
311
  msgid "Frontpage of the Blog"
312
  msgstr "Startseite des Blog"
313
 
314
- #: inc-options/backend_options.php:55
315
  #@ adminimize
316
  msgid "When the &quot;User-Info-area&quot; change it, then it is possible to change the redirect."
317
  msgstr "Wenn der &quot;User-Info-Bereich&quot; ge&auml;ndert wird, dann kann die die Weiterleitung nach einem Logout ge&auml;ndert werden."
318
 
319
- #: inc-options/backend_options.php:59
320
  #@ adminimize
321
  msgid "Footer"
322
  msgstr "Footer"
323
 
324
- #: inc-options/backend_options.php:65
325
  #@ adminimize
326
  msgid "The Footer-area can hide, include all links and details."
327
  msgstr "Der Footer-Bereich kann deaktiviert werden, inklusive aller Links und Hinweise."
328
 
329
- #: inc-options/backend_options.php:79
330
- #@ adminimize
331
- msgid "WriteScroll"
332
- msgstr "WriteScroll"
333
-
334
- #: inc-options/backend_options.php:30
335
- #: inc-options/backend_options.php:84
336
- #: inc-options/backend_options.php:94
337
- #: inc-options/backend_options.php:104
338
- #: inc-options/backend_options.php:114
339
- #: inc-options/backend_options.php:124
340
- #: inc-options/backend_options.php:134
341
  #@ adminimize
342
  msgid "Activate"
343
  msgstr "Aktiv"
344
 
345
- #: inc-options/backend_options.php:85
346
- #@ adminimize
347
- 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."
348
- msgstr "Automatisches Scrollen zum Editor beim Aufruf der Seite Schreiben in Beitr&auml;ge und Seite."
349
-
350
- #: inc-options/backend_options.php:89
351
  #@ adminimize
352
  msgid "Timestamp"
353
  msgstr "Timestamp"
354
 
355
- #: inc-options/backend_options.php:95
356
  #@ adminimize
357
  msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
358
  msgstr "Das Feld zum &Auml;ndern des Ver&ouml;ffentlichungsdatum ist immer ge&ouml;ffnet."
359
 
360
- #: inc-options/backend_options.php:99
361
  #@ adminimize
362
  msgid "Thickbox FullScreen"
363
  msgstr "Thickbox FullScreen"
364
 
365
- #: inc-options/backend_options.php:109
366
  #@ adminimize
367
  msgid "Flashuploader"
368
  msgstr "Flashuploader"
369
 
370
- #: inc-options/backend_options.php:115
371
  #@ adminimize
372
  msgid "Disable the flashuploader and users use only the standard uploader."
373
  msgstr "Deaktiviere den Flashuploader und Nutzer können nur den Standard-Uploader erreichen."
374
 
375
- #: inc-options/backend_options.php:129
376
  #@ adminimize
377
  msgid "Advice in Footer"
378
  msgstr "Hinweis im Footer"
379
 
380
- #: inc-options/backend_options.php:163
381
  #@ adminimize
382
  msgid "Manage Posts"
383
  msgstr "Verwalten Beitr&auml;ge"
384
 
385
- #: inc-options/backend_options.php:164
386
  #@ adminimize
387
  msgid "Manage Pages"
388
  msgstr "Verwalten Seiten"
389
 
390
- #: inc-options/backend_options.php:165
391
  #@ adminimize
392
  msgid "Write Post"
393
  msgstr "Schreiben Beitrag"
394
 
395
- #: inc-options/backend_options.php:166
396
  #@ adminimize
397
  msgid "Write Page"
398
  msgstr "Schreiben Seite"
399
 
400
- #: inc-options/backend_options.php:167
401
- #: inc-options/write_post_options.php:106
402
  #@ adminimize
403
  msgid "Comments"
404
  msgstr "Kommentare"
405
 
406
- #: inc-options/backend_options.php:168
407
  #@ adminimize
408
  msgid "other Page"
409
  msgstr "andere Seite"
410
 
411
- #: inc-options/backend_options.php:180
412
  #: inc-options/dashboard_options.php:122
413
  #: inc-options/global_options.php:122
414
  #: inc-options/links_options.php:126
415
- #: inc-options/menu_options.php:151
416
  #: inc-options/wp_nav_menu_options.php:147
417
- #: inc-options/write_cp_options.php:240
418
- #: inc-options/write_page_options.php:207
419
- #: inc-options/write_post_options.php:225
420
  #@ adminimize
421
  msgid "Update Options"
422
  msgstr "Einstellungen aktualisieren"
@@ -436,8 +352,8 @@ msgstr "Globale Einstellungen"
436
  #: inc-options/wp_nav_menu_options.php:22
437
  #: inc-options/wp_nav_menu_options.php:122
438
  #: inc-options/write_cp_options.php:204
439
- #: inc-options/write_page_options.php:182
440
- #: inc-options/write_post_options.php:200
441
  #@ adminimize
442
  msgid "Option"
443
  msgstr "Einstellung"
@@ -467,8 +383,8 @@ msgstr "Screen-Meta"
467
  #: inc-options/global_options.php:50
468
  #: inc-options/wp_nav_menu_options.php:49
469
  #: inc-options/write_cp_options.php:95
470
- #: inc-options/write_page_options.php:87
471
- #: inc-options/write_post_options.php:96
472
  #@ adminimize
473
  #@ default
474
  msgid "Screen Options"
@@ -495,8 +411,8 @@ msgstr "Deine eigenen Einstellungen"
495
  #: inc-options/links_options.php:100
496
  #: inc-options/wp_nav_menu_options.php:121
497
  #: inc-options/write_cp_options.php:202
498
- #: inc-options/write_page_options.php:181
499
- #: inc-options/write_post_options.php:199
500
  #@ adminimize
501
  msgid "ID or class"
502
  msgstr "ID oder Klasse"
@@ -506,8 +422,8 @@ msgstr "ID oder Klasse"
506
  #: inc-options/links_options.php:107
507
  #: inc-options/wp_nav_menu_options.php:128
508
  #: inc-options/write_cp_options.php:211
509
- #: inc-options/write_page_options.php:188
510
- #: inc-options/write_post_options.php:206
511
  #@ adminimize
512
  msgid "It is possible to add your own IDs or classes from elements and tags. You can find IDs and classes with the FireBug Add-on for Firefox. Assign a value and the associate name per line."
513
  msgstr "Es ist möglich, dass du eigene IDs und Klassen eines Elementes oder Tags hinzufügst. Du findest IDs und Klassen sehr einfach mit dem Firebug Add-on für den Firefox. Füge pro Zeile einen Wert und dazugehörigen Namen ein."
@@ -517,8 +433,8 @@ msgstr "Es ist möglich, dass du eigene IDs und Klassen eines Elementes oder Tag
517
  #: inc-options/links_options.php:113
518
  #: inc-options/wp_nav_menu_options.php:134
519
  #: inc-options/write_cp_options.php:221
520
- #: inc-options/write_page_options.php:194
521
- #: inc-options/write_post_options.php:212
522
  #@ adminimize
523
  msgid "Possible nomination for ID or class. Separate multiple nominations through a carriage return."
524
  msgstr "Mögliche Benennung der ID oder Klasse. Trenne Werte durch eine neue Zeile."
@@ -527,9 +443,9 @@ msgstr "Mögliche Benennung der ID oder Klasse. Trenne Werte durch eine neue Zei
527
  #: inc-options/global_options.php:114
528
  #: inc-options/links_options.php:118
529
  #: inc-options/wp_nav_menu_options.php:139
530
- #: inc-options/write_cp_options.php:230
531
- #: inc-options/write_page_options.php:199
532
- #: inc-options/write_post_options.php:217
533
  #@ adminimize
534
  msgid "Possible IDs or classes. Separate multiple values through a carriage return."
535
  msgstr "Mögliche IDs oder Klassen. Trenne Werte durch eine neue Zeile."
@@ -547,174 +463,164 @@ msgstr "Menu Einstellungen - Menu, <span style=\"font-weight: 400;\">Submenu</sp
547
 
548
  #: inc-options/wp_nav_menu_options.php:48
549
  #: inc-options/write_cp_options.php:94
550
- #: inc-options/write_page_options.php:86
551
- #: inc-options/write_post_options.php:95
552
  #@ adminimize
553
  #@ default
554
  msgid "Help"
555
  msgstr "Hilfe"
556
 
557
  #: inc-options/write_cp_options.php:96
558
- #: inc-options/write_page_options.php:89
559
- #: inc-options/write_post_options.php:98
560
  #@ adminimize
561
  msgid "Permalink"
562
  msgstr "Permalink"
563
 
564
- #: inc-options/write_post_options.php:103
565
  #@ adminimize
566
  msgid "Excerpt"
567
  msgstr "Auszug"
568
 
569
- #: inc-options/write_post_options.php:104
570
  #@ adminimize
571
  msgid "Trackbacks"
572
  msgstr "Trackbacks"
573
 
574
- #: inc-options/write_page_options.php:90
575
- #: inc-options/write_post_options.php:105
576
  #@ default
577
  msgid "Custom Fields"
578
  msgstr "Benutzerdefinierte Felder"
579
 
580
  #: inc-options/write_cp_options.php:101
581
- #: inc-options/write_post_options.php:107
582
  #@ adminimize
583
  msgid "Password Protect This Post"
584
  msgstr "Diesen Artikel durch ein Passwort sch&uuml;tzen"
585
 
586
- #: inc-options/write_post_options.php:108
587
  #@ default
588
  msgid "Post Author"
589
  msgstr "Autor"
590
 
591
- #: inc-options/write_post_options.php:109
592
  #@ default
593
  msgid "Post Revisions"
594
  msgstr "Post Revisions"
595
 
596
  #: inc-options/write_cp_options.php:102
597
- #: inc-options/write_post_options.php:110
598
  #@ adminimize
599
  msgid "Related, Shortcuts"
600
  msgstr "Siehe auch, Tastaturk&uuml;rzel"
601
 
602
  #: inc-options/write_cp_options.php:104
603
- #: inc-options/write_page_options.php:100
604
- #: inc-options/write_post_options.php:112
605
  #@ adminimize
606
  msgid "h2: Advanced Options"
607
  msgstr "h2: Erweiterte Einstellungen"
608
 
609
  #: inc-options/write_cp_options.php:105
610
- #: inc-options/write_page_options.php:101
611
- #: inc-options/write_post_options.php:113
612
  #@ adminimize
613
  msgid "Media Buttons (all)"
614
  msgstr "Media Buttons (alle)"
615
 
616
  #: inc-options/write_cp_options.php:106
617
- #: inc-options/write_page_options.php:102
618
- #: inc-options/write_post_options.php:114
619
  #@ adminimize
620
  msgid "Word count"
621
  msgstr "Word count"
622
 
623
  #: inc-options/write_cp_options.php:107
624
- #: inc-options/write_post_options.php:115
625
  #@ adminimize
626
  msgid "Post Slug"
627
  msgstr "Titelform"
628
 
629
  #: inc-options/links_options.php:56
630
  #: inc-options/write_cp_options.php:108
631
- #: inc-options/write_page_options.php:104
632
- #: inc-options/write_post_options.php:116
633
  #@ adminimize
634
  msgid "Publish Actions"
635
  msgstr "Publish Actions"
636
 
637
  #: inc-options/write_cp_options.php:109
638
- #: inc-options/write_page_options.php:105
639
- #: inc-options/write_post_options.php:117
640
  #@ default
641
  #@ adminimize
642
  msgid "Discussion"
643
  msgstr "Kommentare"
644
 
645
  #: inc-options/write_cp_options.php:120
646
- #: inc-options/write_post_options.php:122
647
  #@ adminimize
648
  msgid "Post Thumbnail"
649
  msgstr "Artikelbild"
650
 
651
- #: inc-options/write_page_options.php:112
652
- #@ adminimize
653
- msgid "Suggested tags from"
654
- msgstr "Suggested tags from"
655
-
656
- #: inc-options/write_page_options.php:114
657
- #@ default
658
- msgid "HTML Special Characters"
659
- msgstr "HTML Special Characters"
660
-
661
- #: inc-options/write_page_options.php:91
662
  #@ adminimize
663
  msgid "Comments &amp; Pings"
664
  msgstr "Kommentare &amp; Pings"
665
 
666
- #: inc-options/write_page_options.php:92
667
  #@ adminimize
668
  msgid "Password Protect This Page"
669
  msgstr "Diese Seite mit einem Passwort versehen"
670
 
671
- #: inc-options/write_page_options.php:93
672
  #@ adminimize
673
  msgid "Attributes"
674
  msgstr "Attribute"
675
 
676
- #: inc-options/write_page_options.php:94
677
  #@ adminimize
678
  msgid "Page Template"
679
  msgstr "Seiten Template"
680
 
681
- #: inc-options/write_page_options.php:95
682
  #@ adminimize
683
  msgid "Page Order"
684
  msgstr "Reihenfolge"
685
 
686
- #: inc-options/write_page_options.php:96
687
  #@ default
688
  msgid "Page Author"
689
  msgstr "Seitenautor"
690
 
691
- #: inc-options/write_page_options.php:97
692
  #@ default
693
  msgid "Page Revisions"
694
  msgstr "Page Revisions"
695
 
696
- #: inc-options/write_page_options.php:98
697
  #@ adminimize
698
  msgid "Related"
699
  msgstr "Siehe auch"
700
 
701
- #: inc-options/write_page_options.php:103
702
  #@ adminimize
703
  msgid "Page Slug"
704
  msgstr "Titelform"
705
 
706
- #: inc-options/write_page_options.php:110
707
  #@ adminimize
708
  msgid "Page Image"
709
  msgstr "Artikelbild"
710
 
711
  #: inc-options/menu_options.php:67
712
- #: inc-options/menu_options.php:115
713
  #@ adminimize
714
  msgid "After activate the check box it heavy attitudes will change."
715
  msgstr "Wenn die Checkbox aktiv ist, dann wird das Ändern von Einstellungen erschwert."
716
 
717
- #: inc-options/menu_options.php:98
718
  #@ default
719
  msgid "Profile"
720
  msgstr "Profile"
@@ -726,7 +632,7 @@ msgstr "Profile"
726
  msgid "Write options - Post"
727
  msgstr "Schreiben Einstellungen - Beitr&auml;ge"
728
 
729
- #: inc-options/write_post_options.php:199
730
  #@ adminimize
731
  msgid "Your own post options"
732
  msgstr "Deine eigenen Beitrags-Einstellungen"
@@ -738,7 +644,7 @@ msgstr "Deine eigenen Beitrags-Einstellungen"
738
  msgid "Write options - Page"
739
  msgstr "Schreiben Einstellungen - Seiten"
740
 
741
- #: inc-options/write_page_options.php:181
742
  #@ adminimize
743
  msgid "Your own page options"
744
  msgstr "Deine eigenen Seiten-Einstellungen"
@@ -899,19 +805,19 @@ msgstr "Hochladen der Datei und importieren &raquo;"
899
  msgid "MiniMenu"
900
  msgstr "MiniMenu"
901
 
902
- #: inc-options/backend_options.php:182
903
  #: inc-options/dashboard_options.php:127
904
  #: inc-options/deinstall_options.php:27
905
  #: inc-options/global_options.php:124
906
  #: inc-options/im_export_options.php:41
907
  #: inc-options/links_options.php:129
908
- #: inc-options/menu_options.php:153
909
  #: inc-options/minimenu.php:99
910
  #: inc-options/theme_options.php:105
911
  #: inc-options/wp_nav_menu_options.php:149
912
- #: inc-options/write_cp_options.php:245
913
- #: inc-options/write_page_options.php:209
914
- #: inc-options/write_post_options.php:227
915
  #@ adminimize
916
  msgid "scroll to top"
917
  msgstr "Nach oben"
@@ -926,35 +832,35 @@ msgstr "Du kannst deine Einstellungen in einer .seq Datei speichern."
926
  msgid "Choose a Adminimize (<em>.seq</em>) file to upload, then click <em>Upload file and import</em>."
927
  msgstr "Wähle eine Adminimize (<em>.seq</em>) Datei zum hoch laden und dann klick <em>Hochladen der Datei und importieren</em>"
928
 
929
- #: inc-options/backend_options.php:119
930
  #@ adminimize
931
  msgid "Category Height"
932
  msgstr "Kategorie-Höhe"
933
 
934
- #: inc-options/backend_options.php:125
935
  #@ adminimize
936
  msgid "View the Meta Box with Categories in the full height, no scrollbar or whitespace."
937
  msgstr "Stellt in die Meta Box der Kategorien in voller Höhe dar, kein Scrollbar und kein Leerraum."
938
 
939
- #: inc-options/backend_options.php:136
940
  #@ adminimize
941
  msgid "In the Footer you can display an advice for changing the Default-design, (x)HTML is possible."
942
  msgstr "Im Footer kann ein Hinweis auf die aktive Ver&auml;nderung des Standard-Layout gesetzt werden, (x)HTML erlaubt."
943
 
944
- #: inc-options/backend_options.php:158
945
  #@ adminimize
946
  msgid "Dashboard deactivate, redirect to"
947
  msgstr "Dashboard inaktiv, Weiterleitung nach"
948
 
949
  #: inc-options/write_cp_options.php:110
950
- #: inc-options/write_page_options.php:106
951
- #: inc-options/write_post_options.php:118
952
  #@ default
953
  #@ adminimize
954
  msgid "HTML Editor Button"
955
  msgstr "HTML Editor Button"
956
 
957
- #: inc-options/backend_options.php:105
958
  #@ adminimize
959
  msgid "All Thickbox-function use the full area of the browser. Thickbox is for example in upload media-files."
960
  msgstr "Alle Thickbox-Funktion verwenden den vollständigen Bereich des Browsers. Thickbox ist beispielsweise in der Medien-Upload-Funktion."
@@ -983,33 +889,33 @@ msgstr ""
983
  msgid "http://bueltge.de/"
984
  msgstr ""
985
 
986
- #: inc-options/backend_options.php:69
987
  #@ adminimize
988
  msgid "Header"
989
  msgstr "Header"
990
 
991
- #: inc-options/backend_options.php:75
992
  #@ adminimize
993
  msgid "The Header-area can hide, include all links and details."
994
  msgstr "Der header-Bereich kann ausgeblendet werden, inkl. aller Links und Details."
995
 
996
- #: inc-options/write_page_options.php:88
997
- #: inc-options/write_post_options.php:97
998
  #@ adminimize
999
  msgid "Title"
1000
  msgstr "Title"
1001
 
1002
- #: inc-options/backend_options.php:25
1003
  #@ adminimize
1004
  msgid "Exclude Super Admin"
1005
  msgstr "Ausschließen des Super Admin"
1006
 
1007
- #: inc-options/backend_options.php:31
1008
  #@ adminimize
1009
  msgid "Exclude the Super Admin on a WP Multisite Install from all limitations of this plugin."
1010
  msgstr "Schließe den Super Admin in einer WordPress Multisite Installation von allen Restriktionen dieses Plugins aus."
1011
 
1012
- #: inc-options/backend_options.php:171
1013
  #@ adminimize
1014
  msgid "You have deactivated the Dashboard, please select a page for redirection or define custom url, include http://?"
1015
  msgstr "Du hast das Dashboard deaktiviert; bitte wähle eine Seite für die Weiterleitung oder definiere eine eigene URL, inklusive http://"
@@ -1047,21 +953,21 @@ msgid "Add menu"
1047
  msgstr "Menu hinzufügen"
1048
 
1049
  #: inc-options/write_cp_options.php:98
1050
- #: inc-options/write_post_options.php:100
1051
  #@ adminimize
1052
  msgid "Format"
1053
  msgstr "Format"
1054
 
1055
  #: inc-options/write_cp_options.php:103
1056
- #: inc-options/write_page_options.php:99
1057
- #: inc-options/write_post_options.php:111
1058
  #@ adminimize
1059
  msgid "Messages"
1060
  msgstr "Mitteilungen"
1061
 
1062
  #: inc-options/write_cp_options.php:126
1063
- #: inc-options/write_page_options.php:124
1064
- #: inc-options/write_post_options.php:140
1065
  #@ adminimize
1066
  msgid "Quick Edit Link"
1067
  msgstr "QuickEdit Link"
@@ -1070,87 +976,87 @@ msgstr "QuickEdit Link"
1070
  #: inc-options/write_cp_options.php:131
1071
  #: inc-options/write_cp_options.php:134
1072
  #: inc-options/write_cp_options.php:137
1073
- #: inc-options/write_page_options.php:125
1074
- #: inc-options/write_page_options.php:130
1075
- #: inc-options/write_page_options.php:133
1076
- #: inc-options/write_post_options.php:141
1077
- #: inc-options/write_post_options.php:145
1078
- #: inc-options/write_post_options.php:148
1079
- #: inc-options/write_post_options.php:151
1080
  #@ adminimize
1081
  msgid "QE"
1082
  msgstr "QE"
1083
 
1084
  #: inc-options/write_cp_options.php:127
1085
- #: inc-options/write_page_options.php:125
1086
- #: inc-options/write_post_options.php:141
1087
  #@ adminimize
1088
  msgid "Inline Edit Left"
1089
  msgstr "Inline Edit Links"
1090
 
1091
  #: inc-options/write_cp_options.php:128
1092
- #: inc-options/write_page_options.php:126
1093
- #: inc-options/write_post_options.php:142
1094
  #@ adminimize
1095
  msgid "All Labels"
1096
  msgstr "Alle labels"
1097
 
1098
- #: inc-options/write_page_options.php:127
1099
  #@ adminimize
1100
  msgid "Date"
1101
  msgstr "Datum"
1102
 
1103
  #: inc-options/write_cp_options.php:130
1104
- #: inc-options/write_page_options.php:129
1105
- #: inc-options/write_post_options.php:144
1106
  #@ adminimize
1107
  msgid "Password and Private"
1108
  msgstr "Passwort und Privat-Flag"
1109
 
1110
  #: inc-options/write_cp_options.php:134
1111
- #: inc-options/write_page_options.php:130
1112
- #: inc-options/write_post_options.php:148
1113
  #@ adminimize
1114
  msgid "Inline Edit Right"
1115
  msgstr "Inline Edit rechts"
1116
 
1117
- #: inc-options/write_page_options.php:131
1118
  #@ adminimize
1119
  msgid "Parent, Order, Template"
1120
  msgstr "Eltern, Reihenfolge, Template"
1121
 
1122
- #: inc-options/write_page_options.php:132
1123
  #@ adminimize
1124
  msgid "Status"
1125
  msgstr "Status"
1126
 
1127
  #: inc-options/write_cp_options.php:137
1128
- #: inc-options/write_page_options.php:133
1129
- #: inc-options/write_post_options.php:151
1130
  #@ adminimize
1131
  msgid "Cancel/Save Button"
1132
  msgstr "Abbrechen/Aktualisieren Button"
1133
 
1134
  #: inc-options/write_cp_options.php:131
1135
- #: inc-options/write_post_options.php:145
1136
  #@ adminimize
1137
  msgid "Inline Edit Center"
1138
  msgstr "Inline Edit mitte"
1139
 
1140
  #: inc-options/write_cp_options.php:132
1141
- #: inc-options/write_post_options.php:146
1142
  #@ adminimize
1143
  msgid "Categories Title"
1144
  msgstr "Kategorien Title"
1145
 
1146
  #: inc-options/write_cp_options.php:133
1147
- #: inc-options/write_post_options.php:147
1148
  #@ adminimize
1149
  msgid "Categories List"
1150
  msgstr "Kategorien Liste"
1151
 
1152
  #: inc-options/write_cp_options.php:136
1153
- #: inc-options/write_post_options.php:150
1154
  #@ adminimize
1155
  msgid "Status, Sticky"
1156
  msgstr "Status, Sticky"
@@ -1178,12 +1084,6 @@ msgstr "Deine eigenen Nav Menu Einstellungen"
1178
  msgid "Your own %s options"
1179
  msgstr "Deine eigenen %s Einstellungen"
1180
 
1181
- #. translators: plugin header field 'Version'
1182
- #: adminimize.php:0
1183
- #@ adminimize
1184
- msgid "1.7.20"
1185
- msgstr ""
1186
-
1187
  #: inc-options/dashboard_options.php:17
1188
  #: inc-options/minimenu.php:32
1189
  #@ adminimize
@@ -1198,5 +1098,26 @@ msgstr "Um die Installation für Dashboard Widgets abzuschließen, musst du das
1198
  #: inc-options/minimenu.php:87
1199
  #@ adminimize
1200
  msgid "Further information: Visit the <a href=\"http://wordpress.org/extend/plugins/adminimize/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
1201
- msgstr "Weitere Informationen: Besuchen Sie die <a href=\\\"http://wordpress.org/extend/plugins/adminimize/\\\">Plugin Website</a> für weitere Informationen oder um die neueste Version des Plugins erhalten."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1202
 
59
  msgid "Load user data to themes was successful."
60
  msgstr "Das Laden der User-Daten zum Theme war erfolgreich."
61
 
62
+ #: adminimize.php:468
63
  #: inc-options/links_options.php:52
64
  #: inc-options/write_cp_options.php:99
65
+ #: inc-options/write_post_options.php:87
66
  #@ default
67
  #@ adminimize
68
  msgid "Categories"
69
  msgstr "Kategorien"
70
 
71
+ #: adminimize.php:474
72
+ #: adminimize.php:485
73
  #@ default
74
  msgid "+ Add New Category"
75
  msgstr "+ Add New Category"
76
 
77
+ #: adminimize.php:476
78
+ #: adminimize.php:487
79
  #@ default
80
  msgid "New category name"
81
  msgstr "New category name"
82
 
83
+ #: adminimize.php:477
84
+ #: adminimize.php:489
85
  #@ default
86
  msgid "Parent category"
87
  msgstr "Parent category"
88
 
89
+ #: adminimize.php:478
90
+ #: adminimize.php:490
91
  #@ default
92
  msgid "Add"
93
  msgstr "Add"
94
 
95
+ #: adminimize.php:487
96
  #: inc-options/write_cp_options.php:100
97
+ #: inc-options/write_post_options.php:88
98
  #@ default
99
  #@ adminimize
100
  msgid "Add New Category"
101
  msgstr "Add New Category"
102
 
 
 
103
  #: inc-options/write_cp_options.php:97
104
  #: inc-options/write_cp_options.php:135
105
+ #: inc-options/write_post_options.php:85
106
+ #: inc-options/write_post_options.php:121
 
107
  #@ adminimize
108
+ #@ default
109
  msgid "Tags"
110
  msgstr "Tags"
111
 
112
+ #: adminimize.php:572
113
+ #: adminimize.php:575
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
114
  #@ default
115
  msgid "Dashboard"
116
  msgstr "Dashboard"
117
 
118
+ #: adminimize.php:636
119
+ #: adminimize.php:638
120
+ #: adminimize.php:659
121
+ #: adminimize.php:661
122
+ #: adminimize.php:1034
123
+ #: inc-setup/admin-bar.php:57
124
+ #: inc-setup/admin-bar.php:81
125
+ #: inc-setup/admin-bar.php:250
126
  #@ default
127
  msgid "Log Out"
128
  msgstr "Log Out"
129
 
 
 
 
 
 
 
 
 
 
 
 
130
  #: inc-options/minimenu.php:85
 
131
  #@ adminimize
132
  msgid "Version"
133
  msgstr "Version"
134
 
 
 
 
 
 
 
135
  #: inc-options/write_cp_options.php:129
136
+ #: inc-options/write_page_options.php:108
137
+ #: inc-options/write_post_options.php:115
138
  #@ default
139
  msgid "Author"
140
  msgstr "Author"
141
 
142
+ #: adminimize.php:1067
 
 
 
 
 
143
  #@ default
144
  msgid "Settings"
145
  msgstr "Settings"
146
 
 
 
 
 
 
147
  #. translators: plugin header field 'Name'
148
  #: adminimize.php:0
149
+ #: adminimize.php:1086
150
  #: inc-options/minimenu.php:14
151
  #@ adminimize
152
  msgid "Adminimize"
153
  msgstr "Adminimize"
154
 
155
+ #: adminimize.php:1085
156
  #@ adminimize
157
  msgid "Adminimize Options"
158
  msgstr "Adminimize Einstellungen"
159
 
160
+ #: adminimize.php:1111
161
  #@ default
162
  msgid "Cheatin&#8217; uh?"
163
  msgstr "Cheatin&#8217; uh?"
186
  msgid "Backend Options"
187
  msgstr "Einstellungen Backend"
188
 
189
+ #: inc-options/backend_options.php:37
190
  #@ adminimize
191
  msgid "User-Info"
192
  msgstr "User-Info"
193
 
194
+ #: inc-options/backend_options.php:30
195
+ #: inc-options/backend_options.php:41
196
+ #: inc-options/backend_options.php:54
197
+ #: inc-options/backend_options.php:64
198
+ #: inc-options/backend_options.php:74
199
+ #: inc-options/backend_options.php:84
200
+ #: inc-options/backend_options.php:94
201
+ #: inc-options/backend_options.php:104
202
+ #: inc-options/backend_options.php:114
203
+ #: inc-options/backend_options.php:124
204
+ #: inc-options/backend_options.php:153
 
205
  #@ adminimize
206
  msgid "Default"
207
  msgstr "Standard"
208
 
209
+ #: inc-options/backend_options.php:42
210
+ #: inc-options/backend_options.php:65
211
+ #: inc-options/backend_options.php:75
212
  #@ adminimize
213
  msgid "Hide"
214
  msgstr "Ausblenden"
215
 
216
+ #: inc-options/backend_options.php:43
217
  #@ adminimize
218
  msgid "Only logout"
219
  msgstr "nur Abmelden"
220
 
221
+ #: inc-options/backend_options.php:44
222
  #@ adminimize
223
  msgid "User &amp; Logout"
224
  msgstr "User &amp; Abmelden"
225
 
226
+ #: inc-options/backend_options.php:45
227
  #@ adminimize
228
  msgid "The &quot;User-Info-area&quot; is on the top right side of the backend. You can hide or reduced show."
229
  msgstr "Der &quot;User-Info-Bereich&quot; ist im oberen rechten Bereich zu finden und kann ausgeblendet oder reduziert dargestellt werden."
230
 
231
+ #: inc-options/backend_options.php:50
232
  #@ adminimize
233
  msgid "Change User-Info, redirect to"
234
  msgstr "User Info ge&auml;ndert, Weiterleitung nach"
235
 
236
+ #: inc-options/backend_options.php:55
237
  #@ adminimize
238
  msgid "Frontpage of the Blog"
239
  msgstr "Startseite des Blog"
240
 
241
+ #: inc-options/backend_options.php:56
242
  #@ adminimize
243
  msgid "When the &quot;User-Info-area&quot; change it, then it is possible to change the redirect."
244
  msgstr "Wenn der &quot;User-Info-Bereich&quot; ge&auml;ndert wird, dann kann die die Weiterleitung nach einem Logout ge&auml;ndert werden."
245
 
246
+ #: inc-options/backend_options.php:60
247
  #@ adminimize
248
  msgid "Footer"
249
  msgstr "Footer"
250
 
251
+ #: inc-options/backend_options.php:66
252
  #@ adminimize
253
  msgid "The Footer-area can hide, include all links and details."
254
  msgstr "Der Footer-Bereich kann deaktiviert werden, inklusive aller Links und Hinweise."
255
 
256
+ #: inc-options/backend_options.php:31
257
+ #: inc-options/backend_options.php:85
258
+ #: inc-options/backend_options.php:95
259
+ #: inc-options/backend_options.php:105
260
+ #: inc-options/backend_options.php:115
261
+ #: inc-options/backend_options.php:125
 
 
 
 
 
 
262
  #@ adminimize
263
  msgid "Activate"
264
  msgstr "Aktiv"
265
 
266
+ #: inc-options/backend_options.php:80
 
 
 
 
 
267
  #@ adminimize
268
  msgid "Timestamp"
269
  msgstr "Timestamp"
270
 
271
+ #: inc-options/backend_options.php:86
272
  #@ adminimize
273
  msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
274
  msgstr "Das Feld zum &Auml;ndern des Ver&ouml;ffentlichungsdatum ist immer ge&ouml;ffnet."
275
 
276
+ #: inc-options/backend_options.php:90
277
  #@ adminimize
278
  msgid "Thickbox FullScreen"
279
  msgstr "Thickbox FullScreen"
280
 
281
+ #: inc-options/backend_options.php:100
282
  #@ adminimize
283
  msgid "Flashuploader"
284
  msgstr "Flashuploader"
285
 
286
+ #: inc-options/backend_options.php:106
287
  #@ adminimize
288
  msgid "Disable the flashuploader and users use only the standard uploader."
289
  msgstr "Deaktiviere den Flashuploader und Nutzer können nur den Standard-Uploader erreichen."
290
 
291
+ #: inc-options/backend_options.php:120
292
  #@ adminimize
293
  msgid "Advice in Footer"
294
  msgstr "Hinweis im Footer"
295
 
296
+ #: inc-options/backend_options.php:154
297
  #@ adminimize
298
  msgid "Manage Posts"
299
  msgstr "Verwalten Beitr&auml;ge"
300
 
301
+ #: inc-options/backend_options.php:155
302
  #@ adminimize
303
  msgid "Manage Pages"
304
  msgstr "Verwalten Seiten"
305
 
306
+ #: inc-options/backend_options.php:156
307
  #@ adminimize
308
  msgid "Write Post"
309
  msgstr "Schreiben Beitrag"
310
 
311
+ #: inc-options/backend_options.php:157
312
  #@ adminimize
313
  msgid "Write Page"
314
  msgstr "Schreiben Seite"
315
 
316
+ #: inc-options/backend_options.php:158
317
+ #: inc-options/write_post_options.php:92
318
  #@ adminimize
319
  msgid "Comments"
320
  msgstr "Kommentare"
321
 
322
+ #: inc-options/backend_options.php:159
323
  #@ adminimize
324
  msgid "other Page"
325
  msgstr "andere Seite"
326
 
327
+ #: inc-options/backend_options.php:171
328
  #: inc-options/dashboard_options.php:122
329
  #: inc-options/global_options.php:122
330
  #: inc-options/links_options.php:126
331
+ #: inc-options/menu_options.php:155
332
  #: inc-options/wp_nav_menu_options.php:147
333
+ #: inc-options/write_cp_options.php:239
334
+ #: inc-options/write_page_options.php:187
335
+ #: inc-options/write_post_options.php:197
336
  #@ adminimize
337
  msgid "Update Options"
338
  msgstr "Einstellungen aktualisieren"
352
  #: inc-options/wp_nav_menu_options.php:22
353
  #: inc-options/wp_nav_menu_options.php:122
354
  #: inc-options/write_cp_options.php:204
355
+ #: inc-options/write_page_options.php:162
356
+ #: inc-options/write_post_options.php:172
357
  #@ adminimize
358
  msgid "Option"
359
  msgstr "Einstellung"
383
  #: inc-options/global_options.php:50
384
  #: inc-options/wp_nav_menu_options.php:49
385
  #: inc-options/write_cp_options.php:95
386
+ #: inc-options/write_page_options.php:77
387
+ #: inc-options/write_post_options.php:82
388
  #@ adminimize
389
  #@ default
390
  msgid "Screen Options"
411
  #: inc-options/links_options.php:100
412
  #: inc-options/wp_nav_menu_options.php:121
413
  #: inc-options/write_cp_options.php:202
414
+ #: inc-options/write_page_options.php:161
415
+ #: inc-options/write_post_options.php:171
416
  #@ adminimize
417
  msgid "ID or class"
418
  msgstr "ID oder Klasse"
422
  #: inc-options/links_options.php:107
423
  #: inc-options/wp_nav_menu_options.php:128
424
  #: inc-options/write_cp_options.php:211
425
+ #: inc-options/write_page_options.php:168
426
+ #: inc-options/write_post_options.php:178
427
  #@ adminimize
428
  msgid "It is possible to add your own IDs or classes from elements and tags. You can find IDs and classes with the FireBug Add-on for Firefox. Assign a value and the associate name per line."
429
  msgstr "Es ist möglich, dass du eigene IDs und Klassen eines Elementes oder Tags hinzufügst. Du findest IDs und Klassen sehr einfach mit dem Firebug Add-on für den Firefox. Füge pro Zeile einen Wert und dazugehörigen Namen ein."
433
  #: inc-options/links_options.php:113
434
  #: inc-options/wp_nav_menu_options.php:134
435
  #: inc-options/write_cp_options.php:221
436
+ #: inc-options/write_page_options.php:174
437
+ #: inc-options/write_post_options.php:184
438
  #@ adminimize
439
  msgid "Possible nomination for ID or class. Separate multiple nominations through a carriage return."
440
  msgstr "Mögliche Benennung der ID oder Klasse. Trenne Werte durch eine neue Zeile."
443
  #: inc-options/global_options.php:114
444
  #: inc-options/links_options.php:118
445
  #: inc-options/wp_nav_menu_options.php:139
446
+ #: inc-options/write_cp_options.php:229
447
+ #: inc-options/write_page_options.php:179
448
+ #: inc-options/write_post_options.php:189
449
  #@ adminimize
450
  msgid "Possible IDs or classes. Separate multiple values through a carriage return."
451
  msgstr "Mögliche IDs oder Klassen. Trenne Werte durch eine neue Zeile."
463
 
464
  #: inc-options/wp_nav_menu_options.php:48
465
  #: inc-options/write_cp_options.php:94
466
+ #: inc-options/write_page_options.php:76
467
+ #: inc-options/write_post_options.php:81
468
  #@ adminimize
469
  #@ default
470
  msgid "Help"
471
  msgstr "Hilfe"
472
 
473
  #: inc-options/write_cp_options.php:96
474
+ #: inc-options/write_page_options.php:79
475
+ #: inc-options/write_post_options.php:84
476
  #@ adminimize
477
  msgid "Permalink"
478
  msgstr "Permalink"
479
 
480
+ #: inc-options/write_post_options.php:89
481
  #@ adminimize
482
  msgid "Excerpt"
483
  msgstr "Auszug"
484
 
485
+ #: inc-options/write_post_options.php:90
486
  #@ adminimize
487
  msgid "Trackbacks"
488
  msgstr "Trackbacks"
489
 
490
+ #: inc-options/write_page_options.php:80
491
+ #: inc-options/write_post_options.php:91
492
  #@ default
493
  msgid "Custom Fields"
494
  msgstr "Benutzerdefinierte Felder"
495
 
496
  #: inc-options/write_cp_options.php:101
497
+ #: inc-options/write_post_options.php:93
498
  #@ adminimize
499
  msgid "Password Protect This Post"
500
  msgstr "Diesen Artikel durch ein Passwort sch&uuml;tzen"
501
 
502
+ #: inc-options/write_post_options.php:94
503
  #@ default
504
  msgid "Post Author"
505
  msgstr "Autor"
506
 
507
+ #: inc-options/write_post_options.php:95
508
  #@ default
509
  msgid "Post Revisions"
510
  msgstr "Post Revisions"
511
 
512
  #: inc-options/write_cp_options.php:102
513
+ #: inc-options/write_post_options.php:96
514
  #@ adminimize
515
  msgid "Related, Shortcuts"
516
  msgstr "Siehe auch, Tastaturk&uuml;rzel"
517
 
518
  #: inc-options/write_cp_options.php:104
519
+ #: inc-options/write_page_options.php:90
520
+ #: inc-options/write_post_options.php:98
521
  #@ adminimize
522
  msgid "h2: Advanced Options"
523
  msgstr "h2: Erweiterte Einstellungen"
524
 
525
  #: inc-options/write_cp_options.php:105
526
+ #: inc-options/write_page_options.php:91
527
+ #: inc-options/write_post_options.php:99
528
  #@ adminimize
529
  msgid "Media Buttons (all)"
530
  msgstr "Media Buttons (alle)"
531
 
532
  #: inc-options/write_cp_options.php:106
533
+ #: inc-options/write_page_options.php:92
534
+ #: inc-options/write_post_options.php:100
535
  #@ adminimize
536
  msgid "Word count"
537
  msgstr "Word count"
538
 
539
  #: inc-options/write_cp_options.php:107
540
+ #: inc-options/write_post_options.php:101
541
  #@ adminimize
542
  msgid "Post Slug"
543
  msgstr "Titelform"
544
 
545
  #: inc-options/links_options.php:56
546
  #: inc-options/write_cp_options.php:108
547
+ #: inc-options/write_page_options.php:94
548
+ #: inc-options/write_post_options.php:102
549
  #@ adminimize
550
  msgid "Publish Actions"
551
  msgstr "Publish Actions"
552
 
553
  #: inc-options/write_cp_options.php:109
554
+ #: inc-options/write_page_options.php:95
555
+ #: inc-options/write_post_options.php:103
556
  #@ default
557
  #@ adminimize
558
  msgid "Discussion"
559
  msgstr "Kommentare"
560
 
561
  #: inc-options/write_cp_options.php:120
562
+ #: inc-options/write_post_options.php:108
563
  #@ adminimize
564
  msgid "Post Thumbnail"
565
  msgstr "Artikelbild"
566
 
567
+ #: inc-options/write_page_options.php:81
 
 
 
 
 
 
 
 
 
 
568
  #@ adminimize
569
  msgid "Comments &amp; Pings"
570
  msgstr "Kommentare &amp; Pings"
571
 
572
+ #: inc-options/write_page_options.php:82
573
  #@ adminimize
574
  msgid "Password Protect This Page"
575
  msgstr "Diese Seite mit einem Passwort versehen"
576
 
577
+ #: inc-options/write_page_options.php:83
578
  #@ adminimize
579
  msgid "Attributes"
580
  msgstr "Attribute"
581
 
582
+ #: inc-options/write_page_options.php:84
583
  #@ adminimize
584
  msgid "Page Template"
585
  msgstr "Seiten Template"
586
 
587
+ #: inc-options/write_page_options.php:85
588
  #@ adminimize
589
  msgid "Page Order"
590
  msgstr "Reihenfolge"
591
 
592
+ #: inc-options/write_page_options.php:86
593
  #@ default
594
  msgid "Page Author"
595
  msgstr "Seitenautor"
596
 
597
+ #: inc-options/write_page_options.php:87
598
  #@ default
599
  msgid "Page Revisions"
600
  msgstr "Page Revisions"
601
 
602
+ #: inc-options/write_page_options.php:88
603
  #@ adminimize
604
  msgid "Related"
605
  msgstr "Siehe auch"
606
 
607
+ #: inc-options/write_page_options.php:93
608
  #@ adminimize
609
  msgid "Page Slug"
610
  msgstr "Titelform"
611
 
612
+ #: inc-options/write_page_options.php:100
613
  #@ adminimize
614
  msgid "Page Image"
615
  msgstr "Artikelbild"
616
 
617
  #: inc-options/menu_options.php:67
618
+ #: inc-options/menu_options.php:119
619
  #@ adminimize
620
  msgid "After activate the check box it heavy attitudes will change."
621
  msgstr "Wenn die Checkbox aktiv ist, dann wird das Ändern von Einstellungen erschwert."
622
 
623
+ #: inc-options/menu_options.php:102
624
  #@ default
625
  msgid "Profile"
626
  msgstr "Profile"
632
  msgid "Write options - Post"
633
  msgstr "Schreiben Einstellungen - Beitr&auml;ge"
634
 
635
+ #: inc-options/write_post_options.php:171
636
  #@ adminimize
637
  msgid "Your own post options"
638
  msgstr "Deine eigenen Beitrags-Einstellungen"
644
  msgid "Write options - Page"
645
  msgstr "Schreiben Einstellungen - Seiten"
646
 
647
+ #: inc-options/write_page_options.php:161
648
  #@ adminimize
649
  msgid "Your own page options"
650
  msgstr "Deine eigenen Seiten-Einstellungen"
805
  msgid "MiniMenu"
806
  msgstr "MiniMenu"
807
 
808
+ #: inc-options/backend_options.php:173
809
  #: inc-options/dashboard_options.php:127
810
  #: inc-options/deinstall_options.php:27
811
  #: inc-options/global_options.php:124
812
  #: inc-options/im_export_options.php:41
813
  #: inc-options/links_options.php:129
814
+ #: inc-options/menu_options.php:157
815
  #: inc-options/minimenu.php:99
816
  #: inc-options/theme_options.php:105
817
  #: inc-options/wp_nav_menu_options.php:149
818
+ #: inc-options/write_cp_options.php:244
819
+ #: inc-options/write_page_options.php:189
820
+ #: inc-options/write_post_options.php:199
821
  #@ adminimize
822
  msgid "scroll to top"
823
  msgstr "Nach oben"
832
  msgid "Choose a Adminimize (<em>.seq</em>) file to upload, then click <em>Upload file and import</em>."
833
  msgstr "Wähle eine Adminimize (<em>.seq</em>) Datei zum hoch laden und dann klick <em>Hochladen der Datei und importieren</em>"
834
 
835
+ #: inc-options/backend_options.php:110
836
  #@ adminimize
837
  msgid "Category Height"
838
  msgstr "Kategorie-Höhe"
839
 
840
+ #: inc-options/backend_options.php:116
841
  #@ adminimize
842
  msgid "View the Meta Box with Categories in the full height, no scrollbar or whitespace."
843
  msgstr "Stellt in die Meta Box der Kategorien in voller Höhe dar, kein Scrollbar und kein Leerraum."
844
 
845
+ #: inc-options/backend_options.php:127
846
  #@ adminimize
847
  msgid "In the Footer you can display an advice for changing the Default-design, (x)HTML is possible."
848
  msgstr "Im Footer kann ein Hinweis auf die aktive Ver&auml;nderung des Standard-Layout gesetzt werden, (x)HTML erlaubt."
849
 
850
+ #: inc-options/backend_options.php:149
851
  #@ adminimize
852
  msgid "Dashboard deactivate, redirect to"
853
  msgstr "Dashboard inaktiv, Weiterleitung nach"
854
 
855
  #: inc-options/write_cp_options.php:110
856
+ #: inc-options/write_page_options.php:96
857
+ #: inc-options/write_post_options.php:104
858
  #@ default
859
  #@ adminimize
860
  msgid "HTML Editor Button"
861
  msgstr "HTML Editor Button"
862
 
863
+ #: inc-options/backend_options.php:96
864
  #@ adminimize
865
  msgid "All Thickbox-function use the full area of the browser. Thickbox is for example in upload media-files."
866
  msgstr "Alle Thickbox-Funktion verwenden den vollständigen Bereich des Browsers. Thickbox ist beispielsweise in der Medien-Upload-Funktion."
889
  msgid "http://bueltge.de/"
890
  msgstr ""
891
 
892
+ #: inc-options/backend_options.php:70
893
  #@ adminimize
894
  msgid "Header"
895
  msgstr "Header"
896
 
897
+ #: inc-options/backend_options.php:76
898
  #@ adminimize
899
  msgid "The Header-area can hide, include all links and details."
900
  msgstr "Der header-Bereich kann ausgeblendet werden, inkl. aller Links und Details."
901
 
902
+ #: inc-options/write_page_options.php:78
903
+ #: inc-options/write_post_options.php:83
904
  #@ adminimize
905
  msgid "Title"
906
  msgstr "Title"
907
 
908
+ #: inc-options/backend_options.php:26
909
  #@ adminimize
910
  msgid "Exclude Super Admin"
911
  msgstr "Ausschließen des Super Admin"
912
 
913
+ #: inc-options/backend_options.php:32
914
  #@ adminimize
915
  msgid "Exclude the Super Admin on a WP Multisite Install from all limitations of this plugin."
916
  msgstr "Schließe den Super Admin in einer WordPress Multisite Installation von allen Restriktionen dieses Plugins aus."
917
 
918
+ #: inc-options/backend_options.php:162
919
  #@ adminimize
920
  msgid "You have deactivated the Dashboard, please select a page for redirection or define custom url, include http://?"
921
  msgstr "Du hast das Dashboard deaktiviert; bitte wähle eine Seite für die Weiterleitung oder definiere eine eigene URL, inklusive http://"
953
  msgstr "Menu hinzufügen"
954
 
955
  #: inc-options/write_cp_options.php:98
956
+ #: inc-options/write_post_options.php:86
957
  #@ adminimize
958
  msgid "Format"
959
  msgstr "Format"
960
 
961
  #: inc-options/write_cp_options.php:103
962
+ #: inc-options/write_page_options.php:89
963
+ #: inc-options/write_post_options.php:97
964
  #@ adminimize
965
  msgid "Messages"
966
  msgstr "Mitteilungen"
967
 
968
  #: inc-options/write_cp_options.php:126
969
+ #: inc-options/write_page_options.php:104
970
+ #: inc-options/write_post_options.php:112
971
  #@ adminimize
972
  msgid "Quick Edit Link"
973
  msgstr "QuickEdit Link"
976
  #: inc-options/write_cp_options.php:131
977
  #: inc-options/write_cp_options.php:134
978
  #: inc-options/write_cp_options.php:137
979
+ #: inc-options/write_page_options.php:105
980
+ #: inc-options/write_page_options.php:110
981
+ #: inc-options/write_page_options.php:113
982
+ #: inc-options/write_post_options.php:113
983
+ #: inc-options/write_post_options.php:117
984
+ #: inc-options/write_post_options.php:120
985
+ #: inc-options/write_post_options.php:123
986
  #@ adminimize
987
  msgid "QE"
988
  msgstr "QE"
989
 
990
  #: inc-options/write_cp_options.php:127
991
+ #: inc-options/write_page_options.php:105
992
+ #: inc-options/write_post_options.php:113
993
  #@ adminimize
994
  msgid "Inline Edit Left"
995
  msgstr "Inline Edit Links"
996
 
997
  #: inc-options/write_cp_options.php:128
998
+ #: inc-options/write_page_options.php:106
999
+ #: inc-options/write_post_options.php:114
1000
  #@ adminimize
1001
  msgid "All Labels"
1002
  msgstr "Alle labels"
1003
 
1004
+ #: inc-options/write_page_options.php:107
1005
  #@ adminimize
1006
  msgid "Date"
1007
  msgstr "Datum"
1008
 
1009
  #: inc-options/write_cp_options.php:130
1010
+ #: inc-options/write_page_options.php:109
1011
+ #: inc-options/write_post_options.php:116
1012
  #@ adminimize
1013
  msgid "Password and Private"
1014
  msgstr "Passwort und Privat-Flag"
1015
 
1016
  #: inc-options/write_cp_options.php:134
1017
+ #: inc-options/write_page_options.php:110
1018
+ #: inc-options/write_post_options.php:120
1019
  #@ adminimize
1020
  msgid "Inline Edit Right"
1021
  msgstr "Inline Edit rechts"
1022
 
1023
+ #: inc-options/write_page_options.php:111
1024
  #@ adminimize
1025
  msgid "Parent, Order, Template"
1026
  msgstr "Eltern, Reihenfolge, Template"
1027
 
1028
+ #: inc-options/write_page_options.php:112
1029
  #@ adminimize
1030
  msgid "Status"
1031
  msgstr "Status"
1032
 
1033
  #: inc-options/write_cp_options.php:137
1034
+ #: inc-options/write_page_options.php:113
1035
+ #: inc-options/write_post_options.php:123
1036
  #@ adminimize
1037
  msgid "Cancel/Save Button"
1038
  msgstr "Abbrechen/Aktualisieren Button"
1039
 
1040
  #: inc-options/write_cp_options.php:131
1041
+ #: inc-options/write_post_options.php:117
1042
  #@ adminimize
1043
  msgid "Inline Edit Center"
1044
  msgstr "Inline Edit mitte"
1045
 
1046
  #: inc-options/write_cp_options.php:132
1047
+ #: inc-options/write_post_options.php:118
1048
  #@ adminimize
1049
  msgid "Categories Title"
1050
  msgstr "Kategorien Title"
1051
 
1052
  #: inc-options/write_cp_options.php:133
1053
+ #: inc-options/write_post_options.php:119
1054
  #@ adminimize
1055
  msgid "Categories List"
1056
  msgstr "Kategorien Liste"
1057
 
1058
  #: inc-options/write_cp_options.php:136
1059
+ #: inc-options/write_post_options.php:122
1060
  #@ adminimize
1061
  msgid "Status, Sticky"
1062
  msgstr "Status, Sticky"
1084
  msgid "Your own %s options"
1085
  msgstr "Deine eigenen %s Einstellungen"
1086
 
 
 
 
 
 
 
1087
  #: inc-options/dashboard_options.php:17
1088
  #: inc-options/minimenu.php:32
1089
  #@ adminimize
1098
  #: inc-options/minimenu.php:87
1099
  #@ adminimize
1100
  msgid "Further information: Visit the <a href=\"http://wordpress.org/extend/plugins/adminimize/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
1101
+ msgstr "Weitere Informationen: Besuchen Sie die <a href=\"http://wordpress.org/extend/plugins/adminimize/\">Plugin Website</a> für weitere Informationen oder um die neueste Version des Plugins erhalten."
1102
+
1103
+ #. translators: plugin header field 'Version'
1104
+ #: adminimize.php:0
1105
+ #@ adminimize
1106
+ msgid "1.7.26"
1107
+ msgstr ""
1108
+
1109
+ #: inc-options/settings_notice.php:17
1110
+ #@ adminimize
1111
+ msgid "Attention: The settings page ignores these Menu settings and views the menu with all entries!"
1112
+ msgstr "Achtung: Die Seite der Einstellungen ignoriert Menu-Einstellungen und stellt das Menu mit allen Einträgen dar!"
1113
+
1114
+ #: inc-setup/admin-bar.php:239
1115
+ #@ default
1116
+ msgid "Network Admin"
1117
+ msgstr ""
1118
+
1119
+ #: inc-setup/admin-bar.php:241
1120
+ #@ default
1121
+ msgid "Site Admin"
1122
+ msgstr ""
1123
 
languages/adminimize-lt_LT.mo ADDED
Binary file
languages/adminimize-lt_LT.po ADDED
@@ -0,0 +1,1120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Adminimize\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-01-04 17:38+0100\n"
6
+ "PO-Revision-Date: 2012-03-10 17:09+0200\n"
7
+ "Last-Translator: \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
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-SourceCharset: utf-8\n"
14
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
15
+ "X-Poedit-Basepath: ../\n"
16
+ "X-Textdomain-Support: yes\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #@ adminimize
20
+ #: adminimize.php:127
21
+ msgid "Unknown error."
22
+ msgstr "Nežinoma klaida."
23
+
24
+ #@ adminimize
25
+ #: adminimize.php:136
26
+ msgid "The updates were saved."
27
+ msgstr "Atnaujimai išsaugoti."
28
+
29
+ #@ adminimize
30
+ #: adminimize.php:137
31
+ msgid "You have not enough rights to edit entries in the database."
32
+ msgstr "Jūs neturite reikiamų teisių redaguoti šios duomenų bazės įrašų."
33
+
34
+ #@ adminimize
35
+ #: adminimize.php:139
36
+ msgid "All entries in the database were deleted."
37
+ msgstr "Visi duomenų bazės įrašai ištrinti."
38
+
39
+ #@ adminimize
40
+ #: adminimize.php:140
41
+ msgid "Set the checkbox on deinstall-button."
42
+ msgstr "Nustatykite žymimąjį langelį, programos pašalinimo mygtuke."
43
+
44
+ #@ adminimize
45
+ #: adminimize.php:141
46
+ msgid "Can't load menu and submenu."
47
+ msgstr "Neįmanoma užkrauti įkėlimo meniu ir submeniu."
48
+
49
+ #@ adminimize
50
+ #: adminimize.php:142
51
+ msgid "Backend-Theme was activated!"
52
+ msgstr "Vidinės pusės apipavidalinimas aktyvuotas!"
53
+
54
+ #@ adminimize
55
+ #: adminimize.php:143
56
+ msgid "Load user data to themes was successful."
57
+ msgstr "Apipavidalinimo vartotojo duomenų įkėlimas sėkmingas."
58
+
59
+ #@ default
60
+ #@ adminimize
61
+ #: adminimize.php:468
62
+ #: inc-options/links_options.php:52
63
+ #: inc-options/write_cp_options.php:99
64
+ #: inc-options/write_post_options.php:87
65
+ msgid "Categories"
66
+ msgstr "Kategorijos"
67
+
68
+ #@ default
69
+ #: adminimize.php:474
70
+ #: adminimize.php:485
71
+ msgid "+ Add New Category"
72
+ msgstr "+ Pridėti Naują Kategoriją"
73
+
74
+ #@ default
75
+ #: adminimize.php:476
76
+ #: adminimize.php:487
77
+ msgid "New category name"
78
+ msgstr "Naujos kategorijos pavadinimas"
79
+
80
+ #@ default
81
+ #: adminimize.php:477
82
+ #: adminimize.php:489
83
+ msgid "Parent category"
84
+ msgstr "Virškategorė"
85
+
86
+ #@ default
87
+ #: adminimize.php:478
88
+ #: adminimize.php:490
89
+ msgid "Add"
90
+ msgstr "Pridėti"
91
+
92
+ #@ default
93
+ #@ adminimize
94
+ #: adminimize.php:487
95
+ #: inc-options/write_cp_options.php:100
96
+ #: inc-options/write_post_options.php:88
97
+ msgid "Add New Category"
98
+ msgstr "Pridėti Naują Kategoriją"
99
+
100
+ #@ adminimize
101
+ #@ default
102
+ #: inc-options/write_cp_options.php:97
103
+ #: inc-options/write_cp_options.php:135
104
+ #: inc-options/write_post_options.php:85
105
+ #: inc-options/write_post_options.php:121
106
+ msgid "Tags"
107
+ msgstr "Gairės"
108
+
109
+ #@ default
110
+ #: adminimize.php:572
111
+ #: adminimize.php:575
112
+ msgid "Dashboard"
113
+ msgstr "Prietaisų skydelis"
114
+
115
+ #@ default
116
+ #: adminimize.php:636
117
+ #: adminimize.php:638
118
+ #: adminimize.php:659
119
+ #: adminimize.php:661
120
+ #: adminimize.php:1034
121
+ #: inc-setup/admin-bar.php:57
122
+ #: inc-setup/admin-bar.php:81
123
+ #: inc-setup/admin-bar.php:250
124
+ msgid "Log Out"
125
+ msgstr "Išsiregistruoti"
126
+
127
+ #@ adminimize
128
+ #: inc-options/minimenu.php:85
129
+ msgid "Version"
130
+ msgstr "Versija"
131
+
132
+ #@ default
133
+ #: inc-options/write_cp_options.php:129
134
+ #: inc-options/write_page_options.php:108
135
+ #: inc-options/write_post_options.php:115
136
+ msgid "Author"
137
+ msgstr "Autorius"
138
+
139
+ #@ default
140
+ #: adminimize.php:1067
141
+ msgid "Settings"
142
+ msgstr "Nuostatos"
143
+
144
+ #@ adminimize
145
+ #. translators: plugin header field 'Name'
146
+ #: adminimize.php:0
147
+ #: adminimize.php:1086
148
+ #: inc-options/minimenu.php:14
149
+ msgid "Adminimize"
150
+ msgstr "Adminimize"
151
+
152
+ #@ adminimize
153
+ #: adminimize.php:1085
154
+ msgid "Adminimize Options"
155
+ msgstr "Adminimize parinktys"
156
+
157
+ #@ default
158
+ #: adminimize.php:1111
159
+ msgid "Cheatin&#8217; uh?"
160
+ msgstr "Bandote sukčiauti, ar ne?"
161
+
162
+ #@ default
163
+ #: inc-options/backend_options.php:15
164
+ #: inc-options/dashboard_options.php:16
165
+ #: inc-options/deinstall_options.php:14
166
+ #: inc-options/global_options.php:15
167
+ #: inc-options/im_export_options.php:14
168
+ #: inc-options/links_options.php:15
169
+ #: inc-options/menu_options.php:15
170
+ #: inc-options/minimenu.php:18
171
+ #: inc-options/minimenu.php:82
172
+ #: inc-options/theme_options.php:14
173
+ #: inc-options/wp_nav_menu_options.php:14
174
+ #: inc-options/write_cp_options.php:19
175
+ #: inc-options/write_page_options.php:14
176
+ #: inc-options/write_post_options.php:15
177
+ msgid "Click to toggle"
178
+ msgstr "Spragtelkite, norėdami perjungti"
179
+
180
+ #@ adminimize
181
+ #: inc-options/backend_options.php:16
182
+ #: inc-options/minimenu.php:26
183
+ msgid "Backend Options"
184
+ msgstr "Vidinės pusės Parinktys"
185
+
186
+ #@ adminimize
187
+ #: inc-options/backend_options.php:37
188
+ msgid "User-Info"
189
+ msgstr "Vartotojo Informacija"
190
+
191
+ #@ adminimize
192
+ #: inc-options/backend_options.php:30
193
+ #: inc-options/backend_options.php:41
194
+ #: inc-options/backend_options.php:54
195
+ #: inc-options/backend_options.php:64
196
+ #: inc-options/backend_options.php:74
197
+ #: inc-options/backend_options.php:84
198
+ #: inc-options/backend_options.php:94
199
+ #: inc-options/backend_options.php:104
200
+ #: inc-options/backend_options.php:114
201
+ #: inc-options/backend_options.php:124
202
+ #: inc-options/backend_options.php:153
203
+ msgid "Default"
204
+ msgstr "Numatytas"
205
+
206
+ #@ adminimize
207
+ #: inc-options/backend_options.php:42
208
+ #: inc-options/backend_options.php:65
209
+ #: inc-options/backend_options.php:75
210
+ msgid "Hide"
211
+ msgstr "Paslėpti"
212
+
213
+ #@ adminimize
214
+ #: inc-options/backend_options.php:43
215
+ msgid "Only logout"
216
+ msgstr "Tik išsiregistravimas"
217
+
218
+ #@ adminimize
219
+ #: inc-options/backend_options.php:44
220
+ msgid "User &amp; Logout"
221
+ msgstr "Vartotojo &amp; Išsiregistravimas"
222
+
223
+ #@ adminimize
224
+ #: inc-options/backend_options.php:45
225
+ msgid "The &quot;User-Info-area&quot; is on the top right side of the backend. You can hide or reduced show."
226
+ msgstr "&quot;Vartotojo informacijos sritis&quot; yra vidinės pusės viršutinėje dešinėje dalyje. Galite sumažinti arba paslėpti vaizdą."
227
+
228
+ #@ adminimize
229
+ #: inc-options/backend_options.php:50
230
+ msgid "Change User-Info, redirect to"
231
+ msgstr "Keisti Vartotojo Informaciją, nukreipti į"
232
+
233
+ #@ adminimize
234
+ #: inc-options/backend_options.php:55
235
+ msgid "Frontpage of the Blog"
236
+ msgstr "Tinklaraščio Titulinis puslapis"
237
+
238
+ #@ adminimize
239
+ #: inc-options/backend_options.php:56
240
+ msgid "When the &quot;User-Info-area&quot; change it, then it is possible to change the redirect."
241
+ msgstr "Kuomet &quot;Vartotojo Informacijos sritis&quot; keičiama, įmanoma pakeisti peradresavimo parametrus"
242
+
243
+ #@ adminimize
244
+ #: inc-options/backend_options.php:60
245
+ msgid "Footer"
246
+ msgstr "Puslapinė poraštė"
247
+
248
+ #@ adminimize
249
+ #: inc-options/backend_options.php:66
250
+ msgid "The Footer-area can hide, include all links and details."
251
+ msgstr "Puslapinės poraštės sritį, įskaitant visas nuorodas ir išsamiąją informaciją, galima paslėpti."
252
+
253
+ #@ adminimize
254
+ #: inc-options/backend_options.php:31
255
+ #: inc-options/backend_options.php:85
256
+ #: inc-options/backend_options.php:95
257
+ #: inc-options/backend_options.php:105
258
+ #: inc-options/backend_options.php:115
259
+ #: inc-options/backend_options.php:125
260
+ msgid "Activate"
261
+ msgstr "Aktyvinti"
262
+
263
+ #@ adminimize
264
+ #: inc-options/backend_options.php:80
265
+ msgid "Timestamp"
266
+ msgstr "Laiko žyma"
267
+
268
+ #@ adminimize
269
+ #: inc-options/backend_options.php:86
270
+ msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
271
+ msgstr "Atidaro laiko žymos įrašo redaguojamus laukelius, nereikalaujant, jog kiekvieną kartą būtų paleidžiama \"Edit\" nuoroda."
272
+
273
+ #@ adminimize
274
+ #: inc-options/backend_options.php:90
275
+ msgid "Thickbox FullScreen"
276
+ msgstr "Pastorintas skydelis visame ekrane"
277
+
278
+ #@ adminimize
279
+ #: inc-options/backend_options.php:100
280
+ msgid "Flashuploader"
281
+ msgstr "Flash rinkmenų įkelėjas"
282
+
283
+ #@ adminimize
284
+ #: inc-options/backend_options.php:106
285
+ msgid "Disable the flashuploader and users use only the standard uploader."
286
+ msgstr "Išjungti flash rinkmenų įkelėją ir priversti vartotojus naudotis tik standartiniu įkelėju."
287
+
288
+ #@ adminimize
289
+ #: inc-options/backend_options.php:120
290
+ msgid "Advice in Footer"
291
+ msgstr "Aktyvus Puslapinėje poraštėje"
292
+
293
+ #@ adminimize
294
+ #: inc-options/backend_options.php:154
295
+ msgid "Manage Posts"
296
+ msgstr "Tvarkyti Įrašus"
297
+
298
+ #@ adminimize
299
+ #: inc-options/backend_options.php:155
300
+ msgid "Manage Pages"
301
+ msgstr "Tvarkyti Puslapius"
302
+
303
+ #@ adminimize
304
+ #: inc-options/backend_options.php:156
305
+ msgid "Write Post"
306
+ msgstr "Kurti Įrašą"
307
+
308
+ #@ adminimize
309
+ #: inc-options/backend_options.php:157
310
+ msgid "Write Page"
311
+ msgstr "Kurti Puslapį"
312
+
313
+ #@ adminimize
314
+ #: inc-options/backend_options.php:158
315
+ #: inc-options/write_post_options.php:92
316
+ msgid "Comments"
317
+ msgstr "Komentarai"
318
+
319
+ #@ adminimize
320
+ #: inc-options/backend_options.php:159
321
+ msgid "other Page"
322
+ msgstr "kitas Puslapis"
323
+
324
+ #@ adminimize
325
+ #: inc-options/backend_options.php:171
326
+ #: inc-options/dashboard_options.php:122
327
+ #: inc-options/global_options.php:122
328
+ #: inc-options/links_options.php:126
329
+ #: inc-options/menu_options.php:155
330
+ #: inc-options/wp_nav_menu_options.php:147
331
+ #: inc-options/write_cp_options.php:239
332
+ #: inc-options/write_page_options.php:187
333
+ #: inc-options/write_post_options.php:197
334
+ msgid "Update Options"
335
+ msgstr "Atnaujinimo Parinktys"
336
+
337
+ #@ adminimize
338
+ #: inc-options/global_options.php:16
339
+ #: inc-options/minimenu.php:29
340
+ msgid "Global options"
341
+ msgstr "Visuotinės parinktys"
342
+
343
+ #@ adminimize
344
+ #: inc-options/dashboard_options.php:33
345
+ #: inc-options/dashboard_options.php:97
346
+ #: inc-options/global_options.php:23
347
+ #: inc-options/global_options.php:97
348
+ #: inc-options/links_options.php:23
349
+ #: inc-options/links_options.php:101
350
+ #: inc-options/wp_nav_menu_options.php:22
351
+ #: inc-options/wp_nav_menu_options.php:122
352
+ #: inc-options/write_cp_options.php:204
353
+ #: inc-options/write_page_options.php:162
354
+ #: inc-options/write_post_options.php:172
355
+ msgid "Option"
356
+ msgstr "Parinktis"
357
+
358
+ #@ adminimize
359
+ #: inc-options/dashboard_options.php:36
360
+ #: inc-options/global_options.php:26
361
+ #: inc-options/links_options.php:26
362
+ #: inc-options/menu_options.php:26
363
+ #: inc-options/wp_nav_menu_options.php:25
364
+ #: inc-options/write_cp_options.php:32
365
+ #: inc-options/write_page_options.php:25
366
+ #: inc-options/write_post_options.php:26
367
+ msgid "Deactivate for"
368
+ msgstr "Deaktyvinti "
369
+
370
+ #@ adminimize
371
+ #: inc-options/global_options.php:48
372
+ msgid "Favorite Actions"
373
+ msgstr "Mėgstami Veiksmai"
374
+
375
+ #@ adminimize
376
+ #: inc-options/global_options.php:49
377
+ msgid "Screen-Meta"
378
+ msgstr "Vaizdas-Meta"
379
+
380
+ #@ adminimize
381
+ #@ default
382
+ #: inc-options/global_options.php:50
383
+ #: inc-options/wp_nav_menu_options.php:49
384
+ #: inc-options/write_cp_options.php:95
385
+ #: inc-options/write_page_options.php:77
386
+ #: inc-options/write_post_options.php:82
387
+ msgid "Screen Options"
388
+ msgstr "Vaizdavimo Parinktys"
389
+
390
+ #@ adminimize
391
+ #: inc-options/global_options.php:51
392
+ msgid "Contextual Help"
393
+ msgstr "Kontekstinė Pagalba"
394
+
395
+ #@ adminimize
396
+ #: inc-options/global_options.php:52
397
+ msgid "Admin Color Scheme"
398
+ msgstr "Administratoriaus Spalvų Schema"
399
+
400
+ #@ adminimize
401
+ #: inc-options/dashboard_options.php:96
402
+ #: inc-options/global_options.php:96
403
+ msgid "Your own options"
404
+ msgstr "Jūsų parinktys"
405
+
406
+ #@ adminimize
407
+ #: inc-options/dashboard_options.php:96
408
+ #: inc-options/global_options.php:96
409
+ #: inc-options/links_options.php:100
410
+ #: inc-options/wp_nav_menu_options.php:121
411
+ #: inc-options/write_cp_options.php:202
412
+ #: inc-options/write_page_options.php:161
413
+ #: inc-options/write_post_options.php:171
414
+ msgid "ID or class"
415
+ msgstr "Identifikatorius arba klasė"
416
+
417
+ #@ adminimize
418
+ #: inc-options/dashboard_options.php:103
419
+ #: inc-options/global_options.php:103
420
+ #: inc-options/links_options.php:107
421
+ #: inc-options/wp_nav_menu_options.php:128
422
+ #: inc-options/write_cp_options.php:211
423
+ #: inc-options/write_page_options.php:168
424
+ #: inc-options/write_post_options.php:178
425
+ msgid "It is possible to add your own IDs or classes from elements and tags. You can find IDs and classes with the FireBug Add-on for Firefox. Assign a value and the associate name per line."
426
+ msgstr "Įmanoma pridėti Jūsų asmeninius identifikatorius arba klases iš elementų ir gairių. Identifikatorių ir klasių paiešką galite vykdyti FireBug papildiniu Firefox naršyklei. Priskirkite reikšmę ir susiekite konkrečią eilutę su pavadinimu."
427
+
428
+ #@ adminimize
429
+ #: inc-options/dashboard_options.php:109
430
+ #: inc-options/global_options.php:109
431
+ #: inc-options/links_options.php:113
432
+ #: inc-options/wp_nav_menu_options.php:134
433
+ #: inc-options/write_cp_options.php:221
434
+ #: inc-options/write_page_options.php:174
435
+ #: inc-options/write_post_options.php:184
436
+ msgid "Possible nomination for ID or class. Separate multiple nominations through a carriage return."
437
+ msgstr "Galimi identifikatorių ir klasių pavadinimai. Išskirite daugybę norimų pavadinimų, grįždami į eilutės pradžią."
438
+
439
+ #@ adminimize
440
+ #: inc-options/dashboard_options.php:114
441
+ #: inc-options/global_options.php:114
442
+ #: inc-options/links_options.php:118
443
+ #: inc-options/wp_nav_menu_options.php:139
444
+ #: inc-options/write_cp_options.php:229
445
+ #: inc-options/write_page_options.php:179
446
+ #: inc-options/write_post_options.php:189
447
+ msgid "Possible IDs or classes. Separate multiple values through a carriage return."
448
+ msgstr "Įmanomi identifikatoriai ir klasės. Atskirkite daugybę reikšmių, grįždami į eilutės pradžią."
449
+
450
+ #@ adminimize
451
+ #: inc-options/menu_options.php:16
452
+ #: inc-options/minimenu.php:35
453
+ msgid "Menu Options"
454
+ msgstr "Meniu Parinktys"
455
+
456
+ #@ adminimize
457
+ #: inc-options/menu_options.php:23
458
+ msgid "Menu options - Menu, <span style=\\\"font-weight: 400;\\\">Submenu</span>"
459
+ msgstr "Meniu parinktys - Meniu, <span style=\"font-weight: 400;\">Submeniu</span>"
460
+
461
+ #@ adminimize
462
+ #@ default
463
+ #: inc-options/wp_nav_menu_options.php:48
464
+ #: inc-options/write_cp_options.php:94
465
+ #: inc-options/write_page_options.php:76
466
+ #: inc-options/write_post_options.php:81
467
+ msgid "Help"
468
+ msgstr "Pagalba"
469
+
470
+ #@ adminimize
471
+ #: inc-options/write_cp_options.php:96
472
+ #: inc-options/write_page_options.php:79
473
+ #: inc-options/write_post_options.php:84
474
+ msgid "Permalink"
475
+ msgstr "Nuolatinė nuoroda"
476
+
477
+ #@ adminimize
478
+ #: inc-options/write_post_options.php:89
479
+ msgid "Excerpt"
480
+ msgstr "Ištrauka"
481
+
482
+ #@ adminimize
483
+ #: inc-options/write_post_options.php:90
484
+ msgid "Trackbacks"
485
+ msgstr "Atgaliniai keliai"
486
+
487
+ #@ default
488
+ #: inc-options/write_page_options.php:80
489
+ #: inc-options/write_post_options.php:91
490
+ msgid "Custom Fields"
491
+ msgstr "Pritaikyti Laukeliai"
492
+
493
+ #@ adminimize
494
+ #: inc-options/write_cp_options.php:101
495
+ #: inc-options/write_post_options.php:93
496
+ msgid "Password Protect This Post"
497
+ msgstr "Apsaugoti šį Įrašą Slaptažodžiu"
498
+
499
+ #@ default
500
+ #: inc-options/write_post_options.php:94
501
+ msgid "Post Author"
502
+ msgstr "Įrašo Autorius"
503
+
504
+ #@ default
505
+ #: inc-options/write_post_options.php:95
506
+ msgid "Post Revisions"
507
+ msgstr "Įrašo Pataisos"
508
+
509
+ #@ adminimize
510
+ #: inc-options/write_cp_options.php:102
511
+ #: inc-options/write_post_options.php:96
512
+ msgid "Related, Shortcuts"
513
+ msgstr "Susiję, Šaukiniai"
514
+
515
+ #@ adminimize
516
+ #: inc-options/write_cp_options.php:104
517
+ #: inc-options/write_page_options.php:90
518
+ #: inc-options/write_post_options.php:98
519
+ msgid "h2: Advanced Options"
520
+ msgstr "h2: Išplėstinės Parinktys"
521
+
522
+ #@ adminimize
523
+ #: inc-options/write_cp_options.php:105
524
+ #: inc-options/write_page_options.php:91
525
+ #: inc-options/write_post_options.php:99
526
+ msgid "Media Buttons (all)"
527
+ msgstr "Media Mygtukai (visi)"
528
+
529
+ #@ adminimize
530
+ #: inc-options/write_cp_options.php:106
531
+ #: inc-options/write_page_options.php:92
532
+ #: inc-options/write_post_options.php:100
533
+ msgid "Word count"
534
+ msgstr "Žodžių skaičiuoklė"
535
+
536
+ #@ adminimize
537
+ #: inc-options/write_cp_options.php:107
538
+ #: inc-options/write_post_options.php:101
539
+ msgid "Post Slug"
540
+ msgstr "Įrašo Trumpinys"
541
+
542
+ #@ adminimize
543
+ #: inc-options/links_options.php:56
544
+ #: inc-options/write_cp_options.php:108
545
+ #: inc-options/write_page_options.php:94
546
+ #: inc-options/write_post_options.php:102
547
+ msgid "Publish Actions"
548
+ msgstr "Publikavimo Veiksmai"
549
+
550
+ #@ default
551
+ #@ adminimize
552
+ #: inc-options/write_cp_options.php:109
553
+ #: inc-options/write_page_options.php:95
554
+ #: inc-options/write_post_options.php:103
555
+ msgid "Discussion"
556
+ msgstr "Aptarimas"
557
+
558
+ #@ adminimize
559
+ #: inc-options/write_cp_options.php:120
560
+ #: inc-options/write_post_options.php:108
561
+ msgid "Post Thumbnail"
562
+ msgstr "Paskelbti Miniatūrą"
563
+
564
+ #@ adminimize
565
+ #: inc-options/write_page_options.php:81
566
+ msgid "Comments &amp; Pings"
567
+ msgstr "Komentarai &amp; Ryšio Patikrinimai"
568
+
569
+ #@ adminimize
570
+ #: inc-options/write_page_options.php:82
571
+ msgid "Password Protect This Page"
572
+ msgstr "Apsaugoti šį Puslapį Slaptažodžiu"
573
+
574
+ #@ adminimize
575
+ #: inc-options/write_page_options.php:83
576
+ msgid "Attributes"
577
+ msgstr "Požymiai"
578
+
579
+ #@ adminimize
580
+ #: inc-options/write_page_options.php:84
581
+ msgid "Page Template"
582
+ msgstr "Puslapio Šablonas"
583
+
584
+ #@ adminimize
585
+ #: inc-options/write_page_options.php:85
586
+ msgid "Page Order"
587
+ msgstr "Puslapio Tvarka"
588
+
589
+ #@ default
590
+ #: inc-options/write_page_options.php:86
591
+ msgid "Page Author"
592
+ msgstr "Puslapio Autorius"
593
+
594
+ #@ default
595
+ #: inc-options/write_page_options.php:87
596
+ msgid "Page Revisions"
597
+ msgstr "Puslapio Taisymai"
598
+
599
+ #@ adminimize
600
+ #: inc-options/write_page_options.php:88
601
+ msgid "Related"
602
+ msgstr "Susijęs"
603
+
604
+ #@ adminimize
605
+ #: inc-options/write_page_options.php:93
606
+ msgid "Page Slug"
607
+ msgstr "Puslapio Trumpinys"
608
+
609
+ #@ adminimize
610
+ #: inc-options/write_page_options.php:100
611
+ msgid "Page Image"
612
+ msgstr "Puslapio Paveikslėlis"
613
+
614
+ #@ adminimize
615
+ #: inc-options/menu_options.php:67
616
+ #: inc-options/menu_options.php:119
617
+ msgid "After activate the check box it heavy attitudes will change."
618
+ msgstr "Po žymimojo langelio aktyvavimo taps sunku keisti parametrus."
619
+
620
+ #@ default
621
+ #: inc-options/menu_options.php:102
622
+ msgid "Profile"
623
+ msgstr "Profilis"
624
+
625
+ #@ adminimize
626
+ #: inc-options/minimenu.php:38
627
+ #: inc-options/write_post_options.php:16
628
+ #: inc-options/write_post_options.php:23
629
+ msgid "Write options - Post"
630
+ msgstr "Rašymo parinktys - Įraše"
631
+
632
+ #@ adminimize
633
+ #: inc-options/write_post_options.php:171
634
+ msgid "Your own post options"
635
+ msgstr "Jūsų asmeninės įrašo parinktys"
636
+
637
+ #@ adminimize
638
+ #: inc-options/minimenu.php:41
639
+ #: inc-options/write_page_options.php:15
640
+ #: inc-options/write_page_options.php:22
641
+ msgid "Write options - Page"
642
+ msgstr "Rašymo parinktys - Puslapyje"
643
+
644
+ #@ adminimize
645
+ #: inc-options/write_page_options.php:161
646
+ msgid "Your own page options"
647
+ msgstr "Jūsų asmeninės puslapio parinktys"
648
+
649
+ #@ adminimize
650
+ #: inc-options/links_options.php:16
651
+ #: inc-options/minimenu.php:61
652
+ msgid "Links options"
653
+ msgstr "Nuorodų parinktys"
654
+
655
+ #@ default
656
+ #: inc-options/links_options.php:49
657
+ msgid "Name"
658
+ msgstr "Pavadinimas"
659
+
660
+ #@ default
661
+ #: inc-options/links_options.php:50
662
+ msgid "Web Address"
663
+ msgstr "Žiniatinklio Adresas"
664
+
665
+ #@ default
666
+ #: inc-options/links_options.php:51
667
+ msgid "Description"
668
+ msgstr "Aprašas"
669
+
670
+ #@ default
671
+ #: inc-options/links_options.php:53
672
+ msgid "Target"
673
+ msgstr "Tikslas"
674
+
675
+ #@ default
676
+ #: inc-options/links_options.php:54
677
+ msgid "Link Relationship (XFN)"
678
+ msgstr "Nuorodos Ryšys (XFN)"
679
+
680
+ #@ default
681
+ #: inc-options/links_options.php:55
682
+ msgid "Advanced"
683
+ msgstr "Išplėstinis"
684
+
685
+ #@ adminimize
686
+ #: inc-options/minimenu.php:67
687
+ #: inc-options/theme_options.php:15
688
+ #: inc-options/theme_options.php:100
689
+ msgid "Set Theme"
690
+ msgstr "Nustatyti Apipavidalinimą"
691
+
692
+ #@ adminimize
693
+ #: inc-options/theme_options.php:22
694
+ msgid "For better peformance with many users on your blog; load only userlist, when you will change the theme options for users."
695
+ msgstr "Didesniam veikimo našumui, Jūsų tinklaraštyje veikiant daug vartotojų; apipavidalinimo parinkčių vartotojams keitimo metu įkelkite tik vartotojų sąrašą."
696
+
697
+ #@ adminimize
698
+ #: inc-options/theme_options.php:25
699
+ msgid "Load User Data"
700
+ msgstr "Įkelti Vartotojo Informaciją"
701
+
702
+ #@ default
703
+ #: inc-options/theme_options.php:36
704
+ msgid "User-ID"
705
+ msgstr "Vartotojo Identifikatorius"
706
+
707
+ #@ default
708
+ #: inc-options/theme_options.php:37
709
+ msgid "Username"
710
+ msgstr "Vartotojo vardas"
711
+
712
+ #@ default
713
+ #: inc-options/theme_options.php:38
714
+ msgid "Display name publicly as"
715
+ msgstr "Viešai rodyti vardą kaip"
716
+
717
+ #@ default
718
+ #: inc-options/theme_options.php:39
719
+ msgid "Admin-Color Scheme"
720
+ msgstr "Administratoriaus Spalvų Schema"
721
+
722
+ #@ default
723
+ #: inc-options/theme_options.php:40
724
+ msgid "User Level"
725
+ msgstr "Vartotojo Lygmuo"
726
+
727
+ #@ default
728
+ #: inc-options/theme_options.php:41
729
+ msgid "Role"
730
+ msgstr "Vaidmuo"
731
+
732
+ #@ adminimize
733
+ #: inc-options/deinstall_options.php:15
734
+ #: inc-options/minimenu.php:73
735
+ msgid "Deinstall Options"
736
+ msgstr "Šalinimo Parinktys"
737
+
738
+ #@ adminimize
739
+ #: inc-options/deinstall_options.php:18
740
+ 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."
741
+ msgstr "Naudokite šią parinktį, norėdami ištrinti visus su šiuo papildiniu susijusius įrašus iš savo duomenų bazės. Po šio papildinio deaktyvavimo, norėdami jį pašalinti, iš duomenų <strong>netrinkite</strong> visų įrašų."
742
+
743
+ #@ adminimize
744
+ #: inc-options/deinstall_options.php:22
745
+ msgid "Delete Options"
746
+ msgstr "Pašalinti Parinktis"
747
+
748
+ #@ adminimize
749
+ #: inc-options/minimenu.php:23
750
+ #: inc-options/minimenu.php:83
751
+ msgid "About the plugin"
752
+ msgstr "Apie šį papildinį"
753
+
754
+ #@ adminimize
755
+ #: inc-options/minimenu.php:94
756
+ msgid "PayPal - The safer, easier way to pay online!"
757
+ msgstr "PayPal mokėjimų sistema - saugiausias būdas atsiskaityti internetu!"
758
+
759
+ #@ adminimize
760
+ #: inc-options/minimenu.php:89
761
+ msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a> or donate."
762
+ msgstr "Norite man padėkoti? Pažvelkite į mano <a href=\"http://bueltge.de/wunschliste/\">norų sąrašą</a> arba paaukokite."
763
+
764
+ #@ adminimize
765
+ #: adminimize.php:138
766
+ msgid "All entries in the database were imported."
767
+ msgstr "Visi įrašai importuoti į duomenų bazę."
768
+
769
+ #@ adminimize
770
+ #: inc-options/im_export_options.php:15
771
+ #: inc-options/minimenu.php:70
772
+ msgid "Export/Import Options"
773
+ msgstr "Eksportavimo/Importavimo Parinktys"
774
+
775
+ #@ adminimize
776
+ #: inc-options/im_export_options.php:19
777
+ msgid "Export"
778
+ msgstr "Eksportavimas"
779
+
780
+ #@ adminimize
781
+ #: inc-options/im_export_options.php:24
782
+ msgid "Export &raquo;"
783
+ msgstr "Eksportavimas &raquo;"
784
+
785
+ #@ adminimize
786
+ #: inc-options/im_export_options.php:28
787
+ msgid "Import"
788
+ msgstr "Importavimas"
789
+
790
+ #@ adminimize
791
+ #: inc-options/im_export_options.php:33
792
+ msgid "Choose a file from your computer"
793
+ msgstr "Pasirinkite savo kompiuteryje esančią rinkmeną"
794
+
795
+ #@ adminimize
796
+ #: inc-options/im_export_options.php:38
797
+ msgid "Upload file and import &raquo;"
798
+ msgstr "Nusiųsti rinkmeną ir importuoti ją &raquo;"
799
+
800
+ #@ adminimize
801
+ #: inc-options/minimenu.php:19
802
+ msgid "MiniMenu"
803
+ msgstr "MiniMeniu"
804
+
805
+ #@ adminimize
806
+ #: inc-options/backend_options.php:173
807
+ #: inc-options/dashboard_options.php:127
808
+ #: inc-options/deinstall_options.php:27
809
+ #: inc-options/global_options.php:124
810
+ #: inc-options/im_export_options.php:41
811
+ #: inc-options/links_options.php:129
812
+ #: inc-options/menu_options.php:157
813
+ #: inc-options/minimenu.php:99
814
+ #: inc-options/theme_options.php:105
815
+ #: inc-options/wp_nav_menu_options.php:149
816
+ #: inc-options/write_cp_options.php:244
817
+ #: inc-options/write_page_options.php:189
818
+ #: inc-options/write_post_options.php:199
819
+ msgid "scroll to top"
820
+ msgstr "slinkti iki viršaus"
821
+
822
+ #@ adminimize
823
+ #: inc-options/im_export_options.php:21
824
+ msgid "You can save a .seq file with your options."
825
+ msgstr "Jūs galite išsaugoti .seq rinkmeną su visomis individualiai nustatytomis parinktimis."
826
+
827
+ #@ adminimize
828
+ #: inc-options/im_export_options.php:31
829
+ msgid "Choose a Adminimize (<em>.seq</em>) file to upload, then click <em>Upload file and import</em>."
830
+ msgstr "Pasirinkite Adminimize (<em>.seq</em>)rinkmeną, kurią norite išsiųsti, tuomet spragtelkite <em>Nusiųsti rinkmeną ir importuoti ją</em>."
831
+
832
+ #@ adminimize
833
+ #: inc-options/backend_options.php:110
834
+ msgid "Category Height"
835
+ msgstr "Kategorijos Ilgis"
836
+
837
+ #@ adminimize
838
+ #: inc-options/backend_options.php:116
839
+ msgid "View the Meta Box with Categories in the full height, no scrollbar or whitespace."
840
+ msgstr "Peržiūrėti Meta Skydelį pilnu ilgiu, be slankjuostės ar matomų tarpų."
841
+
842
+ #@ adminimize
843
+ #: inc-options/backend_options.php:127
844
+ msgid "In the Footer you can display an advice for changing the Default-design, (x)HTML is possible."
845
+ msgstr "Puslapinėje poraštėje galite pateikti patarimus Numatytajam dizainui keisti, (x)HTML kodai galimi."
846
+
847
+ #@ adminimize
848
+ #: inc-options/backend_options.php:149
849
+ msgid "Dashboard deactivate, redirect to"
850
+ msgstr "Prietaisų skydelio deaktyvavimas, nukreipimas į"
851
+
852
+ #@ default
853
+ #@ adminimize
854
+ #: inc-options/write_cp_options.php:110
855
+ #: inc-options/write_page_options.php:96
856
+ #: inc-options/write_post_options.php:104
857
+ msgid "HTML Editor Button"
858
+ msgstr "HTML Redaktoriaus Mygtukas"
859
+
860
+ #@ adminimize
861
+ #: inc-options/backend_options.php:96
862
+ msgid "All Thickbox-function use the full area of the browser. Thickbox is for example in upload media-files."
863
+ msgstr "Pastorinto skydelio funkcijoms atlikti, reikalinga visa naršyklės matomoji zona. To pavyzdys - medijos rinkmenų įkėlimas."
864
+
865
+ #@ adminimize
866
+ #. translators: plugin header field 'PluginURI'
867
+ #: adminimize.php:0
868
+ msgid "http://bueltge.de/wordpress-admin-theme-adminimize/674/"
869
+ msgstr "http://bueltge.de/wordpress-admin-theme-adminimize/674/"
870
+
871
+ #@ adminimize
872
+ #. translators: plugin header field 'Description'
873
+ #: adminimize.php:0
874
+ msgid "Visually compresses the administratrive meta-boxes so that more admin page content can be initially seen. The plugin that lets you hide 'unnecessary' items from the WordPress administration menu, for alle roles of your install. You can also hide post meta controls on the edit-area to simplify the interface. It is possible to simplify the admin in different for all roles."
875
+ msgstr "Vizualiai suspaudžia administracinio pobūdžio meta-skydelius, tad matoma daug daugiau tinklapiui administruoti reikiamo turinio. Papildinys Jums suteikia galimbyę paslėpti \"nereikalingus\" elementus WordPress diegimo funkcijų administravimo meniu. Norėdami supaprastinti vartotojo sąsają, taip pat galite paslėpti įrašo meta-valdiklius redaktoriaus laukelyje. Įmanomas daugėlio administravimo funkcijų supaprastinimas."
876
+
877
+ #@ adminimize
878
+ #. translators: plugin header field 'Author'
879
+ #: adminimize.php:0
880
+ msgid "Frank B&uuml;ltge"
881
+ msgstr "Frank B&uuml;ltge"
882
+
883
+ #@ adminimize
884
+ #. translators: plugin header field 'AuthorURI'
885
+ #: adminimize.php:0
886
+ msgid "http://bueltge.de/"
887
+ msgstr "http://bueltge.de/"
888
+
889
+ #@ adminimize
890
+ #: inc-options/backend_options.php:70
891
+ msgid "Header"
892
+ msgstr "Puslapinė antraštė"
893
+
894
+ #@ adminimize
895
+ #: inc-options/backend_options.php:76
896
+ msgid "The Header-area can hide, include all links and details."
897
+ msgstr "Galite paslėpti puslapinę antraštę (įskaitant visas nuorodas ir kitus elementus)"
898
+
899
+ #@ adminimize
900
+ #: inc-options/write_page_options.php:78
901
+ #: inc-options/write_post_options.php:83
902
+ msgid "Title"
903
+ msgstr "Antraštė"
904
+
905
+ #@ adminimize
906
+ #: inc-options/backend_options.php:26
907
+ msgid "Exclude Super Admin"
908
+ msgstr "Išskirkite Super Administratorių"
909
+
910
+ #@ adminimize
911
+ #: inc-options/backend_options.php:32
912
+ msgid "Exclude the Super Admin on a WP Multisite Install from all limitations of this plugin."
913
+ msgstr "Visiškai papildinio kontrolei, išskirkite Super Administratorių WordPress Daugiapuslapinio diegimo metu."
914
+
915
+ #@ adminimize
916
+ #: inc-options/backend_options.php:162
917
+ msgid "You have deactivated the Dashboard, please select a page for redirection or define custom url, include http://?"
918
+ msgstr "Jūs deaktyvavote Prietaisų skydelį, prašome nurodyti puslapį, pritaikytosios url nuorodos peradresavimui ar apibrėžimui. Nuorodą pradėkite http://?"
919
+
920
+ #@ adminimize
921
+ #: inc-options/global_options.php:47
922
+ msgid "Admin Bar"
923
+ msgstr "Administratoriaus Juosta"
924
+
925
+ #@ adminimize
926
+ #: inc-options/minimenu.php:64
927
+ msgid "WP Nav Menu"
928
+ msgstr "WordPress Naršymo Meniu"
929
+
930
+ #@ adminimize
931
+ #: inc-options/wp_nav_menu_options.php:15
932
+ msgid "WP Nav Menu options"
933
+ msgstr "WordPress Naršymo Meniu parinktys"
934
+
935
+ #@ adminimize
936
+ #@ default
937
+ #: inc-options/wp_nav_menu_options.php:50
938
+ #: inc-options/wp_nav_menu_options.php:56
939
+ msgid "Theme Locations"
940
+ msgstr "Apipavidalinimo Adresai (vietos)"
941
+
942
+ #@ adminimize
943
+ #: inc-options/wp_nav_menu_options.php:51
944
+ msgid "Custom Links"
945
+ msgstr "Individualizuotos Nuorodos"
946
+
947
+ #@ adminimize
948
+ #: inc-options/wp_nav_menu_options.php:52
949
+ msgid "Add menu"
950
+ msgstr "Pridėti meniu"
951
+
952
+ #@ adminimize
953
+ #: inc-options/write_cp_options.php:98
954
+ #: inc-options/write_post_options.php:86
955
+ msgid "Format"
956
+ msgstr "Formatas"
957
+
958
+ #@ adminimize
959
+ #: inc-options/write_cp_options.php:103
960
+ #: inc-options/write_page_options.php:89
961
+ #: inc-options/write_post_options.php:97
962
+ msgid "Messages"
963
+ msgstr "Žinutės"
964
+
965
+ #@ adminimize
966
+ #: inc-options/write_cp_options.php:126
967
+ #: inc-options/write_page_options.php:104
968
+ #: inc-options/write_post_options.php:112
969
+ msgid "Quick Edit Link"
970
+ msgstr "Greitoji Redagavimo Nuoroda"
971
+
972
+ #@ adminimize
973
+ #: inc-options/write_cp_options.php:127
974
+ #: inc-options/write_cp_options.php:131
975
+ #: inc-options/write_cp_options.php:134
976
+ #: inc-options/write_cp_options.php:137
977
+ #: inc-options/write_page_options.php:105
978
+ #: inc-options/write_page_options.php:110
979
+ #: inc-options/write_page_options.php:113
980
+ #: inc-options/write_post_options.php:113
981
+ #: inc-options/write_post_options.php:117
982
+ #: inc-options/write_post_options.php:120
983
+ #: inc-options/write_post_options.php:123
984
+ msgid "QE"
985
+ msgstr "Greitasis Redaktorius"
986
+
987
+ #@ adminimize
988
+ #: inc-options/write_cp_options.php:127
989
+ #: inc-options/write_page_options.php:105
990
+ #: inc-options/write_post_options.php:113
991
+ msgid "Inline Edit Left"
992
+ msgstr "Įterptoji Redagavimo parinktis Kairėje"
993
+
994
+ #@ adminimize
995
+ #: inc-options/write_cp_options.php:128
996
+ #: inc-options/write_page_options.php:106
997
+ #: inc-options/write_post_options.php:114
998
+ msgid "All Labels"
999
+ msgstr "Visos Žymos"
1000
+
1001
+ #@ adminimize
1002
+ #: inc-options/write_page_options.php:107
1003
+ msgid "Date"
1004
+ msgstr "Data"
1005
+
1006
+ #@ adminimize
1007
+ #: inc-options/write_cp_options.php:130
1008
+ #: inc-options/write_page_options.php:109
1009
+ #: inc-options/write_post_options.php:116
1010
+ msgid "Password and Private"
1011
+ msgstr "Slaptažodis ir Privatumas"
1012
+
1013
+ #@ adminimize
1014
+ #: inc-options/write_cp_options.php:134
1015
+ #: inc-options/write_page_options.php:110
1016
+ #: inc-options/write_post_options.php:120
1017
+ msgid "Inline Edit Right"
1018
+ msgstr "Įterptoji Redagavimo parinktis Dešinėje"
1019
+
1020
+ #@ adminimize
1021
+ #: inc-options/write_page_options.php:111
1022
+ msgid "Parent, Order, Template"
1023
+ msgstr "Hierarchija, Tvarka, Šablonas"
1024
+
1025
+ #@ adminimize
1026
+ #: inc-options/write_page_options.php:112
1027
+ msgid "Status"
1028
+ msgstr "Būsena"
1029
+
1030
+ #@ adminimize
1031
+ #: inc-options/write_cp_options.php:137
1032
+ #: inc-options/write_page_options.php:113
1033
+ #: inc-options/write_post_options.php:123
1034
+ msgid "Cancel/Save Button"
1035
+ msgstr "Atšaukti/Įrašyti Mygtuką"
1036
+
1037
+ #@ adminimize
1038
+ #: inc-options/write_cp_options.php:131
1039
+ #: inc-options/write_post_options.php:117
1040
+ msgid "Inline Edit Center"
1041
+ msgstr "Įterptoji Redagavimo parinktis Centre"
1042
+
1043
+ #@ adminimize
1044
+ #: inc-options/write_cp_options.php:132
1045
+ #: inc-options/write_post_options.php:118
1046
+ msgid "Categories Title"
1047
+ msgstr "Kategorijų Antraštės"
1048
+
1049
+ #@ adminimize
1050
+ #: inc-options/write_cp_options.php:133
1051
+ #: inc-options/write_post_options.php:119
1052
+ msgid "Categories List"
1053
+ msgstr "Kategorijų Sąrašas"
1054
+
1055
+ #@ adminimize
1056
+ #: inc-options/write_cp_options.php:136
1057
+ #: inc-options/write_post_options.php:122
1058
+ msgid "Status, Sticky"
1059
+ msgstr "Statusas, Kibus"
1060
+
1061
+ #@ adminimize
1062
+ #: inc-options/links_options.php:100
1063
+ msgid "Your own Link options"
1064
+ msgstr "Jūsų asmeninės Nuorodų parinktys"
1065
+
1066
+ #@ adminimize
1067
+ #: inc-options/minimenu.php:52
1068
+ #: inc-options/write_cp_options.php:21
1069
+ #: inc-options/write_cp_options.php:29
1070
+ msgid "Write options"
1071
+ msgstr "Rašymo parinktys"
1072
+
1073
+ #@ adminimize
1074
+ #: inc-options/wp_nav_menu_options.php:121
1075
+ msgid "Your own Nav Menu options"
1076
+ msgstr "Jūsų asmeninės Naršymo Meniu parinktys"
1077
+
1078
+ #@ adminimize
1079
+ #: inc-options/write_cp_options.php:201
1080
+ #, php-format
1081
+ msgid "Your own %s options"
1082
+ msgstr "Jūsų asmeninės %s Parinktys"
1083
+
1084
+ #@ adminimize
1085
+ #: inc-options/dashboard_options.php:17
1086
+ #: inc-options/minimenu.php:32
1087
+ msgid "Dashboard options"
1088
+ msgstr "Prietaisų skydelio parinktys"
1089
+
1090
+ #@ adminimize
1091
+ #: inc-options/dashboard_options.php:25
1092
+ msgid "To complete the installation for Dashboard Widgets you must visit your dashboard once and then come back to Settings > Adminimize to configure who has access to each widget."
1093
+ msgstr "Norėdami baigti Prietaisų skydelio valdiklių įdiegimą ir nustatyti kurie vartotojai turi priėjimą prie atskirų valdiklių, privalote vieną kartą apsilankyti prietaisų skydelyje ir tuomet sugrįžti į Nustatymus > Adminimize."
1094
+
1095
+ #@ adminimize
1096
+ #: inc-options/minimenu.php:87
1097
+ msgid "Further information: Visit the <a href=\"http://wordpress.org/extend/plugins/adminimize/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
1098
+ msgstr "Papildoma informacija: Norėdami sužinoti daugiau arba atnaujinti šį papildinį, apsilankykite <a href=\"http://wordpress.org/extend/plugins/adminimize/\">Papildinių tinklapyje</a>. "
1099
+
1100
+ #@ adminimize
1101
+ #. translators: plugin header field 'Version'
1102
+ #: adminimize.php:0
1103
+ msgid "1.7.26"
1104
+ msgstr "1.7.26"
1105
+
1106
+ #@ adminimize
1107
+ #: inc-options/settings_notice.php:17
1108
+ msgid "Attention: The settings page ignores these Menu settings and views the menu with all entries!"
1109
+ msgstr "Dėmesio: Nuostatų puslapis nepaiso šio meniu nustatymų ir supranta meniu kaip sąrašą su visais įrašais."
1110
+
1111
+ #@ default
1112
+ #: inc-setup/admin-bar.php:239
1113
+ msgid "Network Admin"
1114
+ msgstr "Tinklo Administratorius"
1115
+
1116
+ #@ default
1117
+ #: inc-setup/admin-bar.php:241
1118
+ msgid "Site Admin"
1119
+ msgstr "Tinklapio Administratorius"
1120
+
languages/adminimize-ro_RO.mo ADDED
Binary file
languages/adminimize-ro_RO.po ADDED
@@ -0,0 +1,1109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #@ adminimize
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: Web Geeks\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+
13
+ #@ adminimize
14
+ #: adminimize.php:127
15
+ msgid "Unknown error."
16
+ msgstr "Eroare necunoscută."
17
+
18
+ #@ adminimize
19
+ #: adminimize.php:136
20
+ msgid "The updates were saved."
21
+ msgstr "S-au salvat actualizările."
22
+
23
+ #@ adminimize
24
+ #: adminimize.php:137
25
+ msgid "You have not enough rights to edit entries in the database."
26
+ msgstr "Insuficiente drepturi pentru a edita intrările în baza de date."
27
+
28
+ #@ adminimize
29
+ #: adminimize.php:139
30
+ msgid "All entries in the database were deleted."
31
+ msgstr "Au fost elimină toate intrările din baza de date."
32
+
33
+ #@ adminimize
34
+ #: adminimize.php:140
35
+ msgid "Set the checkbox on deinstall-button."
36
+ msgstr "Setaţi caseta de selectare pe butonul stingere."
37
+
38
+ #@ adminimize
39
+ #: adminimize.php:141
40
+ msgid "Can't load menu and submenu."
41
+ msgstr "Imposibil de încărcat meniului şi submeniului."
42
+
43
+ #@ adminimize
44
+ #: adminimize.php:142
45
+ msgid "Backend-Theme was activated!"
46
+ msgstr "Backend-tema a fost activat!"
47
+
48
+ #@ adminimize
49
+ #: adminimize.php:143
50
+ msgid "Load user data to themes was successful."
51
+ msgstr "Încărcare date utilizator teme a fost de succes."
52
+
53
+ #@ default
54
+ #@ adminimize
55
+ #: adminimize.php:468
56
+ #: inc-options/links_options.php:52
57
+ #: inc-options/write_cp_options.php:99
58
+ #: inc-options/write_post_options.php:87
59
+ msgid "Categories"
60
+ msgstr "Categorii"
61
+
62
+ #@ default
63
+ #: adminimize.php:474
64
+ #: adminimize.php:485
65
+ msgid "+ Add New Category"
66
+ msgstr "+ Adauga categorie nouă"
67
+
68
+ #@ default
69
+ #: adminimize.php:476
70
+ #: adminimize.php:487
71
+ msgid "New category name"
72
+ msgstr "Noul nume categorie"
73
+
74
+ #@ default
75
+ #: adminimize.php:477
76
+ #: adminimize.php:489
77
+ msgid "Parent category"
78
+ msgstr "Categoria părinte"
79
+
80
+ #@ default
81
+ #: adminimize.php:478
82
+ #: adminimize.php:490
83
+ msgid "Add"
84
+ msgstr "Adăuga"
85
+
86
+ #@ default
87
+ #@ adminimize
88
+ #: adminimize.php:487
89
+ #: inc-options/write_cp_options.php:100
90
+ #: inc-options/write_post_options.php:88
91
+ msgid "Add New Category"
92
+ msgstr "Adăugaţi noua categorie"
93
+
94
+ #@ adminimize
95
+ #@ default
96
+ #: inc-options/write_cp_options.php:97
97
+ #: inc-options/write_cp_options.php:135
98
+ #: inc-options/write_post_options.php:85
99
+ #: inc-options/write_post_options.php:121
100
+ msgid "Tags"
101
+ msgstr "Tag-uri"
102
+
103
+ #@ default
104
+ #: adminimize.php:572
105
+ #: adminimize.php:575
106
+ msgid "Dashboard"
107
+ msgstr "Tabloul de bord"
108
+
109
+ #@ default
110
+ #: adminimize.php:636
111
+ #: adminimize.php:638
112
+ #: adminimize.php:659
113
+ #: adminimize.php:661
114
+ #: adminimize.php:1034
115
+ #: inc-setup/admin-bar.php:57
116
+ #: inc-setup/admin-bar.php:81
117
+ #: inc-setup/admin-bar.php:250
118
+ msgid "Log Out"
119
+ msgstr "Conectaţi-vă"
120
+
121
+ #@ adminimize
122
+ #: inc-options/minimenu.php:85
123
+ msgid "Version"
124
+ msgstr "Versiunea"
125
+
126
+ #@ default
127
+ #: inc-options/write_cp_options.php:129
128
+ #: inc-options/write_page_options.php:108
129
+ #: inc-options/write_post_options.php:115
130
+ msgid "Author"
131
+ msgstr "Autor"
132
+
133
+ #@ default
134
+ #: adminimize.php:1067
135
+ msgid "Settings"
136
+ msgstr "Setări"
137
+
138
+ #@ adminimize
139
+ #. translators: plugin header field 'Name'
140
+ #: adminimize.php:0
141
+ #: adminimize.php:1086
142
+ #: inc-options/minimenu.php:14
143
+ msgid "Adminimize"
144
+ msgstr "Adminimize"
145
+
146
+ #@ adminimize
147
+ #: adminimize.php:1085
148
+ msgid "Adminimize Options"
149
+ msgstr "Opţiuni Adminimize"
150
+
151
+ #@ default
152
+ #: adminimize.php:1111
153
+ msgid "Cheatin’ uh?"
154
+ msgstr "Cheatin's uh?"
155
+
156
+ #@ default
157
+ #: inc-options/backend_options.php:15
158
+ #: inc-options/dashboard_options.php:16
159
+ #: inc-options/deinstall_options.php:14
160
+ #: inc-options/global_options.php:15
161
+ #: inc-options/im_export_options.php:14
162
+ #: inc-options/links_options.php:15
163
+ #: inc-options/menu_options.php:15
164
+ #: inc-options/minimenu.php:18
165
+ #: inc-options/minimenu.php:82
166
+ #: inc-options/theme_options.php:14
167
+ #: inc-options/wp_nav_menu_options.php:14
168
+ #: inc-options/write_cp_options.php:19
169
+ #: inc-options/write_page_options.php:14
170
+ #: inc-options/write_post_options.php:15
171
+ msgid "Click to toggle"
172
+ msgstr "Faceţi clic pentru a comuta"
173
+
174
+ #@ adminimize
175
+ #: inc-options/backend_options.php:16
176
+ #: inc-options/minimenu.php:26
177
+ msgid "Backend Options"
178
+ msgstr "Opţiuni de backend"
179
+
180
+ #@ adminimize
181
+ #: inc-options/backend_options.php:37
182
+ msgid "User-Info"
183
+ msgstr "Utilizator-Info"
184
+
185
+ #@ adminimize
186
+ #: inc-options/backend_options.php:30
187
+ #: inc-options/backend_options.php:41
188
+ #: inc-options/backend_options.php:54
189
+ #: inc-options/backend_options.php:64
190
+ #: inc-options/backend_options.php:74
191
+ #: inc-options/backend_options.php:84
192
+ #: inc-options/backend_options.php:94
193
+ #: inc-options/backend_options.php:104
194
+ #: inc-options/backend_options.php:114
195
+ #: inc-options/backend_options.php:124
196
+ #: inc-options/backend_options.php:153
197
+ msgid "Default"
198
+ msgstr "Implicit"
199
+
200
+ #@ adminimize
201
+ #: inc-options/backend_options.php:42
202
+ #: inc-options/backend_options.php:65
203
+ #: inc-options/backend_options.php:75
204
+ msgid "Hide"
205
+ msgstr "Ascunde"
206
+
207
+ #@ adminimize
208
+ #: inc-options/backend_options.php:43
209
+ msgid "Only logout"
210
+ msgstr "Numai logout"
211
+
212
+ #@ adminimize
213
+ #: inc-options/backend_options.php:44
214
+ msgid "User & Logout"
215
+ msgstr "Utilizator & Logout"
216
+
217
+ #@ adminimize
218
+ #: inc-options/backend_options.php:50
219
+ msgid "Change User-Info, redirect to"
220
+ msgstr "Schimbare utilizator-Info, redirect la"
221
+
222
+ #@ adminimize
223
+ #: inc-options/backend_options.php:55
224
+ msgid "Frontpage of the Blog"
225
+ msgstr "FrontPage blog-ul"
226
+
227
+ #@ adminimize
228
+ #: inc-options/backend_options.php:56
229
+ msgid "When the \"User-Info-area\" change it, then it is possible to change the redirect."
230
+ msgstr "Atunci când \"Utilizator-Info-zona\" schimba, atunci este posibil să modificaţi redirecţionare."
231
+
232
+ #@ adminimize
233
+ #: inc-options/backend_options.php:60
234
+ msgid "Footer"
235
+ msgstr "Subsol"
236
+
237
+ #@ adminimize
238
+ #: inc-options/backend_options.php:66
239
+ msgid "The Footer-area can hide, include all links and details."
240
+ msgstr "Zona de subsol pot ascunde, includ toate link-uri şi detalii."
241
+
242
+ #@ adminimize
243
+ #: inc-options/backend_options.php:31
244
+ #: inc-options/backend_options.php:85
245
+ #: inc-options/backend_options.php:95
246
+ #: inc-options/backend_options.php:105
247
+ #: inc-options/backend_options.php:115
248
+ #: inc-options/backend_options.php:125
249
+ msgid "Activate"
250
+ msgstr "Activa"
251
+
252
+ #@ adminimize
253
+ #: inc-options/backend_options.php:80
254
+ msgid "Timestamp"
255
+ msgstr "Timestamp"
256
+
257
+ #@ adminimize
258
+ #: inc-options/backend_options.php:86
259
+ msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
260
+ msgstr " link-ul de fiecare dată."
261
+
262
+ #@ adminimize
263
+ #: inc-options/backend_options.php:90
264
+ msgid "Thickbox FullScreen"
265
+ msgstr "Thickbox FullScreen"
266
+
267
+ #@ adminimize
268
+ #: inc-options/backend_options.php:100
269
+ msgid "Flashuploader"
270
+ msgstr "Flashuploader"
271
+
272
+ #@ adminimize
273
+ #: inc-options/backend_options.php:106
274
+ msgid "Disable the flashuploader and users use only the standard uploader."
275
+ msgstr "Dezactivaţi flashuploader şi utilizatorii utiliza numai uploader standard."
276
+
277
+ #@ adminimize
278
+ #: inc-options/backend_options.php:120
279
+ msgid "Advice in Footer"
280
+ msgstr "Consiliere în subsol"
281
+
282
+ #@ adminimize
283
+ #: inc-options/backend_options.php:154
284
+ msgid "Manage Posts"
285
+ msgstr "Gestionarea posturilor"
286
+
287
+ #@ adminimize
288
+ #: inc-options/backend_options.php:155
289
+ msgid "Manage Pages"
290
+ msgstr "Gestionaţi pagini"
291
+
292
+ #@ adminimize
293
+ #: inc-options/backend_options.php:156
294
+ msgid "Write Post"
295
+ msgstr "Scrie Post"
296
+
297
+ #@ adminimize
298
+ #: inc-options/backend_options.php:157
299
+ msgid "Write Page"
300
+ msgstr "Scrie pagină"
301
+
302
+ #@ adminimize
303
+ #: inc-options/backend_options.php:158
304
+ #: inc-options/write_post_options.php:92
305
+ msgid "Comments"
306
+ msgstr "Comentarii"
307
+
308
+ #@ adminimize
309
+ #: inc-options/backend_options.php:159
310
+ msgid "other Page"
311
+ msgstr "alte pagini"
312
+
313
+ #@ adminimize
314
+ #: inc-options/backend_options.php:171
315
+ #: inc-options/dashboard_options.php:122
316
+ #: inc-options/global_options.php:122
317
+ #: inc-options/links_options.php:126
318
+ #: inc-options/menu_options.php:155
319
+ #: inc-options/wp_nav_menu_options.php:147
320
+ #: inc-options/write_cp_options.php:239
321
+ #: inc-options/write_page_options.php:187
322
+ #: inc-options/write_post_options.php:197
323
+ msgid "Update Options"
324
+ msgstr "Opţiuni de actualizare"
325
+
326
+ #@ adminimize
327
+ #: inc-options/global_options.php:16
328
+ #: inc-options/minimenu.php:29
329
+ msgid "Global options"
330
+ msgstr "Opţiuni globale"
331
+
332
+ #@ adminimize
333
+ #: inc-options/dashboard_options.php:33
334
+ #: inc-options/dashboard_options.php:97
335
+ #: inc-options/global_options.php:23
336
+ #: inc-options/global_options.php:97
337
+ #: inc-options/links_options.php:23
338
+ #: inc-options/links_options.php:101
339
+ #: inc-options/wp_nav_menu_options.php:22
340
+ #: inc-options/wp_nav_menu_options.php:122
341
+ #: inc-options/write_cp_options.php:204
342
+ #: inc-options/write_page_options.php:162
343
+ #: inc-options/write_post_options.php:172
344
+ msgid "Option"
345
+ msgstr "Opţiunea"
346
+
347
+ #@ adminimize
348
+ #: inc-options/dashboard_options.php:36
349
+ #: inc-options/global_options.php:26
350
+ #: inc-options/links_options.php:26
351
+ #: inc-options/menu_options.php:26
352
+ #: inc-options/wp_nav_menu_options.php:25
353
+ #: inc-options/write_cp_options.php:32
354
+ #: inc-options/write_page_options.php:25
355
+ #: inc-options/write_post_options.php:26
356
+ msgid "Deactivate for"
357
+ msgstr "Dezactiva pentru"
358
+
359
+ #@ adminimize
360
+ #: inc-options/global_options.php:48
361
+ msgid "Favorite Actions"
362
+ msgstr "Acţiuni preferat"
363
+
364
+ #@ adminimize
365
+ #: inc-options/global_options.php:49
366
+ msgid "Screen-Meta"
367
+ msgstr "Ecran-Meta"
368
+
369
+ #@ adminimize
370
+ #@ default
371
+ #: inc-options/global_options.php:50
372
+ #: inc-options/wp_nav_menu_options.php:49
373
+ #: inc-options/write_cp_options.php:95
374
+ #: inc-options/write_page_options.php:77
375
+ #: inc-options/write_post_options.php:82
376
+ msgid "Screen Options"
377
+ msgstr "Opţiunile de ecran"
378
+
379
+ #@ adminimize
380
+ #: inc-options/global_options.php:51
381
+ msgid "Contextual Help"
382
+ msgstr "Ajutor contextual"
383
+
384
+ #@ adminimize
385
+ #: inc-options/global_options.php:52
386
+ msgid "Admin Color Scheme"
387
+ msgstr "Schema de culori admin"
388
+
389
+ #@ adminimize
390
+ #: inc-options/dashboard_options.php:96
391
+ #: inc-options/global_options.php:96
392
+ msgid "Your own options"
393
+ msgstr "Opţiunile proprii"
394
+
395
+ #@ adminimize
396
+ #: inc-options/dashboard_options.php:96
397
+ #: inc-options/global_options.php:96
398
+ #: inc-options/links_options.php:100
399
+ #: inc-options/wp_nav_menu_options.php:121
400
+ #: inc-options/write_cp_options.php:202
401
+ #: inc-options/write_page_options.php:161
402
+ #: inc-options/write_post_options.php:171
403
+ msgid "ID or class"
404
+ msgstr "ID-ul sau clasa"
405
+
406
+ #@ adminimize
407
+ #: inc-options/dashboard_options.php:103
408
+ #: inc-options/global_options.php:103
409
+ #: inc-options/links_options.php:107
410
+ #: inc-options/wp_nav_menu_options.php:128
411
+ #: inc-options/write_cp_options.php:211
412
+ #: inc-options/write_page_options.php:168
413
+ #: inc-options/write_post_options.php:178
414
+ msgid "It is possible to add your own IDs or classes from elements and tags. You can find IDs and classes with the FireBug Add-on for Firefox. Assign a value and the associate name per line."
415
+ msgstr "Este posibil să adăugaţi propriul ID-uri sau clase de la elemente şi Tag-uri. Puteţi găsi ID-uri şi clasele cu FireBug Add-on pentru Firefox. Asociaţi o valoare şi numele asociat pe linie."
416
+
417
+ #@ adminimize
418
+ #: inc-options/dashboard_options.php:109
419
+ #: inc-options/global_options.php:109
420
+ #: inc-options/links_options.php:113
421
+ #: inc-options/wp_nav_menu_options.php:134
422
+ #: inc-options/write_cp_options.php:221
423
+ #: inc-options/write_page_options.php:174
424
+ #: inc-options/write_post_options.php:184
425
+ msgid "Possible nomination for ID or class. Separate multiple nominations through a carriage return."
426
+ msgstr "Nominalizarea posibil pentru ID-ul sau clasa. Separaţi mai multe nominalizări printr-un retur de car."
427
+
428
+ #@ adminimize
429
+ #: inc-options/dashboard_options.php:114
430
+ #: inc-options/global_options.php:114
431
+ #: inc-options/links_options.php:118
432
+ #: inc-options/wp_nav_menu_options.php:139
433
+ #: inc-options/write_cp_options.php:229
434
+ #: inc-options/write_page_options.php:179
435
+ #: inc-options/write_post_options.php:189
436
+ msgid "Possible IDs or classes. Separate multiple values through a carriage return."
437
+ msgstr "ID-uri posibil sau clase. Separa valori multiple prin un retur de car."
438
+
439
+ #@ adminimize
440
+ #: inc-options/menu_options.php:16
441
+ #: inc-options/minimenu.php:35
442
+ msgid "Menu Options"
443
+ msgstr "Meniul Opţiuni"
444
+
445
+ #@ adminimize
446
+ #: inc-options/menu_options.php:23
447
+ msgid "Menu options - Menu, <span style=\\\"font-weight: 400;\\\">Submenu</span>"
448
+ msgstr "Opţiunile de meniu - Meniu, <span style=\\\"font-weight: 400;\\\"> Submeniu </ span>"
449
+
450
+ #@ adminimize
451
+ #@ default
452
+ #: inc-options/wp_nav_menu_options.php:48
453
+ #: inc-options/write_cp_options.php:94
454
+ #: inc-options/write_page_options.php:76
455
+ #: inc-options/write_post_options.php:81
456
+ msgid "Help"
457
+ msgstr "ajutor"
458
+
459
+ #@ adminimize
460
+ #: inc-options/write_cp_options.php:96
461
+ #: inc-options/write_page_options.php:79
462
+ #: inc-options/write_post_options.php:84
463
+ msgid "Permalink"
464
+ msgstr "Permalink"
465
+
466
+ #@ adminimize
467
+ #: inc-options/write_post_options.php:89
468
+ msgid "Excerpt"
469
+ msgstr "Fragment"
470
+
471
+ #@ adminimize
472
+ #: inc-options/write_post_options.php:90
473
+ msgid "Trackbacks"
474
+ msgstr "Urmăritori"
475
+
476
+ #@ default
477
+ #: inc-options/write_page_options.php:80
478
+ #: inc-options/write_post_options.php:91
479
+ msgid "Custom Fields"
480
+ msgstr "Câmpuri particularizate"
481
+
482
+ #@ adminimize
483
+ #: inc-options/write_cp_options.php:101
484
+ #: inc-options/write_post_options.php:93
485
+ msgid "Password Protect This Post"
486
+ msgstr "Password a proteja acest Post"
487
+
488
+ #@ default
489
+ #: inc-options/write_post_options.php:94
490
+ msgid "Post Author"
491
+ msgstr "Autor de post"
492
+
493
+ #@ default
494
+ #: inc-options/write_post_options.php:95
495
+ msgid "Post Revisions"
496
+ msgstr "Revizii post"
497
+
498
+ #@ adminimize
499
+ #: inc-options/write_cp_options.php:102
500
+ #: inc-options/write_post_options.php:96
501
+ msgid "Related, Shortcuts"
502
+ msgstr "Legate, comenzi rapide"
503
+
504
+ #@ adminimize
505
+ #: inc-options/write_cp_options.php:104
506
+ #: inc-options/write_page_options.php:90
507
+ #: inc-options/write_post_options.php:98
508
+ msgid "h2: Advanced Options"
509
+ msgstr "H2: opţiuni avansate"
510
+
511
+ #@ adminimize
512
+ #: inc-options/write_cp_options.php:105
513
+ #: inc-options/write_page_options.php:91
514
+ #: inc-options/write_post_options.php:99
515
+ msgid "Media Buttons (all)"
516
+ msgstr "Butoane media (toate)"
517
+
518
+ #@ adminimize
519
+ #: inc-options/write_cp_options.php:106
520
+ #: inc-options/write_page_options.php:92
521
+ #: inc-options/write_post_options.php:100
522
+ msgid "Word count"
523
+ msgstr "Word count"
524
+
525
+ #@ adminimize
526
+ #: inc-options/write_cp_options.php:107
527
+ #: inc-options/write_post_options.php:101
528
+ msgid "Post Slug"
529
+ msgstr "Post Slug"
530
+
531
+ #@ adminimize
532
+ #: inc-options/links_options.php:56
533
+ #: inc-options/write_cp_options.php:108
534
+ #: inc-options/write_page_options.php:94
535
+ #: inc-options/write_post_options.php:102
536
+ msgid "Publish Actions"
537
+ msgstr "Publică acţiunile"
538
+
539
+ #@ default
540
+ #@ adminimize
541
+ #: inc-options/write_cp_options.php:109
542
+ #: inc-options/write_page_options.php:95
543
+ #: inc-options/write_post_options.php:103
544
+ msgid "Discussion"
545
+ msgstr "Discuţie"
546
+
547
+ #@ adminimize
548
+ #: inc-options/write_cp_options.php:120
549
+ #: inc-options/write_post_options.php:108
550
+ msgid "Post Thumbnail"
551
+ msgstr "Miniaturi post"
552
+
553
+ #@ adminimize
554
+ #: inc-options/write_page_options.php:81
555
+ msgid "Comments & Pings"
556
+ msgstr "Comentarii & Ping-uri"
557
+
558
+ #@ adminimize
559
+ #: inc-options/write_page_options.php:82
560
+ msgid "Password Protect This Page"
561
+ msgstr "Password a proteja această pagină"
562
+
563
+ #@ adminimize
564
+ #: inc-options/write_page_options.php:83
565
+ msgid "Attributes"
566
+ msgstr "Atribute"
567
+
568
+ #@ adminimize
569
+ #: inc-options/write_page_options.php:84
570
+ msgid "Page Template"
571
+ msgstr "Şablon de pagină"
572
+
573
+ #@ adminimize
574
+ #: inc-options/write_page_options.php:85
575
+ msgid "Page Order"
576
+ msgstr "Ordinea paginilor"
577
+
578
+ #@ default
579
+ #: inc-options/write_page_options.php:86
580
+ msgid "Page Author"
581
+ msgstr "Pagina autorului"
582
+
583
+ #@ default
584
+ #: inc-options/write_page_options.php:87
585
+ msgid "Page Revisions"
586
+ msgstr "Pagina revizuiri"
587
+
588
+ #@ adminimize
589
+ #: inc-options/write_page_options.php:88
590
+ msgid "Related"
591
+ msgstr "Legate de"
592
+
593
+ #@ adminimize
594
+ #: inc-options/write_page_options.php:93
595
+ msgid "Page Slug"
596
+ msgstr "Pagina Slug"
597
+
598
+ #@ adminimize
599
+ #: inc-options/write_page_options.php:100
600
+ msgid "Page Image"
601
+ msgstr "Imagine de pagină"
602
+
603
+ #@ adminimize
604
+ #: inc-options/menu_options.php:67
605
+ #: inc-options/menu_options.php:119
606
+ msgid "After activate the check box it heavy attitudes will change."
607
+ msgstr "După ce activaţi caseta de selectare a va schimba atitudinile grele."
608
+
609
+ #@ default
610
+ #: inc-options/menu_options.php:102
611
+ msgid "Profile"
612
+ msgstr "Profil"
613
+
614
+ #@ adminimize
615
+ #: inc-options/minimenu.php:38
616
+ #: inc-options/write_post_options.php:16
617
+ #: inc-options/write_post_options.php:23
618
+ msgid "Write options - Post"
619
+ msgstr "Scrie opţiuni - Post"
620
+
621
+ #@ adminimize
622
+ #: inc-options/write_post_options.php:171
623
+ msgid "Your own post options"
624
+ msgstr "Opţiunile de post"
625
+
626
+ #@ adminimize
627
+ #: inc-options/minimenu.php:41
628
+ #: inc-options/write_page_options.php:15
629
+ #: inc-options/write_page_options.php:22
630
+ msgid "Write options - Page"
631
+ msgstr "Scrie opţiuni - pagina"
632
+
633
+ #@ adminimize
634
+ #: inc-options/write_page_options.php:161
635
+ msgid "Your own page options"
636
+ msgstr "Opţiunile de pagină"
637
+
638
+ #@ adminimize
639
+ #: inc-options/links_options.php:16
640
+ #: inc-options/minimenu.php:61
641
+ msgid "Links options"
642
+ msgstr "Opţiuni de link-uri"
643
+
644
+ #@ default
645
+ #: inc-options/links_options.php:49
646
+ msgid "Name"
647
+ msgstr "nume"
648
+
649
+ #@ default
650
+ #: inc-options/links_options.php:50
651
+ msgid "Web Address"
652
+ msgstr "Adresa Web"
653
+
654
+ #@ default
655
+ #: inc-options/links_options.php:51
656
+ msgid "Description"
657
+ msgstr "Descriere"
658
+
659
+ #@ default
660
+ #: inc-options/links_options.php:53
661
+ msgid "Target"
662
+ msgstr "Ţintă"
663
+
664
+ #@ default
665
+ #: inc-options/links_options.php:54
666
+ msgid "Link Relationship (XFN)"
667
+ msgstr "Relaţie de link-ul (XFN)"
668
+
669
+ #@ default
670
+ #: inc-options/links_options.php:55
671
+ msgid "Advanced"
672
+ msgstr "Avansate"
673
+
674
+ #@ adminimize
675
+ #: inc-options/minimenu.php:67
676
+ #: inc-options/theme_options.php:15
677
+ #: inc-options/theme_options.php:100
678
+ msgid "Set Theme"
679
+ msgstr "Tema set"
680
+
681
+ #@ adminimize
682
+ #: inc-options/theme_options.php:22
683
+ msgid "For better peformance with many users on your blog; load only userlist, when you will change the theme options for users."
684
+ msgstr "Pentru peformance mai bine cu mai mulţi utilizatori pe blog-ul; încărcare numai useri, atunci când se va modifica opţiuni de temă pentru utilizatori."
685
+
686
+ #@ adminimize
687
+ #: inc-options/theme_options.php:25
688
+ msgid "Load User Data"
689
+ msgstr "Încărcare date utilizator"
690
+
691
+ #@ default
692
+ #: inc-options/theme_options.php:36
693
+ msgid "User-ID"
694
+ msgstr "ID utilizator"
695
+
696
+ #@ default
697
+ #: inc-options/theme_options.php:37
698
+ msgid "Username"
699
+ msgstr "Numele de utilizator"
700
+
701
+ #@ default
702
+ #: inc-options/theme_options.php:38
703
+ msgid "Display name publicly as"
704
+ msgstr "Afişare nume public ca"
705
+
706
+ #@ default
707
+ #: inc-options/theme_options.php:39
708
+ msgid "Admin-Color Scheme"
709
+ msgstr "Schema de culori admin"
710
+
711
+ #@ default
712
+ #: inc-options/theme_options.php:40
713
+ msgid "User Level"
714
+ msgstr "La nivel de utilizator"
715
+
716
+ #@ default
717
+ #: inc-options/theme_options.php:41
718
+ msgid "Role"
719
+ msgstr "Rol"
720
+
721
+ #@ adminimize
722
+ #: inc-options/deinstall_options.php:15
723
+ #: inc-options/minimenu.php:73
724
+ msgid "Deinstall Options"
725
+ msgstr "Stingere opţiuni"
726
+
727
+ #@ adminimize
728
+ #: inc-options/deinstall_options.php:18
729
+ 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."
730
+ msgstr "Utilizaţi această opţiune pentru curat bazei de date din toate intrările din acest plug-in. Când vă dezactiva plugin-ul, deinstall de plugin-ul <strong>curat nu</strong> toate intrările din baza de date."
731
+
732
+ #@ adminimize
733
+ #: inc-options/deinstall_options.php:22
734
+ msgid "Delete Options"
735
+ msgstr "Ştergeţi opţiuni"
736
+
737
+ #@ adminimize
738
+ #: inc-options/minimenu.php:23
739
+ #: inc-options/minimenu.php:83
740
+ msgid "About the plugin"
741
+ msgstr "Despre plugin-ul"
742
+
743
+ #@ adminimize
744
+ #: inc-options/minimenu.php:94
745
+ msgid "PayPal - The safer, easier way to pay online!"
746
+ msgstr "PayPal - mod mai sigur, mai uşor de a plăti online!"
747
+
748
+ #@ adminimize
749
+ #: inc-options/minimenu.php:89
750
+ msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a> or donate."
751
+ msgstr "Vrei să-mi mulţumeşti? Vizitaţi <a href=\"http://bueltge.de/wunschliste/\"> preferat </a> sau dona."
752
+
753
+ #@ adminimize
754
+ #: adminimize.php:138
755
+ msgid "All entries in the database were imported."
756
+ msgstr "Toate intrările din baza de date au fost importate."
757
+
758
+ #@ adminimize
759
+ #: inc-options/im_export_options.php:15
760
+ #: inc-options/minimenu.php:70
761
+ msgid "Export/Import Options"
762
+ msgstr "Export/Import opţiuni"
763
+
764
+ #@ adminimize
765
+ #: inc-options/im_export_options.php:19
766
+ msgid "Export"
767
+ msgstr "Export"
768
+
769
+ #@ adminimize
770
+ #: inc-options/im_export_options.php:24
771
+ msgid "Export »"
772
+ msgstr "Export»"
773
+
774
+ #@ adminimize
775
+ #: inc-options/im_export_options.php:28
776
+ msgid "Import"
777
+ msgstr "Import"
778
+
779
+ #@ adminimize
780
+ #: inc-options/im_export_options.php:33
781
+ msgid "Choose a file from your computer"
782
+ msgstr "Selectaţi un fişier de pe computer"
783
+
784
+ #@ adminimize
785
+ #: inc-options/im_export_options.php:38
786
+ msgid "Upload file and import »"
787
+ msgstr "Fişier încărcat şi import»"
788
+
789
+ #@ adminimize
790
+ #: inc-options/minimenu.php:19
791
+ msgid "MiniMenu"
792
+ msgstr "MiniMenu"
793
+
794
+ #@ adminimize
795
+ #: inc-options/backend_options.php:173
796
+ #: inc-options/dashboard_options.php:127
797
+ #: inc-options/deinstall_options.php:27
798
+ #: inc-options/global_options.php:124
799
+ #: inc-options/im_export_options.php:41
800
+ #: inc-options/links_options.php:129
801
+ #: inc-options/menu_options.php:157
802
+ #: inc-options/minimenu.php:99
803
+ #: inc-options/theme_options.php:105
804
+ #: inc-options/wp_nav_menu_options.php:149
805
+ #: inc-options/write_cp_options.php:244
806
+ #: inc-options/write_page_options.php:189
807
+ #: inc-options/write_post_options.php:199
808
+ msgid "scroll to top"
809
+ msgstr "defila în sus"
810
+
811
+ #@ adminimize
812
+ #: inc-options/im_export_options.php:21
813
+ msgid "You can save a .seq file with your options."
814
+ msgstr "Puteţi salva un fişier .seq cu opţiunile dumneavoastră."
815
+
816
+ #@ adminimize
817
+ #: inc-options/im_export_options.php:31
818
+ msgid "Choose a Adminimize (<em>.seq</em>) file to upload, then click <em>Upload file and import</em>."
819
+ msgstr "Selectaţi un fişier de Adminimize (<em>.seq</em>) pentru a încărca, apoi faceţi clic pe <em>încărcare fişier şi de import</em>."
820
+
821
+ #@ adminimize
822
+ #: inc-options/backend_options.php:110
823
+ msgid "Category Height"
824
+ msgstr "Categoria înălţime"
825
+
826
+ #@ adminimize
827
+ #: inc-options/backend_options.php:116
828
+ msgid "View the Meta Box with Categories in the full height, no scrollbar or whitespace."
829
+ msgstr "Vizualizaţi caseta de Meta cu categorii în înălţime completă, nici o bară de defilare sau spaţiu."
830
+
831
+ #@ adminimize
832
+ #: inc-options/backend_options.php:127
833
+ msgid "In the Footer you can display an advice for changing the Default-design, (x)HTML is possible."
834
+ msgstr "În notele de subsol se poate afişa un sfat pentru schimbarea implicit-design, (x) HTML este posibil."
835
+
836
+ #@ adminimize
837
+ #: inc-options/backend_options.php:149
838
+ msgid "Dashboard deactivate, redirect to"
839
+ msgstr "Tabloul de bord dezactiva, redirecţiona"
840
+
841
+ #@ default
842
+ #@ adminimize
843
+ #: inc-options/write_cp_options.php:110
844
+ #: inc-options/write_page_options.php:96
845
+ #: inc-options/write_post_options.php:104
846
+ msgid "HTML Editor Button"
847
+ msgstr "Butonul HTML Editor"
848
+
849
+ #@ adminimize
850
+ #: inc-options/backend_options.php:96
851
+ msgid "All Thickbox-function use the full area of the browser. Thickbox is for example in upload media-files."
852
+ msgstr "Toate Thickbox-funcţia utilizaţi zona completă a browser-ului. Thickbox este, de exemplu, în mass-media-fişierele de încărcare."
853
+
854
+ #@ adminimize
855
+ #. translators: plugin header field 'PluginURI'
856
+ #: adminimize.php:0
857
+ msgid "http://bueltge.de/wordpress-admin-theme-adminimize/674/"
858
+ msgstr "http://bueltge.de/WordPress-admin-Theme-adminimize/674/"
859
+
860
+ #@ adminimize
861
+ #. translators: plugin header field 'Description'
862
+ #: adminimize.php:0
863
+ msgid "Visually compresses the administratrive meta-boxes so that more admin page content can be initially seen. The plugin that lets you hide 'unnecessary' items from the WordPress administration menu, for alle roles of your install. You can also hide post meta controls on the edit-area to simplify the interface. It is possible to simplify the admin in different for all roles."
864
+ msgstr "Comprimă vizual administratrive meta-casetele astfel încât mai multe admin conţinutul paginii poate fi văzut în iniţial. Plugin-ul care vă permite să vă ascundeţi elementele \"inutile\" din meniul de administrare WordPress, pentru rolurile alle dvs. a instala. Puteţi, de asemenea, ascunde post meta controale pe zona de editare pentru a simplifica interfaţa. Este posibil să se simplifice admin în diferite pentru toate rolurile."
865
+
866
+ #@ adminimize
867
+ #. translators: plugin header field 'Author'
868
+ #: adminimize.php:0
869
+ msgid "Frank Bültge"
870
+ msgstr "Frank Bültge"
871
+
872
+ #@ adminimize
873
+ #. translators: plugin header field 'AuthorURI'
874
+ #: adminimize.php:0
875
+ msgid "http://bueltge.de/"
876
+ msgstr "http://bueltge.de/"
877
+
878
+ #@ adminimize
879
+ #: inc-options/backend_options.php:70
880
+ msgid "Header"
881
+ msgstr "Antet"
882
+
883
+ #@ adminimize
884
+ #: inc-options/backend_options.php:76
885
+ msgid "The Header-area can hide, include all links and details."
886
+ msgstr "Zona de antet poate ascunde, include toate link-uri şi detalii."
887
+
888
+ #@ adminimize
889
+ #: inc-options/write_page_options.php:78
890
+ #: inc-options/write_post_options.php:83
891
+ msgid "Title"
892
+ msgstr "Titlul"
893
+
894
+ #@ adminimize
895
+ #: inc-options/backend_options.php:26
896
+ msgid "Exclude Super Admin"
897
+ msgstr "Exclude Super Admin"
898
+
899
+ #@ adminimize
900
+ #: inc-options/backend_options.php:32
901
+ msgid "Exclude the Super Admin on a WP Multisite Install from all limitations of this plugin."
902
+ msgstr "Exclude Admin Super pe un WP Multisite Install la toate limitele de acest plug-in."
903
+
904
+ #@ adminimize
905
+ #: inc-options/backend_options.php:162
906
+ msgid "You have deactivated the Dashboard, please select a page for redirection or define custom url, include http://?"
907
+ msgstr "Au dezactivat tabloul de bord, vă rugăm să selectaţi o pagină de redirecţionare sau defini url personalizat, include http://?"
908
+
909
+ #@ adminimize
910
+ #: inc-options/global_options.php:47
911
+ msgid "Admin Bar"
912
+ msgstr "Admin Bar"
913
+
914
+ #@ adminimize
915
+ #: inc-options/minimenu.php:64
916
+ msgid "WP Nav Menu"
917
+ msgstr "WP meniu Nav"
918
+
919
+ #@ adminimize
920
+ #: inc-options/wp_nav_menu_options.php:15
921
+ msgid "WP Nav Menu options"
922
+ msgstr "Opţiuni de meniu Nav WP"
923
+
924
+ #@ adminimize
925
+ #@ default
926
+ #: inc-options/wp_nav_menu_options.php:50
927
+ #: inc-options/wp_nav_menu_options.php:56
928
+ msgid "Theme Locations"
929
+ msgstr "Tema Locatii"
930
+
931
+ #@ adminimize
932
+ #: inc-options/wp_nav_menu_options.php:51
933
+ msgid "Custom Links"
934
+ msgstr "Legăturile particularizate"
935
+
936
+ #@ adminimize
937
+ #: inc-options/wp_nav_menu_options.php:52
938
+ msgid "Add menu"
939
+ msgstr "Adăugaţi meniul"
940
+
941
+ #@ adminimize
942
+ #: inc-options/write_cp_options.php:98
943
+ #: inc-options/write_post_options.php:86
944
+ msgid "Format"
945
+ msgstr "Format"
946
+
947
+ #@ adminimize
948
+ #: inc-options/write_cp_options.php:103
949
+ #: inc-options/write_page_options.php:89
950
+ #: inc-options/write_post_options.php:97
951
+ msgid "Messages"
952
+ msgstr "Mesaje"
953
+
954
+ #@ adminimize
955
+ #: inc-options/write_cp_options.php:126
956
+ #: inc-options/write_page_options.php:104
957
+ #: inc-options/write_post_options.php:112
958
+ msgid "Quick Edit Link"
959
+ msgstr "Rapid link-ul Editaţi"
960
+
961
+ #@ adminimize
962
+ #: inc-options/write_cp_options.php:127
963
+ #: inc-options/write_cp_options.php:131
964
+ #: inc-options/write_cp_options.php:134
965
+ #: inc-options/write_cp_options.php:137
966
+ #: inc-options/write_page_options.php:105
967
+ #: inc-options/write_page_options.php:110
968
+ #: inc-options/write_page_options.php:113
969
+ #: inc-options/write_post_options.php:113
970
+ #: inc-options/write_post_options.php:117
971
+ #: inc-options/write_post_options.php:120
972
+ #: inc-options/write_post_options.php:123
973
+ msgid "QE"
974
+ msgstr "QE"
975
+
976
+ #@ adminimize
977
+ #: inc-options/write_cp_options.php:127
978
+ #: inc-options/write_page_options.php:105
979
+ #: inc-options/write_post_options.php:113
980
+ msgid "Inline Edit Left"
981
+ msgstr "Editare inline stânga"
982
+
983
+ #@ adminimize
984
+ #: inc-options/write_cp_options.php:128
985
+ #: inc-options/write_page_options.php:106
986
+ #: inc-options/write_post_options.php:114
987
+ msgid "All Labels"
988
+ msgstr "Toate etichetele"
989
+
990
+ #@ adminimize
991
+ #: inc-options/write_page_options.php:107
992
+ msgid "Date"
993
+ msgstr "Data"
994
+
995
+ #@ adminimize
996
+ #: inc-options/write_cp_options.php:130
997
+ #: inc-options/write_page_options.php:109
998
+ #: inc-options/write_post_options.php:116
999
+ msgid "Password and Private"
1000
+ msgstr "Parola şi Private"
1001
+
1002
+ #@ adminimize
1003
+ #: inc-options/write_cp_options.php:134
1004
+ #: inc-options/write_page_options.php:110
1005
+ #: inc-options/write_post_options.php:120
1006
+ msgid "Inline Edit Right"
1007
+ msgstr "Editare inline dreapta"
1008
+
1009
+ #@ adminimize
1010
+ #: inc-options/write_page_options.php:111
1011
+ msgid "Parent, Order, Template"
1012
+ msgstr "Mamă, ordine, şablon"
1013
+
1014
+ #@ adminimize
1015
+ #: inc-options/write_page_options.php:112
1016
+ msgid "Status"
1017
+ msgstr "Statutul"
1018
+
1019
+ #@ adminimize
1020
+ #: inc-options/write_cp_options.php:137
1021
+ #: inc-options/write_page_options.php:113
1022
+ #: inc-options/write_post_options.php:123
1023
+ msgid "Cancel/Save Button"
1024
+ msgstr "Butonul Revocare/salvare"
1025
+
1026
+ #@ adminimize
1027
+ #: inc-options/write_cp_options.php:131
1028
+ #: inc-options/write_post_options.php:117
1029
+ msgid "Inline Edit Center"
1030
+ msgstr "Centrul de editare inline"
1031
+
1032
+ #@ adminimize
1033
+ #: inc-options/write_cp_options.php:132
1034
+ #: inc-options/write_post_options.php:118
1035
+ msgid "Categories Title"
1036
+ msgstr "Titlul categorii"
1037
+
1038
+ #@ adminimize
1039
+ #: inc-options/write_cp_options.php:133
1040
+ #: inc-options/write_post_options.php:119
1041
+ msgid "Categories List"
1042
+ msgstr "Lista categorii"
1043
+
1044
+ #@ adminimize
1045
+ #: inc-options/write_cp_options.php:136
1046
+ #: inc-options/write_post_options.php:122
1047
+ msgid "Status, Sticky"
1048
+ msgstr "Statutul, lipicios"
1049
+
1050
+ #@ adminimize
1051
+ #: inc-options/links_options.php:100
1052
+ msgid "Your own Link options"
1053
+ msgstr "Opţiunile de link-ul"
1054
+
1055
+ #@ adminimize
1056
+ #: inc-options/minimenu.php:52
1057
+ #: inc-options/write_cp_options.php:21
1058
+ #: inc-options/write_cp_options.php:29
1059
+ msgid "Write options"
1060
+ msgstr "Scrie opţiuni"
1061
+
1062
+ #@ adminimize
1063
+ #: inc-options/wp_nav_menu_options.php:121
1064
+ msgid "Your own Nav Menu options"
1065
+ msgstr "Opţiunile de meniu Nav"
1066
+
1067
+ #@ adminimize
1068
+ #: inc-options/write_cp_options.php:201
1069
+ #, php-format
1070
+ msgid "Your own %s options"
1071
+ msgstr "Opţiunile de %s"
1072
+
1073
+ #@ adminimize
1074
+ #: inc-options/dashboard_options.php:17
1075
+ #: inc-options/minimenu.php:32
1076
+ msgid "Dashboard options"
1077
+ msgstr "Opţiuni de tabloul de bord"
1078
+
1079
+ #@ adminimize
1080
+ #: inc-options/dashboard_options.php:25
1081
+ msgid "To complete the installation for Dashboard Widgets you must visit your dashboard once and then come back to Settings > Adminimize to configure who has access to each widget."
1082
+ msgstr "Pentru a termina instalarea pentru widget-uri tabloul de bord trebuie să vizitaţi tabloul de bord o dată şi apoi reveni la setări > Adminimize pentru a configura cine are acces la fiecare widget."
1083
+
1084
+ #@ adminimize
1085
+ #: inc-options/minimenu.php:87
1086
+ msgid "Further information: Visit the <a href=\"http://wordpress.org/extend/plugins/adminimize/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
1087
+ msgstr "Mai multe informaţii: Vizitaţi <a href=\"http://wordpress.org/extend/plugins/adminimize/\"> plugin pagina </a> pentru informaţii suplimentare sau pentru a apuca cea mai recentă versiune a acestui plugin."
1088
+
1089
+ #@ adminimize
1090
+ #. translators: plugin header field 'Version'
1091
+ #: adminimize.php:0
1092
+ msgid "1.7.26"
1093
+ msgstr "1.7.26"
1094
+
1095
+ #@ adminimize
1096
+ #: inc-options/settings_notice.php:17
1097
+ msgid "Attention: The settings page ignores these Menu settings and views the menu with all entries!"
1098
+ msgstr "Atenţie: Pagina Setări ignoră aceste setări de meniu şi vizualizări din meniul cu toate intrările!"
1099
+
1100
+ #@ default
1101
+ #: inc-setup/admin-bar.php:239
1102
+ msgid "Network Admin"
1103
+ msgstr "Reţea Admin"
1104
+
1105
+ #@ default
1106
+ #: inc-setup/admin-bar.php:241
1107
+ msgid "Site Admin"
1108
+ msgstr "Site-ul Admin"
1109
+
languages/adminimize-xx_XX.pot CHANGED
@@ -59,177 +59,105 @@ msgstr "Backend-Theme wurde zugewiesen!"
59
  msgid "Load user data to themes was successful."
60
  msgstr "Das Laden der User-Daten zum Theme war erfolgreich."
61
 
62
- #: adminimize.php:521
63
  #: inc-options/links_options.php:52
64
  #: inc-options/write_cp_options.php:99
65
- #: inc-options/write_post_options.php:101
66
  #@ default
67
  #@ adminimize
68
  msgid "Categories"
69
  msgstr "Kategorien"
70
 
71
- #: adminimize.php:527
72
- #: adminimize.php:538
73
  #@ default
74
  msgid "+ Add New Category"
75
  msgstr "+ Add New Category"
76
 
77
- #: adminimize.php:529
78
- #: adminimize.php:540
79
  #@ default
80
  msgid "New category name"
81
  msgstr "New category name"
82
 
83
- #: adminimize.php:530
84
- #: adminimize.php:542
85
  #@ default
86
  msgid "Parent category"
87
  msgstr "Parent category"
88
 
89
- #: adminimize.php:531
90
- #: adminimize.php:543
91
  #@ default
92
  msgid "Add"
93
  msgstr "Add"
94
 
95
- #: adminimize.php:540
96
  #: inc-options/write_cp_options.php:100
97
- #: inc-options/write_post_options.php:102
98
  #@ default
99
  #@ adminimize
100
  msgid "Add New Category"
101
  msgstr "Add New Category"
102
 
103
- #: adminimize.php:564
104
- #: adminimize.php:565
105
  #: inc-options/write_cp_options.php:97
106
  #: inc-options/write_cp_options.php:135
107
- #: inc-options/write_post_options.php:99
108
- #: inc-options/write_post_options.php:149
109
- #@ default
110
  #@ adminimize
 
111
  msgid "Tags"
112
  msgstr "Tags"
113
 
114
- #: adminimize.php:607
115
- #: adminimize.php:624
116
- #: adminimize.php:638
117
- #: adminimize.php:652
118
- #@ default
119
- msgid "Blue"
120
- msgstr "Blau"
121
-
122
- #: adminimize.php:614
123
- #: adminimize.php:631
124
- #: adminimize.php:645
125
- #: adminimize.php:659
126
- #@ default
127
- msgid "Gray"
128
- msgstr "Grau"
129
-
130
- #: adminimize.php:667
131
- #: adminimize.php:709
132
- #: adminimize.php:732
133
- #@ default
134
- msgid "Classic"
135
- msgstr "Classic"
136
-
137
- #: adminimize.php:674
138
- #: adminimize.php:716
139
- #: adminimize.php:739
140
- #@ default
141
- msgid "Fresh"
142
- msgstr "Fresh"
143
-
144
- #: adminimize.php:681
145
- #@ default
146
- msgid "WordPress 2.3"
147
- msgstr "WordPress 2.3"
148
-
149
- #: adminimize.php:688
150
- #@ default
151
- msgid "Maybe i'm colorblind"
152
- msgstr "Maybe i'm colorblind"
153
-
154
- #: adminimize.php:695
155
- #@ default
156
- msgid "Grey"
157
- msgstr "Grey"
158
-
159
- #: adminimize.php:820
160
- #: adminimize.php:823
161
  #@ default
162
  msgid "Dashboard"
163
  msgstr "Dashboard"
164
 
165
- #: adminimize.php:891
166
- #: adminimize.php:893
167
- #: adminimize.php:914
168
- #: adminimize.php:916
169
- #: adminimize.php:1313
 
 
 
170
  #@ default
171
  msgid "Log Out"
172
  msgstr "Log Out"
173
 
174
- #: adminimize.php:1335
175
- #@ default
176
- msgid "Visit plugin homepage"
177
- msgstr "Visit plugin homepage"
178
-
179
- #: adminimize.php:1338
180
- #@ default
181
- msgid "plugin"
182
- msgstr "plugin"
183
-
184
- #: adminimize.php:1338
185
  #: inc-options/minimenu.php:85
186
- #@ default
187
  #@ adminimize
188
  msgid "Version"
189
  msgstr "Version"
190
 
191
- #: adminimize.php:1338
192
- #@ adminimize
193
- msgid "History"
194
- msgstr "Historie"
195
-
196
- #: adminimize.php:1338
197
  #: inc-options/write_cp_options.php:129
198
- #: inc-options/write_page_options.php:128
199
- #: inc-options/write_post_options.php:143
200
  #@ default
201
  msgid "Author"
202
  msgstr "Author"
203
 
204
- #: adminimize.php:1342
205
- #@ adminimize
206
- msgid "plugin activate"
207
- msgstr "plugin activate"
208
-
209
- #: adminimize.php:1363
210
  #@ default
211
  msgid "Settings"
212
  msgstr "Settings"
213
 
214
- #: adminimize.php:1379
215
- #@ adminimize
216
- msgid "<a href=\"http://wordpress.org/extend/plugins/adminimize/\">Documentation</a>"
217
- msgstr "<a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">Dokumentation</a> (<a href=\"http://wordpress.org/extend/plugins/adminimize/\">en</a>)"
218
-
219
  #. translators: plugin header field 'Name'
220
  #: adminimize.php:0
221
- #: adminimize.php:1396
222
  #: inc-options/minimenu.php:14
223
  #@ adminimize
224
  msgid "Adminimize"
225
  msgstr "Adminimize"
226
 
227
- #: adminimize.php:1395
228
  #@ adminimize
229
  msgid "Adminimize Options"
230
  msgstr "Adminimize Einstellungen"
231
 
232
- #: adminimize.php:1423
233
  #@ default
234
  msgid "Cheatin&#8217; uh?"
235
  msgstr "Cheatin&#8217; uh?"
@@ -258,165 +186,153 @@ msgstr "Zum Umschalten klicken"
258
  msgid "Backend Options"
259
  msgstr "Einstellungen Backend"
260
 
261
- #: inc-options/backend_options.php:36
262
  #@ adminimize
263
  msgid "User-Info"
264
  msgstr "User-Info"
265
 
266
- #: inc-options/backend_options.php:29
267
- #: inc-options/backend_options.php:40
268
- #: inc-options/backend_options.php:53
269
- #: inc-options/backend_options.php:63
270
- #: inc-options/backend_options.php:73
271
- #: inc-options/backend_options.php:83
272
- #: inc-options/backend_options.php:93
273
- #: inc-options/backend_options.php:103
274
- #: inc-options/backend_options.php:113
275
- #: inc-options/backend_options.php:123
276
- #: inc-options/backend_options.php:133
277
- #: inc-options/backend_options.php:162
278
  #@ adminimize
279
  msgid "Default"
280
  msgstr "Standard"
281
 
282
- #: inc-options/backend_options.php:41
283
- #: inc-options/backend_options.php:64
284
- #: inc-options/backend_options.php:74
285
  #@ adminimize
286
  msgid "Hide"
287
  msgstr "Ausblenden"
288
 
289
- #: inc-options/backend_options.php:42
290
  #@ adminimize
291
  msgid "Only logout"
292
  msgstr "nur Abmelden"
293
 
294
- #: inc-options/backend_options.php:43
295
  #@ adminimize
296
  msgid "User &amp; Logout"
297
  msgstr "User &amp; Abmelden"
298
 
299
- #: inc-options/backend_options.php:44
300
  #@ adminimize
301
  msgid "The &quot;User-Info-area&quot; is on the top right side of the backend. You can hide or reduced show."
302
  msgstr "Der &quot;User-Info-Bereich&quot; ist im oberen rechten Bereich zu finden und kann ausgeblendet oder reduziert dargestellt werden."
303
 
304
- #: inc-options/backend_options.php:49
305
  #@ adminimize
306
  msgid "Change User-Info, redirect to"
307
  msgstr "User Info ge&auml;ndert, Weiterleitung nach"
308
 
309
- #: inc-options/backend_options.php:54
310
  #@ adminimize
311
  msgid "Frontpage of the Blog"
312
  msgstr "Startseite des Blog"
313
 
314
- #: inc-options/backend_options.php:55
315
  #@ adminimize
316
  msgid "When the &quot;User-Info-area&quot; change it, then it is possible to change the redirect."
317
  msgstr "Wenn der &quot;User-Info-Bereich&quot; ge&auml;ndert wird, dann kann die die Weiterleitung nach einem Logout ge&auml;ndert werden."
318
 
319
- #: inc-options/backend_options.php:59
320
  #@ adminimize
321
  msgid "Footer"
322
  msgstr "Footer"
323
 
324
- #: inc-options/backend_options.php:65
325
  #@ adminimize
326
  msgid "The Footer-area can hide, include all links and details."
327
  msgstr "Der Footer-Bereich kann deaktiviert werden, inklusive aller Links und Hinweise."
328
 
329
- #: inc-options/backend_options.php:79
330
- #@ adminimize
331
- msgid "WriteScroll"
332
- msgstr "WriteScroll"
333
-
334
- #: inc-options/backend_options.php:30
335
- #: inc-options/backend_options.php:84
336
- #: inc-options/backend_options.php:94
337
- #: inc-options/backend_options.php:104
338
- #: inc-options/backend_options.php:114
339
- #: inc-options/backend_options.php:124
340
- #: inc-options/backend_options.php:134
341
  #@ adminimize
342
  msgid "Activate"
343
  msgstr "Aktiv"
344
 
345
- #: inc-options/backend_options.php:85
346
- #@ adminimize
347
- 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."
348
- msgstr "Automatisches Scrollen zum Editor beim Aufruf der Seite Schreiben in Beitr&auml;ge und Seite."
349
-
350
- #: inc-options/backend_options.php:89
351
  #@ adminimize
352
  msgid "Timestamp"
353
  msgstr "Timestamp"
354
 
355
- #: inc-options/backend_options.php:95
356
  #@ adminimize
357
  msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
358
  msgstr "Das Feld zum &Auml;ndern des Ver&ouml;ffentlichungsdatum ist immer ge&ouml;ffnet."
359
 
360
- #: inc-options/backend_options.php:99
361
  #@ adminimize
362
  msgid "Thickbox FullScreen"
363
  msgstr "Thickbox FullScreen"
364
 
365
- #: inc-options/backend_options.php:109
366
  #@ adminimize
367
  msgid "Flashuploader"
368
  msgstr "Flashuploader"
369
 
370
- #: inc-options/backend_options.php:115
371
  #@ adminimize
372
  msgid "Disable the flashuploader and users use only the standard uploader."
373
  msgstr "Deaktiviere den Flashuploader und Nutzer können nur den Standard-Uploader erreichen."
374
 
375
- #: inc-options/backend_options.php:129
376
  #@ adminimize
377
  msgid "Advice in Footer"
378
  msgstr "Hinweis im Footer"
379
 
380
- #: inc-options/backend_options.php:163
381
  #@ adminimize
382
  msgid "Manage Posts"
383
  msgstr "Verwalten Beitr&auml;ge"
384
 
385
- #: inc-options/backend_options.php:164
386
  #@ adminimize
387
  msgid "Manage Pages"
388
  msgstr "Verwalten Seiten"
389
 
390
- #: inc-options/backend_options.php:165
391
  #@ adminimize
392
  msgid "Write Post"
393
  msgstr "Schreiben Beitrag"
394
 
395
- #: inc-options/backend_options.php:166
396
  #@ adminimize
397
  msgid "Write Page"
398
  msgstr "Schreiben Seite"
399
 
400
- #: inc-options/backend_options.php:167
401
- #: inc-options/write_post_options.php:106
402
  #@ adminimize
403
  msgid "Comments"
404
  msgstr "Kommentare"
405
 
406
- #: inc-options/backend_options.php:168
407
  #@ adminimize
408
  msgid "other Page"
409
  msgstr "andere Seite"
410
 
411
- #: inc-options/backend_options.php:180
412
  #: inc-options/dashboard_options.php:122
413
  #: inc-options/global_options.php:122
414
  #: inc-options/links_options.php:126
415
- #: inc-options/menu_options.php:151
416
  #: inc-options/wp_nav_menu_options.php:147
417
- #: inc-options/write_cp_options.php:240
418
- #: inc-options/write_page_options.php:207
419
- #: inc-options/write_post_options.php:225
420
  #@ adminimize
421
  msgid "Update Options"
422
  msgstr "Einstellungen aktualisieren"
@@ -436,8 +352,8 @@ msgstr "Globale Einstellungen"
436
  #: inc-options/wp_nav_menu_options.php:22
437
  #: inc-options/wp_nav_menu_options.php:122
438
  #: inc-options/write_cp_options.php:204
439
- #: inc-options/write_page_options.php:182
440
- #: inc-options/write_post_options.php:200
441
  #@ adminimize
442
  msgid "Option"
443
  msgstr "Einstellung"
@@ -467,8 +383,8 @@ msgstr "Screen-Meta"
467
  #: inc-options/global_options.php:50
468
  #: inc-options/wp_nav_menu_options.php:49
469
  #: inc-options/write_cp_options.php:95
470
- #: inc-options/write_page_options.php:87
471
- #: inc-options/write_post_options.php:96
472
  #@ adminimize
473
  #@ default
474
  msgid "Screen Options"
@@ -495,8 +411,8 @@ msgstr "Deine eigenen Einstellungen"
495
  #: inc-options/links_options.php:100
496
  #: inc-options/wp_nav_menu_options.php:121
497
  #: inc-options/write_cp_options.php:202
498
- #: inc-options/write_page_options.php:181
499
- #: inc-options/write_post_options.php:199
500
  #@ adminimize
501
  msgid "ID or class"
502
  msgstr "ID oder Klasse"
@@ -506,8 +422,8 @@ msgstr "ID oder Klasse"
506
  #: inc-options/links_options.php:107
507
  #: inc-options/wp_nav_menu_options.php:128
508
  #: inc-options/write_cp_options.php:211
509
- #: inc-options/write_page_options.php:188
510
- #: inc-options/write_post_options.php:206
511
  #@ adminimize
512
  msgid "It is possible to add your own IDs or classes from elements and tags. You can find IDs and classes with the FireBug Add-on for Firefox. Assign a value and the associate name per line."
513
  msgstr "Es ist möglich, dass du eigene IDs und Klassen eines Elementes oder Tags hinzufügst. Du findest IDs und Klassen sehr einfach mit dem Firebug Add-on für den Firefox. Füge pro Zeile einen Wert und dazugehörigen Namen ein."
@@ -517,8 +433,8 @@ msgstr "Es ist möglich, dass du eigene IDs und Klassen eines Elementes oder Tag
517
  #: inc-options/links_options.php:113
518
  #: inc-options/wp_nav_menu_options.php:134
519
  #: inc-options/write_cp_options.php:221
520
- #: inc-options/write_page_options.php:194
521
- #: inc-options/write_post_options.php:212
522
  #@ adminimize
523
  msgid "Possible nomination for ID or class. Separate multiple nominations through a carriage return."
524
  msgstr "Mögliche Benennung der ID oder Klasse. Trenne Werte durch eine neue Zeile."
@@ -527,9 +443,9 @@ msgstr "Mögliche Benennung der ID oder Klasse. Trenne Werte durch eine neue Zei
527
  #: inc-options/global_options.php:114
528
  #: inc-options/links_options.php:118
529
  #: inc-options/wp_nav_menu_options.php:139
530
- #: inc-options/write_cp_options.php:230
531
- #: inc-options/write_page_options.php:199
532
- #: inc-options/write_post_options.php:217
533
  #@ adminimize
534
  msgid "Possible IDs or classes. Separate multiple values through a carriage return."
535
  msgstr "Mögliche IDs oder Klassen. Trenne Werte durch eine neue Zeile."
@@ -547,174 +463,164 @@ msgstr "Menu Einstellungen - Menu, <span style=\"font-weight: 400;\">Submenu</sp
547
 
548
  #: inc-options/wp_nav_menu_options.php:48
549
  #: inc-options/write_cp_options.php:94
550
- #: inc-options/write_page_options.php:86
551
- #: inc-options/write_post_options.php:95
552
  #@ adminimize
553
  #@ default
554
  msgid "Help"
555
  msgstr "Hilfe"
556
 
557
  #: inc-options/write_cp_options.php:96
558
- #: inc-options/write_page_options.php:89
559
- #: inc-options/write_post_options.php:98
560
  #@ adminimize
561
  msgid "Permalink"
562
  msgstr "Permalink"
563
 
564
- #: inc-options/write_post_options.php:103
565
  #@ adminimize
566
  msgid "Excerpt"
567
  msgstr "Auszug"
568
 
569
- #: inc-options/write_post_options.php:104
570
  #@ adminimize
571
  msgid "Trackbacks"
572
  msgstr "Trackbacks"
573
 
574
- #: inc-options/write_page_options.php:90
575
- #: inc-options/write_post_options.php:105
576
  #@ default
577
  msgid "Custom Fields"
578
  msgstr "Benutzerdefinierte Felder"
579
 
580
  #: inc-options/write_cp_options.php:101
581
- #: inc-options/write_post_options.php:107
582
  #@ adminimize
583
  msgid "Password Protect This Post"
584
  msgstr "Diesen Artikel durch ein Passwort sch&uuml;tzen"
585
 
586
- #: inc-options/write_post_options.php:108
587
  #@ default
588
  msgid "Post Author"
589
  msgstr "Autor"
590
 
591
- #: inc-options/write_post_options.php:109
592
  #@ default
593
  msgid "Post Revisions"
594
  msgstr "Post Revisions"
595
 
596
  #: inc-options/write_cp_options.php:102
597
- #: inc-options/write_post_options.php:110
598
  #@ adminimize
599
  msgid "Related, Shortcuts"
600
  msgstr "Siehe auch, Tastaturk&uuml;rzel"
601
 
602
  #: inc-options/write_cp_options.php:104
603
- #: inc-options/write_page_options.php:100
604
- #: inc-options/write_post_options.php:112
605
  #@ adminimize
606
  msgid "h2: Advanced Options"
607
  msgstr "h2: Erweiterte Einstellungen"
608
 
609
  #: inc-options/write_cp_options.php:105
610
- #: inc-options/write_page_options.php:101
611
- #: inc-options/write_post_options.php:113
612
  #@ adminimize
613
  msgid "Media Buttons (all)"
614
  msgstr "Media Buttons (alle)"
615
 
616
  #: inc-options/write_cp_options.php:106
617
- #: inc-options/write_page_options.php:102
618
- #: inc-options/write_post_options.php:114
619
  #@ adminimize
620
  msgid "Word count"
621
  msgstr "Word count"
622
 
623
  #: inc-options/write_cp_options.php:107
624
- #: inc-options/write_post_options.php:115
625
  #@ adminimize
626
  msgid "Post Slug"
627
  msgstr "Titelform"
628
 
629
  #: inc-options/links_options.php:56
630
  #: inc-options/write_cp_options.php:108
631
- #: inc-options/write_page_options.php:104
632
- #: inc-options/write_post_options.php:116
633
  #@ adminimize
634
  msgid "Publish Actions"
635
  msgstr "Publish Actions"
636
 
637
  #: inc-options/write_cp_options.php:109
638
- #: inc-options/write_page_options.php:105
639
- #: inc-options/write_post_options.php:117
640
  #@ default
641
  #@ adminimize
642
  msgid "Discussion"
643
  msgstr "Kommentare"
644
 
645
  #: inc-options/write_cp_options.php:120
646
- #: inc-options/write_post_options.php:122
647
  #@ adminimize
648
  msgid "Post Thumbnail"
649
  msgstr "Artikelbild"
650
 
651
- #: inc-options/write_page_options.php:112
652
- #@ adminimize
653
- msgid "Suggested tags from"
654
- msgstr "Suggested tags from"
655
-
656
- #: inc-options/write_page_options.php:114
657
- #@ default
658
- msgid "HTML Special Characters"
659
- msgstr "HTML Special Characters"
660
-
661
- #: inc-options/write_page_options.php:91
662
  #@ adminimize
663
  msgid "Comments &amp; Pings"
664
  msgstr "Kommentare &amp; Pings"
665
 
666
- #: inc-options/write_page_options.php:92
667
  #@ adminimize
668
  msgid "Password Protect This Page"
669
  msgstr "Diese Seite mit einem Passwort versehen"
670
 
671
- #: inc-options/write_page_options.php:93
672
  #@ adminimize
673
  msgid "Attributes"
674
  msgstr "Attribute"
675
 
676
- #: inc-options/write_page_options.php:94
677
  #@ adminimize
678
  msgid "Page Template"
679
  msgstr "Seiten Template"
680
 
681
- #: inc-options/write_page_options.php:95
682
  #@ adminimize
683
  msgid "Page Order"
684
  msgstr "Reihenfolge"
685
 
686
- #: inc-options/write_page_options.php:96
687
  #@ default
688
  msgid "Page Author"
689
  msgstr "Seitenautor"
690
 
691
- #: inc-options/write_page_options.php:97
692
  #@ default
693
  msgid "Page Revisions"
694
  msgstr "Page Revisions"
695
 
696
- #: inc-options/write_page_options.php:98
697
  #@ adminimize
698
  msgid "Related"
699
  msgstr "Siehe auch"
700
 
701
- #: inc-options/write_page_options.php:103
702
  #@ adminimize
703
  msgid "Page Slug"
704
  msgstr "Titelform"
705
 
706
- #: inc-options/write_page_options.php:110
707
  #@ adminimize
708
  msgid "Page Image"
709
  msgstr "Artikelbild"
710
 
711
  #: inc-options/menu_options.php:67
712
- #: inc-options/menu_options.php:115
713
  #@ adminimize
714
  msgid "After activate the check box it heavy attitudes will change."
715
  msgstr "Wenn die Checkbox aktiv ist, dann wird das Ändern von Einstellungen erschwert."
716
 
717
- #: inc-options/menu_options.php:98
718
  #@ default
719
  msgid "Profile"
720
  msgstr "Profile"
@@ -726,7 +632,7 @@ msgstr "Profile"
726
  msgid "Write options - Post"
727
  msgstr "Schreiben Einstellungen - Beitr&auml;ge"
728
 
729
- #: inc-options/write_post_options.php:199
730
  #@ adminimize
731
  msgid "Your own post options"
732
  msgstr "Deine eigenen Beitrags-Einstellungen"
@@ -738,7 +644,7 @@ msgstr "Deine eigenen Beitrags-Einstellungen"
738
  msgid "Write options - Page"
739
  msgstr "Schreiben Einstellungen - Seiten"
740
 
741
- #: inc-options/write_page_options.php:181
742
  #@ adminimize
743
  msgid "Your own page options"
744
  msgstr "Deine eigenen Seiten-Einstellungen"
@@ -899,19 +805,19 @@ msgstr "Hochladen der Datei und importieren &raquo;"
899
  msgid "MiniMenu"
900
  msgstr "MiniMenu"
901
 
902
- #: inc-options/backend_options.php:182
903
  #: inc-options/dashboard_options.php:127
904
  #: inc-options/deinstall_options.php:27
905
  #: inc-options/global_options.php:124
906
  #: inc-options/im_export_options.php:41
907
  #: inc-options/links_options.php:129
908
- #: inc-options/menu_options.php:153
909
  #: inc-options/minimenu.php:99
910
  #: inc-options/theme_options.php:105
911
  #: inc-options/wp_nav_menu_options.php:149
912
- #: inc-options/write_cp_options.php:245
913
- #: inc-options/write_page_options.php:209
914
- #: inc-options/write_post_options.php:227
915
  #@ adminimize
916
  msgid "scroll to top"
917
  msgstr "Nach oben"
@@ -926,35 +832,35 @@ msgstr "Du kannst deine Einstellungen in einer .seq Datei speichern."
926
  msgid "Choose a Adminimize (<em>.seq</em>) file to upload, then click <em>Upload file and import</em>."
927
  msgstr "Wähle eine Adminimize (<em>.seq</em>) Datei zum hoch laden und dann klick <em>Hochladen der Datei und importieren</em>"
928
 
929
- #: inc-options/backend_options.php:119
930
  #@ adminimize
931
  msgid "Category Height"
932
  msgstr "Kategorie-Höhe"
933
 
934
- #: inc-options/backend_options.php:125
935
  #@ adminimize
936
  msgid "View the Meta Box with Categories in the full height, no scrollbar or whitespace."
937
  msgstr "Stellt in die Meta Box der Kategorien in voller Höhe dar, kein Scrollbar und kein Leerraum."
938
 
939
- #: inc-options/backend_options.php:136
940
  #@ adminimize
941
  msgid "In the Footer you can display an advice for changing the Default-design, (x)HTML is possible."
942
  msgstr "Im Footer kann ein Hinweis auf die aktive Ver&auml;nderung des Standard-Layout gesetzt werden, (x)HTML erlaubt."
943
 
944
- #: inc-options/backend_options.php:158
945
  #@ adminimize
946
  msgid "Dashboard deactivate, redirect to"
947
  msgstr "Dashboard inaktiv, Weiterleitung nach"
948
 
949
  #: inc-options/write_cp_options.php:110
950
- #: inc-options/write_page_options.php:106
951
- #: inc-options/write_post_options.php:118
952
  #@ default
953
  #@ adminimize
954
  msgid "HTML Editor Button"
955
  msgstr "HTML Editor Button"
956
 
957
- #: inc-options/backend_options.php:105
958
  #@ adminimize
959
  msgid "All Thickbox-function use the full area of the browser. Thickbox is for example in upload media-files."
960
  msgstr "Alle Thickbox-Funktion verwenden den vollständigen Bereich des Browsers. Thickbox ist beispielsweise in der Medien-Upload-Funktion."
@@ -983,33 +889,33 @@ msgstr ""
983
  msgid "http://bueltge.de/"
984
  msgstr ""
985
 
986
- #: inc-options/backend_options.php:69
987
  #@ adminimize
988
  msgid "Header"
989
  msgstr "Header"
990
 
991
- #: inc-options/backend_options.php:75
992
  #@ adminimize
993
  msgid "The Header-area can hide, include all links and details."
994
  msgstr "Der header-Bereich kann ausgeblendet werden, inkl. aller Links und Details."
995
 
996
- #: inc-options/write_page_options.php:88
997
- #: inc-options/write_post_options.php:97
998
  #@ adminimize
999
  msgid "Title"
1000
  msgstr "Title"
1001
 
1002
- #: inc-options/backend_options.php:25
1003
  #@ adminimize
1004
  msgid "Exclude Super Admin"
1005
  msgstr "Ausschließen des Super Admin"
1006
 
1007
- #: inc-options/backend_options.php:31
1008
  #@ adminimize
1009
  msgid "Exclude the Super Admin on a WP Multisite Install from all limitations of this plugin."
1010
  msgstr "Schließe den Super Admin in einer WordPress Multisite Installation von allen Restriktionen dieses Plugins aus."
1011
 
1012
- #: inc-options/backend_options.php:171
1013
  #@ adminimize
1014
  msgid "You have deactivated the Dashboard, please select a page for redirection or define custom url, include http://?"
1015
  msgstr "Du hast das Dashboard deaktiviert; bitte wähle eine Seite für die Weiterleitung oder definiere eine eigene URL, inklusive http://"
@@ -1047,21 +953,21 @@ msgid "Add menu"
1047
  msgstr "Menu hinzufügen"
1048
 
1049
  #: inc-options/write_cp_options.php:98
1050
- #: inc-options/write_post_options.php:100
1051
  #@ adminimize
1052
  msgid "Format"
1053
  msgstr "Format"
1054
 
1055
  #: inc-options/write_cp_options.php:103
1056
- #: inc-options/write_page_options.php:99
1057
- #: inc-options/write_post_options.php:111
1058
  #@ adminimize
1059
  msgid "Messages"
1060
  msgstr "Mitteilungen"
1061
 
1062
  #: inc-options/write_cp_options.php:126
1063
- #: inc-options/write_page_options.php:124
1064
- #: inc-options/write_post_options.php:140
1065
  #@ adminimize
1066
  msgid "Quick Edit Link"
1067
  msgstr "QuickEdit Link"
@@ -1070,87 +976,87 @@ msgstr "QuickEdit Link"
1070
  #: inc-options/write_cp_options.php:131
1071
  #: inc-options/write_cp_options.php:134
1072
  #: inc-options/write_cp_options.php:137
1073
- #: inc-options/write_page_options.php:125
1074
- #: inc-options/write_page_options.php:130
1075
- #: inc-options/write_page_options.php:133
1076
- #: inc-options/write_post_options.php:141
1077
- #: inc-options/write_post_options.php:145
1078
- #: inc-options/write_post_options.php:148
1079
- #: inc-options/write_post_options.php:151
1080
  #@ adminimize
1081
  msgid "QE"
1082
  msgstr "QE"
1083
 
1084
  #: inc-options/write_cp_options.php:127
1085
- #: inc-options/write_page_options.php:125
1086
- #: inc-options/write_post_options.php:141
1087
  #@ adminimize
1088
  msgid "Inline Edit Left"
1089
  msgstr "Inline Edit Links"
1090
 
1091
  #: inc-options/write_cp_options.php:128
1092
- #: inc-options/write_page_options.php:126
1093
- #: inc-options/write_post_options.php:142
1094
  #@ adminimize
1095
  msgid "All Labels"
1096
  msgstr "Alle labels"
1097
 
1098
- #: inc-options/write_page_options.php:127
1099
  #@ adminimize
1100
  msgid "Date"
1101
  msgstr "Datum"
1102
 
1103
  #: inc-options/write_cp_options.php:130
1104
- #: inc-options/write_page_options.php:129
1105
- #: inc-options/write_post_options.php:144
1106
  #@ adminimize
1107
  msgid "Password and Private"
1108
  msgstr "Passwort und Privat-Flag"
1109
 
1110
  #: inc-options/write_cp_options.php:134
1111
- #: inc-options/write_page_options.php:130
1112
- #: inc-options/write_post_options.php:148
1113
  #@ adminimize
1114
  msgid "Inline Edit Right"
1115
  msgstr "Inline Edit rechts"
1116
 
1117
- #: inc-options/write_page_options.php:131
1118
  #@ adminimize
1119
  msgid "Parent, Order, Template"
1120
  msgstr "Eltern, Reihenfolge, Template"
1121
 
1122
- #: inc-options/write_page_options.php:132
1123
  #@ adminimize
1124
  msgid "Status"
1125
  msgstr "Status"
1126
 
1127
  #: inc-options/write_cp_options.php:137
1128
- #: inc-options/write_page_options.php:133
1129
- #: inc-options/write_post_options.php:151
1130
  #@ adminimize
1131
  msgid "Cancel/Save Button"
1132
  msgstr "Abbrechen/Aktualisieren Button"
1133
 
1134
  #: inc-options/write_cp_options.php:131
1135
- #: inc-options/write_post_options.php:145
1136
  #@ adminimize
1137
  msgid "Inline Edit Center"
1138
  msgstr "Inline Edit mitte"
1139
 
1140
  #: inc-options/write_cp_options.php:132
1141
- #: inc-options/write_post_options.php:146
1142
  #@ adminimize
1143
  msgid "Categories Title"
1144
  msgstr "Kategorien Title"
1145
 
1146
  #: inc-options/write_cp_options.php:133
1147
- #: inc-options/write_post_options.php:147
1148
  #@ adminimize
1149
  msgid "Categories List"
1150
  msgstr "Kategorien Liste"
1151
 
1152
  #: inc-options/write_cp_options.php:136
1153
- #: inc-options/write_post_options.php:150
1154
  #@ adminimize
1155
  msgid "Status, Sticky"
1156
  msgstr "Status, Sticky"
@@ -1178,12 +1084,6 @@ msgstr "Deine eigenen Nav Menu Einstellungen"
1178
  msgid "Your own %s options"
1179
  msgstr "Deine eigenen %s Einstellungen"
1180
 
1181
- #. translators: plugin header field 'Version'
1182
- #: adminimize.php:0
1183
- #@ adminimize
1184
- msgid "1.7.20"
1185
- msgstr ""
1186
-
1187
  #: inc-options/dashboard_options.php:17
1188
  #: inc-options/minimenu.php:32
1189
  #@ adminimize
@@ -1198,5 +1098,26 @@ msgstr "Um die Installation für Dashboard Widgets abzuschließen, musst du das
1198
  #: inc-options/minimenu.php:87
1199
  #@ adminimize
1200
  msgid "Further information: Visit the <a href=\"http://wordpress.org/extend/plugins/adminimize/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
1201
- msgstr "Weitere Informationen: Besuchen Sie die <a href=\\\"http://wordpress.org/extend/plugins/adminimize/\\\">Plugin Website</a> für weitere Informationen oder um die neueste Version des Plugins erhalten."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1202
 
59
  msgid "Load user data to themes was successful."
60
  msgstr "Das Laden der User-Daten zum Theme war erfolgreich."
61
 
62
+ #: adminimize.php:468
63
  #: inc-options/links_options.php:52
64
  #: inc-options/write_cp_options.php:99
65
+ #: inc-options/write_post_options.php:87
66
  #@ default
67
  #@ adminimize
68
  msgid "Categories"
69
  msgstr "Kategorien"
70
 
71
+ #: adminimize.php:474
72
+ #: adminimize.php:485
73
  #@ default
74
  msgid "+ Add New Category"
75
  msgstr "+ Add New Category"
76
 
77
+ #: adminimize.php:476
78
+ #: adminimize.php:487
79
  #@ default
80
  msgid "New category name"
81
  msgstr "New category name"
82
 
83
+ #: adminimize.php:477
84
+ #: adminimize.php:489
85
  #@ default
86
  msgid "Parent category"
87
  msgstr "Parent category"
88
 
89
+ #: adminimize.php:478
90
+ #: adminimize.php:490
91
  #@ default
92
  msgid "Add"
93
  msgstr "Add"
94
 
95
+ #: adminimize.php:487
96
  #: inc-options/write_cp_options.php:100
97
+ #: inc-options/write_post_options.php:88
98
  #@ default
99
  #@ adminimize
100
  msgid "Add New Category"
101
  msgstr "Add New Category"
102
 
 
 
103
  #: inc-options/write_cp_options.php:97
104
  #: inc-options/write_cp_options.php:135
105
+ #: inc-options/write_post_options.php:85
106
+ #: inc-options/write_post_options.php:121
 
107
  #@ adminimize
108
+ #@ default
109
  msgid "Tags"
110
  msgstr "Tags"
111
 
112
+ #: adminimize.php:572
113
+ #: adminimize.php:575
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
114
  #@ default
115
  msgid "Dashboard"
116
  msgstr "Dashboard"
117
 
118
+ #: adminimize.php:636
119
+ #: adminimize.php:638
120
+ #: adminimize.php:659
121
+ #: adminimize.php:661
122
+ #: adminimize.php:1034
123
+ #: inc-setup/admin-bar.php:57
124
+ #: inc-setup/admin-bar.php:81
125
+ #: inc-setup/admin-bar.php:250
126
  #@ default
127
  msgid "Log Out"
128
  msgstr "Log Out"
129
 
 
 
 
 
 
 
 
 
 
 
 
130
  #: inc-options/minimenu.php:85
 
131
  #@ adminimize
132
  msgid "Version"
133
  msgstr "Version"
134
 
 
 
 
 
 
 
135
  #: inc-options/write_cp_options.php:129
136
+ #: inc-options/write_page_options.php:108
137
+ #: inc-options/write_post_options.php:115
138
  #@ default
139
  msgid "Author"
140
  msgstr "Author"
141
 
142
+ #: adminimize.php:1067
 
 
 
 
 
143
  #@ default
144
  msgid "Settings"
145
  msgstr "Settings"
146
 
 
 
 
 
 
147
  #. translators: plugin header field 'Name'
148
  #: adminimize.php:0
149
+ #: adminimize.php:1086
150
  #: inc-options/minimenu.php:14
151
  #@ adminimize
152
  msgid "Adminimize"
153
  msgstr "Adminimize"
154
 
155
+ #: adminimize.php:1085
156
  #@ adminimize
157
  msgid "Adminimize Options"
158
  msgstr "Adminimize Einstellungen"
159
 
160
+ #: adminimize.php:1111
161
  #@ default
162
  msgid "Cheatin&#8217; uh?"
163
  msgstr "Cheatin&#8217; uh?"
186
  msgid "Backend Options"
187
  msgstr "Einstellungen Backend"
188
 
189
+ #: inc-options/backend_options.php:37
190
  #@ adminimize
191
  msgid "User-Info"
192
  msgstr "User-Info"
193
 
194
+ #: inc-options/backend_options.php:30
195
+ #: inc-options/backend_options.php:41
196
+ #: inc-options/backend_options.php:54
197
+ #: inc-options/backend_options.php:64
198
+ #: inc-options/backend_options.php:74
199
+ #: inc-options/backend_options.php:84
200
+ #: inc-options/backend_options.php:94
201
+ #: inc-options/backend_options.php:104
202
+ #: inc-options/backend_options.php:114
203
+ #: inc-options/backend_options.php:124
204
+ #: inc-options/backend_options.php:153
 
205
  #@ adminimize
206
  msgid "Default"
207
  msgstr "Standard"
208
 
209
+ #: inc-options/backend_options.php:42
210
+ #: inc-options/backend_options.php:65
211
+ #: inc-options/backend_options.php:75
212
  #@ adminimize
213
  msgid "Hide"
214
  msgstr "Ausblenden"
215
 
216
+ #: inc-options/backend_options.php:43
217
  #@ adminimize
218
  msgid "Only logout"
219
  msgstr "nur Abmelden"
220
 
221
+ #: inc-options/backend_options.php:44
222
  #@ adminimize
223
  msgid "User &amp; Logout"
224
  msgstr "User &amp; Abmelden"
225
 
226
+ #: inc-options/backend_options.php:45
227
  #@ adminimize
228
  msgid "The &quot;User-Info-area&quot; is on the top right side of the backend. You can hide or reduced show."
229
  msgstr "Der &quot;User-Info-Bereich&quot; ist im oberen rechten Bereich zu finden und kann ausgeblendet oder reduziert dargestellt werden."
230
 
231
+ #: inc-options/backend_options.php:50
232
  #@ adminimize
233
  msgid "Change User-Info, redirect to"
234
  msgstr "User Info ge&auml;ndert, Weiterleitung nach"
235
 
236
+ #: inc-options/backend_options.php:55
237
  #@ adminimize
238
  msgid "Frontpage of the Blog"
239
  msgstr "Startseite des Blog"
240
 
241
+ #: inc-options/backend_options.php:56
242
  #@ adminimize
243
  msgid "When the &quot;User-Info-area&quot; change it, then it is possible to change the redirect."
244
  msgstr "Wenn der &quot;User-Info-Bereich&quot; ge&auml;ndert wird, dann kann die die Weiterleitung nach einem Logout ge&auml;ndert werden."
245
 
246
+ #: inc-options/backend_options.php:60
247
  #@ adminimize
248
  msgid "Footer"
249
  msgstr "Footer"
250
 
251
+ #: inc-options/backend_options.php:66
252
  #@ adminimize
253
  msgid "The Footer-area can hide, include all links and details."
254
  msgstr "Der Footer-Bereich kann deaktiviert werden, inklusive aller Links und Hinweise."
255
 
256
+ #: inc-options/backend_options.php:31
257
+ #: inc-options/backend_options.php:85
258
+ #: inc-options/backend_options.php:95
259
+ #: inc-options/backend_options.php:105
260
+ #: inc-options/backend_options.php:115
261
+ #: inc-options/backend_options.php:125
 
 
 
 
 
 
262
  #@ adminimize
263
  msgid "Activate"
264
  msgstr "Aktiv"
265
 
266
+ #: inc-options/backend_options.php:80
 
 
 
 
 
267
  #@ adminimize
268
  msgid "Timestamp"
269
  msgstr "Timestamp"
270
 
271
+ #: inc-options/backend_options.php:86
272
  #@ adminimize
273
  msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
274
  msgstr "Das Feld zum &Auml;ndern des Ver&ouml;ffentlichungsdatum ist immer ge&ouml;ffnet."
275
 
276
+ #: inc-options/backend_options.php:90
277
  #@ adminimize
278
  msgid "Thickbox FullScreen"
279
  msgstr "Thickbox FullScreen"
280
 
281
+ #: inc-options/backend_options.php:100
282
  #@ adminimize
283
  msgid "Flashuploader"
284
  msgstr "Flashuploader"
285
 
286
+ #: inc-options/backend_options.php:106
287
  #@ adminimize
288
  msgid "Disable the flashuploader and users use only the standard uploader."
289
  msgstr "Deaktiviere den Flashuploader und Nutzer können nur den Standard-Uploader erreichen."
290
 
291
+ #: inc-options/backend_options.php:120
292
  #@ adminimize
293
  msgid "Advice in Footer"
294
  msgstr "Hinweis im Footer"
295
 
296
+ #: inc-options/backend_options.php:154
297
  #@ adminimize
298
  msgid "Manage Posts"
299
  msgstr "Verwalten Beitr&auml;ge"
300
 
301
+ #: inc-options/backend_options.php:155
302
  #@ adminimize
303
  msgid "Manage Pages"
304
  msgstr "Verwalten Seiten"
305
 
306
+ #: inc-options/backend_options.php:156
307
  #@ adminimize
308
  msgid "Write Post"
309
  msgstr "Schreiben Beitrag"
310
 
311
+ #: inc-options/backend_options.php:157
312
  #@ adminimize
313
  msgid "Write Page"
314
  msgstr "Schreiben Seite"
315
 
316
+ #: inc-options/backend_options.php:158
317
+ #: inc-options/write_post_options.php:92
318
  #@ adminimize
319
  msgid "Comments"
320
  msgstr "Kommentare"
321
 
322
+ #: inc-options/backend_options.php:159
323
  #@ adminimize
324
  msgid "other Page"
325
  msgstr "andere Seite"
326
 
327
+ #: inc-options/backend_options.php:171
328
  #: inc-options/dashboard_options.php:122
329
  #: inc-options/global_options.php:122
330
  #: inc-options/links_options.php:126
331
+ #: inc-options/menu_options.php:155
332
  #: inc-options/wp_nav_menu_options.php:147
333
+ #: inc-options/write_cp_options.php:239
334
+ #: inc-options/write_page_options.php:187
335
+ #: inc-options/write_post_options.php:197
336
  #@ adminimize
337
  msgid "Update Options"
338
  msgstr "Einstellungen aktualisieren"
352
  #: inc-options/wp_nav_menu_options.php:22
353
  #: inc-options/wp_nav_menu_options.php:122
354
  #: inc-options/write_cp_options.php:204
355
+ #: inc-options/write_page_options.php:162
356
+ #: inc-options/write_post_options.php:172
357
  #@ adminimize
358
  msgid "Option"
359
  msgstr "Einstellung"
383
  #: inc-options/global_options.php:50
384
  #: inc-options/wp_nav_menu_options.php:49
385
  #: inc-options/write_cp_options.php:95
386
+ #: inc-options/write_page_options.php:77
387
+ #: inc-options/write_post_options.php:82
388
  #@ adminimize
389
  #@ default
390
  msgid "Screen Options"
411
  #: inc-options/links_options.php:100
412
  #: inc-options/wp_nav_menu_options.php:121
413
  #: inc-options/write_cp_options.php:202
414
+ #: inc-options/write_page_options.php:161
415
+ #: inc-options/write_post_options.php:171
416
  #@ adminimize
417
  msgid "ID or class"
418
  msgstr "ID oder Klasse"
422
  #: inc-options/links_options.php:107
423
  #: inc-options/wp_nav_menu_options.php:128
424
  #: inc-options/write_cp_options.php:211
425
+ #: inc-options/write_page_options.php:168
426
+ #: inc-options/write_post_options.php:178
427
  #@ adminimize
428
  msgid "It is possible to add your own IDs or classes from elements and tags. You can find IDs and classes with the FireBug Add-on for Firefox. Assign a value and the associate name per line."
429
  msgstr "Es ist möglich, dass du eigene IDs und Klassen eines Elementes oder Tags hinzufügst. Du findest IDs und Klassen sehr einfach mit dem Firebug Add-on für den Firefox. Füge pro Zeile einen Wert und dazugehörigen Namen ein."
433
  #: inc-options/links_options.php:113
434
  #: inc-options/wp_nav_menu_options.php:134
435
  #: inc-options/write_cp_options.php:221
436
+ #: inc-options/write_page_options.php:174
437
+ #: inc-options/write_post_options.php:184
438
  #@ adminimize
439
  msgid "Possible nomination for ID or class. Separate multiple nominations through a carriage return."
440
  msgstr "Mögliche Benennung der ID oder Klasse. Trenne Werte durch eine neue Zeile."
443
  #: inc-options/global_options.php:114
444
  #: inc-options/links_options.php:118
445
  #: inc-options/wp_nav_menu_options.php:139
446
+ #: inc-options/write_cp_options.php:229
447
+ #: inc-options/write_page_options.php:179
448
+ #: inc-options/write_post_options.php:189
449
  #@ adminimize
450
  msgid "Possible IDs or classes. Separate multiple values through a carriage return."
451
  msgstr "Mögliche IDs oder Klassen. Trenne Werte durch eine neue Zeile."
463
 
464
  #: inc-options/wp_nav_menu_options.php:48
465
  #: inc-options/write_cp_options.php:94
466
+ #: inc-options/write_page_options.php:76
467
+ #: inc-options/write_post_options.php:81
468
  #@ adminimize
469
  #@ default
470
  msgid "Help"
471
  msgstr "Hilfe"
472
 
473
  #: inc-options/write_cp_options.php:96
474
+ #: inc-options/write_page_options.php:79
475
+ #: inc-options/write_post_options.php:84
476
  #@ adminimize
477
  msgid "Permalink"
478
  msgstr "Permalink"
479
 
480
+ #: inc-options/write_post_options.php:89
481
  #@ adminimize
482
  msgid "Excerpt"
483
  msgstr "Auszug"
484
 
485
+ #: inc-options/write_post_options.php:90
486
  #@ adminimize
487
  msgid "Trackbacks"
488
  msgstr "Trackbacks"
489
 
490
+ #: inc-options/write_page_options.php:80
491
+ #: inc-options/write_post_options.php:91
492
  #@ default
493
  msgid "Custom Fields"
494
  msgstr "Benutzerdefinierte Felder"
495
 
496
  #: inc-options/write_cp_options.php:101
497
+ #: inc-options/write_post_options.php:93
498
  #@ adminimize
499
  msgid "Password Protect This Post"
500
  msgstr "Diesen Artikel durch ein Passwort sch&uuml;tzen"
501
 
502
+ #: inc-options/write_post_options.php:94
503
  #@ default
504
  msgid "Post Author"
505
  msgstr "Autor"
506
 
507
+ #: inc-options/write_post_options.php:95
508
  #@ default
509
  msgid "Post Revisions"
510
  msgstr "Post Revisions"
511
 
512
  #: inc-options/write_cp_options.php:102
513
+ #: inc-options/write_post_options.php:96
514
  #@ adminimize
515
  msgid "Related, Shortcuts"
516
  msgstr "Siehe auch, Tastaturk&uuml;rzel"
517
 
518
  #: inc-options/write_cp_options.php:104
519
+ #: inc-options/write_page_options.php:90
520
+ #: inc-options/write_post_options.php:98
521
  #@ adminimize
522
  msgid "h2: Advanced Options"
523
  msgstr "h2: Erweiterte Einstellungen"
524
 
525
  #: inc-options/write_cp_options.php:105
526
+ #: inc-options/write_page_options.php:91
527
+ #: inc-options/write_post_options.php:99
528
  #@ adminimize
529
  msgid "Media Buttons (all)"
530
  msgstr "Media Buttons (alle)"
531
 
532
  #: inc-options/write_cp_options.php:106
533
+ #: inc-options/write_page_options.php:92
534
+ #: inc-options/write_post_options.php:100
535
  #@ adminimize
536
  msgid "Word count"
537
  msgstr "Word count"
538
 
539
  #: inc-options/write_cp_options.php:107
540
+ #: inc-options/write_post_options.php:101
541
  #@ adminimize
542
  msgid "Post Slug"
543
  msgstr "Titelform"
544
 
545
  #: inc-options/links_options.php:56
546
  #: inc-options/write_cp_options.php:108
547
+ #: inc-options/write_page_options.php:94
548
+ #: inc-options/write_post_options.php:102
549
  #@ adminimize
550
  msgid "Publish Actions"
551
  msgstr "Publish Actions"
552
 
553
  #: inc-options/write_cp_options.php:109
554
+ #: inc-options/write_page_options.php:95
555
+ #: inc-options/write_post_options.php:103
556
  #@ default
557
  #@ adminimize
558
  msgid "Discussion"
559
  msgstr "Kommentare"
560
 
561
  #: inc-options/write_cp_options.php:120
562
+ #: inc-options/write_post_options.php:108
563
  #@ adminimize
564
  msgid "Post Thumbnail"
565
  msgstr "Artikelbild"
566
 
567
+ #: inc-options/write_page_options.php:81
 
 
 
 
 
 
 
 
 
 
568
  #@ adminimize
569
  msgid "Comments &amp; Pings"
570
  msgstr "Kommentare &amp; Pings"
571
 
572
+ #: inc-options/write_page_options.php:82
573
  #@ adminimize
574
  msgid "Password Protect This Page"
575
  msgstr "Diese Seite mit einem Passwort versehen"
576
 
577
+ #: inc-options/write_page_options.php:83
578
  #@ adminimize
579
  msgid "Attributes"
580
  msgstr "Attribute"
581
 
582
+ #: inc-options/write_page_options.php:84
583
  #@ adminimize
584
  msgid "Page Template"
585
  msgstr "Seiten Template"
586
 
587
+ #: inc-options/write_page_options.php:85
588
  #@ adminimize
589
  msgid "Page Order"
590
  msgstr "Reihenfolge"
591
 
592
+ #: inc-options/write_page_options.php:86
593
  #@ default
594
  msgid "Page Author"
595
  msgstr "Seitenautor"
596
 
597
+ #: inc-options/write_page_options.php:87
598
  #@ default
599
  msgid "Page Revisions"
600
  msgstr "Page Revisions"
601
 
602
+ #: inc-options/write_page_options.php:88
603
  #@ adminimize
604
  msgid "Related"
605
  msgstr "Siehe auch"
606
 
607
+ #: inc-options/write_page_options.php:93
608
  #@ adminimize
609
  msgid "Page Slug"
610
  msgstr "Titelform"
611
 
612
+ #: inc-options/write_page_options.php:100
613
  #@ adminimize
614
  msgid "Page Image"
615
  msgstr "Artikelbild"
616
 
617
  #: inc-options/menu_options.php:67
618
+ #: inc-options/menu_options.php:119
619
  #@ adminimize
620
  msgid "After activate the check box it heavy attitudes will change."
621
  msgstr "Wenn die Checkbox aktiv ist, dann wird das Ändern von Einstellungen erschwert."
622
 
623
+ #: inc-options/menu_options.php:102
624
  #@ default
625
  msgid "Profile"
626
  msgstr "Profile"
632
  msgid "Write options - Post"
633
  msgstr "Schreiben Einstellungen - Beitr&auml;ge"
634
 
635
+ #: inc-options/write_post_options.php:171
636
  #@ adminimize
637
  msgid "Your own post options"
638
  msgstr "Deine eigenen Beitrags-Einstellungen"
644
  msgid "Write options - Page"
645
  msgstr "Schreiben Einstellungen - Seiten"
646
 
647
+ #: inc-options/write_page_options.php:161
648
  #@ adminimize
649
  msgid "Your own page options"
650
  msgstr "Deine eigenen Seiten-Einstellungen"
805
  msgid "MiniMenu"
806
  msgstr "MiniMenu"
807
 
808
+ #: inc-options/backend_options.php:173
809
  #: inc-options/dashboard_options.php:127
810
  #: inc-options/deinstall_options.php:27
811
  #: inc-options/global_options.php:124
812
  #: inc-options/im_export_options.php:41
813
  #: inc-options/links_options.php:129
814
+ #: inc-options/menu_options.php:157
815
  #: inc-options/minimenu.php:99
816
  #: inc-options/theme_options.php:105
817
  #: inc-options/wp_nav_menu_options.php:149
818
+ #: inc-options/write_cp_options.php:244
819
+ #: inc-options/write_page_options.php:189
820
+ #: inc-options/write_post_options.php:199
821
  #@ adminimize
822
  msgid "scroll to top"
823
  msgstr "Nach oben"
832
  msgid "Choose a Adminimize (<em>.seq</em>) file to upload, then click <em>Upload file and import</em>."
833
  msgstr "Wähle eine Adminimize (<em>.seq</em>) Datei zum hoch laden und dann klick <em>Hochladen der Datei und importieren</em>"
834
 
835
+ #: inc-options/backend_options.php:110
836
  #@ adminimize
837
  msgid "Category Height"
838
  msgstr "Kategorie-Höhe"
839
 
840
+ #: inc-options/backend_options.php:116
841
  #@ adminimize
842
  msgid "View the Meta Box with Categories in the full height, no scrollbar or whitespace."
843
  msgstr "Stellt in die Meta Box der Kategorien in voller Höhe dar, kein Scrollbar und kein Leerraum."
844
 
845
+ #: inc-options/backend_options.php:127
846
  #@ adminimize
847
  msgid "In the Footer you can display an advice for changing the Default-design, (x)HTML is possible."
848
  msgstr "Im Footer kann ein Hinweis auf die aktive Ver&auml;nderung des Standard-Layout gesetzt werden, (x)HTML erlaubt."
849
 
850
+ #: inc-options/backend_options.php:149
851
  #@ adminimize
852
  msgid "Dashboard deactivate, redirect to"
853
  msgstr "Dashboard inaktiv, Weiterleitung nach"
854
 
855
  #: inc-options/write_cp_options.php:110
856
+ #: inc-options/write_page_options.php:96
857
+ #: inc-options/write_post_options.php:104
858
  #@ default
859
  #@ adminimize
860
  msgid "HTML Editor Button"
861
  msgstr "HTML Editor Button"
862
 
863
+ #: inc-options/backend_options.php:96
864
  #@ adminimize
865
  msgid "All Thickbox-function use the full area of the browser. Thickbox is for example in upload media-files."
866
  msgstr "Alle Thickbox-Funktion verwenden den vollständigen Bereich des Browsers. Thickbox ist beispielsweise in der Medien-Upload-Funktion."
889
  msgid "http://bueltge.de/"
890
  msgstr ""
891
 
892
+ #: inc-options/backend_options.php:70
893
  #@ adminimize
894
  msgid "Header"
895
  msgstr "Header"
896
 
897
+ #: inc-options/backend_options.php:76
898
  #@ adminimize
899
  msgid "The Header-area can hide, include all links and details."
900
  msgstr "Der header-Bereich kann ausgeblendet werden, inkl. aller Links und Details."
901
 
902
+ #: inc-options/write_page_options.php:78
903
+ #: inc-options/write_post_options.php:83
904
  #@ adminimize
905
  msgid "Title"
906
  msgstr "Title"
907
 
908
+ #: inc-options/backend_options.php:26
909
  #@ adminimize
910
  msgid "Exclude Super Admin"
911
  msgstr "Ausschließen des Super Admin"
912
 
913
+ #: inc-options/backend_options.php:32
914
  #@ adminimize
915
  msgid "Exclude the Super Admin on a WP Multisite Install from all limitations of this plugin."
916
  msgstr "Schließe den Super Admin in einer WordPress Multisite Installation von allen Restriktionen dieses Plugins aus."
917
 
918
+ #: inc-options/backend_options.php:162
919
  #@ adminimize
920
  msgid "You have deactivated the Dashboard, please select a page for redirection or define custom url, include http://?"
921
  msgstr "Du hast das Dashboard deaktiviert; bitte wähle eine Seite für die Weiterleitung oder definiere eine eigene URL, inklusive http://"
953
  msgstr "Menu hinzufügen"
954
 
955
  #: inc-options/write_cp_options.php:98
956
+ #: inc-options/write_post_options.php:86
957
  #@ adminimize
958
  msgid "Format"
959
  msgstr "Format"
960
 
961
  #: inc-options/write_cp_options.php:103
962
+ #: inc-options/write_page_options.php:89
963
+ #: inc-options/write_post_options.php:97
964
  #@ adminimize
965
  msgid "Messages"
966
  msgstr "Mitteilungen"
967
 
968
  #: inc-options/write_cp_options.php:126
969
+ #: inc-options/write_page_options.php:104
970
+ #: inc-options/write_post_options.php:112
971
  #@ adminimize
972
  msgid "Quick Edit Link"
973
  msgstr "QuickEdit Link"
976
  #: inc-options/write_cp_options.php:131
977
  #: inc-options/write_cp_options.php:134
978
  #: inc-options/write_cp_options.php:137
979
+ #: inc-options/write_page_options.php:105
980
+ #: inc-options/write_page_options.php:110
981
+ #: inc-options/write_page_options.php:113
982
+ #: inc-options/write_post_options.php:113
983
+ #: inc-options/write_post_options.php:117
984
+ #: inc-options/write_post_options.php:120
985
+ #: inc-options/write_post_options.php:123
986
  #@ adminimize
987
  msgid "QE"
988
  msgstr "QE"
989
 
990
  #: inc-options/write_cp_options.php:127
991
+ #: inc-options/write_page_options.php:105
992
+ #: inc-options/write_post_options.php:113
993
  #@ adminimize
994
  msgid "Inline Edit Left"
995
  msgstr "Inline Edit Links"
996
 
997
  #: inc-options/write_cp_options.php:128
998
+ #: inc-options/write_page_options.php:106
999
+ #: inc-options/write_post_options.php:114
1000
  #@ adminimize
1001
  msgid "All Labels"
1002
  msgstr "Alle labels"
1003
 
1004
+ #: inc-options/write_page_options.php:107
1005
  #@ adminimize
1006
  msgid "Date"
1007
  msgstr "Datum"
1008
 
1009
  #: inc-options/write_cp_options.php:130
1010
+ #: inc-options/write_page_options.php:109
1011
+ #: inc-options/write_post_options.php:116
1012
  #@ adminimize
1013
  msgid "Password and Private"
1014
  msgstr "Passwort und Privat-Flag"
1015
 
1016
  #: inc-options/write_cp_options.php:134
1017
+ #: inc-options/write_page_options.php:110
1018
+ #: inc-options/write_post_options.php:120
1019
  #@ adminimize
1020
  msgid "Inline Edit Right"
1021
  msgstr "Inline Edit rechts"
1022
 
1023
+ #: inc-options/write_page_options.php:111
1024
  #@ adminimize
1025
  msgid "Parent, Order, Template"
1026
  msgstr "Eltern, Reihenfolge, Template"
1027
 
1028
+ #: inc-options/write_page_options.php:112
1029
  #@ adminimize
1030
  msgid "Status"
1031
  msgstr "Status"
1032
 
1033
  #: inc-options/write_cp_options.php:137
1034
+ #: inc-options/write_page_options.php:113
1035
+ #: inc-options/write_post_options.php:123
1036
  #@ adminimize
1037
  msgid "Cancel/Save Button"
1038
  msgstr "Abbrechen/Aktualisieren Button"
1039
 
1040
  #: inc-options/write_cp_options.php:131
1041
+ #: inc-options/write_post_options.php:117
1042
  #@ adminimize
1043
  msgid "Inline Edit Center"
1044
  msgstr "Inline Edit mitte"
1045
 
1046
  #: inc-options/write_cp_options.php:132
1047
+ #: inc-options/write_post_options.php:118
1048
  #@ adminimize
1049
  msgid "Categories Title"
1050
  msgstr "Kategorien Title"
1051
 
1052
  #: inc-options/write_cp_options.php:133
1053
+ #: inc-options/write_post_options.php:119
1054
  #@ adminimize
1055
  msgid "Categories List"
1056
  msgstr "Kategorien Liste"
1057
 
1058
  #: inc-options/write_cp_options.php:136
1059
+ #: inc-options/write_post_options.php:122
1060
  #@ adminimize
1061
  msgid "Status, Sticky"
1062
  msgstr "Status, Sticky"
1084
  msgid "Your own %s options"
1085
  msgstr "Deine eigenen %s Einstellungen"
1086
 
 
 
 
 
 
 
1087
  #: inc-options/dashboard_options.php:17
1088
  #: inc-options/minimenu.php:32
1089
  #@ adminimize
1098
  #: inc-options/minimenu.php:87
1099
  #@ adminimize
1100
  msgid "Further information: Visit the <a href=\"http://wordpress.org/extend/plugins/adminimize/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
1101
+ msgstr "Weitere Informationen: Besuchen Sie die <a href=\"http://wordpress.org/extend/plugins/adminimize/\">Plugin Website</a> für weitere Informationen oder um die neueste Version des Plugins erhalten."
1102
+
1103
+ #. translators: plugin header field 'Version'
1104
+ #: adminimize.php:0
1105
+ #@ adminimize
1106
+ msgid "1.7.26"
1107
+ msgstr ""
1108
+
1109
+ #: inc-options/settings_notice.php:17
1110
+ #@ adminimize
1111
+ msgid "Attention: The settings page ignores these Menu settings and views the menu with all entries!"
1112
+ msgstr "Achtung: Die Seite der Einstellungen ignoriert Menu-Einstellungen und stellt das Menu mit allen Einträgen dar!"
1113
+
1114
+ #: inc-setup/admin-bar.php:239
1115
+ #@ default
1116
+ msgid "Network Admin"
1117
+ msgstr ""
1118
+
1119
+ #: inc-setup/admin-bar.php:241
1120
+ #@ default
1121
+ msgid "Site Admin"
1122
+ msgstr ""
1123
 
readme.txt CHANGED
@@ -4,13 +4,13 @@ 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: 3.4-alpha
7
- Stable tag: 1.7.25
8
 
9
  Adminimize is a WordPress plugin that lets you hide 'unnecessary' items from the WordPress backend and many many more ...
10
 
11
  == Description ==
12
  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.
13
- 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 all roles in WordPress.
14
 
15
  = Support Custom Options on all different post types =
16
  With version 1.6.1 it is possible to add own options for hide areas in the backend of WordPress. It is easy and you must only forgive ID or class of the tag. Also it is possible to use a fixed menu and header.
@@ -23,16 +23,10 @@ Also it is possible with version 1.7.18 to use on custom post types; hide 'unnec
23
  1. [Drop Down Admin Menus](http://www.stuff.yellowswordfish.com/ "Drop Down Admin Menus for WordPress 2.5") by Andy Staines
24
 
25
  = Compatibility with the plugins for MetaBoxes in Write-area =
26
- 1. [Simple Tag](http://wordpress.org/extend/plugins/simple-tags "Simple Tag") by Amaury BALMER
27
- 1. [Text Control](http://wordpress.org/extend/plugins/text-control-2/ "Text Control") by Jeff Minard and Frank Bueltge
28
- 1. [All in One SEO Pack](http://semperfiwebdesign.com "All in One SEO Pack") by Michael Torbert
29
- 1. [TDO Mini Forms](http://thedeadone.net/software/tdo-mini-forms-wordpress-plugin/ "TDO Mini Forms") by Mark Cunningham
30
- 1. [Post Notification](http://pn.xn--strbe-mva.de/ "Post Notification") by Moritz Str&uuml;be
31
- 1. [HTML Special Characters Helper](http://coffee2code.com/wp-plugins/html-special-characters-helper "HTML Special Characters Helper") by Scott Reilly
32
  1. You can add your own options, you must only see for css selectors
33
 
34
  = Requirements =
35
- 1. WordPress version 2.5 and later
36
 
37
  = What does this plugin do? =
38
  The plugin changes the administration backend and gives you the power to assign rights on certain parts. Admins can activate/deactivate every part of the menu and even parts of the submenu. Meta fields can be administered separately for posts and pages. Certain parts of the write menu can be deactivated separately for admins or non-admins. The header of the backend is minimized and optimized to give you more space and the structure of the menu gets changed to make it more logical - this can all be done per user so each user can have his own settings.
@@ -99,12 +93,25 @@ See on [the official website](http://bueltge.de/wordpress-admin-theme-adminimize
99
  1. Adminimize Theme how in WordPress 2.3
100
 
101
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
102
  = v1.7.25 =
103
  * Update for fix menu-items with entities
104
  * [Fix](http://plugins.trac.wordpress.org/changeset/494274) for display settings on menu, if items are deactivated
105
  * Add Separator to settings of menu, for hide this for different roles
106
  * Add notice for settings page, that no settings work on this page
107
  * Fix rewrite, if change the user info area and define an rewrite
 
108
 
109
  = v1.7.24 =
110
  * Maintenance: add ID for hide html-tab on Edtior also in WP 3.3
@@ -372,6 +379,8 @@ The plugin comes with various translations, please refer to the [WordPress Codex
372
  * Thanks to [Outshine Solutions](http://outshinesolutions.com/web-hosting/web-hosting-india.html) for hindi language files.
373
  * Thanks to [ray.s](http://letsbefamous.com/) for irish translation.
374
  * Thanks for bulgarian language files to [Web Geek](http://webhostinggeeks.com/)
 
 
375
 
376
 
377
  == Frequently Asked Questions ==
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: 3.4-alpha
7
+ Stable tag: 1.7.26
8
 
9
  Adminimize is a WordPress plugin that lets you hide 'unnecessary' items from the WordPress backend and many many more ...
10
 
11
  == Description ==
12
  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.
13
+ 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. Many options for menu, submenu and all areas, metaboxes in the write-area, separated for all roles in WordPress.
14
 
15
  = Support Custom Options on all different post types =
16
  With version 1.6.1 it is possible to add own options for hide areas in the backend of WordPress. It is easy and you must only forgive ID or class of the tag. Also it is possible to use a fixed menu and header.
23
  1. [Drop Down Admin Menus](http://www.stuff.yellowswordfish.com/ "Drop Down Admin Menus for WordPress 2.5") by Andy Staines
24
 
25
  = Compatibility with the plugins for MetaBoxes in Write-area =
 
 
 
 
 
 
26
  1. You can add your own options, you must only see for css selectors
27
 
28
  = Requirements =
29
+ 1. WordPress version 2.8 and later
30
 
31
  = What does this plugin do? =
32
  The plugin changes the administration backend and gives you the power to assign rights on certain parts. Admins can activate/deactivate every part of the menu and even parts of the submenu. Meta fields can be administered separately for posts and pages. Certain parts of the write menu can be deactivated separately for admins or non-admins. The header of the backend is minimized and optimized to give you more space and the structure of the menu gets changed to make it more logical - this can all be done per user so each user can have his own settings.
93
  1. Adminimize Theme how in WordPress 2.3
94
 
95
  == Changelog ==
96
+ = v1.7.27 =
97
+ * Fix, if you dnt use redirect for php notice
98
+ * Add romanian language
99
+
100
+ = v1.7.26 =
101
+ * Grammerfix for settings message [see thread](http://wordpress.org/support/topic/plugin-adminimize-what-does-the-settings-page-ignores-this-settings-mean?replies=4)
102
+ * Fix for custom areas on Custom Post Types, [see thread](http://wordpress.org/support/topic/plugin-adminimize-bug-in-custom-metabox-ids-for-custom-types?replies=3)
103
+ * Exclude backend theme options, was used only smaller 2.0 of WP
104
+ * Exclude Hint in Footer
105
+ * Exclude writescroll options
106
+ * Different cleaner actions
107
+
108
  = v1.7.25 =
109
  * Update for fix menu-items with entities
110
  * [Fix](http://plugins.trac.wordpress.org/changeset/494274) for display settings on menu, if items are deactivated
111
  * Add Separator to settings of menu, for hide this for different roles
112
  * Add notice for settings page, that no settings work on this page
113
  * Fix rewrite, if change the user info area and define an rewrite
114
+ * List Separator on menu-items; also possible to hide this
115
 
116
  = v1.7.24 =
117
  * Maintenance: add ID for hide html-tab on Edtior also in WP 3.3
379
  * Thanks to [Outshine Solutions](http://outshinesolutions.com/web-hosting/web-hosting-india.html) for hindi language files.
380
  * Thanks to [ray.s](http://letsbefamous.com/) for irish translation.
381
  * Thanks for bulgarian language files to [Web Geek](http://webhostinggeeks.com/)
382
+ * Thanks for romanian language to [Alexander Ovsov - Web Geek](http://webhostinggeeks.com/)
383
+ * Lithuanian translation files by [Vincent G](http://www.host1plus.com)
384
 
385
 
386
  == Frequently Asked Questions ==