Adminimize - Version 1.7.20

Version Description

Download this release

Release Info

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

Code changes from version 1.7.19 to 1.7.20

Files changed (81) hide show
  1. Adminimize-da_DK.txt +0 -0
  2. adminimize.php +57 -15
  3. adminimize_page.php +3 -0
  4. css/colors-colorblind.css +0 -0
  5. css/colors-grey.css +0 -0
  6. css/colors-wp23.css +0 -0
  7. css/mw_admin.css +0 -0
  8. css/mw_admin27.css +0 -0
  9. css/mw_admin28_tweak.css +0 -0
  10. css/mw_basic.css +0 -0
  11. css/mw_big_sidebar.css +0 -0
  12. css/mw_cat.css +0 -0
  13. css/mw_cat_full.css +0 -0
  14. css/mw_classic.css +0 -0
  15. css/mw_classic27.css +0 -0
  16. css/mw_classic28_fixed.css +0 -0
  17. css/mw_classic28_fixed.dev.css +0 -0
  18. css/mw_classic28_save_50px.css +0 -0
  19. css/mw_classic28_tweak.css +0 -0
  20. css/mw_classic28_tweak.dev.css +0 -0
  21. css/mw_classic_lm.css +0 -0
  22. css/mw_classic_ozh_am.css +0 -0
  23. css/mw_colorblind.css +0 -0
  24. css/mw_fixed_header.css +0 -0
  25. css/mw_fixed_menu.css +0 -0
  26. css/mw_fresh.css +0 -0
  27. css/mw_fresh27.css +0 -0
  28. css/mw_fresh27.dev.css +0 -0
  29. css/mw_fresh28_fixed.css +0 -0
  30. css/mw_fresh28_fixed.dev.css +0 -0
  31. css/mw_fresh28_save_50px.css +0 -0
  32. css/mw_fresh28_tweak.css +0 -0
  33. css/mw_fresh28_tweak.dev.css +0 -0
  34. css/mw_fresh_lm.css +0 -0
  35. css/mw_fresh_ozh_am.css +0 -0
  36. css/mw_grey.css +0 -0
  37. css/mw_save_50px.css +0 -0
  38. css/mw_small_user_info.css +0 -0
  39. css/mw_small_user_info27.css +0 -0
  40. css/mw_small_user_info30.css +0 -0
  41. css/mw_small_user_info31.css +0 -0
  42. css/mw_small_user_info32.css +0 -0
  43. css/mw_wp23.css +0 -0
  44. css/style.css +0 -0
  45. inc-options/backend_options.php +0 -0
  46. inc-options/dashboard_options.php +131 -0
  47. inc-options/deinstall_options.php +0 -0
  48. inc-options/global_options.php +0 -0
  49. inc-options/im_export_options.php +0 -0
  50. inc-options/links_options.php +0 -0
  51. inc-options/menu_options.php +0 -0
  52. inc-options/minimenu.php +83 -84
  53. inc-options/theme_options.php +0 -0
  54. inc-options/wp_nav_menu_options.php +0 -0
  55. inc-options/write_cp_options.php +0 -0
  56. inc-options/write_page_options.php +0 -0
  57. inc-options/write_post_options.php +0 -0
  58. inc-setup/dashboard.php +76 -0
  59. js/remove_footer.js +3 -3
  60. js/remove_header.js +1 -1
  61. js/tb_window.js +0 -0
  62. js/timestamp.js +0 -0
  63. js/writescroll.js +0 -0
  64. languages/adminimize-by_BY.mo +0 -0
  65. languages/adminimize-by_BY.po +0 -0
  66. languages/adminimize-da_DK.mo +0 -0
  67. languages/adminimize-da_DK.po +0 -0
  68. languages/adminimize-de_DE.mo +0 -0
  69. languages/adminimize-de_DE.po +167 -141
  70. languages/adminimize-es_ES.mo +0 -0
  71. languages/adminimize-es_ES.po +0 -0
  72. languages/adminimize-fr_FR.mo +0 -0
  73. languages/adminimize-fr_FR.po +0 -0
  74. languages/adminimize-it_IT.mo +0 -0
  75. languages/adminimize-it_IT.po +0 -0
  76. languages/adminimize-nl_NL.mo +0 -0
  77. languages/adminimize-nl_NL.po +0 -0
  78. languages/adminimize-tr.po +0 -0
  79. languages/adminimize-xx_XX.pot +506 -350
  80. license.txt +0 -0
  81. readme.txt +6 -2
Adminimize-da_DK.txt CHANGED
File without changes
adminimize.php CHANGED
@@ -12,14 +12,16 @@ 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.19
16
- License: GPL
17
  */
18
 
19
  /**
20
  * The stylesheet and the initial idea is from Eric A. Meyer, http://meyerweb.com/
21
  * and i have written a plugin with many options on the basis
22
  * of differently user-right and a user-friendly range in admin-area.
 
 
23
  */
24
 
25
 
