Adminimize - Version 1.7.13

Version Description

Download this release

Release Info

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

Code changes from version 1.7.7 to 1.7.13

Adminimize-da_DK.txt CHANGED
@@ -1,4 +1,4 @@
1
- Adminimize 1.7.7
2
 
3
  Filerne skal ligge i mappen adminimize/languages
4
 
1
+ Adminimize 1.7.9
2
 
3
  Filerne skal ligge i mappen adminimize/languages
4
 
adminimize.php CHANGED
@@ -2,18 +2,18 @@
2
  /**
3
  * @package Adminimize
4
  * @author Frank Bültge
5
- * @version 1.7.7
6
  */
7
 
8
  /*
9
  Plugin Name: Adminimize
10
  Plugin URI: http://bueltge.de/wordpress-admin-theme-adminimize/674/
 
 
11
  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.
12
  Author: Frank Bültge
13
  Author URI: http://bueltge.de/
14
- Version: 1.7.7
15
- License: GNU
16
- Last Update: 18.03.2010 09:59:41
17
  */
18
 
19
  /**
@@ -58,6 +58,11 @@ function _mw_adminimize_textdomain() {
58
  }
59
 
60
 
 
 
 
 
 
61
  function recursive_in_array($needle, $haystack) {
62
  if ($haystack != '') {
63
  foreach ($haystack as $stalk) {
@@ -117,10 +122,12 @@ function get_all_user_roles() {
117
  global $wp_roles;
118
 
119
  $user_roles = array();
120
-
121
- foreach ($wp_roles->roles as $role => $data) {
122
- array_push($user_roles, $role);
123
- //$data contains caps, maybe for later use..
 
 
124
  }
125
 
126
  return $user_roles;
@@ -167,6 +174,45 @@ function _mw_adminimize_control_flashloader() {
167
  function _mw_adminimize_init() {
168
  global $pagenow, $menu, $submenu, $adminimizeoptions, $wp_version;
169
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
170
  $user_roles = get_all_user_roles();
171
 
172
  $adminimizeoptions = get_option('mw_adminimize');
@@ -176,6 +222,7 @@ function _mw_adminimize_init() {
176
  $disabled_metaboxes_post_[$role] = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_'. $role .'_items');
177
  $disabled_metaboxes_page_[$role] = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_'. $role .'_items');
178
  $disabled_link_option_[$role] = _mw_adminimize_getOptionValue('mw_adminimize_disabled_link_option_'. $role .'_items');
 
179
  }
180
 
181
  $disabled_metaboxes_post_all = array();
@@ -196,10 +243,17 @@ function _mw_adminimize_init() {
196
  break;
197
  }
198
 
 
 
 
 
 
 
 
199
  //post-page options
200
  $post_page_pages = array('post-new.php', 'post.php', 'page-new.php', 'page.php');
201
  if ( in_array( $pagenow, $post_page_pages ) ) {
202
-
203
  $_mw_adminimize_writescroll = _mw_adminimize_getOptionValue('_mw_adminimize_writescroll');
204
  switch ($_mw_adminimize_writescroll) {
205
  case 1:
@@ -260,7 +314,11 @@ function _mw_adminimize_init() {
260
  ) {
261
 
262
  // only posts
263
- if ( ('post-new.php' == $pagenow) || ('post.php' == $pagenow) ) {
 
 
 
 
264
  if ( version_compare( substr($wp_version, 0, 3), '2.7', '<' ) )
265
  add_action('admin_head', '_mw_adminimize_remove_box', 99);
266
 
@@ -278,7 +336,12 @@ function _mw_adminimize_init() {
278
  }
279
 
280
  // only pages
281
- if ( ('page-new.php' == $pagenow) || ('page.php' == $pagenow) ) {
 
 
 
 
 
282
 
283
  // check for array empty
284
  if ( !isset($disabled_metaboxes_page_['editor']['0']) )
@@ -296,13 +359,15 @@ function _mw_adminimize_init() {
296
  add_action('admin_head', '_mw_adminimize_set_global_option', 1);
297
 
298
  // set metabox post option
299
- $post_pages = array('post-new.php', 'post.php');
300
- if ( in_array( $pagenow, $post_pages ) )
301
- add_action('admin_head', '_mw_adminimize_set_metabox_post_option', 1);
 
 
302
 
303
  // set metabox page option
304
- $page_pages = array('page-new.php', 'page.php');
305
- if ( in_array( $pagenow, $page_pages ) )
306
  add_action('admin_head', '_mw_adminimize_set_metabox_page_option', 1);
307
 
308
  // set link option
@@ -310,14 +375,22 @@ function _mw_adminimize_init() {
310
  if ( in_array( $pagenow, $link_pages ) )
311
  add_action('admin_head', '_mw_adminimize_set_link_option', 1);
312
 
 
 
 
 
 
313
  add_action('in_admin_footer', '_mw_adminimize_admin_footer');
314
 
315
  $adminimizeoptions['mw_adminimize_default_menu'] = $menu;
316
  $adminimizeoptions['mw_adminimize_default_submenu'] = $submenu;
317
  }
318
 
319
- add_action('init', '_mw_adminimize_textdomain');
320
- if ( is_admin() ) {
 
 
 
321
  add_action('admin_menu', '_mw_adminimize_add_settings_page');
322
  add_action('admin_menu', '_mw_adminimize_remove_dashboard');
323
  add_action('admin_init', '_mw_adminimize_init', 1);
@@ -584,7 +657,13 @@ function _mw_adminimize_admin_styles($file) {
584
  * http://www.ilfilosofo.com/blog/2006/05/24/plugin-remove-the-wordpress-dashboard/
585
  */
