Adminimize - Version 1.7.15

Version Description

Download this release

Release Info

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

Code changes from version 1.7.14 to 1.7.15

Adminimize-da_DK.txt DELETED
@@ -1,21 +0,0 @@
1
- Adminimize 1.7.9
2
-
3
- Filerne skal ligge i mappen adminimize/languages
4
-
5
- Anvender du de gemte stier, skal du unzippe til wp-content/plugins.
6
- S� pakkes sprogfilerne automatisk ud til wp-content/plugins/adminimize
7
-
8
- Du kan tjekke for opdateringer til sprogfilerne p� http://wordpress.blogos.dk/wpdadkdownloads/
9
- eller via http://wordpress.blogos.dk/s%C3%B8g-efter-downloads/?did=208
10
- Se evt. ogs� http://wordpress.blogos.dk/tag/adminimize
11
-
12
-
13
-
14
- FOR THE DEVELOPER
15
- You are very welcome to check for updated language files in one of the following ways:
16
-
17
- 1. On my downloads page that list all files available for download: http://wordpress.blogos.dk/wpdadkdownloads/
18
-
19
- 2. Directly on my Download Monitor download page: http://wordpress.blogos.dk/s%C3%B8g-efter-downloads/?did=208
20
-
21
- If I have blogged about your plugin, theme or other resource, you will be able to find it via this tag: http://wordpress.blogos.dk/tag/adminimize
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
adminimize.php CHANGED
@@ -12,7 +12,7 @@ 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ültge
14
  Author URI: http://bueltge.de/
15
- Version: 1.7.14
16
  License: GPL
17
  */
18
 
@@ -121,6 +121,18 @@ class _mw_adminimize_message_class {
121
  }
122
 
123
 
 
 
 
 
 
 
 
 
 
 
 
 
124
  /**
125
  * get_all_user_roles() - Returns an array with all user roles(names) in it.
126
  * Inclusive self defined roles (for example with the 'Role Manager' plugin).
@@ -191,12 +203,6 @@ function _mw_adminimize_control_flashloader() {
191
  function _mw_adminimize_init() {
192
  global $pagenow, $menu, $submenu, $adminimizeoptions, $wp_version;
193
 
194
- // exclude super admin
195
- if ( defined('WP_DEBUG') && !WP_DEBUG ) {
196
- if ( is_super_admin() )
197
- return NULL;
198
- }
199
-
200
  if ( function_exists('get_post_type_object') ) {
201
  if ( isset($_GET['post']) )
202
  $post_id = (int) $_GET['post'];
@@ -231,7 +237,7 @@ function _mw_adminimize_init() {
231
  }
232
 
233
  $user_roles = get_all_user_roles();
234
-
235
  $adminimizeoptions = get_option('mw_adminimize');
236
 
237
  foreach ($user_roles as $role) {
@@ -253,72 +259,75 @@ function _mw_adminimize_init() {
253
  $_mw_admin_color = get_user_option('admin_color');
254
 
255
  //global options
256
- $_mw_adminimize_footer = _mw_adminimize_getOptionValue('_mw_adminimize_footer');
257
- switch ($_mw_adminimize_footer) {
258
- case 1:
259
- wp_enqueue_script( '_mw_adminimize_remove_footer', WP_PLUGIN_URL . '/' . FB_ADMINIMIZE_BASEFOLDER . '/js/remove_footer.js', array('jquery') );
260
- break;
261
- }
262
-
263
- $_mw_adminimize_header = _mw_adminimize_getOptionValue('_mw_adminimize_header');
264
- switch ($_mw_adminimize_header) {
265
- case 1:
266
- wp_enqueue_script( '_mw_adminimize_remove_header', WP_PLUGIN_URL . '/' . FB_ADMINIMIZE_BASEFOLDER . '/js/remove_header.js', array('jquery') );
267
- break;
268
- }
269
-
270
- //post-page options
271
- $post_page_pages = array('post-new.php', 'post.php', 'page-new.php', 'page.php');
272
- if ( in_array( $pagenow, $post_page_pages ) ) {
273
-
274
- $_mw_adminimize_writescroll = _mw_adminimize_getOptionValue('_mw_adminimize_writescroll');
275
- switch ($_mw_adminimize_writescroll) {
276
- case 1:
277
- wp_enqueue_script( '_mw_adminimize_writescroll', WP_PLUGIN_URL . '/' . FB_ADMINIMIZE_BASEFOLDER . '/js/writescroll.js', array('jquery') );
278
- break;
279
- }
280
- $_mw_adminimize_tb_window = _mw_adminimize_getOptionValue('_mw_adminimize_tb_window');
281
- switch ($_mw_adminimize_tb_window) {
282
  case 1:
283
- wp_deregister_script('media-upload');
284
- wp_enqueue_script('media-upload', WP_PLUGIN_URL . '/' . FB_ADMINIMIZE_BASEFOLDER . '/js/tb_window.js', array('thickbox'));
285
  break;
286
  }
287
- $_mw_adminimize_timestamp = _mw_adminimize_getOptionValue('_mw_adminimize_timestamp');
288
- switch ($_mw_adminimize_timestamp) {
 
289
  case 1:
290
- wp_enqueue_script( '_mw_adminimize_timestamp', WP_PLUGIN_URL . '/' . FB_ADMINIMIZE_BASEFOLDER . '/js/timestamp.js', array('jquery') );
291
  break;
292
  }
 
 
 
 
293
 
294
- //category options
295
- $_mw_adminimize_cat_full = _mw_adminimize_getOptionValue('_mw_adminimize_cat_full');
296
- switch ($_mw_adminimize_cat_full) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
297
  case 1:
298
- wp_enqueue_style( 'adminimize-ful-category', WP_PLUGIN_URL . '/' . FB_ADMINIMIZE_BASEFOLDER . '/css/mw_cat_full.css' );
299
  break;
300
  }
301
-
302
- // set default editor tinymce
303
- if ( recursive_in_array('#editor-toolbar #edButtonHTML, #quicktags', $disabled_metaboxes_page_all)
304
- || recursive_in_array('#editor-toolbar #edButtonHTML, #quicktags', $disabled_metaboxes_post_all) )
305
- add_filter( 'wp_default_editor', create_function('', 'return "tinymce";') );
306
-
307
- // remove media bottons
308
- if ( recursive_in_array('media_buttons', $disabled_metaboxes_page_all)
309
- || recursive_in_array('media_buttons', $disabled_metaboxes_post_all) )
310
- remove_action('media_buttons', 'media_buttons');
311
-
312
- //add_filter('image_downsize', '_mw_adminimize_image_downsize', 1, 3);
313
  }
314
 
315
- $_mw_adminimize_control_flashloader = _mw_adminimize_getOptionValue('_mw_adminimize_control_flashloader');
316
- switch ($_mw_adminimize_control_flashloader) {
317
- case 1:
318
- add_filter( 'flash_uploader', '_mw_adminimize_control_flashloader', 1 );
319
- break;
320
- }
321
-
322
  if ( ($_mw_admin_color == 'mw_fresh') ||
323
  ($_mw_admin_color == 'mw_classic') ||
324
  ($_mw_admin_color == 'mw_colorblind') ||
@@ -354,17 +363,17 @@ function _mw_adminimize_init() {
354
 
355
  // only pages
356
  if (
357
- ( 'page-new.php' == $pagenow ) ||
358
- ( 'page.php' == $pagenow ) ||
359
- ( 'post_type=page' == esc_attr($_SERVER['QUERY_STRING']) ) ||
360
- ( 'page' == $post_type )
361
  ) {
362
 
363
  // check for array empty
364
  if ( !isset($disabled_metaboxes_page_['editor']['0']) )
365
  $disabled_metaboxes_page_['editor']['0'] = '';
366
  if ( isset($disabled_metaboxes_page_['administrator']['0']) )
367
- $disabled_metaboxes_page_['administrator']['0'] = '';
368
  }
369
 
370
  }
@@ -375,6 +384,9 @@ function _mw_adminimize_init() {
375
  // global_options
376
  add_action('admin_head', '_mw_adminimize_set_global_option', 1);
377
 
 
 
 
378
  // set metabox post option
379
  $post_pages = array('post-new.php', 'post.php', 'post');
380
  if ( in_array( $pagenow, $post_pages ) || in_array($post_type, $post_pages) ) {
@@ -406,11 +418,11 @@ function _mw_adminimize_init() {
406
  // on init of WordPress
407
  add_action( 'init', '_mw_adminimize_textdomain' );
408
  add_action( 'init', '_mw_adminimize_register_styles' );
 
409
 
410
  // on admin init
411
  add_action( 'admin_menu', '_mw_adminimize_add_settings_page' );
412
  add_action( 'admin_menu', '_mw_adminimize_remove_dashboard' );
413
- add_action( 'admin_init', '_mw_adminimize_init', 1 );
414
  add_action( 'admin_init', '_mw_adminimize_admin_styles', 1 );
415
 
416
  register_activation_hook( __FILE__, '_mw_adminimize_install' );
@@ -675,12 +687,6 @@ function _mw_adminimize_admin_styles($file) {
675
  function _mw_adminimize_remove_dashboard() {
676
  global $menu, $submenu, $user_ID, $wp_version;
677
 
678
- // exclude super admin
679
- if ( defined('WP_DEBUG') && !WP_DEBUG ) {
680
- if ( is_super_admin() )
681
- return NULL;
682
- }
683
-
684
  $user_roles = get_all_user_roles();
685
 
686
  foreach ($user_roles as $role) {
@@ -711,24 +717,25 @@ function _mw_adminimize_remove_dashboard() {
711
 
712
  if ( $redirect ) {
713
  $_mw_adminimize_db_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_db_redirect');
 
714
  switch ($_mw_adminimize_db_redirect) {
715
  case 0:
716
- $_mw_adminimize_db_redirect = 'profile.php';
717
  break;
718
  case 1:
719
- $_mw_adminimize_db_redirect = 'edit.php';
720
  break;
721
  case 2:
722
- $_mw_adminimize_db_redirect = 'edit.php?post_type=page';
723
  break;
724
  case 3:
725
- $_mw_adminimize_db_redirect = 'post-new.php';
726
  break;
727
  case 4:
728
- $_mw_adminimize_db_redirect = 'page-new.php';
729
  break;
730
  case 5:
731
- $_mw_adminimize_db_redirect = 'edit-comments.php';
732
  break;
733
  case 6:
734
  $_mw_adminimize_db_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_db_redirect_txt');
@@ -740,7 +747,8 @@ function _mw_adminimize_remove_dashboard() {
740
  $_mw_adminimize_db_redirect = 'edit-pages.php';
741
 
742
  $the_user = new WP_User($user_ID);
743
- reset($menu); $page = key($menu);
 
744
 
745
  while ( (__('Dashboard') != $menu[$page][0]) && next($menu) || (__('Dashboard') != $menu[$page][1]) && next($menu) )
746
  $page = key($menu);
@@ -753,7 +761,7 @@ function _mw_adminimize_remove_dashboard() {
753
  $page = key($menu);
754
 
755
  if ( preg_match('#wp-admin/?(index.php)?$#', $_SERVER['REQUEST_URI']) ) {
756
- wp_redirect( get_option('siteurl') . '/wp-admin/' . $_mw_adminimize_db_redirect );
757
  }
758
  }
759
  }
@@ -775,6 +783,10 @@ function _mw_adminimize_disable_flash_uploader() {
775
  function _mw_adminimize_set_menu_option() {
776
  global $pagenow, $menu, $submenu, $user_identity, $wp_version;
777
 
 
 
 
 
778
  $user_roles = get_all_user_roles();
779
 
780
  foreach ($user_roles as $role) {
@@ -878,6 +890,10 @@ function _mw_adminimize_set_menu_option() {
878
  function _mw_adminimize_set_global_option() {
879
  global $_wp_admin_css_colors;
880
 
 
 
 
 
881
  $user_roles = get_all_user_roles();
882
 
883
  $_mw_adminimize_admin_head = '';
@@ -910,20 +926,60 @@ function _mw_adminimize_set_global_option() {
910
  $_mw_adminimize_admin_head .= '<!-- global options -->' . "\n";
911
  $_mw_adminimize_admin_head .= '<style type="text/css">' . $global_options . ' {display: none !important;}</style>' . "\n";
912
 
913
- // for deactivate admin bar
914
- if ( $remove_adminbar )
915
- add_filter( 'show_admin_bar','__return_false' );
916
-
917
  if ($global_options)
918
  echo $_mw_adminimize_admin_head;
919
  }
920
 
921
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
922
  /**
923
  * set metabox options from database an area post
924
  */