@@ -66,7 +68,11 @@ function _mw_adminimize_get_plugin_data( $value = 'Version' ) {
66
 
67
  function _mw_adminimize_textdomain() {
68
 
69
- load_plugin_textdomain( FB_ADMINIMIZE_TEXTDOMAIN, FALSE, dirname( FB_ADMINIMIZE_BASENAME ) . '/languages' );
 
 
 
 
70
  }
71
 
72
 
@@ -117,7 +123,7 @@ class _mw_adminimize_message_class {
117
 
118
  $errorMessage = $this->errors->get_error_message( $code );
119
 
120
- if ( $errorMessage == NULL )
121
  return __( 'Unknown error.', $this->localizion_name );
122
 
123
  return $errorMessage;
@@ -978,7 +984,7 @@ function _mw_adminimize_set_global_option() {
978
  }
979
 
980
  foreach ( $user_roles as $role ) {
981
- if ( !isset( $disabled_global_option_[$role]['0'] ) )
982
  $disabled_global_option_[$role]['0'] = '';
983
  }
984
 
@@ -987,7 +993,10 @@ function _mw_adminimize_set_global_option() {
987
  foreach ( $user_roles as $role ) {
988
  $user = wp_get_current_user();
989
  if ( is_array( $user->roles) && in_array( $role, $user->roles) ) {
990
- if ( current_user_can( $role ) && is_array( $disabled_global_option_[$role] ) ) {
 
 
 
991
  $global_options = implode( ', ', $disabled_global_option_[$role] );
992
  if ( _mw_adminimize_recursive_in_array( '.show-admin-bar', $disabled_global_option_[$role] ) )
993
  $remove_adminbar = TRUE;
@@ -1019,7 +1028,7 @@ function _mw_adminimize_remove_admin_bar() {
1019
  }
1020
 
1021
  foreach ( $user_roles as $role ) {
1022
- if ( !isset( $disabled_global_option_[$role]['0'] ) )
1023
  $disabled_global_option_[$role]['0'] = '';
1024
  }
1025
 
@@ -1028,7 +1037,9 @@ function _mw_adminimize_remove_admin_bar() {
1028
  foreach ( $user_roles as $role ) {
1029
  $user = wp_get_current_user();
1030
  if ( is_array( $user->roles) && in_array( $role, $user->roles) ) {
1031
- if ( current_user_can( $role ) && is_array( $disabled_global_option_[$role] ) ) {
 
 
1032
  $global_options = implode( ', ', $disabled_global_option_[$role] );
1033
  if ( _mw_adminimize_recursive_in_array( '.show-admin-bar', $disabled_global_option_[$role] ) )
1034
  $remove_adminbar = TRUE;
@@ -1067,7 +1078,7 @@ function _mw_adminimize_set_metabox_post_option() {
1067
  'mw_adminimize_disabled_metaboxes_post_' . $role . '_items'
1068
  );
1069
 
1070
- if ( !isset( $disabled_metaboxes_post_[$role]['0'] ) )
1071
  $disabled_metaboxes_post_[$role]['0'] = '';
1072
 
1073
  // new 1.7.8
@@ -1112,14 +1123,17 @@ function _mw_adminimize_set_metabox_page_option() {
1112
  'mw_adminimize_disabled_metaboxes_page_' . $role . '_items'
1113
  );
1114
 
1115
- if ( !isset( $disabled_metaboxes_page_[$role]['0'] ) )
1116
  $disabled_metaboxes_page_[$role]['0'] = '';
1117
 
1118
  // new 1.7.8
1119
  foreach ( $user_roles as $role ) {
1120
  $user = wp_get_current_user();
1121
  if ( is_array( $user->roles) && in_array( $role, $user->roles) ) {
1122
- if ( current_user_can( $role ) && is_array( $disabled_metaboxes_page_[$role] ) ) {
 
 
 
1123
  $metaboxes = implode( ',', $disabled_metaboxes_page_[$role] );
1124
  }
1125
  }
@@ -1223,7 +1237,10 @@ function _mw_adminimize_set_link_option() {
1223
  foreach ( $user_roles as $role ) {
1224
  $user = wp_get_current_user();
1225
  if ( is_array( $user->roles) && in_array( $role, $user->roles) ) {
1226
- if ( current_user_can( $role ) && is_array( $disabled_link_option_[$role] ) ) {
 
 
 
1227
  $link_options = implode( ',', $disabled_link_option_[$role] );
1228
  }
1229
  }
@@ -1257,7 +1274,7 @@ function _mw_adminimize_set_nav_menu_option() {
1257
  }
1258
 
1259
  foreach ( $user_roles as $role ) {
1260
- if ( !isset( $disabled_nav_menu_option_[$role]['0'] ) )
1261
  $disabled_nav_menu_option_[$role]['0'] = '';
1262
  }
1263
 
@@ -1265,7 +1282,10 @@ function _mw_adminimize_set_nav_menu_option() {
1265
  foreach ( $user_roles as $role ) {
1266
  $user = wp_get_current_user();
1267
  if ( is_array( $user->roles) && in_array( $role, $user->roles) ) {
1268
- if ( current_user_can( $role ) && is_array( $disabled_nav_menu_option_[$role] ) ) {
 
 
 
1269
  $nav_menu_options = implode( ',', $disabled_nav_menu_option_[$role] );
1270
  }
1271
  }
@@ -1301,7 +1321,7 @@ function _mw_adminimize_small_user_info() {
1301
  * include options-page in wp-admin
1302
  */
1303
  require_once( 'adminimize_page.php' );
1304
-
1305
 
1306
  /**
1307
  * credit in wp-footer
@@ -1581,6 +1601,13 @@ function _mw_adminimize_update() {
1581
  } else {
1582
  $adminimizeoptions['mw_adminimize_disabled_nav_menu_option_' . $role . '_items'] = array();
1583
  }
 
 
 
 
 
 
 
1584
  }
1585
 
1586
  // own options
@@ -1663,6 +1690,21 @@ function _mw_adminimize_update() {
1663
  $adminimizeoptions['_mw_adminimize_own_nav_menu_options'] = 0;
1664
  }
1665
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1666
  $adminimizeoptions['mw_adminimize_default_menu'] = $GLOBALS['menu'];
1667
  $adminimizeoptions['mw_adminimize_default_submenu'] = $GLOBALS['submenu'];
1668
 
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.20
16
+ License: GPLv2
17
  */
18
 
19
  /**
20
  * The stylesheet and the initial idea is from Eric A. Meyer, http://meyerweb.com/
21
  * and i have written a plugin with many options on the basis
22
  * of differently user-right and a user-friendly range in admin-area.
23
+ *
24
+ * :( grmpf i have so much wishes and hints form users, do use the plugin and its not possible to development this on my free time)
25
  */
26
 
27
 
68
 
69
  function _mw_adminimize_textdomain() {
70
 
71
+ load_plugin_textdomain(
72
+ _mw_adminimize_get_plugin_data( 'TextDomain' ),
73
+ FALSE,
74
+ dirname( FB_ADMINIMIZE_BASENAME ) . _mw_adminimize_get_plugin_data( 'DomainPath' )
75
+ );
76
  }
77
 
78
 
123
 
124
  $errorMessage = $this->errors->get_error_message( $code );
125
 
126
+ if ( NULL == $errorMessage )
127
  return __( 'Unknown error.', $this->localizion_name );
128
 
129
  return $errorMessage;
984
  }
985
 
986
  foreach ( $user_roles as $role ) {
987
+ if ( ! isset( $disabled_global_option_[$role]['0'] ) )
988
  $disabled_global_option_[$role]['0'] = '';
989
  }
990
 
993
  foreach ( $user_roles as $role ) {
994
  $user = wp_get_current_user();
995
  if ( is_array( $user->roles) && in_array( $role, $user->roles) ) {
996
+ if ( current_user_can( $role )
997
+ && isset( $disabled_global_option_[$role] )
998
+ && is_array( $disabled_global_option_[$role] )
999
+ ) {
1000
  $global_options = implode( ', ', $disabled_global_option_[$role] );
1001
  if ( _mw_adminimize_recursive_in_array( '.show-admin-bar', $disabled_global_option_[$role] ) )
1002
  $remove_adminbar = TRUE;
1028
  }
1029
 
1030
  foreach ( $user_roles as $role ) {
1031
+ if ( ! isset( $disabled_global_option_[$role]['0'] ) )
1032
  $disabled_global_option_[$role]['0'] = '';
1033
  }
1034
 
1037
  foreach ( $user_roles as $role ) {
1038
  $user = wp_get_current_user();
1039
  if ( is_array( $user->roles) && in_array( $role, $user->roles) ) {
1040
+ if ( current_user_can( $role )
1041
+ && isset( $disabled_global_option_[$role] )
1042
+ && is_array( $disabled_global_option_[$role] ) ) {
1043
  $global_options = implode( ', ', $disabled_global_option_[$role] );
1044
  if ( _mw_adminimize_recursive_in_array( '.show-admin-bar', $disabled_global_option_[$role] ) )
1045
  $remove_adminbar = TRUE;
1078
  'mw_adminimize_disabled_metaboxes_post_' . $role . '_items'
1079
  );
1080
 
1081
+ if ( ! isset( $disabled_metaboxes_post_[$role]['0'] ) )
1082
  $disabled_metaboxes_post_[$role]['0'] = '';
1083
 
1084
  // new 1.7.8
1123
  'mw_adminimize_disabled_metaboxes_page_' . $role . '_items'
1124
  );
1125
 
1126
+ if ( ! isset( $disabled_metaboxes_page_[$role]['0'] ) )
1127
  $disabled_metaboxes_page_[$role]['0'] = '';
1128
 
1129
  // new 1.7.8
1130
  foreach ( $user_roles as $role ) {
1131
  $user = wp_get_current_user();
1132
  if ( is_array( $user->roles) && in_array( $role, $user->roles) ) {
1133
+ if ( current_user_can( $role )
1134
+ && isset( $disabled_metaboxes_page_[$role] )
1135
+ && is_array( $disabled_metaboxes_page_[$role] )
1136
+ ) {
1137
  $metaboxes = implode( ',', $disabled_metaboxes_page_[$role] );
1138
  }
1139
  }
1237
  foreach ( $user_roles as $role ) {
1238
  $user = wp_get_current_user();
1239
  if ( is_array( $user->roles) && in_array( $role, $user->roles) ) {
1240
+ if ( current_user_can( $role )
1241
+ && isset( $disabled_link_option_[$role] )
1242
+ && is_array( $disabled_link_option_[$role] )
1243
+ ) {
1244
  $link_options = implode( ',', $disabled_link_option_[$role] );
1245
  }
1246
  }
1274
  }
1275
 
1276
  foreach ( $user_roles as $role ) {
1277
+ if ( ! isset( $disabled_nav_menu_option_[$role]['0'] ) )
1278
  $disabled_nav_menu_option_[$role]['0'] = '';
1279
  }
1280
 
1282
  foreach ( $user_roles as $role ) {
1283
  $user = wp_get_current_user();
1284
  if ( is_array( $user->roles) && in_array( $role, $user->roles) ) {
1285
+ if ( current_user_can( $role )
1286
+ && isset( $disabled_nav_menu_option_[$role] )
1287
+ && is_array( $disabled_nav_menu_option_[$role] )
1288
+ ) {
1289
  $nav_menu_options = implode( ',', $disabled_nav_menu_option_[$role] );
1290
  }
1291
  }
1321
  * include options-page in wp-admin
1322
  */
1323
  require_once( 'adminimize_page.php' );
1324
+ require_once( 'inc-setup/dashboard.php' );
1325
 
1326
  /**
1327
  * credit in wp-footer
1601
  } else {
1602
  $adminimizeoptions['mw_adminimize_disabled_nav_menu_option_' . $role . '_items'] = array();
1603
  }
1604
+
1605
+ // wp dashboard option
1606
+ if ( isset( $_POST['mw_adminimize_disabled_dashboard_option_' . $role . '_items'] ) ) {
1607
+ $adminimizeoptions['mw_adminimize_disabled_dashboard_option_' . $role . '_items'] = $_POST['mw_adminimize_disabled_dashboard_option_' . $role . '_items'];
1608
+ } else {
1609
+ $adminimizeoptions['mw_adminimize_disabled_dashboard_option_' . $role . '_items'] = array();
1610
+ }
1611
  }
1612
 
1613
  // own options
1690
  $adminimizeoptions['_mw_adminimize_own_nav_menu_options'] = 0;
1691
  }
1692
 
1693
+ // own dashboard options
1694
+ if ( isset( $_POST['_mw_adminimize_own_dashboard_values'] ) ) {
1695
+ $adminimizeoptions['_mw_adminimize_own_dashboard_values'] = stripslashes( $_POST['_mw_adminimize_own_dashboard_values'] );
1696
+ } else {
1697
+ $adminimizeoptions['_mw_adminimize_own_dashboard_values'] = 0;
1698
+ }
1699
+
1700
+ if ( isset( $_POST['_mw_adminimize_own_dashboard_options'] ) ) {
1701
+ $adminimizeoptions['_mw_adminimize_own_dashboard_options'] = stripslashes( $_POST['_mw_adminimize_own_dashboard_options'] );
1702
+ } else {
1703
+ $adminimizeoptions['_mw_adminimize_own_dashboard_options'] = 0;
1704
+ }
1705
+
1706
+ $adminimizeoptions['mw_adminimize_dashboard_widgets'] = _mw_adminimize_get_option_value('mw_adminimize_dashboard_widgets');
1707
+
1708
  $adminimizeoptions['mw_adminimize_default_menu'] = $GLOBALS['menu'];
1709
  $adminimizeoptions['mw_adminimize_default_submenu'] = $GLOBALS['submenu'];
1710
 
adminimize_page.php CHANGED
@@ -126,6 +126,9 @@ function _mw_adminimize_options() {
126
  // global options on all pages in backend for diffferent roles
127
  require_once('inc-options/global_options.php');
128
 
 
 
 
129
  // Menu Submenu Options
130
  require_once('inc-options/menu_options.php');
131
 
126
  // global options on all pages in backend for diffferent roles
127
  require_once('inc-options/global_options.php');
128
 
129
+ // dashboard options for different roles
130
+ require_once('inc-options/dashboard_options.php');
131
+
132
  // Menu Submenu Options
133
  require_once('inc-options/menu_options.php');
134
 
css/colors-colorblind.css CHANGED
File without changes
css/colors-grey.css CHANGED
File without changes
css/colors-wp23.css CHANGED
File without changes
css/mw_admin.css CHANGED
File without changes
css/mw_admin27.css CHANGED
File without changes
css/mw_admin28_tweak.css CHANGED
File without changes
css/mw_basic.css CHANGED
File without changes
css/mw_big_sidebar.css CHANGED
File without changes
css/mw_cat.css CHANGED
File without changes
css/mw_cat_full.css CHANGED
File without changes
css/mw_classic.css CHANGED
File without changes
css/mw_classic27.css CHANGED
File without changes
css/mw_classic28_fixed.css CHANGED
File without changes
css/mw_classic28_fixed.dev.css CHANGED
File without changes
css/mw_classic28_save_50px.css CHANGED
File without changes
css/mw_classic28_tweak.css CHANGED
File without changes
css/mw_classic28_tweak.dev.css CHANGED
File without changes
css/mw_classic_lm.css CHANGED
File without changes
css/mw_classic_ozh_am.css CHANGED
File without changes
css/mw_colorblind.css CHANGED
File without changes
css/mw_fixed_header.css CHANGED
File without changes
css/mw_fixed_menu.css CHANGED
File without changes
css/mw_fresh.css CHANGED
File without changes
css/mw_fresh27.css CHANGED
File without changes
css/mw_fresh27.dev.css CHANGED
File without changes
css/mw_fresh28_fixed.css CHANGED
File without changes
css/mw_fresh28_fixed.dev.css CHANGED
File without changes
css/mw_fresh28_save_50px.css CHANGED
File without changes
css/mw_fresh28_tweak.css CHANGED
File without changes
css/mw_fresh28_tweak.dev.css CHANGED
File without changes
css/mw_fresh_lm.css CHANGED
File without changes
css/mw_fresh_ozh_am.css CHANGED
File without changes
css/mw_grey.css CHANGED
File without changes
css/mw_save_50px.css CHANGED
File without changes
css/mw_small_user_info.css CHANGED
File without changes
css/mw_small_user_info27.css CHANGED
File without changes
css/mw_small_user_info30.css CHANGED
File without changes
css/mw_small_user_info31.css CHANGED
File without changes
css/mw_small_user_info32.css CHANGED
File without changes
css/mw_wp23.css CHANGED
File without changes
css/style.css CHANGED
File without changes
inc-options/backend_options.php CHANGED
File without changes
inc-options/dashboard_options.php ADDED
@@ -0,0 +1,131 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @package Adminimize
4
+ * @subpackage Dashboard Options
5
+ * @author Frank Bültge
6
+ */
7
+ if ( ! function_exists( 'add_action' ) ) {
8
+ echo "Hi there! I'm just a part of plugin, not much I can do when called directly.";
9
+ exit;
10
+ }
11
+
12
+ ?>
13
+
14
+ <div id="poststuff" class="ui-sortable meta-box-sortables">
15
+ <div class="postbox">
16
+ <div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
17
+ <h3 class="hndle" id="dashboard_options"><?php _e('Dashboard options', FB_ADMINIMIZE_TEXTDOMAIN ); ?></h3>
18
+ <div class="inside">
19
+ <br class="clear" />
20
+ <?php
21
+ // get widgets
22
+ $widgets = _mw_adminimize_get_option_value('mw_adminimize_dashboard_widgets');
23
+ if ( ! isset( $widgets ) ) {
24
+ echo '<p class="form-invalid">';
25
+ _e( 'To complete the installation for Dashboard Widgets you must visit your dashboard once and then come back to Settings > Adminimize to configure who has access to each widget.', FB_ADMINIMIZE_TEXTDOMAIN );
26
+ echo '</p>';
27
+ } else {
28
+ ?>
29
+
30
+ <table summary="config_edit_dashboard" class="widefat">
31
+ <thead>
32
+ <tr>
33
+ <th><?php _e('Option', FB_ADMINIMIZE_TEXTDOMAIN ); ?></th>
34
+ <?php
35
+ foreach ($user_roles_names as $role_name) { ?>
36
+ <th><?php _e('Deactivate for', FB_ADMINIMIZE_TEXTDOMAIN ); echo '<br/>' . $role_name; ?></th>
37
+ <?php } ?>
38
+ </tr>
39
+ </thead>
40
+
41
+ <tbody>
42
+ <?php
43
+ foreach ($user_roles as $role) {
44
+ $disabled_dashboard_option_[$role] = _mw_adminimize_get_option_value('mw_adminimize_disabled_dashboard_option_'. $role .'_items');
45
+ }
46
+
47
+ $dashboard_options = array();
48
+ $dashboard_options_names = array();
49
+
50
+ foreach ( $widgets as $widget ) {
51
+ array_push( $dashboard_options, $widget['id'] );
52
+ array_push( $dashboard_options_names, $widget['title'] );
53
+ }
54
+
55
+ $_mw_adminimize_own_dashboard_values = _mw_adminimize_get_option_value('_mw_adminimize_own_dashboard_values');
56
+ $_mw_adminimize_own_dashboard_values = preg_split( "/\r\n/", $_mw_adminimize_own_dashboard_values );
57
+ foreach ( (array) $_mw_adminimize_own_dashboard_values as $key => $_mw_adminimize_own_dashboard_value ) {
58
+ $_mw_adminimize_own_dashboard_value = trim($_mw_adminimize_own_dashboard_value);
59
+ array_push($dashboard_options, $_mw_adminimize_own_dashboard_value);
60
+ }
61
+
62
+ $_mw_adminimize_own_dashboard_options = _mw_adminimize_get_option_value('_mw_adminimize_own_dashboard_options');
63
+ $_mw_adminimize_own_dashboard_options = preg_split( "/\r\n/", $_mw_adminimize_own_dashboard_options );
64
+ foreach ( (array) $_mw_adminimize_own_dashboard_options as $key => $_mw_adminimize_own_dashboard_option ) {
65
+ $_mw_adminimize_own_dashboard_option = trim($_mw_adminimize_own_dashboard_option);
66
+ array_push($dashboard_options_names, $_mw_adminimize_own_dashboard_option);
67
+ }
68
+
69
+ $x = 0;
70
+ foreach ($dashboard_options as $index => $dashboard_option) {
71
+ if ( $dashboard_option != '') {
72
+ $checked_user_role_ = array();
73
+ foreach ($user_roles as $role) {
74
+ $checked_user_role_[$role] = ( isset($disabled_dashboard_option_[$role]) && in_array($dashboard_option, $disabled_dashboard_option_[$role]) ) ? ' checked="checked"' : '';
75
+ }
76
+ echo '<tr>' . "\n";
77
+ echo '<td>' . $dashboard_options_names[$index] . ' <span style="color:#ccc; font-weight: 400;">(' . $dashboard_option . ')</span> </td>' . "\n";
78
+ foreach ($user_roles as $role) {
79
+ echo '<td class="num"><input id="check_post'. $role . $x .'" type="checkbox"' . $checked_user_role_[$role] . ' name="mw_adminimize_disabled_dashboard_option_'. $role .'_items[]" value="' . $dashboard_option . '" /></td>' . "\n";
80
+ }
81
+ echo '</tr>' . "\n";
82
+ $x++;
83
+ }
84
+ }
85
+ ?>
86
+ </tbody>
87
+ </table>
88
+
89
+ <?php
90
+ //your own dashboard options
91
+ ?>
92
+ <br style="margin-top: 10px;" />
93
+ <table summary="config_edit_post" class="widefat">
94
+ <thead>
95
+ <tr>
96
+ <th><?php _e('Your own options', FB_ADMINIMIZE_TEXTDOMAIN ); echo '<br />'; _e('ID or class', FB_ADMINIMIZE_TEXTDOMAIN ); ?></th>
97
+ <th><?php echo '<br />'; _e('Option', FB_ADMINIMIZE_TEXTDOMAIN ); ?></th>
98
+ </tr>
99
+ </thead>
100
+
101
+ <tbody>
102
+ <tr valign="top">
103
+ <td colspan="2"><?php _e('It is possible to add your own IDs or classes from elements and tags. You can find IDs and classes with the FireBug Add-on for Firefox. Assign a value and the associate name per line.', FB_ADMINIMIZE_TEXTDOMAIN ); ?></td>
104
+ </tr>
105
+ <tr valign="top">
106
+ <td>
107
+ <textarea name="_mw_adminimize_own_dashboard_options" cols="60" rows="3" id="_mw_adminimize_own_dashboard_options" style="width: 95%;" ><?php echo _mw_adminimize_get_option_value('_mw_adminimize_own_dashboard_options'); ?></textarea>
108
+ <br />
109
+ <?php _e('Possible nomination for ID or class. Separate multiple nominations through a carriage return.', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
110
+ </td>
111
+ <td>
112
+ <textarea class="code" name="_mw_adminimize_own_dashboard_values" cols="60" rows="3" id="_mw_adminimize_own_dashboard_values" style="width: 95%;" ><?php echo _mw_adminimize_get_option_value('_mw_adminimize_own_dashboard_values'); ?></textarea>
113
+ <br />
114
+ <?php _e('Possible IDs or classes. Separate multiple values through a carriage return.', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
115
+ </td>
116
+ </tr>
117
+ </tbody>
118
+ </table>
119
+
120
+ <p id="submitbutton">
121
+ <input type="hidden" name="_mw_adminimize_action" value="_mw_adminimize_insert" />
122
+ <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'" />
123
+ </p>
124
+
125
+ <?php } // end if else $widgets ?>
126
+
127
+ <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>
128
+
129
+ </div>
130
+ </div>
131
+ </div>
inc-options/deinstall_options.php CHANGED
File without changes
inc-options/global_options.php CHANGED
File without changes
inc-options/im_export_options.php CHANGED
File without changes
inc-options/links_options.php CHANGED
File without changes
inc-options/menu_options.php CHANGED
File without changes
inc-options/minimenu.php CHANGED
@@ -12,93 +12,92 @@ if ( ! function_exists( 'add_action' ) ) {
12
 
13
  <?php screen_icon('tools'); ?>
14
  <h2><?php _e('Adminimize', FB_ADMINIMIZE_TEXTDOMAIN ); ?></h2>
15
- <div id="poststuff" class="metabox-holder has-right-sidebar">
16
-
17
- <div id="side-info-column" class="inner-sidebar">
18
- <div class="meta-box-sortables">
19
- <div id="about" class="postbox ">
20
- <div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
21
- <h3 class="hndle" id="about-sidebar"><?php _e('About the plugin', FB_ADMINIMIZE_TEXTDOMAIN ) ?></h3>
22
- <div class="inside">
23
- <p><?php _e('Further information: Visit the <a href="http://bueltge.de/wordpress-admin-theme-adminimize/674/">plugin homepage</a> for further information or to grab the latest version of this plugin.', FB_ADMINIMIZE_TEXTDOMAIN); ?></p>
24
- <p>
25
- <span style="float: left;">
26
- <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
27
- <input type="hidden" name="cmd" value="_s-xclick">
28
- <input type="hidden" name="hosted_button_id" value="4578111">
29
- <input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif" border="0" name="submit" alt="<?php _e('PayPal - The safer, easier way to pay online!', FB_ADMINIMIZE_TEXTDOMAIN); ?>">
30
- <img alt="" border="0" src="https://www.paypal.com/de_DE/i/scr/pixel.gif" width="1" height="1">
31
- </form>
32
- </span>
33
- <?php _e('You want to thank me? Visit my <a href="http://bueltge.de/wunschliste/">wishlist</a> or donate.', FB_ADMINIMIZE_TEXTDOMAIN); ?>
34
- </p>
35
- <p>&copy; Copyright 2008 - <?php echo date('Y'); ?> <a href="http://bueltge.de">Frank B&uuml;ltge</a></p>
36
- </div>
37
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
38
  </div>
39
  </div>
40
-
41
- <div id="post-body" class="has-sidebar">
42
- <div id="post-body-content" class="has-sidebar-content">
43
- <div id="normal-sortables" class="meta-box-sortables">
44
- <div id="about" class="postbox ">
45
- <div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
46
- <h3 class="hndle" id="menu"><?php _e('MiniMenu', FB_ADMINIMIZE_TEXTDOMAIN ) ?></h3>
47
- <div class="inside">
48
- <table class="widefat" cellspacing="0">
49
- <tr class="alternate">
50
- <td class="row-title"><a href="#backend_options"><?php _e('Backend Options', FB_ADMINIMIZE_TEXTDOMAIN ); ?></a></td>
51
- </tr>
52
- <tr>
53
- <td class="row-title"><a href="#global_options"><?php _e('Global options', FB_ADMINIMIZE_TEXTDOMAIN ); ?></a></td>
54
- </tr>
55
- <tr class="alternate">
56
- <td class="row-title"><a href="#config_menu"><?php _e('Menu Options', FB_ADMINIMIZE_TEXTDOMAIN ); ?></a></td>
57
- </tr>
58
- <tr>
59
- <td class="row-title"><a href="#config_edit_post"><?php _e('Write options - Post', FB_ADMINIMIZE_TEXTDOMAIN ); ?></a></td>
60
- </tr>
61
- <tr class="alternate">
62
- <td class="row-title"><a href="#config_edit_page"><?php _e('Write options - Page', FB_ADMINIMIZE_TEXTDOMAIN ); ?></a></td>
63
- </tr>
64
- <?php
65
- if ( function_exists( 'get_post_types' ) ) {
66
- $args = array( 'public' => TRUE, '_builtin' => FALSE );
67
- foreach ( get_post_types( $args ) as $post_type) {
68
- $post_type_object = get_post_type_object($post_type);
69
- ?>
70
- <tr class="form-invalid">
71
- <td class="row-title">
72
- <a href="#config_edit_<?php echo $post_type; ?>">
73
- <?php _e('Write options', FB_ADMINIMIZE_TEXTDOMAIN ); echo ' - ' . $post_type_object->label ?>
74
- </a>
75
- </td>
76
- </tr>
77
- <?php
78
- }
79
- }
80
- ?>
81
- <tr>
82
- <td class="row-title"><a href="#links_options"><?php _e('Links options', FB_ADMINIMIZE_TEXTDOMAIN ); ?></a></td>
83
- </tr>
84
- <tr class="alternate">
85
- <td class="row-title"><a href="#nav_menu_options"><?php _e('WP Nav Menu', FB_ADMINIMIZE_TEXTDOMAIN ); ?></a></td>
86
- </tr>
87
- <tr>
88
- <td class="row-title"><a href="#set_theme"><?php _e('Set Theme', FB_ADMINIMIZE_TEXTDOMAIN ); ?></a></td>
89
- </tr>
90
- <tr class="alternate">
91
- <td class="row-title"><a href="#import"><?php _e('Export/Import Options', FB_ADMINIMIZE_TEXTDOMAIN ); ?></a></td>
92
- </tr>
93
- <tr>
94
- <td class="row-title"><a href="#uninstall"><?php _e('Deinstall Options', FB_ADMINIMIZE_TEXTDOMAIN ); ?></a></td>
95
- </tr>
96
- </table>
97
- </div>
98
- </div>
99
- </div>
100
  </div>
101
  </div>
102
- <br class="clear"/>
103
  </div>
104
 
12
 
13
  <?php screen_icon('tools'); ?>
14
  <h2><?php _e('Adminimize', FB_ADMINIMIZE_TEXTDOMAIN ); ?></h2>
15
+ <br class="clear" />
16
+ <div id="poststuff" class="ui-sortable meta-box-sortables">
17
+ <div id="minimeu" class="postbox ">
18
+ <div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
19
+ <h3 class="hndle" id="menu"><?php _e('MiniMenu', FB_ADMINIMIZE_TEXTDOMAIN ) ?></h3>
20
+ <div class="inside">
21
+ <table class="widefat" cellspacing="0">
22
+ <tr>
23
+ <td class="row-title"><a href="#about"><?php _e('About the plugin', FB_ADMINIMIZE_TEXTDOMAIN ); ?></a></td>
24
+ </tr>
25
+ <tr class="alternate">
26
+ <td class="row-title"><a href="#backend_options"><?php _e('Backend Options', FB_ADMINIMIZE_TEXTDOMAIN ); ?></a></td>
27
+ </tr>
28
+ <tr>
29
+ <td class="row-title"><a href="#global_options"><?php _e('Global options', FB_ADMINIMIZE_TEXTDOMAIN ); ?></a></td>
30
+ </tr>
31
+ <tr>
32
+ <td class="row-title"><a href="#dashboard_options"><?php _e('Dashboard options', FB_ADMINIMIZE_TEXTDOMAIN ); ?></a></td>
33
+ </tr>
34
+ <tr class="alternate">
35
+ <td class="row-title"><a href="#config_menu"><?php _e('Menu Options', FB_ADMINIMIZE_TEXTDOMAIN ); ?></a></td>
36
+ </tr>
37
+ <tr>
38
+ <td class="row-title"><a href="#config_edit_post"><?php _e('Write options - Post', FB_ADMINIMIZE_TEXTDOMAIN ); ?></a></td>
39
+ </tr>
40
+ <tr class="alternate">
41
+ <td class="row-title"><a href="#config_edit_page"><?php _e('Write options - Page', FB_ADMINIMIZE_TEXTDOMAIN ); ?></a></td>
42
+ </tr>
43
+ <?php
44
+ if ( function_exists( 'get_post_types' ) ) {
45
+ $args = array( 'public' => TRUE, '_builtin' => FALSE );
46
+ foreach ( get_post_types( $args ) as $post_type) {
47
+ $post_type_object = get_post_type_object($post_type);
48
+ ?>
49
+ <tr class="form-invalid">
50
+ <td class="row-title">
51
+ <a href="#config_edit_<?php echo $post_type; ?>">
52
+ <?php _e('Write options', FB_ADMINIMIZE_TEXTDOMAIN ); echo ' - ' . $post_type_object->label ?>
53
+ </a>
54
+ </td>
55
+ </tr>
56
+ <?php
57
+ }
58
+ }
59
+ ?>
60
+ <tr>
61
+ <td class="row-title"><a href="#links_options"><?php _e('Links options', FB_ADMINIMIZE_TEXTDOMAIN ); ?></a></td>
62
+ </tr>
63
+ <tr class="alternate">
64
+ <td class="row-title"><a href="#nav_menu_options"><?php _e('WP Nav Menu', FB_ADMINIMIZE_TEXTDOMAIN ); ?></a></td>
65
+ </tr>
66
+ <tr>
67
+ <td class="row-title"><a href="#set_theme"><?php _e('Set Theme', FB_ADMINIMIZE_TEXTDOMAIN ); ?></a></td>
68
+ </tr>
69
+ <tr class="alternate">
70
+ <td class="row-title"><a href="#import"><?php _e('Export/Import Options', FB_ADMINIMIZE_TEXTDOMAIN ); ?></a></td>
71
+ </tr>
72
+ <tr>
73
+ <td class="row-title"><a href="#uninstall"><?php _e('Deinstall Options', FB_ADMINIMIZE_TEXTDOMAIN ); ?></a></td>
74
+ </tr>
75
+ </table>
76
  </div>
77
  </div>
78
+ </div>
79
+
80
+ <div id="poststuff" class="ui-sortable meta-box-sortables">
81
+ <div id="about" class="postbox ">
82
+ <div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
83
+ <h3 class="hndle" id="about-sidebar"><?php _e('About the plugin', FB_ADMINIMIZE_TEXTDOMAIN ) ?></h3>
84
+ <div class="inside">
85
+ <p><?php echo _mw_adminimize_get_plugin_data( 'Title' ); echo ' '; _e( 'Version', FB_ADMINIMIZE_TEXTDOMAIN ); echo ' '; echo _mw_adminimize_get_plugin_data( 'Version' ) ?></p>
86
+ <p><?php echo _mw_adminimize_get_plugin_data( 'Description' ) ?></p>
87
+ <p><?php _e('Further information: Visit the <a href="http://wordpress.org/extend/plugins/adminimize/">plugin homepage</a> for further information or to grab the latest version of this plugin.', FB_ADMINIMIZE_TEXTDOMAIN); ?></p>
88
+ <p>
89
+ <?php _e('You want to thank me? Visit my <a href="http://bueltge.de/wunschliste/">wishlist</a> or donate.', FB_ADMINIMIZE_TEXTDOMAIN); ?>
90
+ <span>
91
+ <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
92
+ <input type="hidden" name="cmd" value="_s-xclick">
93
+ <input type="hidden" name="hosted_button_id" value="4578111">
94
+ <input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif" border="0" name="submit" alt="<?php _e('PayPal - The safer, easier way to pay online!', FB_ADMINIMIZE_TEXTDOMAIN); ?>">
95
+ <img alt="" border="0" src="https://www.paypal.com/de_DE/i/scr/pixel.gif" width="1" height="1">
96
+ </form>
97
+ </p>
98
+ <p>&copy; Copyright 2008 - <?php echo date('Y'); ?> <a href="http://bueltge.de">Frank B&uuml;ltge</a></p>
99
+ <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>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
100
  </div>
101
  </div>
 
102
  </div>
103
 
inc-options/theme_options.php CHANGED
File without changes
inc-options/wp_nav_menu_options.php CHANGED
File without changes
inc-options/write_cp_options.php CHANGED
File without changes
inc-options/write_page_options.php CHANGED
File without changes
inc-options/write_post_options.php CHANGED
File without changes
inc-setup/dashboard.php ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @package Adminimize
4
+ * @subpackage Dashboard Setup
5
+ * @author Frank Bültge
6
+ */
7
+ if ( ! function_exists( 'add_action' ) ) {
8
+ echo "Hi there! I'm just a part of plugin, not much I can do when called directly.";
9
+ exit;
10
+ }
11
+
12
+ // retrun registered widgets; only on page index/dashboard :(
13
+ add_action( 'wp_dashboard_setup', '_mw_adminimize_dashboard_setup', 99 );
14
+
15
+ function _mw_adminimize_dashboard_setup () {
16
+ global $wp_meta_boxes;
17
+
18
+ $adminimizeoptions = get_option( 'mw_adminimize' );
19
+ $widgets = _mw_adminimize_get_dashboard_widgets();
20
+ $adminimizeoptions['mw_adminimize_dashboard_widgets'] = $widgets;
21
+ if ( current_user_can( 'manage_options' ) )
22
+ update_option( 'mw_adminimize', $adminimizeoptions );
23
+
24
+ // exclude super admin
25
+ if ( _mw_adminimize_exclude_super_admin() )
26
+ return NULL;
27
+
28
+ $user_roles = _mw_adminimize_get_all_user_roles();
29
+
30
+ foreach ( $user_roles as $role ) {
31
+ $disabled_dashboard_option_[$role] = _mw_adminimize_get_option_value(
32
+ 'mw_adminimize_disabled_dashboard_option_' . $role . '_items'
33
+ );
34
+ }
35
+ //var_dump( get_option('mw_adminimize') );
36
+ foreach ( $user_roles as $role ) {
37
+ if ( ! isset( $disabled_dashboard_option_[$role]['0'] ) )
38
+ $disabled_dashboard_option_[$role]['0'] = '';
39
+ }
40
+
41
+ foreach ( $user_roles as $role ) {
42
+ $user = wp_get_current_user();
43
+ if ( is_array( $user->roles) && in_array( $role, $user->roles) ) {
44
+ if ( current_user_can( $role ) && is_array( $disabled_dashboard_option_[$role] ) ) {
45
+ foreach( $disabled_dashboard_option_[$role] as $widget ) {
46
+ if ( isset( $widgets[$widget]['context']) )
47
+ remove_meta_box( $widget, 'dashboard', $widgets[$widget]['context'] );
48
+ }
49
+ }
50
+ }
51
+ }
52
+
53
+ }
54
+
55
+ function _mw_adminimize_get_dashboard_widgets () {
56
+ global $wp_meta_boxes;
57
+
58
+ $widgets = array();
59
+ if ( isset($wp_meta_boxes['dashboard']) ) {
60
+ foreach( $wp_meta_boxes['dashboard'] as $context => $data ) {
61
+ foreach( $data as $priority => $data ) {
62
+ foreach( $data as $widget => $data ) {
63
+ $widgets[$widget] = array(
64
+ 'id' => $widget,
65
+ 'title' => strip_tags(
66
+ preg_replace( '/( |)<span.*span>/im', '', $data['title'] )
67
+ ),
68
+ 'context' => $context,
69
+ 'priority' => $priority
70
+ );
71
+ }
72
+ }
73
+ }
74
+ }
75
+ return $widgets;
76
+ }
js/remove_footer.js CHANGED
@@ -1,6 +1,6 @@
1
  /**
2
  * remove footer
3
  */
4
- jQuery(document).ready(function() {
5
- jQuery('#footer').remove();
6
- });
1
  /**
2
  * remove footer
3
  */
4
+ jQuery(document).ready(function($) {
5
+ $('#footer').remove();
6
+ });
js/remove_header.js CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * remove footer
3
  */
4
  jQuery(document).ready(function() {
5
  jQuery('#wphead').remove();
1
  /**
2
+ * remove header
3
  */
4
  jQuery(document).ready(function() {
5
  jQuery('#wphead').remove();
js/tb_window.js CHANGED
File without changes
js/timestamp.js CHANGED
File without changes
js/writescroll.js CHANGED
File without changes
languages/adminimize-by_BY.mo CHANGED
File without changes
languages/adminimize-by_BY.po CHANGED
File without changes
languages/adminimize-da_DK.mo CHANGED
File without changes
languages/adminimize-da_DK.po CHANGED
File without changes
languages/adminimize-de_DE.mo CHANGED
Binary file
languages/adminimize-de_DE.po CHANGED
@@ -19,47 +19,47 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
- #: adminimize.php:121
23
  #@ adminimize
24
  msgid "Unknown error."
25
  msgstr "Unbekannter Fehler."
26
 
27
- #: adminimize.php:130
28
  #@ adminimize
29
  msgid "The updates were saved."
30
  msgstr "Die Einstellungen wurden gespeichert"
31
 
32
- #: adminimize.php:131
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:133
38
  #@ adminimize
39
  msgid "All entries in the database were deleted."
40
  msgstr "Die Einstellungen wurde gel&ouml;scht!"
41
 
42
- #: adminimize.php:134
43
  #@ adminimize
44
  msgid "Set the checkbox on deinstall-button."
45
  msgstr "Checkbox setzen, wenn wirklich deinstalliert werden soll!"
46
 
47
- #: adminimize.php:135
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:136
53
  #@ adminimize
54
  msgid "Backend-Theme was activated!"
55
  msgstr "Backend-Theme wurde zugewiesen!"
56
 
57
- #: adminimize.php:137
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:515
63
  #: inc-options/links_options.php:52
64
  #: inc-options/write_cp_options.php:99
65
  #: inc-options/write_post_options.php:101
@@ -68,31 +68,31 @@ msgstr "Das Laden der User-Daten zum Theme war erfolgreich."
68
  msgid "Categories"
69
  msgstr "Kategorien"
70
 
71
- #: adminimize.php:521
72
- #: adminimize.php:532
73
  #@ default
74
  msgid "+ Add New Category"
75
  msgstr "+ Add New Category"
76
 
77
- #: adminimize.php:523
78
- #: adminimize.php:534
79
  #@ default
80
  msgid "New category name"
81
  msgstr "New category name"
82
 
83
- #: adminimize.php:524
84
- #: adminimize.php:536
85
  #@ default
86
  msgid "Parent category"
87
  msgstr "Parent category"
88
 
89
- #: adminimize.php:525
90
- #: adminimize.php:537
91
  #@ default
92
  msgid "Add"
93
  msgstr "Add"
94
 
95
- #: adminimize.php:534
96
  #: inc-options/write_cp_options.php:100
97
  #: inc-options/write_post_options.php:102
98
  #@ default
@@ -100,8 +100,8 @@ msgstr "Add"
100
  msgid "Add New Category"
101
  msgstr "Add New Category"
102
 
103
- #: adminimize.php:558
104
- #: adminimize.php:559
105
  #: inc-options/write_cp_options.php:97
106
  #: inc-options/write_cp_options.php:135
107
  #: inc-options/write_post_options.php:99
@@ -111,87 +111,89 @@ msgstr "Add New Category"
111
  msgid "Tags"
112
  msgstr "Tags"
113
 
114
- #: adminimize.php:601
115
- #: adminimize.php:618
116
- #: adminimize.php:632
117
- #: adminimize.php:646
118
  #@ default
119
  msgid "Blue"
120
  msgstr "Blau"
121
 
122
- #: adminimize.php:608
123
- #: adminimize.php:625
124
- #: adminimize.php:639
125
- #: adminimize.php:653
126
  #@ default
127
  msgid "Gray"
128
  msgstr "Grau"
129
 
130
- #: adminimize.php:661
131
- #: adminimize.php:703
132
- #: adminimize.php:726
133
  #@ default
134
  msgid "Classic"
135
  msgstr "Classic"
136
 
137
- #: adminimize.php:668
138
- #: adminimize.php:710
139
- #: adminimize.php:733
140
  #@ default
141
  msgid "Fresh"
142
  msgstr "Fresh"
143
 
144
- #: adminimize.php:675
145
  #@ default
146
  msgid "WordPress 2.3"
147
  msgstr "WordPress 2.3"
148
 
149
- #: adminimize.php:682
150
  #@ default
151
  msgid "Maybe i'm colorblind"
152
  msgstr "Maybe i'm colorblind"
153
 
154
- #: adminimize.php:689
155
  #@ default
156
  msgid "Grey"
157
  msgstr "Grey"
158
 
159
- #: adminimize.php:814
160
- #: adminimize.php:817
161
  #@ default
162
  msgid "Dashboard"
163
  msgstr "Dashboard"
164
 
165
- #: adminimize.php:885
166
- #: adminimize.php:887
167
- #: adminimize.php:908
168
- #: adminimize.php:910
169
- #: adminimize.php:1293
170
  #@ default
171
  msgid "Log Out"
172
  msgstr "Log Out"
173
 
174
- #: adminimize.php:1315
175
  #@ default
176
  msgid "Visit plugin homepage"
177
  msgstr "Visit plugin homepage"
178
 
179
- #: adminimize.php:1318
180
  #@ default
181
  msgid "plugin"
182
  msgstr "plugin"
183
 
184
- #: adminimize.php:1318
 
185
  #@ default
 
186
  msgid "Version"
187
  msgstr "Version"
188
 
189
- #: adminimize.php:1318
190
  #@ adminimize
191
  msgid "History"
192
  msgstr "Historie"
193
 
194
- #: adminimize.php:1318
195
  #: inc-options/write_cp_options.php:129
196
  #: inc-options/write_page_options.php:128
197
  #: inc-options/write_post_options.php:143
@@ -199,47 +201,48 @@ msgstr "Historie"
199
  msgid "Author"
200
  msgstr "Author"
201
 
202
- #: adminimize.php:1322
203
  #@ adminimize
204
  msgid "plugin activate"
205
  msgstr "plugin activate"
206
 
207
- #: adminimize.php:1343
208
  #@ default
209
  msgid "Settings"
210
  msgstr "Settings"
211
 
212
- #: adminimize.php:1406
213
  #@ adminimize
214
  msgid "<a href=\"http://wordpress.org/extend/plugins/adminimize/\">Documentation</a>"
215
  msgstr "<a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">Dokumentation</a> (<a href=\"http://wordpress.org/extend/plugins/adminimize/\">en</a>)"
216
 
217
  #. translators: plugin header field 'Name'
218
  #: adminimize.php:0
219
- #: adminimize.php:1423
220
  #: inc-options/minimenu.php:14
221
  #@ adminimize
222
  msgid "Adminimize"
223
  msgstr "Adminimize"
224
 
225
- #: adminimize.php:1425
226
  #@ adminimize
227
  msgid "Adminimize Options"
228
  msgstr "Adminimize Einstellungen"
229
 
230
- #: adminimize.php:1448
231
  #@ default
232
  msgid "Cheatin&#8217; uh?"
233
  msgstr "Cheatin&#8217; uh?"
234
 
235
  #: inc-options/backend_options.php:15
 
236
  #: inc-options/deinstall_options.php:14
237
  #: inc-options/global_options.php:15
238
  #: inc-options/im_export_options.php:14
239
  #: inc-options/links_options.php:15
240
  #: inc-options/menu_options.php:15
241
- #: inc-options/minimenu.php:20
242
- #: inc-options/minimenu.php:45
243
  #: inc-options/theme_options.php:14
244
  #: inc-options/wp_nav_menu_options.php:14
245
  #: inc-options/write_cp_options.php:19
@@ -250,162 +253,163 @@ msgid "Click to toggle"
250
  msgstr "Zum Umschalten klicken"
251
 
252
  #: inc-options/backend_options.php:16
253
- #: inc-options/minimenu.php:50
254
  #@ adminimize
255
  msgid "Backend Options"
256
  msgstr "Einstellungen Backend"
257
 
258
- #: inc-options/backend_options.php:37
259
  #@ adminimize
260
  msgid "User-Info"
261
  msgstr "User-Info"
262
 
263
- #: inc-options/backend_options.php:30
264
- #: inc-options/backend_options.php:41
265
- #: inc-options/backend_options.php:54
266
- #: inc-options/backend_options.php:64
267
- #: inc-options/backend_options.php:74
268
- #: inc-options/backend_options.php:84
269
- #: inc-options/backend_options.php:94
270
- #: inc-options/backend_options.php:104
271
- #: inc-options/backend_options.php:114
272
- #: inc-options/backend_options.php:124
273
- #: inc-options/backend_options.php:134
274
- #: inc-options/backend_options.php:163
275
  #@ adminimize
276
  msgid "Default"
277
  msgstr "Standard"
278
 
279
- #: inc-options/backend_options.php:42
280
- #: inc-options/backend_options.php:65
281
- #: inc-options/backend_options.php:75
282
  #@ adminimize
283
  msgid "Hide"
284
  msgstr "Ausblenden"
285
 
286
- #: inc-options/backend_options.php:43
287
  #@ adminimize
288
  msgid "Only logout"
289
  msgstr "nur Abmelden"
290
 
291
- #: inc-options/backend_options.php:44
292
  #@ adminimize
293
  msgid "User &amp; Logout"
294
  msgstr "User &amp; Abmelden"
295
 
296
- #: inc-options/backend_options.php:45
297
  #@ adminimize
298
  msgid "The &quot;User-Info-area&quot; is on the top right side of the backend. You can hide or reduced show."
299
  msgstr "Der &quot;User-Info-Bereich&quot; ist im oberen rechten Bereich zu finden und kann ausgeblendet oder reduziert dargestellt werden."
300
 
301
- #: inc-options/backend_options.php:50
302
  #@ adminimize
303
  msgid "Change User-Info, redirect to"
304
  msgstr "User Info ge&auml;ndert, Weiterleitung nach"
305
 
306
- #: inc-options/backend_options.php:55
307
  #@ adminimize
308
  msgid "Frontpage of the Blog"
309
  msgstr "Startseite des Blog"
310
 
311
- #: inc-options/backend_options.php:56
312
  #@ adminimize
313
  msgid "When the &quot;User-Info-area&quot; change it, then it is possible to change the redirect."
314
  msgstr "Wenn der &quot;User-Info-Bereich&quot; ge&auml;ndert wird, dann kann die die Weiterleitung nach einem Logout ge&auml;ndert werden."
315
 
316
- #: inc-options/backend_options.php:60
317
  #@ adminimize
318
  msgid "Footer"
319
  msgstr "Footer"
320
 
321
- #: inc-options/backend_options.php:66
322
  #@ adminimize
323
  msgid "The Footer-area can hide, include all links and details."
324
  msgstr "Der Footer-Bereich kann deaktiviert werden, inklusive aller Links und Hinweise."
325
 
326
- #: inc-options/backend_options.php:80
327
  #@ adminimize
328
  msgid "WriteScroll"
329
  msgstr "WriteScroll"
330
 
331
- #: inc-options/backend_options.php:31
332
- #: inc-options/backend_options.php:85
333
- #: inc-options/backend_options.php:95
334
- #: inc-options/backend_options.php:105
335
- #: inc-options/backend_options.php:115
336
- #: inc-options/backend_options.php:125
337
- #: inc-options/backend_options.php:135
338
  #@ adminimize
339
  msgid "Activate"
340
  msgstr "Aktiv"
341
 
342
- #: inc-options/backend_options.php:86
343
  #@ adminimize
344
  msgid "With the WriteScroll option active, these pages will automatically scroll to an optimal position for editing, when you visit Write Post or Write Page."
345
  msgstr "Automatisches Scrollen zum Editor beim Aufruf der Seite Schreiben in Beitr&auml;ge und Seite."
346
 
347
- #: inc-options/backend_options.php:90
348
  #@ adminimize
349
  msgid "Timestamp"
350
  msgstr "Timestamp"
351
 
352
- #: inc-options/backend_options.php:96
353
  #@ adminimize
354
  msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
355
  msgstr "Das Feld zum &Auml;ndern des Ver&ouml;ffentlichungsdatum ist immer ge&ouml;ffnet."
356
 
357
- #: inc-options/backend_options.php:100
358
  #@ adminimize
359
  msgid "Thickbox FullScreen"
360
  msgstr "Thickbox FullScreen"
361
 
362
- #: inc-options/backend_options.php:110
363
  #@ adminimize
364
  msgid "Flashuploader"
365
  msgstr "Flashuploader"
366
 
367
- #: inc-options/backend_options.php:116
368
  #@ adminimize
369
  msgid "Disable the flashuploader and users use only the standard uploader."
370
  msgstr "Deaktiviere den Flashuploader und Nutzer können nur den Standard-Uploader erreichen."
371
 
372
- #: inc-options/backend_options.php:130
373
  #@ adminimize
374
  msgid "Advice in Footer"
375
  msgstr "Hinweis im Footer"
376
 
377
- #: inc-options/backend_options.php:164
378
  #@ adminimize
379
  msgid "Manage Posts"
380
  msgstr "Verwalten Beitr&auml;ge"
381
 
382
- #: inc-options/backend_options.php:165
383
  #@ adminimize
384
  msgid "Manage Pages"
385
  msgstr "Verwalten Seiten"
386
 
387
- #: inc-options/backend_options.php:166
388
  #@ adminimize
389
  msgid "Write Post"
390
  msgstr "Schreiben Beitrag"
391
 
392
- #: inc-options/backend_options.php:167
393
  #@ adminimize
394
  msgid "Write Page"
395
  msgstr "Schreiben Seite"
396
 
397
- #: inc-options/backend_options.php:168
398
  #: inc-options/write_post_options.php:106
399
  #@ adminimize
400
  msgid "Comments"
401
  msgstr "Kommentare"
402
 
403
- #: inc-options/backend_options.php:169
404
  #@ adminimize
405
  msgid "other Page"
406
  msgstr "andere Seite"
407
 
408
- #: inc-options/backend_options.php:181
 
409
  #: inc-options/global_options.php:122
410
  #: inc-options/links_options.php:126
411
  #: inc-options/menu_options.php:151
@@ -418,11 +422,13 @@ msgid "Update Options"
418
  msgstr "Einstellungen aktualisieren"
419
 
420
  #: inc-options/global_options.php:16
421
- #: inc-options/minimenu.php:53
422
  #@ adminimize
423
  msgid "Global options"
424
  msgstr "Globale Einstellungen"
425
 
 
 
426
  #: inc-options/global_options.php:23
427
  #: inc-options/global_options.php:97
428
  #: inc-options/links_options.php:23
@@ -436,6 +442,7 @@ msgstr "Globale Einstellungen"
436
  msgid "Option"
437
  msgstr "Einstellung"
438
 
 
439
  #: inc-options/global_options.php:26
440
  #: inc-options/links_options.php:26
441
  #: inc-options/menu_options.php:26
@@ -477,11 +484,13 @@ msgstr "kontextabhängig Hilfe"
477
  msgid "Admin Color Scheme"
478
  msgstr "Farbschema verwalten"
479
 
 
480
  #: inc-options/global_options.php:96
481
  #@ adminimize
482
  msgid "Your own options"
483
  msgstr "Deine eigenen Einstellungen"
484
 
 
485
  #: inc-options/global_options.php:96
486
  #: inc-options/links_options.php:100
487
  #: inc-options/wp_nav_menu_options.php:121
@@ -492,6 +501,7 @@ msgstr "Deine eigenen Einstellungen"
492
  msgid "ID or class"
493
  msgstr "ID oder Klasse"
494
 
 
495
  #: inc-options/global_options.php:103
496
  #: inc-options/links_options.php:107
497
  #: inc-options/wp_nav_menu_options.php:128
@@ -502,6 +512,7 @@ msgstr "ID oder Klasse"
502
  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."
503
  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."
504
 
 
505
  #: inc-options/global_options.php:109
506
  #: inc-options/links_options.php:113
507
  #: inc-options/wp_nav_menu_options.php:134
@@ -512,6 +523,7 @@ msgstr "Es ist möglich, dass du eigene IDs und Klassen eines Elementes oder Tag
512
  msgid "Possible nomination for ID or class. Separate multiple nominations through a carriage return."
513
  msgstr "Mögliche Benennung der ID oder Klasse. Trenne Werte durch eine neue Zeile."
514
 
 
515
  #: inc-options/global_options.php:114
516
  #: inc-options/links_options.php:118
517
  #: inc-options/wp_nav_menu_options.php:139
@@ -523,7 +535,7 @@ msgid "Possible IDs or classes. Separate multiple values through a carriage retu
523
  msgstr "Mögliche IDs oder Klassen. Trenne Werte durch eine neue Zeile."
524
 
525
  #: inc-options/menu_options.php:16
526
- #: inc-options/minimenu.php:56
527
  #@ adminimize
528
  msgid "Menu Options"
529
  msgstr "Menu Einstellungen"
@@ -707,7 +719,7 @@ msgstr "Wenn die Checkbox aktiv ist, dann wird das Ändern von Einstellungen ers
707
  msgid "Profile"
708
  msgstr "Profile"
709
 
710
- #: inc-options/minimenu.php:59
711
  #: inc-options/write_post_options.php:16
712
  #: inc-options/write_post_options.php:23
713
  #@ adminimize
@@ -719,7 +731,7 @@ msgstr "Schreiben Einstellungen - Beitr&auml;ge"
719
  msgid "Your own post options"
720
  msgstr "Deine eigenen Beitrags-Einstellungen"
721
 
722
- #: inc-options/minimenu.php:62
723
  #: inc-options/write_page_options.php:15
724
  #: inc-options/write_page_options.php:22
725
  #@ adminimize
@@ -732,7 +744,7 @@ msgid "Your own page options"
732
  msgstr "Deine eigenen Seiten-Einstellungen"
733
 
734
  #: inc-options/links_options.php:16
735
- #: inc-options/minimenu.php:82
736
  #@ adminimize
737
  msgid "Links options"
738
  msgstr "Link Einstellungen"
@@ -767,7 +779,7 @@ msgstr "Link-Beziehungen (XFN)"
767
  msgid "Advanced"
768
  msgstr "Erweitert"
769
 
770
- #: inc-options/minimenu.php:88
771
  #: inc-options/theme_options.php:15
772
  #: inc-options/theme_options.php:100
773
  #@ adminimize
@@ -815,7 +827,7 @@ msgid "Role"
815
  msgstr "Rolle"
816
 
817
  #: inc-options/deinstall_options.php:15
818
- #: inc-options/minimenu.php:94
819
  #@ adminimize
820
  msgid "Deinstall Options"
821
  msgstr "Einstellungen deinstallieren"
@@ -830,33 +842,29 @@ msgstr "Nutze diese Option, um die Einstellungen f&uuml;r das Plugin in der Date
830
  msgid "Delete Options"
831
  msgstr "Einstellungen Löschen"
832
 
833
- #: inc-options/minimenu.php:21
 
834
  #@ adminimize
835
  msgid "About the plugin"
836
  msgstr "&Uuml;ber das Plugin"
837
 
838
- #: inc-options/minimenu.php:23
839
- #@ adminimize
840
- 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."
841
- 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."
842
-
843
- #: inc-options/minimenu.php:29
844
  #@ adminimize
845
  msgid "PayPal - The safer, easier way to pay online!"
846
  msgstr "PayPal - Der sichere und einfache Weg zu zahlen!"
847
 
848
- #: inc-options/minimenu.php:33
849
  #@ adminimize
850
  msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a> or donate."
851
  msgstr "Du willst Danke sagen? Besuche meine <a href=\"http://bueltge.de/wunschliste/\">Wunschliste</a> oder spende."
852
 
853
- #: adminimize.php:132
854
  #@ adminimize
855
  msgid "All entries in the database were imported."
856
  msgstr "Alle Einträge wurden in die Datenbank geschrieben."
857
 
858
  #: inc-options/im_export_options.php:15
859
- #: inc-options/minimenu.php:91
860
  #@ adminimize
861
  msgid "Export/Import Options"
862
  msgstr "Export/Import Einstellungen"
@@ -886,17 +894,19 @@ msgstr "Wähle eine Datei vom Rechner"
886
  msgid "Upload file and import &raquo;"
887
  msgstr "Hochladen der Datei und importieren &raquo;"
888
 
889
- #: inc-options/minimenu.php:46
890
  #@ adminimize
891
  msgid "MiniMenu"
892
  msgstr "MiniMenu"
893
 
894
- #: inc-options/backend_options.php:183
 
895
  #: inc-options/deinstall_options.php:27
896
  #: inc-options/global_options.php:124
897
  #: inc-options/im_export_options.php:41
898
  #: inc-options/links_options.php:129
899
  #: inc-options/menu_options.php:153
 
900
  #: inc-options/theme_options.php:105
901
  #: inc-options/wp_nav_menu_options.php:149
902
  #: inc-options/write_cp_options.php:245
@@ -916,22 +926,22 @@ msgstr "Du kannst deine Einstellungen in einer .seq Datei speichern."
916
  msgid "Choose a Adminimize (<em>.seq</em>) file to upload, then click <em>Upload file and import</em>."
917
  msgstr "Wähle eine Adminimize (<em>.seq</em>) Datei zum hoch laden und dann klick <em>Hochladen der Datei und importieren</em>"
918
 
919
- #: inc-options/backend_options.php:120
920
  #@ adminimize
921
  msgid "Category Height"
922
  msgstr "Kategorie-Höhe"
923
 
924
- #: inc-options/backend_options.php:126
925
  #@ adminimize
926
  msgid "View the Meta Box with Categories in the full height, no scrollbar or whitespace."
927
  msgstr "Stellt in die Meta Box der Kategorien in voller Höhe dar, kein Scrollbar und kein Leerraum."
928
 
929
- #: inc-options/backend_options.php:137
930
  #@ adminimize
931
  msgid "In the Footer you can display an advice for changing the Default-design, (x)HTML is possible."
932
  msgstr "Im Footer kann ein Hinweis auf die aktive Ver&auml;nderung des Standard-Layout gesetzt werden, (x)HTML erlaubt."
933
 
934
- #: inc-options/backend_options.php:159
935
  #@ adminimize
936
  msgid "Dashboard deactivate, redirect to"
937
  msgstr "Dashboard inaktiv, Weiterleitung nach"
@@ -944,7 +954,7 @@ msgstr "Dashboard inaktiv, Weiterleitung nach"
944
  msgid "HTML Editor Button"
945
  msgstr "HTML Editor Button"
946
 
947
- #: inc-options/backend_options.php:106
948
  #@ adminimize
949
  msgid "All Thickbox-function use the full area of the browser. Thickbox is for example in upload media-files."
950
  msgstr "Alle Thickbox-Funktion verwenden den vollständigen Bereich des Browsers. Thickbox ist beispielsweise in der Medien-Upload-Funktion."
@@ -973,12 +983,12 @@ msgstr ""
973
  msgid "http://bueltge.de/"
974
  msgstr ""
975
 
976
- #: inc-options/backend_options.php:70
977
  #@ adminimize
978
  msgid "Header"
979
  msgstr "Header"
980
 
981
- #: inc-options/backend_options.php:76
982
  #@ adminimize
983
  msgid "The Header-area can hide, include all links and details."
984
  msgstr "Der header-Bereich kann ausgeblendet werden, inkl. aller Links und Details."
@@ -989,17 +999,17 @@ msgstr "Der header-Bereich kann ausgeblendet werden, inkl. aller Links und Detai
989
  msgid "Title"
990
  msgstr "Title"
991
 
992
- #: inc-options/backend_options.php:26
993
  #@ adminimize
994
  msgid "Exclude Super Admin"
995
  msgstr "Ausschließen des Super Admin"
996
 
997
- #: inc-options/backend_options.php:32
998
  #@ adminimize
999
  msgid "Exclude the Super Admin on a WP Multisite Install from all limitations of this plugin."
1000
  msgstr "Schließe den Super Admin in einer WordPress Multisite Installation von allen Restriktionen dieses Plugins aus."
1001
 
1002
- #: inc-options/backend_options.php:172
1003
  #@ adminimize
1004
  msgid "You have deactivated the Dashboard, please select a page for redirection or define custom url, include http://?"
1005
  msgstr "Du hast das Dashboard deaktiviert; bitte wähle eine Seite für die Weiterleitung oder definiere eine eigene URL, inklusive http://"
@@ -1009,7 +1019,7 @@ msgstr "Du hast das Dashboard deaktiviert; bitte wähle eine Seite für die Weit
1009
  msgid "Admin Bar"
1010
  msgstr "Admin Bar"
1011
 
1012
- #: inc-options/minimenu.php:85
1013
  #@ adminimize
1014
  msgid "WP Nav Menu"
1015
  msgstr "WP Nav Menü"
@@ -1049,12 +1059,6 @@ msgstr "Format"
1049
  msgid "Messages"
1050
  msgstr "Mitteilungen"
1051
 
1052
- #. translators: plugin header field 'Version'
1053
- #: adminimize.php:0
1054
- #@ adminimize
1055
- msgid "1.7.18"
1056
- msgstr ""
1057
-
1058
  #: inc-options/write_cp_options.php:126
1059
  #: inc-options/write_page_options.php:124
1060
  #: inc-options/write_post_options.php:140
@@ -1156,7 +1160,7 @@ msgstr "Status, Sticky"
1156
  msgid "Your own Link options"
1157
  msgstr "Deine eigenen Link Einstellungen"
1158
 
1159
- #: inc-options/minimenu.php:73
1160
  #: inc-options/write_cp_options.php:21
1161
  #: inc-options/write_cp_options.php:29
1162
  #@ adminimize
@@ -1174,3 +1178,25 @@ msgstr "Deine eigenen Nav Menu Einstellungen"
1174
  msgid "Your own %s options"
1175
  msgstr "Deine eigenen %s Einstellungen"
1176
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
+ #: adminimize.php:127
23
  #@ adminimize
24
  msgid "Unknown error."
25
  msgstr "Unbekannter Fehler."
26
 
27
+ #: adminimize.php:136
28
  #@ adminimize
29
  msgid "The updates were saved."
30
  msgstr "Die Einstellungen wurden gespeichert"
31
 
32
+ #: adminimize.php:137
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:139
38
  #@ adminimize
39
  msgid "All entries in the database were deleted."
40
  msgstr "Die Einstellungen wurde gel&ouml;scht!"
41
 
42
+ #: adminimize.php:140
43
  #@ adminimize
44
  msgid "Set the checkbox on deinstall-button."
45
  msgstr "Checkbox setzen, wenn wirklich deinstalliert werden soll!"
46
 
47
+ #: adminimize.php:141
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:142
53
  #@ adminimize
54
  msgid "Backend-Theme was activated!"
55
  msgstr "Backend-Theme wurde zugewiesen!"
56
 
57
+ #: adminimize.php:143
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:521
63
  #: inc-options/links_options.php:52
64
  #: inc-options/write_cp_options.php:99
65
  #: inc-options/write_post_options.php:101
68
  msgid "Categories"
69
  msgstr "Kategorien"
70
 
71
+ #: adminimize.php:527
72
+ #: adminimize.php:538
73
  #@ default
74
  msgid "+ Add New Category"
75
  msgstr "+ Add New Category"
76
 
77
+ #: adminimize.php:529
78
+ #: adminimize.php:540
79
  #@ default
80
  msgid "New category name"
81
  msgstr "New category name"
82
 
83
+ #: adminimize.php:530
84
+ #: adminimize.php:542
85
  #@ default
86
  msgid "Parent category"
87
  msgstr "Parent category"
88
 
89
+ #: adminimize.php:531
90
+ #: adminimize.php:543
91
  #@ default
92
  msgid "Add"
93
  msgstr "Add"
94
 
95
+ #: adminimize.php:540
96
  #: inc-options/write_cp_options.php:100
97
  #: inc-options/write_post_options.php:102
98
  #@ default
100
  msgid "Add New Category"
101
  msgstr "Add New Category"
102
 
103
+ #: adminimize.php:564
104
+ #: adminimize.php:565
105
  #: inc-options/write_cp_options.php:97
106
  #: inc-options/write_cp_options.php:135
107
  #: inc-options/write_post_options.php:99
111
  msgid "Tags"
112
  msgstr "Tags"
113
 
114
+ #: adminimize.php:607
115
+ #: adminimize.php:624
116
+ #: adminimize.php:638
117
+ #: adminimize.php:652
118
  #@ default
119
  msgid "Blue"
120
  msgstr "Blau"
121
 
122
+ #: adminimize.php:614
123
+ #: adminimize.php:631
124
+ #: adminimize.php:645
125
+ #: adminimize.php:659
126
  #@ default
127
  msgid "Gray"
128
  msgstr "Grau"
129
 
130
+ #: adminimize.php:667
131
+ #: adminimize.php:709
132
+ #: adminimize.php:732
133
  #@ default
134
  msgid "Classic"
135
  msgstr "Classic"
136
 
137
+ #: adminimize.php:674
138
+ #: adminimize.php:716
139
+ #: adminimize.php:739
140
  #@ default
141
  msgid "Fresh"
142
  msgstr "Fresh"
143
 
144
+ #: adminimize.php:681
145
  #@ default
146
  msgid "WordPress 2.3"
147
  msgstr "WordPress 2.3"
148
 
149
+ #: adminimize.php:688
150
  #@ default
151
  msgid "Maybe i'm colorblind"
152
  msgstr "Maybe i'm colorblind"
153
 
154
+ #: adminimize.php:695
155
  #@ default
156
  msgid "Grey"
157
  msgstr "Grey"
158
 
159
+ #: adminimize.php:820
160
+ #: adminimize.php:823
161
  #@ default
162
  msgid "Dashboard"
163
  msgstr "Dashboard"
164
 
165
+ #: adminimize.php:891
166
+ #: adminimize.php:893
167
+ #: adminimize.php:914
168
+ #: adminimize.php:916
169
+ #: adminimize.php:1313
170
  #@ default
171
  msgid "Log Out"
172
  msgstr "Log Out"
173
 
174
+ #: adminimize.php:1335
175
  #@ default
176
  msgid "Visit plugin homepage"
177
  msgstr "Visit plugin homepage"
178
 
179
+ #: adminimize.php:1338
180
  #@ default
181
  msgid "plugin"
182
  msgstr "plugin"
183
 
184
+ #: adminimize.php:1338
185
+ #: inc-options/minimenu.php:85
186
  #@ default
187
+ #@ adminimize
188
  msgid "Version"
189
  msgstr "Version"
190
 
191
+ #: adminimize.php:1338
192
  #@ adminimize
193
  msgid "History"
194
  msgstr "Historie"
195
 
196
+ #: adminimize.php:1338
197
  #: inc-options/write_cp_options.php:129
198
  #: inc-options/write_page_options.php:128
199
  #: inc-options/write_post_options.php:143
201
  msgid "Author"
202
  msgstr "Author"
203
 
204
+ #: adminimize.php:1342
205
  #@ adminimize
206
  msgid "plugin activate"
207
  msgstr "plugin activate"
208
 
209
+ #: adminimize.php:1363
210
  #@ default
211
  msgid "Settings"
212
  msgstr "Settings"
213
 
214
+ #: adminimize.php:1379
215
  #@ adminimize
216
  msgid "<a href=\"http://wordpress.org/extend/plugins/adminimize/\">Documentation</a>"
217
  msgstr "<a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">Dokumentation</a> (<a href=\"http://wordpress.org/extend/plugins/adminimize/\">en</a>)"
218
 
219
  #. translators: plugin header field 'Name'
220
  #: adminimize.php:0
221
+ #: adminimize.php:1396
222
  #: inc-options/minimenu.php:14
223
  #@ adminimize
224
  msgid "Adminimize"
225
  msgstr "Adminimize"
226
 
227
+ #: adminimize.php:1395
228
  #@ adminimize
229
  msgid "Adminimize Options"
230
  msgstr "Adminimize Einstellungen"
231
 
232
+ #: adminimize.php:1423
233
  #@ default
234
  msgid "Cheatin&#8217; uh?"
235
  msgstr "Cheatin&#8217; uh?"
236
 
237
  #: inc-options/backend_options.php:15
238
+ #: inc-options/dashboard_options.php:16
239
  #: inc-options/deinstall_options.php:14
240
  #: inc-options/global_options.php:15
241
  #: inc-options/im_export_options.php:14
242
  #: inc-options/links_options.php:15
243
  #: inc-options/menu_options.php:15
244
+ #: inc-options/minimenu.php:18
245
+ #: inc-options/minimenu.php:82
246
  #: inc-options/theme_options.php:14
247
  #: inc-options/wp_nav_menu_options.php:14
248
  #: inc-options/write_cp_options.php:19
253
  msgstr "Zum Umschalten klicken"
254
 
255
  #: inc-options/backend_options.php:16
256
+ #: inc-options/minimenu.php:26
257
  #@ adminimize
258
  msgid "Backend Options"
259
  msgstr "Einstellungen Backend"
260
 
261
+ #: inc-options/backend_options.php:36
262
  #@ adminimize
263
  msgid "User-Info"
264
  msgstr "User-Info"
265
 
266
+ #: inc-options/backend_options.php:29
267
+ #: inc-options/backend_options.php:40
268
+ #: inc-options/backend_options.php:53
269
+ #: inc-options/backend_options.php:63
270
+ #: inc-options/backend_options.php:73
271
+ #: inc-options/backend_options.php:83
272
+ #: inc-options/backend_options.php:93
273
+ #: inc-options/backend_options.php:103
274
+ #: inc-options/backend_options.php:113
275
+ #: inc-options/backend_options.php:123
276
+ #: inc-options/backend_options.php:133
277
+ #: inc-options/backend_options.php:162
278
  #@ adminimize
279
  msgid "Default"
280
  msgstr "Standard"
281
 
282
+ #: inc-options/backend_options.php:41
283
+ #: inc-options/backend_options.php:64
284
+ #: inc-options/backend_options.php:74
285
  #@ adminimize
286
  msgid "Hide"
287
  msgstr "Ausblenden"
288
 
289
+ #: inc-options/backend_options.php:42
290
  #@ adminimize
291
  msgid "Only logout"
292
  msgstr "nur Abmelden"
293
 
294
+ #: inc-options/backend_options.php:43
295
  #@ adminimize
296
  msgid "User &amp; Logout"
297
  msgstr "User &amp; Abmelden"
298
 
299
+ #: inc-options/backend_options.php:44
300
  #@ adminimize
301
  msgid "The &quot;User-Info-area&quot; is on the top right side of the backend. You can hide or reduced show."
302
  msgstr "Der &quot;User-Info-Bereich&quot; ist im oberen rechten Bereich zu finden und kann ausgeblendet oder reduziert dargestellt werden."
303
 
304
+ #: inc-options/backend_options.php:49
305
  #@ adminimize
306
  msgid "Change User-Info, redirect to"
307
  msgstr "User Info ge&auml;ndert, Weiterleitung nach"
308
 
309
+ #: inc-options/backend_options.php:54
310
  #@ adminimize
311
  msgid "Frontpage of the Blog"
312
  msgstr "Startseite des Blog"
313
 
314
+ #: inc-options/backend_options.php:55
315
  #@ adminimize
316
  msgid "When the &quot;User-Info-area&quot; change it, then it is possible to change the redirect."
317
  msgstr "Wenn der &quot;User-Info-Bereich&quot; ge&auml;ndert wird, dann kann die die Weiterleitung nach einem Logout ge&auml;ndert werden."
318
 
319
+ #: inc-options/backend_options.php:59
320
  #@ adminimize
321
  msgid "Footer"
322
  msgstr "Footer"
323
 
324
+ #: inc-options/backend_options.php:65
325
  #@ adminimize
326
  msgid "The Footer-area can hide, include all links and details."
327
  msgstr "Der Footer-Bereich kann deaktiviert werden, inklusive aller Links und Hinweise."
328
 
329
+ #: inc-options/backend_options.php:79
330
  #@ adminimize
331
  msgid "WriteScroll"
332
  msgstr "WriteScroll"
333
 
334
+ #: inc-options/backend_options.php:30
335
+ #: inc-options/backend_options.php:84
336
+ #: inc-options/backend_options.php:94
337
+ #: inc-options/backend_options.php:104
338
+ #: inc-options/backend_options.php:114
339
+ #: inc-options/backend_options.php:124
340
+ #: inc-options/backend_options.php:134
341
  #@ adminimize
342
  msgid "Activate"
343
  msgstr "Aktiv"
344
 
345
+ #: inc-options/backend_options.php:85
346
  #@ adminimize
347
  msgid "With the WriteScroll option active, these pages will automatically scroll to an optimal position for editing, when you visit Write Post or Write Page."
348
  msgstr "Automatisches Scrollen zum Editor beim Aufruf der Seite Schreiben in Beitr&auml;ge und Seite."
349
 
350
+ #: inc-options/backend_options.php:89
351
  #@ adminimize
352
  msgid "Timestamp"
353
  msgstr "Timestamp"
354
 
355
+ #: inc-options/backend_options.php:95
356
  #@ adminimize
357
  msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
358
  msgstr "Das Feld zum &Auml;ndern des Ver&ouml;ffentlichungsdatum ist immer ge&ouml;ffnet."
359
 
360
+ #: inc-options/backend_options.php:99
361
  #@ adminimize
362
  msgid "Thickbox FullScreen"
363
  msgstr "Thickbox FullScreen"
364
 
365
+ #: inc-options/backend_options.php:109
366
  #@ adminimize
367
  msgid "Flashuploader"
368
  msgstr "Flashuploader"
369
 
370
+ #: inc-options/backend_options.php:115
371
  #@ adminimize
372
  msgid "Disable the flashuploader and users use only the standard uploader."
373
  msgstr "Deaktiviere den Flashuploader und Nutzer können nur den Standard-Uploader erreichen."
374
 
375
+ #: inc-options/backend_options.php:129
376
  #@ adminimize
377
  msgid "Advice in Footer"
378
  msgstr "Hinweis im Footer"
379
 
380
+ #: inc-options/backend_options.php:163
381
  #@ adminimize
382
  msgid "Manage Posts"
383
  msgstr "Verwalten Beitr&auml;ge"
384
 
385
+ #: inc-options/backend_options.php:164
386
  #@ adminimize
387
  msgid "Manage Pages"
388
  msgstr "Verwalten Seiten"
389
 
390
+ #: inc-options/backend_options.php:165
391
  #@ adminimize
392
  msgid "Write Post"
393
  msgstr "Schreiben Beitrag"
394
 
395
+ #: inc-options/backend_options.php:166
396
  #@ adminimize
397
  msgid "Write Page"
398
  msgstr "Schreiben Seite"
399
 
400
+ #: inc-options/backend_options.php:167
401
  #: inc-options/write_post_options.php:106
402
  #@ adminimize
403
  msgid "Comments"
404
  msgstr "Kommentare"
405
 
406
+ #: inc-options/backend_options.php:168
407
  #@ adminimize
408
  msgid "other Page"
409
  msgstr "andere Seite"
410
 
411
+ #: inc-options/backend_options.php:180
412
+ #: inc-options/dashboard_options.php:122
413
  #: inc-options/global_options.php:122
414
  #: inc-options/links_options.php:126
415
  #: inc-options/menu_options.php:151
422
  msgstr "Einstellungen aktualisieren"
423
 
424
  #: inc-options/global_options.php:16
425
+ #: inc-options/minimenu.php:29
426
  #@ adminimize
427
  msgid "Global options"
428
  msgstr "Globale Einstellungen"
429
 
430
+ #: inc-options/dashboard_options.php:33
431
+ #: inc-options/dashboard_options.php:97
432
  #: inc-options/global_options.php:23
433
  #: inc-options/global_options.php:97
434
  #: inc-options/links_options.php:23
442
  msgid "Option"
443
  msgstr "Einstellung"
444
 
445
+ #: inc-options/dashboard_options.php:36
446
  #: inc-options/global_options.php:26
447
  #: inc-options/links_options.php:26
448
  #: inc-options/menu_options.php:26
484
  msgid "Admin Color Scheme"
485
  msgstr "Farbschema verwalten"
486
 
487
+ #: inc-options/dashboard_options.php:96
488
  #: inc-options/global_options.php:96
489
  #@ adminimize
490
  msgid "Your own options"
491
  msgstr "Deine eigenen Einstellungen"
492
 
493
+ #: inc-options/dashboard_options.php:96
494
  #: inc-options/global_options.php:96
495
  #: inc-options/links_options.php:100
496
  #: inc-options/wp_nav_menu_options.php:121
501
  msgid "ID or class"
502
  msgstr "ID oder Klasse"
503
 
504
+ #: inc-options/dashboard_options.php:103
505
  #: inc-options/global_options.php:103
506
  #: inc-options/links_options.php:107
507
  #: inc-options/wp_nav_menu_options.php:128
512
  msgid "It is possible to add your own IDs or classes from elements and tags. You can find IDs and classes with the FireBug Add-on for Firefox. Assign a value and the associate name per line."
513
  msgstr "Es ist möglich, dass du eigene IDs und Klassen eines Elementes oder Tags hinzufügst. Du findest IDs und Klassen sehr einfach mit dem Firebug Add-on für den Firefox. Füge pro Zeile einen Wert und dazugehörigen Namen ein."
514
 
515
+ #: inc-options/dashboard_options.php:109
516
  #: inc-options/global_options.php:109
517
  #: inc-options/links_options.php:113
518
  #: inc-options/wp_nav_menu_options.php:134
523
  msgid "Possible nomination for ID or class. Separate multiple nominations through a carriage return."
524
  msgstr "Mögliche Benennung der ID oder Klasse. Trenne Werte durch eine neue Zeile."
525
 
526
+ #: inc-options/dashboard_options.php:114
527
  #: inc-options/global_options.php:114
528
  #: inc-options/links_options.php:118
529
  #: inc-options/wp_nav_menu_options.php:139
535
  msgstr "Mögliche IDs oder Klassen. Trenne Werte durch eine neue Zeile."
536
 
537
  #: inc-options/menu_options.php:16
538
+ #: inc-options/minimenu.php:35
539
  #@ adminimize
540
  msgid "Menu Options"
541
  msgstr "Menu Einstellungen"
719
  msgid "Profile"
720
  msgstr "Profile"
721
 
722
+ #: inc-options/minimenu.php:38
723
  #: inc-options/write_post_options.php:16
724
  #: inc-options/write_post_options.php:23
725
  #@ adminimize
731
  msgid "Your own post options"
732
  msgstr "Deine eigenen Beitrags-Einstellungen"
733
 
734
+ #: inc-options/minimenu.php:41
735
  #: inc-options/write_page_options.php:15
736
  #: inc-options/write_page_options.php:22
737
  #@ adminimize
744
  msgstr "Deine eigenen Seiten-Einstellungen"
745
 
746
  #: inc-options/links_options.php:16
747
+ #: inc-options/minimenu.php:61
748
  #@ adminimize
749
  msgid "Links options"
750
  msgstr "Link Einstellungen"
779
  msgid "Advanced"
780
  msgstr "Erweitert"
781
 
782
+ #: inc-options/minimenu.php:67
783
  #: inc-options/theme_options.php:15
784
  #: inc-options/theme_options.php:100
785
  #@ adminimize
827
  msgstr "Rolle"
828
 
829
  #: inc-options/deinstall_options.php:15
830
+ #: inc-options/minimenu.php:73
831
  #@ adminimize
832
  msgid "Deinstall Options"
833
  msgstr "Einstellungen deinstallieren"
842
  msgid "Delete Options"
843
  msgstr "Einstellungen Löschen"
844
 
845
+ #: inc-options/minimenu.php:23
846
+ #: inc-options/minimenu.php:83
847
  #@ adminimize
848
  msgid "About the plugin"
849
  msgstr "&Uuml;ber das Plugin"
850
 
851
+ #: inc-options/minimenu.php:94
 
 
 
 
 
852
  #@ adminimize
853
  msgid "PayPal - The safer, easier way to pay online!"
854
  msgstr "PayPal - Der sichere und einfache Weg zu zahlen!"
855
 
856
+ #: inc-options/minimenu.php:89
857
  #@ adminimize
858
  msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a> or donate."
859
  msgstr "Du willst Danke sagen? Besuche meine <a href=\"http://bueltge.de/wunschliste/\">Wunschliste</a> oder spende."
860
 
861
+ #: adminimize.php:138
862
  #@ adminimize
863
  msgid "All entries in the database were imported."
864
  msgstr "Alle Einträge wurden in die Datenbank geschrieben."
865
 
866
  #: inc-options/im_export_options.php:15
867
+ #: inc-options/minimenu.php:70
868
  #@ adminimize
869
  msgid "Export/Import Options"
870
  msgstr "Export/Import Einstellungen"
894
  msgid "Upload file and import &raquo;"
895
  msgstr "Hochladen der Datei und importieren &raquo;"
896
 
897
+ #: inc-options/minimenu.php:19
898
  #@ adminimize
899
  msgid "MiniMenu"
900
  msgstr "MiniMenu"
901
 
902
+ #: inc-options/backend_options.php:182
903
+ #: inc-options/dashboard_options.php:127
904
  #: inc-options/deinstall_options.php:27
905
  #: inc-options/global_options.php:124
906
  #: inc-options/im_export_options.php:41
907
  #: inc-options/links_options.php:129
908
  #: inc-options/menu_options.php:153
909
+ #: inc-options/minimenu.php:99
910
  #: inc-options/theme_options.php:105
911
  #: inc-options/wp_nav_menu_options.php:149
912
  #: inc-options/write_cp_options.php:245
926
  msgid "Choose a Adminimize (<em>.seq</em>) file to upload, then click <em>Upload file and import</em>."
927
  msgstr "Wähle eine Adminimize (<em>.seq</em>) Datei zum hoch laden und dann klick <em>Hochladen der Datei und importieren</em>"
928
 
929
+ #: inc-options/backend_options.php:119
930
  #@ adminimize
931
  msgid "Category Height"
932
  msgstr "Kategorie-Höhe"
933
 
934
+ #: inc-options/backend_options.php:125
935
  #@ adminimize
936
  msgid "View the Meta Box with Categories in the full height, no scrollbar or whitespace."
937
  msgstr "Stellt in die Meta Box der Kategorien in voller Höhe dar, kein Scrollbar und kein Leerraum."
938
 
939
+ #: inc-options/backend_options.php:136
940
  #@ adminimize
941
  msgid "In the Footer you can display an advice for changing the Default-design, (x)HTML is possible."
942
  msgstr "Im Footer kann ein Hinweis auf die aktive Ver&auml;nderung des Standard-Layout gesetzt werden, (x)HTML erlaubt."
943
 
944
+ #: inc-options/backend_options.php:158
945
  #@ adminimize
946
  msgid "Dashboard deactivate, redirect to"
947
  msgstr "Dashboard inaktiv, Weiterleitung nach"
954
  msgid "HTML Editor Button"
955
  msgstr "HTML Editor Button"
956
 
957
+ #: inc-options/backend_options.php:105
958
  #@ adminimize
959
  msgid "All Thickbox-function use the full area of the browser. Thickbox is for example in upload media-files."
960
  msgstr "Alle Thickbox-Funktion verwenden den vollständigen Bereich des Browsers. Thickbox ist beispielsweise in der Medien-Upload-Funktion."
983
  msgid "http://bueltge.de/"
984
  msgstr ""
985
 
986
+ #: inc-options/backend_options.php:69
987
  #@ adminimize
988
  msgid "Header"
989
  msgstr "Header"
990
 
991
+ #: inc-options/backend_options.php:75
992
  #@ adminimize
993
  msgid "The Header-area can hide, include all links and details."
994
  msgstr "Der header-Bereich kann ausgeblendet werden, inkl. aller Links und Details."
999
  msgid "Title"
1000
  msgstr "Title"
1001
 
1002
+ #: inc-options/backend_options.php:25
1003
  #@ adminimize
1004
  msgid "Exclude Super Admin"
1005
  msgstr "Ausschließen des Super Admin"
1006
 
1007
+ #: inc-options/backend_options.php:31
1008
  #@ adminimize
1009
  msgid "Exclude the Super Admin on a WP Multisite Install from all limitations of this plugin."
1010
  msgstr "Schließe den Super Admin in einer WordPress Multisite Installation von allen Restriktionen dieses Plugins aus."
1011
 
1012
+ #: inc-options/backend_options.php:171
1013
  #@ adminimize
1014
  msgid "You have deactivated the Dashboard, please select a page for redirection or define custom url, include http://?"
1015
  msgstr "Du hast das Dashboard deaktiviert; bitte wähle eine Seite für die Weiterleitung oder definiere eine eigene URL, inklusive http://"
1019
  msgid "Admin Bar"
1020
  msgstr "Admin Bar"
1021
 
1022
+ #: inc-options/minimenu.php:64
1023
  #@ adminimize
1024
  msgid "WP Nav Menu"
1025
  msgstr "WP Nav Menü"
1059
  msgid "Messages"
1060
  msgstr "Mitteilungen"
1061
 
 
 
 
 
 
 
1062
  #: inc-options/write_cp_options.php:126
1063
  #: inc-options/write_page_options.php:124
1064
  #: inc-options/write_post_options.php:140
1160
  msgid "Your own Link options"
1161
  msgstr "Deine eigenen Link Einstellungen"
1162
 
1163
+ #: inc-options/minimenu.php:52
1164
  #: inc-options/write_cp_options.php:21
1165
  #: inc-options/write_cp_options.php:29
1166
  #@ adminimize
1178
  msgid "Your own %s options"
1179
  msgstr "Deine eigenen %s Einstellungen"
1180
 
1181
+ #. translators: plugin header field 'Version'
1182
+ #: adminimize.php:0
1183
+ #@ adminimize
1184
+ msgid "1.7.20"
1185
+ msgstr ""
1186
+
1187
+ #: inc-options/dashboard_options.php:17
1188
+ #: inc-options/minimenu.php:32
1189
+ #@ adminimize
1190
+ msgid "Dashboard options"
1191
+ msgstr "Dashboard Einstellungen"
1192
+
1193
+ #: inc-options/dashboard_options.php:25
1194
+ #@ adminimize
1195
+ msgid "To complete the installation for Dashboard Widgets you must visit your dashboard once and then come back to Settings > Adminimize to configure who has access to each widget."
1196
+ msgstr "Um die Installation für Dashboard Widgets abzuschließen, musst du das Dashboard einmal besuchen und dann zurück zu den Einstellungen > Adminimize kommen, um den Zugriff der Widgets zu steuern."
1197
+
1198
+ #: inc-options/minimenu.php:87
1199
+ #@ adminimize
1200
+ msgid "Further information: Visit the <a href=\"http://wordpress.org/extend/plugins/adminimize/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
1201
+ msgstr "Weitere Informationen: Besuchen Sie die <a href=\\\"http://wordpress.org/extend/plugins/adminimize/\\\">Plugin Website</a> für weitere Informationen oder um die neueste Version des Plugins erhalten."
1202
+
languages/adminimize-es_ES.mo CHANGED
File without changes
languages/adminimize-es_ES.po CHANGED
File without changes
languages/adminimize-fr_FR.mo CHANGED
File without changes
languages/adminimize-fr_FR.po CHANGED
File without changes
languages/adminimize-it_IT.mo CHANGED
File without changes
languages/adminimize-it_IT.po CHANGED
File without changes
languages/adminimize-nl_NL.mo CHANGED
File without changes
languages/adminimize-nl_NL.po CHANGED
File without changes
languages/adminimize-tr.po CHANGED
File without changes
languages/adminimize-xx_XX.pot CHANGED
@@ -19,919 +19,942 @@ msgstr ""
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:470
63
- #: inc-options/links_options.php:44
64
- #: inc-options/menu_options.php:95
 
65
  #@ default
66
  #@ adminimize
67
  msgid "Categories"
68
  msgstr "Kategorien"
69
 
70
- #: adminimize.php:476
71
- #: adminimize.php:487
72
  #@ default
73
  msgid "+ Add New Category"
74
  msgstr "+ Add New Category"
75
 
76
- #: adminimize.php:478
77
- #: adminimize.php:489
78
  #@ default
79
  msgid "New category name"
80
  msgstr "New category name"
81
 
82
- #: adminimize.php:479
83
- #: adminimize.php:491
84
  #@ default
85
  msgid "Parent category"
86
  msgstr "Parent category"
87
 
88
- #: adminimize.php:480
89
- #: adminimize.php:492
90
  #@ default
91
  msgid "Add"
92
  msgstr "Add"
93
 
94
- #: adminimize.php:489
95
- #: inc-options/menu_options.php:96
 
96
  #@ default
97
  #@ adminimize
98
  msgid "Add New Category"
99
  msgstr "Add New Category"
100
 
101
- #: adminimize.php:513
102
- #: adminimize.php:514
103
- #: inc-options/menu_options.php:93
 
 
 
104
  #@ default
105
  #@ adminimize
106
  msgid "Tags"
107
  msgstr "Tags"
108
 
109
- #: adminimize.php:555
110
- #: adminimize.php:569
111
- #: adminimize.php:583
 
112
  #@ default
113
  msgid "Blue"
114
  msgstr "Blau"
115
 
116
- #: adminimize.php:562
117
- #: adminimize.php:576
118
- #: adminimize.php:590
 
119
  #@ default
120
  msgid "Gray"
121
  msgstr "Grau"
122
 
123
- #: adminimize.php:598
124
- #: adminimize.php:640
125
- #: adminimize.php:663
126
  #@ default
127
  msgid "Classic"
128
  msgstr "Classic"
129
 
130
- #: adminimize.php:605
131
- #: adminimize.php:647
132
- #: adminimize.php:670
133
  #@ default
134
  msgid "Fresh"
135
  msgstr "Fresh"
136
 
137
- #: adminimize.php:612
138
  #@ default
139
  msgid "WordPress 2.3"
140
  msgstr "WordPress 2.3"
141
 
142
- #: adminimize.php:619
143
  #@ default
144
  msgid "Maybe i'm colorblind"
145
  msgstr "Maybe i'm colorblind"
146
 
147
- #: adminimize.php:626
148
  #@ default
149
  msgid "Grey"
150
  msgstr "Grey"
151
 
152
- #: adminimize.php:751
153
- #: adminimize.php:754
154
  #@ default
155
  msgid "Dashboard"
156
  msgstr "Dashboard"
157
 
158
- #: adminimize.php:816
159
- #: adminimize.php:818
160
- #: adminimize.php:833
161
- #: adminimize.php:835
162
- #: adminimize.php:1138
163
  #@ default
164
  msgid "Log Out"
165
  msgstr "Log Out"
166
 
167
- #: adminimize.php:1159
168
  #@ default
169
  msgid "Visit plugin homepage"
170
  msgstr "Visit plugin homepage"
171
 
172
- #: adminimize.php:1162
173
  #@ default
174
  msgid "plugin"
175
  msgstr "plugin"
176
 
177
- #: adminimize.php:1162
 
178
  #@ default
 
179
  msgid "Version"
180
  msgstr "Version"
181
 
182
- #: adminimize.php:1162
183
  #@ adminimize
184
  msgid "History"
185
  msgstr "Historie"
186
 
187
- #: adminimize.php:1162
 
 
 
188
  #@ default
189
  msgid "Author"
190
  msgstr "Author"
191
 
192
- #: adminimize.php:1166
193
  #@ adminimize
194
  msgid "plugin activate"
195
  msgstr "plugin activate"
196
 
197
- #: adminimize.php:1187
198
  #@ default
199
  msgid "Settings"
200
  msgstr "Settings"
201
 
202
- #: adminimize.php:1250
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:1268
210
- #: inc-options/minimenu.php:6
211
  #@ adminimize
212
  msgid "Adminimize"
213
  msgstr "Adminimize"
214
 
215
- #: adminimize.php:1270
216
  #@ adminimize
217
  msgid "Adminimize Options"
218
  msgstr "Adminimize Einstellungen"
219
 
220
- #: adminimize.php:1292
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:100
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:336
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:90
449
- #: inc-options/menu_options.php:187
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:89
521
- #: inc-options/menu_options.php:186
522
- #: inc-options/wp_nav_menu_options.php:40
 
 
523
  #@ default
524
  msgid "Help"
525
- msgstr ""
526
 
527
- #: inc-options/menu_options.php:92
528
- #: inc-options/menu_options.php:189
 
529
  #@ adminimize
530
  msgid "Permalink"
531
  msgstr "Permalink"
532
 
533
- #: inc-options/menu_options.php:97
534
  #@ adminimize
535
  msgid "Excerpt"
536
  msgstr "Auszug"
537
 
538
- #: inc-options/menu_options.php:98
539
  #@ adminimize
540
  msgid "Trackbacks"
541
  msgstr "Trackbacks"
542
 
543
- #: inc-options/menu_options.php:99
544
- #: inc-options/menu_options.php:190
545
  #@ default
546
  msgid "Custom Fields"
547
  msgstr "Benutzerdefinierte Felder"
548
 
549
- #: inc-options/menu_options.php:101
 
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:102
555
  #@ default
556
  msgid "Post Author"
557
  msgstr "Autor"
558
 
559
- #: inc-options/menu_options.php:103
560
  #@ default
561
  msgid "Post Revisions"
562
  msgstr "Post Revisions"
563
 
564
- #: inc-options/menu_options.php:104
 
565
  #@ adminimize
566
  msgid "Related, Shortcuts"
567
  msgstr "Siehe auch, Tastaturk&uuml;rzel"
568
 
569
- #: inc-options/menu_options.php:106
570
- #: inc-options/menu_options.php:200
 
571
  #@ adminimize
572
  msgid "h2: Advanced Options"
573
  msgstr "h2: Erweiterte Einstellungen"
574
 
575
- #: inc-options/menu_options.php:107
576
- #: inc-options/menu_options.php:201
 
577
  #@ adminimize
578
  msgid "Media Buttons (all)"
579
  msgstr "Media Buttons (alle)"
580
 
581
- #: inc-options/menu_options.php:108
582
- #: inc-options/menu_options.php:202
 
583
  #@ adminimize
584
  msgid "Word count"
585
  msgstr "Word count"
586
 
587
- #: inc-options/menu_options.php:109
588
- #@ default
 
589
  msgid "Post Slug"
590
- msgstr ""
591
 
592
- #: inc-options/links_options.php:48
593
- #: inc-options/menu_options.php:110
594
- #: inc-options/menu_options.php:204
 
595
  #@ adminimize
596
  msgid "Publish Actions"
597
  msgstr "Publish Actions"
598
 
599
- #: inc-options/menu_options.php:111
600
- #: inc-options/menu_options.php:205
 
601
  #@ default
 
602
  msgid "Discussion"
603
- msgstr ""
604
 
605
- #: inc-options/menu_options.php:116
606
- #@ default
 
607
  msgid "Post Thumbnail"
608
- msgstr ""
609
 
610
- #: inc-options/menu_options.php:118
611
- #: inc-options/menu_options.php:212
612
- #@ default
613
  #@ adminimize
614
  msgid "Suggested tags from"
615
  msgstr "Suggested tags from"
616
 
617
- #: inc-options/menu_options.php:120
618
- #@ default
619
- msgid "Text Control"
620
- msgstr "Text Control"
621
-
622
- #: inc-options/menu_options.php:122
623
- #: inc-options/menu_options.php:214
624
  #@ default
625
  msgid "HTML Special Characters"
626
  msgstr "HTML Special Characters"
627
 
628
- #: inc-options/menu_options.php:124
629
- #@ default
630
- msgid "All in One SEO Pack"
631
- msgstr ""
632
-
633
- #: inc-options/menu_options.php:191
634
  #@ adminimize
635
  msgid "Comments &amp; Pings"
636
  msgstr "Kommentare &amp; Pings"
637
 
638
- #: inc-options/menu_options.php:192
639
  #@ adminimize
640
  msgid "Password Protect This Page"
641
  msgstr "Diese Seite mit einem Passwort versehen"
642
 
643
- #: inc-options/menu_options.php:193
644
- #@ default
645
  msgid "Attributes"
646
- msgstr ""
647
 
648
- #: inc-options/menu_options.php:194
649
  #@ adminimize
650
  msgid "Page Template"
651
  msgstr "Seiten Template"
652
 
653
- #: inc-options/menu_options.php:195
654
  #@ adminimize
655
  msgid "Page Order"
656
  msgstr "Reihenfolge"
657
 
658
- #: inc-options/menu_options.php:196
659
  #@ default
660
  msgid "Page Author"
661
  msgstr "Seitenautor"
662
 
663
- #: inc-options/menu_options.php:197
664
  #@ default
665
  msgid "Page Revisions"
666
  msgstr "Page Revisions"
667
 
668
- #: inc-options/menu_options.php:198
669
  #@ adminimize
670
  msgid "Related"
671
  msgstr "Siehe auch"
672
 
673
- #: inc-options/menu_options.php:203
674
- #@ default
675
  msgid "Page Slug"
676
- msgstr ""
677
 
678
- #: inc-options/menu_options.php:210
679
- #@ default
680
  msgid "Page Image"
681
- msgstr ""
682
 
683
- #: inc-options/menu_options.php:252
684
- #: inc-options/menu_options.php:300
685
  #@ adminimize
686
  msgid "After activate the check box it heavy attitudes will change."
687
  msgstr "Wenn die Checkbox aktiv ist, dann wird das Ändern von Einstellungen erschwert."
688
 
689
- #: inc-options/menu_options.php:283
690
  #@ default
691
  msgid "Profile"
692
  msgstr "Profile"
693
 
694
- #: inc-options/minimenu.php:51
695
- #: inc-options/write_post_options.php:8
696
- #: inc-options/write_post_options.php:15
697
  #@ adminimize
698
  msgid "Write options - Post"
699
  msgstr "Schreiben Einstellungen - Beitr&auml;ge"
700
 
701
- #: inc-options/write_post_options.php:54
702
  #@ adminimize
703
  msgid "Your own post options"
704
  msgstr "Deine eigenen Beitrags-Einstellungen"
705
 
706
- #: inc-options/minimenu.php:54
707
- #: inc-options/write_page_options.php:7
708
- #: inc-options/write_page_options.php:14
709
  #@ adminimize
710
  msgid "Write options - Page"
711
  msgstr "Schreiben Einstellungen - Seiten"
712
 
713
- #: inc-options/write_page_options.php:53
714
  #@ adminimize
715
  msgid "Your own page options"
716
  msgstr "Deine eigenen Seiten-Einstellungen"
717
 
718
- #: inc-options/links_options.php:8
719
- #: inc-options/minimenu.php:57
720
  #@ adminimize
721
  msgid "Links options"
722
  msgstr "Link Einstellungen"
723
 
724
- #: inc-options/links_options.php:41
725
  #@ default
726
  msgid "Name"
727
  msgstr "Name"
728
 
729
- #: inc-options/links_options.php:42
730
  #@ default
731
  msgid "Web Address"
732
  msgstr "Web-Adresse"
733
 
734
- #: inc-options/links_options.php:43
735
  #@ default
736
  msgid "Description"
737
  msgstr "Beschreibung"
738
 
739
- #: inc-options/links_options.php:45
740
  #@ default
741
  msgid "Target"
742
  msgstr "Target"
743
 
744
- #: inc-options/links_options.php:46
745
  #@ default
746
  msgid "Link Relationship (XFN)"
747
  msgstr "Link-Beziehungen (XFN)"
748
 
749
- #: inc-options/links_options.php:47
750
  #@ default
751
  msgid "Advanced"
752
  msgstr "Erweitert"
753
 
754
- #: adminimize_page.php:143
755
- #: adminimize_page.php:228
756
- #: inc-options/minimenu.php:63
757
  #@ adminimize
758
  msgid "Set Theme"
759
  msgstr "Theme zuweisen"
760
 
761
- #: adminimize_page.php:150
762
  #@ adminimize
763
  msgid "For better peformance with many users on your blog; load only userlist, when you will change the theme options for users."
764
  msgstr "Für eine bessere Performance bei vielen Usern in deinem Blog werden die Userdaten nur nach Aufforderung geladen."
765
 
766
- #: adminimize_page.php:153
767
  #@ adminimize
768
  msgid "Load User Data"
769
  msgstr "Lade User Daten"
770
 
771
- #: adminimize_page.php:164
772
  #@ default
773
  msgid "User-ID"
774
  msgstr "User-ID"
775
 
776
- #: adminimize_page.php:165
777
  #@ default
778
  msgid "Username"
779
  msgstr "Benutzername"
780
 
781
- #: adminimize_page.php:166
782
  #@ default
783
  msgid "Display name publicly as"
784
  msgstr "Name im Blog"
785
 
786
- #: adminimize_page.php:167
787
  #@ default
788
  msgid "Admin-Color Scheme"
789
  msgstr "Admin-Color Scheme"
790
 
791
- #: adminimize_page.php:168
792
  #@ default
793
  msgid "User Level"
794
  msgstr "User Level"
795
 
796
- #: adminimize_page.php:169
797
  #@ default
798
  msgid "Role"
799
  msgstr "Rolle"
800
 
801
- #: adminimize_page.php:276
802
- #: inc-options/minimenu.php:69
803
  #@ adminimize
804
  msgid "Deinstall Options"
805
  msgstr "Einstellungen deinstallieren"
806
 
807
- #: adminimize_page.php:279
808
  #@ adminimize
809
  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."
810
  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!"
811
 
812
- #: adminimize_page.php:283
813
  #@ adminimize
814
  msgid "Delete Options"
815
  msgstr "Einstellungen Löschen"
816
 
817
- #: adminimize_page.php:297
818
- #: inc-options/minimenu.php:13
819
- #: inc-options/minimenu.php:72
820
  #@ adminimize
821
  msgid "About the plugin"
822
  msgstr "&Uuml;ber das Plugin"
823
 
824
- #: adminimize_page.php:300
825
- #: inc-options/minimenu.php:15
826
- #@ adminimize
827
- 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."
828
- 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."
829
-
830
- #: adminimize_page.php:306
831
- #: inc-options/minimenu.php:21
832
  #@ adminimize
833
  msgid "PayPal - The safer, easier way to pay online!"
834
  msgstr "PayPal - Der sichere und einfache Weg zu zahlen!"
835
 
836
- #: adminimize_page.php:310
837
- #: inc-options/minimenu.php:25
838
  #@ adminimize
839
  msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a> or donate."
840
  msgstr "Du willst Danke sagen? Besuche meine <a href=\"http://bueltge.de/wunschliste/\">Wunschliste</a> oder spende."
841
 
842
- #: adminimize.php:114
843
  #@ adminimize
844
  msgid "All entries in the database were imported."
845
  msgstr "Alle Einträge wurden in die Datenbank geschrieben."
846
 
847
- #: adminimize_page.php:241
848
- #: inc-options/minimenu.php:66
849
  #@ adminimize
850
  msgid "Export/Import Options"
851
  msgstr "Export/Import Einstellungen"
852
 
853
- #: adminimize_page.php:245
854
  #@ adminimize
855
  msgid "Export"
856
  msgstr "Export"
857
 
858
- #: adminimize_page.php:250
859
  #@ adminimize
860
  msgid "Export &raquo;"
861
  msgstr "Exportieren &raquo;"
862
 
863
- #: adminimize_page.php:254
864
  #@ adminimize
865
  msgid "Import"
866
  msgstr "Import"
867
 
868
- #: adminimize_page.php:259
869
  #@ adminimize
870
  msgid "Choose a file from your computer"
871
  msgstr "Wähle eine Datei vom Rechner"
872
 
873
- #: adminimize_page.php:264
874
  #@ adminimize
875
  msgid "Upload file and import &raquo;"
876
  msgstr "Hochladen der Datei und importieren &raquo;"
877
 
878
- #: inc-options/minimenu.php:38
879
  #@ adminimize
880
  msgid "MiniMenu"
881
  msgstr "MiniMenu"
882
 
883
- #: adminimize_page.php:233
884
- #: adminimize_page.php:267
885
- #: adminimize_page.php:288
886
- #: adminimize_page.php:314
887
- #: inc-options/backend_options.php:175
888
- #: inc-options/global_options.php:116
889
- #: inc-options/links_options.php:121
890
- #: inc-options/menu_options.php:338
891
- #: inc-options/wp_nav_menu_options.php:141
892
- #: inc-options/write_page_options.php:81
893
- #: inc-options/write_post_options.php:82
 
 
894
  #@ adminimize
895
  msgid "scroll to top"
896
  msgstr "Nach oben"
897
 
898
- #: adminimize_page.php:247
899
  #@ adminimize
900
  msgid "You can save a .seq file with your options."
901
  msgstr "Du kannst deine Einstellungen in einer .seq Datei speichern."
902
 
903
- #: adminimize_page.php:257
904
  #@ adminimize
905
  msgid "Choose a Adminimize (<em>.seq</em>) file to upload, then click <em>Upload file and import</em>."
906
  msgstr "Wähle eine Adminimize (<em>.seq</em>) Datei zum hoch laden und dann klick <em>Hochladen der Datei und importieren</em>"
907
 
908
- #: inc-options/backend_options.php:112
909
  #@ adminimize
910
  msgid "Category Height"
911
  msgstr "Kategorie-Höhe"
912
 
913
- #: inc-options/backend_options.php:118
914
  #@ adminimize
915
  msgid "View the Meta Box with Categories in the full height, no scrollbar or whitespace."
916
  msgstr "Stellt in die Meta Box der Kategorien in voller Höhe dar, kein Scrollbar und kein Leerraum."
917
 
918
- #: inc-options/backend_options.php:129
919
  #@ adminimize
920
  msgid "In the Footer you can display an advice for changing the Default-design, (x)HTML is possible."
921
  msgstr "Im Footer kann ein Hinweis auf die aktive Ver&auml;nderung des Standard-Layout gesetzt werden, (x)HTML erlaubt."
922
 
923
- #: inc-options/backend_options.php:151
924
  #@ adminimize
925
  msgid "Dashboard deactivate, redirect to"
926
  msgstr "Dashboard inaktiv, Weiterleitung nach"
927
 
928
- #: inc-options/menu_options.php:112
929
- #: inc-options/menu_options.php:206
 
930
  #@ default
 
931
  msgid "HTML Editor Button"
932
- msgstr ""
933
 
934
- #: inc-options/backend_options.php:98
935
  #@ adminimize
936
  msgid "All Thickbox-function use the full area of the browser. Thickbox is for example in upload media-files."
937
  msgstr "Alle Thickbox-Funktion verwenden den vollständigen Bereich des Browsers. Thickbox ist beispielsweise in der Medien-Upload-Funktion."
@@ -946,7 +969,7 @@ msgstr ""
946
  #: adminimize.php:0
947
  #@ adminimize
948
  msgid "Visually compresses the administratrive meta-boxes so that more admin page content can be initially seen. The plugin that lets you hide 'unnecessary' items from the WordPress administration menu, for alle roles of your install. You can also hide post meta controls on the edit-area to simplify the interface. It is possible to simplify the admin in different for all roles."
949
- msgstr "Visuelles Reduzieren der administrativen Meta-Boxen, so dass mehr Raum ist und nur dargestellt, was gebraucht wird. Das Plugin erlaubt das ausblenden von ungenutzten Bereich vom WordPress Administrations-Bereich und dem Menu für alle vorhandenen Rollen. Es ist ebenso möglich, dass man Bereiche in Teilbereichen ausblenden und eigene Bereiche ausblenden kann. Kurz: Reduzieren den Admin-Bereich für das, was die jeweilige Rolle benötigt."
950
 
951
  #. translators: plugin header field 'Author'
952
  #: adminimize.php:0
@@ -960,87 +983,220 @@ msgstr ""
960
  msgid "http://bueltge.de/"
961
  msgstr ""
962
 
963
- #: inc-options/backend_options.php:62
964
  #@ adminimize
965
  msgid "Header"
966
  msgstr "Header"
967
 
968
- #: inc-options/backend_options.php:68
969
  #@ adminimize
970
  msgid "The Header-area can hide, include all links and details."
971
  msgstr "Der header-Bereich kann ausgeblendet werden, inkl. aller Links und Details."
972
 
973
- #: inc-options/menu_options.php:91
974
- #: inc-options/menu_options.php:188
975
  #@ adminimize
976
  msgid "Title"
977
  msgstr "Title"
978
 
979
- #: inc-options/backend_options.php:18
980
  #@ adminimize
981
  msgid "Exclude Super Admin"
982
  msgstr "Ausschließen des Super Admin"
983
 
984
- #: inc-options/backend_options.php:24
985
  #@ adminimize
986
  msgid "Exclude the Super Admin on a WP Multisite Install from all limitations of this plugin."
987
  msgstr "Schließe den Super Admin in einer WordPress Multisite Installation von allen Restriktionen dieses Plugins aus."
988
 
989
- #: inc-options/backend_options.php:164
990
  #@ adminimize
991
  msgid "You have deactivated the Dashboard, please select a page for redirection or define custom url, include http://?"
992
  msgstr "Du hast das Dashboard deaktiviert; bitte wähle eine Seite für die Weiterleitung oder definiere eine eigene URL, inklusive http://"
993
 
994
- #: inc-options/global_options.php:39
995
  #@ adminimize
996
  msgid "Admin Bar"
997
  msgstr "Admin Bar"
998
 
999
- #: inc-options/minimenu.php:60
1000
  #@ adminimize
1001
  msgid "WP Nav Menu"
1002
  msgstr "WP Nav Menü"
1003
 
1004
- #: inc-options/wp_nav_menu_options.php:7
1005
  #@ adminimize
1006
  msgid "WP Nav Menu options"
1007
  msgstr "WP Nav Menü Einstellungen"
1008
 
1009
- #: inc-options/wp_nav_menu_options.php:42
1010
- #: inc-options/wp_nav_menu_options.php:48
 
1011
  #@ default
1012
  msgid "Theme Locations"
1013
- msgstr ""
1014
 
1015
- #: inc-options/wp_nav_menu_options.php:43
1016
- #@ default
1017
  msgid "Custom Links"
1018
- msgstr ""
1019
-
1020
- #: inc-options/wp_nav_menu_options.php:44
1021
- #@ default
1022
- msgid "#"
1023
- msgstr ""
1024
 
1025
- #: inc-options/wp_nav_menu_options.php:44
1026
- #@ default
1027
  msgid "Add menu"
1028
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1029
 
1030
  #. translators: plugin header field 'Version'
1031
  #: adminimize.php:0
1032
  #@ adminimize
1033
- msgid "1.7.16"
1034
  msgstr ""
1035
 
1036
- #: inc-options/menu_options.php:94
1037
- #@ default
1038
- msgid "Format"
1039
- msgstr ""
 
1040
 
1041
- #: inc-options/menu_options.php:105
1042
- #: inc-options/menu_options.php:199
1043
  #@ adminimize
1044
- msgid "Messages"
1045
- msgstr "Mitteilungen"
 
 
 
 
 
1046
 
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
+ #: adminimize.php:127
23
  #@ adminimize
24
  msgid "Unknown error."
25
  msgstr "Unbekannter Fehler."
26
 
27
+ #: adminimize.php:136
28
  #@ adminimize
29
  msgid "The updates were saved."
30
  msgstr "Die Einstellungen wurden gespeichert"
31
 
32
+ #: adminimize.php:137
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:139
38
  #@ adminimize
39
  msgid "All entries in the database were deleted."
40
  msgstr "Die Einstellungen wurde gel&ouml;scht!"
41
 
42
+ #: adminimize.php:140
43
  #@ adminimize
44
  msgid "Set the checkbox on deinstall-button."
45
  msgstr "Checkbox setzen, wenn wirklich deinstalliert werden soll!"
46
 
47
+ #: adminimize.php:141
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:142
53
  #@ adminimize
54
  msgid "Backend-Theme was activated!"
55
  msgstr "Backend-Theme wurde zugewiesen!"
56
 
57
+ #: adminimize.php:143
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:521
63
+ #: inc-options/links_options.php:52
64
+ #: inc-options/write_cp_options.php:99
65
+ #: inc-options/write_post_options.php:101
66
  #@ default
67
  #@ adminimize
68
  msgid "Categories"
69
  msgstr "Kategorien"
70
 
71
+ #: adminimize.php:527
72
+ #: adminimize.php:538
73
  #@ default
74
  msgid "+ Add New Category"
75
  msgstr "+ Add New Category"
76
 
77
+ #: adminimize.php:529
78
+ #: adminimize.php:540
79
  #@ default
80
  msgid "New category name"
81
  msgstr "New category name"
82
 
83
+ #: adminimize.php:530
84
+ #: adminimize.php:542
85
  #@ default
86
  msgid "Parent category"
87
  msgstr "Parent category"
88
 
89
+ #: adminimize.php:531
90
+ #: adminimize.php:543
91
  #@ default
92
  msgid "Add"
93
  msgstr "Add"
94
 
95
+ #: adminimize.php:540
96
+ #: inc-options/write_cp_options.php:100
97
+ #: inc-options/write_post_options.php:102
98
  #@ default
99
  #@ adminimize
100
  msgid "Add New Category"
101
  msgstr "Add New Category"
102
 
103
+ #: adminimize.php:564
104
+ #: adminimize.php:565
105
+ #: inc-options/write_cp_options.php:97
106
+ #: inc-options/write_cp_options.php:135
107
+ #: inc-options/write_post_options.php:99
108
+ #: inc-options/write_post_options.php:149
109
  #@ default
110
  #@ adminimize
111
  msgid "Tags"
112
  msgstr "Tags"
113
 
114
+ #: adminimize.php:607
115
+ #: adminimize.php:624
116
+ #: adminimize.php:638
117
+ #: adminimize.php:652
118
  #@ default
119
  msgid "Blue"
120
  msgstr "Blau"
121
 
122
+ #: adminimize.php:614
123
+ #: adminimize.php:631
124
+ #: adminimize.php:645
125
+ #: adminimize.php:659
126
  #@ default
127
  msgid "Gray"
128
  msgstr "Grau"
129
 
130
+ #: adminimize.php:667
131
+ #: adminimize.php:709
132
+ #: adminimize.php:732
133
  #@ default
134
  msgid "Classic"
135
  msgstr "Classic"
136
 
137
+ #: adminimize.php:674
138
+ #: adminimize.php:716
139
+ #: adminimize.php:739
140
  #@ default
141
  msgid "Fresh"
142
  msgstr "Fresh"
143
 
144
+ #: adminimize.php:681
145
  #@ default
146
  msgid "WordPress 2.3"
147
  msgstr "WordPress 2.3"
148
 
149
+ #: adminimize.php:688
150
  #@ default
151
  msgid "Maybe i'm colorblind"
152
  msgstr "Maybe i'm colorblind"
153
 
154
+ #: adminimize.php:695
155
  #@ default
156
  msgid "Grey"
157
  msgstr "Grey"
158
 
159
+ #: adminimize.php:820
160
+ #: adminimize.php:823
161
  #@ default
162
  msgid "Dashboard"
163
  msgstr "Dashboard"
164
 
165
+ #: adminimize.php:891
166
+ #: adminimize.php:893
167
+ #: adminimize.php:914
168
+ #: adminimize.php:916
169
+ #: adminimize.php:1313
170
  #@ default
171
  msgid "Log Out"
172
  msgstr "Log Out"
173
 
174
+ #: adminimize.php:1335
175
  #@ default
176
  msgid "Visit plugin homepage"
177
  msgstr "Visit plugin homepage"
178
 
179
+ #: adminimize.php:1338
180
  #@ default
181
  msgid "plugin"
182
  msgstr "plugin"
183
 
184
+ #: adminimize.php:1338
185
+ #: inc-options/minimenu.php:85
186
  #@ default
187
+ #@ adminimize
188
  msgid "Version"
189
  msgstr "Version"
190
 
191
+ #: adminimize.php:1338
192
  #@ adminimize
193
  msgid "History"
194
  msgstr "Historie"
195
 
196
+ #: adminimize.php:1338
197
+ #: inc-options/write_cp_options.php:129
198
+ #: inc-options/write_page_options.php:128
199
+ #: inc-options/write_post_options.php:143
200
  #@ default
201
  msgid "Author"
202
  msgstr "Author"
203
 
204
+ #: adminimize.php:1342
205
  #@ adminimize
206
  msgid "plugin activate"
207
  msgstr "plugin activate"
208
 
209
+ #: adminimize.php:1363
210
  #@ default
211
  msgid "Settings"
212
  msgstr "Settings"
213
 
214
+ #: adminimize.php:1379
215
  #@ adminimize
216
  msgid "<a href=\"http://wordpress.org/extend/plugins/adminimize/\">Documentation</a>"
217
  msgstr "<a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">Dokumentation</a> (<a href=\"http://wordpress.org/extend/plugins/adminimize/\">en</a>)"
218
 
219
  #. translators: plugin header field 'Name'
220
  #: adminimize.php:0
221
+ #: adminimize.php:1396
222
+ #: inc-options/minimenu.php:14
223
  #@ adminimize
224
  msgid "Adminimize"
225
  msgstr "Adminimize"
226
 
227
+ #: adminimize.php:1395
228
  #@ adminimize
229
  msgid "Adminimize Options"
230
  msgstr "Adminimize Einstellungen"
231
 
232
+ #: adminimize.php:1423
233
  #@ default
234
  msgid "Cheatin&#8217; uh?"
235
  msgstr "Cheatin&#8217; uh?"
236
 
237
+ #: inc-options/backend_options.php:15
238
+ #: inc-options/dashboard_options.php:16
239
+ #: inc-options/deinstall_options.php:14
240
+ #: inc-options/global_options.php:15
241
+ #: inc-options/im_export_options.php:14
242
+ #: inc-options/links_options.php:15
243
+ #: inc-options/menu_options.php:15
244
+ #: inc-options/minimenu.php:18
245
+ #: inc-options/minimenu.php:82
246
+ #: inc-options/theme_options.php:14
247
+ #: inc-options/wp_nav_menu_options.php:14
248
+ #: inc-options/write_cp_options.php:19
249
+ #: inc-options/write_page_options.php:14
250
+ #: inc-options/write_post_options.php:15
251
  #@ default
252
  msgid "Click to toggle"
253
  msgstr "Zum Umschalten klicken"
254
 
255
+ #: inc-options/backend_options.php:16
256
+ #: inc-options/minimenu.php:26
257
  #@ adminimize
258
  msgid "Backend Options"
259
  msgstr "Einstellungen Backend"
260
 
261
+ #: inc-options/backend_options.php:36
262
  #@ adminimize
263
  msgid "User-Info"
264
  msgstr "User-Info"
265
 
266
+ #: inc-options/backend_options.php:29
267
+ #: inc-options/backend_options.php:40
268
+ #: inc-options/backend_options.php:53
269
+ #: inc-options/backend_options.php:63
270
+ #: inc-options/backend_options.php:73
271
+ #: inc-options/backend_options.php:83
272
+ #: inc-options/backend_options.php:93
273
+ #: inc-options/backend_options.php:103
274
+ #: inc-options/backend_options.php:113
275
+ #: inc-options/backend_options.php:123
276
+ #: inc-options/backend_options.php:133
277
+ #: inc-options/backend_options.php:162
278
  #@ adminimize
279
  msgid "Default"
280
  msgstr "Standard"
281
 
282
+ #: inc-options/backend_options.php:41
283
+ #: inc-options/backend_options.php:64
284
+ #: inc-options/backend_options.php:74
285
  #@ adminimize
286
  msgid "Hide"
287
  msgstr "Ausblenden"
288
 
289
+ #: inc-options/backend_options.php:42
290
  #@ adminimize
291
  msgid "Only logout"
292
  msgstr "nur Abmelden"
293
 
294
+ #: inc-options/backend_options.php:43
295
  #@ adminimize
296
  msgid "User &amp; Logout"
297
  msgstr "User &amp; Abmelden"
298
 
299
+ #: inc-options/backend_options.php:44
300
  #@ adminimize
301
  msgid "The &quot;User-Info-area&quot; is on the top right side of the backend. You can hide or reduced show."
302
  msgstr "Der &quot;User-Info-Bereich&quot; ist im oberen rechten Bereich zu finden und kann ausgeblendet oder reduziert dargestellt werden."
303
 
304
+ #: inc-options/backend_options.php:49
305
  #@ adminimize
306
  msgid "Change User-Info, redirect to"
307
  msgstr "User Info ge&auml;ndert, Weiterleitung nach"
308
 
309
+ #: inc-options/backend_options.php:54
310
  #@ adminimize
311
  msgid "Frontpage of the Blog"
312
  msgstr "Startseite des Blog"
313
 
314
+ #: inc-options/backend_options.php:55
315
  #@ adminimize
316
  msgid "When the &quot;User-Info-area&quot; change it, then it is possible to change the redirect."
317
  msgstr "Wenn der &quot;User-Info-Bereich&quot; ge&auml;ndert wird, dann kann die die Weiterleitung nach einem Logout ge&auml;ndert werden."
318
 
319
+ #: inc-options/backend_options.php:59
320
  #@ adminimize
321
  msgid "Footer"
322
  msgstr "Footer"
323
 
324
+ #: inc-options/backend_options.php:65
325
  #@ adminimize
326
  msgid "The Footer-area can hide, include all links and details."
327
  msgstr "Der Footer-Bereich kann deaktiviert werden, inklusive aller Links und Hinweise."
328
 
329
+ #: inc-options/backend_options.php:79
330
  #@ adminimize
331
  msgid "WriteScroll"
332
  msgstr "WriteScroll"
333
 
334
+ #: inc-options/backend_options.php:30
335
+ #: inc-options/backend_options.php:84
336
+ #: inc-options/backend_options.php:94
337
+ #: inc-options/backend_options.php:104
338
+ #: inc-options/backend_options.php:114
339
+ #: inc-options/backend_options.php:124
340
+ #: inc-options/backend_options.php:134
341
  #@ adminimize
342
  msgid "Activate"
343
  msgstr "Aktiv"
344
 
345
+ #: inc-options/backend_options.php:85
346
  #@ adminimize
347
  msgid "With the WriteScroll option active, these pages will automatically scroll to an optimal position for editing, when you visit Write Post or Write Page."
348
  msgstr "Automatisches Scrollen zum Editor beim Aufruf der Seite Schreiben in Beitr&auml;ge und Seite."
349
 
350
+ #: inc-options/backend_options.php:89
351
  #@ adminimize
352
  msgid "Timestamp"
353
  msgstr "Timestamp"
354
 
355
+ #: inc-options/backend_options.php:95
356
  #@ adminimize
357
  msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
358
  msgstr "Das Feld zum &Auml;ndern des Ver&ouml;ffentlichungsdatum ist immer ge&ouml;ffnet."
359
 
360
+ #: inc-options/backend_options.php:99
361
  #@ adminimize
362
  msgid "Thickbox FullScreen"
363
  msgstr "Thickbox FullScreen"
364
 
365
+ #: inc-options/backend_options.php:109
366
  #@ adminimize
367
  msgid "Flashuploader"
368
  msgstr "Flashuploader"
369
 
370
+ #: inc-options/backend_options.php:115
371
  #@ adminimize
372
  msgid "Disable the flashuploader and users use only the standard uploader."
373
  msgstr "Deaktiviere den Flashuploader und Nutzer können nur den Standard-Uploader erreichen."
374
 
375
+ #: inc-options/backend_options.php:129
376
  #@ adminimize
377
  msgid "Advice in Footer"
378
  msgstr "Hinweis im Footer"
379
 
380
+ #: inc-options/backend_options.php:163
381
  #@ adminimize
382
  msgid "Manage Posts"
383
  msgstr "Verwalten Beitr&auml;ge"
384
 
385
+ #: inc-options/backend_options.php:164
386
  #@ adminimize
387
  msgid "Manage Pages"
388
  msgstr "Verwalten Seiten"
389
 
390
+ #: inc-options/backend_options.php:165
391
  #@ adminimize
392
  msgid "Write Post"
393
  msgstr "Schreiben Beitrag"
394
 
395
+ #: inc-options/backend_options.php:166
396
  #@ adminimize
397
  msgid "Write Page"
398
  msgstr "Schreiben Seite"
399
 
400
+ #: inc-options/backend_options.php:167
401
+ #: inc-options/write_post_options.php:106
402
  #@ adminimize
403
  msgid "Comments"
404
  msgstr "Kommentare"
405
 
406
+ #: inc-options/backend_options.php:168
407
  #@ adminimize
408
  msgid "other Page"
409
  msgstr "andere Seite"
410
 
411
+ #: inc-options/backend_options.php:180
412
+ #: inc-options/dashboard_options.php:122
413
+ #: inc-options/global_options.php:122
414
+ #: inc-options/links_options.php:126
415
+ #: inc-options/menu_options.php:151
416
+ #: inc-options/wp_nav_menu_options.php:147
417
+ #: inc-options/write_cp_options.php:240
418
+ #: inc-options/write_page_options.php:207
419
+ #: inc-options/write_post_options.php:225
420
  #@ adminimize
421
  msgid "Update Options"
422
  msgstr "Einstellungen aktualisieren"
423
 
424
+ #: inc-options/global_options.php:16
425
+ #: inc-options/minimenu.php:29
426
  #@ adminimize
427
  msgid "Global options"
428
  msgstr "Globale Einstellungen"
429
 
430
+ #: inc-options/dashboard_options.php:33
431
+ #: inc-options/dashboard_options.php:97
432
+ #: inc-options/global_options.php:23
433
+ #: inc-options/global_options.php:97
434
+ #: inc-options/links_options.php:23
435
+ #: inc-options/links_options.php:101
436
+ #: inc-options/wp_nav_menu_options.php:22
437
+ #: inc-options/wp_nav_menu_options.php:122
438
+ #: inc-options/write_cp_options.php:204
439
+ #: inc-options/write_page_options.php:182
440
+ #: inc-options/write_post_options.php:200
441
  #@ adminimize
442
  msgid "Option"
443
  msgstr "Einstellung"
444
 
445
+ #: inc-options/dashboard_options.php:36
446
+ #: inc-options/global_options.php:26
447
+ #: inc-options/links_options.php:26
448
+ #: inc-options/menu_options.php:26
449
+ #: inc-options/wp_nav_menu_options.php:25
450
+ #: inc-options/write_cp_options.php:32
451
+ #: inc-options/write_page_options.php:25
452
+ #: inc-options/write_post_options.php:26
453
  #@ adminimize
454
  msgid "Deactivate for"
455
  msgstr "Deaktiviere für"
456
 
457
+ #: inc-options/global_options.php:48
458
  #@ adminimize
459
  msgid "Favorite Actions"
460
  msgstr "Favorisierte Aktionen"
461
 
462
+ #: inc-options/global_options.php:49
463
  #@ adminimize
464
  msgid "Screen-Meta"
465
  msgstr "Screen-Meta"
466
 
467
+ #: inc-options/global_options.php:50
468
+ #: inc-options/wp_nav_menu_options.php:49
469
+ #: inc-options/write_cp_options.php:95
470
+ #: inc-options/write_page_options.php:87
471
+ #: inc-options/write_post_options.php:96
472
  #@ adminimize
473
  #@ default
474
  msgid "Screen Options"
475
  msgstr "kontextabhängige Optionen"
476
 
477
+ #: inc-options/global_options.php:51
478
  #@ adminimize
479
  msgid "Contextual Help"
480
  msgstr "kontextabhängig Hilfe"
481
 
482
+ #: inc-options/global_options.php:52
483
  #@ adminimize
484
  msgid "Admin Color Scheme"
485
  msgstr "Farbschema verwalten"
486
 
487
+ #: inc-options/dashboard_options.php:96
488
+ #: inc-options/global_options.php:96
 
489
  #@ adminimize
490
  msgid "Your own options"
491
  msgstr "Deine eigenen Einstellungen"
492
 
493
+ #: inc-options/dashboard_options.php:96
494
+ #: inc-options/global_options.php:96
495
+ #: inc-options/links_options.php:100
496
+ #: inc-options/wp_nav_menu_options.php:121
497
+ #: inc-options/write_cp_options.php:202
498
+ #: inc-options/write_page_options.php:181
499
+ #: inc-options/write_post_options.php:199
500
  #@ adminimize
501
  msgid "ID or class"
502
  msgstr "ID oder Klasse"
503
 
504
+ #: inc-options/dashboard_options.php:103
505
+ #: inc-options/global_options.php:103
506
+ #: inc-options/links_options.php:107
507
+ #: inc-options/wp_nav_menu_options.php:128
508
+ #: inc-options/write_cp_options.php:211
509
+ #: inc-options/write_page_options.php:188
510
+ #: inc-options/write_post_options.php:206
511
  #@ adminimize
512
  msgid "It is possible to add your own IDs or classes from elements and tags. You can find IDs and classes with the FireBug Add-on for Firefox. Assign a value and the associate name per line."
513
  msgstr "Es ist möglich, dass du eigene IDs und Klassen eines Elementes oder Tags hinzufügst. Du findest IDs und Klassen sehr einfach mit dem Firebug Add-on für den Firefox. Füge pro Zeile einen Wert und dazugehörigen Namen ein."
514
 
515
+ #: inc-options/dashboard_options.php:109
516
+ #: inc-options/global_options.php:109
517
+ #: inc-options/links_options.php:113
518
+ #: inc-options/wp_nav_menu_options.php:134
519
+ #: inc-options/write_cp_options.php:221
520
+ #: inc-options/write_page_options.php:194
521
+ #: inc-options/write_post_options.php:212
522
  #@ adminimize
523
  msgid "Possible nomination for ID or class. Separate multiple nominations through a carriage return."
524
  msgstr "Mögliche Benennung der ID oder Klasse. Trenne Werte durch eine neue Zeile."
525
 
526
+ #: inc-options/dashboard_options.php:114
527
+ #: inc-options/global_options.php:114
528
+ #: inc-options/links_options.php:118
529
+ #: inc-options/wp_nav_menu_options.php:139
530
+ #: inc-options/write_cp_options.php:230
531
+ #: inc-options/write_page_options.php:199
532
+ #: inc-options/write_post_options.php:217
533
  #@ adminimize
534
  msgid "Possible IDs or classes. Separate multiple values through a carriage return."
535
  msgstr "Mögliche IDs oder Klassen. Trenne Werte durch eine neue Zeile."
536
 
537
+ #: inc-options/menu_options.php:16
538
+ #: inc-options/minimenu.php:35
539
  #@ adminimize
540
  msgid "Menu Options"
541
  msgstr "Menu Einstellungen"
542
 
543
+ #: inc-options/menu_options.php:23
544
  #@ adminimize
545
  msgid "Menu options - Menu, <span style=\\\"font-weight: 400;\\\">Submenu</span>"
546
  msgstr "Menu Einstellungen - Menu, <span style=\"font-weight: 400;\">Submenu</span>"
547
 
548
+ #: inc-options/wp_nav_menu_options.php:48
549
+ #: inc-options/write_cp_options.php:94
550
+ #: inc-options/write_page_options.php:86
551
+ #: inc-options/write_post_options.php:95
552
+ #@ adminimize
553
  #@ default
554
  msgid "Help"
555
+ msgstr "Hilfe"
556
 
557
+ #: inc-options/write_cp_options.php:96
558
+ #: inc-options/write_page_options.php:89
559
+ #: inc-options/write_post_options.php:98
560
  #@ adminimize
561
  msgid "Permalink"
562
  msgstr "Permalink"
563
 
564
+ #: inc-options/write_post_options.php:103
565
  #@ adminimize
566
  msgid "Excerpt"
567
  msgstr "Auszug"
568
 
569
+ #: inc-options/write_post_options.php:104
570
  #@ adminimize
571
  msgid "Trackbacks"
572
  msgstr "Trackbacks"
573
 
574
+ #: inc-options/write_page_options.php:90
575
+ #: inc-options/write_post_options.php:105
576
  #@ default
577
  msgid "Custom Fields"
578
  msgstr "Benutzerdefinierte Felder"
579
 
580
+ #: inc-options/write_cp_options.php:101
581
+ #: inc-options/write_post_options.php:107
582
  #@ adminimize
583
  msgid "Password Protect This Post"
584
  msgstr "Diesen Artikel durch ein Passwort sch&uuml;tzen"
585
 
586
+ #: inc-options/write_post_options.php:108
587
  #@ default
588
  msgid "Post Author"
589
  msgstr "Autor"
590
 
591
+ #: inc-options/write_post_options.php:109
592
  #@ default
593
  msgid "Post Revisions"
594
  msgstr "Post Revisions"
595
 
596
+ #: inc-options/write_cp_options.php:102
597
+ #: inc-options/write_post_options.php:110
598
  #@ adminimize
599
  msgid "Related, Shortcuts"
600
  msgstr "Siehe auch, Tastaturk&uuml;rzel"
601
 
602
+ #: inc-options/write_cp_options.php:104
603
+ #: inc-options/write_page_options.php:100
604
+ #: inc-options/write_post_options.php:112
605
  #@ adminimize
606
  msgid "h2: Advanced Options"
607
  msgstr "h2: Erweiterte Einstellungen"
608
 
609
+ #: inc-options/write_cp_options.php:105
610
+ #: inc-options/write_page_options.php:101
611
+ #: inc-options/write_post_options.php:113
612
  #@ adminimize
613
  msgid "Media Buttons (all)"
614
  msgstr "Media Buttons (alle)"
615
 
616
+ #: inc-options/write_cp_options.php:106
617
+ #: inc-options/write_page_options.php:102
618
+ #: inc-options/write_post_options.php:114
619
  #@ adminimize
620
  msgid "Word count"
621
  msgstr "Word count"
622
 
623
+ #: inc-options/write_cp_options.php:107
624
+ #: inc-options/write_post_options.php:115
625
+ #@ adminimize
626
  msgid "Post Slug"
627
+ msgstr "Titelform"
628
 
629
+ #: inc-options/links_options.php:56
630
+ #: inc-options/write_cp_options.php:108
631
+ #: inc-options/write_page_options.php:104
632
+ #: inc-options/write_post_options.php:116
633
  #@ adminimize
634
  msgid "Publish Actions"
635
  msgstr "Publish Actions"
636
 
637
+ #: inc-options/write_cp_options.php:109
638
+ #: inc-options/write_page_options.php:105
639
+ #: inc-options/write_post_options.php:117
640
  #@ default
641
+ #@ adminimize
642
  msgid "Discussion"
643
+ msgstr "Kommentare"
644
 
645
+ #: inc-options/write_cp_options.php:120
646
+ #: inc-options/write_post_options.php:122
647
+ #@ adminimize
648
  msgid "Post Thumbnail"
649
+ msgstr "Artikelbild"
650
 
651
+ #: inc-options/write_page_options.php:112
 
 
652
  #@ adminimize
653
  msgid "Suggested tags from"
654
  msgstr "Suggested tags from"
655
 
656
+ #: inc-options/write_page_options.php:114
 
 
 
 
 
 
657
  #@ default
658
  msgid "HTML Special Characters"
659
  msgstr "HTML Special Characters"
660
 
661
+ #: inc-options/write_page_options.php:91
 
 
 
 
 
662
  #@ adminimize
663
  msgid "Comments &amp; Pings"
664
  msgstr "Kommentare &amp; Pings"
665
 
666
+ #: inc-options/write_page_options.php:92
667
  #@ adminimize
668
  msgid "Password Protect This Page"
669
  msgstr "Diese Seite mit einem Passwort versehen"
670
 
671
+ #: inc-options/write_page_options.php:93
672
+ #@ adminimize
673
  msgid "Attributes"
674
+ msgstr "Attribute"
675
 
676
+ #: inc-options/write_page_options.php:94
677
  #@ adminimize
678
  msgid "Page Template"
679
  msgstr "Seiten Template"
680
 
681
+ #: inc-options/write_page_options.php:95
682
  #@ adminimize
683
  msgid "Page Order"
684
  msgstr "Reihenfolge"
685
 
686
+ #: inc-options/write_page_options.php:96
687
  #@ default
688
  msgid "Page Author"
689
  msgstr "Seitenautor"
690
 
691
+ #: inc-options/write_page_options.php:97
692
  #@ default
693
  msgid "Page Revisions"
694
  msgstr "Page Revisions"
695
 
696
+ #: inc-options/write_page_options.php:98
697
  #@ adminimize
698
  msgid "Related"
699
  msgstr "Siehe auch"
700
 
701
+ #: inc-options/write_page_options.php:103
702
+ #@ adminimize
703
  msgid "Page Slug"
704
+ msgstr "Titelform"
705
 
706
+ #: inc-options/write_page_options.php:110
707
+ #@ adminimize
708
  msgid "Page Image"
709
+ msgstr "Artikelbild"
710
 
711
+ #: inc-options/menu_options.php:67
712
+ #: inc-options/menu_options.php:115
713
  #@ adminimize
714
  msgid "After activate the check box it heavy attitudes will change."
715
  msgstr "Wenn die Checkbox aktiv ist, dann wird das Ändern von Einstellungen erschwert."
716
 
717
+ #: inc-options/menu_options.php:98
718
  #@ default
719
  msgid "Profile"
720
  msgstr "Profile"
721
 
722
+ #: inc-options/minimenu.php:38
723
+ #: inc-options/write_post_options.php:16
724
+ #: inc-options/write_post_options.php:23
725
  #@ adminimize
726
  msgid "Write options - Post"
727
  msgstr "Schreiben Einstellungen - Beitr&auml;ge"
728
 
729
+ #: inc-options/write_post_options.php:199
730
  #@ adminimize
731
  msgid "Your own post options"
732
  msgstr "Deine eigenen Beitrags-Einstellungen"
733
 
734
+ #: inc-options/minimenu.php:41
735
+ #: inc-options/write_page_options.php:15
736
+ #: inc-options/write_page_options.php:22
737
  #@ adminimize
738
  msgid "Write options - Page"
739
  msgstr "Schreiben Einstellungen - Seiten"
740
 
741
+ #: inc-options/write_page_options.php:181
742
  #@ adminimize
743
  msgid "Your own page options"
744
  msgstr "Deine eigenen Seiten-Einstellungen"
745
 
746
+ #: inc-options/links_options.php:16
747
+ #: inc-options/minimenu.php:61
748
  #@ adminimize
749
  msgid "Links options"
750
  msgstr "Link Einstellungen"
751
 
752
+ #: inc-options/links_options.php:49
753
  #@ default
754
  msgid "Name"
755
  msgstr "Name"
756
 
757
+ #: inc-options/links_options.php:50
758
  #@ default
759
  msgid "Web Address"
760
  msgstr "Web-Adresse"
761
 
762
+ #: inc-options/links_options.php:51
763
  #@ default
764
  msgid "Description"
765
  msgstr "Beschreibung"
766
 
767
+ #: inc-options/links_options.php:53
768
  #@ default
769
  msgid "Target"
770
  msgstr "Target"
771
 
772
+ #: inc-options/links_options.php:54
773
  #@ default
774
  msgid "Link Relationship (XFN)"
775
  msgstr "Link-Beziehungen (XFN)"
776
 
777
+ #: inc-options/links_options.php:55
778
  #@ default
779
  msgid "Advanced"
780
  msgstr "Erweitert"
781
 
782
+ #: inc-options/minimenu.php:67
783
+ #: inc-options/theme_options.php:15
784
+ #: inc-options/theme_options.php:100
785
  #@ adminimize
786
  msgid "Set Theme"
787
  msgstr "Theme zuweisen"
788
 
789
+ #: inc-options/theme_options.php:22
790
  #@ adminimize
791
  msgid "For better peformance with many users on your blog; load only userlist, when you will change the theme options for users."
792
  msgstr "Für eine bessere Performance bei vielen Usern in deinem Blog werden die Userdaten nur nach Aufforderung geladen."
793
 
794
+ #: inc-options/theme_options.php:25
795
  #@ adminimize
796
  msgid "Load User Data"
797
  msgstr "Lade User Daten"
798
 
799
+ #: inc-options/theme_options.php:36
800
  #@ default
801
  msgid "User-ID"
802
  msgstr "User-ID"
803
 
804
+ #: inc-options/theme_options.php:37
805
  #@ default
806
  msgid "Username"
807
  msgstr "Benutzername"
808
 
809
+ #: inc-options/theme_options.php:38
810
  #@ default
811
  msgid "Display name publicly as"
812
  msgstr "Name im Blog"
813
 
814
+ #: inc-options/theme_options.php:39
815
  #@ default
816
  msgid "Admin-Color Scheme"
817
  msgstr "Admin-Color Scheme"
818
 
819
+ #: inc-options/theme_options.php:40
820
  #@ default
821
  msgid "User Level"
822
  msgstr "User Level"
823
 
824
+ #: inc-options/theme_options.php:41
825
  #@ default
826
  msgid "Role"
827
  msgstr "Rolle"
828
 
829
+ #: inc-options/deinstall_options.php:15
830
+ #: inc-options/minimenu.php:73
831
  #@ adminimize
832
  msgid "Deinstall Options"
833
  msgstr "Einstellungen deinstallieren"
834
 
835
+ #: inc-options/deinstall_options.php:18
836
  #@ adminimize
837
  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."
838
  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!"
839
 
840
+ #: inc-options/deinstall_options.php:22
841
  #@ adminimize
842
  msgid "Delete Options"
843
  msgstr "Einstellungen Löschen"
844
 
845
+ #: inc-options/minimenu.php:23
846
+ #: inc-options/minimenu.php:83
 
847
  #@ adminimize
848
  msgid "About the plugin"
849
  msgstr "&Uuml;ber das Plugin"
850
 
851
+ #: inc-options/minimenu.php:94
 
 
 
 
 
 
 
852
  #@ adminimize
853
  msgid "PayPal - The safer, easier way to pay online!"
854
  msgstr "PayPal - Der sichere und einfache Weg zu zahlen!"
855
 
856
+ #: inc-options/minimenu.php:89
 
857
  #@ adminimize
858
  msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a> or donate."
859
  msgstr "Du willst Danke sagen? Besuche meine <a href=\"http://bueltge.de/wunschliste/\">Wunschliste</a> oder spende."
860
 
861
+ #: adminimize.php:138
862
  #@ adminimize
863
  msgid "All entries in the database were imported."
864
  msgstr "Alle Einträge wurden in die Datenbank geschrieben."
865
 
866
+ #: inc-options/im_export_options.php:15
867
+ #: inc-options/minimenu.php:70
868
  #@ adminimize
869
  msgid "Export/Import Options"
870
  msgstr "Export/Import Einstellungen"
871
 
872
+ #: inc-options/im_export_options.php:19
873
  #@ adminimize
874
  msgid "Export"
875
  msgstr "Export"
876
 
877
+ #: inc-options/im_export_options.php:24
878
  #@ adminimize
879
  msgid "Export &raquo;"
880
  msgstr "Exportieren &raquo;"
881
 
882
+ #: inc-options/im_export_options.php:28
883
  #@ adminimize
884
  msgid "Import"
885
  msgstr "Import"
886
 
887
+ #: inc-options/im_export_options.php:33
888
  #@ adminimize
889
  msgid "Choose a file from your computer"
890
  msgstr "Wähle eine Datei vom Rechner"
891
 
892
+ #: inc-options/im_export_options.php:38
893
  #@ adminimize
894
  msgid "Upload file and import &raquo;"
895
  msgstr "Hochladen der Datei und importieren &raquo;"
896
 
897
+ #: inc-options/minimenu.php:19
898
  #@ adminimize
899
  msgid "MiniMenu"
900
  msgstr "MiniMenu"
901
 
902
+ #: inc-options/backend_options.php:182
903
+ #: inc-options/dashboard_options.php:127
904
+ #: inc-options/deinstall_options.php:27
905
+ #: inc-options/global_options.php:124
906
+ #: inc-options/im_export_options.php:41
907
+ #: inc-options/links_options.php:129
908
+ #: inc-options/menu_options.php:153
909
+ #: inc-options/minimenu.php:99
910
+ #: inc-options/theme_options.php:105
911
+ #: inc-options/wp_nav_menu_options.php:149
912
+ #: inc-options/write_cp_options.php:245
913
+ #: inc-options/write_page_options.php:209
914
+ #: inc-options/write_post_options.php:227
915
  #@ adminimize
916
  msgid "scroll to top"
917
  msgstr "Nach oben"
918
 
919
+ #: inc-options/im_export_options.php:21
920
  #@ adminimize
921
  msgid "You can save a .seq file with your options."
922
  msgstr "Du kannst deine Einstellungen in einer .seq Datei speichern."
923
 
924
+ #: inc-options/im_export_options.php:31
925
  #@ adminimize
926
  msgid "Choose a Adminimize (<em>.seq</em>) file to upload, then click <em>Upload file and import</em>."
927
  msgstr "Wähle eine Adminimize (<em>.seq</em>) Datei zum hoch laden und dann klick <em>Hochladen der Datei und importieren</em>"
928
 
929
+ #: inc-options/backend_options.php:119
930
  #@ adminimize
931
  msgid "Category Height"
932
  msgstr "Kategorie-Höhe"
933
 
934
+ #: inc-options/backend_options.php:125
935
  #@ adminimize
936
  msgid "View the Meta Box with Categories in the full height, no scrollbar or whitespace."
937
  msgstr "Stellt in die Meta Box der Kategorien in voller Höhe dar, kein Scrollbar und kein Leerraum."
938
 
939
+ #: inc-options/backend_options.php:136
940
  #@ adminimize
941
  msgid "In the Footer you can display an advice for changing the Default-design, (x)HTML is possible."
942
  msgstr "Im Footer kann ein Hinweis auf die aktive Ver&auml;nderung des Standard-Layout gesetzt werden, (x)HTML erlaubt."
943
 
944
+ #: inc-options/backend_options.php:158
945
  #@ adminimize
946
  msgid "Dashboard deactivate, redirect to"
947
  msgstr "Dashboard inaktiv, Weiterleitung nach"
948
 
949
+ #: inc-options/write_cp_options.php:110
950
+ #: inc-options/write_page_options.php:106
951
+ #: inc-options/write_post_options.php:118
952
  #@ default
953
+ #@ adminimize
954
  msgid "HTML Editor Button"
955
+ msgstr "HTML Editor Button"
956
 
957
+ #: inc-options/backend_options.php:105
958
  #@ adminimize
959
  msgid "All Thickbox-function use the full area of the browser. Thickbox is for example in upload media-files."
960
  msgstr "Alle Thickbox-Funktion verwenden den vollständigen Bereich des Browsers. Thickbox ist beispielsweise in der Medien-Upload-Funktion."
969
  #: adminimize.php:0
970
  #@ adminimize
971
  msgid "Visually compresses the administratrive meta-boxes so that more admin page content can be initially seen. The plugin that lets you hide 'unnecessary' items from the WordPress administration menu, for alle roles of your install. You can also hide post meta controls on the edit-area to simplify the interface. It is possible to simplify the admin in different for all roles."
972
+ msgstr "Visuelles Reduzieren der administrativen Meta-Boxen, so dass mehr Raum ist und nur dargestellt, was gebraucht wird. Das Plugin erlaubt das Ausblenden von ungenutzten Bereichen im WordPress Administrations-Bereich und dem Menu für alle vorhandenen Rollen. Es ist ebenso möglich, dass man Bereiche in Teilbereichen ausblenden und eigene Bereiche ausblenden kann. - Kurz: Reduzieren des Admin-Bereichs für das, was die jeweilige Rolle benötigt."
973
 
974
  #. translators: plugin header field 'Author'
975
  #: adminimize.php:0
983
  msgid "http://bueltge.de/"
984
  msgstr ""
985
 
986
+ #: inc-options/backend_options.php:69
987
  #@ adminimize
988
  msgid "Header"
989
  msgstr "Header"
990
 
991
+ #: inc-options/backend_options.php:75
992
  #@ adminimize
993
  msgid "The Header-area can hide, include all links and details."
994
  msgstr "Der header-Bereich kann ausgeblendet werden, inkl. aller Links und Details."
995
 
996
+ #: inc-options/write_page_options.php:88
997
+ #: inc-options/write_post_options.php:97
998
  #@ adminimize
999
  msgid "Title"
1000
  msgstr "Title"
1001
 
1002
+ #: inc-options/backend_options.php:25
1003
  #@ adminimize
1004
  msgid "Exclude Super Admin"
1005
  msgstr "Ausschließen des Super Admin"
1006
 
1007
+ #: inc-options/backend_options.php:31
1008
  #@ adminimize
1009
  msgid "Exclude the Super Admin on a WP Multisite Install from all limitations of this plugin."
1010
  msgstr "Schließe den Super Admin in einer WordPress Multisite Installation von allen Restriktionen dieses Plugins aus."
1011
 
1012
+ #: inc-options/backend_options.php:171
1013
  #@ adminimize
1014
  msgid "You have deactivated the Dashboard, please select a page for redirection or define custom url, include http://?"
1015
  msgstr "Du hast das Dashboard deaktiviert; bitte wähle eine Seite für die Weiterleitung oder definiere eine eigene URL, inklusive http://"
1016
 
1017
+ #: inc-options/global_options.php:47
1018
  #@ adminimize
1019
  msgid "Admin Bar"
1020
  msgstr "Admin Bar"
1021
 
1022
+ #: inc-options/minimenu.php:64
1023
  #@ adminimize
1024
  msgid "WP Nav Menu"
1025
  msgstr "WP Nav Menü"
1026
 
1027
+ #: inc-options/wp_nav_menu_options.php:15
1028
  #@ adminimize
1029
  msgid "WP Nav Menu options"
1030
  msgstr "WP Nav Menü Einstellungen"
1031
 
1032
+ #: inc-options/wp_nav_menu_options.php:50
1033
+ #: inc-options/wp_nav_menu_options.php:56
1034
+ #@ adminimize
1035
  #@ default
1036
  msgid "Theme Locations"
1037
+ msgstr "Anordnung im Theme"
1038
 
1039
+ #: inc-options/wp_nav_menu_options.php:51
1040
+ #@ adminimize
1041
  msgid "Custom Links"
1042
+ msgstr "Benutzerdef. Links"
 
 
 
 
 
1043
 
1044
+ #: inc-options/wp_nav_menu_options.php:52
1045
+ #@ adminimize
1046
  msgid "Add menu"
1047
+ msgstr "Menu hinzufügen"
1048
+
1049
+ #: inc-options/write_cp_options.php:98
1050
+ #: inc-options/write_post_options.php:100
1051
+ #@ adminimize
1052
+ msgid "Format"
1053
+ msgstr "Format"
1054
+
1055
+ #: inc-options/write_cp_options.php:103
1056
+ #: inc-options/write_page_options.php:99
1057
+ #: inc-options/write_post_options.php:111
1058
+ #@ adminimize
1059
+ msgid "Messages"
1060
+ msgstr "Mitteilungen"
1061
+
1062
+ #: inc-options/write_cp_options.php:126
1063
+ #: inc-options/write_page_options.php:124
1064
+ #: inc-options/write_post_options.php:140
1065
+ #@ adminimize
1066
+ msgid "Quick Edit Link"
1067
+ msgstr "QuickEdit Link"
1068
+
1069
+ #: inc-options/write_cp_options.php:127
1070
+ #: inc-options/write_cp_options.php:131
1071
+ #: inc-options/write_cp_options.php:134
1072
+ #: inc-options/write_cp_options.php:137
1073
+ #: inc-options/write_page_options.php:125
1074
+ #: inc-options/write_page_options.php:130
1075
+ #: inc-options/write_page_options.php:133
1076
+ #: inc-options/write_post_options.php:141
1077
+ #: inc-options/write_post_options.php:145
1078
+ #: inc-options/write_post_options.php:148
1079
+ #: inc-options/write_post_options.php:151
1080
+ #@ adminimize
1081
+ msgid "QE"
1082
+ msgstr "QE"
1083
+
1084
+ #: inc-options/write_cp_options.php:127
1085
+ #: inc-options/write_page_options.php:125
1086
+ #: inc-options/write_post_options.php:141
1087
+ #@ adminimize
1088
+ msgid "Inline Edit Left"
1089
+ msgstr "Inline Edit Links"
1090
+
1091
+ #: inc-options/write_cp_options.php:128
1092
+ #: inc-options/write_page_options.php:126
1093
+ #: inc-options/write_post_options.php:142
1094
+ #@ adminimize
1095
+ msgid "All Labels"
1096
+ msgstr "Alle labels"
1097
+
1098
+ #: inc-options/write_page_options.php:127
1099
+ #@ adminimize
1100
+ msgid "Date"
1101
+ msgstr "Datum"
1102
+
1103
+ #: inc-options/write_cp_options.php:130
1104
+ #: inc-options/write_page_options.php:129
1105
+ #: inc-options/write_post_options.php:144
1106
+ #@ adminimize
1107
+ msgid "Password and Private"
1108
+ msgstr "Passwort und Privat-Flag"
1109
+
1110
+ #: inc-options/write_cp_options.php:134
1111
+ #: inc-options/write_page_options.php:130
1112
+ #: inc-options/write_post_options.php:148
1113
+ #@ adminimize
1114
+ msgid "Inline Edit Right"
1115
+ msgstr "Inline Edit rechts"
1116
+
1117
+ #: inc-options/write_page_options.php:131
1118
+ #@ adminimize
1119
+ msgid "Parent, Order, Template"
1120
+ msgstr "Eltern, Reihenfolge, Template"
1121
+
1122
+ #: inc-options/write_page_options.php:132
1123
+ #@ adminimize
1124
+ msgid "Status"
1125
+ msgstr "Status"
1126
+
1127
+ #: inc-options/write_cp_options.php:137
1128
+ #: inc-options/write_page_options.php:133
1129
+ #: inc-options/write_post_options.php:151
1130
+ #@ adminimize
1131
+ msgid "Cancel/Save Button"
1132
+ msgstr "Abbrechen/Aktualisieren Button"
1133
+
1134
+ #: inc-options/write_cp_options.php:131
1135
+ #: inc-options/write_post_options.php:145
1136
+ #@ adminimize
1137
+ msgid "Inline Edit Center"
1138
+ msgstr "Inline Edit mitte"
1139
+
1140
+ #: inc-options/write_cp_options.php:132
1141
+ #: inc-options/write_post_options.php:146
1142
+ #@ adminimize
1143
+ msgid "Categories Title"
1144
+ msgstr "Kategorien Title"
1145
+
1146
+ #: inc-options/write_cp_options.php:133
1147
+ #: inc-options/write_post_options.php:147
1148
+ #@ adminimize
1149
+ msgid "Categories List"
1150
+ msgstr "Kategorien Liste"
1151
+
1152
+ #: inc-options/write_cp_options.php:136
1153
+ #: inc-options/write_post_options.php:150
1154
+ #@ adminimize
1155
+ msgid "Status, Sticky"
1156
+ msgstr "Status, Sticky"
1157
+
1158
+ #: inc-options/links_options.php:100
1159
+ #@ adminimize
1160
+ msgid "Your own Link options"
1161
+ msgstr "Deine eigenen Link Einstellungen"
1162
+
1163
+ #: inc-options/minimenu.php:52
1164
+ #: inc-options/write_cp_options.php:21
1165
+ #: inc-options/write_cp_options.php:29
1166
+ #@ adminimize
1167
+ msgid "Write options"
1168
+ msgstr "Einstellungen Schreiben"
1169
+
1170
+ #: inc-options/wp_nav_menu_options.php:121
1171
+ #@ adminimize
1172
+ msgid "Your own Nav Menu options"
1173
+ msgstr "Deine eigenen Nav Menu Einstellungen"
1174
+
1175
+ #: inc-options/write_cp_options.php:201
1176
+ #, php-format
1177
+ #@ adminimize
1178
+ msgid "Your own %s options"
1179
+ msgstr "Deine eigenen %s Einstellungen"
1180
 
1181
  #. translators: plugin header field 'Version'
1182
  #: adminimize.php:0
1183
  #@ adminimize
1184
+ msgid "1.7.20"
1185
  msgstr ""
1186
 
1187
+ #: inc-options/dashboard_options.php:17
1188
+ #: inc-options/minimenu.php:32
1189
+ #@ adminimize
1190
+ msgid "Dashboard options"
1191
+ msgstr "Dashboard Einstellungen"
1192
 
1193
+ #: inc-options/dashboard_options.php:25
 
1194
  #@ adminimize
1195
+ msgid "To complete the installation for Dashboard Widgets you must visit your dashboard once and then come back to Settings > Adminimize to configure who has access to each widget."
1196
+ msgstr "Um die Installation für Dashboard Widgets abzuschließen, musst du das Dashboard einmal besuchen und dann zurück zu den Einstellungen > Adminimize kommen, um den Zugriff der Widgets zu steuern."
1197
+
1198
+ #: inc-options/minimenu.php:87
1199
+ #@ adminimize
1200
+ msgid "Further information: Visit the <a href=\"http://wordpress.org/extend/plugins/adminimize/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
1201
+ msgstr "Weitere Informationen: Besuchen Sie die <a href=\\\"http://wordpress.org/extend/plugins/adminimize/\\\">Plugin Website</a> für weitere Informationen oder um die neueste Version des Plugins erhalten."
1202
 
license.txt CHANGED
File without changes
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: Bueltge
3
  Donate link: http://bueltge.de/wunschliste/
4
  Tags: color, scheme, theme, admin, dashboard, color scheme, plugin, interface, ui, metabox, hide, editor, minimal, menu, customization, interface, administration, lite, light, usability, lightweight, layout, zen
5
  Requires at least: 2.5
6
- Tested up to: 3.3-aortic-dissection
7
- Stable tag: 1.7.19
8
 
9
  Adminimize is a WordPress plugin that lets you hide 'unnecessary' items from the WordPress backend and many many more ...
10
 
@@ -113,6 +113,10 @@ See on [the official website](http://bueltge.de/wordpress-admin-theme-adminimize
113
  1. Adminimize Theme how in WordPress 2.3
114
 
115
  == Changelog ==
 
 
 
 
116
  = v1.7.19 =
117
  * fix page for links - `link.php`
118
  * add irish language files
3
  Donate link: http://bueltge.de/wunschliste/
4
  Tags: color, scheme, theme, admin, dashboard, color scheme, plugin, interface, ui, metabox, hide, editor, minimal, menu, customization, interface, administration, lite, light, usability, lightweight, layout, zen
5
  Requires at least: 2.5
6
+ Tested up to: 3.3-beta2
7
+ Stable tag: 1.7.20
8
 
9
  Adminimize is a WordPress plugin that lets you hide 'unnecessary' items from the WordPress backend and many many more ...
10
 
113
  1. Adminimize Theme how in WordPress 2.3
114
 
115
  == Changelog ==
116
+ = v1.7.20 =
117
+ * fix small bug for use plugin Localization
118
+ * add Dashbaord Widgets to remove for different roles
119
+
120
  = v1.7.19 =
121
  * fix page for links - `link.php`
122
  * add irish language files