586
  function _mw_adminimize_remove_dashboard() {
587
- global $menu, $submenu, $user_ID;
 
 
 
 
 
 
588
 
589
  $user_roles = get_all_user_roles();
590
 
@@ -602,28 +681,19 @@ function _mw_adminimize_remove_dashboard() {
602
  }
603
 
604
  // remove dashboard
605
- if ( $disabled_menu_all != '' || $disabled_submenu_all != '' ) {
606
 
607
- $i = 0;
608
  foreach ($user_roles as $role) {
609
-
610
- if ( current_user_can($role) && $i == 0 ) {
611
- if (
612
- recursive_in_array('index.php', $disabled_menu_[$role]) ||
613
- recursive_in_array('index.php', $disabled_submenu_[$role])
614
- )
615
- $redirect = 'true';
616
- } elseif ( current_user_can($role) ) {
617
- if (
618
- recursive_in_array('index.php', $disabled_menu_[$role]) ||
619
- recursive_in_array('index.php', $disabled_submenu_[$role])
620
- )
621
- $redirect = 'true';
622
  }
623
- $i++;
624
  }
625
-
626
- if ( isset($redirect) && $redirect == 'true' ) {
627
  $_mw_adminimize_db_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_db_redirect');
628
  switch ($_mw_adminimize_db_redirect) {
629
  case 0:
@@ -633,7 +703,7 @@ function _mw_adminimize_remove_dashboard() {
633
  $_mw_adminimize_db_redirect = 'edit.php';
634
  break;
635
  case 2:
636
- $_mw_adminimize_db_redirect = 'edit-pages.php';
637
  break;
638
  case 3:
639
  $_mw_adminimize_db_redirect = 'post-new.php';
@@ -645,10 +715,14 @@ function _mw_adminimize_remove_dashboard() {
645
  $_mw_adminimize_db_redirect = 'edit-comments.php';
646
  break;
647
  case 6:
648
- $_mw_adminimize_db_redirect = htmlspecialchars( stripslashes( _mw_adminimize_getOptionValue('_mw_adminimize_db_redirect_txt') ) );
649
  break;
650
  }
651
-
 
 
 
 
652
  $the_user = new WP_User($user_ID);
653
  reset($menu); $page = key($menu);
654
 
@@ -690,11 +764,11 @@ function _mw_adminimize_set_menu_option() {
690
  $disabled_menu_[$role] = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_'. $role .'_items');
691
  $disabled_submenu_[$role] = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_'. $role .'_items');
692
  }
693
-
694
  $_mw_adminimize_admin_head = "\n";
695
  $_mw_adminimize_user_info = _mw_adminimize_getOptionValue('_mw_adminimize_user_info');
696
  $_mw_adminimize_ui_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_ui_redirect');
697
-
698
  switch ($_mw_adminimize_user_info) {
699
  case 1:
700
  $_mw_adminimize_admin_head .= '<script type="text/javascript">' . "\n";
@@ -702,7 +776,9 @@ function _mw_adminimize_set_menu_option() {
702
  $_mw_adminimize_admin_head .= '</script>' . "\n";
703
  break;
704
  case 2:
705
- if ( version_compare(substr($wp_version, 0, 3), '2.7', '>=') ) {
 
 
706
  $_mw_adminimize_admin_head .= '<link rel="stylesheet" href="' . WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/mw_small_user_info27.css" type="text/css" />' . "\n";
707
  } else {
708
  $_mw_adminimize_admin_head .= '<link rel="stylesheet" href="' . WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/mw_small_user_info.css" type="text/css" />' . "\n";
@@ -717,7 +793,9 @@ function _mw_adminimize_set_menu_option() {
717
  $_mw_adminimize_admin_head .= '</script>' . "\n";
718
  break;
719
  case 3:
720
- if ( version_compare(substr($wp_version, 0, 3), '2.7', '>=') ) {
 
 
721
  $_mw_adminimize_admin_head .= '<link rel="stylesheet" href="' . WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/mw_small_user_info27.css" type="text/css" />' . "\n";
722
  } else {
723
  $_mw_adminimize_admin_head .= '<link rel="stylesheet" href="' . WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/mw_small_user_info.css" type="text/css" />' . "\n";
@@ -732,35 +810,41 @@ function _mw_adminimize_set_menu_option() {
732
  $_mw_adminimize_admin_head .= '</script>' . "\n";
733
  break;
734
  }
735
-
736
  // set menu
737
  if ($disabled_menu_['editor'] != '') {
738
 
739
  // set admin-menu
740
  foreach ($user_roles as $role) {
741
-
742
- if($role == $role[0]){
743
  if ( current_user_can($role) ) {
744
  $mw_adminimize_menu = $disabled_menu_[$role];
745
  $mw_adminimize_submenu = $disabled_submenu_[$role];
746
  }
747
- } elseif ( current_user_can($role) ) {
748
- $mw_adminimize_menu = $disabled_menu_[$role];
749
- $mw_adminimize_submenu = $disabled_submenu_[$role];
750
  }
751
  }
752
 
753
- foreach ($menu as $index => $item) {
754
- if ($item == 'index.php')
755
- continue;
756
-
757
- if ( isset($mw_adminimize_menu) && in_array($item[2], $mw_adminimize_menu) )
758
- unset($menu[$index]);
759
-
760
- if ( isset($submenu) && !empty($submenu[$item[2]]) ) {
761
- foreach ($submenu[$item[2]] as $subindex => $subitem) {
762
- if ( isset($mw_adminimize_submenu) && in_array($subitem[2], $mw_adminimize_submenu))
763
- unset($submenu[$item[2]][$subindex]);
 
 
 
 
 
 
 
 
 
764
  }
765
  }
766
  }
@@ -775,6 +859,7 @@ function _mw_adminimize_set_menu_option() {
775
  * set global options in backend in all areas
776
  */
777
  function _mw_adminimize_set_global_option() {
 
778
 
779
  $user_roles = get_all_user_roles();
780
 
@@ -790,19 +875,28 @@ function _mw_adminimize_set_global_option() {
790
  if ( !isset($disabled_global_option_[$role]['0']) )
791
  $disabled_global_option_[$role]['0'] = '';
792
  }
793
-
 
 
794
  foreach ($user_roles as $role) {
795
- if ($role == $role[0]) {
796
- if ( current_user_can($role) ) {
797
- $global_options = implode(', ', $disabled_global_option_[$role]);
 
 
 
798
  }
799
- } elseif ( current_user_can($role) ) {
800
- $global_options = implode(', ', $disabled_global_option_[$role]);
801
  }
802
  }
 
 
803
  $_mw_adminimize_admin_head .= '<!-- global options -->' . "\n";
804
  $_mw_adminimize_admin_head .= '<style type="text/css">' . $global_options . ' {display: none !important;}</style>' . "\n";
805
 
 
 
 
 
806
  if ($global_options)
807
  echo $_mw_adminimize_admin_head;
808
  }
@@ -825,12 +919,14 @@ function _mw_adminimize_set_metabox_post_option() {
825
  if ( !isset($disabled_metaboxes_post_[$role]['0']) )
826
  $disabled_metaboxes_post_[$role]['0'] = '';
827
 
828
- if ($role == $role[0]) {
829
- if ( current_user_can($role) ) {
830
- $metaboxes = implode(',', $disabled_metaboxes_post_[$role]);
 
 
 
 
831
  }
832
- } elseif ( current_user_can($role) ) {
833
- $metaboxes = implode(',', $disabled_metaboxes_post_[$role]);
834
  }
835
  }
836
 
@@ -858,12 +954,14 @@ function _mw_adminimize_set_metabox_page_option() {
858
  if ( !isset($disabled_metaboxes_page_[$role]['0']) )
859
  $disabled_metaboxes_page_[$role]['0'] = '';
860
 
861
- if($role == $role[0]){
862
- if ( current_user_can($role) ) {
863
- $metaboxes = implode(',', $disabled_metaboxes_page_[$role]);
 
 
 
 
864
  }
865
- } elseif ( current_user_can($role) ) {
866
- $metaboxes = implode(',', $disabled_metaboxes_page_[$role]);
867
  }
868
  }
869
 
@@ -894,22 +992,56 @@ function _mw_adminimize_set_link_option() {
894
  $disabled_link_option_[$role]['0'] = '';
895
  }
896
 
 
897
  foreach ($user_roles as $role) {
898
- if ($role == $role[0]) {
899
- if ( current_user_can($role) ) {
900
- $link_options = implode(', ', $disabled_link_option_[$role]);
 
901
  }
902
- } elseif ( current_user_can($role) ) {
903
- $link_options = implode(', ', $disabled_link_option_[$role]);
904
  }
905
  }
906
-
907
  $_mw_adminimize_admin_head .= '<style type="text/css">' . $link_options . ' {display: none !important;}</style>' . "\n";
908
 
909
  if ($link_options)
910
  echo $_mw_adminimize_admin_head;
911
  }
912
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
913
 
914
  /**
915
  * small user-info
@@ -940,7 +1072,7 @@ function _mw_adminimize_admin_footer() {
940
  $plugin_data['Title'] = '<a href="' . $plugin_data['PluginURI'] . '" title="'.__( 'Visit plugin homepage' ).'">' . $plugin_data['Name'] . '</a>';
941
 
942
  if ( basename($_SERVER['REQUEST_URI']) == 'adminimize.php') {
943
- printf('%1$s ' . __('plugin') . ' | ' . __('Version') . ' <a href="http://bueltge.de/wordpress-admin-theme-adminimize/674/#historie" title="' . __('History', FB_ADMINIMIZE_TEXTDOMAIN ) . '">%2$s</a> | ' . __('Author') . ' %3$s<br />', $plugin_data['Title'], $plugin_data['Version'], $plugin_data['Author']);
944
  }
945
  if ( _mw_adminimize_getOptionValue('_mw_adminimize_advice') == 1 && basename($_SERVER['REQUEST_URI']) != 'adminimize.php' ) {
946
  printf('%1$s ' . __('plugin activate', FB_ADMINIMIZE_TEXTDOMAIN ) . ' | ' . stripslashes( _mw_adminimize_getOptionValue('_mw_adminimize_advice_txt') ) . '<br />', $plugin_data['Title']);
@@ -975,7 +1107,7 @@ function _mw_adminimize_filter_plugin_meta($links, $file) {
975
  * Images/ Icons in base64-encoding
976
  * @use function _mw_adminimize_get_resource_url() for display
977
  */
978
- if( isset($_GET['resource']) && !empty($_GET['resource'])) {
979
  # base64 encoding performed by base64img.php from http://php.holtsmark.no
980
  $resources = array(
981
  'adminimize.gif' =>
@@ -984,7 +1116,7 @@ if( isset($_GET['resource']) && !empty($_GET['resource'])) {
984
  'OIzkAJqop64nWm7tULHu0+xLAgA7'.
985
  '');
986
 
987
- if(array_key_exists($_GET['resource'], $resources)) {
988
 
989
  $content = base64_decode($resources[ $_GET['resource'] ]);
990
 
@@ -1035,7 +1167,7 @@ function _mw_adminimize_contextual_help() {
1035
  function _mw_adminimize_add_settings_page() {
1036
  global $wp_version;
1037
 
1038
- if( current_user_can('switch_themes') && function_exists('add_submenu_page') ) {
1039
 
1040
  $menutitle = '';
1041
  if ( version_compare( $wp_version, '2.7alpha', '>' ) ) {
@@ -1044,16 +1176,19 @@ function _mw_adminimize_add_settings_page() {
1044
  $menutitle .= ' ' . __('Adminimize', FB_ADMINIMIZE_TEXTDOMAIN );
1045
 
1046
  $pagehook = add_submenu_page('options-general.php', __('Adminimize Options', FB_ADMINIMIZE_TEXTDOMAIN ), $menutitle, 'unfiltered_html', __FILE__, '_mw_adminimize_options');
1047
- if ( version_compare( $wp_version, '2.7alpha', '>' ) )
1048
- add_contextual_help( $pagehook, __( '<a href="http://wordpress.org/extend/plugins/adminimize/">Documentation</a>', FB_ADMINIMIZE_TEXTDOMAIN ) );
1049
- else
1050
- add_filter( 'contextual_help', '_mw_adminimize_contextual_help' );
1051
-
1052
  add_filter( 'plugin_action_links', '_mw_adminimize_filter_plugin_meta', 10, 2 );
1053
  }
1054
  }
1055
 
1056
 
 
 
 
 
 
 
 
1057
  /**
1058
  * Set theme for users
1059
  */
@@ -1090,7 +1225,8 @@ function _mw_adminimize_getOptionValue($key) {
1090
  */
1091
  function _mw_adminimize_update() {
1092
  global $menu, $submenu, $adminimizeoptions;
1093
- $user_roles = get_all_user_roles();
 
1094
 
1095
  if (isset($_POST['_mw_adminimize_user_info'])) {
1096
  $adminimizeoptions['_mw_adminimize_user_info'] = strip_tags(stripslashes($_POST['_mw_adminimize_user_info']));
@@ -1110,6 +1246,12 @@ function _mw_adminimize_update() {
1110
  $adminimizeoptions['_mw_adminimize_footer'] = 0;
1111
  }
1112
 
 
 
 
 
 
 
1113
  if (isset($_POST['_mw_adminimize_writescroll'])) {
1114
  $adminimizeoptions['_mw_adminimize_writescroll'] = strip_tags(stripslashes($_POST['_mw_adminimize_writescroll']));
1115
  } else {
@@ -1210,6 +1352,13 @@ function _mw_adminimize_update() {
1210
  } else {
1211
  $adminimizeoptions['mw_adminimize_disabled_link_option_'. $role . '_items'] = array();
1212
  }
 
 
 
 
 
 
 
1213
  }
1214
 
1215
  // own options
@@ -1362,4 +1511,5 @@ function _mw_adminimize_import() {
1362
  $myErrors = '<div id="message" class="updated fade"><p>' . $myErrors->get_error('_mw_adminimize_import') . '</p></div>';
1363
  echo $myErrors;
1364
  }
 
1365
  ?>
2
  /**
3
  * @package Adminimize
4
  * @author Frank B&uuml;ltge
 
5
  */
6
 
7
  /*
8
  Plugin Name: Adminimize
9
  Plugin URI: http://bueltge.de/wordpress-admin-theme-adminimize/674/
10
+ Text Domain: adminimize
11
+ Domain Path: /languages
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.13
16
+ License: GPL
 
17
  */
18
 
19
  /**
58
  }
59
 
60
 
61
+ function _mw_adminimize_register_styles() {
62
+ wp_register_style( 'adminimize-style', plugins_url( 'css/style.css', __FILE__ ) );
63
+ }
64
+
65
+
66
  function recursive_in_array($needle, $haystack) {
67
  if ($haystack != '') {
68
  foreach ($haystack as $stalk) {
122
  global $wp_roles;
123
 
124
  $user_roles = array();
125
+
126
+ if ( isset($wp_roles->roles) && is_array($wp_roles->roles) ) {
127
+ foreach ($wp_roles->roles as $role => $data) {
128
+ array_push($user_roles, $role);
129
+ //$data contains caps, maybe for later use..
130
+ }
131
  }
132
 
133
  return $user_roles;
174
  function _mw_adminimize_init() {
175
  global $pagenow, $menu, $submenu, $adminimizeoptions, $wp_version;
176
 
177
+ // exclude super admin
178
+ if ( defined('WP_DEBUG') && !WP_DEBUG ) {
179
+ if ( is_super_admin() )
180
+ return NULL;
181
+ }
182
+
183
+ if ( function_exists('get_post_type_object') ) {
184
+ if ( isset($_GET['post']) )
185
+ $post_id = (int) $_GET['post'];
186
+ elseif ( isset($_POST['post_ID']) )
187
+ $post_id = (int) $_POST['post_ID'];
188
+ else
189
+ $post_id = 0;
190
+ $post_ID = $post_id;
191
+ $post = null;
192
+ $post_type_object = null;
193
+ $post_type = null;
194
+ if ( $post_id ) {
195
+ $post = get_post($post_id);
196
+ if ( $post ) {
197
+ $post_type_object = get_post_type_object($post->post_type);
198
+ if ( $post_type_object ) {
199
+ $post_type = $post->post_type;
200
+ $current_screen->post_type = $post->post_type;
201
+ $current_screen->id = $current_screen->post_type;
202
+ }
203
+ }
204
+ } elseif ( isset($_POST['post_type']) ) {
205
+ $post_type_object = get_post_type_object($_POST['post_type']);
206
+ if ( $post_type_object ) {
207
+ $post_type = $post_type_object->name;
208
+ $current_screen->post_type = $post_type;
209
+ $current_screen->id = $current_screen->post_type;
210
+ }
211
+ }
212
+ } else {
213
+ $post_type = '';
214
+ }
215
+
216
  $user_roles = get_all_user_roles();
217
 
218
  $adminimizeoptions = get_option('mw_adminimize');
222
  $disabled_metaboxes_post_[$role] = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_'. $role .'_items');
223
  $disabled_metaboxes_page_[$role] = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_'. $role .'_items');
224
  $disabled_link_option_[$role] = _mw_adminimize_getOptionValue('mw_adminimize_disabled_link_option_'. $role .'_items');
225
+ $disabled_nav_menu_option_[$role] = _mw_adminimize_getOptionValue('mw_adminimize_disabled_nav_menu_option_'. $role .'_items');
226
  }
227
 
228
  $disabled_metaboxes_post_all = array();
243
  break;
244
  }
245
 
246
+ $_mw_adminimize_header = _mw_adminimize_getOptionValue('_mw_adminimize_header');
247
+ switch ($_mw_adminimize_header) {
248
+ case 1:
249
+ wp_enqueue_script( '_mw_adminimize_remove_header', WP_PLUGIN_URL . '/' . FB_ADMINIMIZE_BASEFOLDER . '/js/remove_header.js', array('jquery') );
250
+ break;
251
+ }
252
+
253
  //post-page options
254
  $post_page_pages = array('post-new.php', 'post.php', 'page-new.php', 'page.php');
255
  if ( in_array( $pagenow, $post_page_pages ) ) {
256
+
257
  $_mw_adminimize_writescroll = _mw_adminimize_getOptionValue('_mw_adminimize_writescroll');
258
  switch ($_mw_adminimize_writescroll) {
259
  case 1:
314
  ) {
315
 
316
  // only posts
317
+ if (
318
+ ( 'post-new.php' == $pagenow ) ||
319
+ ( 'post.php' == $pagenow ) ||
320
+ ( 'post' == $post_type )
321
+ ) {
322
  if ( version_compare( substr($wp_version, 0, 3), '2.7', '<' ) )
323
  add_action('admin_head', '_mw_adminimize_remove_box', 99);
324
 
336
  }
337
 
338
  // only pages
339
+ if (
340
+ ( 'page-new.php' == $pagenow ) ||
341
+ ( 'page.php' == $pagenow ) ||
342
+ ( 'post_type=page' == esc_attr($_SERVER['QUERY_STRING']) ) ||
343
+ ( 'page' == $post_type )
344
+ ) {
345
 
346
  // check for array empty
347
  if ( !isset($disabled_metaboxes_page_['editor']['0']) )
359
  add_action('admin_head', '_mw_adminimize_set_global_option', 1);
360
 
361
  // set metabox post option
362
+ $post_pages = array('post-new.php', 'post.php', 'post');
363
+ if ( in_array( $pagenow, $post_pages ) || in_array($post_type, $post_pages) ) {
364
+ if ( ( esc_attr($_SERVER['QUERY_STRING']) != 'post_type=page' ) && ($post_type != 'page') )
365
+ add_action('admin_head', '_mw_adminimize_set_metabox_post_option', 1);
366
+ }
367
 
368
  // set metabox page option
369
+ $page_pages = array( 'page-new.php', 'page.php', 'post_type=page', 'page' );
370
+ if ( in_array( $pagenow, $page_pages ) || in_array($post_type, $page_pages) || in_array( esc_attr($_SERVER['QUERY_STRING']), $page_pages) )
371
  add_action('admin_head', '_mw_adminimize_set_metabox_page_option', 1);
372
 
373
  // set link option
375
  if ( in_array( $pagenow, $link_pages ) )
376
  add_action('admin_head', '_mw_adminimize_set_link_option', 1);
377
 
378
+ // set wp nav menu options
379
+ $nav_menu_pages = array('nav-menus.php');
380
+ if ( in_array( $pagenow, $nav_menu_pages ) )
381
+ add_action('admin_head', '_mw_adminimize_set_nav_menu_option', 1);
382
+
383
  add_action('in_admin_footer', '_mw_adminimize_admin_footer');
384
 
385
  $adminimizeoptions['mw_adminimize_default_menu'] = $menu;
386
  $adminimizeoptions['mw_adminimize_default_submenu'] = $submenu;
387
  }
388
 
389
+ // on init of WordPress
390
+ add_action( 'init', '_mw_adminimize_textdomain' );
391
+ add_action( 'init', '_mw_adminimize_register_styles' );
392
+
393
+ if ( is_admin() ) { // exclude super admin of multisite
394
  add_action('admin_menu', '_mw_adminimize_add_settings_page');
395
  add_action('admin_menu', '_mw_adminimize_remove_dashboard');
396
  add_action('admin_init', '_mw_adminimize_init', 1);
657
  * http://www.ilfilosofo.com/blog/2006/05/24/plugin-remove-the-wordpress-dashboard/
658
  */
659
  function _mw_adminimize_remove_dashboard() {
660
+ global $menu, $submenu, $user_ID, $wp_version;
661
+
662
+ // exclude super admin
663
+ if ( defined('WP_DEBUG') && !WP_DEBUG ) {
664
+ if ( is_super_admin() )
665
+ return NULL;
666
+ }
667
 
668
  $user_roles = get_all_user_roles();
669
 
681
  }
682
 
683
  // remove dashboard
684
+ if ( $disabled_menu_all != '' || $disabled_submenu_all != '' ) {
685
 
 
686
  foreach ($user_roles as $role) {
687
+
688
+ if ( current_user_can($role) ) {
689
+ if ( recursive_in_array('index.php', $disabled_menu_[$role]) || recursive_in_array('index.php', $disabled_submenu_[$role]) )
690
+ $redirect = TRUE;
691
+ else
692
+ $redirect = FALSE;
 
 
 
 
 
 
 
693
  }
 
694
  }
695
+
696
+ if ( $redirect ) {
697
  $_mw_adminimize_db_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_db_redirect');
698
  switch ($_mw_adminimize_db_redirect) {
699
  case 0:
703
  $_mw_adminimize_db_redirect = 'edit.php';
704
  break;
705
  case 2:
706
+ $_mw_adminimize_db_redirect = 'edit.php?post_type=page';
707
  break;
708
  case 3:
709
  $_mw_adminimize_db_redirect = 'post-new.php';
715
  $_mw_adminimize_db_redirect = 'edit-comments.php';
716
  break;
717
  case 6:
718
+ $_mw_adminimize_db_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_db_redirect_txt');
719
  break;
720
  }
721
+
722
+ // fallback for WP smaller 3.0
723
+ if ( version_compare($wp_version, "3.0alpha", "<") && 'edit.php?post_type=page' == $_mw_adminimize_db_redirect )
724
+ $_mw_adminimize_db_redirect = 'edit-pages.php';
725
+
726
  $the_user = new WP_User($user_ID);
727
  reset($menu); $page = key($menu);
728
 
764
  $disabled_menu_[$role] = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_'. $role .'_items');
765
  $disabled_submenu_[$role] = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_'. $role .'_items');
766
  }
767
+
768
  $_mw_adminimize_admin_head = "\n";
769
  $_mw_adminimize_user_info = _mw_adminimize_getOptionValue('_mw_adminimize_user_info');
770
  $_mw_adminimize_ui_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_ui_redirect');
771
+
772
  switch ($_mw_adminimize_user_info) {
773
  case 1:
774
  $_mw_adminimize_admin_head .= '<script type="text/javascript">' . "\n";
776
  $_mw_adminimize_admin_head .= '</script>' . "\n";
777
  break;
778
  case 2:
779
+ if ( version_compare($wp_version, "3.0alpha", ">=") ) {
780
+ $_mw_adminimize_admin_head .= '<link rel="stylesheet" href="' . WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/mw_small_user_info30.css" type="text/css" />' . "\n";
781
+ } elseif ( version_compare(substr($wp_version, 0, 3), '2.7', '>=') ) {
782
  $_mw_adminimize_admin_head .= '<link rel="stylesheet" href="' . WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/mw_small_user_info27.css" type="text/css" />' . "\n";
783
  } else {
784
  $_mw_adminimize_admin_head .= '<link rel="stylesheet" href="' . WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/mw_small_user_info.css" type="text/css" />' . "\n";
793
  $_mw_adminimize_admin_head .= '</script>' . "\n";
794
  break;
795
  case 3:
796
+ if ( version_compare($wp_version, "3.0alpha", ">=") ) {
797
+ $_mw_adminimize_admin_head .= '<link rel="stylesheet" href="' . WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/mw_small_user_info30.css" type="text/css" />' . "\n";
798
+ } elseif ( version_compare(substr($wp_version, 0, 3), '2.7', '>=') ) {
799
  $_mw_adminimize_admin_head .= '<link rel="stylesheet" href="' . WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/mw_small_user_info27.css" type="text/css" />' . "\n";
800
  } else {
801
  $_mw_adminimize_admin_head .= '<link rel="stylesheet" href="' . WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/mw_small_user_info.css" type="text/css" />' . "\n";
810
  $_mw_adminimize_admin_head .= '</script>' . "\n";
811
  break;
812
  }
813
+
814
  // set menu
815
  if ($disabled_menu_['editor'] != '') {
816
 
817
  // set admin-menu
818
  foreach ($user_roles as $role) {
819
+ $user = wp_get_current_user();
820
+ if ( in_array($role, $user->roles) ) {
821
  if ( current_user_can($role) ) {
822
  $mw_adminimize_menu = $disabled_menu_[$role];
823
  $mw_adminimize_submenu = $disabled_submenu_[$role];
824
  }
 
 
 
825
  }
826
  }
827
 
828
+ // fallback on users.php on all userroles smaller admin
829
+ if ( is_array($mw_adminimize_menu) && in_array('users.php', $mw_adminimize_menu) )
830
+ $mw_adminimize_menu[] = 'profile.php';
831
+
832
+ if ( isset($menu) && !empty($menu) ) {
833
+ foreach ($menu as $index => $item) {
834
+ if ( 'index.php' === $item )
835
+ continue;
836
+
837
+ if ( isset($mw_adminimize_menu) && in_array($item[2], $mw_adminimize_menu) ) {
838
+ unset($menu[$index]);
839
+ }
840
+
841
+ if ( isset($submenu) && !empty($submenu[$item[2]]) ) {
842
+ foreach ($submenu[$item[2]] as $subindex => $subitem) {
843
+ if ( isset($mw_adminimize_submenu) && in_array($subitem[2], $mw_adminimize_submenu))
844
+ //if ('profile.php' === $subitem[2])
845
+ // unset($menu[70]);
846
+ unset($submenu[$item[2]][$subindex]);
847
+ }
848
  }
849
  }
850
  }
859
  * set global options in backend in all areas
860
  */
861
  function _mw_adminimize_set_global_option() {
862
+ global $_wp_admin_css_colors;
863
 
864
  $user_roles = get_all_user_roles();
865
 
875
  if ( !isset($disabled_global_option_[$role]['0']) )
876
  $disabled_global_option_[$role]['0'] = '';
877
  }
878
+
879
+ $remove_adminbar = FALSE;
880
+ // new 1.7.8
881
  foreach ($user_roles as $role) {
882
+ $user = wp_get_current_user();
883
+ if ( in_array($role, $user->roles) ) {
884
+ if ( current_user_can($role) && is_array($disabled_global_option_[$role]) ) {
885
+ $global_options = implode(', ', $disabled_global_option_[$role]);
886
+ if ( recursive_in_array('.show-admin-bar', $disabled_global_option_[$role]) )
887
+ $remove_adminbar = TRUE;
888
  }
 
 
889
  }
890
  }
891
+ if ( 0 != strpos($global_options, '#your-profile .form-table fieldset') )
892
+ $_wp_admin_css_colors = 0;
893
  $_mw_adminimize_admin_head .= '<!-- global options -->' . "\n";
894
  $_mw_adminimize_admin_head .= '<style type="text/css">' . $global_options . ' {display: none !important;}</style>' . "\n";
895
 
896
+ // for deactivate admin bar
897
+ if ( $remove_adminbar )
898
+ add_filter( 'show_admin_bar','__return_false' );
899
+
900
  if ($global_options)
901
  echo $_mw_adminimize_admin_head;
902
  }
919
  if ( !isset($disabled_metaboxes_post_[$role]['0']) )
920
  $disabled_metaboxes_post_[$role]['0'] = '';
921
 
922
+ // new 1.7.8
923
+ foreach ($user_roles as $role) {
924
+ $user = wp_get_current_user();
925
+ if ( in_array($role, $user->roles) ) {
926
+ if ( current_user_can($role) && is_array($disabled_metaboxes_post_[$role]) ) {
927
+ $metaboxes = implode(',', $disabled_metaboxes_post_[$role]);
928
+ }
929
  }
 
 
930
  }
931
  }
932
 
954
  if ( !isset($disabled_metaboxes_page_[$role]['0']) )
955
  $disabled_metaboxes_page_[$role]['0'] = '';
956
 
957
+ // new 1.7.8
958
+ foreach ($user_roles as $role) {
959
+ $user = wp_get_current_user();
960
+ if ( in_array($role, $user->roles) ) {
961
+ if ( current_user_can($role) && is_array($disabled_metaboxes_page_[$role]) ) {
962
+ $metaboxes = implode(',', $disabled_metaboxes_page_[$role]);
963
+ }
964
  }
 
 
965
  }
966
  }
967
 
992
  $disabled_link_option_[$role]['0'] = '';
993
  }
994
 
995
+ // new 1.7.8
996
  foreach ($user_roles as $role) {
997
+ $user = wp_get_current_user();
998
+ if ( in_array($role, $user->roles) ) {
999
+ if ( current_user_can($role) && is_array($disabled_link_option_[$role]) ) {
1000
+ $link_options = implode(',', $disabled_link_option_[$role]);
1001
  }
 
 
1002
  }
1003
  }
 
1004
  $_mw_adminimize_admin_head .= '<style type="text/css">' . $link_options . ' {display: none !important;}</style>' . "\n";
1005
 
1006
  if ($link_options)
1007
  echo $_mw_adminimize_admin_head;
1008
  }
1009
 
1010
+ /**
1011
+ * remove objects on wp nav menu
1012
+ */
1013
+ function _mw_adminimize_set_nav_menu_option() {
1014
+
1015
+ $user_roles = get_all_user_roles();
1016
+
1017
+ $_mw_adminimize_admin_head = '';
1018
+
1019
+ remove_action('admin_head', 'index_js');
1020
+
1021
+ foreach ($user_roles as $role) {
1022
+ $disabled_nav_menu_option_[$role] = _mw_adminimize_getOptionValue('mw_adminimize_disabled_nav_menu_option_'. $role .'_items');
1023
+ }
1024
+
1025
+ foreach ($user_roles as $role) {
1026
+ if ( !isset($disabled_nav_menu_option_[$role]['0']) )
1027
+ $disabled_nav_menu_option_[$role]['0'] = '';
1028
+ }
1029
+
1030
+ // new 1.7.8
1031
+ foreach ($user_roles as $role) {
1032
+ $user = wp_get_current_user();
1033
+ if ( in_array($role, $user->roles) ) {
1034
+ if ( current_user_can($role) && is_array($disabled_nav_menu_option_[$role]) ) {
1035
+ $nav_menu_options = implode(',', $disabled_nav_menu_option_[$role]);
1036
+ }
1037
+ }
1038
+ }
1039
+ $_mw_adminimize_admin_head .= '<style type="text/css">' . $nav_menu_options . ' {display: none !important;}</style>' . "\n";
1040
+
1041
+ if ($nav_menu_options)
1042
+ echo $_mw_adminimize_admin_head;
1043
+ }
1044
+
1045
 
1046
  /**
1047
  * small user-info
1072
  $plugin_data['Title'] = '<a href="' . $plugin_data['PluginURI'] . '" title="'.__( 'Visit plugin homepage' ).'">' . $plugin_data['Name'] . '</a>';
1073
 
1074
  if ( basename($_SERVER['REQUEST_URI']) == 'adminimize.php') {
1075
+ 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']);
1076
  }
1077
  if ( _mw_adminimize_getOptionValue('_mw_adminimize_advice') == 1 && basename($_SERVER['REQUEST_URI']) != 'adminimize.php' ) {
1078
  printf('%1$s ' . __('plugin activate', FB_ADMINIMIZE_TEXTDOMAIN ) . ' | ' . stripslashes( _mw_adminimize_getOptionValue('_mw_adminimize_advice_txt') ) . '<br />', $plugin_data['Title']);
1107
  * Images/ Icons in base64-encoding
1108
  * @use function _mw_adminimize_get_resource_url() for display
1109
  */
1110
+ if ( isset($_GET['resource']) && !empty($_GET['resource']) ) {
1111
  # base64 encoding performed by base64img.php from http://php.holtsmark.no
1112
  $resources = array(
1113
  'adminimize.gif' =>
1116
  'OIzkAJqop64nWm7tULHu0+xLAgA7'.
1117
  '');
1118
 
1119
+ if (array_key_exists($_GET['resource'], $resources)) {
1120
 
1121
  $content = base64_decode($resources[ $_GET['resource'] ]);
1122
 
1167
  function _mw_adminimize_add_settings_page() {
1168
  global $wp_version;
1169
 
1170
+ if ( current_user_can('switch_themes') && function_exists('add_submenu_page') ) {
1171
 
1172
  $menutitle = '';
1173
  if ( version_compare( $wp_version, '2.7alpha', '>' ) ) {
1176
  $menutitle .= ' ' . __('Adminimize', FB_ADMINIMIZE_TEXTDOMAIN );
1177
 
1178
  $pagehook = add_submenu_page('options-general.php', __('Adminimize Options', FB_ADMINIMIZE_TEXTDOMAIN ), $menutitle, 'unfiltered_html', __FILE__, '_mw_adminimize_options');
1179
+ add_action( 'load-' . $pagehook, '_mw_adminimize_on_load_page' );
 
 
 
 
1180
  add_filter( 'plugin_action_links', '_mw_adminimize_filter_plugin_meta', 10, 2 );
1181
  }
1182
  }
1183
 
1184
 
1185
+ function _mw_adminimize_on_load_page() {
1186
+ add_filter( 'contextual_help', '_mw_adminimize_contextual_help' );
1187
+
1188
+ wp_enqueue_style( 'adminimize-style' );
1189
+ }
1190
+
1191
+
1192
  /**
1193
  * Set theme for users
1194
  */
1225
  */
1226
  function _mw_adminimize_update() {
1227
  global $menu, $submenu, $adminimizeoptions;
1228
+
1229
+ $user_roles = get_all_user_roles();
1230
 
1231
  if (isset($_POST['_mw_adminimize_user_info'])) {
1232
  $adminimizeoptions['_mw_adminimize_user_info'] = strip_tags(stripslashes($_POST['_mw_adminimize_user_info']));
1246
  $adminimizeoptions['_mw_adminimize_footer'] = 0;
1247
  }
1248
 
1249
+ if (isset($_POST['_mw_adminimize_header'])) {
1250
+ $adminimizeoptions['_mw_adminimize_header'] = strip_tags(stripslashes($_POST['_mw_adminimize_header']));
1251
+ } else {
1252
+ $adminimizeoptions['_mw_adminimize_header'] = 0;
1253
+ }
1254
+
1255
  if (isset($_POST['_mw_adminimize_writescroll'])) {
1256
  $adminimizeoptions['_mw_adminimize_writescroll'] = strip_tags(stripslashes($_POST['_mw_adminimize_writescroll']));
1257
  } else {
1352
  } else {
1353
  $adminimizeoptions['mw_adminimize_disabled_link_option_'. $role . '_items'] = array();
1354
  }
1355
+
1356
+ // wp nav menu options
1357
+ if (isset($_POST['mw_adminimize_disabled_nav_menu_option_'. $role . '_items'])) {
1358
+ $adminimizeoptions['mw_adminimize_disabled_nav_menu_option_'. $role . '_items'] = $_POST['mw_adminimize_disabled_nav_menu_option_'. $role . '_items'];
1359
+ } else {
1360
+ $adminimizeoptions['mw_adminimize_disabled_nav_menu_option_'. $role . '_items'] = array();
1361
+ }
1362
  }
1363
 
1364
  // own options
1511
  $myErrors = '<div id="message" class="updated fade"><p>' . $myErrors->get_error('_mw_adminimize_import') . '</p></div>';
1512
  echo $myErrors;
1513
  }
1514
+
1515
  ?>
adminimize_admin_bar.php.new ADDED
@@ -0,0 +1,104 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * setup admin bar
4
+ */
5
+
6
+ // test
7
+ function _fb_filter_admin_bar() {
8
+ global $wp_admin_bar;
9
+
10
+ //get array with userroles
11
+ $user_roles = get_all_user_roles();
12
+ $user_roles_names = get_all_user_roles_names();
13
+ $disabled_item_adm = '';
14
+ $disabled_item_adm_hint = '';
15
+
16
+ foreach ($user_roles as $role) {
17
+ $disabled_menu_[$role] = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_'. $role .'_items');
18
+ $disabled_submenu_[$role] = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_'. $role .'_items');
19
+ }
20
+ ?>
21
+ <div id="poststuff" class="ui-sortable meta-box-sortables">
22
+ <div class="postbox">
23
+ <div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
24
+ <h3 class="hndle" id="config_menu"><?php _e('WP Admin Bar Options', FB_ADMINIMIZE_TEXTDOMAIN ); ?></h3>
25
+ <div class="inside">
26
+ <br class="clear" />
27
+
28
+ <table summary="config_menu" class="widefat">
29
+ <thead>
30
+ <tr>
31
+ <th><?php _e('Admin Bar options - Menu, <span style=\"font-weight: 400;\">Submenu</span>', FB_ADMINIMIZE_TEXTDOMAIN ); ?></th>
32
+ <?php foreach ($user_roles_names as $role_name) { ?>
33
+ <th><?php _e('Deactivate for', FB_ADMINIMIZE_TEXTDOMAIN ); echo '<br/>' . $role_name; ?></th>
34
+ <?php } ?>
35
+ </tr>
36
+ </thead>
37
+ <tbody>
38
+ <?php
39
+ foreach ($wp_admin_bar->menu as $menu_item_id => $item) {
40
+ if ( isset($item) && $item != '' ) {
41
+
42
+ $x = 0;
43
+ $class = '';
44
+
45
+ foreach($user_roles as $role) {
46
+ // checkbox checked
47
+ if ( isset( $disabled_menu_[$role]) && in_array($menu_item_id, $disabled_menu_[$role]) ) {
48
+ $checked_user_role_[$role] = ' checked="checked"';
49
+ } else {
50
+ $checked_user_role_[$role] = '';
51
+ }
52
+ }
53
+
54
+ echo '<tr class="form-invalid">' . "\n";
55
+ echo "\t" . '<th>' . $item['title'] . ' <span style="color:#ccc; font-weight:400;">(' . $menu_item_id . ')</span> </th>';
56
+ foreach ($user_roles as $role) {
57
+ echo "\t" . '<td class="num">' .
58
+ '<input id="check_menu'. $role . $x .'" type="checkbox"' . $checked_user_role_[$role] . ' name="mw_adminimize_disabled_menu_'. $role .'_items[]" value="' . $item['title'] . '" />'
59
+ . '</td>' . "\n";
60
+ }
61
+ echo '</tr>';
62
+
63
+ if ( !isset($item['children']) )
64
+ continue;
65
+
66
+ // submenu items
67
+ foreach ( $item['children'] as $subitem ) {
68
+ $class = ( ' class="alternate"' == $class ) ? '' : ' class="alternate"';
69
+ echo '<tr' . $class . '>' . "\n";
70
+ foreach ($user_roles as $role) {
71
+ if ( isset($disabled_submenu_[$role]) )
72
+ $checked_user_role_[$role] = ( in_array($subitem['id'], $disabled_submenu_[$role] ) ) ? ' checked="checked"' : '';
73
+ }
74
+ echo '<td> &mdash; ' . $subitem['title'] . ' <span style="color:#ccc; font-weight: 400;">(' . $subitem['id'] . ')</span> </td>' . "\n";
75
+ foreach ($user_roles as $role) {
76
+ echo '<td class="num">
77
+ <input id="check_menu'. $role.$x .'" type="checkbox"' . $checked_user_role_[$role] . ' name="mw_adminimize_disabled_submenu_'. $role .'_items[]" value="' . $subitem['id'] . '" />' .
78
+ '</td>' . "\n";
79
+ }
80
+ echo '</tr>' . "\n";
81
+ $x++;
82
+ }
83
+ $x++;
84
+ }
85
+ }
86
+ ?>
87
+ </tbody>
88
+ </table>
89
+
90
+ <p id="submitbutton">
91
+ <input class="button button-primary" type="submit" name="_mw_adminimize_save" value="<?php _e('Update Options', FB_ADMINIMIZE_TEXTDOMAIN ); ?> &raquo;" /><input type="hidden" name="page_options" value="'dofollow_timeout'" />
92
+ </p>
93
+ <p><a class="alignright button" href="javascript:void(0);" onclick="window.scrollTo(0,0);" style="margin:3px 0 0 30px;"><?php _e('scroll to top', FB_ADMINIMIZE_TEXTDOMAIN); ?></a><br class="clear" /></p>
94
+
95
+ </div>
96
+ </div>
97
+ </div>
98
+
99
+ <?php
100
+ //$wp_admin_bar->remove_menu('edit-my-profile');
101
+ }
102
+ add_action('wp_before_admin_bar_render', '_fb_filter_admin_bar');
103
+
104
+ ?>
adminimize_page.php CHANGED
@@ -9,8 +9,10 @@ if ( isset( $_GET['_mw_adminimize_export'] ) ) {
9
  die();
10
  }
11
 
 
 
12
  function _mw_adminimize_options() {
13
- global $wpdb, $_wp_admin_css_colors, $wp_version, $wp_roles;
14
 
15
  $_mw_adminimize_user_info = '';
16
 
@@ -19,7 +21,7 @@ function _mw_adminimize_options() {
19
  $user_roles_names = get_all_user_roles_names();
20
 
21
  // update options
22
- if ( ($_POST['_mw_adminimize_action'] == '_mw_adminimize_insert') && $_POST['_mw_adminimize_save'] ) {
23
 
24
  if ( function_exists('current_user_can') && current_user_can('manage_options') ) {
25
  check_admin_referer('mw_adminimize_nonce');
@@ -34,7 +36,7 @@ function _mw_adminimize_options() {
34
  }
35
 
36
  // import options
37
- if ( ($_POST['_mw_adminimize_action'] == '_mw_adminimize_import') && $_POST['_mw_adminimize_save'] ) {
38
 
39
  if ( function_exists('current_user_can') && current_user_can('manage_options') ) {
40
  check_admin_referer('mw_adminimize_nonce');
@@ -49,14 +51,14 @@ function _mw_adminimize_options() {
49
  }
50
 
51
  // deinstall options
52
- if ( ($_POST['_mw_adminimize_action'] == '_mw_adminimize_deinstall') && ($_POST['_mw_adminimize_deinstall_yes'] != '_mw_adminimize_deinstall') ) {
53
 
54
  $myErrors = new _mw_adminimize_message_class();
55
  $myErrors = '<div id="message" class="error"><p>' . $myErrors->get_error('_mw_adminimize_deinstall_yes') . '</p></div>';
56
  wp_die($myErrors);
57
  }
58
 
59
- if ( ($_POST['_mw_adminimize_action'] == '_mw_adminimize_deinstall') && $_POST['_mw_adminimize_deinstall'] && ($_POST['_mw_adminimize_deinstall_yes'] == '_mw_adminimize_deinstall') ) {
60
 
61
  if ( function_exists('current_user_can') && current_user_can('manage_options') ) {
62
  check_admin_referer('mw_adminimize_nonce');
@@ -74,7 +76,7 @@ function _mw_adminimize_options() {
74
  }
75
 
76
  // load theme user data
77
- if ( ($_POST['_mw_adminimize_action'] == '_mw_adminimize_load_theme') && $_POST['_mw_adminimize_load'] ) {
78
  if ( function_exists('current_user_can') && current_user_can('edit_users') ) {
79
  check_admin_referer('mw_adminimize_nonce');
80
 
@@ -88,7 +90,24 @@ function _mw_adminimize_options() {
88
  }
89
  }
90
 
91
- if ( ($_POST['_mw_adminimize_action'] == '_mw_adminimize_set_theme') && $_POST['_mw_adminimize_save'] ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92
  if ( function_exists('current_user_can') && current_user_can('edit_users') ) {
93
  check_admin_referer('mw_adminimize_nonce');
94
 
@@ -160,15 +179,18 @@ function _mw_adminimize_options() {
160
  <td class="row-title"><a href="#links_options"><?php _e('Links options', FB_ADMINIMIZE_TEXTDOMAIN ); ?></a></td>
161
  </tr>
162
  <tr class="alternate">
163
- <td class="row-title"><a href="#set_theme"><?php _e('Set Theme', FB_ADMINIMIZE_TEXTDOMAIN ); ?></a></td>
164
  </tr>
165
  <tr>
166
- <td class="row-title"><a href="#import"><?php _e('Export/Import Options', FB_ADMINIMIZE_TEXTDOMAIN ); ?></a></td>
167
  </tr>
168
  <tr class="alternate">
169
- <td class="row-title"><a href="#uninstall"><?php _e('Deinstall Options', FB_ADMINIMIZE_TEXTDOMAIN ); ?></a></td>
170
  </tr>
171
  <tr>
 
 
 
172
  <td class="row-title"><a href="#about"><?php _e('About the plugin', FB_ADMINIMIZE_TEXTDOMAIN ); ?></a></td>
173
  </tr>
174
  </table>
@@ -209,7 +231,7 @@ function _mw_adminimize_options() {
209
  <td><?php _e('Change User-Info, redirect to', FB_ADMINIMIZE_TEXTDOMAIN ); ?></td>
210
  <td>
211
  <?php $_mw_adminimize_ui_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_ui_redirect'); ?>
212
- <select name="_mw_adminimize_ui_redirect" <?php echo $disabled_item ?>>
213
  <option value="0"<?php if ($_mw_adminimize_ui_redirect == '0') { echo ' selected="selected"'; } ?>><?php _e('Default', FB_ADMINIMIZE_TEXTDOMAIN ); ?></option>
214
  <option value="1"<?php if ($_mw_adminimize_ui_redirect == '1') { echo ' selected="selected"'; } ?>><?php _e('Frontpage of the Blog', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
215
  </select> <?php _e('When the &quot;User-Info-area&quot; change it, then it is possible to change the redirect.', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
@@ -225,6 +247,16 @@ function _mw_adminimize_options() {
225
  </select> <?php _e('The Footer-area can hide, include all links and details.', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
226
  </td>
227
  </tr>
 
 
 
 
 
 
 
 
 
 
228
  <tr valign="top">
229
  <td><?php _e('WriteScroll', FB_ADMINIMIZE_TEXTDOMAIN ); ?></td>
230
  <td>
@@ -308,7 +340,7 @@ function _mw_adminimize_options() {
308
  <td><?php _e('Dashboard deactivate, redirect to', FB_ADMINIMIZE_TEXTDOMAIN ); ?></td>
309
  <td>
310
  <?php $_mw_adminimize_db_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_db_redirect'); ?>
311
- <select name="_mw_adminimize_db_redirect"<?php echo $disabled_item2; ?>>
312
  <option value="0"<?php if ($_mw_adminimize_db_redirect == '0') { echo ' selected="selected"'; } ?>><?php _e('Default', FB_ADMINIMIZE_TEXTDOMAIN ); ?> (profile.php)</option>
313
  <option value="1"<?php if ($_mw_adminimize_db_redirect == '1') { echo ' selected="selected"'; } ?>><?php _e('Manage Posts', FB_ADMINIMIZE_TEXTDOMAIN ); ?> (edit.php)</option>
314
  <option value="2"<?php if ($_mw_adminimize_db_redirect == '2') { echo ' selected="selected"'; } ?>><?php _e('Manage Pages', FB_ADMINIMIZE_TEXTDOMAIN ); ?> (edit-pages.php)</option>
@@ -360,6 +392,7 @@ function _mw_adminimize_options() {
360
  }
361
 
362
  $global_options = array(
 
363
  '#favorite-actions',
364
  '#screen-meta',
365
  '#screen-options, #screen-options-link-wrap',
@@ -368,6 +401,7 @@ function _mw_adminimize_options() {
368
  );
369
 
370
  $global_options_names = array(
 
371
  __('Favorite Actions', FB_ADMINIMIZE_TEXTDOMAIN),
372
  __('Screen-Meta', FB_ADMINIMIZE_TEXTDOMAIN),
373
  __('Screen Options', FB_ADMINIMIZE_TEXTDOMAIN),
@@ -375,7 +409,7 @@ function _mw_adminimize_options() {
375
  __('Admin Color Scheme', FB_ADMINIMIZE_TEXTDOMAIN)
376
  );
377
 
378
- $_mw_adminimize_own_values = _mw_adminimize_getOptionValue('_mw_adminimize_own_values');
379
  $_mw_adminimize_own_values = preg_split( "/\r\n/", $_mw_adminimize_own_values );
380
  foreach ( (array) $_mw_adminimize_own_values as $key => $_mw_adminimize_own_value ) {
381
  $_mw_adminimize_own_value = trim($_mw_adminimize_own_value);
@@ -481,6 +515,7 @@ function _mw_adminimize_options() {
481
  $metaboxes = array(
482
  '#contextual-help-link-wrap',
483
  '#screen-options-link-wrap',
 
484
  '#pageslugdiv',
485
  '#tagsdiv,#tagsdivsb,#tagsdiv-post_tag',
486
  '#categorydiv,#categorydivsb',
@@ -523,6 +558,7 @@ function _mw_adminimize_options() {
523
  $metaboxes_names = array(
524
  __('Help'),
525
  __('Screen Options'),
 
526
  __('Permalink', FB_ADMINIMIZE_TEXTDOMAIN ),
527
  __('Tags', FB_ADMINIMIZE_TEXTDOMAIN ),
528
  __('Categories', FB_ADMINIMIZE_TEXTDOMAIN ),
@@ -581,14 +617,15 @@ function _mw_adminimize_options() {
581
  $metaboxes_page = array(
582
  '#contextual-help-link-wrap',
583
  '#screen-options-link-wrap',
 
584
  '#pageslugdiv',
585
  '#pagepostcustom, #pagecustomdiv, #postcustom',
586
- '#pagecommentstatusdiv',
587
  '#pagepassworddiv',
588
  '#pageparentdiv',
589
  '#pagetemplatediv',
590
  '#pageorderdiv',
591
- '#pageauthordiv',
592
  '#revisionsdiv',
593
  '.side-info',
594
  '#notice',
@@ -617,6 +654,7 @@ function _mw_adminimize_options() {
617
  $metaboxes_names_page = array(
618
  __('Help'),
619
  __('Screen Options'),
 
620
  __('Permalink', FB_ADMINIMIZE_TEXTDOMAIN ),
621
  __('Custom Fields'),
622
  __('Comments &amp; Pings', FB_ADMINIMIZE_TEXTDOMAIN ),
@@ -708,7 +746,7 @@ function _mw_adminimize_options() {
708
  echo '</tr>';
709
 
710
  // only for user smaller administrator, change user-Profile-File
711
- if ( $item[2] === 'users.php' ) {
712
  $x++;
713
  echo '<tr class="form-invalid">' . "\n";
714
  echo "\t" . '<th>' . __('Profile') . ' <span style="color:#ccc; font-weight: 400;">(profile.php)</span> </th>';
@@ -938,127 +976,13 @@ function _mw_adminimize_options() {
938
  </div>
939
  </div>
940
 
941
- <div id="poststuff" class="ui-sortable meta-box-sortables">
942
- <div class="postbox">
943
- <div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
944
- <h3 class="hndle" id="links_options"><?php _e('Links options', FB_ADMINIMIZE_TEXTDOMAIN ); ?></h3>
945
- <div class="inside">
946
- <br class="clear" />
947
-
948
- <table summary="config_edit_links" class="widefat">
949
- <thead>
950
- <tr>
951
- <th><?php _e('Option', FB_ADMINIMIZE_TEXTDOMAIN ); ?></th>
952
- <?php
953
- foreach ($user_roles_names as $role_name) { ?>
954
- <th><?php _e('Deactivate for', FB_ADMINIMIZE_TEXTDOMAIN ); echo '<br/>' . $role_name; ?></th>
955
- <?php } ?>
956
- </tr>
957
- </thead>
958
-
959
- <tbody>
960
- <?php
961
- foreach ($user_roles as $role) {
962
- $disabled_link_option_[$role] = _mw_adminimize_getOptionValue('mw_adminimize_disabled_link_option_'. $role .'_items');
963
- }
964
-
965
- $link_options = array(
966
- '#namediv',
967
- '#addressdiv',
968
- '#descriptiondiv',
969
- '#linkcategorydiv',
970
- '#linktargetdiv',
971
- '#linkxfndiv',
972
- '#linkadvanceddiv',
973
- '#misc-publishing-actions'
974
- );
975
-
976
- $link_options_names = array(
977
- __('Name'),
978
- __('Web Address'),
979
- __('Description'),
980
- __('Categories'),
981
- __('Target'),
982
- __('Link Relationship (XFN)'),
983
- __('Advanced'),
984
- __('Publish Actions', FB_ADMINIMIZE_TEXTDOMAIN)
985
- );
986
-
987
- $_mw_adminimize_own_link_values = _mw_adminimize_getOptionValue('_mw_adminimize_own_link_values');
988
- $_mw_adminimize_own_link_values = preg_split( "/\r\n/", $_mw_adminimize_own_link_values );
989
- foreach ( (array) $_mw_adminimize_own_link_values as $key => $_mw_adminimize_own_link_value ) {
990
- $_mw_adminimize_own_link_value = trim($_mw_adminimize_own_link_value);
991
- array_push($link_options, $_mw_adminimize_own_link_value);
992
- }
993
-
994
- $_mw_adminimize_own_link_options = _mw_adminimize_getOptionValue('_mw_adminimize_own_link_options');
995
- $_mw_adminimize_own_link_options = preg_split( "/\r\n/", $_mw_adminimize_own_link_options );
996
- foreach ( (array) $_mw_adminimize_own_link_options as $key => $_mw_adminimize_own_link_option ) {
997
- $_mw_adminimize_own_link_option = trim($_mw_adminimize_own_link_option);
998
- array_push($link_options_names, $_mw_adminimize_own_link_option);
999
- }
1000
-
1001
- $x = 0;
1002
- foreach ($link_options as $index => $link_option) {
1003
- if ( $link_option != '') {
1004
- $checked_user_role_ = array();
1005
- foreach ($user_roles as $role) {
1006
- $checked_user_role_[$role] = ( isset($disabled_link_option_[$role]) && in_array($link_option, $disabled_link_option_[$role]) ) ? ' checked="checked"' : '';
1007
- }
1008
- echo '<tr>' . "\n";
1009
- echo '<td>' . $link_options_names[$index] . ' <span style="color:#ccc; font-weight: 400;">(' . $link_option . ')</span> </td>' . "\n";
1010
- foreach ($user_roles as $role) {
1011
- echo '<td class="num"><input id="check_post'. $role . $x .'" type="checkbox"' . $checked_user_role_[$role] . ' name="mw_adminimize_disabled_link_option_'. $role .'_items[]" value="' . $link_option . '" /></td>' . "\n";
1012
- }
1013
- echo '</tr>' . "\n";
1014
- $x++;
1015
- }
1016
- }
1017
- ?>
1018
- </tbody>
1019
- </table>
1020
-
1021
- <?php
1022
- //your own global options
1023
- ?>
1024
- <br style="margin-top: 10px;" />
1025
- <table summary="config_edit_post" class="widefat">
1026
- <thead>
1027
- <tr>
1028
- <th><?php _e('Your own options', FB_ADMINIMIZE_TEXTDOMAIN ); echo '<br />'; _e('ID or class', FB_ADMINIMIZE_TEXTDOMAIN ); ?></th>
1029
- <th><?php echo '<br />'; _e('Option', FB_ADMINIMIZE_TEXTDOMAIN ); ?></th>
1030
- </tr>
1031
- </thead>
1032
 
1033
- <tbody>
1034
- <tr valign="top">
1035
- <td colspan="2"><?php _e('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.', FB_ADMINIMIZE_TEXTDOMAIN ); ?></td>
1036
- </tr>
1037
- <tr valign="top">
1038
- <td>
1039
- <textarea name="_mw_adminimize_own_link_options" cols="60" rows="3" id="_mw_adminimize_own_link_options" style="width: 95%;" ><?php echo _mw_adminimize_getOptionValue('_mw_adminimize_own_link_options'); ?></textarea>
1040
- <br />
1041
- <?php _e('Possible nomination for ID or class. Separate multiple nominations through a carriage return.', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
1042
- </td>
1043
- <td>
1044
- <textarea class="code" name="_mw_adminimize_own_link_values" cols="60" rows="3" id="_mw_adminimize_own_link_values" style="width: 95%;" ><?php echo _mw_adminimize_getOptionValue('_mw_adminimize_own_link_values'); ?></textarea>
1045
- <br />
1046
- <?php _e('Possible IDs or classes. Separate multiple values through a carriage return.', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
1047
- </td>
1048
- </tr>
1049
- </tbody>
1050
- </table>
1051
-
1052
- <p id="submitbutton">
1053
- <input type="hidden" name="_mw_adminimize_action" value="_mw_adminimize_insert" />
1054
- <input class="button button-primary" type="submit" name="_mw_adminimize_save" value="<?php _e('Update Options', FB_ADMINIMIZE_TEXTDOMAIN ); ?> &raquo;" /><input type="hidden" name="page_options" value="'dofollow_timeout'" />
1055
- </p>
1056
- </form>
1057
- <p><a class="alignright button" href="javascript:void(0);" onclick="window.scrollTo(0,0);" style="margin:3px 0 0 30px;"><?php _e('scroll to top', FB_ADMINIMIZE_TEXTDOMAIN); ?></a><br class="clear" /></p>
1058
-
1059
- </div>
1060
- </div>
1061
- </div>
1062
 
1063
  <div id="poststuff" class="ui-sortable meta-box-sortables">
1064
  <div class="postbox">
@@ -1067,7 +991,7 @@ function _mw_adminimize_options() {
1067
  <div class="inside">
1068
  <br class="clear" />
1069
 
1070
- <?php if ( !($_POST['_mw_adminimize_action'] == '_mw_adminimize_load_theme') ) { ?>
1071
  <form name="set_theme" method="post" id="_mw_adminimize_set_theme" action="?page=<?php echo $_GET['page'];?>" >
1072
  <?php wp_nonce_field('mw_adminimize_nonce'); ?>
1073
  <p><?php _e('For better peformance with many users on your blog; load only userlist, when you will change the theme options for users.', FB_ADMINIMIZE_TEXTDOMAIN ); ?></p>
@@ -1077,7 +1001,7 @@ function _mw_adminimize_options() {
1077
  </p>
1078
  </form>
1079
  <?php }
1080
- if ( ($_POST['_mw_adminimize_action'] == '_mw_adminimize_load_theme') ) { ?>
1081
  <form name="set_theme" method="post" id="_mw_adminimize_set_theme" action="?page=<?php echo $_GET['page'];?>" >
1082
  <?php wp_nonce_field('mw_adminimize_nonce'); ?>
1083
  <table class="widefat">
9
  die();
10
  }
11
 
12
+ //include( 'adminimize_admin_bar.php' );
13
+
14
  function _mw_adminimize_options() {
15
+ global $wpdb, $_wp_admin_css_colors, $wp_version, $wp_roles, $table_prefix;
16
 
17
  $_mw_adminimize_user_info = '';
18
 
21
  $user_roles_names = get_all_user_roles_names();
22
 
23
  // update options
24
+ if ( ( isset($_POST['_mw_adminimize_action']) && $_POST['_mw_adminimize_action'] == '_mw_adminimize_insert') && $_POST['_mw_adminimize_save'] ) {
25
 
26
  if ( function_exists('current_user_can') && current_user_can('manage_options') ) {
27
  check_admin_referer('mw_adminimize_nonce');
36
  }
37
 
38
  // import options
39
+ if ( ( isset($_POST['_mw_adminimize_action']) && $_POST['_mw_adminimize_action'] == '_mw_adminimize_import') && $_POST['_mw_adminimize_save'] ) {
40
 
41
  if ( function_exists('current_user_can') && current_user_can('manage_options') ) {
42
  check_admin_referer('mw_adminimize_nonce');
51
  }
52
 
53
  // deinstall options
54
+ if ( ( isset($_POST['_mw_adminimize_action']) && $_POST['_mw_adminimize_action'] == '_mw_adminimize_deinstall') && ($_POST['_mw_adminimize_deinstall_yes'] != '_mw_adminimize_deinstall') ) {
55
 
56
  $myErrors = new _mw_adminimize_message_class();
57
  $myErrors = '<div id="message" class="error"><p>' . $myErrors->get_error('_mw_adminimize_deinstall_yes') . '</p></div>';
58
  wp_die($myErrors);
59
  }
60
 
61
+ if ( ( isset($_POST['_mw_adminimize_action']) && $_POST['_mw_adminimize_action'] == '_mw_adminimize_deinstall') && $_POST['_mw_adminimize_deinstall'] && ($_POST['_mw_adminimize_deinstall_yes'] == '_mw_adminimize_deinstall') ) {
62
 
63
  if ( function_exists('current_user_can') && current_user_can('manage_options') ) {
64
  check_admin_referer('mw_adminimize_nonce');
76
  }
77
 
78
  // load theme user data
79
+ if ( ( isset($_POST['_mw_adminimize_action']) && $_POST['_mw_adminimize_action'] == '_mw_adminimize_load_theme') && $_POST['_mw_adminimize_load'] ) {
80
  if ( function_exists('current_user_can') && current_user_can('edit_users') ) {
81
  check_admin_referer('mw_adminimize_nonce');
82
 
90
  }
91
  }
92
 
93
+ if ( ( isset($_POST['_mw_adminimize_action']) && $_POST['_mw_adminimize_action'] == '_mw_adminimize_set_theme') && $_POST['_mw_adminimize_save'] ) {
94
+ if ( function_exists('current_user_can') && current_user_can('edit_users') ) {
95
+ check_admin_referer('mw_adminimize_nonce');
96
+
97
+ _mw_adminimize_set_theme();
98
+
99
+ $myErrors = new _mw_adminimize_message_class();
100
+ $myErrors = '<div id="message" class="updated fade"><p>' . $myErrors->get_error('_mw_adminimize_set_theme') . '</p></div>';
101
+ echo $myErrors;
102
+ } else {
103
+ $myErrors = new _mw_adminimize_message_class();
104
+ $myErrors = '<div id="message" class="error"><p>' . $myErrors->get_error('_mw_adminimize_access_denied') . '</p></div>';
105
+ wp_die($myErrors);
106
+ }
107
+ }
108
+
109
+ // update wp nav menu
110
+ if ( ( isset($_POST['_mw_adminimize_action']) && $_POST['_mw_adminimize_action'] == '_mw_adminimize_set_theme') && $_POST['_mw_adminimize_save'] ) {
111
  if ( function_exists('current_user_can') && current_user_can('edit_users') ) {
112
  check_admin_referer('mw_adminimize_nonce');
113
 
179
  <td class="row-title"><a href="#links_options"><?php _e('Links options', FB_ADMINIMIZE_TEXTDOMAIN ); ?></a></td>
180
  </tr>
181
  <tr class="alternate">
182
+ <td class="row-title"><a href="#nav_menu_options"><?php _e('WP Nav Menu', FB_ADMINIMIZE_TEXTDOMAIN ); ?></a></td>
183
  </tr>
184
  <tr>
185
+ <td class="row-title"><a href="#set_theme"><?php _e('Set Theme', FB_ADMINIMIZE_TEXTDOMAIN ); ?></a></td>
186
  </tr>
187
  <tr class="alternate">
188
+ <td class="row-title"><a href="#import"><?php _e('Export/Import Options', FB_ADMINIMIZE_TEXTDOMAIN ); ?></a></td>
189
  </tr>
190
  <tr>
191
+ <td class="row-title"><a href="#uninstall"><?php _e('Deinstall Options', FB_ADMINIMIZE_TEXTDOMAIN ); ?></a></td>
192
+ </tr>
193
+ <tr class="alternate">
194
  <td class="row-title"><a href="#about"><?php _e('About the plugin', FB_ADMINIMIZE_TEXTDOMAIN ); ?></a></td>
195
  </tr>
196
  </table>
231
  <td><?php _e('Change User-Info, redirect to', FB_ADMINIMIZE_TEXTDOMAIN ); ?></td>
232
  <td>
233
  <?php $_mw_adminimize_ui_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_ui_redirect'); ?>
234
+ <select name="_mw_adminimize_ui_redirect" <?php if ( isset($disabled_item) ) echo $disabled_item; ?>>
235
  <option value="0"<?php if ($_mw_adminimize_ui_redirect == '0') { echo ' selected="selected"'; } ?>><?php _e('Default', FB_ADMINIMIZE_TEXTDOMAIN ); ?></option>
236
  <option value="1"<?php if ($_mw_adminimize_ui_redirect == '1') { echo ' selected="selected"'; } ?>><?php _e('Frontpage of the Blog', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
237
  </select> <?php _e('When the &quot;User-Info-area&quot; change it, then it is possible to change the redirect.', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
247
  </select> <?php _e('The Footer-area can hide, include all links and details.', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
248
  </td>
249
  </tr>
250
+ <tr valign="top">
251
+ <td><?php _e('Header', FB_ADMINIMIZE_TEXTDOMAIN ); ?></td>
252
+ <td>
253
+ <?php $_mw_adminimize_header = _mw_adminimize_getOptionValue('_mw_adminimize_header'); ?>
254
+ <select name="_mw_adminimize_header">
255
+ <option value="0"<?php if ($_mw_adminimize_header == '0') { echo ' selected="selected"'; } ?>><?php _e('Default', FB_ADMINIMIZE_TEXTDOMAIN ); ?></option>
256
+ <option value="1"<?php if ($_mw_adminimize_header == '1') { echo ' selected="selected"'; } ?>><?php _e('Hide', FB_ADMINIMIZE_TEXTDOMAIN ); ?></option>
257
+ </select> <?php _e('The Header-area can hide, include all links and details.', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
258
+ </td>
259
+ </tr>
260
  <tr valign="top">
261
  <td><?php _e('WriteScroll', FB_ADMINIMIZE_TEXTDOMAIN ); ?></td>
262
  <td>
340
  <td><?php _e('Dashboard deactivate, redirect to', FB_ADMINIMIZE_TEXTDOMAIN ); ?></td>
341
  <td>
342
  <?php $_mw_adminimize_db_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_db_redirect'); ?>
343
+ <select name="_mw_adminimize_db_redirect"<?php if ( isset($disabled_item2) ) echo $disabled_item2; ?>>
344
  <option value="0"<?php if ($_mw_adminimize_db_redirect == '0') { echo ' selected="selected"'; } ?>><?php _e('Default', FB_ADMINIMIZE_TEXTDOMAIN ); ?> (profile.php)</option>
345
  <option value="1"<?php if ($_mw_adminimize_db_redirect == '1') { echo ' selected="selected"'; } ?>><?php _e('Manage Posts', FB_ADMINIMIZE_TEXTDOMAIN ); ?> (edit.php)</option>
346
  <option value="2"<?php if ($_mw_adminimize_db_redirect == '2') { echo ' selected="selected"'; } ?>><?php _e('Manage Pages', FB_ADMINIMIZE_TEXTDOMAIN ); ?> (edit-pages.php)</option>
392
  }
393
 
394
  $global_options = array(
395
+ '.show-admin-bar',
396
  '#favorite-actions',
397
  '#screen-meta',
398
  '#screen-options, #screen-options-link-wrap',
401
  );
402
 
403
  $global_options_names = array(
404
+ __('Admin Bar', FB_ADMINIMIZE_TEXTDOMAIN),
405
  __('Favorite Actions', FB_ADMINIMIZE_TEXTDOMAIN),
406
  __('Screen-Meta', FB_ADMINIMIZE_TEXTDOMAIN),
407
  __('Screen Options', FB_ADMINIMIZE_TEXTDOMAIN),
409
  __('Admin Color Scheme', FB_ADMINIMIZE_TEXTDOMAIN)
410
  );
411
 
412
+ $_mw_adminimize_own_values = _mw_adminimize_getOptionValue('_mw_adminimize_own_values');
413
  $_mw_adminimize_own_values = preg_split( "/\r\n/", $_mw_adminimize_own_values );
414
  foreach ( (array) $_mw_adminimize_own_values as $key => $_mw_adminimize_own_value ) {
415
  $_mw_adminimize_own_value = trim($_mw_adminimize_own_value);
515
  $metaboxes = array(
516
  '#contextual-help-link-wrap',
517
  '#screen-options-link-wrap',
518
+ '#titlediv',
519
  '#pageslugdiv',
520
  '#tagsdiv,#tagsdivsb,#tagsdiv-post_tag',
521
  '#categorydiv,#categorydivsb',
558
  $metaboxes_names = array(
559
  __('Help'),
560
  __('Screen Options'),
561
+ __('Title', FB_ADMINIMIZE_TEXTDOMAIN),
562
  __('Permalink', FB_ADMINIMIZE_TEXTDOMAIN ),
563
  __('Tags', FB_ADMINIMIZE_TEXTDOMAIN ),
564
  __('Categories', FB_ADMINIMIZE_TEXTDOMAIN ),
617
  $metaboxes_page = array(
618
  '#contextual-help-link-wrap',
619
  '#screen-options-link-wrap',
620
+ '#titlediv',
621
  '#pageslugdiv',
622
  '#pagepostcustom, #pagecustomdiv, #postcustom',
623
+ '#pagecommentstatusdiv, #commentsdiv',
624
  '#pagepassworddiv',
625
  '#pageparentdiv',
626
  '#pagetemplatediv',
627
  '#pageorderdiv',
628
+ '#pageauthordiv, #authordiv',
629
  '#revisionsdiv',
630
  '.side-info',
631
  '#notice',
654
  $metaboxes_names_page = array(
655
  __('Help'),
656
  __('Screen Options'),
657
+ __('Title', FB_ADMINIMIZE_TEXTDOMAIN),
658
  __('Permalink', FB_ADMINIMIZE_TEXTDOMAIN ),
659
  __('Custom Fields'),
660
  __('Comments &amp; Pings', FB_ADMINIMIZE_TEXTDOMAIN ),
746
  echo '</tr>';
747
 
748
  // only for user smaller administrator, change user-Profile-File
749
+ if ( 'users.php' === $item[2] ) {
750
  $x++;
751
  echo '<tr class="form-invalid">' . "\n";
752
  echo "\t" . '<th>' . __('Profile') . ' <span style="color:#ccc; font-weight: 400;">(profile.php)</span> </th>';
976
  </div>
977
  </div>
978
 
979
+ <?php // Links Options
980
+ require_once('links_options.php');
981
+ ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
982
 
983
+ <?php // WP Nav Menu Options
984
+ require_once('wp_nav_menu_options.php');
985
+ ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
986
 
987
  <div id="poststuff" class="ui-sortable meta-box-sortables">
988
  <div class="postbox">
991
  <div class="inside">
992
  <br class="clear" />
993
 
994
+ <?php if ( !isset($_POST['_mw_adminimize_action']) || !($_POST['_mw_adminimize_action'] == '_mw_adminimize_load_theme') ) { ?>
995
  <form name="set_theme" method="post" id="_mw_adminimize_set_theme" action="?page=<?php echo $_GET['page'];?>" >
996
  <?php wp_nonce_field('mw_adminimize_nonce'); ?>
997
  <p><?php _e('For better peformance with many users on your blog; load only userlist, when you will change the theme options for users.', FB_ADMINIMIZE_TEXTDOMAIN ); ?></p>
1001
  </p>
1002
  </form>
1003
  <?php }
1004
+ if ( isset($_POST['_mw_adminimize_action']) && ($_POST['_mw_adminimize_action'] == '_mw_adminimize_load_theme') ) { ?>
1005
  <form name="set_theme" method="post" id="_mw_adminimize_set_theme" action="?page=<?php echo $_GET['page'];?>" >
1006
  <?php wp_nonce_field('mw_adminimize_nonce'); ?>
1007
  <table class="widefat">
css/mw_small_user_info30.css ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #small_user_info {
2
+ float: right;
3
+ font-size: 12px;
4
+ line-height: 46px;
5
+ height: 46px;
6
+ position:absolute;
7
+ right:15px;
8
+ top:0;
9
+ }
10
+
11
+ #small_user_info a, #small_user_info a:visited {
12
+ color: #000;
13
+ text-decoration: none;
14
+ }
15
+
16
+ #small_user_info p {
17
+ margin: 0;
18
+ padding: 0;
19
+ line-height: 46px;
20
+ }
21
+
22
+ #favorite-actions {
23
+ margin-right: 250px;
24
+ }
css/style.css ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ tr:hover {
2
+ background: #DFDFDF !important;
3
+ }
js/remove_header.js ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ /**
2
+ * remove footer
3
+ */
4
+ jQuery(document).ready(function() {
5
+ jQuery('#wphead').remove();
6
+ });
languages/adminimize-da_DK.mo CHANGED
Binary file
languages/adminimize-da_DK.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Adminimize 1.7.7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-03-19 14:13+0100\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Team Blogos <wordpress@blogos.dk>\n"
8
  "Language-Team: Team Blogos <wordpress@blogos.dk>\n"
@@ -53,171 +53,171 @@ msgstr "Kontrolpaneltema er aktiveret!"
53
  msgid "Load user data to themes was successful."
54
  msgstr "Indlæsning af brugerdata vedrørende temaerne lykkedes."
55
 
56
- #: d:\wordpress\plugins\adminimize/adminimize.php:372
57
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:528
58
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:980
59
  msgid "Categories"
60
  msgstr "Kategorier"
61
 
62
- #: d:\wordpress\plugins\adminimize/adminimize.php:378
63
- #: d:\wordpress\plugins\adminimize/adminimize.php:389
64
  msgid "+ Add New Category"
65
  msgstr "+ Tilføj ny kategori"
66
 
67
- #: d:\wordpress\plugins\adminimize/adminimize.php:380
68
- #: d:\wordpress\plugins\adminimize/adminimize.php:391
69
  msgid "New category name"
70
  msgstr "Nyt kategorinavn"
71
 
72
- #: d:\wordpress\plugins\adminimize/adminimize.php:381
73
- #: d:\wordpress\plugins\adminimize/adminimize.php:393
74
  msgid "Parent category"
75
  msgstr "Forælder-kategori"
76
 
77
- #: d:\wordpress\plugins\adminimize/adminimize.php:382
78
- #: d:\wordpress\plugins\adminimize/adminimize.php:394
79
  msgid "Add"
80
  msgstr "Tilføj"
81
 
82
- #: d:\wordpress\plugins\adminimize/adminimize.php:391
83
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:529
84
  msgid "Add New Category"
85
  msgstr "Tilføj ny kategori"
86
 
87
- #: d:\wordpress\plugins\adminimize/adminimize.php:415
88
- #: d:\wordpress\plugins\adminimize/adminimize.php:416
89
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:527
90
  msgid "Tags"
91
  msgstr "Tags"
92
 
93
- #: d:\wordpress\plugins\adminimize/adminimize.php:456
94
- #: d:\wordpress\plugins\adminimize/adminimize.php:470
95
- #: d:\wordpress\plugins\adminimize/adminimize.php:484
96
  msgid "Blue"
97
  msgstr "Blå"
98
 
99
- #: d:\wordpress\plugins\adminimize/adminimize.php:463
100
- #: d:\wordpress\plugins\adminimize/adminimize.php:477
101
- #: d:\wordpress\plugins\adminimize/adminimize.php:491
102
  msgid "Gray"
103
  msgstr "Grå"
104
 
105
- #: d:\wordpress\plugins\adminimize/adminimize.php:499
106
- #: d:\wordpress\plugins\adminimize/adminimize.php:541
107
- #: d:\wordpress\plugins\adminimize/adminimize.php:564
108
  msgid "Classic"
109
  msgstr "Klassisk"
110
 
111
- #: d:\wordpress\plugins\adminimize/adminimize.php:506
112
- #: d:\wordpress\plugins\adminimize/adminimize.php:548
113
- #: d:\wordpress\plugins\adminimize/adminimize.php:571
114
  msgid "Fresh"
115
  msgstr "Frisk"
116
 
117
- #: d:\wordpress\plugins\adminimize/adminimize.php:513
118
  msgid "WordPress 2.3"
119
  msgstr "WordPress 2.3"
120
 
121
- #: d:\wordpress\plugins\adminimize/adminimize.php:520
122
  msgid "Maybe i'm colorblind"
123
  msgstr "Måske er jeg farveblind"
124
 
125
- #: d:\wordpress\plugins\adminimize/adminimize.php:527
126
  msgid "Grey"
127
  msgstr "Grå"
128
 
129
- #: d:\wordpress\plugins\adminimize/adminimize.php:655
130
- #: d:\wordpress\plugins\adminimize/adminimize.php:658
131
  msgid "Dashboard"
132
  msgstr "Kontrolpanel"
133
 
134
- #: d:\wordpress\plugins\adminimize/adminimize.php:713
135
- #: d:\wordpress\plugins\adminimize/adminimize.php:715
136
- #: d:\wordpress\plugins\adminimize/adminimize.php:728
137
- #: d:\wordpress\plugins\adminimize/adminimize.php:730
138
- #: d:\wordpress\plugins\adminimize/adminimize.php:921
139
  msgid "Log Out"
140
  msgstr "Log ud"
141
 
142
- #: d:\wordpress\plugins\adminimize/adminimize.php:940
143
  msgid "Visit plugin homepage"
144
  msgstr "Besøg plugin-hjemmesiden"
145
 
146
- #: d:\wordpress\plugins\adminimize/adminimize.php:943
147
  msgid "plugin"
148
  msgstr "plugin"
149
 
150
- #: d:\wordpress\plugins\adminimize/adminimize.php:943
151
  msgid "Version"
152
  msgstr "Version"
153
 
154
- #: d:\wordpress\plugins\adminimize/adminimize.php:943
155
  msgid "History"
156
  msgstr "Historik"
157
 
158
- #: d:\wordpress\plugins\adminimize/adminimize.php:943
159
  msgid "Author"
160
  msgstr "Forfatter"
161
 
162
- #: d:\wordpress\plugins\adminimize/adminimize.php:946
163
  msgid "plugin activate"
164
  msgstr "aktivér plugin"
165
 
166
- #: d:\wordpress\plugins\adminimize/adminimize.php:966
167
  msgid "Settings"
168
  msgstr "Indstillinger"
169
 
170
- #: d:\wordpress\plugins\adminimize/adminimize.php:1027
171
- #: d:\wordpress\plugins\adminimize/adminimize.php:1048
172
  msgid "<a href=\"http://wordpress.org/extend/plugins/adminimize/\">Documentation</a>"
173
  msgstr "<a href=\"http://wordpress.org/extend/plugins/adminimize/\">Dokumentation</a>"
174
 
175
- #: d:\wordpress\plugins\adminimize/adminimize.php:1044
176
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:109
177
  msgid "Adminimize"
178
  msgstr "Adminimere"
179
 
180
- #: d:\wordpress\plugins\adminimize/adminimize.php:1046
181
  msgid "Adminimize Options"
182
  msgstr "Adminimize-indstillinger"
183
 
184
- #: d:\wordpress\plugins\adminimize/adminimize.php:1063
185
  msgid "Cheatin&#8217; uh?"
186
  msgstr "Snyder du, hva'?"
187
 
188
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:115
189
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:140
190
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:186
191
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:340
192
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:455
193
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:777
194
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:860
195
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:943
196
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1065
197
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1163
198
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1198
199
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1219
200
  msgid "Click to toggle"
201
  msgstr "Klik for at invertere valg"
202
 
203
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:116
204
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:172
205
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1220
206
  msgid "About the plugin"
207
  msgstr "Om pluginnet"
208
 
209
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:118
210
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1223
211
  msgid "Further information: Visit the <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
212
  msgstr "Yderligere information: Besøg <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">plugin-hjemmesiden</a> for yderligere information eller for at hente den seneste udgave af pluginnet."
213
 
214
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:124
215
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1229
216
  msgid "PayPal - The safer, easier way to pay online!"
217
  msgstr "PayPal - Online-betalinger på den sikre og nemme måde!"
218
 
219
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:128
220
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1233
221
  msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a> or donate."
222
  msgstr "Ønsker du at takke mig? Besøg min <a href=\"http://bueltge.de/wunschliste/\">ønskeliste</a> eller send en donation."
223
 
@@ -231,45 +231,45 @@ msgid "Backend Options"
231
  msgstr "Indstillinger for kontrolpanel"
232
 
233
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:148
234
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:341
235
  msgid "Global options"
236
  msgstr "Globale indstillinger"
237
 
238
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:151
239
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:456
240
  msgid "Menu Options"
241
  msgstr "Menu-indstillinger"
242
 
243
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:154
244
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:778
245
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:785
246
  msgid "Write options - Post"
247
  msgstr "Indstillinger for Nyt indlæg"
248
 
249
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:157
250
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:861
251
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:868
252
  msgid "Write options - Page"
253
  msgstr "Indstillinger for Ny side"
254
 
255
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:160
256
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:944
257
  msgid "Links options"
258
  msgstr "Links-indstillinger"
259
 
260
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:163
261
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1066
262
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1151
263
  msgid "Set Theme"
264
  msgstr "Aktivér tema"
265
 
266
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:166
267
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1164
268
  msgid "Export/Import Options"
269
  msgstr "Eksport/Import-indstillinger"
270
 
271
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:169
272
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1199
273
  msgid "Deinstall Options"
274
  msgstr "Indstillinger for afinstallation"
275
 
@@ -286,12 +286,14 @@ msgstr "Brugerinformation"
286
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:263
287
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:273
288
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:283
289
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:312
 
290
  msgid "Default"
291
  msgstr "Standard"
292
 
293
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:201
294
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:224
 
295
  msgid "Hide"
296
  msgstr "Skjul"
297
 
@@ -328,440 +330,448 @@ msgid "The Footer-area can hide, include all links and details."
328
  msgstr "Footer-området kan skjules, inkl. alle links og detaljer."
329
 
330
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:229
 
 
 
 
 
 
 
 
331
  msgid "WriteScroll"
332
  msgstr "SkriveScroll"
333
 
334
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:234
335
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:244
336
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:254
337
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:264
338
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:274
339
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:284
 
340
  msgid "Activate"
341
  msgstr "Aktivér"
342
 
343
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:235
344
  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."
345
  msgstr "Når SkriveScroll-indstillingen er aktv, vil disse sider automatisk scrolle til en position, der er optimal for redigering, når du redigerer indlæg eller sider."
346
 
347
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:239
348
  msgid "Timestamp"
349
  msgstr "Tidsstempel"
350
 
351
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:245
352
  msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
353
  msgstr "Åbner redigeringsfelterne for indlæggets tidsstempel, uden at du behøver at klikke på \"Redigér\"-linket hele tiden."
354
 
355
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:249
356
  msgid "Thickbox FullScreen"
357
  msgstr "Thickbox-fuldskærm"
358
 
359
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:255
360
  msgid "All Thickbox-function use the full area of the browser. Thickbox is for example in upload media-files."
361
  msgstr "Alle Thickbox-funktioner bruger hele browserens område. Thickbox bruges f.eks. til upload af mediefiler."
362
 
363
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:259
364
  msgid "Flashuploader"
365
  msgstr "Flash-uploader"
366
 
367
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:265
368
  msgid "Disable the flashuploader and users use only the standard uploader."
369
  msgstr "Deaktivér Flash-uploaderen, så brugerne kun kan bruge standard-uploaderen."
370
 
371
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:269
372
  msgid "Category Height"
373
  msgstr "Højde for kategorier"
374
 
375
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:275
376
  msgid "View the Meta Box with Categories in the full height, no scrollbar or whitespace."
377
  msgstr "Se Meta-boksen med kategorier i fuld højde, ingen scrollbar eller whitespace."
378
 
379
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:279
380
  msgid "Advice in Footer"
381
  msgstr "Henvisning i footer"
382
 
383
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:286
384
  msgid "In the Footer you can display an advice for changing the Default-design, (x)HTML is possible."
385
  msgstr "I footeren kan du vise et råd om at ændre standard-designet, (x)HTML kan bruges."
386
 
387
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:308
388
  msgid "Dashboard deactivate, redirect to"
389
  msgstr "Deaktivér kontrolpanel; viderestil til"
390
 
391
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:313
392
  msgid "Manage Posts"
393
  msgstr "Indlæg"
394
 
395
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:314
396
  msgid "Manage Pages"
397
  msgstr "Sider"
398
 
399
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:315
400
  msgid "Write Post"
401
  msgstr "Nyt indlæg"
402
 
403
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:316
404
  msgid "Write Page"
405
  msgstr "Ny side"
406
 
407
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:317
408
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:533
409
  msgid "Comments"
410
  msgstr "Kommentarer"
411
 
412
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:318
413
  msgid "other Page"
414
  msgstr "anden side"
415
 
416
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:321
417
  msgid "You have deactivated the Dashboard, please select a page for redirection?"
418
  msgstr "Du har deaktiveret kontrolpanelet; vælg en side, der skal viderestilles til?"
419
 
420
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:330
421
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:445
422
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:767
423
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:850
424
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:933
425
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1054
426
  msgid "Update Options"
427
  msgstr "Opdatér indstillinger"
428
 
429
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:332
430
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:447
431
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:769
432
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:852
433
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:935
434
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1057
435
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1156
436
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1190
437
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1211
438
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1237
439
  msgid "scroll to top"
440
  msgstr "scroll til top"
441
 
442
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:348
443
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:420
444
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:825
445
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:908
446
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:951
447
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1029
448
  msgid "Option"
449
  msgstr "Indstilling"
450
 
451
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:351
452
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:466
453
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:788
454
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:871
455
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:954
456
  msgid "Deactivate for"
457
  msgstr "Deaktivér for"
458
 
459
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:371
460
  msgid "Favorite Actions"
461
  msgstr "Favorithandlinger"
462
 
463
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:372
464
  msgid "Screen-Meta"
465
  msgstr "Skærm-meta"
466
 
467
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:373
468
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:525
469
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:619
470
  msgid "Screen Options"
471
  msgstr "Skærm-indstillinger"
472
 
473
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:374
474
  msgid "Contextual Help"
475
  msgstr "Konteksthjælp"
476
 
477
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:375
478
  msgid "Admin Color Scheme"
479
  msgstr "Admin-farveskema"
480
 
481
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:419
482
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1028
483
  msgid "Your own options"
484
  msgstr "Dine egne indstillinger"
485
 
486
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:419
487
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:824
488
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:907
489
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1028
490
  msgid "ID or class"
491
  msgstr "Id eller klasse"
492
 
493
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:426
494
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:831
495
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:914
496
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1035
497
  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."
498
  msgstr "Det er muligt at tilføje dine egne id'er eller classes fra elementer og tags. Du kan finde disse id'er og classes med Firebug-udvidelsen til Firefox. Tildel en værdi og det tilhørende navn per linje."
499
 
500
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:432
501
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:837
502
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:920
503
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1041
504
  msgid "Possible nomination for ID or class. Separate multiple nominations through a carriage return."
505
  msgstr "Mulig benævnelse på id eller klasse. Adskil flere benævnelser med ny linje."
506
 
507
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:437
508
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:842
509
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:925
510
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1046
511
  msgid "Possible IDs or classes. Separate multiple values through a carriage return."
512
  msgstr "Mulige id'er eller classes. Adskil flere værdier med en ny linje."
513
 
514
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:463
515
  msgid "Menu options - Menu, <span style=\\\"font-weight: 400;\\\">Submenu</span>"
516
  msgstr "Menu-indstillinger - Menu, <span style=\\\"font-weight: 400;\\\">Undermenu</span>"
517
 
518
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:524
519
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:618
520
  msgid "Help"
521
  msgstr "Hjælp"
522
 
523
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:526
524
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:620
525
  msgid "Permalink"
526
  msgstr "Permalink"
527
 
528
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:530
529
  msgid "Excerpt"
530
  msgstr "Uddrag"
531
 
532
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:531
533
  msgid "Trackbacks"
534
  msgstr "Trackbacks"
535
 
536
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:532
537
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:621
538
  msgid "Custom Fields"
539
  msgstr "Egne felter"
540
 
541
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:534
542
  msgid "Password Protect This Post"
543
  msgstr "Kodeordsbeskyt dette indlæg"
544
 
545
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:535
546
  msgid "Post Author"
547
  msgstr "Indlægsforfatter"
548
 
549
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:536
550
  msgid "Post Revisions"
551
  msgstr "Indlægsrevisioner"
552
 
553
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:537
554
  msgid "Related, Shortcuts"
555
  msgstr "Se også: genveje"
556
 
557
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:538
558
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:630
559
  msgid "Messenges"
560
  msgstr "Beskder"
561
 
562
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:539
563
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:631
564
  msgid "h2: Advanced Options"
565
  msgstr "h2: Avancerede indstillinger"
566
 
567
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:540
568
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:632
569
  msgid "Media Buttons (all)"
570
  msgstr "Medieknapper (alle)"
571
 
572
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:541
573
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:633
574
  msgid "Word count"
575
  msgstr "Antal ord"
576
 
577
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:542
578
  msgid "Post Slug"
579
  msgstr "Kort <span title=\"post slug\">indlægstitel</span>"
580
 
581
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:543
582
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:635
583
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:984
584
  msgid "Publish Actions"
585
  msgstr "Udgiv-handlinger"
586
 
587
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:544
588
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:636
589
  msgid "Discussion"
590
  msgstr "Diskussion"
591
 
592
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:545
593
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:637
594
  msgid "HTML Editor Button"
595
  msgstr "Knap for HTML-editor"
596
 
597
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:549
598
  msgid "Post Thumbnail"
599
  msgstr "Indlægsminiature"
600
 
601
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:551
602
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:643
603
  msgid "Suggested tags from"
604
  msgstr "Foreslåede tags fra"
605
 
606
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:553
607
  msgid "Text Control"
608
  msgstr "Tekstkontrol"
609
 
610
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:555
611
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:645
612
  msgid "HTML Special Characters"
613
  msgstr "Specielle HTML-tegn"
614
 
615
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:557
616
  msgid "All in One SEO Pack"
617
  msgstr "All in One SEO Pack"
618
 
619
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:622
620
  msgid "Comments &amp; Pings"
621
  msgstr "Kommentarer &amp; Pings"
622
 
623
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:623
624
  msgid "Password Protect This Page"
625
  msgstr "Kodeordsbeskyt denne side"
626
 
627
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:624
628
  msgid "Attributes"
629
  msgstr "Egenskaber"
630
 
631
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:625
632
  msgid "Page Template"
633
  msgstr "Sideskabelon"
634
 
635
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:626
636
  msgid "Page Order"
637
  msgstr "Siderækkefølge"
638
 
639
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:627
640
  msgid "Page Author"
641
  msgstr "Sideforfatter"
642
 
643
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:628
644
  msgid "Page Revisions"
645
  msgstr "Siderevisioner"
646
 
647
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:629
648
  msgid "Related"
649
  msgstr "Se også"
650
 
651
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:634
652
  msgid "Page Slug"
653
  msgstr "Kort <span title=\"post slug\">sidetitel</span>"
654
 
655
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:641
656
  msgid "Page Image"
657
  msgstr "Side-billede"
658
 
659
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:683
660
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:731
661
  msgid "After activate the check box it heavy attitudes will change."
662
  msgstr "Når afkrydsningsfeltet er aktiveret, bliver det vanskeligere at ændre indstillinger."
663
 
664
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:714
665
  msgid "Profile"
666
  msgstr "Profil"
667
 
668
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:824
669
  msgid "Your own post options"
670
  msgstr "Dine egne indlægsindstillinger"
671
 
672
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:907
673
  msgid "Your own page options"
674
  msgstr "Dine egne sideindstillinger"
675
 
676
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:977
677
  msgid "Name"
678
  msgstr "Navn"
679
 
680
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:978
681
  msgid "Web Address"
682
  msgstr "webadresse"
683
 
684
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:979
685
  msgid "Description"
686
  msgstr "Beskrivelse"
687
 
688
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:981
689
  msgid "Target"
690
  msgstr "Target"
691
 
692
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:982
693
  msgid "Link Relationship (XFN)"
694
  msgstr "Linkrelationer (XFN)"
695
 
696
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:983
697
  msgid "Advanced"
698
  msgstr "Avanceret"
699
 
700
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1073
701
  msgid "For better peformance with many users on your blog; load only userlist, when you will change the theme options for users."
702
  msgstr "Hvis du mange brugere på din blog, kan du øge hastigheden ved kun at indlæse listen over brugere, når du vil ændre tema-indstillingerne for brugere."
703
 
704
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1076
705
  msgid "Load User Data"
706
  msgstr "Indlæser data på brugere"
707
 
708
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1087
709
  msgid "User-ID"
710
  msgstr "Bruger-id"
711
 
712
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1088
713
  msgid "Username"
714
  msgstr "Brugernavn"
715
 
716
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1089
717
  msgid "Display name publicly as"
718
  msgstr "Vis navn offentligt som"
719
 
720
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1090
721
  msgid "Admin-Color Scheme"
722
  msgstr "Admin-farveskema"
723
 
724
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1091
725
  msgid "User Level"
726
  msgstr "Brugerniveau"
727
 
728
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1092
729
  msgid "Role"
730
  msgstr "Rolle"
731
 
732
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1168
733
  msgid "Export"
734
  msgstr "Eksportér"
735
 
736
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1170
737
  msgid "You can save a .seq file with your options."
738
  msgstr "Du kan gemme en SEQ-fil med dine indstillinger."
739
 
740
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1173
741
  msgid "Export &raquo;"
742
  msgstr "Eksportér &raquo;"
743
 
744
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1177
745
  msgid "Import"
746
  msgstr "Importér"
747
 
748
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1180
749
  msgid "Choose a Adminimize (<em>.seq</em>) file to upload, then click <em>Upload file and import</em>."
750
  msgstr "Vælg en Adminimize (<em>.seq</em>) fil, du vil uploade; klik så <em>Upload fil og importér</em>."
751
 
752
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1182
753
  msgid "Choose a file from your computer"
754
  msgstr "Vælg en fil fra din computer"
755
 
756
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1187
757
  msgid "Upload file and import &raquo;"
758
  msgstr "Upload fil og importér &raquo;"
759
 
760
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1202
761
  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."
762
  msgstr "Brug denne indstilling for at rense din database for alle poster tilhørende dette plugin. Når du deaktiverer pluginet, <strong>fjerner</strong> pluginnet <strong>ikke</strong> alle sine poster i databasen."
763
 
764
- #: d:\wordpress\plugins\adminimize/adminimize_page.php:1206
765
  msgid "Delete Options"
766
  msgstr "Slet indstillinger"
767
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Adminimize 1.7.9\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-09-19 18:17+0100\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Team Blogos <wordpress@blogos.dk>\n"
8
  "Language-Team: Team Blogos <wordpress@blogos.dk>\n"
53
  msgid "Load user data to themes was successful."
54
  msgstr "Indlæsning af brugerdata vedrørende temaerne lykkedes."
55
 
56
+ #: d:\wordpress\plugins\adminimize/adminimize.php:381
57
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:538
58
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:990
59
  msgid "Categories"
60
  msgstr "Kategorier"
61
 
62
+ #: d:\wordpress\plugins\adminimize/adminimize.php:387
63
+ #: d:\wordpress\plugins\adminimize/adminimize.php:398
64
  msgid "+ Add New Category"
65
  msgstr "+ Tilføj ny kategori"
66
 
67
+ #: d:\wordpress\plugins\adminimize/adminimize.php:389
68
+ #: d:\wordpress\plugins\adminimize/adminimize.php:400
69
  msgid "New category name"
70
  msgstr "Nyt kategorinavn"
71
 
72
+ #: d:\wordpress\plugins\adminimize/adminimize.php:390
73
+ #: d:\wordpress\plugins\adminimize/adminimize.php:402
74
  msgid "Parent category"
75
  msgstr "Forælder-kategori"
76
 
77
+ #: d:\wordpress\plugins\adminimize/adminimize.php:391
78
+ #: d:\wordpress\plugins\adminimize/adminimize.php:403
79
  msgid "Add"
80
  msgstr "Tilføj"
81
 
82
+ #: d:\wordpress\plugins\adminimize/adminimize.php:400
83
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:539
84
  msgid "Add New Category"
85
  msgstr "Tilføj ny kategori"
86
 
87
+ #: d:\wordpress\plugins\adminimize/adminimize.php:424
88
+ #: d:\wordpress\plugins\adminimize/adminimize.php:425
89
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:537
90
  msgid "Tags"
91
  msgstr "Tags"
92
 
93
+ #: d:\wordpress\plugins\adminimize/adminimize.php:465
94
+ #: d:\wordpress\plugins\adminimize/adminimize.php:479
95
+ #: d:\wordpress\plugins\adminimize/adminimize.php:493
96
  msgid "Blue"
97
  msgstr "Blå"
98
 
99
+ #: d:\wordpress\plugins\adminimize/adminimize.php:472
100
+ #: d:\wordpress\plugins\adminimize/adminimize.php:486
101
+ #: d:\wordpress\plugins\adminimize/adminimize.php:500
102
  msgid "Gray"
103
  msgstr "Grå"
104
 
105
+ #: d:\wordpress\plugins\adminimize/adminimize.php:508
106
+ #: d:\wordpress\plugins\adminimize/adminimize.php:550
107
+ #: d:\wordpress\plugins\adminimize/adminimize.php:573
108
  msgid "Classic"
109
  msgstr "Klassisk"
110
 
111
+ #: d:\wordpress\plugins\adminimize/adminimize.php:515
112
+ #: d:\wordpress\plugins\adminimize/adminimize.php:557
113
+ #: d:\wordpress\plugins\adminimize/adminimize.php:580
114
  msgid "Fresh"
115
  msgstr "Frisk"
116
 
117
+ #: d:\wordpress\plugins\adminimize/adminimize.php:522
118
  msgid "WordPress 2.3"
119
  msgstr "WordPress 2.3"
120
 
121
+ #: d:\wordpress\plugins\adminimize/adminimize.php:529
122
  msgid "Maybe i'm colorblind"
123
  msgstr "Måske er jeg farveblind"
124
 
125
+ #: d:\wordpress\plugins\adminimize/adminimize.php:536
126
  msgid "Grey"
127
  msgstr "Grå"
128
 
129
+ #: d:\wordpress\plugins\adminimize/adminimize.php:664
130
+ #: d:\wordpress\plugins\adminimize/adminimize.php:667
131
  msgid "Dashboard"
132
  msgstr "Kontrolpanel"
133
 
134
+ #: d:\wordpress\plugins\adminimize/adminimize.php:722
135
+ #: d:\wordpress\plugins\adminimize/adminimize.php:724
136
+ #: d:\wordpress\plugins\adminimize/adminimize.php:737
137
+ #: d:\wordpress\plugins\adminimize/adminimize.php:739
138
+ #: d:\wordpress\plugins\adminimize/adminimize.php:971
139
  msgid "Log Out"
140
  msgstr "Log ud"
141
 
142
+ #: d:\wordpress\plugins\adminimize/adminimize.php:990
143
  msgid "Visit plugin homepage"
144
  msgstr "Besøg plugin-hjemmesiden"
145
 
146
+ #: d:\wordpress\plugins\adminimize/adminimize.php:993
147
  msgid "plugin"
148
  msgstr "plugin"
149
 
150
+ #: d:\wordpress\plugins\adminimize/adminimize.php:993
151
  msgid "Version"
152
  msgstr "Version"
153
 
154
+ #: d:\wordpress\plugins\adminimize/adminimize.php:993
155
  msgid "History"
156
  msgstr "Historik"
157
 
158
+ #: d:\wordpress\plugins\adminimize/adminimize.php:993
159
  msgid "Author"
160
  msgstr "Forfatter"
161
 
162
+ #: d:\wordpress\plugins\adminimize/adminimize.php:996
163
  msgid "plugin activate"
164
  msgstr "aktivér plugin"
165
 
166
+ #: d:\wordpress\plugins\adminimize/adminimize.php:1016
167
  msgid "Settings"
168
  msgstr "Indstillinger"
169
 
170
+ #: d:\wordpress\plugins\adminimize/adminimize.php:1077
171
+ #: d:\wordpress\plugins\adminimize/adminimize.php:1098
172
  msgid "<a href=\"http://wordpress.org/extend/plugins/adminimize/\">Documentation</a>"
173
  msgstr "<a href=\"http://wordpress.org/extend/plugins/adminimize/\">Dokumentation</a>"
174
 
175
+ #: d:\wordpress\plugins\adminimize/adminimize.php:1094
176
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:109
177
  msgid "Adminimize"
178
  msgstr "Adminimere"
179
 
180
+ #: d:\wordpress\plugins\adminimize/adminimize.php:1096
181
  msgid "Adminimize Options"
182
  msgstr "Adminimize-indstillinger"
183
 
184
+ #: d:\wordpress\plugins\adminimize/adminimize.php:1113
185
  msgid "Cheatin&#8217; uh?"
186
  msgstr "Snyder du, hva'?"
187
 
188
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:115
189
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:140
190
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:186
191
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:350
192
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:465
193
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:787
194
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:870
195
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:953
196
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1075
197
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1173
198
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1208
199
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1229
200
  msgid "Click to toggle"
201
  msgstr "Klik for at invertere valg"
202
 
203
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:116
204
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:172
205
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1230
206
  msgid "About the plugin"
207
  msgstr "Om pluginnet"
208
 
209
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:118
210
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1233
211
  msgid "Further information: Visit the <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
212
  msgstr "Yderligere information: Besøg <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">plugin-hjemmesiden</a> for yderligere information eller for at hente den seneste udgave af pluginnet."
213
 
214
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:124
215
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1239
216
  msgid "PayPal - The safer, easier way to pay online!"
217
  msgstr "PayPal - Online-betalinger på den sikre og nemme måde!"
218
 
219
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:128
220
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1243
221
  msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a> or donate."
222
  msgstr "Ønsker du at takke mig? Besøg min <a href=\"http://bueltge.de/wunschliste/\">ønskeliste</a> eller send en donation."
223
 
231
  msgstr "Indstillinger for kontrolpanel"
232
 
233
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:148
234
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:351
235
  msgid "Global options"
236
  msgstr "Globale indstillinger"
237
 
238
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:151
239
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:466
240
  msgid "Menu Options"
241
  msgstr "Menu-indstillinger"
242
 
243
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:154
244
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:788
245
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:795
246
  msgid "Write options - Post"
247
  msgstr "Indstillinger for Nyt indlæg"
248
 
249
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:157
250
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:871
251
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:878
252
  msgid "Write options - Page"
253
  msgstr "Indstillinger for Ny side"
254
 
255
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:160
256
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:954
257
  msgid "Links options"
258
  msgstr "Links-indstillinger"
259
 
260
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:163
261
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1076
262
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1161
263
  msgid "Set Theme"
264
  msgstr "Aktivér tema"
265
 
266
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:166
267
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1174
268
  msgid "Export/Import Options"
269
  msgstr "Eksport/Import-indstillinger"
270
 
271
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:169
272
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1209
273
  msgid "Deinstall Options"
274
  msgstr "Indstillinger for afinstallation"
275
 
286
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:263
287
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:273
288
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:283
289
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:293
290
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:322
291
  msgid "Default"
292
  msgstr "Standard"
293
 
294
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:201
295
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:224
296
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:234
297
  msgid "Hide"
298
  msgstr "Skjul"
299
 
330
  msgstr "Footer-området kan skjules, inkl. alle links og detaljer."
331
 
332
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:229
333
+ msgid "Header"
334
+ msgstr "Header"
335
+
336
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:235
337
+ msgid "The Header-area can hide, include all links and details."
338
+ msgstr "Header-området kan skjules, inkl. alle links og detaljer."
339
+
340
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:239
341
  msgid "WriteScroll"
342
  msgstr "SkriveScroll"
343
 
 
344
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:244
345
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:254
346
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:264
347
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:274
348
  #: d:\wordpress\plugins\adminimize/adminimize_page.php:284
349
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:294
350
  msgid "Activate"
351
  msgstr "Aktivér"
352
 
353
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:245
354
  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."
355
  msgstr "Når SkriveScroll-indstillingen er aktv, vil disse sider automatisk scrolle til en position, der er optimal for redigering, når du redigerer indlæg eller sider."
356
 
357
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:249
358
  msgid "Timestamp"
359
  msgstr "Tidsstempel"
360
 
361
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:255
362
  msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
363
  msgstr "Åbner redigeringsfelterne for indlæggets tidsstempel, uden at du behøver at klikke på \"Redigér\"-linket hele tiden."
364
 
365
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:259
366
  msgid "Thickbox FullScreen"
367
  msgstr "Thickbox-fuldskærm"
368
 
369
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:265
370
  msgid "All Thickbox-function use the full area of the browser. Thickbox is for example in upload media-files."
371
  msgstr "Alle Thickbox-funktioner bruger hele browserens område. Thickbox bruges f.eks. til upload af mediefiler."
372
 
373
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:269
374
  msgid "Flashuploader"
375
  msgstr "Flash-uploader"
376
 
377
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:275
378
  msgid "Disable the flashuploader and users use only the standard uploader."
379
  msgstr "Deaktivér Flash-uploaderen, så brugerne kun kan bruge standard-uploaderen."
380
 
381
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:279
382
  msgid "Category Height"
383
  msgstr "Højde for kategorier"
384
 
385
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:285
386
  msgid "View the Meta Box with Categories in the full height, no scrollbar or whitespace."
387
  msgstr "Se Meta-boksen med kategorier i fuld højde, ingen scrollbar eller whitespace."
388
 
389
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:289
390
  msgid "Advice in Footer"
391
  msgstr "Henvisning i footer"
392
 
393
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:296
394
  msgid "In the Footer you can display an advice for changing the Default-design, (x)HTML is possible."
395
  msgstr "I footeren kan du vise et råd om at ændre standard-designet, (x)HTML kan bruges."
396
 
397
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:318
398
  msgid "Dashboard deactivate, redirect to"
399
  msgstr "Deaktivér kontrolpanel; viderestil til"
400
 
401
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:323
402
  msgid "Manage Posts"
403
  msgstr "Indlæg"
404
 
405
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:324
406
  msgid "Manage Pages"
407
  msgstr "Sider"
408
 
409
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:325
410
  msgid "Write Post"
411
  msgstr "Nyt indlæg"
412
 
413
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:326
414
  msgid "Write Page"
415
  msgstr "Ny side"
416
 
417
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:327
418
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:543
419
  msgid "Comments"
420
  msgstr "Kommentarer"
421
 
422
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:328
423
  msgid "other Page"
424
  msgstr "anden side"
425
 
426
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:331
427
  msgid "You have deactivated the Dashboard, please select a page for redirection?"
428
  msgstr "Du har deaktiveret kontrolpanelet; vælg en side, der skal viderestilles til?"
429
 
430
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:340
431
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:455
432
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:777
433
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:860
434
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:943
435
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1064
436
  msgid "Update Options"
437
  msgstr "Opdatér indstillinger"
438
 
439
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:342
440
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:457
441
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:779
442
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:862
443
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:945
444
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1067
445
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1166
446
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1200
447
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1221
448
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1247
449
  msgid "scroll to top"
450
  msgstr "scroll til top"
451
 
452
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:358
453
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:430
454
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:835
455
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:918
456
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:961
457
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1039
458
  msgid "Option"
459
  msgstr "Indstilling"
460
 
461
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:361
462
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:476
463
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:798
464
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:881
465
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:964
466
  msgid "Deactivate for"
467
  msgstr "Deaktivér for"
468
 
469
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:381
470
  msgid "Favorite Actions"
471
  msgstr "Favorithandlinger"
472
 
473
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:382
474
  msgid "Screen-Meta"
475
  msgstr "Skærm-meta"
476
 
477
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:383
478
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:535
479
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:629
480
  msgid "Screen Options"
481
  msgstr "Skærm-indstillinger"
482
 
483
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:384
484
  msgid "Contextual Help"
485
  msgstr "Konteksthjælp"
486
 
487
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:385
488
  msgid "Admin Color Scheme"
489
  msgstr "Admin-farveskema"
490
 
491
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:429
492
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1038
493
  msgid "Your own options"
494
  msgstr "Dine egne indstillinger"
495
 
496
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:429
497
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:834
498
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:917
499
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1038
500
  msgid "ID or class"
501
  msgstr "Id eller klasse"
502
 
503
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:436
504
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:841
505
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:924
506
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1045
507
  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."
508
  msgstr "Det er muligt at tilføje dine egne id'er eller classes fra elementer og tags. Du kan finde disse id'er og classes med Firebug-udvidelsen til Firefox. Tildel en værdi og det tilhørende navn per linje."
509
 
510
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:442
511
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:847
512
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:930
513
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1051
514
  msgid "Possible nomination for ID or class. Separate multiple nominations through a carriage return."
515
  msgstr "Mulig benævnelse på id eller klasse. Adskil flere benævnelser med ny linje."
516
 
517
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:447
518
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:852
519
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:935
520
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1056
521
  msgid "Possible IDs or classes. Separate multiple values through a carriage return."
522
  msgstr "Mulige id'er eller classes. Adskil flere værdier med en ny linje."
523
 
524
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:473
525
  msgid "Menu options - Menu, <span style=\\\"font-weight: 400;\\\">Submenu</span>"
526
  msgstr "Menu-indstillinger - Menu, <span style=\\\"font-weight: 400;\\\">Undermenu</span>"
527
 
528
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:534
529
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:628
530
  msgid "Help"
531
  msgstr "Hjælp"
532
 
533
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:536
534
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:630
535
  msgid "Permalink"
536
  msgstr "Permalink"
537
 
538
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:540
539
  msgid "Excerpt"
540
  msgstr "Uddrag"
541
 
542
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:541
543
  msgid "Trackbacks"
544
  msgstr "Trackbacks"
545
 
546
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:542
547
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:631
548
  msgid "Custom Fields"
549
  msgstr "Egne felter"
550
 
551
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:544
552
  msgid "Password Protect This Post"
553
  msgstr "Kodeordsbeskyt dette indlæg"
554
 
555
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:545
556
  msgid "Post Author"
557
  msgstr "Indlægsforfatter"
558
 
559
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:546
560
  msgid "Post Revisions"
561
  msgstr "Indlægsrevisioner"
562
 
563
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:547
564
  msgid "Related, Shortcuts"
565
  msgstr "Se også: genveje"
566
 
567
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:548
568
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:640
569
  msgid "Messenges"
570
  msgstr "Beskder"
571
 
572
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:549
573
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:641
574
  msgid "h2: Advanced Options"
575
  msgstr "h2: Avancerede indstillinger"
576
 
577
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:550
578
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:642
579
  msgid "Media Buttons (all)"
580
  msgstr "Medieknapper (alle)"
581
 
582
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:551
583
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:643
584
  msgid "Word count"
585
  msgstr "Antal ord"
586
 
587
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:552
588
  msgid "Post Slug"
589
  msgstr "Kort <span title=\"post slug\">indlægstitel</span>"
590
 
591
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:553
592
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:645
593
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:994
594
  msgid "Publish Actions"
595
  msgstr "Udgiv-handlinger"
596
 
597
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:554
598
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:646
599
  msgid "Discussion"
600
  msgstr "Diskussion"
601
 
602
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:555
603
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:647
604
  msgid "HTML Editor Button"
605
  msgstr "Knap for HTML-editor"
606
 
607
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:559
608
  msgid "Post Thumbnail"
609
  msgstr "Indlægsminiature"
610
 
611
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:561
612
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:653
613
  msgid "Suggested tags from"
614
  msgstr "Foreslåede tags fra"
615
 
616
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:563
617
  msgid "Text Control"
618
  msgstr "Tekstkontrol"
619
 
620
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:565
621
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:655
622
  msgid "HTML Special Characters"
623
  msgstr "Specielle HTML-tegn"
624
 
625
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:567
626
  msgid "All in One SEO Pack"
627
  msgstr "All in One SEO Pack"
628
 
629
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:632
630
  msgid "Comments &amp; Pings"
631
  msgstr "Kommentarer &amp; Pings"
632
 
633
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:633
634
  msgid "Password Protect This Page"
635
  msgstr "Kodeordsbeskyt denne side"
636
 
637
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:634
638
  msgid "Attributes"
639
  msgstr "Egenskaber"
640
 
641
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:635
642
  msgid "Page Template"
643
  msgstr "Sideskabelon"
644
 
645
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:636
646
  msgid "Page Order"
647
  msgstr "Siderækkefølge"
648
 
649
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:637
650
  msgid "Page Author"
651
  msgstr "Sideforfatter"
652
 
653
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:638
654
  msgid "Page Revisions"
655
  msgstr "Siderevisioner"
656
 
657
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:639
658
  msgid "Related"
659
  msgstr "Se også"
660
 
661
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:644
662
  msgid "Page Slug"
663
  msgstr "Kort <span title=\"post slug\">sidetitel</span>"
664
 
665
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:651
666
  msgid "Page Image"
667
  msgstr "Side-billede"
668
 
669
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:693
670
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:741
671
  msgid "After activate the check box it heavy attitudes will change."
672
  msgstr "Når afkrydsningsfeltet er aktiveret, bliver det vanskeligere at ændre indstillinger."
673
 
674
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:724
675
  msgid "Profile"
676
  msgstr "Profil"
677
 
678
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:834
679
  msgid "Your own post options"
680
  msgstr "Dine egne indlægsindstillinger"
681
 
682
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:917
683
  msgid "Your own page options"
684
  msgstr "Dine egne sideindstillinger"
685
 
686
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:987
687
  msgid "Name"
688
  msgstr "Navn"
689
 
690
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:988
691
  msgid "Web Address"
692
  msgstr "webadresse"
693
 
694
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:989
695
  msgid "Description"
696
  msgstr "Beskrivelse"
697
 
698
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:991
699
  msgid "Target"
700
  msgstr "Target"
701
 
702
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:992
703
  msgid "Link Relationship (XFN)"
704
  msgstr "Linkrelationer (XFN)"
705
 
706
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:993
707
  msgid "Advanced"
708
  msgstr "Avanceret"
709
 
710
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1083
711
  msgid "For better peformance with many users on your blog; load only userlist, when you will change the theme options for users."
712
  msgstr "Hvis du mange brugere på din blog, kan du øge hastigheden ved kun at indlæse listen over brugere, når du vil ændre tema-indstillingerne for brugere."
713
 
714
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1086
715
  msgid "Load User Data"
716
  msgstr "Indlæser data på brugere"
717
 
718
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1097
719
  msgid "User-ID"
720
  msgstr "Bruger-id"
721
 
722
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1098
723
  msgid "Username"
724
  msgstr "Brugernavn"
725
 
726
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1099
727
  msgid "Display name publicly as"
728
  msgstr "Vis navn offentligt som"
729
 
730
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1100
731
  msgid "Admin-Color Scheme"
732
  msgstr "Admin-farveskema"
733
 
734
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1101
735
  msgid "User Level"
736
  msgstr "Brugerniveau"
737
 
738
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1102
739
  msgid "Role"
740
  msgstr "Rolle"
741
 
742
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1178
743
  msgid "Export"
744
  msgstr "Eksportér"
745
 
746
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1180
747
  msgid "You can save a .seq file with your options."
748
  msgstr "Du kan gemme en SEQ-fil med dine indstillinger."
749
 
750
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1183
751
  msgid "Export &raquo;"
752
  msgstr "Eksportér &raquo;"
753
 
754
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1187
755
  msgid "Import"
756
  msgstr "Importér"
757
 
758
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1190
759
  msgid "Choose a Adminimize (<em>.seq</em>) file to upload, then click <em>Upload file and import</em>."
760
  msgstr "Vælg en Adminimize (<em>.seq</em>) fil, du vil uploade; klik så <em>Upload fil og importér</em>."
761
 
762
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1192
763
  msgid "Choose a file from your computer"
764
  msgstr "Vælg en fil fra din computer"
765
 
766
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1197
767
  msgid "Upload file and import &raquo;"
768
  msgstr "Upload fil og importér &raquo;"
769
 
770
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1212
771
  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."
772
  msgstr "Brug denne indstilling for at rense din database for alle poster tilhørende dette plugin. Når du deaktiverer pluginet, <strong>fjerner</strong> pluginnet <strong>ikke</strong> alle sine poster i databasen."
773
 
774
+ #: d:\wordpress\plugins\adminimize/adminimize_page.php:1216
775
  msgid "Delete Options"
776
  msgstr "Slet indstillinger"
777
 
languages/adminimize-de_DE.mo CHANGED
Binary file
languages/adminimize-de_DE.po CHANGED
@@ -13,204 +13,229 @@ msgstr ""
13
  "X-Poedit-Language: \n"
14
  "X-Poedit-Country: \n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
- "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;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
  "X-Poedit-Basepath: ../\n"
18
  "X-Poedit-Bookmarks: \n"
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
- #: adminimize.php:91
23
  #@ adminimize
24
  msgid "Unknown error."
25
  msgstr "Unbekannter Fehler."
26
 
27
- #: adminimize.php:98
28
  #@ adminimize
29
  msgid "The updates were saved."
30
  msgstr "Die Einstellungen wurden gespeichert"
31
 
32
- #: adminimize.php:99
33
  #@ adminimize
34
  msgid "You have not enough rights to edit entries in the database."
35
  msgstr "Du hast nicht ausreichend Rechte um diese Aktion durchzuf&uuml;hren!"
36
 
37
- #: adminimize.php:101
38
  #@ adminimize
39
  msgid "All entries in the database were deleted."
40
  msgstr "Die Einstellungen wurde gel&ouml;scht!"
41
 
42
- #: adminimize.php:102
43
  #@ adminimize
44
  msgid "Set the checkbox on deinstall-button."
45
  msgstr "Checkbox setzen, wenn wirklich deinstalliert werden soll!"
46
 
47
- #: adminimize.php:103
48
  #@ adminimize
49
  msgid "Can't load menu and submenu."
50
  msgstr "Menu und Submenu k&ouml;nnen nicht geladen werden!"
51
 
52
- #: adminimize.php:104
53
  #@ adminimize
54
  msgid "Backend-Theme was activated!"
55
  msgstr "Backend-Theme wurde zugewiesen!"
56
 
57
- #: adminimize.php:105
58
  #@ adminimize
59
  msgid "Load user data to themes was successful."
60
  msgstr "Das Laden der User-Daten zum Theme war erfolgreich."
61
 
62
- #: adminimize.php:372
63
- #: adminimize_page.php:528
64
- #: adminimize_page.php:980
 
65
  #@ adminimize
66
  msgid "Categories"
67
  msgstr "Kategorien"
68
 
69
- #: adminimize.php:378
70
- #: adminimize.php:389
 
71
  msgid "+ Add New Category"
72
  msgstr "+ Add New Category"
73
 
74
- #: adminimize.php:380
75
- #: adminimize.php:391
 
76
  msgid "New category name"
77
  msgstr "New category name"
78
 
79
- #: adminimize.php:381
80
- #: adminimize.php:393
 
81
  msgid "Parent category"
82
  msgstr "Parent category"
83
 
84
- #: adminimize.php:382
85
- #: adminimize.php:394
 
86
  msgid "Add"
87
  msgstr "Add"
88
 
89
- #: adminimize.php:391
90
- #: adminimize_page.php:529
 
91
  #@ adminimize
92
  msgid "Add New Category"
93
  msgstr "Add New Category"
94
 
95
- #: adminimize.php:415
96
- #: adminimize.php:416
97
- #: adminimize_page.php:527
 
98
  #@ adminimize
99
  msgid "Tags"
100
  msgstr "Tags"
101
 
102
- #: adminimize.php:456
103
- #: adminimize.php:470
104
- #: adminimize.php:484
 
105
  msgid "Blue"
106
  msgstr "Blau"
107
 
108
- #: adminimize.php:463
109
- #: adminimize.php:477
110
- #: adminimize.php:491
 
111
  msgid "Gray"
112
  msgstr "Grau"
113
 
114
- #: adminimize.php:499
115
- #: adminimize.php:541
116
- #: adminimize.php:564
 
117
  msgid "Classic"
118
  msgstr "Classic"
119
 
120
- #: adminimize.php:506
121
- #: adminimize.php:548
122
- #: adminimize.php:571
 
123
  msgid "Fresh"
124
  msgstr "Fresh"
125
 
126
- #: adminimize.php:513
 
127
  msgid "WordPress 2.3"
128
  msgstr "WordPress 2.3"
129
 
130
- #: adminimize.php:520
 
131
  msgid "Maybe i'm colorblind"
132
  msgstr "Maybe i'm colorblind"
133
 
134
- #: adminimize.php:527
 
135
  msgid "Grey"
136
  msgstr "Grey"
137
 
138
- #: adminimize.php:655
139
- #: adminimize.php:658
 
140
  msgid "Dashboard"
141
  msgstr "Dashboard"
142
 
143
- #: adminimize.php:713
144
- #: adminimize.php:715
145
- #: adminimize.php:728
146
- #: adminimize.php:730
147
- #: adminimize.php:921
 
148
  msgid "Log Out"
149
  msgstr "Log Out"
150
 
151
- #: adminimize.php:940
 
152
  msgid "Visit plugin homepage"
153
  msgstr "Visit plugin homepage"
154
 
155
- #: adminimize.php:943
 
156
  msgid "plugin"
157
  msgstr "plugin"
158
 
159
- #: adminimize.php:943
 
160
  msgid "Version"
161
  msgstr "Version"
162
 
163
- #: adminimize.php:943
164
  #@ adminimize
165
  msgid "History"
166
  msgstr "Historie"
167
 
168
- #: adminimize.php:943
 
169
  msgid "Author"
170
  msgstr "Author"
171
 
172
- #: adminimize.php:946
173
  #@ adminimize
174
  msgid "plugin activate"
175
  msgstr "plugin activate"
176
 
177
- #: adminimize.php:966
 
178
  msgid "Settings"
179
  msgstr "Settings"
180
 
181
- #: adminimize.php:1027
182
- #: adminimize.php:1048
183
  #@ adminimize
184
  msgid "<a href=\"http://wordpress.org/extend/plugins/adminimize/\">Documentation</a>"
185
  msgstr "<a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">Dokumentation</a> (<a href=\"http://wordpress.org/extend/plugins/adminimize/\">en</a>)"
186
 
187
- #: adminimize.php:1044
 
 
188
  #: adminimize_page.php:109
189
  #@ adminimize
190
  msgid "Adminimize"
191
  msgstr "Adminimize"
192
 
193
- #: adminimize.php:1046
194
  #@ adminimize
195
  msgid "Adminimize Options"
196
  msgstr "Adminimize Einstellungen"
197
 
198
- #: adminimize.php:1063
 
199
  msgid "Cheatin&#8217; uh?"
200
  msgstr "Cheatin&#8217; uh?"
201
 
202
  #: adminimize_page.php:115
203
  #: adminimize_page.php:140
204
  #: adminimize_page.php:186
205
- #: adminimize_page.php:340
206
- #: adminimize_page.php:455
207
- #: adminimize_page.php:777
208
- #: adminimize_page.php:860
209
- #: adminimize_page.php:943
210
- #: adminimize_page.php:1065
211
- #: adminimize_page.php:1163
212
- #: adminimize_page.php:1198
213
- #: adminimize_page.php:1219
 
214
  msgid "Click to toggle"
215
  msgstr "Zum Umschalten klicken"
216
 
@@ -234,13 +259,15 @@ msgstr "User-Info"
234
  #: adminimize_page.php:263
235
  #: adminimize_page.php:273
236
  #: adminimize_page.php:283
237
- #: adminimize_page.php:312
 
238
  #@ adminimize
239
  msgid "Default"
240
  msgstr "Standard"
241
 
242
  #: adminimize_page.php:201
243
  #: adminimize_page.php:224
 
244
  #@ adminimize
245
  msgid "Hide"
246
  msgstr "Ausblenden"
@@ -285,528 +312,558 @@ msgstr "Footer"
285
  msgid "The Footer-area can hide, include all links and details."
286
  msgstr "Der Footer-Bereich kann deaktiviert werden, inklusive aller Links und Hinweise."
287
 
288
- #: adminimize_page.php:229
289
  #@ adminimize
290
  msgid "WriteScroll"
291
  msgstr "WriteScroll"
292
 
293
- #: adminimize_page.php:234
294
  #: adminimize_page.php:244
295
  #: adminimize_page.php:254
296
  #: adminimize_page.php:264
297
  #: adminimize_page.php:274
298
  #: adminimize_page.php:284
 
299
  #@ adminimize
300
  msgid "Activate"
301
  msgstr "Aktiv"
302
 
303
- #: adminimize_page.php:235
304
  #@ adminimize
305
  msgid "With the WriteScroll option active, these pages will automatically scroll to an optimal position for editing, when you visit Write Post or Write Page."
306
  msgstr "Automatisches Scrollen zum Editor beim Aufruf der Seite Schreiben in Beitr&auml;ge und Seite."
307
 
308
- #: adminimize_page.php:239
309
  #@ adminimize
310
  msgid "Timestamp"
311
  msgstr "Timestamp"
312
 
313
- #: adminimize_page.php:245
314
  #@ adminimize
315
  msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
316
  msgstr "Das Feld zum &Auml;ndern des Ver&ouml;ffentlichungsdatum ist immer ge&ouml;ffnet."
317
 
318
- #: adminimize_page.php:249
319
  #@ adminimize
320
  msgid "Thickbox FullScreen"
321
  msgstr "Thickbox FullScreen"
322
 
323
- #: adminimize_page.php:259
324
  #@ adminimize
325
  msgid "Flashuploader"
326
  msgstr "Flashuploader"
327
 
328
- #: adminimize_page.php:265
329
  #@ adminimize
330
  msgid "Disable the flashuploader and users use only the standard uploader."
331
  msgstr "Deaktiviere den Flashuploader und Nutzer können nur den Standard-Uploader erreichen."
332
 
333
- #: adminimize_page.php:279
334
  #@ adminimize
335
  msgid "Advice in Footer"
336
  msgstr "Hinweis im Footer"
337
 
338
- #: adminimize_page.php:313
339
  #@ adminimize
340
  msgid "Manage Posts"
341
  msgstr "Verwalten Beitr&auml;ge"
342
 
343
- #: adminimize_page.php:314
344
  #@ adminimize
345
  msgid "Manage Pages"
346
  msgstr "Verwalten Seiten"
347
 
348
- #: adminimize_page.php:315
349
  #@ adminimize
350
  msgid "Write Post"
351
  msgstr "Schreiben Beitrag"
352
 
353
- #: adminimize_page.php:316
354
  #@ adminimize
355
  msgid "Write Page"
356
  msgstr "Schreiben Seite"
357
 
358
- #: adminimize_page.php:317
359
- #: adminimize_page.php:533
360
  #@ adminimize
361
  msgid "Comments"
362
  msgstr "Kommentare"
363
 
364
- #: adminimize_page.php:318
365
  #@ adminimize
366
  msgid "other Page"
367
  msgstr "andere Seite"
368
 
369
- #: adminimize_page.php:330
370
- #: adminimize_page.php:445
371
- #: adminimize_page.php:767
372
- #: adminimize_page.php:850
373
- #: adminimize_page.php:933
374
- #: adminimize_page.php:1054
375
  #@ adminimize
376
  msgid "Update Options"
377
  msgstr "Einstellungen aktualisieren"
378
 
379
  #: adminimize_page.php:148
380
- #: adminimize_page.php:341
381
  #@ adminimize
382
  msgid "Global options"
383
  msgstr "Globale Einstellungen"
384
 
385
- #: adminimize_page.php:348
386
- #: adminimize_page.php:420
387
- #: adminimize_page.php:825
388
- #: adminimize_page.php:908
389
- #: adminimize_page.php:951
390
- #: adminimize_page.php:1029
391
  #@ adminimize
392
  msgid "Option"
393
  msgstr "Einstellung"
394
 
395
- #: adminimize_page.php:351
396
- #: adminimize_page.php:466
397
- #: adminimize_page.php:788
398
- #: adminimize_page.php:871
399
- #: adminimize_page.php:954
400
  #@ adminimize
401
  msgid "Deactivate for"
402
  msgstr "Deaktiviere für"
403
 
404
- #: adminimize_page.php:371
405
  #@ adminimize
406
  msgid "Favorite Actions"
407
  msgstr "Favorisierte Aktionen"
408
 
409
- #: adminimize_page.php:372
410
  #@ adminimize
411
  msgid "Screen-Meta"
412
  msgstr "Screen-Meta"
413
 
414
- #: adminimize_page.php:373
415
- #: adminimize_page.php:525
416
- #: adminimize_page.php:619
417
  #@ adminimize
 
418
  msgid "Screen Options"
419
  msgstr "kontextabhängige Optionen"
420
 
421
- #: adminimize_page.php:374
422
  #@ adminimize
423
  msgid "Contextual Help"
424
  msgstr "kontextabhängig Hilfe"
425
 
426
- #: adminimize_page.php:375
427
  #@ adminimize
428
  msgid "Admin Color Scheme"
429
  msgstr "Farbschema verwalten"
430
 
431
- #: adminimize_page.php:419
432
- #: adminimize_page.php:1028
433
  #@ adminimize
434
  msgid "Your own options"
435
  msgstr "Deine eigenen Einstellungen"
436
 
437
- #: adminimize_page.php:419
438
- #: adminimize_page.php:824
439
- #: adminimize_page.php:907
440
- #: adminimize_page.php:1028
441
  #@ adminimize
442
  msgid "ID or class"
443
  msgstr "ID oder Klasse"
444
 
445
- #: adminimize_page.php:426
446
- #: adminimize_page.php:831
447
- #: adminimize_page.php:914
448
- #: adminimize_page.php:1035
449
  #@ adminimize
450
  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."
451
  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."
452
 
453
- #: adminimize_page.php:432
454
- #: adminimize_page.php:837
455
- #: adminimize_page.php:920
456
- #: adminimize_page.php:1041
457
  #@ adminimize
458
  msgid "Possible nomination for ID or class. Separate multiple nominations through a carriage return."
459
  msgstr "Mögliche Benennung der ID oder Klasse. Trenne Werte durch eine neue Zeile."
460
 
461
- #: adminimize_page.php:437
462
- #: adminimize_page.php:842
463
- #: adminimize_page.php:925
464
- #: adminimize_page.php:1046
465
  #@ adminimize
466
  msgid "Possible IDs or classes. Separate multiple values through a carriage return."
467
  msgstr "Mögliche IDs oder Klassen. Trenne Werte durch eine neue Zeile."
468
 
469
  #: adminimize_page.php:151
470
- #: adminimize_page.php:456
471
  #@ adminimize
472
  msgid "Menu Options"
473
  msgstr "Menu Einstellungen"
474
 
475
- #: adminimize_page.php:463
476
  #@ adminimize
477
  msgid "Menu options - Menu, <span style=\\\"font-weight: 400;\\\">Submenu</span>"
478
  msgstr "Menu Einstellungen - Menu, <span style=\"font-weight: 400;\">Submenu</span>"
479
 
480
- #: adminimize_page.php:524
481
- #: adminimize_page.php:618
 
482
  msgid "Help"
483
  msgstr ""
484
 
485
- #: adminimize_page.php:526
486
- #: adminimize_page.php:620
487
  #@ adminimize
488
  msgid "Permalink"
489
  msgstr "Permalink"
490
 
491
- #: adminimize_page.php:530
492
  #@ adminimize
493
  msgid "Excerpt"
494
  msgstr "Auszug"
495
 
496
- #: adminimize_page.php:531
497
  #@ adminimize
498
  msgid "Trackbacks"
499
  msgstr "Trackbacks"
500
 
501
- #: adminimize_page.php:532
502
- #: adminimize_page.php:621
 
503
  msgid "Custom Fields"
504
  msgstr "Benutzerdefinierte Felder"
505
 
506
- #: adminimize_page.php:534
507
  #@ adminimize
508
  msgid "Password Protect This Post"
509
  msgstr "Diesen Artikel durch ein Passwort sch&uuml;tzen"
510
 
511
- #: adminimize_page.php:535
 
512
  msgid "Post Author"
513
  msgstr "Autor"
514
 
515
- #: adminimize_page.php:536
 
516
  msgid "Post Revisions"
517
  msgstr "Post Revisions"
518
 
519
- #: adminimize_page.php:537
520
  #@ adminimize
521
  msgid "Related, Shortcuts"
522
  msgstr "Siehe auch, Tastaturk&uuml;rzel"
523
 
524
- #: adminimize_page.php:538
525
- #: adminimize_page.php:630
526
  #@ adminimize
527
  msgid "Messenges"
528
  msgstr "Mitteilungen"
529
 
530
- #: adminimize_page.php:539
531
- #: adminimize_page.php:631
532
  #@ adminimize
533
  msgid "h2: Advanced Options"
534
  msgstr "h2: Erweiterte Einstellungen"
535
 
536
- #: adminimize_page.php:540
537
- #: adminimize_page.php:632
538
  #@ adminimize
539
  msgid "Media Buttons (all)"
540
  msgstr "Media Buttons (alle)"
541
 
542
- #: adminimize_page.php:541
543
- #: adminimize_page.php:633
544
  #@ adminimize
545
  msgid "Word count"
546
  msgstr "Word count"
547
 
548
- #: adminimize_page.php:542
 
549
  msgid "Post Slug"
550
  msgstr ""
551
 
552
- #: adminimize_page.php:543
553
- #: adminimize_page.php:635
554
- #: adminimize_page.php:984
555
  #@ adminimize
556
  msgid "Publish Actions"
557
  msgstr "Publish Actions"
558
 
559
- #: adminimize_page.php:544
560
- #: adminimize_page.php:636
 
561
  msgid "Discussion"
562
  msgstr ""
563
 
564
- #: adminimize_page.php:549
 
565
  msgid "Post Thumbnail"
566
  msgstr ""
567
 
568
- #: adminimize_page.php:551
569
- #: adminimize_page.php:643
 
570
  #@ adminimize
571
  msgid "Suggested tags from"
572
  msgstr "Suggested tags from"
573
 
574
- #: adminimize_page.php:553
 
575
  msgid "Text Control"
576
  msgstr "Text Control"
577
 
578
- #: adminimize_page.php:555
579
- #: adminimize_page.php:645
 
580
  msgid "HTML Special Characters"
581
  msgstr "HTML Special Characters"
582
 
583
- #: adminimize_page.php:557
 
584
  msgid "All in One SEO Pack"
585
  msgstr ""
586
 
587
- #: adminimize_page.php:622
588
  #@ adminimize
589
  msgid "Comments &amp; Pings"
590
  msgstr "Kommentare &amp; Pings"
591
 
592
- #: adminimize_page.php:623
593
  #@ adminimize
594
  msgid "Password Protect This Page"
595
  msgstr "Diese Seite mit einem Passwort versehen"
596
 
597
- #: adminimize_page.php:624
 
598
  msgid "Attributes"
599
  msgstr ""
600
 
601
- #: adminimize_page.php:625
602
  #@ adminimize
603
  msgid "Page Template"
604
  msgstr "Seiten Template"
605
 
606
- #: adminimize_page.php:626
607
  #@ adminimize
608
  msgid "Page Order"
609
  msgstr "Reihenfolge"
610
 
611
- #: adminimize_page.php:627
 
612
  msgid "Page Author"
613
  msgstr "Seitenautor"
614
 
615
- #: adminimize_page.php:628
 
616
  msgid "Page Revisions"
617
  msgstr "Page Revisions"
618
 
619
- #: adminimize_page.php:629
620
  #@ adminimize
621
  msgid "Related"
622
  msgstr "Siehe auch"
623
 
624
- #: adminimize_page.php:634
 
625
  msgid "Page Slug"
626
  msgstr ""
627
 
628
- #: adminimize_page.php:641
 
629
  msgid "Page Image"
630
  msgstr ""
631
 
632
- #: adminimize_page.php:683
633
- #: adminimize_page.php:731
634
  #@ adminimize
635
  msgid "After activate the check box it heavy attitudes will change."
636
  msgstr "Wenn die Checkbox aktiv ist, dann wird das Ändern von Einstellungen erschwert."
637
 
638
- #: adminimize_page.php:714
 
639
  msgid "Profile"
640
  msgstr "Profile"
641
 
642
  #: adminimize_page.php:154
643
- #: adminimize_page.php:778
644
- #: adminimize_page.php:785
645
  #@ adminimize
646
  msgid "Write options - Post"
647
  msgstr "Schreiben Einstellungen - Beitr&auml;ge"
648
 
649
- #: adminimize_page.php:824
650
  #@ adminimize
651
  msgid "Your own post options"
652
  msgstr "Deine eigenen Beitrags-Einstellungen"
653
 
654
  #: adminimize_page.php:157
655
- #: adminimize_page.php:861
656
- #: adminimize_page.php:868
657
  #@ adminimize
658
  msgid "Write options - Page"
659
  msgstr "Schreiben Einstellungen - Seiten"
660
 
661
- #: adminimize_page.php:907
662
  #@ adminimize
663
  msgid "Your own page options"
664
  msgstr "Deine eigenen Seiten-Einstellungen"
665
 
666
  #: adminimize_page.php:160
667
- #: adminimize_page.php:944
668
  #@ adminimize
669
  msgid "Links options"
670
  msgstr "Link Einstellungen"
671
 
672
- #: adminimize_page.php:977
 
673
  msgid "Name"
674
  msgstr "Name"
675
 
676
- #: adminimize_page.php:978
 
677
  msgid "Web Address"
678
  msgstr "Web-Adresse"
679
 
680
- #: adminimize_page.php:979
 
681
  msgid "Description"
682
  msgstr "Beschreibung"
683
 
684
- #: adminimize_page.php:981
 
685
  msgid "Target"
686
  msgstr "Target"
687
 
688
- #: adminimize_page.php:982
 
689
  msgid "Link Relationship (XFN)"
690
  msgstr "Link-Beziehungen (XFN)"
691
 
692
- #: adminimize_page.php:983
 
693
  msgid "Advanced"
694
  msgstr "Erweitert"
695
 
696
  #: adminimize_page.php:163
697
- #: adminimize_page.php:1066
698
- #: adminimize_page.php:1151
699
  #@ adminimize
700
  msgid "Set Theme"
701
  msgstr "Theme zuweisen"
702
 
703
- #: adminimize_page.php:1073
704
  #@ adminimize
705
  msgid "For better peformance with many users on your blog; load only userlist, when you will change the theme options for users."
706
  msgstr "Für eine bessere Performance bei vielen Usern in deinem Blog werden die Userdaten nur nach Aufforderung geladen."
707
 
708
- #: adminimize_page.php:1076
709
  #@ adminimize
710
  msgid "Load User Data"
711
  msgstr "Lade User Daten"
712
 
713
- #: adminimize_page.php:1087
 
714
  msgid "User-ID"
715
  msgstr "User-ID"
716
 
717
- #: adminimize_page.php:1088
 
718
  msgid "Username"
719
  msgstr "Benutzername"
720
 
721
- #: adminimize_page.php:1089
 
722
  msgid "Display name publicly as"
723
  msgstr "Name im Blog"
724
 
725
- #: adminimize_page.php:1090
 
726
  msgid "Admin-Color Scheme"
727
  msgstr "Admin-Color Scheme"
728
 
729
- #: adminimize_page.php:1091
 
730
  msgid "User Level"
731
  msgstr "User Level"
732
 
733
- #: adminimize_page.php:1092
 
734
  msgid "Role"
735
  msgstr "Rolle"
736
 
737
  #: adminimize_page.php:169
738
- #: adminimize_page.php:1199
739
  #@ adminimize
740
  msgid "Deinstall Options"
741
  msgstr "Einstellungen deinstallieren"
742
 
743
- #: adminimize_page.php:1202
744
  #@ adminimize
745
  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."
746
  msgstr "Nutze diese Option, um die Einstellungen f&uuml;r das Plugin in der Datenbank zu l&ouml;schen. Das Plugin entfernt die Eintr&auml;ge <strong>nicht</strong>, wenn es deaktiviert wird!"
747
 
748
- #: adminimize_page.php:1206
749
  #@ adminimize
750
  msgid "Delete Options"
751
  msgstr "Einstellungen Löschen"
752
 
753
  #: adminimize_page.php:116
754
  #: adminimize_page.php:172
755
- #: adminimize_page.php:1220
756
  #@ adminimize
757
  msgid "About the plugin"
758
  msgstr "&Uuml;ber das Plugin"
759
 
760
  #: adminimize_page.php:118
761
- #: adminimize_page.php:1223
762
  #@ adminimize
763
  msgid "Further information: Visit the <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
764
  msgstr "Weitere Information: Besuche die <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">Plugin Webseite</a> f&uuml;r weitere Informationen oder hole die aktuelle Version des Plugins."
765
 
766
  #: adminimize_page.php:124
767
- #: adminimize_page.php:1229
768
  #@ adminimize
769
  msgid "PayPal - The safer, easier way to pay online!"
770
  msgstr "PayPal - Der sichere und einfache Weg zu zahlen!"
771
 
772
  #: adminimize_page.php:128
773
- #: adminimize_page.php:1233
774
  #@ adminimize
775
  msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a> or donate."
776
  msgstr "Du willst Danke sagen? Besuche meine <a href=\"http://bueltge.de/wunschliste/\">Wunschliste</a> oder spende."
777
 
778
- #: adminimize.php:100
779
  #@ adminimize
780
  msgid "All entries in the database were imported."
781
  msgstr "Alle Einträge wurden in die Datenbank geschrieben."
782
 
783
  #: adminimize_page.php:166
784
- #: adminimize_page.php:1164
785
  #@ adminimize
786
  msgid "Export/Import Options"
787
  msgstr "Export/Import Einstellungen"
788
 
789
- #: adminimize_page.php:1168
790
  #@ adminimize
791
  msgid "Export"
792
  msgstr "Export"
793
 
794
- #: adminimize_page.php:1173
795
  #@ adminimize
796
  msgid "Export &raquo;"
797
  msgstr "Exportieren &raquo;"
798
 
799
- #: adminimize_page.php:1177
800
  #@ adminimize
801
  msgid "Import"
802
  msgstr "Import"
803
 
804
- #: adminimize_page.php:1182
805
  #@ adminimize
806
  msgid "Choose a file from your computer"
807
  msgstr "Wähle eine Datei vom Rechner"
808
 
809
- #: adminimize_page.php:1187
810
  #@ adminimize
811
  msgid "Upload file and import &raquo;"
812
  msgstr "Hochladen der Datei und importieren &raquo;"
@@ -816,62 +873,109 @@ msgstr "Hochladen der Datei und importieren &raquo;"
816
  msgid "MiniMenu"
817
  msgstr "MiniMenu"
818
 
819
- #: adminimize_page.php:332
820
- #: adminimize_page.php:447
821
- #: adminimize_page.php:769
822
- #: adminimize_page.php:852
823
- #: adminimize_page.php:935
824
- #: adminimize_page.php:1057
825
- #: adminimize_page.php:1156
826
- #: adminimize_page.php:1190
827
- #: adminimize_page.php:1211
828
- #: adminimize_page.php:1237
829
  #@ adminimize
830
  msgid "scroll to top"
831
  msgstr "Nach oben"
832
 
833
- #: adminimize_page.php:1170
834
  #@ adminimize
835
  msgid "You can save a .seq file with your options."
836
  msgstr "Du kannst deine Einstellungen in einer .seq Datei speichern."
837
 
838
- #: adminimize_page.php:1180
839
  #@ adminimize
840
  msgid "Choose a Adminimize (<em>.seq</em>) file to upload, then click <em>Upload file and import</em>."
841
  msgstr "Wähle eine Adminimize (<em>.seq</em>) Datei zum hoch laden und dann klick <em>Hochladen der Datei und importieren</em>"
842
 
843
- #: adminimize_page.php:269
844
  #@ adminimize
845
  msgid "Category Height"
846
  msgstr "Kategorie-Höhe"
847
 
848
- #: adminimize_page.php:275
849
  #@ adminimize
850
  msgid "View the Meta Box with Categories in the full height, no scrollbar or whitespace."
851
  msgstr "Stellt in die Meta Box der Kategorien in voller Höhe dar, kein Scrollbar und kein Leerraum."
852
 
853
- #: adminimize_page.php:286
854
  #@ adminimize
855
  msgid "In the Footer you can display an advice for changing the Default-design, (x)HTML is possible."
856
  msgstr "Im Footer kann ein Hinweis auf die aktive Ver&auml;nderung des Standard-Layout gesetzt werden, (x)HTML erlaubt."
857
 
858
- #: adminimize_page.php:308
859
  #@ adminimize
860
  msgid "Dashboard deactivate, redirect to"
861
  msgstr "Dashboard inaktiv, Weiterleitung nach"
862
 
863
- #: adminimize_page.php:321
864
  #@ adminimize
865
  msgid "You have deactivated the Dashboard, please select a page for redirection?"
866
  msgstr "Du hast das Dashboard deaktiviert, wohin soll der Nutzer weitergeleitet werden?"
867
 
868
- #: adminimize_page.php:545
869
- #: adminimize_page.php:637
 
870
  msgid "HTML Editor Button"
871
  msgstr ""
872
 
873
- #: adminimize_page.php:255
874
  #@ adminimize
875
  msgid "All Thickbox-function use the full area of the browser. Thickbox is for example in upload media-files."
876
  msgstr "Alle Thickbox-Funktion verwenden den vollständigen Bereich des Browsers. Thickbox ist beispielsweise in der Medien-Upload-Funktion."
877
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  "X-Poedit-Language: \n"
14
  "X-Poedit-Country: \n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "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"
17
  "X-Poedit-Basepath: ../\n"
18
  "X-Poedit-Bookmarks: \n"
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
+ #: adminimize.php:93
23
  #@ adminimize
24
  msgid "Unknown error."
25
  msgstr "Unbekannter Fehler."
26
 
27
+ #: adminimize.php:100
28
  #@ adminimize
29
  msgid "The updates were saved."
30
  msgstr "Die Einstellungen wurden gespeichert"
31
 
32
+ #: adminimize.php:101
33
  #@ adminimize
34
  msgid "You have not enough rights to edit entries in the database."
35
  msgstr "Du hast nicht ausreichend Rechte um diese Aktion durchzuf&uuml;hren!"
36
 
37
+ #: adminimize.php:103
38
  #@ adminimize
39
  msgid "All entries in the database were deleted."
40
  msgstr "Die Einstellungen wurde gel&ouml;scht!"
41
 
42
+ #: adminimize.php:104
43
  #@ adminimize
44
  msgid "Set the checkbox on deinstall-button."
45
  msgstr "Checkbox setzen, wenn wirklich deinstalliert werden soll!"
46
 
47
+ #: adminimize.php:105
48
  #@ adminimize
49
  msgid "Can't load menu and submenu."
50
  msgstr "Menu und Submenu k&ouml;nnen nicht geladen werden!"
51
 
52
+ #: adminimize.php:106
53
  #@ adminimize
54
  msgid "Backend-Theme was activated!"
55
  msgstr "Backend-Theme wurde zugewiesen!"
56
 
57
+ #: adminimize.php:107
58
  #@ adminimize
59
  msgid "Load user data to themes was successful."
60
  msgstr "Das Laden der User-Daten zum Theme war erfolgreich."
61
 
62
+ #: adminimize.php:423
63
+ #: adminimize_page.php:540
64
+ #: adminimize_page.php:994
65
+ #@ default
66
  #@ adminimize
67
  msgid "Categories"
68
  msgstr "Kategorien"
69
 
70
+ #: adminimize.php:429
71
+ #: adminimize.php:440
72
+ #@ default
73
  msgid "+ Add New Category"
74
  msgstr "+ Add New Category"
75
 
76
+ #: adminimize.php:431
77
+ #: adminimize.php:442
78
+ #@ default
79
  msgid "New category name"
80
  msgstr "New category name"
81
 
82
+ #: adminimize.php:432
83
+ #: adminimize.php:444
84
+ #@ default
85
  msgid "Parent category"
86
  msgstr "Parent category"
87
 
88
+ #: adminimize.php:433
89
+ #: adminimize.php:445
90
+ #@ default
91
  msgid "Add"
92
  msgstr "Add"
93
 
94
+ #: adminimize.php:442
95
+ #: adminimize_page.php:541
96
+ #@ default
97
  #@ adminimize
98
  msgid "Add New Category"
99
  msgstr "Add New Category"
100
 
101
+ #: adminimize.php:466
102
+ #: adminimize.php:467
103
+ #: adminimize_page.php:539
104
+ #@ default
105
  #@ adminimize
106
  msgid "Tags"
107
  msgstr "Tags"
108
 
109
+ #: adminimize.php:507
110
+ #: adminimize.php:521
111
+ #: adminimize.php:535
112
+ #@ default
113
  msgid "Blue"
114
  msgstr "Blau"
115
 
116
+ #: adminimize.php:514
117
+ #: adminimize.php:528
118
+ #: adminimize.php:542
119
+ #@ default
120
  msgid "Gray"
121
  msgstr "Grau"
122
 
123
+ #: adminimize.php:550
124
+ #: adminimize.php:592
125
+ #: adminimize.php:615
126
+ #@ default
127
  msgid "Classic"
128
  msgstr "Classic"
129
 
130
+ #: adminimize.php:557
131
+ #: adminimize.php:599
132
+ #: adminimize.php:622
133
+ #@ default
134
  msgid "Fresh"
135
  msgstr "Fresh"
136
 
137
+ #: adminimize.php:564
138
+ #@ default
139
  msgid "WordPress 2.3"
140
  msgstr "WordPress 2.3"
141
 
142
+ #: adminimize.php:571
143
+ #@ default
144
  msgid "Maybe i'm colorblind"
145
  msgstr "Maybe i'm colorblind"
146
 
147
+ #: adminimize.php:578
148
+ #@ default
149
  msgid "Grey"
150
  msgstr "Grey"
151
 
152
+ #: adminimize.php:706
153
+ #: adminimize.php:709
154
+ #@ default
155
  msgid "Dashboard"
156
  msgstr "Dashboard"
157
 
158
+ #: adminimize.php:764
159
+ #: adminimize.php:766
160
+ #: adminimize.php:779
161
+ #: adminimize.php:781
162
+ #: adminimize.php:972
163
+ #@ default
164
  msgid "Log Out"
165
  msgstr "Log Out"
166
 
167
+ #: adminimize.php:991
168
+ #@ default
169
  msgid "Visit plugin homepage"
170
  msgstr "Visit plugin homepage"
171
 
172
+ #: adminimize.php:994
173
+ #@ default
174
  msgid "plugin"
175
  msgstr "plugin"
176
 
177
+ #: adminimize.php:994
178
+ #@ default
179
  msgid "Version"
180
  msgstr "Version"
181
 
182
+ #: adminimize.php:994
183
  #@ adminimize
184
  msgid "History"
185
  msgstr "Historie"
186
 
187
+ #: adminimize.php:994
188
+ #@ default
189
  msgid "Author"
190
  msgstr "Author"
191
 
192
+ #: adminimize.php:997
193
  #@ adminimize
194
  msgid "plugin activate"
195
  msgstr "plugin activate"
196
 
197
+ #: adminimize.php:1017
198
+ #@ default
199
  msgid "Settings"
200
  msgstr "Settings"
201
 
202
+ #: adminimize.php:1078
203
+ #: adminimize.php:1099
204
  #@ adminimize
205
  msgid "<a href=\"http://wordpress.org/extend/plugins/adminimize/\">Documentation</a>"
206
  msgstr "<a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">Dokumentation</a> (<a href=\"http://wordpress.org/extend/plugins/adminimize/\">en</a>)"
207
 
208
+ #. translators: plugin header field 'Name'
209
+ #: adminimize.php:0
210
+ #: adminimize.php:1095
211
  #: adminimize_page.php:109
212
  #@ adminimize
213
  msgid "Adminimize"
214
  msgstr "Adminimize"
215
 
216
+ #: adminimize.php:1097
217
  #@ adminimize
218
  msgid "Adminimize Options"
219
  msgstr "Adminimize Einstellungen"
220
 
221
+ #: adminimize.php:1114
222
+ #@ default
223
  msgid "Cheatin&#8217; uh?"
224
  msgstr "Cheatin&#8217; uh?"
225
 
226
  #: adminimize_page.php:115
227
  #: adminimize_page.php:140
228
  #: adminimize_page.php:186
229
+ #: adminimize_page.php:350
230
+ #: adminimize_page.php:465
231
+ #: adminimize_page.php:791
232
+ #: adminimize_page.php:874
233
+ #: adminimize_page.php:957
234
+ #: adminimize_page.php:1079
235
+ #: adminimize_page.php:1177
236
+ #: adminimize_page.php:1212
237
+ #: adminimize_page.php:1233
238
+ #@ default
239
  msgid "Click to toggle"
240
  msgstr "Zum Umschalten klicken"
241
 
259
  #: adminimize_page.php:263
260
  #: adminimize_page.php:273
261
  #: adminimize_page.php:283
262
+ #: adminimize_page.php:293
263
+ #: adminimize_page.php:322
264
  #@ adminimize
265
  msgid "Default"
266
  msgstr "Standard"
267
 
268
  #: adminimize_page.php:201
269
  #: adminimize_page.php:224
270
+ #: adminimize_page.php:234
271
  #@ adminimize
272
  msgid "Hide"
273
  msgstr "Ausblenden"
312
  msgid "The Footer-area can hide, include all links and details."
313
  msgstr "Der Footer-Bereich kann deaktiviert werden, inklusive aller Links und Hinweise."
314
 
315
+ #: adminimize_page.php:239
316
  #@ adminimize
317
  msgid "WriteScroll"
318
  msgstr "WriteScroll"
319
 
 
320
  #: adminimize_page.php:244
321
  #: adminimize_page.php:254
322
  #: adminimize_page.php:264
323
  #: adminimize_page.php:274
324
  #: adminimize_page.php:284
325
+ #: adminimize_page.php:294
326
  #@ adminimize
327
  msgid "Activate"
328
  msgstr "Aktiv"
329
 
330
+ #: adminimize_page.php:245
331
  #@ adminimize
332
  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."
333
  msgstr "Automatisches Scrollen zum Editor beim Aufruf der Seite Schreiben in Beitr&auml;ge und Seite."
334
 
335
+ #: adminimize_page.php:249
336
  #@ adminimize
337
  msgid "Timestamp"
338
  msgstr "Timestamp"
339
 
340
+ #: adminimize_page.php:255
341
  #@ adminimize
342
  msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
343
  msgstr "Das Feld zum &Auml;ndern des Ver&ouml;ffentlichungsdatum ist immer ge&ouml;ffnet."
344
 
345
+ #: adminimize_page.php:259
346
  #@ adminimize
347
  msgid "Thickbox FullScreen"
348
  msgstr "Thickbox FullScreen"
349
 
350
+ #: adminimize_page.php:269
351
  #@ adminimize
352
  msgid "Flashuploader"
353
  msgstr "Flashuploader"
354
 
355
+ #: adminimize_page.php:275
356
  #@ adminimize
357
  msgid "Disable the flashuploader and users use only the standard uploader."
358
  msgstr "Deaktiviere den Flashuploader und Nutzer können nur den Standard-Uploader erreichen."
359
 
360
+ #: adminimize_page.php:289
361
  #@ adminimize
362
  msgid "Advice in Footer"
363
  msgstr "Hinweis im Footer"
364
 
365
+ #: adminimize_page.php:323
366
  #@ adminimize
367
  msgid "Manage Posts"
368
  msgstr "Verwalten Beitr&auml;ge"
369
 
370
+ #: adminimize_page.php:324
371
  #@ adminimize
372
  msgid "Manage Pages"
373
  msgstr "Verwalten Seiten"
374
 
375
+ #: adminimize_page.php:325
376
  #@ adminimize
377
  msgid "Write Post"
378
  msgstr "Schreiben Beitrag"
379
 
380
+ #: adminimize_page.php:326
381
  #@ adminimize
382
  msgid "Write Page"
383
  msgstr "Schreiben Seite"
384
 
385
+ #: adminimize_page.php:327
386
+ #: adminimize_page.php:545
387
  #@ adminimize
388
  msgid "Comments"
389
  msgstr "Kommentare"
390
 
391
+ #: adminimize_page.php:328
392
  #@ adminimize
393
  msgid "other Page"
394
  msgstr "andere Seite"
395
 
396
+ #: adminimize_page.php:340
397
+ #: adminimize_page.php:455
398
+ #: adminimize_page.php:781
399
+ #: adminimize_page.php:864
400
+ #: adminimize_page.php:947
401
+ #: adminimize_page.php:1068
402
  #@ adminimize
403
  msgid "Update Options"
404
  msgstr "Einstellungen aktualisieren"
405
 
406
  #: adminimize_page.php:148
407
+ #: adminimize_page.php:351
408
  #@ adminimize
409
  msgid "Global options"
410
  msgstr "Globale Einstellungen"
411
 
412
+ #: adminimize_page.php:358
413
+ #: adminimize_page.php:430
414
+ #: adminimize_page.php:839
415
+ #: adminimize_page.php:922
416
+ #: adminimize_page.php:965
417
+ #: adminimize_page.php:1043
418
  #@ adminimize
419
  msgid "Option"
420
  msgstr "Einstellung"
421
 
422
+ #: adminimize_page.php:361
423
+ #: adminimize_page.php:476
424
+ #: adminimize_page.php:802
425
+ #: adminimize_page.php:885
426
+ #: adminimize_page.php:968
427
  #@ adminimize
428
  msgid "Deactivate for"
429
  msgstr "Deaktiviere für"
430
 
431
+ #: adminimize_page.php:381
432
  #@ adminimize
433
  msgid "Favorite Actions"
434
  msgstr "Favorisierte Aktionen"
435
 
436
+ #: adminimize_page.php:382
437
  #@ adminimize
438
  msgid "Screen-Meta"
439
  msgstr "Screen-Meta"
440
 
441
+ #: adminimize_page.php:383
442
+ #: adminimize_page.php:536
443
+ #: adminimize_page.php:632
444
  #@ adminimize
445
+ #@ default
446
  msgid "Screen Options"
447
  msgstr "kontextabhängige Optionen"
448
 
449
+ #: adminimize_page.php:384
450
  #@ adminimize
451
  msgid "Contextual Help"
452
  msgstr "kontextabhängig Hilfe"
453
 
454
+ #: adminimize_page.php:385
455
  #@ adminimize
456
  msgid "Admin Color Scheme"
457
  msgstr "Farbschema verwalten"
458
 
459
+ #: adminimize_page.php:429
460
+ #: adminimize_page.php:1042
461
  #@ adminimize
462
  msgid "Your own options"
463
  msgstr "Deine eigenen Einstellungen"
464
 
465
+ #: adminimize_page.php:429
466
+ #: adminimize_page.php:838
467
+ #: adminimize_page.php:921
468
+ #: adminimize_page.php:1042
469
  #@ adminimize
470
  msgid "ID or class"
471
  msgstr "ID oder Klasse"
472
 
473
+ #: adminimize_page.php:436
474
+ #: adminimize_page.php:845
475
+ #: adminimize_page.php:928
476
+ #: adminimize_page.php:1049
477
  #@ adminimize
478
  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."
479
  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."
480
 
481
+ #: adminimize_page.php:442
482
+ #: adminimize_page.php:851
483
+ #: adminimize_page.php:934
484
+ #: adminimize_page.php:1055
485
  #@ adminimize
486
  msgid "Possible nomination for ID or class. Separate multiple nominations through a carriage return."
487
  msgstr "Mögliche Benennung der ID oder Klasse. Trenne Werte durch eine neue Zeile."
488
 
489
+ #: adminimize_page.php:447
490
+ #: adminimize_page.php:856
491
+ #: adminimize_page.php:939
492
+ #: adminimize_page.php:1060
493
  #@ adminimize
494
  msgid "Possible IDs or classes. Separate multiple values through a carriage return."
495
  msgstr "Mögliche IDs oder Klassen. Trenne Werte durch eine neue Zeile."
496
 
497
  #: adminimize_page.php:151
498
+ #: adminimize_page.php:466
499
  #@ adminimize
500
  msgid "Menu Options"
501
  msgstr "Menu Einstellungen"
502
 
503
+ #: adminimize_page.php:473
504
  #@ adminimize
505
  msgid "Menu options - Menu, <span style=\\\"font-weight: 400;\\\">Submenu</span>"
506
  msgstr "Menu Einstellungen - Menu, <span style=\"font-weight: 400;\">Submenu</span>"
507
 
508
+ #: adminimize_page.php:535
509
+ #: adminimize_page.php:631
510
+ #@ default
511
  msgid "Help"
512
  msgstr ""
513
 
514
+ #: adminimize_page.php:538
515
+ #: adminimize_page.php:634
516
  #@ adminimize
517
  msgid "Permalink"
518
  msgstr "Permalink"
519
 
520
+ #: adminimize_page.php:542
521
  #@ adminimize
522
  msgid "Excerpt"
523
  msgstr "Auszug"
524
 
525
+ #: adminimize_page.php:543
526
  #@ adminimize
527
  msgid "Trackbacks"
528
  msgstr "Trackbacks"
529
 
530
+ #: adminimize_page.php:544
531
+ #: adminimize_page.php:635
532
+ #@ default
533
  msgid "Custom Fields"
534
  msgstr "Benutzerdefinierte Felder"
535
 
536
+ #: adminimize_page.php:546
537
  #@ adminimize
538
  msgid "Password Protect This Post"
539
  msgstr "Diesen Artikel durch ein Passwort sch&uuml;tzen"
540
 
541
+ #: adminimize_page.php:547
542
+ #@ default
543
  msgid "Post Author"
544
  msgstr "Autor"
545
 
546
+ #: adminimize_page.php:548
547
+ #@ default
548
  msgid "Post Revisions"
549
  msgstr "Post Revisions"
550
 
551
+ #: adminimize_page.php:549
552
  #@ adminimize
553
  msgid "Related, Shortcuts"
554
  msgstr "Siehe auch, Tastaturk&uuml;rzel"
555
 
556
+ #: adminimize_page.php:550
557
+ #: adminimize_page.php:644
558
  #@ adminimize
559
  msgid "Messenges"
560
  msgstr "Mitteilungen"
561
 
562
+ #: adminimize_page.php:551
563
+ #: adminimize_page.php:645
564
  #@ adminimize
565
  msgid "h2: Advanced Options"
566
  msgstr "h2: Erweiterte Einstellungen"
567
 
568
+ #: adminimize_page.php:552
569
+ #: adminimize_page.php:646
570
  #@ adminimize
571
  msgid "Media Buttons (all)"
572
  msgstr "Media Buttons (alle)"
573
 
574
+ #: adminimize_page.php:553
575
+ #: adminimize_page.php:647
576
  #@ adminimize
577
  msgid "Word count"
578
  msgstr "Word count"
579
 
580
+ #: adminimize_page.php:554
581
+ #@ default
582
  msgid "Post Slug"
583
  msgstr ""
584
 
585
+ #: adminimize_page.php:555
586
+ #: adminimize_page.php:649
587
+ #: adminimize_page.php:998
588
  #@ adminimize
589
  msgid "Publish Actions"
590
  msgstr "Publish Actions"
591
 
592
+ #: adminimize_page.php:556
593
+ #: adminimize_page.php:650
594
+ #@ default
595
  msgid "Discussion"
596
  msgstr ""
597
 
598
+ #: adminimize_page.php:561
599
+ #@ default
600
  msgid "Post Thumbnail"
601
  msgstr ""
602
 
603
+ #: adminimize_page.php:563
604
+ #: adminimize_page.php:657
605
+ #@ default
606
  #@ adminimize
607
  msgid "Suggested tags from"
608
  msgstr "Suggested tags from"
609
 
610
+ #: adminimize_page.php:565
611
+ #@ default
612
  msgid "Text Control"
613
  msgstr "Text Control"
614
 
615
+ #: adminimize_page.php:567
616
+ #: adminimize_page.php:659
617
+ #@ default
618
  msgid "HTML Special Characters"
619
  msgstr "HTML Special Characters"
620
 
621
+ #: adminimize_page.php:569
622
+ #@ default
623
  msgid "All in One SEO Pack"
624
  msgstr ""
625
 
626
+ #: adminimize_page.php:636
627
  #@ adminimize
628
  msgid "Comments &amp; Pings"
629
  msgstr "Kommentare &amp; Pings"
630
 
631
+ #: adminimize_page.php:637
632
  #@ adminimize
633
  msgid "Password Protect This Page"
634
  msgstr "Diese Seite mit einem Passwort versehen"
635
 
636
+ #: adminimize_page.php:638
637
+ #@ default
638
  msgid "Attributes"
639
  msgstr ""
640
 
641
+ #: adminimize_page.php:639
642
  #@ adminimize
643
  msgid "Page Template"
644
  msgstr "Seiten Template"
645
 
646
+ #: adminimize_page.php:640
647
  #@ adminimize
648
  msgid "Page Order"
649
  msgstr "Reihenfolge"
650
 
651
+ #: adminimize_page.php:641
652
+ #@ default
653
  msgid "Page Author"
654
  msgstr "Seitenautor"
655
 
656
+ #: adminimize_page.php:642
657
+ #@ default
658
  msgid "Page Revisions"
659
  msgstr "Page Revisions"
660
 
661
+ #: adminimize_page.php:643
662
  #@ adminimize
663
  msgid "Related"
664
  msgstr "Siehe auch"
665
 
666
+ #: adminimize_page.php:648
667
+ #@ default
668
  msgid "Page Slug"
669
  msgstr ""
670
 
671
+ #: adminimize_page.php:655
672
+ #@ default
673
  msgid "Page Image"
674
  msgstr ""
675
 
676
+ #: adminimize_page.php:697
677
+ #: adminimize_page.php:745
678
  #@ adminimize
679
  msgid "After activate the check box it heavy attitudes will change."
680
  msgstr "Wenn die Checkbox aktiv ist, dann wird das Ändern von Einstellungen erschwert."
681
 
682
+ #: adminimize_page.php:728
683
+ #@ default
684
  msgid "Profile"
685
  msgstr "Profile"
686
 
687
  #: adminimize_page.php:154
688
+ #: adminimize_page.php:792
689
+ #: adminimize_page.php:799
690
  #@ adminimize
691
  msgid "Write options - Post"
692
  msgstr "Schreiben Einstellungen - Beitr&auml;ge"
693
 
694
+ #: adminimize_page.php:838
695
  #@ adminimize
696
  msgid "Your own post options"
697
  msgstr "Deine eigenen Beitrags-Einstellungen"
698
 
699
  #: adminimize_page.php:157
700
+ #: adminimize_page.php:875
701
+ #: adminimize_page.php:882
702
  #@ adminimize
703
  msgid "Write options - Page"
704
  msgstr "Schreiben Einstellungen - Seiten"
705
 
706
+ #: adminimize_page.php:921
707
  #@ adminimize
708
  msgid "Your own page options"
709
  msgstr "Deine eigenen Seiten-Einstellungen"
710
 
711
  #: adminimize_page.php:160
712
+ #: adminimize_page.php:958
713
  #@ adminimize
714
  msgid "Links options"
715
  msgstr "Link Einstellungen"
716
 
717
+ #: adminimize_page.php:991
718
+ #@ default
719
  msgid "Name"
720
  msgstr "Name"
721
 
722
+ #: adminimize_page.php:992
723
+ #@ default
724
  msgid "Web Address"
725
  msgstr "Web-Adresse"
726
 
727
+ #: adminimize_page.php:993
728
+ #@ default
729
  msgid "Description"
730
  msgstr "Beschreibung"
731
 
732
+ #: adminimize_page.php:995
733
+ #@ default
734
  msgid "Target"
735
  msgstr "Target"
736
 
737
+ #: adminimize_page.php:996
738
+ #@ default
739
  msgid "Link Relationship (XFN)"
740
  msgstr "Link-Beziehungen (XFN)"
741
 
742
+ #: adminimize_page.php:997
743
+ #@ default
744
  msgid "Advanced"
745
  msgstr "Erweitert"
746
 
747
  #: adminimize_page.php:163
748
+ #: adminimize_page.php:1080
749
+ #: adminimize_page.php:1165
750
  #@ adminimize
751
  msgid "Set Theme"
752
  msgstr "Theme zuweisen"
753
 
754
+ #: adminimize_page.php:1087
755
  #@ adminimize
756
  msgid "For better peformance with many users on your blog; load only userlist, when you will change the theme options for users."
757
  msgstr "Für eine bessere Performance bei vielen Usern in deinem Blog werden die Userdaten nur nach Aufforderung geladen."
758
 
759
+ #: adminimize_page.php:1090
760
  #@ adminimize
761
  msgid "Load User Data"
762
  msgstr "Lade User Daten"
763
 
764
+ #: adminimize_page.php:1101
765
+ #@ default
766
  msgid "User-ID"
767
  msgstr "User-ID"
768
 
769
+ #: adminimize_page.php:1102
770
+ #@ default
771
  msgid "Username"
772
  msgstr "Benutzername"
773
 
774
+ #: adminimize_page.php:1103
775
+ #@ default
776
  msgid "Display name publicly as"
777
  msgstr "Name im Blog"
778
 
779
+ #: adminimize_page.php:1104
780
+ #@ default
781
  msgid "Admin-Color Scheme"
782
  msgstr "Admin-Color Scheme"
783
 
784
+ #: adminimize_page.php:1105
785
+ #@ default
786
  msgid "User Level"
787
  msgstr "User Level"
788
 
789
+ #: adminimize_page.php:1106
790
+ #@ default
791
  msgid "Role"
792
  msgstr "Rolle"
793
 
794
  #: adminimize_page.php:169
795
+ #: adminimize_page.php:1213
796
  #@ adminimize
797
  msgid "Deinstall Options"
798
  msgstr "Einstellungen deinstallieren"
799
 
800
+ #: adminimize_page.php:1216
801
  #@ adminimize
802
  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."
803
  msgstr "Nutze diese Option, um die Einstellungen f&uuml;r das Plugin in der Datenbank zu l&ouml;schen. Das Plugin entfernt die Eintr&auml;ge <strong>nicht</strong>, wenn es deaktiviert wird!"
804
 
805
+ #: adminimize_page.php:1220
806
  #@ adminimize
807
  msgid "Delete Options"
808
  msgstr "Einstellungen Löschen"
809
 
810
  #: adminimize_page.php:116
811
  #: adminimize_page.php:172
812
+ #: adminimize_page.php:1234
813
  #@ adminimize
814
  msgid "About the plugin"
815
  msgstr "&Uuml;ber das Plugin"
816
 
817
  #: adminimize_page.php:118
818
+ #: adminimize_page.php:1237
819
  #@ adminimize
820
  msgid "Further information: Visit the <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
821
  msgstr "Weitere Information: Besuche die <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">Plugin Webseite</a> f&uuml;r weitere Informationen oder hole die aktuelle Version des Plugins."
822
 
823
  #: adminimize_page.php:124
824
+ #: adminimize_page.php:1243
825
  #@ adminimize
826
  msgid "PayPal - The safer, easier way to pay online!"
827
  msgstr "PayPal - Der sichere und einfache Weg zu zahlen!"
828
 
829
  #: adminimize_page.php:128
830
+ #: adminimize_page.php:1247
831
  #@ adminimize
832
  msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a> or donate."
833
  msgstr "Du willst Danke sagen? Besuche meine <a href=\"http://bueltge.de/wunschliste/\">Wunschliste</a> oder spende."
834
 
835
+ #: adminimize.php:102
836
  #@ adminimize
837
  msgid "All entries in the database were imported."
838
  msgstr "Alle Einträge wurden in die Datenbank geschrieben."
839
 
840
  #: adminimize_page.php:166
841
+ #: adminimize_page.php:1178
842
  #@ adminimize
843
  msgid "Export/Import Options"
844
  msgstr "Export/Import Einstellungen"
845
 
846
+ #: adminimize_page.php:1182
847
  #@ adminimize
848
  msgid "Export"
849
  msgstr "Export"
850
 
851
+ #: adminimize_page.php:1187
852
  #@ adminimize
853
  msgid "Export &raquo;"
854
  msgstr "Exportieren &raquo;"
855
 
856
+ #: adminimize_page.php:1191
857
  #@ adminimize
858
  msgid "Import"
859
  msgstr "Import"
860
 
861
+ #: adminimize_page.php:1196
862
  #@ adminimize
863
  msgid "Choose a file from your computer"
864
  msgstr "Wähle eine Datei vom Rechner"
865
 
866
+ #: adminimize_page.php:1201
867
  #@ adminimize
868
  msgid "Upload file and import &raquo;"
869
  msgstr "Hochladen der Datei und importieren &raquo;"
873
  msgid "MiniMenu"
874
  msgstr "MiniMenu"
875
 
876
+ #: adminimize_page.php:342
877
+ #: adminimize_page.php:457
878
+ #: adminimize_page.php:783
879
+ #: adminimize_page.php:866
880
+ #: adminimize_page.php:949
881
+ #: adminimize_page.php:1071
882
+ #: adminimize_page.php:1170
883
+ #: adminimize_page.php:1204
884
+ #: adminimize_page.php:1225
885
+ #: adminimize_page.php:1251
886
  #@ adminimize
887
  msgid "scroll to top"
888
  msgstr "Nach oben"
889
 
890
+ #: adminimize_page.php:1184
891
  #@ adminimize
892
  msgid "You can save a .seq file with your options."
893
  msgstr "Du kannst deine Einstellungen in einer .seq Datei speichern."
894
 
895
+ #: adminimize_page.php:1194
896
  #@ adminimize
897
  msgid "Choose a Adminimize (<em>.seq</em>) file to upload, then click <em>Upload file and import</em>."
898
  msgstr "Wähle eine Adminimize (<em>.seq</em>) Datei zum hoch laden und dann klick <em>Hochladen der Datei und importieren</em>"
899
 
900
+ #: adminimize_page.php:279
901
  #@ adminimize
902
  msgid "Category Height"
903
  msgstr "Kategorie-Höhe"
904
 
905
+ #: adminimize_page.php:285
906
  #@ adminimize
907
  msgid "View the Meta Box with Categories in the full height, no scrollbar or whitespace."
908
  msgstr "Stellt in die Meta Box der Kategorien in voller Höhe dar, kein Scrollbar und kein Leerraum."
909
 
910
+ #: adminimize_page.php:296
911
  #@ adminimize
912
  msgid "In the Footer you can display an advice for changing the Default-design, (x)HTML is possible."
913
  msgstr "Im Footer kann ein Hinweis auf die aktive Ver&auml;nderung des Standard-Layout gesetzt werden, (x)HTML erlaubt."
914
 
915
+ #: adminimize_page.php:318
916
  #@ adminimize
917
  msgid "Dashboard deactivate, redirect to"
918
  msgstr "Dashboard inaktiv, Weiterleitung nach"
919
 
920
+ #: adminimize_page.php:331
921
  #@ adminimize
922
  msgid "You have deactivated the Dashboard, please select a page for redirection?"
923
  msgstr "Du hast das Dashboard deaktiviert, wohin soll der Nutzer weitergeleitet werden?"
924
 
925
+ #: adminimize_page.php:557
926
+ #: adminimize_page.php:651
927
+ #@ default
928
  msgid "HTML Editor Button"
929
  msgstr ""
930
 
931
+ #: adminimize_page.php:265
932
  #@ adminimize
933
  msgid "All Thickbox-function use the full area of the browser. Thickbox is for example in upload media-files."
934
  msgstr "Alle Thickbox-Funktion verwenden den vollständigen Bereich des Browsers. Thickbox ist beispielsweise in der Medien-Upload-Funktion."
935
 
936
+ #. translators: plugin header field 'PluginURI'
937
+ #: adminimize.php:0
938
+ #@ adminimize
939
+ msgid "http://bueltge.de/wordpress-admin-theme-adminimize/674/"
940
+ msgstr ""
941
+
942
+ #. translators: plugin header field 'Description'
943
+ #: adminimize.php:0
944
+ #@ adminimize
945
+ 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."
946
+ msgstr "Visuelles Reduzieren der administrativen Meta-Boxen, so dass mehr Raum ist und nur dargestellt, was gebraucht wird. Das Plugin erlaubt das ausblenden von ungenutzten Bereich vom WordPress Administrations-Bereich und dem Menu für alle vorhandenen Rollen. Es ist ebenso möglich, dass man Bereiche in Teilbereichen ausblenden und eigene Bereiche ausblenden kann. Kurz: Reduzieren den Admin-Bereich für das, was die jeweilige Rolle benötigt."
947
+
948
+ #. translators: plugin header field 'Author'
949
+ #: adminimize.php:0
950
+ #@ adminimize
951
+ msgid "Frank B&uuml;ltge"
952
+ msgstr ""
953
+
954
+ #. translators: plugin header field 'AuthorURI'
955
+ #: adminimize.php:0
956
+ #@ adminimize
957
+ msgid "http://bueltge.de/"
958
+ msgstr ""
959
+
960
+ #. translators: plugin header field 'Version'
961
+ #: adminimize.php:0
962
+ #@ adminimize
963
+ msgid "1.7.10"
964
+ msgstr ""
965
+
966
+ #: adminimize_page.php:229
967
+ #@ adminimize
968
+ msgid "Header"
969
+ msgstr "Header"
970
+
971
+ #: adminimize_page.php:235
972
+ #@ adminimize
973
+ msgid "The Header-area can hide, include all links and details."
974
+ msgstr "Der header-Bereich kann ausgeblendet werden, inkl. aller Links und Details."
975
+
976
+ #: adminimize_page.php:537
977
+ #: adminimize_page.php:633
978
+ #@ adminimize
979
+ msgid "Title"
980
+ msgstr ""
981
+
languages/adminimize-xx_XX.pot CHANGED
@@ -13,217 +13,242 @@ msgstr ""
13
  "X-Poedit-Language: \n"
14
  "X-Poedit-Country: \n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
- "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;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
  "X-Poedit-Basepath: ../\n"
18
  "X-Poedit-Bookmarks: \n"
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
- #: adminimize.php:91
23
  #@ adminimize
24
  msgid "Unknown error."
25
- msgstr ""
26
 
27
- #: adminimize.php:98
28
  #@ adminimize
29
  msgid "The updates were saved."
30
- msgstr ""
31
 
32
- #: adminimize.php:99
33
  #@ adminimize
34
  msgid "You have not enough rights to edit entries in the database."
35
- msgstr ""
36
 
37
- #: adminimize.php:101
38
  #@ adminimize
39
  msgid "All entries in the database were deleted."
40
- msgstr ""
41
 
42
- #: adminimize.php:102
43
  #@ adminimize
44
  msgid "Set the checkbox on deinstall-button."
45
- msgstr ""
46
 
47
- #: adminimize.php:103
48
  #@ adminimize
49
  msgid "Can't load menu and submenu."
50
- msgstr ""
51
 
52
- #: adminimize.php:104
53
  #@ adminimize
54
  msgid "Backend-Theme was activated!"
55
- msgstr ""
56
 
57
- #: adminimize.php:105
58
  #@ adminimize
59
  msgid "Load user data to themes was successful."
60
- msgstr ""
61
 
62
- #: adminimize.php:372
63
- #: adminimize_page.php:528
64
- #: adminimize_page.php:980
 
65
  #@ adminimize
66
  msgid "Categories"
67
- msgstr ""
68
 
69
- #: adminimize.php:378
70
- #: adminimize.php:389
 
71
  msgid "+ Add New Category"
72
- msgstr ""
73
 
74
- #: adminimize.php:380
75
- #: adminimize.php:391
 
76
  msgid "New category name"
77
- msgstr ""
78
 
79
- #: adminimize.php:381
80
- #: adminimize.php:393
 
81
  msgid "Parent category"
82
- msgstr ""
83
 
84
- #: adminimize.php:382
85
- #: adminimize.php:394
 
86
  msgid "Add"
87
- msgstr ""
88
 
89
- #: adminimize.php:391
90
- #: adminimize_page.php:529
 
91
  #@ adminimize
92
  msgid "Add New Category"
93
- msgstr ""
94
 
95
- #: adminimize.php:415
96
- #: adminimize.php:416
97
- #: adminimize_page.php:527
 
98
  #@ adminimize
99
  msgid "Tags"
100
- msgstr ""
101
 
102
- #: adminimize.php:456
103
- #: adminimize.php:470
104
- #: adminimize.php:484
 
105
  msgid "Blue"
106
- msgstr ""
107
 
108
- #: adminimize.php:463
109
- #: adminimize.php:477
110
- #: adminimize.php:491
 
111
  msgid "Gray"
112
- msgstr ""
113
 
114
- #: adminimize.php:499
115
- #: adminimize.php:541
116
- #: adminimize.php:564
 
117
  msgid "Classic"
118
- msgstr ""
119
 
120
- #: adminimize.php:506
121
- #: adminimize.php:548
122
- #: adminimize.php:571
 
123
  msgid "Fresh"
124
- msgstr ""
125
 
126
- #: adminimize.php:513
 
127
  msgid "WordPress 2.3"
128
- msgstr ""
129
 
130
- #: adminimize.php:520
 
131
  msgid "Maybe i'm colorblind"
132
- msgstr ""
133
 
134
- #: adminimize.php:527
 
135
  msgid "Grey"
136
- msgstr ""
137
 
138
- #: adminimize.php:655
139
- #: adminimize.php:658
 
140
  msgid "Dashboard"
141
- msgstr ""
142
-
143
- #: adminimize.php:713
144
- #: adminimize.php:715
145
- #: adminimize.php:728
146
- #: adminimize.php:730
147
- #: adminimize.php:921
 
148
  msgid "Log Out"
149
- msgstr ""
150
 
151
- #: adminimize.php:940
 
152
  msgid "Visit plugin homepage"
153
- msgstr ""
154
 
155
- #: adminimize.php:943
 
156
  msgid "plugin"
157
- msgstr ""
158
 
159
- #: adminimize.php:943
 
160
  msgid "Version"
161
- msgstr ""
162
 
163
- #: adminimize.php:943
164
  #@ adminimize
165
  msgid "History"
166
- msgstr ""
167
 
168
- #: adminimize.php:943
 
169
  msgid "Author"
170
- msgstr ""
171
 
172
- #: adminimize.php:946
173
  #@ adminimize
174
  msgid "plugin activate"
175
- msgstr ""
176
 
177
- #: adminimize.php:966
 
178
  msgid "Settings"
179
- msgstr ""
180
 
181
- #: adminimize.php:1027
182
- #: adminimize.php:1048
183
  #@ adminimize
184
  msgid "<a href=\"http://wordpress.org/extend/plugins/adminimize/\">Documentation</a>"
185
- msgstr ""http://bueltge.de/wordpress-admin-theme-adminimize/674/\">Dokumentation</a> (<a href=\"http://wordpress.org/extend/plugins/adminimize/\">en</a>)"
186
 
187
- #: adminimize.php:1044
 
 
188
  #: adminimize_page.php:109
189
  #@ adminimize
190
  msgid "Adminimize"
191
- msgstr ""
192
 
193
- #: adminimize.php:1046
194
  #@ adminimize
195
  msgid "Adminimize Options"
196
- msgstr ""
197
 
198
- #: adminimize.php:1063
 
199
  msgid "Cheatin&#8217; uh?"
200
- msgstr ""
201
 
202
  #: adminimize_page.php:115
203
  #: adminimize_page.php:140
204
  #: adminimize_page.php:186
205
- #: adminimize_page.php:340
206
- #: adminimize_page.php:455
207
- #: adminimize_page.php:777
208
- #: adminimize_page.php:860
209
- #: adminimize_page.php:943
210
- #: adminimize_page.php:1065
211
- #: adminimize_page.php:1163
212
- #: adminimize_page.php:1198
213
- #: adminimize_page.php:1219
 
214
  msgid "Click to toggle"
215
- msgstr ""
216
 
217
  #: adminimize_page.php:145
218
  #: adminimize_page.php:187
219
  #@ adminimize
220
  msgid "Backend Options"
221
- msgstr ""
222
 
223
  #: adminimize_page.php:196
224
  #@ adminimize
225
  msgid "User-Info"
226
- msgstr ""
227
 
228
  #: adminimize_page.php:200
229
  #: adminimize_page.php:213
@@ -234,644 +259,723 @@ msgstr ""
234
  #: adminimize_page.php:263
235
  #: adminimize_page.php:273
236
  #: adminimize_page.php:283
237
- #: adminimize_page.php:312
 
238
  #@ adminimize
239
  msgid "Default"
240
- msgstr ""
241
 
242
  #: adminimize_page.php:201
243
  #: adminimize_page.php:224
 
244
  #@ adminimize
245
  msgid "Hide"
246
- msgstr ""
247
 
248
  #: adminimize_page.php:202
249
  #@ adminimize
250
  msgid "Only logout"
251
- msgstr ""
252
 
253
  #: adminimize_page.php:203
254
  #@ adminimize
255
  msgid "User &amp; Logout"
256
- msgstr ""
257
 
258
  #: adminimize_page.php:204
259
  #@ adminimize
260
  msgid "The &quot;User-Info-area&quot; is on the top right side of the backend. You can hide or reduced show."
261
- msgstr ""
262
 
263
  #: adminimize_page.php:209
264
  #@ adminimize
265
  msgid "Change User-Info, redirect to"
266
- msgstr ""
267
 
268
  #: adminimize_page.php:214
269
  #@ adminimize
270
  msgid "Frontpage of the Blog"
271
- msgstr ""
272
 
273
  #: adminimize_page.php:215
274
  #@ adminimize
275
  msgid "When the &quot;User-Info-area&quot; change it, then it is possible to change the redirect."
276
- msgstr ""
277
 
278
  #: adminimize_page.php:219
279
  #@ adminimize
280
  msgid "Footer"
281
- msgstr ""
282
 
283
  #: adminimize_page.php:225
284
  #@ adminimize
285
  msgid "The Footer-area can hide, include all links and details."
286
- msgstr ""
287
 
288
- #: adminimize_page.php:229
289
  #@ adminimize
290
  msgid "WriteScroll"
291
- msgstr ""
292
 
293
- #: adminimize_page.php:234
294
  #: adminimize_page.php:244
295
  #: adminimize_page.php:254
296
  #: adminimize_page.php:264
297
  #: adminimize_page.php:274
298
  #: adminimize_page.php:284
 
299
  #@ adminimize
300
  msgid "Activate"
301
- msgstr ""
302
 
303
- #: adminimize_page.php:235
304
  #@ adminimize
305
  msgid "With the WriteScroll option active, these pages will automatically scroll to an optimal position for editing, when you visit Write Post or Write Page."
306
- msgstr ""
307
 
308
- #: adminimize_page.php:239
309
  #@ adminimize
310
  msgid "Timestamp"
311
- msgstr ""
312
 
313
- #: adminimize_page.php:245
314
  #@ adminimize
315
  msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
316
- msgstr ""
317
 
318
- #: adminimize_page.php:249
319
  #@ adminimize
320
  msgid "Thickbox FullScreen"
321
- msgstr ""
322
 
323
- #: adminimize_page.php:259
324
  #@ adminimize
325
  msgid "Flashuploader"
326
- msgstr ""
327
 
328
- #: adminimize_page.php:265
329
  #@ adminimize
330
  msgid "Disable the flashuploader and users use only the standard uploader."
331
- msgstr ""
332
 
333
- #: adminimize_page.php:279
334
  #@ adminimize
335
  msgid "Advice in Footer"
336
- msgstr ""
337
 
338
- #: adminimize_page.php:313
339
  #@ adminimize
340
  msgid "Manage Posts"
341
- msgstr ""
342
 
343
- #: adminimize_page.php:314
344
  #@ adminimize
345
  msgid "Manage Pages"
346
- msgstr ""
347
 
348
- #: adminimize_page.php:315
349
  #@ adminimize
350
  msgid "Write Post"
351
- msgstr ""
352
 
353
- #: adminimize_page.php:316
354
  #@ adminimize
355
  msgid "Write Page"
356
- msgstr ""
357
 
358
- #: adminimize_page.php:317
359
- #: adminimize_page.php:533
360
  #@ adminimize
361
  msgid "Comments"
362
- msgstr ""
363
 
364
- #: adminimize_page.php:318
365
  #@ adminimize
366
  msgid "other Page"
367
- msgstr ""
368
 
369
- #: adminimize_page.php:330
370
- #: adminimize_page.php:445
371
- #: adminimize_page.php:767
372
- #: adminimize_page.php:850
373
- #: adminimize_page.php:933
374
- #: adminimize_page.php:1054
375
  #@ adminimize
376
  msgid "Update Options"
377
- msgstr ""
378
 
379
  #: adminimize_page.php:148
380
- #: adminimize_page.php:341
381
  #@ adminimize
382
  msgid "Global options"
383
- msgstr ""
384
 
385
- #: adminimize_page.php:348
386
- #: adminimize_page.php:420
387
- #: adminimize_page.php:825
388
- #: adminimize_page.php:908
389
- #: adminimize_page.php:951
390
- #: adminimize_page.php:1029
391
  #@ adminimize
392
  msgid "Option"
393
- msgstr ""
394
 
395
- #: adminimize_page.php:351
396
- #: adminimize_page.php:466
397
- #: adminimize_page.php:788
398
- #: adminimize_page.php:871
399
- #: adminimize_page.php:954
400
  #@ adminimize
401
  msgid "Deactivate for"
402
- msgstr ""
403
 
404
- #: adminimize_page.php:371
405
  #@ adminimize
406
  msgid "Favorite Actions"
407
- msgstr ""
408
 
409
- #: adminimize_page.php:372
410
  #@ adminimize
411
  msgid "Screen-Meta"
412
- msgstr ""
413
 
414
- #: adminimize_page.php:373
415
- #: adminimize_page.php:525
416
- #: adminimize_page.php:619
417
  #@ adminimize
 
418
  msgid "Screen Options"
419
- msgstr ""
420
 
421
- #: adminimize_page.php:374
422
  #@ adminimize
423
  msgid "Contextual Help"
424
- msgstr ""
425
 
426
- #: adminimize_page.php:375
427
  #@ adminimize
428
  msgid "Admin Color Scheme"
429
- msgstr ""
430
 
431
- #: adminimize_page.php:419
432
- #: adminimize_page.php:1028
433
  #@ adminimize
434
  msgid "Your own options"
435
- msgstr ""
436
 
437
- #: adminimize_page.php:419
438
- #: adminimize_page.php:824
439
- #: adminimize_page.php:907
440
- #: adminimize_page.php:1028
441
  #@ adminimize
442
  msgid "ID or class"
443
- msgstr ""
444
 
445
- #: adminimize_page.php:426
446
- #: adminimize_page.php:831
447
- #: adminimize_page.php:914
448
- #: adminimize_page.php:1035
449
  #@ adminimize
450
  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."
451
- msgstr ""
452
 
453
- #: adminimize_page.php:432
454
- #: adminimize_page.php:837
455
- #: adminimize_page.php:920
456
- #: adminimize_page.php:1041
457
  #@ adminimize
458
  msgid "Possible nomination for ID or class. Separate multiple nominations through a carriage return."
459
- msgstr ""
460
 
461
- #: adminimize_page.php:437
462
- #: adminimize_page.php:842
463
- #: adminimize_page.php:925
464
- #: adminimize_page.php:1046
465
  #@ adminimize
466
  msgid "Possible IDs or classes. Separate multiple values through a carriage return."
467
- msgstr ""
468
 
469
  #: adminimize_page.php:151
470
- #: adminimize_page.php:456
471
  #@ adminimize
472
  msgid "Menu Options"
473
- msgstr ""
474
 
475
- #: adminimize_page.php:463
476
  #@ adminimize
477
  msgid "Menu options - Menu, <span style=\\\"font-weight: 400;\\\">Submenu</span>"
478
- msgstr ""font-weight: 400;\">Submenu</span>"
479
 
480
- #: adminimize_page.php:524
481
- #: adminimize_page.php:618
 
482
  msgid "Help"
483
  msgstr ""
484
 
485
- #: adminimize_page.php:526
486
- #: adminimize_page.php:620
487
  #@ adminimize
488
  msgid "Permalink"
489
- msgstr ""
490
 
491
- #: adminimize_page.php:530
492
  #@ adminimize
493
  msgid "Excerpt"
494
- msgstr ""
495
 
496
- #: adminimize_page.php:531
497
  #@ adminimize
498
  msgid "Trackbacks"
499
- msgstr ""
500
 
501
- #: adminimize_page.php:532
502
- #: adminimize_page.php:621
 
503
  msgid "Custom Fields"
504
- msgstr ""
505
 
506
- #: adminimize_page.php:534
507
  #@ adminimize
508
  msgid "Password Protect This Post"
509
- msgstr ""
510
 
511
- #: adminimize_page.php:535
 
512
  msgid "Post Author"
513
- msgstr ""
514
 
515
- #: adminimize_page.php:536
 
516
  msgid "Post Revisions"
517
- msgstr ""
518
 
519
- #: adminimize_page.php:537
520
  #@ adminimize
521
  msgid "Related, Shortcuts"
522
- msgstr ""
523
 
524
- #: adminimize_page.php:538
525
- #: adminimize_page.php:630
526
  #@ adminimize
527
  msgid "Messenges"
528
- msgstr ""
529
 
530
- #: adminimize_page.php:539
531
- #: adminimize_page.php:631
532
  #@ adminimize
533
  msgid "h2: Advanced Options"
534
- msgstr ""
535
 
536
- #: adminimize_page.php:540
537
- #: adminimize_page.php:632
538
  #@ adminimize
539
  msgid "Media Buttons (all)"
540
- msgstr ""
541
 
542
- #: adminimize_page.php:541
543
- #: adminimize_page.php:633
544
  #@ adminimize
545
  msgid "Word count"
546
- msgstr ""
547
 
548
- #: adminimize_page.php:542
 
549
  msgid "Post Slug"
550
  msgstr ""
551
 
552
- #: adminimize_page.php:543
553
- #: adminimize_page.php:635
554
- #: adminimize_page.php:984
555
  #@ adminimize
556
  msgid "Publish Actions"
557
- msgstr ""
558
 
559
- #: adminimize_page.php:544
560
- #: adminimize_page.php:636
 
561
  msgid "Discussion"
562
  msgstr ""
563
 
564
- #: adminimize_page.php:549
 
565
  msgid "Post Thumbnail"
566
  msgstr ""
567
 
568
- #: adminimize_page.php:551
569
- #: adminimize_page.php:643
 
570
  #@ adminimize
571
  msgid "Suggested tags from"
572
- msgstr ""
573
 
574
- #: adminimize_page.php:553
 
575
  msgid "Text Control"
576
- msgstr ""
577
 
578
- #: adminimize_page.php:555
579
- #: adminimize_page.php:645
 
580
  msgid "HTML Special Characters"
581
- msgstr ""
582
 
583
- #: adminimize_page.php:557
 
584
  msgid "All in One SEO Pack"
585
  msgstr ""
586
 
587
- #: adminimize_page.php:622
588
  #@ adminimize
589
  msgid "Comments &amp; Pings"
590
- msgstr ""
591
 
592
- #: adminimize_page.php:623
593
  #@ adminimize
594
  msgid "Password Protect This Page"
595
- msgstr ""
596
 
597
- #: adminimize_page.php:624
 
598
  msgid "Attributes"
599
  msgstr ""
600
 
601
- #: adminimize_page.php:625
602
  #@ adminimize
603
  msgid "Page Template"
604
- msgstr ""
605
 
606
- #: adminimize_page.php:626
607
  #@ adminimize
608
  msgid "Page Order"
609
- msgstr ""
610
 
611
- #: adminimize_page.php:627
 
612
  msgid "Page Author"
613
- msgstr ""
614
 
615
- #: adminimize_page.php:628
 
616
  msgid "Page Revisions"
617
- msgstr ""
618
 
619
- #: adminimize_page.php:629
620
  #@ adminimize
621
  msgid "Related"
622
- msgstr ""
623
 
624
- #: adminimize_page.php:634
 
625
  msgid "Page Slug"
626
  msgstr ""
627
 
628
- #: adminimize_page.php:641
 
629
  msgid "Page Image"
630
  msgstr ""
631
 
632
- #: adminimize_page.php:683
633
- #: adminimize_page.php:731
634
  #@ adminimize
635
  msgid "After activate the check box it heavy attitudes will change."
636
- msgstr ""
637
 
638
- #: adminimize_page.php:714
 
639
  msgid "Profile"
640
- msgstr ""
641
 
642
  #: adminimize_page.php:154
643
- #: adminimize_page.php:778
644
- #: adminimize_page.php:785
645
  #@ adminimize
646
  msgid "Write options - Post"
647
- msgstr ""
648
 
649
- #: adminimize_page.php:824
650
  #@ adminimize
651
  msgid "Your own post options"
652
- msgstr ""
653
 
654
  #: adminimize_page.php:157
655
- #: adminimize_page.php:861
656
- #: adminimize_page.php:868
657
  #@ adminimize
658
  msgid "Write options - Page"
659
- msgstr ""
660
 
661
- #: adminimize_page.php:907
662
  #@ adminimize
663
  msgid "Your own page options"
664
- msgstr ""
665
 
666
  #: adminimize_page.php:160
667
- #: adminimize_page.php:944
668
  #@ adminimize
669
  msgid "Links options"
670
- msgstr ""
671
 
672
- #: adminimize_page.php:977
 
673
  msgid "Name"
674
- msgstr ""
675
 
676
- #: adminimize_page.php:978
 
677
  msgid "Web Address"
678
- msgstr ""
679
 
680
- #: adminimize_page.php:979
 
681
  msgid "Description"
682
- msgstr ""
683
 
684
- #: adminimize_page.php:981
 
685
  msgid "Target"
686
- msgstr ""
687
 
688
- #: adminimize_page.php:982
 
689
  msgid "Link Relationship (XFN)"
690
- msgstr ""
691
 
692
- #: adminimize_page.php:983
 
693
  msgid "Advanced"
694
- msgstr ""
695
 
696
  #: adminimize_page.php:163
697
- #: adminimize_page.php:1066
698
- #: adminimize_page.php:1151
699
  #@ adminimize
700
  msgid "Set Theme"
701
- msgstr ""
702
 
703
- #: adminimize_page.php:1073
704
  #@ adminimize
705
  msgid "For better peformance with many users on your blog; load only userlist, when you will change the theme options for users."
706
- msgstr ""
707
 
708
- #: adminimize_page.php:1076
709
  #@ adminimize
710
  msgid "Load User Data"
711
- msgstr ""
712
 
713
- #: adminimize_page.php:1087
 
714
  msgid "User-ID"
715
- msgstr ""
716
 
717
- #: adminimize_page.php:1088
 
718
  msgid "Username"
719
- msgstr ""
720
 
721
- #: adminimize_page.php:1089
 
722
  msgid "Display name publicly as"
723
- msgstr ""
724
 
725
- #: adminimize_page.php:1090
 
726
  msgid "Admin-Color Scheme"
727
- msgstr ""
728
 
729
- #: adminimize_page.php:1091
 
730
  msgid "User Level"
731
- msgstr ""
732
 
733
- #: adminimize_page.php:1092
 
734
  msgid "Role"
735
- msgstr ""
736
 
737
  #: adminimize_page.php:169
738
- #: adminimize_page.php:1199
739
  #@ adminimize
740
  msgid "Deinstall Options"
741
- msgstr ""
742
 
743
- #: adminimize_page.php:1202
744
  #@ adminimize
745
  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."
746
- msgstr ""
747
 
748
- #: adminimize_page.php:1206
749
  #@ adminimize
750
  msgid "Delete Options"
751
- msgstr ""
752
 
753
  #: adminimize_page.php:116
754
  #: adminimize_page.php:172
755
- #: adminimize_page.php:1220
756
  #@ adminimize
757
  msgid "About the plugin"
758
- msgstr ""
759
 
760
  #: adminimize_page.php:118
761
- #: adminimize_page.php:1223
762
  #@ adminimize
763
  msgid "Further information: Visit the <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
764
- msgstr ""http://bueltge.de/wordpress-admin-theme-adminimize/674/\">Plugin Webseite</a> f&uuml;r weitere Informationen oder hole die aktuelle Version des Plugins."
765
 
766
  #: adminimize_page.php:124
767
- #: adminimize_page.php:1229
768
  #@ adminimize
769
  msgid "PayPal - The safer, easier way to pay online!"
770
- msgstr ""
771
 
772
  #: adminimize_page.php:128
773
- #: adminimize_page.php:1233
774
  #@ adminimize
775
  msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a> or donate."
776
- msgstr ""http://bueltge.de/wunschliste/\">Wunschliste</a> oder spende."
777
 
778
- #: adminimize.php:100
779
  #@ adminimize
780
  msgid "All entries in the database were imported."
781
- msgstr ""
782
 
783
  #: adminimize_page.php:166
784
- #: adminimize_page.php:1164
785
  #@ adminimize
786
  msgid "Export/Import Options"
787
- msgstr ""
788
 
789
- #: adminimize_page.php:1168
790
  #@ adminimize
791
  msgid "Export"
792
- msgstr ""
793
 
794
- #: adminimize_page.php:1173
795
  #@ adminimize
796
  msgid "Export &raquo;"
797
- msgstr ""
798
 
799
- #: adminimize_page.php:1177
800
  #@ adminimize
801
  msgid "Import"
802
- msgstr ""
803
 
804
- #: adminimize_page.php:1182
805
  #@ adminimize
806
  msgid "Choose a file from your computer"
807
- msgstr ""
808
 
809
- #: adminimize_page.php:1187
810
  #@ adminimize
811
  msgid "Upload file and import &raquo;"
812
- msgstr ""
813
 
814
  #: adminimize_page.php:141
815
  #@ adminimize
816
  msgid "MiniMenu"
817
- msgstr ""
818
-
819
- #: adminimize_page.php:332
820
- #: adminimize_page.php:447
821
- #: adminimize_page.php:769
822
- #: adminimize_page.php:852
823
- #: adminimize_page.php:935
824
- #: adminimize_page.php:1057
825
- #: adminimize_page.php:1156
826
- #: adminimize_page.php:1190
827
- #: adminimize_page.php:1211
828
- #: adminimize_page.php:1237
829
  #@ adminimize
830
  msgid "scroll to top"
831
- msgstr ""
832
 
833
- #: adminimize_page.php:1170
834
  #@ adminimize
835
  msgid "You can save a .seq file with your options."
836
- msgstr ""
837
 
838
- #: adminimize_page.php:1180
839
  #@ adminimize
840
  msgid "Choose a Adminimize (<em>.seq</em>) file to upload, then click <em>Upload file and import</em>."
841
- msgstr ""
842
 
843
- #: adminimize_page.php:269
844
  #@ adminimize
845
  msgid "Category Height"
846
- msgstr ""
847
 
848
- #: adminimize_page.php:275
849
  #@ adminimize
850
  msgid "View the Meta Box with Categories in the full height, no scrollbar or whitespace."
851
- msgstr ""
852
 
853
- #: adminimize_page.php:286
854
  #@ adminimize
855
  msgid "In the Footer you can display an advice for changing the Default-design, (x)HTML is possible."
856
- msgstr ""
857
 
858
- #: adminimize_page.php:308
859
  #@ adminimize
860
  msgid "Dashboard deactivate, redirect to"
861
- msgstr ""
862
 
863
- #: adminimize_page.php:321
864
  #@ adminimize
865
  msgid "You have deactivated the Dashboard, please select a page for redirection?"
866
- msgstr ""
867
 
868
- #: adminimize_page.php:545
869
- #: adminimize_page.php:637
 
870
  msgid "HTML Editor Button"
871
  msgstr ""
872
 
873
- #: adminimize_page.php:255
874
  #@ adminimize
875
  msgid "All Thickbox-function use the full area of the browser. Thickbox is for example in upload media-files."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
876
  msgstr ""
877
 
13
  "X-Poedit-Language: \n"
14
  "X-Poedit-Country: \n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "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"
17
  "X-Poedit-Basepath: ../\n"
18
  "X-Poedit-Bookmarks: \n"
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
+ #: adminimize.php:93
23
  #@ adminimize
24
  msgid "Unknown error."
25
+ msgstr "Unbekannter Fehler."
26
 
27
+ #: adminimize.php:100
28
  #@ adminimize
29
  msgid "The updates were saved."
30
+ msgstr "Die Einstellungen wurden gespeichert"
31
 
32
+ #: adminimize.php:101
33
  #@ adminimize
34
  msgid "You have not enough rights to edit entries in the database."
35
+ msgstr "Du hast nicht ausreichend Rechte um diese Aktion durchzuf&uuml;hren!"
36
 
37
+ #: adminimize.php:103
38
  #@ adminimize
39
  msgid "All entries in the database were deleted."
40
+ msgstr "Die Einstellungen wurde gel&ouml;scht!"
41
 
42
+ #: adminimize.php:104
43
  #@ adminimize
44
  msgid "Set the checkbox on deinstall-button."
45
+ msgstr "Checkbox setzen, wenn wirklich deinstalliert werden soll!"
46
 
47
+ #: adminimize.php:105
48
  #@ adminimize
49
  msgid "Can't load menu and submenu."
50
+ msgstr "Menu und Submenu k&ouml;nnen nicht geladen werden!"
51
 
52
+ #: adminimize.php:106
53
  #@ adminimize
54
  msgid "Backend-Theme was activated!"
55
+ msgstr "Backend-Theme wurde zugewiesen!"
56
 
57
+ #: adminimize.php:107
58
  #@ adminimize
59
  msgid "Load user data to themes was successful."
60
+ msgstr "Das Laden der User-Daten zum Theme war erfolgreich."
61
 
62
+ #: adminimize.php:423
63
+ #: adminimize_page.php:540
64
+ #: adminimize_page.php:994
65
+ #@ default
66
  #@ adminimize
67
  msgid "Categories"
68
+ msgstr "Kategorien"
69
 
70
+ #: adminimize.php:429
71
+ #: adminimize.php:440
72
+ #@ default
73
  msgid "+ Add New Category"
74
+ msgstr "+ Add New Category"
75
 
76
+ #: adminimize.php:431
77
+ #: adminimize.php:442
78
+ #@ default
79
  msgid "New category name"
80
+ msgstr "New category name"
81
 
82
+ #: adminimize.php:432
83
+ #: adminimize.php:444
84
+ #@ default
85
  msgid "Parent category"
86
+ msgstr "Parent category"
87
 
88
+ #: adminimize.php:433
89
+ #: adminimize.php:445
90
+ #@ default
91
  msgid "Add"
92
+ msgstr "Add"
93
 
94
+ #: adminimize.php:442
95
+ #: adminimize_page.php:541
96
+ #@ default
97
  #@ adminimize
98
  msgid "Add New Category"
99
+ msgstr "Add New Category"
100
 
101
+ #: adminimize.php:466
102
+ #: adminimize.php:467
103
+ #: adminimize_page.php:539
104
+ #@ default
105
  #@ adminimize
106
  msgid "Tags"
107
+ msgstr "Tags"
108
 
109
+ #: adminimize.php:507
110
+ #: adminimize.php:521
111
+ #: adminimize.php:535
112
+ #@ default
113
  msgid "Blue"
114
+ msgstr "Blau"
115
 
116
+ #: adminimize.php:514
117
+ #: adminimize.php:528
118
+ #: adminimize.php:542
119
+ #@ default
120
  msgid "Gray"
121
+ msgstr "Grau"
122
 
123
+ #: adminimize.php:550
124
+ #: adminimize.php:592
125
+ #: adminimize.php:615
126
+ #@ default
127
  msgid "Classic"
128
+ msgstr "Classic"
129
 
130
+ #: adminimize.php:557
131
+ #: adminimize.php:599
132
+ #: adminimize.php:622
133
+ #@ default
134
  msgid "Fresh"
135
+ msgstr "Fresh"
136
 
137
+ #: adminimize.php:564
138
+ #@ default
139
  msgid "WordPress 2.3"
140
+ msgstr "WordPress 2.3"
141
 
142
+ #: adminimize.php:571
143
+ #@ default
144
  msgid "Maybe i'm colorblind"
145
+ msgstr "Maybe i'm colorblind"
146
 
147
+ #: adminimize.php:578
148
+ #@ default
149
  msgid "Grey"
150
+ msgstr "Grey"
151
 
152
+ #: adminimize.php:706
153
+ #: adminimize.php:709
154
+ #@ default
155
  msgid "Dashboard"
156
+ msgstr "Dashboard"
157
+
158
+ #: adminimize.php:764
159
+ #: adminimize.php:766
160
+ #: adminimize.php:779
161
+ #: adminimize.php:781
162
+ #: adminimize.php:972
163
+ #@ default
164
  msgid "Log Out"
165
+ msgstr "Log Out"
166
 
167
+ #: adminimize.php:991
168
+ #@ default
169
  msgid "Visit plugin homepage"
170
+ msgstr "Visit plugin homepage"
171
 
172
+ #: adminimize.php:994
173
+ #@ default
174
  msgid "plugin"
175
+ msgstr "plugin"
176
 
177
+ #: adminimize.php:994
178
+ #@ default
179
  msgid "Version"
180
+ msgstr "Version"
181
 
182
+ #: adminimize.php:994
183
  #@ adminimize
184
  msgid "History"
185
+ msgstr "Historie"
186
 
187
+ #: adminimize.php:994
188
+ #@ default
189
  msgid "Author"
190
+ msgstr "Author"
191
 
192
+ #: adminimize.php:997
193
  #@ adminimize
194
  msgid "plugin activate"
195
+ msgstr "plugin activate"
196
 
197
+ #: adminimize.php:1017
198
+ #@ default
199
  msgid "Settings"
200
+ msgstr "Settings"
201
 
202
+ #: adminimize.php:1078
203
+ #: adminimize.php:1099
204
  #@ adminimize
205
  msgid "<a href=\"http://wordpress.org/extend/plugins/adminimize/\">Documentation</a>"
206
+ msgstr "<a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">Dokumentation</a> (<a href=\"http://wordpress.org/extend/plugins/adminimize/\">en</a>)"
207
 
208
+ #. translators: plugin header field 'Name'
209
+ #: adminimize.php:0
210
+ #: adminimize.php:1095
211
  #: adminimize_page.php:109
212
  #@ adminimize
213
  msgid "Adminimize"
214
+ msgstr "Adminimize"
215
 
216
+ #: adminimize.php:1097
217
  #@ adminimize
218
  msgid "Adminimize Options"
219
+ msgstr "Adminimize Einstellungen"
220
 
221
+ #: adminimize.php:1114
222
+ #@ default
223
  msgid "Cheatin&#8217; uh?"
224
+ msgstr "Cheatin&#8217; uh?"
225
 
226
  #: adminimize_page.php:115
227
  #: adminimize_page.php:140
228
  #: adminimize_page.php:186
229
+ #: adminimize_page.php:350
230
+ #: adminimize_page.php:465
231
+ #: adminimize_page.php:791
232
+ #: adminimize_page.php:874
233
+ #: adminimize_page.php:957
234
+ #: adminimize_page.php:1079
235
+ #: adminimize_page.php:1177
236
+ #: adminimize_page.php:1212
237
+ #: adminimize_page.php:1233
238
+ #@ default
239
  msgid "Click to toggle"
240
+ msgstr "Zum Umschalten klicken"
241
 
242
  #: adminimize_page.php:145
243
  #: adminimize_page.php:187
244
  #@ adminimize
245
  msgid "Backend Options"
246
+ msgstr "Einstellungen Backend"
247
 
248
  #: adminimize_page.php:196
249
  #@ adminimize
250
  msgid "User-Info"
251
+ msgstr "User-Info"
252
 
253
  #: adminimize_page.php:200
254
  #: adminimize_page.php:213
259
  #: adminimize_page.php:263
260
  #: adminimize_page.php:273
261
  #: adminimize_page.php:283
262
+ #: adminimize_page.php:293
263
+ #: adminimize_page.php:322
264
  #@ adminimize
265
  msgid "Default"
266
+ msgstr "Standard"
267
 
268
  #: adminimize_page.php:201
269
  #: adminimize_page.php:224
270
+ #: adminimize_page.php:234
271
  #@ adminimize
272
  msgid "Hide"
273
+ msgstr "Ausblenden"
274
 
275
  #: adminimize_page.php:202
276
  #@ adminimize
277
  msgid "Only logout"
278
+ msgstr "nur Abmelden"
279
 
280
  #: adminimize_page.php:203
281
  #@ adminimize
282
  msgid "User &amp; Logout"
283
+ msgstr "User &amp; Abmelden"
284
 
285
  #: adminimize_page.php:204
286
  #@ adminimize
287
  msgid "The &quot;User-Info-area&quot; is on the top right side of the backend. You can hide or reduced show."
288
+ msgstr "Der &quot;User-Info-Bereich&quot; ist im oberen rechten Bereich zu finden und kann ausgeblendet oder reduziert dargestellt werden."
289
 
290
  #: adminimize_page.php:209
291
  #@ adminimize
292
  msgid "Change User-Info, redirect to"
293
+ msgstr "User Info ge&auml;ndert, Weiterleitung nach"
294
 
295
  #: adminimize_page.php:214
296
  #@ adminimize
297
  msgid "Frontpage of the Blog"
298
+ msgstr "Startseite des Blog"
299
 
300
  #: adminimize_page.php:215
301
  #@ adminimize
302
  msgid "When the &quot;User-Info-area&quot; change it, then it is possible to change the redirect."
303
+ msgstr "Wenn der &quot;User-Info-Bereich&quot; ge&auml;ndert wird, dann kann die die Weiterleitung nach einem Logout ge&auml;ndert werden."
304
 
305
  #: adminimize_page.php:219
306
  #@ adminimize
307
  msgid "Footer"
308
+ msgstr "Footer"
309
 
310
  #: adminimize_page.php:225
311
  #@ adminimize
312
  msgid "The Footer-area can hide, include all links and details."
313
+ msgstr "Der Footer-Bereich kann deaktiviert werden, inklusive aller Links und Hinweise."
314
 
315
+ #: adminimize_page.php:239
316
  #@ adminimize
317
  msgid "WriteScroll"
318
+ msgstr "WriteScroll"
319
 
 
320
  #: adminimize_page.php:244
321
  #: adminimize_page.php:254
322
  #: adminimize_page.php:264
323
  #: adminimize_page.php:274
324
  #: adminimize_page.php:284
325
+ #: adminimize_page.php:294
326
  #@ adminimize
327
  msgid "Activate"
328
+ msgstr "Aktiv"
329
 
330
+ #: adminimize_page.php:245
331
  #@ adminimize
332
  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."
333
+ msgstr "Automatisches Scrollen zum Editor beim Aufruf der Seite Schreiben in Beitr&auml;ge und Seite."
334
 
335
+ #: adminimize_page.php:249
336
  #@ adminimize
337
  msgid "Timestamp"
338
+ msgstr "Timestamp"
339
 
340
+ #: adminimize_page.php:255
341
  #@ adminimize
342
  msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
343
+ msgstr "Das Feld zum &Auml;ndern des Ver&ouml;ffentlichungsdatum ist immer ge&ouml;ffnet."
344
 
345
+ #: adminimize_page.php:259
346
  #@ adminimize
347
  msgid "Thickbox FullScreen"
348
+ msgstr "Thickbox FullScreen"
349
 
350
+ #: adminimize_page.php:269
351
  #@ adminimize
352
  msgid "Flashuploader"
353
+ msgstr "Flashuploader"
354
 
355
+ #: adminimize_page.php:275
356
  #@ adminimize
357
  msgid "Disable the flashuploader and users use only the standard uploader."
358
+ msgstr "Deaktiviere den Flashuploader und Nutzer können nur den Standard-Uploader erreichen."
359
 
360
+ #: adminimize_page.php:289
361
  #@ adminimize
362
  msgid "Advice in Footer"
363
+ msgstr "Hinweis im Footer"
364
 
365
+ #: adminimize_page.php:323
366
  #@ adminimize
367
  msgid "Manage Posts"
368
+ msgstr "Verwalten Beitr&auml;ge"
369
 
370
+ #: adminimize_page.php:324
371
  #@ adminimize
372
  msgid "Manage Pages"
373
+ msgstr "Verwalten Seiten"
374
 
375
+ #: adminimize_page.php:325
376
  #@ adminimize
377
  msgid "Write Post"
378
+ msgstr "Schreiben Beitrag"
379
 
380
+ #: adminimize_page.php:326
381
  #@ adminimize
382
  msgid "Write Page"
383
+ msgstr "Schreiben Seite"
384
 
385
+ #: adminimize_page.php:327
386
+ #: adminimize_page.php:545
387
  #@ adminimize
388
  msgid "Comments"
389
+ msgstr "Kommentare"
390
 
391
+ #: adminimize_page.php:328
392
  #@ adminimize
393
  msgid "other Page"
394
+ msgstr "andere Seite"
395
 
396
+ #: adminimize_page.php:340
397
+ #: adminimize_page.php:455
398
+ #: adminimize_page.php:781
399
+ #: adminimize_page.php:864
400
+ #: adminimize_page.php:947
401
+ #: adminimize_page.php:1068
402
  #@ adminimize
403
  msgid "Update Options"
404
+ msgstr "Einstellungen aktualisieren"
405
 
406
  #: adminimize_page.php:148
407
+ #: adminimize_page.php:351
408
  #@ adminimize
409
  msgid "Global options"
410
+ msgstr "Globale Einstellungen"
411
 
412
+ #: adminimize_page.php:358
413
+ #: adminimize_page.php:430
414
+ #: adminimize_page.php:839
415
+ #: adminimize_page.php:922
416
+ #: adminimize_page.php:965
417
+ #: adminimize_page.php:1043
418
  #@ adminimize
419
  msgid "Option"
420
+ msgstr "Einstellung"
421
 
422
+ #: adminimize_page.php:361
423
+ #: adminimize_page.php:476
424
+ #: adminimize_page.php:802
425
+ #: adminimize_page.php:885
426
+ #: adminimize_page.php:968
427
  #@ adminimize
428
  msgid "Deactivate for"
429
+ msgstr "Deaktiviere für"
430
 
431
+ #: adminimize_page.php:381
432
  #@ adminimize
433
  msgid "Favorite Actions"
434
+ msgstr "Favorisierte Aktionen"
435
 
436
+ #: adminimize_page.php:382
437
  #@ adminimize
438
  msgid "Screen-Meta"
439
+ msgstr "Screen-Meta"
440
 
441
+ #: adminimize_page.php:383
442
+ #: adminimize_page.php:536
443
+ #: adminimize_page.php:632
444
  #@ adminimize
445
+ #@ default
446
  msgid "Screen Options"
447
+ msgstr "kontextabhängige Optionen"
448
 
449
+ #: adminimize_page.php:384
450
  #@ adminimize
451
  msgid "Contextual Help"
452
+ msgstr "kontextabhängig Hilfe"
453
 
454
+ #: adminimize_page.php:385
455
  #@ adminimize
456
  msgid "Admin Color Scheme"
457
+ msgstr "Farbschema verwalten"
458
 
459
+ #: adminimize_page.php:429
460
+ #: adminimize_page.php:1042
461
  #@ adminimize
462
  msgid "Your own options"
463
+ msgstr "Deine eigenen Einstellungen"
464
 
465
+ #: adminimize_page.php:429
466
+ #: adminimize_page.php:838
467
+ #: adminimize_page.php:921
468
+ #: adminimize_page.php:1042
469
  #@ adminimize
470
  msgid "ID or class"
471
+ msgstr "ID oder Klasse"
472
 
473
+ #: adminimize_page.php:436
474
+ #: adminimize_page.php:845
475
+ #: adminimize_page.php:928
476
+ #: adminimize_page.php:1049
477
  #@ adminimize
478
  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."
479
+ 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."
480
 
481
+ #: adminimize_page.php:442
482
+ #: adminimize_page.php:851
483
+ #: adminimize_page.php:934
484
+ #: adminimize_page.php:1055
485
  #@ adminimize
486
  msgid "Possible nomination for ID or class. Separate multiple nominations through a carriage return."
487
+ msgstr "Mögliche Benennung der ID oder Klasse. Trenne Werte durch eine neue Zeile."
488
 
489
+ #: adminimize_page.php:447
490
+ #: adminimize_page.php:856
491
+ #: adminimize_page.php:939
492
+ #: adminimize_page.php:1060
493
  #@ adminimize
494
  msgid "Possible IDs or classes. Separate multiple values through a carriage return."
495
+ msgstr "Mögliche IDs oder Klassen. Trenne Werte durch eine neue Zeile."
496
 
497
  #: adminimize_page.php:151
498
+ #: adminimize_page.php:466
499
  #@ adminimize
500
  msgid "Menu Options"
501
+ msgstr "Menu Einstellungen"
502
 
503
+ #: adminimize_page.php:473
504
  #@ adminimize
505
  msgid "Menu options - Menu, <span style=\\\"font-weight: 400;\\\">Submenu</span>"
506
+ msgstr "Menu Einstellungen - Menu, <span style=\"font-weight: 400;\">Submenu</span>"
507
 
508
+ #: adminimize_page.php:535
509
+ #: adminimize_page.php:631
510
+ #@ default
511
  msgid "Help"
512
  msgstr ""
513
 
514
+ #: adminimize_page.php:538
515
+ #: adminimize_page.php:634
516
  #@ adminimize
517
  msgid "Permalink"
518
+ msgstr "Permalink"
519
 
520
+ #: adminimize_page.php:542
521
  #@ adminimize
522
  msgid "Excerpt"
523
+ msgstr "Auszug"
524
 
525
+ #: adminimize_page.php:543
526
  #@ adminimize
527
  msgid "Trackbacks"
528
+ msgstr "Trackbacks"
529
 
530
+ #: adminimize_page.php:544
531
+ #: adminimize_page.php:635
532
+ #@ default
533
  msgid "Custom Fields"
534
+ msgstr "Benutzerdefinierte Felder"
535
 
536
+ #: adminimize_page.php:546
537
  #@ adminimize
538
  msgid "Password Protect This Post"
539
+ msgstr "Diesen Artikel durch ein Passwort sch&uuml;tzen"
540
 
541
+ #: adminimize_page.php:547
542
+ #@ default
543
  msgid "Post Author"
544
+ msgstr "Autor"
545
 
546
+ #: adminimize_page.php:548
547
+ #@ default
548
  msgid "Post Revisions"
549
+ msgstr "Post Revisions"
550
 
551
+ #: adminimize_page.php:549
552
  #@ adminimize
553
  msgid "Related, Shortcuts"
554
+ msgstr "Siehe auch, Tastaturk&uuml;rzel"
555
 
556
+ #: adminimize_page.php:550
557
+ #: adminimize_page.php:644
558
  #@ adminimize
559
  msgid "Messenges"
560
+ msgstr "Mitteilungen"
561
 
562
+ #: adminimize_page.php:551
563
+ #: adminimize_page.php:645
564
  #@ adminimize
565
  msgid "h2: Advanced Options"
566
+ msgstr "h2: Erweiterte Einstellungen"
567
 
568
+ #: adminimize_page.php:552
569
+ #: adminimize_page.php:646
570
  #@ adminimize
571
  msgid "Media Buttons (all)"
572
+ msgstr "Media Buttons (alle)"
573
 
574
+ #: adminimize_page.php:553
575
+ #: adminimize_page.php:647
576
  #@ adminimize
577
  msgid "Word count"
578
+ msgstr "Word count"
579
 
580
+ #: adminimize_page.php:554
581
+ #@ default
582
  msgid "Post Slug"
583
  msgstr ""
584
 
585
+ #: adminimize_page.php:555
586
+ #: adminimize_page.php:649
587
+ #: adminimize_page.php:998
588
  #@ adminimize
589
  msgid "Publish Actions"
590
+ msgstr "Publish Actions"
591
 
592
+ #: adminimize_page.php:556
593
+ #: adminimize_page.php:650
594
+ #@ default
595
  msgid "Discussion"
596
  msgstr ""
597
 
598
+ #: adminimize_page.php:561
599
+ #@ default
600
  msgid "Post Thumbnail"
601
  msgstr ""
602
 
603
+ #: adminimize_page.php:563
604
+ #: adminimize_page.php:657
605
+ #@ default
606
  #@ adminimize
607
  msgid "Suggested tags from"
608
+ msgstr "Suggested tags from"
609
 
610
+ #: adminimize_page.php:565
611
+ #@ default
612
  msgid "Text Control"
613
+ msgstr "Text Control"
614
 
615
+ #: adminimize_page.php:567
616
+ #: adminimize_page.php:659
617
+ #@ default
618
  msgid "HTML Special Characters"
619
+ msgstr "HTML Special Characters"
620
 
621
+ #: adminimize_page.php:569
622
+ #@ default
623
  msgid "All in One SEO Pack"
624
  msgstr ""
625
 
626
+ #: adminimize_page.php:636
627
  #@ adminimize
628
  msgid "Comments &amp; Pings"
629
+ msgstr "Kommentare &amp; Pings"
630
 
631
+ #: adminimize_page.php:637
632
  #@ adminimize
633
  msgid "Password Protect This Page"
634
+ msgstr "Diese Seite mit einem Passwort versehen"
635
 
636
+ #: adminimize_page.php:638
637
+ #@ default
638
  msgid "Attributes"
639
  msgstr ""
640
 
641
+ #: adminimize_page.php:639
642
  #@ adminimize
643
  msgid "Page Template"
644
+ msgstr "Seiten Template"
645
 
646
+ #: adminimize_page.php:640
647
  #@ adminimize
648
  msgid "Page Order"
649
+ msgstr "Reihenfolge"
650
 
651
+ #: adminimize_page.php:641
652
+ #@ default
653
  msgid "Page Author"
654
+ msgstr "Seitenautor"
655
 
656
+ #: adminimize_page.php:642
657
+ #@ default
658
  msgid "Page Revisions"
659
+ msgstr "Page Revisions"
660
 
661
+ #: adminimize_page.php:643
662
  #@ adminimize
663
  msgid "Related"
664
+ msgstr "Siehe auch"
665
 
666
+ #: adminimize_page.php:648
667
+ #@ default
668
  msgid "Page Slug"
669
  msgstr ""
670
 
671
+ #: adminimize_page.php:655
672
+ #@ default
673
  msgid "Page Image"
674
  msgstr ""
675
 
676
+ #: adminimize_page.php:697
677
+ #: adminimize_page.php:745
678
  #@ adminimize
679
  msgid "After activate the check box it heavy attitudes will change."
680
+ msgstr "Wenn die Checkbox aktiv ist, dann wird das Ändern von Einstellungen erschwert."
681
 
682
+ #: adminimize_page.php:728
683
+ #@ default
684
  msgid "Profile"
685
+ msgstr "Profile"
686
 
687
  #: adminimize_page.php:154
688
+ #: adminimize_page.php:792
689
+ #: adminimize_page.php:799
690
  #@ adminimize
691
  msgid "Write options - Post"
692
+ msgstr "Schreiben Einstellungen - Beitr&auml;ge"
693
 
694
+ #: adminimize_page.php:838
695
  #@ adminimize
696
  msgid "Your own post options"
697
+ msgstr "Deine eigenen Beitrags-Einstellungen"
698
 
699
  #: adminimize_page.php:157
700
+ #: adminimize_page.php:875
701
+ #: adminimize_page.php:882
702
  #@ adminimize
703
  msgid "Write options - Page"
704
+ msgstr "Schreiben Einstellungen - Seiten"
705
 
706
+ #: adminimize_page.php:921
707
  #@ adminimize
708
  msgid "Your own page options"
709
+ msgstr "Deine eigenen Seiten-Einstellungen"
710
 
711
  #: adminimize_page.php:160
712
+ #: adminimize_page.php:958
713
  #@ adminimize
714
  msgid "Links options"
715
+ msgstr "Link Einstellungen"
716
 
717
+ #: adminimize_page.php:991
718
+ #@ default
719
  msgid "Name"
720
+ msgstr "Name"
721
 
722
+ #: adminimize_page.php:992
723
+ #@ default
724
  msgid "Web Address"
725
+ msgstr "Web-Adresse"
726
 
727
+ #: adminimize_page.php:993
728
+ #@ default
729
  msgid "Description"
730
+ msgstr "Beschreibung"
731
 
732
+ #: adminimize_page.php:995
733
+ #@ default
734
  msgid "Target"
735
+ msgstr "Target"
736
 
737
+ #: adminimize_page.php:996
738
+ #@ default
739
  msgid "Link Relationship (XFN)"
740
+ msgstr "Link-Beziehungen (XFN)"
741
 
742
+ #: adminimize_page.php:997
743
+ #@ default
744
  msgid "Advanced"
745
+ msgstr "Erweitert"
746
 
747
  #: adminimize_page.php:163
748
+ #: adminimize_page.php:1080
749
+ #: adminimize_page.php:1165
750
  #@ adminimize
751
  msgid "Set Theme"
752
+ msgstr "Theme zuweisen"
753
 
754
+ #: adminimize_page.php:1087
755
  #@ adminimize
756
  msgid "For better peformance with many users on your blog; load only userlist, when you will change the theme options for users."
757
+ msgstr "Für eine bessere Performance bei vielen Usern in deinem Blog werden die Userdaten nur nach Aufforderung geladen."
758
 
759
+ #: adminimize_page.php:1090
760
  #@ adminimize
761
  msgid "Load User Data"
762
+ msgstr "Lade User Daten"
763
 
764
+ #: adminimize_page.php:1101
765
+ #@ default
766
  msgid "User-ID"
767
+ msgstr "User-ID"
768
 
769
+ #: adminimize_page.php:1102
770
+ #@ default
771
  msgid "Username"
772
+ msgstr "Benutzername"
773
 
774
+ #: adminimize_page.php:1103
775
+ #@ default
776
  msgid "Display name publicly as"
777
+ msgstr "Name im Blog"
778
 
779
+ #: adminimize_page.php:1104
780
+ #@ default
781
  msgid "Admin-Color Scheme"
782
+ msgstr "Admin-Color Scheme"
783
 
784
+ #: adminimize_page.php:1105
785
+ #@ default
786
  msgid "User Level"
787
+ msgstr "User Level"
788
 
789
+ #: adminimize_page.php:1106
790
+ #@ default
791
  msgid "Role"
792
+ msgstr "Rolle"
793
 
794
  #: adminimize_page.php:169
795
+ #: adminimize_page.php:1213
796
  #@ adminimize
797
  msgid "Deinstall Options"
798
+ msgstr "Einstellungen deinstallieren"
799
 
800
+ #: adminimize_page.php:1216
801
  #@ adminimize
802
  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."
803
+ msgstr "Nutze diese Option, um die Einstellungen f&uuml;r das Plugin in der Datenbank zu l&ouml;schen. Das Plugin entfernt die Eintr&auml;ge <strong>nicht</strong>, wenn es deaktiviert wird!"
804
 
805
+ #: adminimize_page.php:1220
806
  #@ adminimize
807
  msgid "Delete Options"
808
+ msgstr "Einstellungen Löschen"
809
 
810
  #: adminimize_page.php:116
811
  #: adminimize_page.php:172
812
+ #: adminimize_page.php:1234
813
  #@ adminimize
814
  msgid "About the plugin"
815
+ msgstr "&Uuml;ber das Plugin"
816
 
817
  #: adminimize_page.php:118
818
+ #: adminimize_page.php:1237
819
  #@ adminimize
820
  msgid "Further information: Visit the <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
821
+ msgstr "Weitere Information: Besuche die <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">Plugin Webseite</a> f&uuml;r weitere Informationen oder hole die aktuelle Version des Plugins."
822
 
823
  #: adminimize_page.php:124
824
+ #: adminimize_page.php:1243
825
  #@ adminimize
826
  msgid "PayPal - The safer, easier way to pay online!"
827
+ msgstr "PayPal - Der sichere und einfache Weg zu zahlen!"
828
 
829
  #: adminimize_page.php:128
830
+ #: adminimize_page.php:1247
831
  #@ adminimize
832
  msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a> or donate."
833
+ msgstr "Du willst Danke sagen? Besuche meine <a href=\"http://bueltge.de/wunschliste/\">Wunschliste</a> oder spende."
834
 
835
+ #: adminimize.php:102
836
  #@ adminimize
837
  msgid "All entries in the database were imported."
838
+ msgstr "Alle Einträge wurden in die Datenbank geschrieben."
839
 
840
  #: adminimize_page.php:166
841
+ #: adminimize_page.php:1178
842
  #@ adminimize
843
  msgid "Export/Import Options"
844
+ msgstr "Export/Import Einstellungen"
845
 
846
+ #: adminimize_page.php:1182
847
  #@ adminimize
848
  msgid "Export"
849
+ msgstr "Export"
850
 
851
+ #: adminimize_page.php:1187
852
  #@ adminimize
853
  msgid "Export &raquo;"
854
+ msgstr "Exportieren &raquo;"
855
 
856
+ #: adminimize_page.php:1191
857
  #@ adminimize
858
  msgid "Import"
859
+ msgstr "Import"
860
 
861
+ #: adminimize_page.php:1196
862
  #@ adminimize
863
  msgid "Choose a file from your computer"
864
+ msgstr "Wähle eine Datei vom Rechner"
865
 
866
+ #: adminimize_page.php:1201
867
  #@ adminimize
868
  msgid "Upload file and import &raquo;"
869
+ msgstr "Hochladen der Datei und importieren &raquo;"
870
 
871
  #: adminimize_page.php:141
872
  #@ adminimize
873
  msgid "MiniMenu"
874
+ msgstr "MiniMenu"
875
+
876
+ #: adminimize_page.php:342
877
+ #: adminimize_page.php:457
878
+ #: adminimize_page.php:783
879
+ #: adminimize_page.php:866
880
+ #: adminimize_page.php:949
881
+ #: adminimize_page.php:1071
882
+ #: adminimize_page.php:1170
883
+ #: adminimize_page.php:1204
884
+ #: adminimize_page.php:1225
885
+ #: adminimize_page.php:1251
886
  #@ adminimize
887
  msgid "scroll to top"
888
+ msgstr "Nach oben"
889
 
890
+ #: adminimize_page.php:1184
891
  #@ adminimize
892
  msgid "You can save a .seq file with your options."
893
+ msgstr "Du kannst deine Einstellungen in einer .seq Datei speichern."
894
 
895
+ #: adminimize_page.php:1194
896
  #@ adminimize
897
  msgid "Choose a Adminimize (<em>.seq</em>) file to upload, then click <em>Upload file and import</em>."
898
+ msgstr "Wähle eine Adminimize (<em>.seq</em>) Datei zum hoch laden und dann klick <em>Hochladen der Datei und importieren</em>"
899
 
900
+ #: adminimize_page.php:279
901
  #@ adminimize
902
  msgid "Category Height"
903
+ msgstr "Kategorie-Höhe"
904
 
905
+ #: adminimize_page.php:285
906
  #@ adminimize
907
  msgid "View the Meta Box with Categories in the full height, no scrollbar or whitespace."
908
+ msgstr "Stellt in die Meta Box der Kategorien in voller Höhe dar, kein Scrollbar und kein Leerraum."
909
 
910
+ #: adminimize_page.php:296
911
  #@ adminimize
912
  msgid "In the Footer you can display an advice for changing the Default-design, (x)HTML is possible."
913
+ msgstr "Im Footer kann ein Hinweis auf die aktive Ver&auml;nderung des Standard-Layout gesetzt werden, (x)HTML erlaubt."
914
 
915
+ #: adminimize_page.php:318
916
  #@ adminimize
917
  msgid "Dashboard deactivate, redirect to"
918
+ msgstr "Dashboard inaktiv, Weiterleitung nach"
919
 
920
+ #: adminimize_page.php:331
921
  #@ adminimize
922
  msgid "You have deactivated the Dashboard, please select a page for redirection?"
923
+ msgstr "Du hast das Dashboard deaktiviert, wohin soll der Nutzer weitergeleitet werden?"
924
 
925
+ #: adminimize_page.php:557
926
+ #: adminimize_page.php:651
927
+ #@ default
928
  msgid "HTML Editor Button"
929
  msgstr ""
930
 
931
+ #: adminimize_page.php:265
932
  #@ adminimize
933
  msgid "All Thickbox-function use the full area of the browser. Thickbox is for example in upload media-files."
934
+ msgstr "Alle Thickbox-Funktion verwenden den vollständigen Bereich des Browsers. Thickbox ist beispielsweise in der Medien-Upload-Funktion."
935
+
936
+ #. translators: plugin header field 'PluginURI'
937
+ #: adminimize.php:0
938
+ #@ adminimize
939
+ msgid "http://bueltge.de/wordpress-admin-theme-adminimize/674/"
940
+ msgstr ""
941
+
942
+ #. translators: plugin header field 'Description'
943
+ #: adminimize.php:0
944
+ #@ adminimize
945
+ 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."
946
+ msgstr "Visuelles Reduzieren der administrativen Meta-Boxen, so dass mehr Raum ist und nur dargestellt, was gebraucht wird. Das Plugin erlaubt das ausblenden von ungenutzten Bereich vom WordPress Administrations-Bereich und dem Menu für alle vorhandenen Rollen. Es ist ebenso möglich, dass man Bereiche in Teilbereichen ausblenden und eigene Bereiche ausblenden kann. Kurz: Reduzieren den Admin-Bereich für das, was die jeweilige Rolle benötigt."
947
+
948
+ #. translators: plugin header field 'Author'
949
+ #: adminimize.php:0
950
+ #@ adminimize
951
+ msgid "Frank B&uuml;ltge"
952
+ msgstr ""
953
+
954
+ #. translators: plugin header field 'AuthorURI'
955
+ #: adminimize.php:0
956
+ #@ adminimize
957
+ msgid "http://bueltge.de/"
958
+ msgstr ""
959
+
960
+ #. translators: plugin header field 'Version'
961
+ #: adminimize.php:0
962
+ #@ adminimize
963
+ msgid "1.7.10"
964
+ msgstr ""
965
+
966
+ #: adminimize_page.php:229
967
+ #@ adminimize
968
+ msgid "Header"
969
+ msgstr "Header"
970
+
971
+ #: adminimize_page.php:235
972
+ #@ adminimize
973
+ msgid "The Header-area can hide, include all links and details."
974
+ msgstr "Der header-Bereich kann ausgeblendet werden, inkl. aller Links und Details."
975
+
976
+ #: adminimize_page.php:537
977
+ #: adminimize_page.php:633
978
+ #@ adminimize
979
+ msgid "Title"
980
  msgstr ""
981
 
links_options.php ADDED
@@ -0,0 +1,125 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ // options for Links
3
+ ?>
4
+
5
+ <div id="poststuff" class="ui-sortable meta-box-sortables">
6
+ <div class="postbox">
7
+ <div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
8
+ <h3 class="hndle" id="links_options"><?php _e('Links options', FB_ADMINIMIZE_TEXTDOMAIN ); ?></h3>
9
+ <div class="inside">
10
+ <br class="clear" />
11
+
12
+ <table summary="config_edit_links" class="widefat">
13
+ <thead>
14
+ <tr>
15
+ <th><?php _e('Option', FB_ADMINIMIZE_TEXTDOMAIN ); ?></th>
16
+ <?php
17
+ foreach ($user_roles_names as $role_name) { ?>
18
+ <th><?php _e('Deactivate for', FB_ADMINIMIZE_TEXTDOMAIN ); echo '<br/>' . $role_name; ?></th>
19
+ <?php } ?>
20
+ </tr>
21
+ </thead>
22
+
23
+ <tbody>
24
+ <?php
25
+ foreach ($user_roles as $role) {
26
+ $disabled_link_option_[$role] = _mw_adminimize_getOptionValue('mw_adminimize_disabled_link_option_'. $role .'_items');
27
+ }
28
+
29
+ $link_options = array(
30
+ '#namediv',
31
+ '#addressdiv',
32
+ '#descriptiondiv',
33
+ '#linkcategorydiv',
34
+ '#linktargetdiv',
35
+ '#linkxfndiv',
36
+ '#linkadvanceddiv',
37
+ '#misc-publishing-actions'
38
+ );
39
+
40
+ $link_options_names = array(
41
+ __('Name'),
42
+ __('Web Address'),
43
+ __('Description'),
44
+ __('Categories'),
45
+ __('Target'),
46
+ __('Link Relationship (XFN)'),
47
+ __('Advanced'),
48
+ __('Publish Actions', FB_ADMINIMIZE_TEXTDOMAIN)
49
+ );
50
+
51
+ $_mw_adminimize_own_link_values = _mw_adminimize_getOptionValue('_mw_adminimize_own_link_values');
52
+ $_mw_adminimize_own_link_values = preg_split( "/\r\n/", $_mw_adminimize_own_link_values );
53
+ foreach ( (array) $_mw_adminimize_own_link_values as $key => $_mw_adminimize_own_link_value ) {
54
+ $_mw_adminimize_own_link_value = trim($_mw_adminimize_own_link_value);
55
+ array_push($link_options, $_mw_adminimize_own_link_value);
56
+ }
57
+
58
+ $_mw_adminimize_own_link_options = _mw_adminimize_getOptionValue('_mw_adminimize_own_link_options');
59
+ $_mw_adminimize_own_link_options = preg_split( "/\r\n/", $_mw_adminimize_own_link_options );
60
+ foreach ( (array) $_mw_adminimize_own_link_options as $key => $_mw_adminimize_own_link_option ) {
61
+ $_mw_adminimize_own_link_option = trim($_mw_adminimize_own_link_option);
62
+ array_push($link_options_names, $_mw_adminimize_own_link_option);
63
+ }
64
+
65
+ $x = 0;
66
+ foreach ($link_options as $index => $link_option) {
67
+ if ( $link_option != '') {
68
+ $checked_user_role_ = array();
69
+ foreach ($user_roles as $role) {
70
+ $checked_user_role_[$role] = ( isset($disabled_link_option_[$role]) && in_array($link_option, $disabled_link_option_[$role]) ) ? ' checked="checked"' : '';
71
+ }
72
+ echo '<tr>' . "\n";
73
+ echo '<td>' . $link_options_names[$index] . ' <span style="color:#ccc; font-weight: 400;">(' . $link_option . ')</span> </td>' . "\n";
74
+ foreach ($user_roles as $role) {
75
+ echo '<td class="num"><input id="check_post'. $role . $x .'" type="checkbox"' . $checked_user_role_[$role] . ' name="mw_adminimize_disabled_link_option_'. $role .'_items[]" value="' . $link_option . '" /></td>' . "\n";
76
+ }
77
+ echo '</tr>' . "\n";
78
+ $x++;
79
+ }
80
+ }
81
+ ?>
82
+ </tbody>
83
+ </table>
84
+
85
+ <?php
86
+ //your own global options
87
+ ?>
88
+ <br style="margin-top: 10px;" />
89
+ <table summary="config_edit_post" class="widefat">
90
+ <thead>
91
+ <tr>
92
+ <th><?php _e('Your own options', FB_ADMINIMIZE_TEXTDOMAIN ); echo '<br />'; _e('ID or class', FB_ADMINIMIZE_TEXTDOMAIN ); ?></th>
93
+ <th><?php echo '<br />'; _e('Option', FB_ADMINIMIZE_TEXTDOMAIN ); ?></th>
94
+ </tr>
95
+ </thead>
96
+
97
+ <tbody>
98
+ <tr valign="top">
99
+ <td colspan="2"><?php _e('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.', FB_ADMINIMIZE_TEXTDOMAIN ); ?></td>
100
+ </tr>
101
+ <tr valign="top">
102
+ <td>
103
+ <textarea name="_mw_adminimize_own_link_options" cols="60" rows="3" id="_mw_adminimize_own_link_options" style="width: 95%;" ><?php echo _mw_adminimize_getOptionValue('_mw_adminimize_own_link_options'); ?></textarea>
104
+ <br />
105
+ <?php _e('Possible nomination for ID or class. Separate multiple nominations through a carriage return.', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
106
+ </td>
107
+ <td>
108
+ <textarea class="code" name="_mw_adminimize_own_link_values" cols="60" rows="3" id="_mw_adminimize_own_link_values" style="width: 95%;" ><?php echo _mw_adminimize_getOptionValue('_mw_adminimize_own_link_values'); ?></textarea>
109
+ <br />
110
+ <?php _e('Possible IDs or classes. Separate multiple values through a carriage return.', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
111
+ </td>
112
+ </tr>
113
+ </tbody>
114
+ </table>
115
+
116
+ <p id="submitbutton">
117
+ <input type="hidden" name="_mw_adminimize_action" value="_mw_adminimize_insert" />
118
+ <input class="button button-primary" type="submit" name="_mw_adminimize_save" value="<?php _e('Update Options', FB_ADMINIMIZE_TEXTDOMAIN ); ?> &raquo;" /><input type="hidden" name="page_options" value="'dofollow_timeout'" />
119
+ </p>
120
+
121
+ <p><a class="alignright button" href="javascript:void(0);" onclick="window.scrollTo(0,0);" style="margin:3px 0 0 30px;"><?php _e('scroll to top', FB_ADMINIMIZE_TEXTDOMAIN); ?></a><br class="clear" /></p>
122
+
123
+ </div>
124
+ </div>
125
+ </div>
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: Bueltge
3
  Donate link: http://bueltge.de/wunschliste/
4
  Tags: color, scheme, theme, admin, dashboard, color scheme, plugin, interface, ui, metabox, hide, editor, minimal, menu, customization, interface, administration, lite, light, usability, lightweight, layout, zen
5
  Requires at least: 2.5
6
- Tested up to: 3.1-alpha
7
- Stable tag: 1.7.12
8
 
9
  Adminimize is a WordPress plugin that lets you hide 'unnecessary' items from the WordPress backend and many many more ...
10
 
@@ -74,9 +74,6 @@ The plugin changes the administration backend and gives you the power to assign
74
  * Thanks to [GeorgWP](http://wordpress.blogos.dk/s%C3%B8g-efter-downloads/?did=208 "wordpress.blogos.dk/s%C3%B8g-efter-downloads/?did=208") for danish language files.
75
  * Thanks to [Scavenger](http://www.photos-marseille.fr) for french language files.
76
 
77
- = More Plugins =
78
- Please see also my [Premium Plugins](http://wpplugins.com/author/malo.conny/). Maybe you find an solution for your requirement.
79
-
80
  = Interested in WordPress tips and tricks =
81
  You may also be interested in WordPress tips and tricks at [WP Engineer](http://wpengineer.com/) or for german people [bueltge.de](http://bueltge.de/)
82
 
@@ -101,8 +98,13 @@ See on [the official website](http://bueltge.de/wordpress-admin-theme-adminimize
101
  1. Adminimize Theme how in WordPress 2.3
102
 
103
  == Changelog ==
104
- = v1.7.13 () =
105
- * Maintenance: change edit-page redirect for WordPress 3.0 and higher
 
 
 
 
 
106
 
107
  = v1.7.12 (10/02/2010) =
108
  * Bugfix: Fallback for deactivate profile.php on roles smaller administration
3
  Donate link: http://bueltge.de/wunschliste/
4
  Tags: color, scheme, theme, admin, dashboard, color scheme, plugin, interface, ui, metabox, hide, editor, minimal, menu, customization, interface, administration, lite, light, usability, lightweight, layout, zen
5
  Requires at least: 2.5
6
+ Tested up to: 3.1
7
+ Stable tag: 1.7.13
8
 
9
  Adminimize is a WordPress plugin that lets you hide 'unnecessary' items from the WordPress backend and many many more ...
10
 
74
  * Thanks to [GeorgWP](http://wordpress.blogos.dk/s%C3%B8g-efter-downloads/?did=208 "wordpress.blogos.dk/s%C3%B8g-efter-downloads/?did=208") for danish language files.
75
  * Thanks to [Scavenger](http://www.photos-marseille.fr) for french language files.
76
 
 
 
 
77
  = Interested in WordPress tips and tricks =
78
  You may also be interested in WordPress tips and tricks at [WP Engineer](http://wpengineer.com/) or for german people [bueltge.de](http://bueltge.de/)
79
 
98
  1. Adminimize Theme how in WordPress 2.3
99
 
100
  == Changelog ==
101
+ = v1.7.13 (03/02/2011) =
102
+ * Maintenance: different changes on code
103
+ * Maintenance: usable in WP 3.1
104
+ * Feature: Remove Admin Bar per role
105
+ * Feature: Add options for WP Nav Menu
106
+ * Bugfix: php warning for wrong datatype [WP Forum](http://wordpress.org/support/topic/plugin-adminimize-warning-in-array)
107
+ * Bugfix: php warning on foreach [WP Forum](http://wordpress.org/support/topic/plugin-adminimize-warning-error-invalid-argument-supplied-for-foreach)
108
 
109
  = v1.7.12 (10/02/2010) =
110
  * Bugfix: Fallback for deactivate profile.php on roles smaller administration
wp_nav_menu_options.php ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ // options for WP nav menu
3
+ ?>
4
+ <div id="poststuff" class="ui-sortable meta-box-sortables">
5
+ <div class="postbox">
6
+ <div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
7
+ <h3 class="hndle" id="nav_menu_options"><?php _e('WP Nav Menu options', FB_ADMINIMIZE_TEXTDOMAIN ); ?></h3>
8
+ <div class="inside">
9
+ <br class="clear" />
10
+
11
+ <table summary="config_nav_menu" class="widefat">
12
+ <thead>
13
+ <tr>
14
+ <th><?php _e('Option', FB_ADMINIMIZE_TEXTDOMAIN ); ?></th>
15
+ <?php
16
+ foreach ($user_roles_names as $role_name) { ?>
17
+ <th><?php _e('Deactivate for', FB_ADMINIMIZE_TEXTDOMAIN ); echo '<br/>' . $role_name; ?></th>
18
+ <?php } ?>
19
+ </tr>
20
+ </thead>
21
+
22
+ <tbody>
23
+ <?php
24
+ foreach ($user_roles as $role) {
25
+ $disabled_nav_menu_option_[$role] = _mw_adminimize_getOptionValue('mw_adminimize_disabled_nav_menu_option_'. $role .'_items');
26
+ }
27
+
28
+ $nav_menu_options = array(
29
+ '#add-custom-links',
30
+ '#add-post',
31
+ '#add-page',
32
+ '#add-category',
33
+ '#add-post_tag',
34
+ '.menu-add-new'
35
+ );
36
+
37
+ $nav_menu_options_names = array(
38
+ __('Custom Links'),
39
+ __('Posts'),
40
+ __('Pages'),
41
+ __('Categories'),
42
+ __('Post Tags'),
43
+ __('#') . '(' . __('Add menu') . ')'
44
+ );
45
+
46
+ $_mw_adminimize_own_nav_menu_values = _mw_adminimize_getOptionValue('_mw_adminimize_own_nav_menu_values');
47
+ $_mw_adminimize_own_nav_menu_values = preg_split( "/\r\n/", $_mw_adminimize_own_nav_menu_values );
48
+ foreach ( (array) $_mw_adminimize_own_nav_menu_values as $key => $_mw_adminimize_own_nav_menu_value ) {
49
+ $_mw_adminimize_own_nav_menu_value = trim($_mw_adminimize_own_nav_menu_value);
50
+ array_push($nav_menu_options, $_mw_adminimize_own_nav_menu_value);
51
+ }
52
+
53
+ $_mw_adminimize_own_nav_menu_options = _mw_adminimize_getOptionValue('_mw_adminimize_own_nav_menu_options');
54
+ $_mw_adminimize_own_nav_menu_options = preg_split( "/\r\n/", $_mw_adminimize_own_nav_menu_options );
55
+ foreach ( (array) $_mw_adminimize_own_nav_menu_options as $key => $_mw_adminimize_own_nav_menu_option ) {
56
+ $_mw_adminimize_own_nav_menu_option = trim($_mw_adminimize_own_nav_menu_option);
57
+ array_push($nav_menu_options_names, $_mw_adminimize_own_nav_menu_option);
58
+ }
59
+
60
+ $x = 0;
61
+ foreach ($nav_menu_options as $index => $nav_menu_option) {
62
+ if ( $nav_menu_option != '') {
63
+ $checked_user_role_ = array();
64
+ foreach ($user_roles as $role) {
65
+ $checked_user_role_[$role] = ( isset($disabled_nav_menu_option_[$role]) && in_array($nav_menu_option, $disabled_nav_menu_option_[$role]) ) ? ' checked="checked"' : '';
66
+ }
67
+ echo '<tr>' . "\n";
68
+ echo '<td>' . $nav_menu_options_names[$index] . ' <span style="color:#ccc; font-weight: 400;">(' . $nav_menu_option . ')</span> </td>' . "\n";
69
+ foreach ($user_roles as $role) {
70
+ echo '<td class="num"><input id="check_post'. $role . $x .'" type="checkbox"' . $checked_user_role_[$role] . ' name="mw_adminimize_disabled_nav_menu_option_'. $role .'_items[]" value="' . $nav_menu_option . '" /></td>' . "\n";
71
+ }
72
+ echo '</tr>' . "\n";
73
+ $x++;
74
+ }
75
+ }
76
+ ?>
77
+ </tbody>
78
+ </table>
79
+
80
+ <?php
81
+ //your own global options
82
+ ?>
83
+ <br style="margin-top: 10px;" />
84
+ <table summary="config_edit_post" class="widefat">
85
+ <thead>
86
+ <tr>
87
+ <th><?php _e('Your own options', FB_ADMINIMIZE_TEXTDOMAIN ); echo '<br />'; _e('ID or class', FB_ADMINIMIZE_TEXTDOMAIN ); ?></th>
88
+ <th><?php echo '<br />'; _e('Option', FB_ADMINIMIZE_TEXTDOMAIN ); ?></th>
89
+ </tr>
90
+ </thead>
91
+
92
+ <tbody>
93
+ <tr valign="top">
94
+ <td colspan="2"><?php _e('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.', FB_ADMINIMIZE_TEXTDOMAIN ); ?></td>
95
+ </tr>
96
+ <tr valign="top">
97
+ <td>
98
+ <textarea name="_mw_adminimize_own_nav_menu_options" cols="60" rows="3" id="_mw_adminimize_own_nav_menu_options" style="width: 95%;" ><?php echo _mw_adminimize_getOptionValue('_mw_adminimize_own_nav_menu_options'); ?></textarea>
99
+ <br />
100
+ <?php _e('Possible nomination for ID or class. Separate multiple nominations through a carriage return.', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
101
+ </td>
102
+ <td>
103
+ <textarea class="code" name="_mw_adminimize_own_nav_menu_values" cols="60" rows="3" id="_mw_adminimize_own_nav_menu_values" style="width: 95%;" ><?php echo _mw_adminimize_getOptionValue('_mw_adminimize_own_nav_menu_values'); ?></textarea>
104
+ <br />
105
+ <?php _e('Possible IDs or classes. Separate multiple values through a carriage return.', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
106
+ </td>
107
+ </tr>
108
+ </tbody>
109
+ </table>
110
+
111
+ <p id="submitbutton">
112
+ <input type="hidden" name="_mw_adminimize_action" value="_mw_adminimize_insert" />
113
+ <input class="button button-primary" type="submit" name="_mw_adminimize_save" value="<?php _e('Update Options', FB_ADMINIMIZE_TEXTDOMAIN ); ?> &raquo;" /><input type="hidden" name="page_options" value="'dofollow_timeout'" />
114
+ </p>
115
+ </form>
116
+ <p><a class="alignright button" href="javascript:void(0);" onclick="window.scrollTo(0,0);" style="margin:3px 0 0 30px;"><?php _e('scroll to top', FB_ADMINIMIZE_TEXTDOMAIN); ?></a><br class="clear" /></p>
117
+
118
+ </div>
119
+ </div>
120
+ </div>