925
  function _mw_adminimize_set_metabox_post_option() {
926
 
 
 
 
 
927
  $user_roles = get_all_user_roles();
928
 
929
  $_mw_adminimize_admin_head = '';
@@ -959,6 +1015,10 @@ function _mw_adminimize_set_metabox_post_option() {
959
  */
960
  function _mw_adminimize_set_metabox_page_option() {
961
 
 
 
 
 
962
  $user_roles = get_all_user_roles();
963
 
964
  $_mw_adminimize_admin_head = '';
@@ -994,6 +1054,10 @@ function _mw_adminimize_set_metabox_page_option() {
994
  */
995
  function _mw_adminimize_set_link_option() {
996
 
 
 
 
 
997
  $user_roles = get_all_user_roles();
998
 
999
  $_mw_adminimize_admin_head = '';
@@ -1029,6 +1093,10 @@ function _mw_adminimize_set_link_option() {
1029
  */
1030
  function _mw_adminimize_set_nav_menu_option() {
1031
 
 
 
 
 
1032
  $user_roles = get_all_user_roles();
1033
 
1034
  $_mw_adminimize_admin_head = '';
@@ -1053,6 +1121,7 @@ function _mw_adminimize_set_nav_menu_option() {
1053
  }
1054
  }
1055
  }
 
1056
  $_mw_adminimize_admin_head .= '<style type="text/css">' . $nav_menu_options . ' {display: none !important;}</style>' . "\n";
1057
 
1058
  if ($nav_menu_options)
@@ -1279,7 +1348,13 @@ function _mw_adminimize_update() {
1279
  } else {
1280
  $adminimizeoptions['_mw_adminimize_header'] = 0;
1281
  }
1282
-
 
 
 
 
 
 
1283
  if (isset($_POST['_mw_adminimize_writescroll'])) {
1284
  $adminimizeoptions['_mw_adminimize_writescroll'] = strip_tags(stripslashes($_POST['_mw_adminimize_writescroll']));
1285
  } else {
@@ -1441,6 +1516,19 @@ function _mw_adminimize_update() {
1441
  $adminimizeoptions['_mw_adminimize_own_link_options'] = 0;
1442
  }
1443
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1444
  // update
1445
  update_option('mw_adminimize', $adminimizeoptions);
1446
  $adminimizeoptions = get_option('mw_adminimize');
@@ -1498,7 +1586,7 @@ function _mw_adminimize_export() {
1498
  header("Content-Type: application/download");
1499
  header('Content-Type: text/seq; charset=' . get_option('blog_charset'), TRUE);
1500
  flush();
1501
-
1502
  $export_data = mysql_query("SELECT option_value FROM $wpdb->options WHERE option_name = 'mw_adminimize'");
1503
  $export_data = mysql_result($export_data, 0);
1504
  echo $export_data;
@@ -1528,10 +1616,16 @@ function _mw_adminimize_import() {
1528
  // SQL import
1529
  ini_set('default_socket_timeout', 120);
1530
  $import_file = file_get_contents($str_ziel);
 
1531
  _mw_adminimize_deinstall();
1532
  $import_file = unserialize($import_file);
 
 
 
1533
  update_option('mw_adminimize', $import_file);
1534
- unlink($str_ziel);
 
 
1535
  $addreferer = 'true';
1536
  }
1537
 
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.15
16
  License: GPL
17
  */
18
 
121
  }
122
 
123
 
124
+ function _mw_adminimize_exclude_super_admin() {
125
+ // exclude super admin
126
+ if ( function_exists('is_super_admin')
127
+ && is_super_admin()
128
+ && 1 == _mw_adminimize_getOptionValue('_mw_adminimize_exclude_super_admin')
129
+ )
130
+ return TRUE;
131
+
132
+ return FALSE;
133
+ }
134
+
135
+
136
  /**
137
  * get_all_user_roles() - Returns an array with all user roles(names) in it.
138
  * Inclusive self defined roles (for example with the 'Role Manager' plugin).
203
  function _mw_adminimize_init() {
204
  global $pagenow, $menu, $submenu, $adminimizeoptions, $wp_version;
205
 
 
 
 
 
 
 
206
  if ( function_exists('get_post_type_object') ) {
207
  if ( isset($_GET['post']) )
208
  $post_id = (int) $_GET['post'];
237
  }
238
 
239
  $user_roles = get_all_user_roles();
240
+
241
  $adminimizeoptions = get_option('mw_adminimize');
242
 
243
  foreach ($user_roles as $role) {
259
  $_mw_admin_color = get_user_option('admin_color');
260
 
261
  //global options
262
+ // exclude super admin
263
+ if ( ! _mw_adminimize_exclude_super_admin() ) {
264
+ $_mw_adminimize_footer = _mw_adminimize_getOptionValue('_mw_adminimize_footer');
265
+ switch ($_mw_adminimize_footer) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
266
  case 1:
267
+ wp_enqueue_script( '_mw_adminimize_remove_footer', WP_PLUGIN_URL . '/' . FB_ADMINIMIZE_BASEFOLDER . '/js/remove_footer.js', array('jquery') );
 
268
  break;
269
  }
270
+
271
+ $_mw_adminimize_header = _mw_adminimize_getOptionValue('_mw_adminimize_header');
272
+ switch ($_mw_adminimize_header) {
273
  case 1:
274
+ wp_enqueue_script( '_mw_adminimize_remove_header', WP_PLUGIN_URL . '/' . FB_ADMINIMIZE_BASEFOLDER . '/js/remove_header.js', array('jquery') );
275
  break;
276
  }
277
+
278
+ //post-page options
279
+ $post_page_pages = array('post-new.php', 'post.php', 'page-new.php', 'page.php');
280
+ if ( in_array( $pagenow, $post_page_pages ) ) {
281
 
282
+ $_mw_adminimize_writescroll = _mw_adminimize_getOptionValue('_mw_adminimize_writescroll');
283
+ switch ($_mw_adminimize_writescroll) {
284
+ case 1:
285
+ wp_enqueue_script( '_mw_adminimize_writescroll', WP_PLUGIN_URL . '/' . FB_ADMINIMIZE_BASEFOLDER . '/js/writescroll.js', array('jquery') );
286
+ break;
287
+ }
288
+ $_mw_adminimize_tb_window = _mw_adminimize_getOptionValue('_mw_adminimize_tb_window');
289
+ switch ($_mw_adminimize_tb_window) {
290
+ case 1:
291
+ wp_deregister_script('media-upload');
292
+ wp_enqueue_script('media-upload', WP_PLUGIN_URL . '/' . FB_ADMINIMIZE_BASEFOLDER . '/js/tb_window.js', array('thickbox'));
293
+ break;
294
+ }
295
+ $_mw_adminimize_timestamp = _mw_adminimize_getOptionValue('_mw_adminimize_timestamp');
296
+ switch ($_mw_adminimize_timestamp) {
297
+ case 1:
298
+ wp_enqueue_script( '_mw_adminimize_timestamp', WP_PLUGIN_URL . '/' . FB_ADMINIMIZE_BASEFOLDER . '/js/timestamp.js', array('jquery') );
299
+ break;
300
+ }
301
+
302
+ //category options
303
+ $_mw_adminimize_cat_full = _mw_adminimize_getOptionValue('_mw_adminimize_cat_full');
304
+ switch ($_mw_adminimize_cat_full) {
305
+ case 1:
306
+ wp_enqueue_style( 'adminimize-ful-category', WP_PLUGIN_URL . '/' . FB_ADMINIMIZE_BASEFOLDER . '/css/mw_cat_full.css' );
307
+ break;
308
+ }
309
+
310
+ // set default editor tinymce
311
+ if ( recursive_in_array('#editor-toolbar #edButtonHTML, #quicktags', $disabled_metaboxes_page_all)
312
+ || recursive_in_array('#editor-toolbar #edButtonHTML, #quicktags', $disabled_metaboxes_post_all) )
313
+ add_filter( 'wp_default_editor', create_function('', 'return "tinymce";') );
314
+
315
+ // remove media bottons
316
+ if ( recursive_in_array('media_buttons', $disabled_metaboxes_page_all)
317
+ || recursive_in_array('media_buttons', $disabled_metaboxes_post_all) )
318
+ remove_action('media_buttons', 'media_buttons');
319
+
320
+ //add_filter('image_downsize', '_mw_adminimize_image_downsize', 1, 3);
321
+ }
322
+
323
+ $_mw_adminimize_control_flashloader = _mw_adminimize_getOptionValue('_mw_adminimize_control_flashloader');
324
+ switch ($_mw_adminimize_control_flashloader) {
325
  case 1:
326
+ add_filter( 'flash_uploader', '_mw_adminimize_control_flashloader', 1 );
327
  break;
328
  }
 
 
 
 
 
 
 
 
 
 
 
 
329
  }
330
 
 
 
 
 
 
 
 
331
  if ( ($_mw_admin_color == 'mw_fresh') ||
332
  ($_mw_admin_color == 'mw_classic') ||
333
  ($_mw_admin_color == 'mw_colorblind') ||
363
 
364
  // only pages
365
  if (
366
+ ( 'page-new.php' == $pagenow ) ||
367
+ ( 'page.php' == $pagenow ) ||
368
+ ( 'post_type=page' == esc_attr($_SERVER['QUERY_STRING']) ) ||
369
+ ( 'page' == $post_type )
370
  ) {
371
 
372
  // check for array empty
373
  if ( !isset($disabled_metaboxes_page_['editor']['0']) )
374
  $disabled_metaboxes_page_['editor']['0'] = '';
375
  if ( isset($disabled_metaboxes_page_['administrator']['0']) )
376
+ $disabled_metaboxes_page_['administrator']['0'] = '';
377
  }
378
 
379
  }
384
  // global_options
385
  add_action('admin_head', '_mw_adminimize_set_global_option', 1);
386
 
387
+ // admin bar
388
+ _mw_adminimize_remove_admin_bar();
389
+
390
  // set metabox post option
391
  $post_pages = array('post-new.php', 'post.php', 'post');
392
  if ( in_array( $pagenow, $post_pages ) || in_array($post_type, $post_pages) ) {
418
  // on init of WordPress
419
  add_action( 'init', '_mw_adminimize_textdomain' );
420
  add_action( 'init', '_mw_adminimize_register_styles' );
421
+ add_action( 'init', '_mw_adminimize_init', 1 );
422
 
423
  // on admin init
424
  add_action( 'admin_menu', '_mw_adminimize_add_settings_page' );
425
  add_action( 'admin_menu', '_mw_adminimize_remove_dashboard' );
 
426
  add_action( 'admin_init', '_mw_adminimize_admin_styles', 1 );
427
 
428
  register_activation_hook( __FILE__, '_mw_adminimize_install' );
687
  function _mw_adminimize_remove_dashboard() {
688
  global $menu, $submenu, $user_ID, $wp_version;
689
 
 
 
 
 
 
 
690
  $user_roles = get_all_user_roles();
691
 
692
  foreach ($user_roles as $role) {
717
 
718
  if ( $redirect ) {
719
  $_mw_adminimize_db_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_db_redirect');
720
+ $_mw_adminimize_db_redirect_admin_url = get_option('siteurl') . '/wp-admin/';
721
  switch ($_mw_adminimize_db_redirect) {
722
  case 0:
723
+ $_mw_adminimize_db_redirect = $_mw_adminimize_db_redirect_admin_url . 'profile.php';
724
  break;
725
  case 1:
726
+ $_mw_adminimize_db_redirect = $_mw_adminimize_db_redirect_admin_url . 'edit.php';
727
  break;
728
  case 2:
729
+ $_mw_adminimize_db_redirect = $_mw_adminimize_db_redirect_admin_url . 'edit.php?post_type=page';
730
  break;
731
  case 3:
732
+ $_mw_adminimize_db_redirect = $_mw_adminimize_db_redirect_admin_url . 'post-new.php';
733
  break;
734
  case 4:
735
+ $_mw_adminimize_db_redirect = $_mw_adminimize_db_redirect_admin_url . 'page-new.php';
736
  break;
737
  case 5:
738
+ $_mw_adminimize_db_redirect = $_mw_adminimize_db_redirect_admin_url . 'edit-comments.php';
739
  break;
740
  case 6:
741
  $_mw_adminimize_db_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_db_redirect_txt');
747
  $_mw_adminimize_db_redirect = 'edit-pages.php';
748
 
749
  $the_user = new WP_User($user_ID);
750
+ reset($menu);
751
+ $page = key($menu);
752
 
753
  while ( (__('Dashboard') != $menu[$page][0]) && next($menu) || (__('Dashboard') != $menu[$page][1]) && next($menu) )
754
  $page = key($menu);
761
  $page = key($menu);
762
 
763
  if ( preg_match('#wp-admin/?(index.php)?$#', $_SERVER['REQUEST_URI']) ) {
764
+ wp_redirect( $_mw_adminimize_db_redirect );
765
  }
766
  }
767
  }
783
  function _mw_adminimize_set_menu_option() {
784
  global $pagenow, $menu, $submenu, $user_identity, $wp_version;
785
 
786
+ // exclude super admin
787
+ if ( _mw_adminimize_exclude_super_admin() )
788
+ return NULL;
789
+
790
  $user_roles = get_all_user_roles();
791
 
792
  foreach ($user_roles as $role) {
890
  function _mw_adminimize_set_global_option() {
891
  global $_wp_admin_css_colors;
892
 
893
+ // exclude super admin
894
+ if ( _mw_adminimize_exclude_super_admin() )
895
+ return NULL;
896
+
897
  $user_roles = get_all_user_roles();
898
 
899
  $_mw_adminimize_admin_head = '';
926
  $_mw_adminimize_admin_head .= '<!-- global options -->' . "\n";
927
  $_mw_adminimize_admin_head .= '<style type="text/css">' . $global_options . ' {display: none !important;}</style>' . "\n";
928
 
 
 
 
 
929
  if ($global_options)
930
  echo $_mw_adminimize_admin_head;
931
  }
932
 
933
 
934
+ function _mw_adminimize_remove_admin_bar() {
935
+
936
+ // exclude super admin
937
+ if ( _mw_adminimize_exclude_super_admin() )
938
+ return NULL;
939
+
940
+ $user_roles = get_all_user_roles();
941
+
942
+ foreach ($user_roles as $role) {
943
+ $disabled_global_option_[$role] = _mw_adminimize_getOptionValue('mw_adminimize_disabled_global_option_'. $role .'_items');
944
+ }
945
+
946
+ foreach ($user_roles as $role) {
947
+ if ( !isset($disabled_global_option_[$role]['0']) )
948
+ $disabled_global_option_[$role]['0'] = '';
949
+ }
950
+
951
+ $remove_adminbar = FALSE;
952
+ // new 1.7.8
953
+ foreach ($user_roles as $role) {
954
+ $user = wp_get_current_user();
955
+ if ( in_array($role, $user->roles) ) {
956
+ if ( current_user_can($role) && is_array($disabled_global_option_[$role]) ) {
957
+ $global_options = implode(', ', $disabled_global_option_[$role]);
958
+ if ( recursive_in_array('.show-admin-bar', $disabled_global_option_[$role]) )
959
+ $remove_adminbar = TRUE;
960
+ }
961
+ }
962
+ }
963
+
964
+ // for deactivate admin bar
965
+ if ( $remove_adminbar ) {
966
+ add_filter( 'show_admin_bar', '__return_false' );
967
+ wp_deregister_script( 'admin-bar' );
968
+ wp_deregister_style( 'admin-bar' );
969
+ remove_action( 'wp_footer', 'wp_admin_bar_render', 1000 );
970
+ }
971
+ }
972
+
973
+
974
  /**
975
  * set metabox options from database an area post
976
  */
977
  function _mw_adminimize_set_metabox_post_option() {
978
 
979
+ // exclude super admin
980
+ if ( _mw_adminimize_exclude_super_admin() )
981
+ return NULL;
982
+
983
  $user_roles = get_all_user_roles();
984
 
985
  $_mw_adminimize_admin_head = '';
1015
  */
1016
  function _mw_adminimize_set_metabox_page_option() {
1017
 
1018
+ // exclude super admin
1019
+ if ( _mw_adminimize_exclude_super_admin() )
1020
+ return NULL;
1021
+
1022
  $user_roles = get_all_user_roles();
1023
 
1024
  $_mw_adminimize_admin_head = '';
1054
  */
1055
  function _mw_adminimize_set_link_option() {
1056
 
1057
+ // exclude super admin
1058
+ if ( _mw_adminimize_exclude_super_admin() )
1059
+ return NULL;
1060
+
1061
  $user_roles = get_all_user_roles();
1062
 
1063
  $_mw_adminimize_admin_head = '';
1093
  */
1094
  function _mw_adminimize_set_nav_menu_option() {
1095
 
1096
+ // exclude super admin
1097
+ if ( _mw_adminimize_exclude_super_admin() )
1098
+ return NULL;
1099
+
1100
  $user_roles = get_all_user_roles();
1101
 
1102
  $_mw_adminimize_admin_head = '';
1121
  }
1122
  }
1123
  }
1124
+ //remove_meta_box($id, 'nav-menus', 'side');
1125
  $_mw_adminimize_admin_head .= '<style type="text/css">' . $nav_menu_options . ' {display: none !important;}</style>' . "\n";
1126
 
1127
  if ($nav_menu_options)
1348
  } else {
1349
  $adminimizeoptions['_mw_adminimize_header'] = 0;
1350
  }
1351
+
1352
+ if (isset($_POST['_mw_adminimize_exclude_super_admin'])) {
1353
+ $adminimizeoptions['_mw_adminimize_exclude_super_admin'] = strip_tags(stripslashes($_POST['_mw_adminimize_exclude_super_admin']));
1354
+ } else {
1355
+ $adminimizeoptions['_mw_adminimize_exclude_super_admin'] = 0;
1356
+ }
1357
+
1358
  if (isset($_POST['_mw_adminimize_writescroll'])) {
1359
  $adminimizeoptions['_mw_adminimize_writescroll'] = strip_tags(stripslashes($_POST['_mw_adminimize_writescroll']));
1360
  } else {
1516
  $adminimizeoptions['_mw_adminimize_own_link_options'] = 0;
1517
  }
1518
 
1519
+ // wp nav menu options
1520
+ if (isset($_POST['_mw_adminimize_own_nav_menu_values'])) {
1521
+ $adminimizeoptions['_mw_adminimize_own_nav_menu_values'] = stripslashes($_POST['_mw_adminimize_own_nav_menu_values']);
1522
+ } else {
1523
+ $adminimizeoptions['_mw_adminimize_own_nav_menu_values'] = 0;
1524
+ }
1525
+
1526
+ if (isset($_POST['_mw_adminimize_own_nav_menu_options'])) {
1527
+ $adminimizeoptions['_mw_adminimize_own_nav_menu_options'] = stripslashes($_POST['_mw_adminimize_own_nav_menu_options']);
1528
+ } else {
1529
+ $adminimizeoptions['_mw_adminimize_own_nav_menu_options'] = 0;
1530
+ }
1531
+
1532
  // update
1533
  update_option('mw_adminimize', $adminimizeoptions);
1534
  $adminimizeoptions = get_option('mw_adminimize');
1586
  header("Content-Type: application/download");
1587
  header('Content-Type: text/seq; charset=' . get_option('blog_charset'), TRUE);
1588
  flush();
1589
+
1590
  $export_data = mysql_query("SELECT option_value FROM $wpdb->options WHERE option_name = 'mw_adminimize'");
1591
  $export_data = mysql_result($export_data, 0);
1592
  echo $export_data;
1616
  // SQL import
1617
  ini_set('default_socket_timeout', 120);
1618
  $import_file = file_get_contents($str_ziel);
1619
+
1620
  _mw_adminimize_deinstall();
1621
  $import_file = unserialize($import_file);
1622
+
1623
+ if ( file_exists($str_ziel) )
1624
+ unlink($str_ziel);
1625
  update_option('mw_adminimize', $import_file);
1626
+ if ( file_exists($str_ziel) )
1627
+ unlink($str_ziel);
1628
+
1629
  $addreferer = 'true';
1630
  }
1631
 
adminimize_admin_bar.php.new DELETED
@@ -1,104 +0,0 @@
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
@@ -105,23 +105,6 @@ function _mw_adminimize_options() {
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
-
114
- _mw_adminimize_set_theme();
115
-
116
- $myErrors = new _mw_adminimize_message_class();
117
- $myErrors = '<div id="message" class="updated fade"><p>' . $myErrors->get_error('_mw_adminimize_set_theme') . '</p></div>';
118
- echo $myErrors;
119
- } else {
120
- $myErrors = new _mw_adminimize_message_class();
121
- $myErrors = '<div id="message" class="error"><p>' . $myErrors->get_error('_mw_adminimize_access_denied') . '</p></div>';
122
- wp_die($myErrors);
123
- }
124
- }
125
  ?>
126
  <div class="wrap">
127
  <?php
105
  wp_die($myErrors);
106
  }
107
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
108
  ?>
109
  <div class="wrap">
110
  <?php
inc-options/backend_options.php CHANGED
@@ -13,6 +13,18 @@
13
  <br class="clear" />
14
  <table summary="config" class="widefat">
15
  <tbody>
 
 
 
 
 
 
 
 
 
 
 
 
16
  <tr valign="top">
17
  <td><?php _e('User-Info', FB_ADMINIMIZE_TEXTDOMAIN ); ?></td>
18
  <td>
@@ -149,7 +161,7 @@
149
  <option value="6"<?php if ($_mw_adminimize_db_redirect == '6') { echo ' selected="selected"'; } ?>><?php _e('other Page', FB_ADMINIMIZE_TEXTDOMAIN ); ?></option>
150
  </select>
151
  <textarea style="width: 85%;" class="code" rows="1" cols="60" name="_mw_adminimize_db_redirect_txt" id="_mw_adminimize_db_redirect_txt" ><?php echo htmlspecialchars(stripslashes(_mw_adminimize_getOptionValue('_mw_adminimize_db_redirect_txt'))); ?></textarea>
152
- <br /><?php _e('You have deactivated the Dashboard, please select a page for redirection?', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
153
  </td>
154
  </tr>
155
  <?php
13
  <br class="clear" />
14
  <table summary="config" class="widefat">
15
  <tbody>
16
+ <?php if ( function_exists('is_super_admin') ) { ?>
17
+ <tr valign="top" class="form-invalid">
18
+ <td><?php _e('Exclude Super Admin', FB_ADMINIMIZE_TEXTDOMAIN ); ?></td>
19
+ <td>
20
+ <?php $_mw_adminimize_exclude_super_admin = _mw_adminimize_getOptionValue('_mw_adminimize_exclude_super_admin'); ?>
21
+ <select name="_mw_adminimize_exclude_super_admin">
22
+ <option value="0"<?php if ($_mw_adminimize_exclude_super_admin == '0') { echo ' selected="selected"'; } ?>><?php _e('Default', FB_ADMINIMIZE_TEXTDOMAIN ); ?></option>
23
+ <option value="1"<?php if ($_mw_adminimize_exclude_super_admin == '1') { echo ' selected="selected"'; } ?>><?php _e('Activate', FB_ADMINIMIZE_TEXTDOMAIN ); ?></option>
24
+ </select> <?php _e('Exclude the Super Admin on a WP Multisite Install from all limitations of this plugin.', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
25
+ </td>
26
+ </tr>
27
+ <?php } ?>
28
  <tr valign="top">
29
  <td><?php _e('User-Info', FB_ADMINIMIZE_TEXTDOMAIN ); ?></td>
30
  <td>
161
  <option value="6"<?php if ($_mw_adminimize_db_redirect == '6') { echo ' selected="selected"'; } ?>><?php _e('other Page', FB_ADMINIMIZE_TEXTDOMAIN ); ?></option>
162
  </select>
163
  <textarea style="width: 85%;" class="code" rows="1" cols="60" name="_mw_adminimize_db_redirect_txt" id="_mw_adminimize_db_redirect_txt" ><?php echo htmlspecialchars(stripslashes(_mw_adminimize_getOptionValue('_mw_adminimize_db_redirect_txt'))); ?></textarea>
164
+ <br /><?php _e('You have deactivated the Dashboard, please select a page for redirection or define custom url, include http://?', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
165
  </td>
166
  </tr>
167
  <?php
inc-options/wp_nav_menu_options.php CHANGED
@@ -24,24 +24,50 @@
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 );
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
+ '#contextual-help-link-wrap',
30
+ '#screen-options-link-wrap',
31
+ '#nav-menu-theme-locations',
32
+ '#add-custom-links',
33
+ '.menu-add-new'
34
+ );
 
35
 
36
+ if ( wp_get_nav_menus() )
37
+ array( $nav_menu_options, '#nav-menu-theme-locations' );
38
+
39
  $nav_menu_options_names = array(
40
+ __('Help'),
41
+ __('Screen Options'),
42
+ __('Theme Locations'),
43
+ __('Custom Links'),
44
+ __('#') . '(' . __('Add menu') . ')'
45
+ );
46
+
47
+ if ( wp_get_nav_menus() )
48
+ array( $nav_menu_options_names, __( 'Theme Locations' ) );
49
+
50
+ // taxonomies
51
+ $taxonomies = get_taxonomies( array( 'show_in_nav_menus' => true ), 'object' );
52
+ if ($taxonomies) {
53
+ foreach ( $taxonomies as $tax ) {
54
+ if ( $tax ) {
55
+ array_push($nav_menu_options, '#add-' . $tax->name);
56
+ array_push($nav_menu_options_names, $tax->labels->name);
57
+ }
58
+ }
59
+ }
60
+
61
+ // post types
62
+ $post_types = get_post_types( array( 'show_in_nav_menus' => true ), 'object' );
63
+ if ($post_types) {
64
+ foreach ( $post_types as $post_type ) {
65
+ if ( $post_type ) {
66
+ array_push($nav_menu_options, '#add-' . $post_type->name);
67
+ array_push($nav_menu_options_names, $post_type->labels->name);
68
+ }
69
+ }
70
+ }
71
 
72
  $_mw_adminimize_own_nav_menu_values = _mw_adminimize_getOptionValue('_mw_adminimize_own_nav_menu_values');
73
  $_mw_adminimize_own_nav_menu_values = preg_split( "/\r\n/", $_mw_adminimize_own_nav_menu_values );
languages/adminimize-de_DE.mo CHANGED
Binary file
languages/adminimize-de_DE.po CHANGED
@@ -19,916 +19,925 @@ msgstr ""
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
255
- #: adminimize_page.php:223
256
- #: adminimize_page.php:233
257
- #: adminimize_page.php:243
258
- #: adminimize_page.php:253
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."
@@ -957,25 +966,76 @@ msgstr ""
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
 
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
+ #: adminimize.php:103
23
  #@ adminimize
24
  msgid "Unknown error."
25
  msgstr "Unbekannter Fehler."
26
 
27
+ #: adminimize.php:112
28
  #@ adminimize
29
  msgid "The updates were saved."
30
  msgstr "Die Einstellungen wurden gespeichert"
31
 
32
+ #: adminimize.php:113
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:115
38
  #@ adminimize
39
  msgid "All entries in the database were deleted."
40
  msgstr "Die Einstellungen wurde gel&ouml;scht!"
41
 
42
+ #: adminimize.php:116
43
  #@ adminimize
44
  msgid "Set the checkbox on deinstall-button."
45
  msgstr "Checkbox setzen, wenn wirklich deinstalliert werden soll!"
46
 
47
+ #: adminimize.php:117
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:118
53
  #@ adminimize
54
  msgid "Backend-Theme was activated!"
55
  msgstr "Backend-Theme wurde zugewiesen!"
56
 
57
+ #: adminimize.php:119
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:472
63
+ #: inc-options/links_options.php:44
64
+ #: inc-options/menu_options.php:93
65
  #@ default
66
  #@ adminimize
67
  msgid "Categories"
68
  msgstr "Kategorien"
69
 
70
+ #: adminimize.php:478
71
+ #: adminimize.php:489
72
  #@ default
73
  msgid "+ Add New Category"
74
  msgstr "+ Add New Category"
75
 
76
+ #: adminimize.php:480
77
+ #: adminimize.php:491
78
  #@ default
79
  msgid "New category name"
80
  msgstr "New category name"
81
 
82
+ #: adminimize.php:481
83
+ #: adminimize.php:493
84
  #@ default
85
  msgid "Parent category"
86
  msgstr "Parent category"
87
 
88
+ #: adminimize.php:482
89
+ #: adminimize.php:494
90
  #@ default
91
  msgid "Add"
92
  msgstr "Add"
93
 
94
+ #: adminimize.php:491
95
+ #: inc-options/menu_options.php:94
96
  #@ default
97
  #@ adminimize
98
  msgid "Add New Category"
99
  msgstr "Add New Category"
100
 
101
+ #: adminimize.php:515
102
+ #: adminimize.php:516
103
+ #: inc-options/menu_options.php:92
104
  #@ default
105
  #@ adminimize
106
  msgid "Tags"
107
  msgstr "Tags"
108
 
109
+ #: adminimize.php:557
110
+ #: adminimize.php:571
111
+ #: adminimize.php:585
112
  #@ default
113
  msgid "Blue"
114
  msgstr "Blau"
115
 
116
+ #: adminimize.php:564
117
+ #: adminimize.php:578
118
+ #: adminimize.php:592
119
  #@ default
120
  msgid "Gray"
121
  msgstr "Grau"
122
 
123
+ #: adminimize.php:600
124
+ #: adminimize.php:642
125
+ #: adminimize.php:665
126
  #@ default
127
  msgid "Classic"
128
  msgstr "Classic"
129
 
130
+ #: adminimize.php:607
131
+ #: adminimize.php:649
132
+ #: adminimize.php:672
133
  #@ default
134
  msgid "Fresh"
135
  msgstr "Fresh"
136
 
137
+ #: adminimize.php:614
138
  #@ default
139
  msgid "WordPress 2.3"
140
  msgstr "WordPress 2.3"
141
 
142
+ #: adminimize.php:621
143
  #@ default
144
  msgid "Maybe i'm colorblind"
145
  msgstr "Maybe i'm colorblind"
146
 
147
+ #: adminimize.php:628
148
  #@ default
149
  msgid "Grey"
150
  msgstr "Grey"
151
 
152
+ #: adminimize.php:753
153
+ #: adminimize.php:756
154
  #@ default
155
  msgid "Dashboard"
156
  msgstr "Dashboard"
157
 
158
+ #: adminimize.php:818
159
+ #: adminimize.php:820
160
+ #: adminimize.php:835
161
+ #: adminimize.php:837
162
+ #: adminimize.php:1139
163
  #@ default
164
  msgid "Log Out"
165
  msgstr "Log Out"
166
 
167
+ #: adminimize.php:1160
168
  #@ default
169
  msgid "Visit plugin homepage"
170
  msgstr "Visit plugin homepage"
171
 
172
+ #: adminimize.php:1163
173
  #@ default
174
  msgid "plugin"
175
  msgstr "plugin"
176
 
177
+ #: adminimize.php:1163
178
  #@ default
179
  msgid "Version"
180
  msgstr "Version"
181
 
182
+ #: adminimize.php:1163
183
  #@ adminimize
184
  msgid "History"
185
  msgstr "Historie"
186
 
187
+ #: adminimize.php:1163
188
  #@ default
189
  msgid "Author"
190
  msgstr "Author"
191
 
192
+ #: adminimize.php:1167
193
  #@ adminimize
194
  msgid "plugin activate"
195
  msgstr "plugin activate"
196
 
197
+ #: adminimize.php:1188
198
  #@ default
199
  msgid "Settings"
200
  msgstr "Settings"
201
 
202
+ #: adminimize.php:1251
 
203
  #@ adminimize
204
  msgid "<a href=\"http://wordpress.org/extend/plugins/adminimize/\">Documentation</a>"
205
  msgstr "<a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">Dokumentation</a> (<a href=\"http://wordpress.org/extend/plugins/adminimize/\">en</a>)"
206
 
207
  #. translators: plugin header field 'Name'
208
  #: adminimize.php:0
209
+ #: adminimize.php:1269
210
+ #: inc-options/minimenu.php:6
211
  #@ adminimize
212
  msgid "Adminimize"
213
  msgstr "Adminimize"
214
 
215
+ #: adminimize.php:1271
216
  #@ adminimize
217
  msgid "Adminimize Options"
218
  msgstr "Adminimize Einstellungen"
219
 
220
+ #: adminimize.php:1293
221
  #@ default
222
  msgid "Cheatin&#8217; uh?"
223
  msgstr "Cheatin&#8217; uh?"
224
 
225
+ #: adminimize_page.php:142
226
+ #: adminimize_page.php:240
227
+ #: adminimize_page.php:275
228
+ #: adminimize_page.php:296
229
+ #: inc-options/backend_options.php:7
230
+ #: inc-options/global_options.php:7
231
+ #: inc-options/links_options.php:7
232
+ #: inc-options/menu_options.php:7
233
+ #: inc-options/minimenu.php:12
234
+ #: inc-options/minimenu.php:37
235
+ #: inc-options/wp_nav_menu_options.php:6
236
+ #: inc-options/write_page_options.php:6
237
+ #: inc-options/write_post_options.php:7
238
  #@ default
239
  msgid "Click to toggle"
240
  msgstr "Zum Umschalten klicken"
241
 
242
+ #: inc-options/backend_options.php:8
243
+ #: inc-options/minimenu.php:42
244
  #@ adminimize
245
  msgid "Backend Options"
246
  msgstr "Einstellungen Backend"
247
 
248
+ #: inc-options/backend_options.php:29
249
  #@ adminimize
250
  msgid "User-Info"
251
  msgstr "User-Info"
252
 
253
+ #: inc-options/backend_options.php:22
254
+ #: inc-options/backend_options.php:33
255
+ #: inc-options/backend_options.php:46
256
+ #: inc-options/backend_options.php:56
257
+ #: inc-options/backend_options.php:66
258
+ #: inc-options/backend_options.php:76
259
+ #: inc-options/backend_options.php:86
260
+ #: inc-options/backend_options.php:96
261
+ #: inc-options/backend_options.php:106
262
+ #: inc-options/backend_options.php:116
263
+ #: inc-options/backend_options.php:126
264
+ #: inc-options/backend_options.php:155
265
  #@ adminimize
266
  msgid "Default"
267
  msgstr "Standard"
268
 
269
+ #: inc-options/backend_options.php:34
270
+ #: inc-options/backend_options.php:57
271
+ #: inc-options/backend_options.php:67
272
  #@ adminimize
273
  msgid "Hide"
274
  msgstr "Ausblenden"
275
 
276
+ #: inc-options/backend_options.php:35
277
  #@ adminimize
278
  msgid "Only logout"
279
  msgstr "nur Abmelden"
280
 
281
+ #: inc-options/backend_options.php:36
282
  #@ adminimize
283
  msgid "User &amp; Logout"
284
  msgstr "User &amp; Abmelden"
285
 
286
+ #: inc-options/backend_options.php:37
287
  #@ adminimize
288
  msgid "The &quot;User-Info-area&quot; is on the top right side of the backend. You can hide or reduced show."
289
  msgstr "Der &quot;User-Info-Bereich&quot; ist im oberen rechten Bereich zu finden und kann ausgeblendet oder reduziert dargestellt werden."
290
 
291
+ #: inc-options/backend_options.php:42
292
  #@ adminimize
293
  msgid "Change User-Info, redirect to"
294
  msgstr "User Info ge&auml;ndert, Weiterleitung nach"
295
 
296
+ #: inc-options/backend_options.php:47
297
  #@ adminimize
298
  msgid "Frontpage of the Blog"
299
  msgstr "Startseite des Blog"
300
 
301
+ #: inc-options/backend_options.php:48
302
  #@ adminimize
303
  msgid "When the &quot;User-Info-area&quot; change it, then it is possible to change the redirect."
304
  msgstr "Wenn der &quot;User-Info-Bereich&quot; ge&auml;ndert wird, dann kann die die Weiterleitung nach einem Logout ge&auml;ndert werden."
305
 
306
+ #: inc-options/backend_options.php:52
307
  #@ adminimize
308
  msgid "Footer"
309
  msgstr "Footer"
310
 
311
+ #: inc-options/backend_options.php:58
312
  #@ adminimize
313
  msgid "The Footer-area can hide, include all links and details."
314
  msgstr "Der Footer-Bereich kann deaktiviert werden, inklusive aller Links und Hinweise."
315
 
316
+ #: inc-options/backend_options.php:72
317
  #@ adminimize
318
  msgid "WriteScroll"
319
  msgstr "WriteScroll"
320
 
321
+ #: inc-options/backend_options.php:23
322
+ #: inc-options/backend_options.php:77
323
+ #: inc-options/backend_options.php:87
324
+ #: inc-options/backend_options.php:97
325
+ #: inc-options/backend_options.php:107
326
+ #: inc-options/backend_options.php:117
327
+ #: inc-options/backend_options.php:127
328
  #@ adminimize
329
  msgid "Activate"
330
  msgstr "Aktiv"
331
 
332
+ #: inc-options/backend_options.php:78
333
  #@ adminimize
334
  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."
335
  msgstr "Automatisches Scrollen zum Editor beim Aufruf der Seite Schreiben in Beitr&auml;ge und Seite."
336
 
337
+ #: inc-options/backend_options.php:82
338
  #@ adminimize
339
  msgid "Timestamp"
340
  msgstr "Timestamp"
341
 
342
+ #: inc-options/backend_options.php:88
343
  #@ adminimize
344
  msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
345
  msgstr "Das Feld zum &Auml;ndern des Ver&ouml;ffentlichungsdatum ist immer ge&ouml;ffnet."
346
 
347
+ #: inc-options/backend_options.php:92
348
  #@ adminimize
349
  msgid "Thickbox FullScreen"
350
  msgstr "Thickbox FullScreen"
351
 
352
+ #: inc-options/backend_options.php:102
353
  #@ adminimize
354
  msgid "Flashuploader"
355
  msgstr "Flashuploader"
356
 
357
+ #: inc-options/backend_options.php:108
358
  #@ adminimize
359
  msgid "Disable the flashuploader and users use only the standard uploader."
360
  msgstr "Deaktiviere den Flashuploader und Nutzer können nur den Standard-Uploader erreichen."
361
 
362
+ #: inc-options/backend_options.php:122
363
  #@ adminimize
364
  msgid "Advice in Footer"
365
  msgstr "Hinweis im Footer"
366
 
367
+ #: inc-options/backend_options.php:156
368
  #@ adminimize
369
  msgid "Manage Posts"
370
  msgstr "Verwalten Beitr&auml;ge"
371
 
372
+ #: inc-options/backend_options.php:157
373
  #@ adminimize
374
  msgid "Manage Pages"
375
  msgstr "Verwalten Seiten"
376
 
377
+ #: inc-options/backend_options.php:158
378
  #@ adminimize
379
  msgid "Write Post"
380
  msgstr "Schreiben Beitrag"
381
 
382
+ #: inc-options/backend_options.php:159
383
  #@ adminimize
384
  msgid "Write Page"
385
  msgstr "Schreiben Seite"
386
 
387
+ #: inc-options/backend_options.php:160
388
+ #: inc-options/menu_options.php:98
389
  #@ adminimize
390
  msgid "Comments"
391
  msgstr "Kommentare"
392
 
393
+ #: inc-options/backend_options.php:161
394
  #@ adminimize
395
  msgid "other Page"
396
  msgstr "andere Seite"
397
 
398
+ #: inc-options/backend_options.php:173
399
+ #: inc-options/global_options.php:114
400
+ #: inc-options/links_options.php:118
401
+ #: inc-options/menu_options.php:334
402
+ #: inc-options/wp_nav_menu_options.php:139
403
+ #: inc-options/write_page_options.php:79
404
+ #: inc-options/write_post_options.php:80
405
  #@ adminimize
406
  msgid "Update Options"
407
  msgstr "Einstellungen aktualisieren"
408
 
409
+ #: inc-options/global_options.php:8
410
+ #: inc-options/minimenu.php:45
411
  #@ adminimize
412
  msgid "Global options"
413
  msgstr "Globale Einstellungen"
414
 
415
+ #: inc-options/global_options.php:15
416
+ #: inc-options/global_options.php:89
417
+ #: inc-options/links_options.php:15
418
+ #: inc-options/links_options.php:93
419
+ #: inc-options/wp_nav_menu_options.php:14
420
+ #: inc-options/wp_nav_menu_options.php:114
421
+ #: inc-options/write_page_options.php:54
422
+ #: inc-options/write_post_options.php:55
423
  #@ adminimize
424
  msgid "Option"
425
  msgstr "Einstellung"
426
 
427
+ #: inc-options/global_options.php:18
428
+ #: inc-options/links_options.php:18
429
+ #: inc-options/menu_options.php:18
430
+ #: inc-options/wp_nav_menu_options.php:17
431
+ #: inc-options/write_page_options.php:17
432
+ #: inc-options/write_post_options.php:18
433
  #@ adminimize
434
  msgid "Deactivate for"
435
  msgstr "Deaktiviere für"
436
 
437
+ #: inc-options/global_options.php:40
438
  #@ adminimize
439
  msgid "Favorite Actions"
440
  msgstr "Favorisierte Aktionen"
441
 
442
+ #: inc-options/global_options.php:41
443
  #@ adminimize
444
  msgid "Screen-Meta"
445
  msgstr "Screen-Meta"
446
 
447
+ #: inc-options/global_options.php:42
448
+ #: inc-options/menu_options.php:89
449
+ #: inc-options/menu_options.php:185
450
+ #: inc-options/wp_nav_menu_options.php:41
451
  #@ adminimize
452
  #@ default
453
  msgid "Screen Options"
454
  msgstr "kontextabhängige Optionen"
455
 
456
+ #: inc-options/global_options.php:43
457
  #@ adminimize
458
  msgid "Contextual Help"
459
  msgstr "kontextabhängig Hilfe"
460
 
461
+ #: inc-options/global_options.php:44
462
  #@ adminimize
463
  msgid "Admin Color Scheme"
464
  msgstr "Farbschema verwalten"
465
 
466
+ #: inc-options/global_options.php:88
467
+ #: inc-options/links_options.php:92
468
+ #: inc-options/wp_nav_menu_options.php:113
469
  #@ adminimize
470
  msgid "Your own options"
471
  msgstr "Deine eigenen Einstellungen"
472
 
473
+ #: inc-options/global_options.php:88
474
+ #: inc-options/links_options.php:92
475
+ #: inc-options/wp_nav_menu_options.php:113
476
+ #: inc-options/write_page_options.php:53
477
+ #: inc-options/write_post_options.php:54
478
  #@ adminimize
479
  msgid "ID or class"
480
  msgstr "ID oder Klasse"
481
 
482
+ #: inc-options/global_options.php:95
483
+ #: inc-options/links_options.php:99
484
+ #: inc-options/wp_nav_menu_options.php:120
485
+ #: inc-options/write_page_options.php:60
486
+ #: inc-options/write_post_options.php:61
487
  #@ adminimize
488
  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."
489
  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."
490
 
491
+ #: inc-options/global_options.php:101
492
+ #: inc-options/links_options.php:105
493
+ #: inc-options/wp_nav_menu_options.php:126
494
+ #: inc-options/write_page_options.php:66
495
+ #: inc-options/write_post_options.php:67
496
  #@ adminimize
497
  msgid "Possible nomination for ID or class. Separate multiple nominations through a carriage return."
498
  msgstr "Mögliche Benennung der ID oder Klasse. Trenne Werte durch eine neue Zeile."
499
 
500
+ #: inc-options/global_options.php:106
501
+ #: inc-options/links_options.php:110
502
+ #: inc-options/wp_nav_menu_options.php:131
503
+ #: inc-options/write_page_options.php:71
504
+ #: inc-options/write_post_options.php:72
505
  #@ adminimize
506
  msgid "Possible IDs or classes. Separate multiple values through a carriage return."
507
  msgstr "Mögliche IDs oder Klassen. Trenne Werte durch eine neue Zeile."
508
 
509
+ #: inc-options/menu_options.php:8
510
+ #: inc-options/minimenu.php:48
511
  #@ adminimize
512
  msgid "Menu Options"
513
  msgstr "Menu Einstellungen"
514
 
515
+ #: inc-options/menu_options.php:15
516
  #@ adminimize
517
  msgid "Menu options - Menu, <span style=\\\"font-weight: 400;\\\">Submenu</span>"
518
  msgstr "Menu Einstellungen - Menu, <span style=\"font-weight: 400;\">Submenu</span>"
519
 
520
+ #: inc-options/menu_options.php:88
521
+ #: inc-options/menu_options.php:184
522
+ #: inc-options/wp_nav_menu_options.php:40
523
  #@ default
524
  msgid "Help"
525
  msgstr ""
526
 
527
+ #: inc-options/menu_options.php:91
528
+ #: inc-options/menu_options.php:187
529
  #@ adminimize
530
  msgid "Permalink"
531
  msgstr "Permalink"
532
 
533
+ #: inc-options/menu_options.php:95
534
  #@ adminimize
535
  msgid "Excerpt"
536
  msgstr "Auszug"
537
 
538
+ #: inc-options/menu_options.php:96
539
  #@ adminimize
540
  msgid "Trackbacks"
541
  msgstr "Trackbacks"
542
 
543
+ #: inc-options/menu_options.php:97
544
+ #: inc-options/menu_options.php:188
545
  #@ default
546
  msgid "Custom Fields"
547
  msgstr "Benutzerdefinierte Felder"
548
 
549
+ #: inc-options/menu_options.php:99
550
  #@ adminimize
551
  msgid "Password Protect This Post"
552
  msgstr "Diesen Artikel durch ein Passwort sch&uuml;tzen"
553
 
554
+ #: inc-options/menu_options.php:100
555
  #@ default
556
  msgid "Post Author"
557
  msgstr "Autor"
558
 
559
+ #: inc-options/menu_options.php:101
560
  #@ default
561
  msgid "Post Revisions"
562
  msgstr "Post Revisions"
563
 
564
+ #: inc-options/menu_options.php:102
565
  #@ adminimize
566
  msgid "Related, Shortcuts"
567
  msgstr "Siehe auch, Tastaturk&uuml;rzel"
568
 
569
+ #: inc-options/menu_options.php:103
570
+ #: inc-options/menu_options.php:197
571
  #@ adminimize
572
  msgid "Messenges"
573
  msgstr "Mitteilungen"
574
 
575
+ #: inc-options/menu_options.php:104
576
+ #: inc-options/menu_options.php:198
577
  #@ adminimize
578
  msgid "h2: Advanced Options"
579
  msgstr "h2: Erweiterte Einstellungen"
580
 
581
+ #: inc-options/menu_options.php:105
582
+ #: inc-options/menu_options.php:199
583
  #@ adminimize
584
  msgid "Media Buttons (all)"
585
  msgstr "Media Buttons (alle)"
586
 
587
+ #: inc-options/menu_options.php:106
588
+ #: inc-options/menu_options.php:200
589
  #@ adminimize
590
  msgid "Word count"
591
  msgstr "Word count"
592
 
593
+ #: inc-options/menu_options.php:107
594
  #@ default
595
  msgid "Post Slug"
596
  msgstr ""
597
 
598
+ #: inc-options/links_options.php:48
599
+ #: inc-options/menu_options.php:108
600
+ #: inc-options/menu_options.php:202
601
  #@ adminimize
602
  msgid "Publish Actions"
603
  msgstr "Publish Actions"
604
 
605
+ #: inc-options/menu_options.php:109
606
+ #: inc-options/menu_options.php:203
607
  #@ default
608
  msgid "Discussion"
609
  msgstr ""
610
 
611
+ #: inc-options/menu_options.php:114
612
  #@ default
613
  msgid "Post Thumbnail"
614
  msgstr ""
615
 
616
+ #: inc-options/menu_options.php:116
617
+ #: inc-options/menu_options.php:210
618
  #@ default
619
  #@ adminimize
620
  msgid "Suggested tags from"
621
  msgstr "Suggested tags from"
622
 
623
+ #: inc-options/menu_options.php:118
624
  #@ default
625
  msgid "Text Control"
626
  msgstr "Text Control"
627
 
628
+ #: inc-options/menu_options.php:120
629
+ #: inc-options/menu_options.php:212
630
  #@ default
631
  msgid "HTML Special Characters"
632
  msgstr "HTML Special Characters"
633
 
634
+ #: inc-options/menu_options.php:122
635
  #@ default
636
  msgid "All in One SEO Pack"
637
  msgstr ""
638
 
639
+ #: inc-options/menu_options.php:189
640
  #@ adminimize
641
  msgid "Comments &amp; Pings"
642
  msgstr "Kommentare &amp; Pings"
643
 
644
+ #: inc-options/menu_options.php:190
645
  #@ adminimize
646
  msgid "Password Protect This Page"
647
  msgstr "Diese Seite mit einem Passwort versehen"
648
 
649
+ #: inc-options/menu_options.php:191
650
  #@ default
651
  msgid "Attributes"
652
  msgstr ""
653
 
654
+ #: inc-options/menu_options.php:192
655
  #@ adminimize
656
  msgid "Page Template"
657
  msgstr "Seiten Template"
658
 
659
+ #: inc-options/menu_options.php:193
660
  #@ adminimize
661
  msgid "Page Order"
662
  msgstr "Reihenfolge"
663
 
664
+ #: inc-options/menu_options.php:194
665
  #@ default
666
  msgid "Page Author"
667
  msgstr "Seitenautor"
668
 
669
+ #: inc-options/menu_options.php:195
670
  #@ default
671
  msgid "Page Revisions"
672
  msgstr "Page Revisions"
673
 
674
+ #: inc-options/menu_options.php:196
675
  #@ adminimize
676
  msgid "Related"
677
  msgstr "Siehe auch"
678
 
679
+ #: inc-options/menu_options.php:201
680
  #@ default
681
  msgid "Page Slug"
682
  msgstr ""
683
 
684
+ #: inc-options/menu_options.php:208
685
  #@ default
686
  msgid "Page Image"
687
  msgstr ""
688
 
689
+ #: inc-options/menu_options.php:250
690
+ #: inc-options/menu_options.php:298
691
  #@ adminimize
692
  msgid "After activate the check box it heavy attitudes will change."
693
  msgstr "Wenn die Checkbox aktiv ist, dann wird das Ändern von Einstellungen erschwert."
694
 
695
+ #: inc-options/menu_options.php:281
696
  #@ default
697
  msgid "Profile"
698
  msgstr "Profile"
699
 
700
+ #: inc-options/minimenu.php:51
701
+ #: inc-options/write_post_options.php:8
702
+ #: inc-options/write_post_options.php:15
703
  #@ adminimize
704
  msgid "Write options - Post"
705
  msgstr "Schreiben Einstellungen - Beitr&auml;ge"
706
 
707
+ #: inc-options/write_post_options.php:54
708
  #@ adminimize
709
  msgid "Your own post options"
710
  msgstr "Deine eigenen Beitrags-Einstellungen"
711
 
712
+ #: inc-options/minimenu.php:54
713
+ #: inc-options/write_page_options.php:7
714
+ #: inc-options/write_page_options.php:14
715
  #@ adminimize
716
  msgid "Write options - Page"
717
  msgstr "Schreiben Einstellungen - Seiten"
718
 
719
+ #: inc-options/write_page_options.php:53
720
  #@ adminimize
721
  msgid "Your own page options"
722
  msgstr "Deine eigenen Seiten-Einstellungen"
723
 
724
+ #: inc-options/links_options.php:8
725
+ #: inc-options/minimenu.php:57
726
  #@ adminimize
727
  msgid "Links options"
728
  msgstr "Link Einstellungen"
729
 
730
+ #: inc-options/links_options.php:41
731
  #@ default
732
  msgid "Name"
733
  msgstr "Name"
734
 
735
+ #: inc-options/links_options.php:42
736
  #@ default
737
  msgid "Web Address"
738
  msgstr "Web-Adresse"
739
 
740
+ #: inc-options/links_options.php:43
741
  #@ default
742
  msgid "Description"
743
  msgstr "Beschreibung"
744
 
745
+ #: inc-options/links_options.php:45
746
  #@ default
747
  msgid "Target"
748
  msgstr "Target"
749
 
750
+ #: inc-options/links_options.php:46
751
  #@ default
752
  msgid "Link Relationship (XFN)"
753
  msgstr "Link-Beziehungen (XFN)"
754
 
755
+ #: inc-options/links_options.php:47
756
  #@ default
757
  msgid "Advanced"
758
  msgstr "Erweitert"
759
 
760
+ #: adminimize_page.php:143
761
+ #: adminimize_page.php:228
762
+ #: inc-options/minimenu.php:63
763
  #@ adminimize
764
  msgid "Set Theme"
765
  msgstr "Theme zuweisen"
766
 
767
+ #: adminimize_page.php:150
768
  #@ adminimize
769
  msgid "For better peformance with many users on your blog; load only userlist, when you will change the theme options for users."
770
  msgstr "Für eine bessere Performance bei vielen Usern in deinem Blog werden die Userdaten nur nach Aufforderung geladen."
771
 
772
+ #: adminimize_page.php:153
773
  #@ adminimize
774
  msgid "Load User Data"
775
  msgstr "Lade User Daten"
776
 
777
+ #: adminimize_page.php:164
778
  #@ default
779
  msgid "User-ID"
780
  msgstr "User-ID"
781
 
782
+ #: adminimize_page.php:165
783
  #@ default
784
  msgid "Username"
785
  msgstr "Benutzername"
786
 
787
+ #: adminimize_page.php:166
788
  #@ default
789
  msgid "Display name publicly as"
790
  msgstr "Name im Blog"
791
 
792
+ #: adminimize_page.php:167
793
  #@ default
794
  msgid "Admin-Color Scheme"
795
  msgstr "Admin-Color Scheme"
796
 
797
+ #: adminimize_page.php:168
798
  #@ default
799
  msgid "User Level"
800
  msgstr "User Level"
801
 
802
+ #: adminimize_page.php:169
803
  #@ default
804
  msgid "Role"
805
  msgstr "Rolle"
806
 
807
+ #: adminimize_page.php:276
808
+ #: inc-options/minimenu.php:69
809
  #@ adminimize
810
  msgid "Deinstall Options"
811
  msgstr "Einstellungen deinstallieren"
812
 
813
+ #: adminimize_page.php:279
814
  #@ adminimize
815
  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."
816
  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!"
817
 
818
+ #: adminimize_page.php:283
819
  #@ adminimize
820
  msgid "Delete Options"
821
  msgstr "Einstellungen Löschen"
822
 
823
+ #: adminimize_page.php:297
824
+ #: inc-options/minimenu.php:13
825
+ #: inc-options/minimenu.php:72
826
  #@ adminimize
827
  msgid "About the plugin"
828
  msgstr "&Uuml;ber das Plugin"
829
 
830
+ #: adminimize_page.php:300
831
+ #: inc-options/minimenu.php:15
832
  #@ adminimize
833
  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."
834
  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."
835
 
836
+ #: adminimize_page.php:306
837
+ #: inc-options/minimenu.php:21
838
  #@ adminimize
839
  msgid "PayPal - The safer, easier way to pay online!"
840
  msgstr "PayPal - Der sichere und einfache Weg zu zahlen!"
841
 
842
+ #: adminimize_page.php:310
843
+ #: inc-options/minimenu.php:25
844
  #@ adminimize
845
  msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a> or donate."
846
  msgstr "Du willst Danke sagen? Besuche meine <a href=\"http://bueltge.de/wunschliste/\">Wunschliste</a> oder spende."
847
 
848
+ #: adminimize.php:114
849
  #@ adminimize
850
  msgid "All entries in the database were imported."
851
  msgstr "Alle Einträge wurden in die Datenbank geschrieben."
852
 
853
+ #: adminimize_page.php:241
854
+ #: inc-options/minimenu.php:66
855
  #@ adminimize
856
  msgid "Export/Import Options"
857
  msgstr "Export/Import Einstellungen"
858
 
859
+ #: adminimize_page.php:245
860
  #@ adminimize
861
  msgid "Export"
862
  msgstr "Export"
863
 
864
+ #: adminimize_page.php:250
865
  #@ adminimize
866
  msgid "Export &raquo;"
867
  msgstr "Exportieren &raquo;"
868
 
869
+ #: adminimize_page.php:254
870
  #@ adminimize
871
  msgid "Import"
872
  msgstr "Import"
873
 
874
+ #: adminimize_page.php:259
875
  #@ adminimize
876
  msgid "Choose a file from your computer"
877
  msgstr "Wähle eine Datei vom Rechner"
878
 
879
+ #: adminimize_page.php:264
880
  #@ adminimize
881
  msgid "Upload file and import &raquo;"
882
  msgstr "Hochladen der Datei und importieren &raquo;"
883
 
884
+ #: inc-options/minimenu.php:38
885
  #@ adminimize
886
  msgid "MiniMenu"
887
  msgstr "MiniMenu"
888
 
889
+ #: adminimize_page.php:233
890
+ #: adminimize_page.php:267
891
+ #: adminimize_page.php:288
892
+ #: adminimize_page.php:314
893
+ #: inc-options/backend_options.php:175
894
+ #: inc-options/global_options.php:116
895
+ #: inc-options/links_options.php:121
896
+ #: inc-options/menu_options.php:336
897
+ #: inc-options/wp_nav_menu_options.php:141
898
+ #: inc-options/write_page_options.php:81
899
+ #: inc-options/write_post_options.php:82
900
  #@ adminimize
901
  msgid "scroll to top"
902
  msgstr "Nach oben"
903
 
904
+ #: adminimize_page.php:247
905
  #@ adminimize
906
  msgid "You can save a .seq file with your options."
907
  msgstr "Du kannst deine Einstellungen in einer .seq Datei speichern."
908
 
909
+ #: adminimize_page.php:257
910
  #@ adminimize
911
  msgid "Choose a Adminimize (<em>.seq</em>) file to upload, then click <em>Upload file and import</em>."
912
  msgstr "Wähle eine Adminimize (<em>.seq</em>) Datei zum hoch laden und dann klick <em>Hochladen der Datei und importieren</em>"
913
 
914
+ #: inc-options/backend_options.php:112
915
  #@ adminimize
916
  msgid "Category Height"
917
  msgstr "Kategorie-Höhe"
918
 
919
+ #: inc-options/backend_options.php:118
920
  #@ adminimize
921
  msgid "View the Meta Box with Categories in the full height, no scrollbar or whitespace."
922
  msgstr "Stellt in die Meta Box der Kategorien in voller Höhe dar, kein Scrollbar und kein Leerraum."
923
 
924
+ #: inc-options/backend_options.php:129
925
  #@ adminimize
926
  msgid "In the Footer you can display an advice for changing the Default-design, (x)HTML is possible."
927
  msgstr "Im Footer kann ein Hinweis auf die aktive Ver&auml;nderung des Standard-Layout gesetzt werden, (x)HTML erlaubt."
928
 
929
+ #: inc-options/backend_options.php:151
930
  #@ adminimize
931
  msgid "Dashboard deactivate, redirect to"
932
  msgstr "Dashboard inaktiv, Weiterleitung nach"
933
 
934
+ #: inc-options/menu_options.php:110
935
+ #: inc-options/menu_options.php:204
 
 
 
 
 
936
  #@ default
937
  msgid "HTML Editor Button"
938
  msgstr ""
939
 
940
+ #: inc-options/backend_options.php:98
941
  #@ adminimize
942
  msgid "All Thickbox-function use the full area of the browser. Thickbox is for example in upload media-files."
943
  msgstr "Alle Thickbox-Funktion verwenden den vollständigen Bereich des Browsers. Thickbox ist beispielsweise in der Medien-Upload-Funktion."
966
  msgid "http://bueltge.de/"
967
  msgstr ""
968
 
969
+ #: inc-options/backend_options.php:62
 
 
 
 
 
 
970
  #@ adminimize
971
  msgid "Header"
972
  msgstr "Header"
973
 
974
+ #: inc-options/backend_options.php:68
975
  #@ adminimize
976
  msgid "The Header-area can hide, include all links and details."
977
  msgstr "Der header-Bereich kann ausgeblendet werden, inkl. aller Links und Details."
978
 
979
+ #: inc-options/menu_options.php:90
980
+ #: inc-options/menu_options.php:186
981
  #@ adminimize
982
  msgid "Title"
983
+ msgstr "Title"
984
+
985
+ #. translators: plugin header field 'Version'
986
+ #: adminimize.php:0
987
+ #@ adminimize
988
+ msgid "1.7.15"
989
+ msgstr ""
990
+
991
+ #: inc-options/backend_options.php:18
992
+ #@ adminimize
993
+ msgid "Exclude Super Admin"
994
+ msgstr "Ausschließen des Super Admin"
995
+
996
+ #: inc-options/backend_options.php:24
997
+ #@ adminimize
998
+ msgid "Exclude the Super Admin on a WP Multisite Install from all limitations of this plugin."
999
+ msgstr "Schließe den Super Admin in einer WordPress Multisite Installation von allen Restriktionen dieses Plugins aus."
1000
+
1001
+ #: inc-options/backend_options.php:164
1002
+ #@ adminimize
1003
+ msgid "You have deactivated the Dashboard, please select a page for redirection or define custom url, include http://?"
1004
+ msgstr "Du hast das Dashboard deaktiviert; bitte wähle eine Seite für die Weiterleitung oder definiere eine eigene URL, inklusive http://"
1005
+
1006
+ #: inc-options/global_options.php:39
1007
+ #@ adminimize
1008
+ msgid "Admin Bar"
1009
+ msgstr "Admin Bar"
1010
+
1011
+ #: inc-options/minimenu.php:60
1012
+ #@ adminimize
1013
+ msgid "WP Nav Menu"
1014
+ msgstr "WP Nav Menü"
1015
+
1016
+ #: inc-options/wp_nav_menu_options.php:7
1017
+ #@ adminimize
1018
+ msgid "WP Nav Menu options"
1019
+ msgstr "WP Nav Menü Einstellungen"
1020
+
1021
+ #: inc-options/wp_nav_menu_options.php:42
1022
+ #: inc-options/wp_nav_menu_options.php:48
1023
+ #@ default
1024
+ msgid "Theme Locations"
1025
+ msgstr ""
1026
+
1027
+ #: inc-options/wp_nav_menu_options.php:43
1028
+ #@ default
1029
+ msgid "Custom Links"
1030
+ msgstr ""
1031
+
1032
+ #: inc-options/wp_nav_menu_options.php:44
1033
+ #@ default
1034
+ msgid "#"
1035
+ msgstr ""
1036
+
1037
+ #: inc-options/wp_nav_menu_options.php:44
1038
+ #@ default
1039
+ msgid "Add menu"
1040
  msgstr ""
1041
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ 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.14
8
 
9
  Adminimize is a WordPress plugin that lets you hide 'unnecessary' items from the WordPress backend and many many more ...
10
 
@@ -98,6 +98,16 @@ See on [the official website](http://bueltge.de/wordpress-admin-theme-adminimize
98
  1. Adminimize Theme how in WordPress 2.3
99
 
100
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
101
  = v1.7.14 (03/03/2011) =
102
  * Maintenance: remove php notice on role editor
103
  * Maintenance: Add fallback for dont load menu/submenu
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.15
8
 
9
  Adminimize is a WordPress plugin that lets you hide 'unnecessary' items from the WordPress backend and many many more ...
10
 
98
  1. Adminimize Theme how in WordPress 2.3
99
 
100
  == Changelog ==
101
+ = v1.7.15 (03/30/2011) =
102
+ * Change functions for reduce WP Nav Menu
103
+ * change to check for super admin; add new function and option on Global Options to set this
104
+ * Maintenance: check for functions in Multisite, Superadmin for use the plugin smaller WP 3.0
105
+ * Feature: add css for more usability on settings
106
+ * Bugfix: custom values for WP Nav Menu
107
+ * Add Option for Super Admin
108
+ * Change option for rewrite, after deactivate Dashboard; now you use a custom url, incl. http://
109
+ * Maintenance: Language File
110
+
111
  = v1.7.14 (03/03/2011) =
112
  * Maintenance: remove php notice on role editor
113
  * Maintenance: Add fallback for dont load menu/submenu
screenshot-1.png DELETED
Binary file
screenshot-2.png DELETED
Binary file
screenshot-3.png DELETED
Binary file
screenshot-4.png DELETED
Binary file
screenshot-5.png DELETED
Binary file
screenshot-6.png DELETED
Binary file