Adminimize - Version 1.7.27

Version Description

Download this release

Release Info

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

Code changes from version 1.7.26 to 1.7.27

Files changed (56) hide show
  1. Adminimize-da_DK.txt +0 -0
  2. adminimize.php +47 -15
  3. adminimize_page.php +0 -0
  4. css/mw_cat_full.css +0 -0
  5. css/mw_small_user_info.css +0 -0
  6. css/mw_small_user_info27.css +0 -0
  7. css/mw_small_user_info30.css +0 -0
  8. css/mw_small_user_info31.css +0 -0
  9. css/mw_small_user_info32.css +0 -0
  10. css/style.css +0 -0
  11. inc-options/backend_options.php +0 -0
  12. inc-options/dashboard_options.php +0 -0
  13. inc-options/deinstall_options.php +0 -0
  14. inc-options/global_options.php +0 -0
  15. inc-options/im_export_options.php +0 -0
  16. inc-options/links_options.php +0 -0
  17. inc-options/menu_options.php +0 -0
  18. inc-options/minimenu.php +0 -0
  19. inc-options/settings_notice.php +0 -0
  20. inc-options/theme_options.php +0 -0
  21. inc-options/wp_nav_menu_options.php +0 -0
  22. inc-options/write_cp_options.php +8 -4
  23. inc-options/write_page_options.php +31 -7
  24. inc-options/write_post_options.php +29 -19
  25. inc-setup/admin-bar.php +1 -1
  26. inc-setup/admin-footer.php +0 -0
  27. inc-setup/dashboard.php +2 -1
  28. js/remove_footer.js +0 -0
  29. js/remove_header.js +0 -0
  30. js/tb_window.js +0 -0
  31. js/timestamp.js +0 -0
  32. languages/adminimize-bg_BG.mo +0 -0
  33. languages/adminimize-bg_BG.po +0 -0
  34. languages/adminimize-by_BY.mo +0 -0
  35. languages/adminimize-by_BY.po +0 -0
  36. languages/adminimize-da_DK.mo +0 -0
  37. languages/adminimize-da_DK.po +0 -0
  38. languages/adminimize-de_DE.mo +0 -0
  39. languages/adminimize-de_DE.po +164 -184
  40. languages/adminimize-es_ES.mo +0 -0
  41. languages/adminimize-es_ES.po +0 -0
  42. languages/adminimize-fr_FR.mo +0 -0
  43. languages/adminimize-fr_FR.po +0 -0
  44. languages/adminimize-ga_IR.mo +0 -0
  45. languages/adminimize-ga_IR.po +0 -0
  46. languages/adminimize-hi_IN.mo +0 -0
  47. languages/adminimize-hi_IN.po +0 -0
  48. languages/adminimize-it_IT.mo +0 -0
  49. languages/adminimize-it_IT.po +0 -0
  50. languages/adminimize-nl_NL.mo +0 -0
  51. languages/adminimize-nl_NL.po +0 -0
  52. languages/adminimize-tr.po +0 -559
  53. languages/adminimize-xx_XX.pot +164 -184
  54. license.txt +0 -0
  55. readme.txt +8 -10
  56. screenshot-1.png +0 -0
Adminimize-da_DK.txt CHANGED
File without changes
adminimize.php CHANGED
@@ -12,7 +12,7 @@
12
  * Description: Visually compresses the administratrive meta-boxes so that more admin page content can be initially seen. The plugin that lets you hide 'unnecessary' items from the WordPress administration menu, for alle roles of your install. You can also hide post meta controls on the edit-area to simplify the interface. It is possible to simplify the admin in different for all roles.
13
  * Author: Frank Bültge
14
  * Author URI: http://bueltge.de/
15
- * Version: 1.7.26
16
  * License: GPLv3
17
  */
18
 
@@ -220,6 +220,32 @@ function _mw_adminimize_control_flashloader() {
220
  }
221
  }
222
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
223
 
224
  /**
225
  * check user-option and add new style
@@ -236,10 +262,10 @@ function _mw_adminimize_admin_init() {
236
  $post_id = 0;
237
 
238
  $current_post_type = $post_type;
239
- if ( ! isset( $current_post_type ) )
240
  $current_post_type = get_post_type( $post_id );
241
- if ( ! $current_post_type )
242
- $current_post_type = str_replace( 'post_type=', '', esc_attr( $_SERVER['QUERY_STRING'] ) );
243
  if ( ! $current_post_type ) // set hard to post
244
  $current_post_type = 'post';
245
 
@@ -378,13 +404,6 @@ function _mw_adminimize_admin_init() {
378
  }
379
  }
380
 
381
- // change Admin Bar and user Info
382
- if ( version_compare( $wp_version, '3.3alpha', '>=' ) ) {
383
- _mw_adminimize_set_menu_option_33();
384
- } else {
385
- add_action( 'admin_head', '_mw_adminimize_set_user_info' );
386
- add_action( 'wp_head', '_mw_adminimize_set_user_info' );
387
- }
388
  // set menu option
389
  add_action( 'admin_head', '_mw_adminimize_set_menu_option', 1 );
390
  // global_options
@@ -414,10 +433,26 @@ function _mw_adminimize_admin_init() {
414
 
415
  }
416
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
417
  // on admin init
418
  add_action( 'admin_init', '_mw_adminimize_textdomain' );
419
  add_action( 'admin_init', '_mw_adminimize_register_styles', 1 );
420
  add_action( 'admin_init', '_mw_adminimize_admin_init', 2 );
 
421
  add_action( 'admin_menu', '_mw_adminimize_add_settings_page' );
422
  add_action( 'admin_menu', '_mw_adminimize_remove_dashboard' );
423
 
@@ -534,7 +569,7 @@ function _mw_adminimize_remove_dashboard() {
534
  }
535
  }
536
 
537
- if ( $redirect ) {
538
  $_mw_adminimize_db_redirect = _mw_adminimize_get_option_value( '_mw_adminimize_db_redirect' );
539
  $_mw_adminimize_db_redirect_admin_url = get_option( 'siteurl' ) . '/wp-admin/';
540
  switch ( $_mw_adminimize_db_redirect) {
@@ -1048,13 +1083,10 @@ require_once( 'inc-setup/admin-footer.php' );
1048
  require_once( 'inc-options/settings_notice.php' );
1049
 
1050
 
1051
-
1052
  /**
1053
  * @version WP 2.8
1054
  * Add action link(s) to plugins page
1055
  *
1056
- * @package Secure WordPress
1057
- *
1058
  * @param $links, $file
1059
  * @return $links
1060
  */
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.27
16
  * License: GPLv3
17
  */
18
 
220
  }
221
  }
222
 
223
+ /**
224
+ * return post type
225
+ */
226
+ function _mw_get_current_post_type() {
227
+ global $post, $typenow, $current_screen;
228
+
229
+ //we have a post so we can just get the post type from that
230
+ if ( $post && $post->post_type )
231
+ return $post->post_type;
232
+
233
+ //check the global $typenow - set in admin.php
234
+ else if( $typenow )
235
+ return $typenow;
236
+
237
+ // check the global $current_screen object - set in sceen.php
238
+ else if( $current_screen && $current_screen->post_type )
239
+ return $current_screen->post_type;
240
+
241
+ // lastly check the post_type querystring
242
+ else if( isset( $_REQUEST['post_type'] ) )
243
+ return sanitize_key( $_REQUEST['post_type'] );
244
+
245
+ // we do not know the post type!
246
+ return NULL;
247
+ }
248
+
249
 
250
  /**
251
  * check user-option and add new style
262
  $post_id = 0;
263
 
264
  $current_post_type = $post_type;
265
+ if ( ! isset( $current_post_type ) || empty( $current_post_type ) )
266
  $current_post_type = get_post_type( $post_id );
267
+ if ( ! isset( $current_post_type ) || empty( $current_post_type ) )
268
+ $current_post_type = _mw_get_current_post_type();
269
  if ( ! $current_post_type ) // set hard to post
270
  $current_post_type = 'post';
271
 
404
  }
405
  }
406
 
 
 
 
 
 
 
 
407
  // set menu option
408
  add_action( 'admin_head', '_mw_adminimize_set_menu_option', 1 );
409
  // global_options
433
 
434
  }
435
 
436
+ /**
437
+ * Init always with WP
438
+ */
439
+ function _mw_adminimize_init() {
440
+
441
+ // change Admin Bar and user Info
442
+ if ( version_compare( $GLOBALS['wp_version'], '3.3alpha', '>=' ) ) {
443
+ _mw_adminimize_set_menu_option_33();
444
+ } else {
445
+ add_action( 'admin_head', '_mw_adminimize_set_user_info' );
446
+ add_action( 'wp_head', '_mw_adminimize_set_user_info' );
447
+ }
448
+
449
+ }
450
+
451
  // on admin init
452
  add_action( 'admin_init', '_mw_adminimize_textdomain' );
453
  add_action( 'admin_init', '_mw_adminimize_register_styles', 1 );
454
  add_action( 'admin_init', '_mw_adminimize_admin_init', 2 );
455
+ add_action( 'init', '_mw_adminimize_init', 2 );
456
  add_action( 'admin_menu', '_mw_adminimize_add_settings_page' );
457
  add_action( 'admin_menu', '_mw_adminimize_remove_dashboard' );
458
 
569
  }
570
  }
571
 
572
+ if ( isset($redirect) && $redirect ) {
573
  $_mw_adminimize_db_redirect = _mw_adminimize_get_option_value( '_mw_adminimize_db_redirect' );
574
  $_mw_adminimize_db_redirect_admin_url = get_option( 'siteurl' ) . '/wp-admin/';
575
  switch ( $_mw_adminimize_db_redirect) {
1083
  require_once( 'inc-options/settings_notice.php' );
1084
 
1085
 
 
1086
  /**
1087
  * @version WP 2.8
1088
  * Add action link(s) to plugins page
1089
  *
 
 
1090
  * @param $links, $file
1091
  * @return $links
1092
  */
adminimize_page.php CHANGED
File without changes
css/mw_cat_full.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/style.css CHANGED
File without changes
inc-options/backend_options.php CHANGED
File without changes
inc-options/dashboard_options.php CHANGED
File without changes
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
File without changes
inc-options/settings_notice.php CHANGED
File without changes
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
@@ -8,7 +8,8 @@ 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
  $args = array( 'public' => TRUE, '_builtin' => FALSE );
13
  foreach ( get_post_types( $args ) as $post_type ) {
14
  $post_type_object = get_post_type_object($post_type);
@@ -48,7 +49,7 @@ foreach ( get_post_types( $args ) as $post_type ) {
48
  '.side-info',
49
  '#notice',
50
  '#post-body h2',
51
- '#media-buttons',
52
  '#wp-word-count',
53
  '#slugdiv,#edit-slug-box',
54
  '#misc-publishing-actions',
@@ -64,7 +65,10 @@ foreach ( get_post_types( $args ) as $post_type ) {
64
  $post_type_support = 'pageparentdiv';
65
  if ( 'custom-fields' == $post_type_support )
66
  $post_type_support = 'postcustom';
67
- array_push( $metaboxes, '#' . $post_type_support . ', #' . $post_type_support . 'div' );
 
 
 
68
  }
69
  if ( function_exists('current_theme_supports') &&
70
  current_theme_supports( 'post-thumbnails', $post_type )
@@ -75,7 +79,7 @@ foreach ( get_post_types( $args ) as $post_type ) {
75
 
76
  // quick edit areas, id and class
77
  $quickedit_areas = array(
78
- 'div.row-actions .inline',
79
  'fieldset.inline-edit-col-left',
80
  'fieldset.inline-edit-col-left label',
81
  'fieldset.inline-edit-col-left label.inline-edit-author',
8
  echo "Hi there! I'm just a part of plugin, not much I can do when called directly.";
9
  exit;
10
  }
11
+ // reset
12
+ $post_type = '';
13
  $args = array( 'public' => TRUE, '_builtin' => FALSE );
14
  foreach ( get_post_types( $args ) as $post_type ) {
15
  $post_type_object = get_post_type_object($post_type);
49
  '.side-info',
50
  '#notice',
51
  '#post-body h2',
52
+ '#media-buttons, #wp-content-media-buttons',
53
  '#wp-word-count',
54
  '#slugdiv,#edit-slug-box',
55
  '#misc-publishing-actions',
65
  $post_type_support = 'pageparentdiv';
66
  if ( 'custom-fields' == $post_type_support )
67
  $post_type_support = 'postcustom';
68
+ array_push(
69
+ $metaboxes,
70
+ '#' . $post_type_support . ', #' . $post_type_support . 'div, th.column-' . $post_type_support . ', td.' . $post_type_support
71
+ ); // td for raw in edit screen
72
  }
73
  if ( function_exists('current_theme_supports') &&
74
  current_theme_supports( 'post-thumbnails', $post_type )
79
 
80
  // quick edit areas, id and class
81
  $quickedit_areas = array(
82
+ 'div.row-actions, div.row-actions .inline',
83
  'fieldset.inline-edit-col-left',
84
  'fieldset.inline-edit-col-left label',
85
  'fieldset.inline-edit-col-left label.inline-edit-author',
inc-options/write_page_options.php CHANGED
@@ -33,33 +33,51 @@ if ( ! function_exists( 'add_action' ) ) {
33
  $metaboxes_page = array(
34
  '#contextual-help-link-wrap',
35
  '#screen-options-link-wrap',
36
- '#titlediv',
37
  '#pageslugdiv',
38
  '#pagepostcustom, #pagecustomdiv, #postcustom',
39
- '#pagecommentstatusdiv, #commentsdiv',
 
40
  '#pagepassworddiv',
41
  '#pageparentdiv',
42
  '#pagetemplatediv',
43
  '#pageorderdiv',
44
- '#pageauthordiv, #authordiv',
45
  '#revisionsdiv',
46
  '.side-info',
47
  '#notice',
48
  '#post-body h2',
49
- '#media-buttons',
50
  '#wp-word-count',
51
  '#slugdiv,#edit-slug-box',
52
  '#misc-publishing-actions',
53
  '#commentstatusdiv',
54
  '#editor-toolbar #edButtonHTML, #quicktags, #content-html'
55
  );
56
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
57
  if ( function_exists('current_theme_supports') && current_theme_supports( 'post-thumbnails', 'page' ) )
58
  array_push($metaboxes_page, '#postimagediv' );
59
 
60
  // quick edit areas, id and class
61
  $quickedit_page_areas = array(
62
- 'div.row-actions .inline',
63
  'fieldset.inline-edit-col-left',
64
  'fieldset.inline-edit-col-left label',
65
  'fieldset.inline-edit-col-left div.inline-edit-date',
@@ -79,6 +97,7 @@ if ( ! function_exists( 'add_action' ) ) {
79
  __('Permalink', FB_ADMINIMIZE_TEXTDOMAIN ),
80
  __('Custom Fields'),
81
  __('Comments & Pings', FB_ADMINIMIZE_TEXTDOMAIN ),
 
82
  __('Password Protect This Page', FB_ADMINIMIZE_TEXTDOMAIN ),
83
  __('Attributes', FB_ADMINIMIZE_TEXTDOMAIN),
84
  __('Page Template', FB_ADMINIMIZE_TEXTDOMAIN ),
@@ -95,7 +114,12 @@ if ( ! function_exists( 'add_action' ) ) {
95
  __('Discussion', FB_ADMINIMIZE_TEXTDOMAIN),
96
  __('HTML Editor Button', FB_ADMINIMIZE_TEXTDOMAIN)
97
  );
98
-
 
 
 
 
 
99
  if ( function_exists('current_theme_supports') && current_theme_supports( 'post-thumbnails', 'page' ) )
100
  array_push($metaboxes_names_page, __('Page Image', FB_ADMINIMIZE_TEXTDOMAIN) );
101
 
33
  $metaboxes_page = array(
34
  '#contextual-help-link-wrap',
35
  '#screen-options-link-wrap',
36
+ '#title, #titlediv, th.column-title, td.title',
37
  '#pageslugdiv',
38
  '#pagepostcustom, #pagecustomdiv, #postcustom',
39
+ '#pagecommentstatusdiv, #commentsdiv, #comments, th.column-comments, td.comments',
40
+ '#date, #datediv, th.column-date, td.date, div.curtime',
41
  '#pagepassworddiv',
42
  '#pageparentdiv',
43
  '#pagetemplatediv',
44
  '#pageorderdiv',
45
+ '#pageauthordiv, #author, #authordiv, th.column-author, td.author',
46
  '#revisionsdiv',
47
  '.side-info',
48
  '#notice',
49
  '#post-body h2',
50
+ '#media-buttons, #wp-content-media-buttons',
51
  '#wp-word-count',
52
  '#slugdiv,#edit-slug-box',
53
  '#misc-publishing-actions',
54
  '#commentstatusdiv',
55
  '#editor-toolbar #edButtonHTML, #quicktags, #content-html'
56
  );
57
+
58
+ $post_type = 'page';
59
+ foreach ( $GLOBALS['_wp_post_type_features'][$post_type] as $post_type_support => $key ) {
60
+ if ( post_type_supports( $post_type, $post_type_support ) )
61
+ if ( 'excerpt' === $post_type_support )
62
+ $post_type_support = $post_type . 'excerpt';
63
+ if ( 'page-attributes' === $post_type_support )
64
+ $post_type_support = 'pageparentdiv';
65
+ if ( 'custom-fields' == $post_type_support )
66
+ $post_type_support = $post_type . 'custom';
67
+ if ( 'post-formats' === $post_type_support )
68
+ $post_type_support = 'format';
69
+ array_push(
70
+ $metaboxes,
71
+ '#' . $post_type_support . ', #' . $post_type_support . 'div, th.column-' . $post_type_support . ', td.' . $post_type_support
72
+ ); // td for raw in edit screen
73
+ }
74
+
75
  if ( function_exists('current_theme_supports') && current_theme_supports( 'post-thumbnails', 'page' ) )
76
  array_push($metaboxes_page, '#postimagediv' );
77
 
78
  // quick edit areas, id and class
79
  $quickedit_page_areas = array(
80
+ 'div.row-actions, div.row-actions .inline',
81
  'fieldset.inline-edit-col-left',
82
  'fieldset.inline-edit-col-left label',
83
  'fieldset.inline-edit-col-left div.inline-edit-date',
97
  __('Permalink', FB_ADMINIMIZE_TEXTDOMAIN ),
98
  __('Custom Fields'),
99
  __('Comments & Pings', FB_ADMINIMIZE_TEXTDOMAIN ),
100
+ __('Date'),
101
  __('Password Protect This Page', FB_ADMINIMIZE_TEXTDOMAIN ),
102
  __('Attributes', FB_ADMINIMIZE_TEXTDOMAIN),
103
  __('Page Template', FB_ADMINIMIZE_TEXTDOMAIN ),
114
  __('Discussion', FB_ADMINIMIZE_TEXTDOMAIN),
115
  __('HTML Editor Button', FB_ADMINIMIZE_TEXTDOMAIN)
116
  );
117
+
118
+ foreach ( $GLOBALS['_wp_post_type_features'][$post_type] as $post_type_support => $key ) {
119
+ if ( post_type_supports( $post_type, $post_type_support ) )
120
+ array_push( $metaboxes_names, ucfirst($post_type_support) );
121
+ }
122
+
123
  if ( function_exists('current_theme_supports') && current_theme_supports( 'post-thumbnails', 'page' ) )
124
  array_push($metaboxes_names_page, __('Page Image', FB_ADMINIMIZE_TEXTDOMAIN) );
125
 
inc-options/write_post_options.php CHANGED
@@ -33,36 +33,47 @@ if ( ! function_exists( 'add_action' ) ) {
33
  $metaboxes = array(
34
  '#contextual-help-link-wrap',
35
  '#screen-options-link-wrap',
36
- '#titlediv',
37
  '#pageslugdiv',
38
- '#tagsdiv,#tagsdivsb,#tagsdiv-post_tag',
39
- '#formatdiv',
40
- '#categorydiv,#categorydivsb',
41
  '#category-add-toggle',
42
- '#postexcerpt',
43
- '#trackbacksdiv',
44
- '#postcustom',
45
- '#commentsdiv',
46
  '#passworddiv',
47
- '#authordiv',
48
- '#revisionsdiv',
49
  '.side-info',
50
  '#notice',
51
  '#post-body h2',
52
- '#media-buttons',
53
  '#wp-word-count',
54
  '#slugdiv,#edit-slug-box',
55
  '#misc-publishing-actions',
56
  '#commentstatusdiv',
57
  '#editor-toolbar #edButtonHTML, #quicktags, #content-html'
58
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
59
 
60
  if ( function_exists('current_theme_supports') && current_theme_supports( 'post-thumbnails', 'post' ) )
61
  array_push($metaboxes, '#postimagediv');
62
 
63
  // quick edit areas, id and class
64
  $quickedit_areas = array(
65
- 'div.row-actions .inline',
66
  'fieldset.inline-edit-col-left',
67
  'fieldset.inline-edit-col-left label',
68
  'fieldset.inline-edit-col-left label.inline-edit-author',
@@ -83,16 +94,10 @@ if ( ! function_exists( 'add_action' ) ) {
83
  __('Title', FB_ADMINIMIZE_TEXTDOMAIN),
84
  __('Permalink', FB_ADMINIMIZE_TEXTDOMAIN ),
85
  __('Tags', FB_ADMINIMIZE_TEXTDOMAIN ),
86
- __('Format', FB_ADMINIMIZE_TEXTDOMAIN),
87
  __('Categories', FB_ADMINIMIZE_TEXTDOMAIN ),
88
  __('Add New Category', FB_ADMINIMIZE_TEXTDOMAIN ),
89
- __('Excerpt', FB_ADMINIMIZE_TEXTDOMAIN ),
90
- __('Trackbacks', FB_ADMINIMIZE_TEXTDOMAIN ),
91
- __('Custom Fields'),
92
- __('Comments', FB_ADMINIMIZE_TEXTDOMAIN ),
93
  __('Password Protect This Post', FB_ADMINIMIZE_TEXTDOMAIN ),
94
- __('Post Author'),
95
- __('Post Revisions'),
96
  __('Related, Shortcuts', FB_ADMINIMIZE_TEXTDOMAIN ),
97
  __('Messages', FB_ADMINIMIZE_TEXTDOMAIN ),
98
  __('h2: Advanced Options', FB_ADMINIMIZE_TEXTDOMAIN ),
@@ -104,6 +109,11 @@ if ( ! function_exists( 'add_action' ) ) {
104
  __('HTML Editor Button')
105
  );
106
 
 
 
 
 
 
107
  if ( function_exists('current_theme_supports') && current_theme_supports( 'post-thumbnails', 'post' ) )
108
  array_push($metaboxes_names, __('Post Thumbnail', FB_ADMINIMIZE_TEXTDOMAIN) );
109
 
33
  $metaboxes = array(
34
  '#contextual-help-link-wrap',
35
  '#screen-options-link-wrap',
36
+ '#title, #titlediv, th.column-title, td.title',
37
  '#pageslugdiv',
38
+ '#tags, #tagsdiv,#tagsdivsb,#tagsdiv-post_tag, th.column-tags, td.tags',
39
+ '#categories, #categorydiv, #categorydivsb, th.column-categories, td.categories',
 
40
  '#category-add-toggle',
41
+ '#date, #datediv, th.column-date, td.date, div.curtime',
 
 
 
42
  '#passworddiv',
 
 
43
  '.side-info',
44
  '#notice',
45
  '#post-body h2',
46
+ '#media-buttons, #wp-content-media-buttons',
47
  '#wp-word-count',
48
  '#slugdiv,#edit-slug-box',
49
  '#misc-publishing-actions',
50
  '#commentstatusdiv',
51
  '#editor-toolbar #edButtonHTML, #quicktags, #content-html'
52
  );
53
+
54
+ $post_type = 'post';
55
+ foreach ( $GLOBALS['_wp_post_type_features'][$post_type] as $post_type_support => $key ) {
56
+ if ( post_type_supports( $post_type, $post_type_support ) )
57
+ if ( 'excerpt' === $post_type_support )
58
+ $post_type_support = $post_type . 'excerpt';
59
+ if ( 'page-attributes' === $post_type_support )
60
+ $post_type_support = 'pageparentdiv';
61
+ if ( 'custom-fields' == $post_type_support )
62
+ $post_type_support = $post_type . 'custom';
63
+ if ( 'post-formats' === $post_type_support )
64
+ $post_type_support = 'format';
65
+ array_push(
66
+ $metaboxes,
67
+ '#' . $post_type_support . ', #' . $post_type_support . 'div, th.column-' . $post_type_support . ', td.' . $post_type_support
68
+ ); //th and td for raw in edit screen
69
+ }
70
 
71
  if ( function_exists('current_theme_supports') && current_theme_supports( 'post-thumbnails', 'post' ) )
72
  array_push($metaboxes, '#postimagediv');
73
 
74
  // quick edit areas, id and class
75
  $quickedit_areas = array(
76
+ 'div.row-actions, div.row-actions .inline',
77
  'fieldset.inline-edit-col-left',
78
  'fieldset.inline-edit-col-left label',
79
  'fieldset.inline-edit-col-left label.inline-edit-author',
94
  __('Title', FB_ADMINIMIZE_TEXTDOMAIN),
95
  __('Permalink', FB_ADMINIMIZE_TEXTDOMAIN ),
96
  __('Tags', FB_ADMINIMIZE_TEXTDOMAIN ),
 
97
  __('Categories', FB_ADMINIMIZE_TEXTDOMAIN ),
98
  __('Add New Category', FB_ADMINIMIZE_TEXTDOMAIN ),
99
+ __('Date'),
 
 
 
100
  __('Password Protect This Post', FB_ADMINIMIZE_TEXTDOMAIN ),
 
 
101
  __('Related, Shortcuts', FB_ADMINIMIZE_TEXTDOMAIN ),
102
  __('Messages', FB_ADMINIMIZE_TEXTDOMAIN ),
103
  __('h2: Advanced Options', FB_ADMINIMIZE_TEXTDOMAIN ),
109
  __('HTML Editor Button')
110
  );
111
 
112
+ foreach ( $GLOBALS['_wp_post_type_features'][$post_type] as $post_type_support => $key ) {
113
+ if ( post_type_supports( $post_type, $post_type_support ) )
114
+ array_push( $metaboxes_names, ucfirst($post_type_support) );
115
+ }
116
+
117
  if ( function_exists('current_theme_supports') && current_theme_supports( 'post-thumbnails', 'post' ) )
118
  array_push($metaboxes_names, __('Post Thumbnail', FB_ADMINIMIZE_TEXTDOMAIN) );
119
 
inc-setup/admin-bar.php CHANGED
@@ -179,7 +179,7 @@ function _mw_adminimize_remove_admin_bar() {
179
  $hook,
180
  create_function(
181
  '',
182
- "echo '<style>body.admin-bar #wpcontent, body.admin-bar #adminmenu { padding-top: 0px !important; }</style>';"
183
  )
184
  );
185
  }
179
  $hook,
180
  create_function(
181
  '',
182
+ "echo '<style>body.admin-bar, body.admin-bar #wpcontent, body.admin-bar #adminmenu { padding-top: 0px !important; }</style>';"
183
  )
184
  );
185
  }
inc-setup/admin-footer.php CHANGED
File without changes
inc-setup/dashboard.php CHANGED
@@ -17,6 +17,7 @@ function _mw_adminimize_dashboard_setup () {
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 );
@@ -32,7 +33,7 @@ function _mw_adminimize_dashboard_setup () {
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'] = '';
17
 
18
  $adminimizeoptions = get_option( 'mw_adminimize' );
19
  $widgets = _mw_adminimize_get_dashboard_widgets();
20
+
21
  $adminimizeoptions['mw_adminimize_dashboard_widgets'] = $widgets;
22
  if ( current_user_can( 'manage_options' ) )
23
  update_option( 'mw_adminimize', $adminimizeoptions );
33
  'mw_adminimize_disabled_dashboard_option_' . $role . '_items'
34
  );
35
  }
36
+
37
  foreach ( $user_roles as $role ) {
38
  if ( ! isset( $disabled_dashboard_option_[$role]['0'] ) )
39
  $disabled_dashboard_option_[$role]['0'] = '';
js/remove_footer.js CHANGED
File without changes
js/remove_header.js CHANGED
File without changes
js/tb_window.js CHANGED
File without changes
js/timestamp.js CHANGED
File without changes
languages/adminimize-bg_BG.mo CHANGED
File without changes
languages/adminimize-bg_BG.po 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
@@ -59,67 +59,67 @@ msgstr "Backend-Theme wurde zugewiesen!"
59
  msgid "Load user data to themes was successful."
60
  msgstr "Das Laden der User-Daten zum Theme war erfolgreich."
61
 
62
- #: adminimize.php:468
63
  #: inc-options/links_options.php:52
64
- #: inc-options/write_cp_options.php:99
65
- #: inc-options/write_post_options.php:87
66
  #@ default
67
  #@ adminimize
68
  msgid "Categories"
69
  msgstr "Kategorien"
70
 
71
- #: adminimize.php:474
72
- #: adminimize.php:485
73
  #@ default
74
  msgid "+ Add New Category"
75
  msgstr "+ Add New Category"
76
 
77
- #: adminimize.php:476
78
- #: adminimize.php:487
79
  #@ default
80
  msgid "New category name"
81
  msgstr "New category name"
82
 
83
- #: adminimize.php:477
84
- #: adminimize.php:489
85
  #@ default
86
  msgid "Parent category"
87
  msgstr "Parent category"
88
 
89
- #: adminimize.php:478
90
- #: adminimize.php:490
91
  #@ default
92
  msgid "Add"
93
  msgstr "Add"
94
 
95
- #: adminimize.php:487
96
- #: inc-options/write_cp_options.php:100
97
- #: inc-options/write_post_options.php:88
98
  #@ default
99
  #@ adminimize
100
  msgid "Add New Category"
101
  msgstr "Add New Category"
102
 
103
- #: inc-options/write_cp_options.php:97
104
- #: inc-options/write_cp_options.php:135
105
- #: inc-options/write_post_options.php:85
106
- #: inc-options/write_post_options.php:121
107
  #@ adminimize
108
  #@ default
109
  msgid "Tags"
110
  msgstr "Tags"
111
 
112
- #: adminimize.php:572
113
- #: adminimize.php:575
114
  #@ default
115
  msgid "Dashboard"
116
  msgstr "Dashboard"
117
 
118
- #: adminimize.php:636
119
- #: adminimize.php:638
120
- #: adminimize.php:659
121
- #: adminimize.php:661
122
- #: adminimize.php:1034
123
  #: inc-setup/admin-bar.php:57
124
  #: inc-setup/admin-bar.php:81
125
  #: inc-setup/admin-bar.php:250
@@ -132,32 +132,32 @@ msgstr "Log Out"
132
  msgid "Version"
133
  msgstr "Version"
134
 
135
- #: inc-options/write_cp_options.php:129
136
- #: inc-options/write_page_options.php:108
137
- #: inc-options/write_post_options.php:115
138
  #@ default
139
  msgid "Author"
140
  msgstr "Author"
141
 
142
- #: adminimize.php:1067
143
  #@ default
144
  msgid "Settings"
145
  msgstr "Settings"
146
 
147
  #. translators: plugin header field 'Name'
148
  #: adminimize.php:0
149
- #: adminimize.php:1086
150
  #: inc-options/minimenu.php:14
151
  #@ adminimize
152
  msgid "Adminimize"
153
  msgstr "Adminimize"
154
 
155
- #: adminimize.php:1085
156
  #@ adminimize
157
  msgid "Adminimize Options"
158
  msgstr "Adminimize Einstellungen"
159
 
160
- #: adminimize.php:1111
161
  #@ default
162
  msgid "Cheatin&#8217; uh?"
163
  msgstr "Cheatin&#8217; uh?"
@@ -173,7 +173,7 @@ msgstr "Cheatin&#8217; uh?"
173
  #: inc-options/minimenu.php:82
174
  #: inc-options/theme_options.php:14
175
  #: inc-options/wp_nav_menu_options.php:14
176
- #: inc-options/write_cp_options.php:19
177
  #: inc-options/write_page_options.php:14
178
  #: inc-options/write_post_options.php:15
179
  #@ default
@@ -314,7 +314,6 @@ msgid "Write Page"
314
  msgstr "Schreiben Seite"
315
 
316
  #: inc-options/backend_options.php:158
317
- #: inc-options/write_post_options.php:92
318
  #@ adminimize
319
  msgid "Comments"
320
  msgstr "Kommentare"
@@ -330,9 +329,9 @@ msgstr "andere Seite"
330
  #: inc-options/links_options.php:126
331
  #: inc-options/menu_options.php:155
332
  #: inc-options/wp_nav_menu_options.php:147
333
- #: inc-options/write_cp_options.php:239
334
- #: inc-options/write_page_options.php:187
335
- #: inc-options/write_post_options.php:197
336
  #@ adminimize
337
  msgid "Update Options"
338
  msgstr "Einstellungen aktualisieren"
@@ -351,9 +350,9 @@ msgstr "Globale Einstellungen"
351
  #: inc-options/links_options.php:101
352
  #: inc-options/wp_nav_menu_options.php:22
353
  #: inc-options/wp_nav_menu_options.php:122
354
- #: inc-options/write_cp_options.php:204
355
- #: inc-options/write_page_options.php:162
356
- #: inc-options/write_post_options.php:172
357
  #@ adminimize
358
  msgid "Option"
359
  msgstr "Einstellung"
@@ -363,7 +362,7 @@ msgstr "Einstellung"
363
  #: inc-options/links_options.php:26
364
  #: inc-options/menu_options.php:26
365
  #: inc-options/wp_nav_menu_options.php:25
366
- #: inc-options/write_cp_options.php:32
367
  #: inc-options/write_page_options.php:25
368
  #: inc-options/write_post_options.php:26
369
  #@ adminimize
@@ -382,9 +381,9 @@ msgstr "Screen-Meta"
382
 
383
  #: inc-options/global_options.php:50
384
  #: inc-options/wp_nav_menu_options.php:49
385
- #: inc-options/write_cp_options.php:95
386
- #: inc-options/write_page_options.php:77
387
- #: inc-options/write_post_options.php:82
388
  #@ adminimize
389
  #@ default
390
  msgid "Screen Options"
@@ -410,9 +409,9 @@ msgstr "Deine eigenen Einstellungen"
410
  #: inc-options/global_options.php:96
411
  #: inc-options/links_options.php:100
412
  #: inc-options/wp_nav_menu_options.php:121
413
- #: inc-options/write_cp_options.php:202
414
- #: inc-options/write_page_options.php:161
415
- #: inc-options/write_post_options.php:171
416
  #@ adminimize
417
  msgid "ID or class"
418
  msgstr "ID oder Klasse"
@@ -421,9 +420,9 @@ msgstr "ID oder Klasse"
421
  #: inc-options/global_options.php:103
422
  #: inc-options/links_options.php:107
423
  #: inc-options/wp_nav_menu_options.php:128
424
- #: inc-options/write_cp_options.php:211
425
- #: inc-options/write_page_options.php:168
426
- #: inc-options/write_post_options.php:178
427
  #@ adminimize
428
  msgid "It is possible to add your own IDs or classes from elements and tags. You can find IDs and classes with the FireBug Add-on for Firefox. Assign a value and the associate name per line."
429
  msgstr "Es ist möglich, dass du eigene IDs und Klassen eines Elementes oder Tags hinzufügst. Du findest IDs und Klassen sehr einfach mit dem Firebug Add-on für den Firefox. Füge pro Zeile einen Wert und dazugehörigen Namen ein."
@@ -432,9 +431,9 @@ msgstr "Es ist möglich, dass du eigene IDs und Klassen eines Elementes oder Tag
432
  #: inc-options/global_options.php:109
433
  #: inc-options/links_options.php:113
434
  #: inc-options/wp_nav_menu_options.php:134
435
- #: inc-options/write_cp_options.php:221
436
- #: inc-options/write_page_options.php:174
437
- #: inc-options/write_post_options.php:184
438
  #@ adminimize
439
  msgid "Possible nomination for ID or class. Separate multiple nominations through a carriage return."
440
  msgstr "Mögliche Benennung der ID oder Klasse. Trenne Werte durch eine neue Zeile."
@@ -443,9 +442,9 @@ msgstr "Mögliche Benennung der ID oder Klasse. Trenne Werte durch eine neue Zei
443
  #: inc-options/global_options.php:114
444
  #: inc-options/links_options.php:118
445
  #: inc-options/wp_nav_menu_options.php:139
446
- #: inc-options/write_cp_options.php:229
447
- #: inc-options/write_page_options.php:179
448
- #: inc-options/write_post_options.php:189
449
  #@ adminimize
450
  msgid "Possible IDs or classes. Separate multiple values through a carriage return."
451
  msgstr "Mögliche IDs oder Klassen. Trenne Werte durch eine neue Zeile."
@@ -462,154 +461,133 @@ msgid "Menu options - Menu, <span style=\\\"font-weight: 400;\\\">Submenu</span>
462
  msgstr "Menu Einstellungen - Menu, <span style=\"font-weight: 400;\">Submenu</span>"
463
 
464
  #: inc-options/wp_nav_menu_options.php:48
465
- #: inc-options/write_cp_options.php:94
466
- #: inc-options/write_page_options.php:76
467
- #: inc-options/write_post_options.php:81
468
  #@ adminimize
469
  #@ default
470
  msgid "Help"
471
  msgstr "Hilfe"
472
 
473
- #: inc-options/write_cp_options.php:96
474
- #: inc-options/write_page_options.php:79
475
- #: inc-options/write_post_options.php:84
476
  #@ adminimize
477
  msgid "Permalink"
478
  msgstr "Permalink"
479
 
480
- #: inc-options/write_post_options.php:89
481
- #@ adminimize
482
- msgid "Excerpt"
483
- msgstr "Auszug"
484
-
485
- #: inc-options/write_post_options.php:90
486
- #@ adminimize
487
- msgid "Trackbacks"
488
- msgstr "Trackbacks"
489
-
490
- #: inc-options/write_page_options.php:80
491
- #: inc-options/write_post_options.php:91
492
  #@ default
493
  msgid "Custom Fields"
494
  msgstr "Benutzerdefinierte Felder"
495
 
496
- #: inc-options/write_cp_options.php:101
497
- #: inc-options/write_post_options.php:93
498
  #@ adminimize
499
  msgid "Password Protect This Post"
500
  msgstr "Diesen Artikel durch ein Passwort sch&uuml;tzen"
501
 
502
- #: inc-options/write_post_options.php:94
503
- #@ default
504
- msgid "Post Author"
505
- msgstr "Autor"
506
-
507
- #: inc-options/write_post_options.php:95
508
- #@ default
509
- msgid "Post Revisions"
510
- msgstr "Post Revisions"
511
-
512
- #: inc-options/write_cp_options.php:102
513
- #: inc-options/write_post_options.php:96
514
  #@ adminimize
515
  msgid "Related, Shortcuts"
516
  msgstr "Siehe auch, Tastaturk&uuml;rzel"
517
 
518
- #: inc-options/write_cp_options.php:104
519
- #: inc-options/write_page_options.php:90
520
- #: inc-options/write_post_options.php:98
521
  #@ adminimize
522
  msgid "h2: Advanced Options"
523
  msgstr "h2: Erweiterte Einstellungen"
524
 
525
- #: inc-options/write_cp_options.php:105
526
- #: inc-options/write_page_options.php:91
527
- #: inc-options/write_post_options.php:99
528
  #@ adminimize
529
  msgid "Media Buttons (all)"
530
  msgstr "Media Buttons (alle)"
531
 
532
- #: inc-options/write_cp_options.php:106
533
- #: inc-options/write_page_options.php:92
534
- #: inc-options/write_post_options.php:100
535
  #@ adminimize
536
  msgid "Word count"
537
  msgstr "Word count"
538
 
539
- #: inc-options/write_cp_options.php:107
540
- #: inc-options/write_post_options.php:101
541
  #@ adminimize
542
  msgid "Post Slug"
543
  msgstr "Titelform"
544
 
545
  #: inc-options/links_options.php:56
546
- #: inc-options/write_cp_options.php:108
547
- #: inc-options/write_page_options.php:94
548
- #: inc-options/write_post_options.php:102
549
  #@ adminimize
550
  msgid "Publish Actions"
551
  msgstr "Publish Actions"
552
 
553
- #: inc-options/write_cp_options.php:109
554
- #: inc-options/write_page_options.php:95
555
- #: inc-options/write_post_options.php:103
556
  #@ default
557
  #@ adminimize
558
  msgid "Discussion"
559
  msgstr "Kommentare"
560
 
561
- #: inc-options/write_cp_options.php:120
562
- #: inc-options/write_post_options.php:108
563
  #@ adminimize
564
  msgid "Post Thumbnail"
565
  msgstr "Artikelbild"
566
 
567
- #: inc-options/write_page_options.php:81
568
  #@ adminimize
569
  msgid "Comments &amp; Pings"
570
  msgstr "Kommentare &amp; Pings"
571
 
572
- #: inc-options/write_page_options.php:82
573
  #@ adminimize
574
  msgid "Password Protect This Page"
575
  msgstr "Diese Seite mit einem Passwort versehen"
576
 
577
- #: inc-options/write_page_options.php:83
578
  #@ adminimize
579
  msgid "Attributes"
580
  msgstr "Attribute"
581
 
582
- #: inc-options/write_page_options.php:84
583
  #@ adminimize
584
  msgid "Page Template"
585
  msgstr "Seiten Template"
586
 
587
- #: inc-options/write_page_options.php:85
588
  #@ adminimize
589
  msgid "Page Order"
590
  msgstr "Reihenfolge"
591
 
592
- #: inc-options/write_page_options.php:86
593
  #@ default
594
  msgid "Page Author"
595
  msgstr "Seitenautor"
596
 
597
- #: inc-options/write_page_options.php:87
598
  #@ default
599
  msgid "Page Revisions"
600
  msgstr "Page Revisions"
601
 
602
- #: inc-options/write_page_options.php:88
603
  #@ adminimize
604
  msgid "Related"
605
  msgstr "Siehe auch"
606
 
607
- #: inc-options/write_page_options.php:93
608
  #@ adminimize
609
  msgid "Page Slug"
610
  msgstr "Titelform"
611
 
612
- #: inc-options/write_page_options.php:100
613
  #@ adminimize
614
  msgid "Page Image"
615
  msgstr "Artikelbild"
@@ -632,7 +610,7 @@ msgstr "Profile"
632
  msgid "Write options - Post"
633
  msgstr "Schreiben Einstellungen - Beitr&auml;ge"
634
 
635
- #: inc-options/write_post_options.php:171
636
  #@ adminimize
637
  msgid "Your own post options"
638
  msgstr "Deine eigenen Beitrags-Einstellungen"
@@ -644,7 +622,7 @@ msgstr "Deine eigenen Beitrags-Einstellungen"
644
  msgid "Write options - Page"
645
  msgstr "Schreiben Einstellungen - Seiten"
646
 
647
- #: inc-options/write_page_options.php:161
648
  #@ adminimize
649
  msgid "Your own page options"
650
  msgstr "Deine eigenen Seiten-Einstellungen"
@@ -815,9 +793,9 @@ msgstr "MiniMenu"
815
  #: inc-options/minimenu.php:99
816
  #: inc-options/theme_options.php:105
817
  #: inc-options/wp_nav_menu_options.php:149
818
- #: inc-options/write_cp_options.php:244
819
- #: inc-options/write_page_options.php:189
820
- #: inc-options/write_post_options.php:199
821
  #@ adminimize
822
  msgid "scroll to top"
823
  msgstr "Nach oben"
@@ -852,9 +830,9 @@ msgstr "Im Footer kann ein Hinweis auf die aktive Ver&auml;nderung des Standard-
852
  msgid "Dashboard deactivate, redirect to"
853
  msgstr "Dashboard inaktiv, Weiterleitung nach"
854
 
855
- #: inc-options/write_cp_options.php:110
856
- #: inc-options/write_page_options.php:96
857
- #: inc-options/write_post_options.php:104
858
  #@ default
859
  #@ adminimize
860
  msgid "HTML Editor Button"
@@ -899,8 +877,8 @@ msgstr "Header"
899
  msgid "The Header-area can hide, include all links and details."
900
  msgstr "Der header-Bereich kann ausgeblendet werden, inkl. aller Links und Details."
901
 
902
- #: inc-options/write_page_options.php:78
903
- #: inc-options/write_post_options.php:83
904
  #@ adminimize
905
  msgid "Title"
906
  msgstr "Title"
@@ -952,111 +930,113 @@ msgstr "Benutzerdef. Links"
952
  msgid "Add menu"
953
  msgstr "Menu hinzufügen"
954
 
955
- #: inc-options/write_cp_options.php:98
956
- #: inc-options/write_post_options.php:86
957
  #@ adminimize
958
  msgid "Format"
959
  msgstr "Format"
960
 
961
- #: inc-options/write_cp_options.php:103
962
- #: inc-options/write_page_options.php:89
963
- #: inc-options/write_post_options.php:97
964
  #@ adminimize
965
  msgid "Messages"
966
  msgstr "Mitteilungen"
967
 
968
- #: inc-options/write_cp_options.php:126
969
- #: inc-options/write_page_options.php:104
970
- #: inc-options/write_post_options.php:112
971
  #@ adminimize
972
  msgid "Quick Edit Link"
973
  msgstr "QuickEdit Link"
974
 
975
- #: inc-options/write_cp_options.php:127
976
  #: inc-options/write_cp_options.php:131
977
- #: inc-options/write_cp_options.php:134
978
- #: inc-options/write_cp_options.php:137
979
- #: inc-options/write_page_options.php:105
980
- #: inc-options/write_page_options.php:110
981
- #: inc-options/write_page_options.php:113
982
- #: inc-options/write_post_options.php:113
983
- #: inc-options/write_post_options.php:117
984
- #: inc-options/write_post_options.php:120
985
  #: inc-options/write_post_options.php:123
 
 
 
986
  #@ adminimize
987
  msgid "QE"
988
  msgstr "QE"
989
 
990
- #: inc-options/write_cp_options.php:127
991
- #: inc-options/write_page_options.php:105
992
- #: inc-options/write_post_options.php:113
993
  #@ adminimize
994
  msgid "Inline Edit Left"
995
  msgstr "Inline Edit Links"
996
 
997
- #: inc-options/write_cp_options.php:128
998
- #: inc-options/write_page_options.php:106
999
- #: inc-options/write_post_options.php:114
1000
  #@ adminimize
1001
  msgid "All Labels"
1002
  msgstr "Alle labels"
1003
 
1004
- #: inc-options/write_page_options.php:107
 
 
 
1005
  #@ adminimize
1006
  msgid "Date"
1007
  msgstr "Datum"
1008
 
1009
- #: inc-options/write_cp_options.php:130
1010
- #: inc-options/write_page_options.php:109
1011
- #: inc-options/write_post_options.php:116
1012
  #@ adminimize
1013
  msgid "Password and Private"
1014
  msgstr "Passwort und Privat-Flag"
1015
 
1016
- #: inc-options/write_cp_options.php:134
1017
- #: inc-options/write_page_options.php:110
1018
- #: inc-options/write_post_options.php:120
1019
  #@ adminimize
1020
  msgid "Inline Edit Right"
1021
  msgstr "Inline Edit rechts"
1022
 
1023
- #: inc-options/write_page_options.php:111
1024
  #@ adminimize
1025
  msgid "Parent, Order, Template"
1026
  msgstr "Eltern, Reihenfolge, Template"
1027
 
1028
- #: inc-options/write_page_options.php:112
1029
  #@ adminimize
1030
  msgid "Status"
1031
  msgstr "Status"
1032
 
1033
- #: inc-options/write_cp_options.php:137
1034
- #: inc-options/write_page_options.php:113
1035
- #: inc-options/write_post_options.php:123
1036
  #@ adminimize
1037
  msgid "Cancel/Save Button"
1038
  msgstr "Abbrechen/Aktualisieren Button"
1039
 
1040
- #: inc-options/write_cp_options.php:131
1041
- #: inc-options/write_post_options.php:117
1042
  #@ adminimize
1043
  msgid "Inline Edit Center"
1044
  msgstr "Inline Edit mitte"
1045
 
1046
- #: inc-options/write_cp_options.php:132
1047
- #: inc-options/write_post_options.php:118
1048
  #@ adminimize
1049
  msgid "Categories Title"
1050
  msgstr "Kategorien Title"
1051
 
1052
- #: inc-options/write_cp_options.php:133
1053
- #: inc-options/write_post_options.php:119
1054
  #@ adminimize
1055
  msgid "Categories List"
1056
  msgstr "Kategorien Liste"
1057
 
1058
- #: inc-options/write_cp_options.php:136
1059
- #: inc-options/write_post_options.php:122
1060
  #@ adminimize
1061
  msgid "Status, Sticky"
1062
  msgstr "Status, Sticky"
@@ -1067,8 +1047,8 @@ msgid "Your own Link options"
1067
  msgstr "Deine eigenen Link Einstellungen"
1068
 
1069
  #: inc-options/minimenu.php:52
1070
- #: inc-options/write_cp_options.php:21
1071
- #: inc-options/write_cp_options.php:29
1072
  #@ adminimize
1073
  msgid "Write options"
1074
  msgstr "Einstellungen Schreiben"
@@ -1078,7 +1058,7 @@ msgstr "Einstellungen Schreiben"
1078
  msgid "Your own Nav Menu options"
1079
  msgstr "Deine eigenen Nav Menu Einstellungen"
1080
 
1081
- #: inc-options/write_cp_options.php:201
1082
  #, php-format
1083
  #@ adminimize
1084
  msgid "Your own %s options"
@@ -1100,17 +1080,6 @@ msgstr "Um die Installation für Dashboard Widgets abzuschließen, musst du das
1100
  msgid "Further information: Visit the <a href=\"http://wordpress.org/extend/plugins/adminimize/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
1101
  msgstr "Weitere Informationen: Besuchen Sie die <a href=\"http://wordpress.org/extend/plugins/adminimize/\">Plugin Website</a> für weitere Informationen oder um die neueste Version des Plugins erhalten."
1102
 
1103
- #. translators: plugin header field 'Version'
1104
- #: adminimize.php:0
1105
- #@ adminimize
1106
- msgid "1.7.26"
1107
- msgstr ""
1108
-
1109
- #: inc-options/settings_notice.php:17
1110
- #@ adminimize
1111
- msgid "Attention: The settings page ignores these Menu settings and views the menu with all entries!"
1112
- msgstr "Achtung: Die Seite der Einstellungen ignoriert Menu-Einstellungen und stellt das Menu mit allen Einträgen dar!"
1113
-
1114
  #: inc-setup/admin-bar.php:239
1115
  #@ default
1116
  msgid "Network Admin"
@@ -1121,3 +1090,14 @@ msgstr ""
1121
  msgid "Site Admin"
1122
  msgstr ""
1123
 
 
 
 
 
 
 
 
 
 
 
 
59
  msgid "Load user data to themes was successful."
60
  msgstr "Das Laden der User-Daten zum Theme war erfolgreich."
61
 
62
+ #: adminimize.php:503
63
  #: inc-options/links_options.php:52
64
+ #: inc-options/write_cp_options.php:103
65
+ #: inc-options/write_post_options.php:97
66
  #@ default
67
  #@ adminimize
68
  msgid "Categories"
69
  msgstr "Kategorien"
70
 
71
+ #: adminimize.php:509
72
+ #: adminimize.php:520
73
  #@ default
74
  msgid "+ Add New Category"
75
  msgstr "+ Add New Category"
76
 
77
+ #: adminimize.php:511
78
+ #: adminimize.php:522
79
  #@ default
80
  msgid "New category name"
81
  msgstr "New category name"
82
 
83
+ #: adminimize.php:512
84
+ #: adminimize.php:524
85
  #@ default
86
  msgid "Parent category"
87
  msgstr "Parent category"
88
 
89
+ #: adminimize.php:513
90
+ #: adminimize.php:525
91
  #@ default
92
  msgid "Add"
93
  msgstr "Add"
94
 
95
+ #: adminimize.php:522
96
+ #: inc-options/write_cp_options.php:104
97
+ #: inc-options/write_post_options.php:98
98
  #@ default
99
  #@ adminimize
100
  msgid "Add New Category"
101
  msgstr "Add New Category"
102
 
103
+ #: inc-options/write_cp_options.php:101
104
+ #: inc-options/write_cp_options.php:139
105
+ #: inc-options/write_post_options.php:96
106
+ #: inc-options/write_post_options.php:131
107
  #@ adminimize
108
  #@ default
109
  msgid "Tags"
110
  msgstr "Tags"
111
 
112
+ #: adminimize.php:607
113
+ #: adminimize.php:610
114
  #@ default
115
  msgid "Dashboard"
116
  msgstr "Dashboard"
117
 
118
+ #: adminimize.php:671
119
+ #: adminimize.php:673
120
+ #: adminimize.php:694
121
+ #: adminimize.php:696
122
+ #: adminimize.php:1069
123
  #: inc-setup/admin-bar.php:57
124
  #: inc-setup/admin-bar.php:81
125
  #: inc-setup/admin-bar.php:250
132
  msgid "Version"
133
  msgstr "Version"
134
 
135
+ #: inc-options/write_cp_options.php:133
136
+ #: inc-options/write_page_options.php:132
137
+ #: inc-options/write_post_options.php:125
138
  #@ default
139
  msgid "Author"
140
  msgstr "Author"
141
 
142
+ #: adminimize.php:1099
143
  #@ default
144
  msgid "Settings"
145
  msgstr "Settings"
146
 
147
  #. translators: plugin header field 'Name'
148
  #: adminimize.php:0
149
+ #: adminimize.php:1118
150
  #: inc-options/minimenu.php:14
151
  #@ adminimize
152
  msgid "Adminimize"
153
  msgstr "Adminimize"
154
 
155
+ #: adminimize.php:1117
156
  #@ adminimize
157
  msgid "Adminimize Options"
158
  msgstr "Adminimize Einstellungen"
159
 
160
+ #: adminimize.php:1143
161
  #@ default
162
  msgid "Cheatin&#8217; uh?"
163
  msgstr "Cheatin&#8217; uh?"
173
  #: inc-options/minimenu.php:82
174
  #: inc-options/theme_options.php:14
175
  #: inc-options/wp_nav_menu_options.php:14
176
+ #: inc-options/write_cp_options.php:20
177
  #: inc-options/write_page_options.php:14
178
  #: inc-options/write_post_options.php:15
179
  #@ default
314
  msgstr "Schreiben Seite"
315
 
316
  #: inc-options/backend_options.php:158
 
317
  #@ adminimize
318
  msgid "Comments"
319
  msgstr "Kommentare"
329
  #: inc-options/links_options.php:126
330
  #: inc-options/menu_options.php:155
331
  #: inc-options/wp_nav_menu_options.php:147
332
+ #: inc-options/write_cp_options.php:243
333
+ #: inc-options/write_page_options.php:211
334
+ #: inc-options/write_post_options.php:207
335
  #@ adminimize
336
  msgid "Update Options"
337
  msgstr "Einstellungen aktualisieren"
350
  #: inc-options/links_options.php:101
351
  #: inc-options/wp_nav_menu_options.php:22
352
  #: inc-options/wp_nav_menu_options.php:122
353
+ #: inc-options/write_cp_options.php:208
354
+ #: inc-options/write_page_options.php:186
355
+ #: inc-options/write_post_options.php:182
356
  #@ adminimize
357
  msgid "Option"
358
  msgstr "Einstellung"
362
  #: inc-options/links_options.php:26
363
  #: inc-options/menu_options.php:26
364
  #: inc-options/wp_nav_menu_options.php:25
365
+ #: inc-options/write_cp_options.php:33
366
  #: inc-options/write_page_options.php:25
367
  #: inc-options/write_post_options.php:26
368
  #@ adminimize
381
 
382
  #: inc-options/global_options.php:50
383
  #: inc-options/wp_nav_menu_options.php:49
384
+ #: inc-options/write_cp_options.php:99
385
+ #: inc-options/write_page_options.php:95
386
+ #: inc-options/write_post_options.php:93
387
  #@ adminimize
388
  #@ default
389
  msgid "Screen Options"
409
  #: inc-options/global_options.php:96
410
  #: inc-options/links_options.php:100
411
  #: inc-options/wp_nav_menu_options.php:121
412
+ #: inc-options/write_cp_options.php:206
413
+ #: inc-options/write_page_options.php:185
414
+ #: inc-options/write_post_options.php:181
415
  #@ adminimize
416
  msgid "ID or class"
417
  msgstr "ID oder Klasse"
420
  #: inc-options/global_options.php:103
421
  #: inc-options/links_options.php:107
422
  #: inc-options/wp_nav_menu_options.php:128
423
+ #: inc-options/write_cp_options.php:215
424
+ #: inc-options/write_page_options.php:192
425
+ #: inc-options/write_post_options.php:188
426
  #@ adminimize
427
  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."
428
  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."
431
  #: inc-options/global_options.php:109
432
  #: inc-options/links_options.php:113
433
  #: inc-options/wp_nav_menu_options.php:134
434
+ #: inc-options/write_cp_options.php:225
435
+ #: inc-options/write_page_options.php:198
436
+ #: inc-options/write_post_options.php:194
437
  #@ adminimize
438
  msgid "Possible nomination for ID or class. Separate multiple nominations through a carriage return."
439
  msgstr "Mögliche Benennung der ID oder Klasse. Trenne Werte durch eine neue Zeile."
442
  #: inc-options/global_options.php:114
443
  #: inc-options/links_options.php:118
444
  #: inc-options/wp_nav_menu_options.php:139
445
+ #: inc-options/write_cp_options.php:233
446
+ #: inc-options/write_page_options.php:203
447
+ #: inc-options/write_post_options.php:199
448
  #@ adminimize
449
  msgid "Possible IDs or classes. Separate multiple values through a carriage return."
450
  msgstr "Mögliche IDs oder Klassen. Trenne Werte durch eine neue Zeile."
461
  msgstr "Menu Einstellungen - Menu, <span style=\"font-weight: 400;\">Submenu</span>"
462
 
463
  #: inc-options/wp_nav_menu_options.php:48
464
+ #: inc-options/write_cp_options.php:98
465
+ #: inc-options/write_page_options.php:94
466
+ #: inc-options/write_post_options.php:92
467
  #@ adminimize
468
  #@ default
469
  msgid "Help"
470
  msgstr "Hilfe"
471
 
472
+ #: inc-options/write_cp_options.php:100
473
+ #: inc-options/write_page_options.php:97
474
+ #: inc-options/write_post_options.php:95
475
  #@ adminimize
476
  msgid "Permalink"
477
  msgstr "Permalink"
478
 
479
+ #: inc-options/write_page_options.php:98
 
 
 
 
 
 
 
 
 
 
 
480
  #@ default
481
  msgid "Custom Fields"
482
  msgstr "Benutzerdefinierte Felder"
483
 
484
+ #: inc-options/write_cp_options.php:105
485
+ #: inc-options/write_post_options.php:100
486
  #@ adminimize
487
  msgid "Password Protect This Post"
488
  msgstr "Diesen Artikel durch ein Passwort sch&uuml;tzen"
489
 
490
+ #: inc-options/write_cp_options.php:106
491
+ #: inc-options/write_post_options.php:101
 
 
 
 
 
 
 
 
 
 
492
  #@ adminimize
493
  msgid "Related, Shortcuts"
494
  msgstr "Siehe auch, Tastaturk&uuml;rzel"
495
 
496
+ #: inc-options/write_cp_options.php:108
497
+ #: inc-options/write_page_options.php:109
498
+ #: inc-options/write_post_options.php:103
499
  #@ adminimize
500
  msgid "h2: Advanced Options"
501
  msgstr "h2: Erweiterte Einstellungen"
502
 
503
+ #: inc-options/write_cp_options.php:109
504
+ #: inc-options/write_page_options.php:110
505
+ #: inc-options/write_post_options.php:104
506
  #@ adminimize
507
  msgid "Media Buttons (all)"
508
  msgstr "Media Buttons (alle)"
509
 
510
+ #: inc-options/write_cp_options.php:110
511
+ #: inc-options/write_page_options.php:111
512
+ #: inc-options/write_post_options.php:105
513
  #@ adminimize
514
  msgid "Word count"
515
  msgstr "Word count"
516
 
517
+ #: inc-options/write_cp_options.php:111
518
+ #: inc-options/write_post_options.php:106
519
  #@ adminimize
520
  msgid "Post Slug"
521
  msgstr "Titelform"
522
 
523
  #: inc-options/links_options.php:56
524
+ #: inc-options/write_cp_options.php:112
525
+ #: inc-options/write_page_options.php:113
526
+ #: inc-options/write_post_options.php:107
527
  #@ adminimize
528
  msgid "Publish Actions"
529
  msgstr "Publish Actions"
530
 
531
+ #: inc-options/write_cp_options.php:113
532
+ #: inc-options/write_page_options.php:114
533
+ #: inc-options/write_post_options.php:108
534
  #@ default
535
  #@ adminimize
536
  msgid "Discussion"
537
  msgstr "Kommentare"
538
 
539
+ #: inc-options/write_cp_options.php:124
540
+ #: inc-options/write_post_options.php:118
541
  #@ adminimize
542
  msgid "Post Thumbnail"
543
  msgstr "Artikelbild"
544
 
545
+ #: inc-options/write_page_options.php:99
546
  #@ adminimize
547
  msgid "Comments &amp; Pings"
548
  msgstr "Kommentare &amp; Pings"
549
 
550
+ #: inc-options/write_page_options.php:101
551
  #@ adminimize
552
  msgid "Password Protect This Page"
553
  msgstr "Diese Seite mit einem Passwort versehen"
554
 
555
+ #: inc-options/write_page_options.php:102
556
  #@ adminimize
557
  msgid "Attributes"
558
  msgstr "Attribute"
559
 
560
+ #: inc-options/write_page_options.php:103
561
  #@ adminimize
562
  msgid "Page Template"
563
  msgstr "Seiten Template"
564
 
565
+ #: inc-options/write_page_options.php:104
566
  #@ adminimize
567
  msgid "Page Order"
568
  msgstr "Reihenfolge"
569
 
570
+ #: inc-options/write_page_options.php:105
571
  #@ default
572
  msgid "Page Author"
573
  msgstr "Seitenautor"
574
 
575
+ #: inc-options/write_page_options.php:106
576
  #@ default
577
  msgid "Page Revisions"
578
  msgstr "Page Revisions"
579
 
580
+ #: inc-options/write_page_options.php:107
581
  #@ adminimize
582
  msgid "Related"
583
  msgstr "Siehe auch"
584
 
585
+ #: inc-options/write_page_options.php:112
586
  #@ adminimize
587
  msgid "Page Slug"
588
  msgstr "Titelform"
589
 
590
+ #: inc-options/write_page_options.php:124
591
  #@ adminimize
592
  msgid "Page Image"
593
  msgstr "Artikelbild"
610
  msgid "Write options - Post"
611
  msgstr "Schreiben Einstellungen - Beitr&auml;ge"
612
 
613
+ #: inc-options/write_post_options.php:181
614
  #@ adminimize
615
  msgid "Your own post options"
616
  msgstr "Deine eigenen Beitrags-Einstellungen"
622
  msgid "Write options - Page"
623
  msgstr "Schreiben Einstellungen - Seiten"
624
 
625
+ #: inc-options/write_page_options.php:185
626
  #@ adminimize
627
  msgid "Your own page options"
628
  msgstr "Deine eigenen Seiten-Einstellungen"
793
  #: inc-options/minimenu.php:99
794
  #: inc-options/theme_options.php:105
795
  #: inc-options/wp_nav_menu_options.php:149
796
+ #: inc-options/write_cp_options.php:248
797
+ #: inc-options/write_page_options.php:213
798
+ #: inc-options/write_post_options.php:209
799
  #@ adminimize
800
  msgid "scroll to top"
801
  msgstr "Nach oben"
830
  msgid "Dashboard deactivate, redirect to"
831
  msgstr "Dashboard inaktiv, Weiterleitung nach"
832
 
833
+ #: inc-options/write_cp_options.php:114
834
+ #: inc-options/write_page_options.php:115
835
+ #: inc-options/write_post_options.php:109
836
  #@ default
837
  #@ adminimize
838
  msgid "HTML Editor Button"
877
  msgid "The Header-area can hide, include all links and details."
878
  msgstr "Der header-Bereich kann ausgeblendet werden, inkl. aller Links und Details."
879
 
880
+ #: inc-options/write_page_options.php:96
881
+ #: inc-options/write_post_options.php:94
882
  #@ adminimize
883
  msgid "Title"
884
  msgstr "Title"
930
  msgid "Add menu"
931
  msgstr "Menu hinzufügen"
932
 
933
+ #: inc-options/write_cp_options.php:102
 
934
  #@ adminimize
935
  msgid "Format"
936
  msgstr "Format"
937
 
938
+ #: inc-options/write_cp_options.php:107
939
+ #: inc-options/write_page_options.php:108
940
+ #: inc-options/write_post_options.php:102
941
  #@ adminimize
942
  msgid "Messages"
943
  msgstr "Mitteilungen"
944
 
945
+ #: inc-options/write_cp_options.php:130
946
+ #: inc-options/write_page_options.php:128
947
+ #: inc-options/write_post_options.php:122
948
  #@ adminimize
949
  msgid "Quick Edit Link"
950
  msgstr "QuickEdit Link"
951
 
 
952
  #: inc-options/write_cp_options.php:131
953
+ #: inc-options/write_cp_options.php:135
954
+ #: inc-options/write_cp_options.php:138
955
+ #: inc-options/write_cp_options.php:141
956
+ #: inc-options/write_page_options.php:129
957
+ #: inc-options/write_page_options.php:134
958
+ #: inc-options/write_page_options.php:137
 
 
959
  #: inc-options/write_post_options.php:123
960
+ #: inc-options/write_post_options.php:127
961
+ #: inc-options/write_post_options.php:130
962
+ #: inc-options/write_post_options.php:133
963
  #@ adminimize
964
  msgid "QE"
965
  msgstr "QE"
966
 
967
+ #: inc-options/write_cp_options.php:131
968
+ #: inc-options/write_page_options.php:129
969
+ #: inc-options/write_post_options.php:123
970
  #@ adminimize
971
  msgid "Inline Edit Left"
972
  msgstr "Inline Edit Links"
973
 
974
+ #: inc-options/write_cp_options.php:132
975
+ #: inc-options/write_page_options.php:130
976
+ #: inc-options/write_post_options.php:124
977
  #@ adminimize
978
  msgid "All Labels"
979
  msgstr "Alle labels"
980
 
981
+ #: inc-options/write_page_options.php:100
982
+ #: inc-options/write_page_options.php:131
983
+ #: inc-options/write_post_options.php:99
984
+ #@ default
985
  #@ adminimize
986
  msgid "Date"
987
  msgstr "Datum"
988
 
989
+ #: inc-options/write_cp_options.php:134
990
+ #: inc-options/write_page_options.php:133
991
+ #: inc-options/write_post_options.php:126
992
  #@ adminimize
993
  msgid "Password and Private"
994
  msgstr "Passwort und Privat-Flag"
995
 
996
+ #: inc-options/write_cp_options.php:138
997
+ #: inc-options/write_page_options.php:134
998
+ #: inc-options/write_post_options.php:130
999
  #@ adminimize
1000
  msgid "Inline Edit Right"
1001
  msgstr "Inline Edit rechts"
1002
 
1003
+ #: inc-options/write_page_options.php:135
1004
  #@ adminimize
1005
  msgid "Parent, Order, Template"
1006
  msgstr "Eltern, Reihenfolge, Template"
1007
 
1008
+ #: inc-options/write_page_options.php:136
1009
  #@ adminimize
1010
  msgid "Status"
1011
  msgstr "Status"
1012
 
1013
+ #: inc-options/write_cp_options.php:141
1014
+ #: inc-options/write_page_options.php:137
1015
+ #: inc-options/write_post_options.php:133
1016
  #@ adminimize
1017
  msgid "Cancel/Save Button"
1018
  msgstr "Abbrechen/Aktualisieren Button"
1019
 
1020
+ #: inc-options/write_cp_options.php:135
1021
+ #: inc-options/write_post_options.php:127
1022
  #@ adminimize
1023
  msgid "Inline Edit Center"
1024
  msgstr "Inline Edit mitte"
1025
 
1026
+ #: inc-options/write_cp_options.php:136
1027
+ #: inc-options/write_post_options.php:128
1028
  #@ adminimize
1029
  msgid "Categories Title"
1030
  msgstr "Kategorien Title"
1031
 
1032
+ #: inc-options/write_cp_options.php:137
1033
+ #: inc-options/write_post_options.php:129
1034
  #@ adminimize
1035
  msgid "Categories List"
1036
  msgstr "Kategorien Liste"
1037
 
1038
+ #: inc-options/write_cp_options.php:140
1039
+ #: inc-options/write_post_options.php:132
1040
  #@ adminimize
1041
  msgid "Status, Sticky"
1042
  msgstr "Status, Sticky"
1047
  msgstr "Deine eigenen Link Einstellungen"
1048
 
1049
  #: inc-options/minimenu.php:52
1050
+ #: inc-options/write_cp_options.php:22
1051
+ #: inc-options/write_cp_options.php:30
1052
  #@ adminimize
1053
  msgid "Write options"
1054
  msgstr "Einstellungen Schreiben"
1058
  msgid "Your own Nav Menu options"
1059
  msgstr "Deine eigenen Nav Menu Einstellungen"
1060
 
1061
+ #: inc-options/write_cp_options.php:205
1062
  #, php-format
1063
  #@ adminimize
1064
  msgid "Your own %s options"
1080
  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."
1081
  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."
1082
 
 
 
 
 
 
 
 
 
 
 
 
1083
  #: inc-setup/admin-bar.php:239
1084
  #@ default
1085
  msgid "Network Admin"
1090
  msgid "Site Admin"
1091
  msgstr ""
1092
 
1093
+ #. translators: plugin header field 'Version'
1094
+ #: adminimize.php:0
1095
+ #@ adminimize
1096
+ msgid "1.7.27"
1097
+ msgstr ""
1098
+
1099
+ #: inc-options/settings_notice.php:17
1100
+ #@ adminimize
1101
+ msgid "Please note: The Adminimize settings page ignores the Menu Options below and displays the menu with all entries.<br /><span style=\"font-weight: 300;\">To view your changes to the menu you need to navigate away from the Adminimize settings page.</span>"
1102
+ msgstr "Beachte: Die Einstellungen des Plugins ignorieren Menu Einstellungen um alle Einträge darzustellen.<br /><span style=\\\"font-weight: 300;\\\">Um die Einstellungen an deiner Rolle zu prüfen, musst du eine andere Seite im Backend aufrufen.</span>"
1103
+
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-ga_IR.mo CHANGED
File without changes
languages/adminimize-ga_IR.po CHANGED
File without changes
languages/adminimize-hi_IN.mo CHANGED
File without changes
languages/adminimize-hi_IN.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 DELETED
@@ -1,559 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: adminimize\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-08-13 20:49+0100\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Gürkan Gür <seqizz@gmail.com>\n"
8
- "Language-Team: seqizz <seqizz@gmail.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-Country: Turkey\n"
13
- "Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1\n"
14
-
15
- #: adminimize.php:63
16
- msgid "Unknown error."
17
- msgstr "Bilinmeyen hata."
18
-
19
- #: adminimize.php:70
20
- msgid "The updates was saved."
21
- msgstr "Değişiklikler kaydedildi."
22
-
23
- #: adminimize.php:71
24
- msgid "You have not enough rights for edit entries in the database."
25
- msgstr "Veritabanındaki girdileri değiştirmek için yeterli yetkilere sahip değilsiniz."
26
-
27
- #: adminimize.php:72
28
- msgid "All entries in the database was delleted."
29
- msgstr "Veritabanındaki bütün girdiler silindi."
30
-
31
- #: adminimize.php:73
32
- msgid "Set the checkbox on deinstall-button."
33
- msgstr ""
34
-
35
- #: adminimize.php:74
36
- msgid "Can't load menu and submenu."
37
- msgstr "Menü ve alt menü yüklenemiyor."
38
-
39
- #: adminimize.php:75
40
- msgid "Backend-Theme was activated!"
41
- msgstr "Arkaplan teması aktifleştirildi!"
42
-
43
- #: adminimize.php:239
44
- #: adminimize_page.php:421
45
- msgid "Categories"
46
- msgstr "Kategotiler"
47
-
48
- #: adminimize.php:245
49
- #: adminimize.php:256
50
- msgid "+ Add New Category"
51
- msgstr "+ Yeni kategori ekle"
52
-
53
- #: adminimize.php:247
54
- #: adminimize.php:258
55
- msgid "New category name"
56
- msgstr "Yeni kategori adı"
57
-
58
- #: adminimize.php:248
59
- #: adminimize.php:260
60
- msgid "Parent category"
61
- msgstr "Üst kategori"
62
-
63
- #: adminimize.php:249
64
- #: adminimize.php:261
65
- msgid "Add"
66
- msgstr "Ekle"
67
-
68
- #: adminimize.php:258
69
- #: adminimize_page.php:422
70
- msgid "Add New Category"
71
- msgstr "Yeni Kategori Ekle"
72
-
73
- #: adminimize.php:282
74
- #: adminimize.php:283
75
- #: adminimize_page.php:420
76
- msgid "Tags"
77
- msgstr "Etiketler"
78
-
79
- #: adminimize.php:342
80
- #: adminimize.php:379
81
- #: adminimize.php:421
82
- #: adminimize.php:444
83
- msgid "Classic"
84
- msgstr "Klasik"
85
-
86
- #: adminimize.php:349
87
- #: adminimize.php:386
88
- #: adminimize.php:428
89
- #: adminimize.php:451
90
- msgid "Fresh"
91
- msgstr "Taze"
92
-
93
- #: adminimize.php:356
94
- #: adminimize.php:393
95
- msgid "WordPress 2.3"
96
- msgstr "WordPress 2.3"
97
-
98
- #: adminimize.php:364
99
- #: adminimize.php:400
100
- msgid "Maybe i'm colorblind"
101
- msgstr "Belki ben renk körüyüm"
102
-
103
- #: adminimize.php:371
104
- #: adminimize.php:407
105
- msgid "Grey"
106
- msgstr "Gri"
107
-
108
- #: adminimize.php:550
109
- #: adminimize.php:553
110
- msgid "Dashboard"
111
- msgstr "Kontrol Paneli"
112
-
113
- #: adminimize.php:647
114
- #: adminimize.php:649
115
- #: adminimize.php:658
116
- #: adminimize.php:660
117
- #: adminimize.php:840
118
- msgid "Log Out"
119
- msgstr "Çıkış"
120
-
121
- #: adminimize.php:696
122
- #: adminimize_page.php:608
123
- #: adminimize_page.php:609
124
- #: adminimize_page.php:610
125
- #: adminimize_page.php:611
126
- #: adminimize_page.php:612
127
- #: adminimize_page.php:672
128
- #: adminimize_page.php:673
129
- #: adminimize_page.php:674
130
- #: adminimize_page.php:675
131
- #: adminimize_page.php:676
132
- #: adminimize_page.php:720
133
- #: adminimize_page.php:721
134
- #: adminimize_page.php:722
135
- #: adminimize_page.php:723
136
- #: adminimize_page.php:724
137
- msgid "All"
138
- msgstr "Tümü"
139
-
140
- #: adminimize.php:696
141
- msgid "None"
142
- msgstr "Hiçbiri"
143
-
144
- #: adminimize.php:859
145
- msgid "Visit plugin homepage"
146
- msgstr "Eklenti anasayfasına git"
147
-
148
- #: adminimize.php:862
149
- msgid "plugin"
150
- msgstr "eklenti"
151
-
152
- #: adminimize.php:862
153
- msgid "Version"
154
- msgstr "Sürüm"
155
-
156
- #: adminimize.php:862
157
- msgid "History"
158
- msgstr "Geçmiş"
159
-
160
- #: adminimize.php:862
161
- msgid "Author"
162
- msgstr "Sahibi"
163
-
164
- #: adminimize.php:865
165
- msgid "plugin activate"
166
- msgstr "eklenti etkinleştirme"
167
-
168
- #: adminimize.php:880
169
- msgid "Settings"
170
- msgstr "Ayarlar"
171
-
172
- #: adminimize.php:892
173
- msgid "Adminimize Options"
174
- msgstr "Adminimize Seçenekleri"
175
-
176
- #: adminimize.php:892
177
- #: adminimize_page.php:67
178
- msgid "Adminimize"
179
- msgstr "Adminimize"
180
-
181
- #: adminimize.php:904
182
- msgid "Cheatin&#8217; uh?"
183
- msgstr ""
184
-
185
- #: adminimize_page.php:96
186
- msgid "Sidebar Width"
187
- msgstr "Yan Panel Genişliği"
188
-
189
- #: adminimize_page.php:90
190
- #: adminimize_page.php:100
191
- #: adminimize_page.php:120
192
- #: adminimize_page.php:131
193
- #: adminimize_page.php:144
194
- #: adminimize_page.php:154
195
- #: adminimize_page.php:164
196
- #: adminimize_page.php:174
197
- #: adminimize_page.php:184
198
- #: adminimize_page.php:194
199
- #: adminimize_page.php:243
200
- msgid "Default"
201
- msgstr "Standart"
202
-
203
- #: adminimize_page.php:105
204
- msgid "The sidebar on the right side in the area <em>Edit</em> is configurable. Default is 200 pixel in the WordPress Theme <em>Classic</em> and <em>Fresh</em>"
205
- msgstr "Sağ taraftaki <em>Düzenle</em> bölgesindeki yan panel düzenlenebilir. Standart olarak <em>klasik</em> ve <em>taze</em> tema ile 200 piksel boyutundadır."
206
-
207
- #: adminimize_page.php:127
208
- msgid "User-Info"
209
- msgstr "Kullanıcı Bilgisi"
210
-
211
- #: adminimize_page.php:121
212
- #: adminimize_page.php:132
213
- #: adminimize_page.php:155
214
- msgid "Hide"
215
- msgstr "Gizle"
216
-
217
- #: adminimize_page.php:133
218
- msgid "Only logout"
219
- msgstr "Sadece çıkış"
220
-
221
- #: adminimize_page.php:134
222
- msgid "User &amp; Logout"
223
- msgstr "Kullanıcı &amp; Çıkış"
224
-
225
- #: adminimize_page.php:135
226
- msgid "The &quot;User-Info-area&quot; is on the top right side of the backend. You can hide or reduced show."
227
- msgstr "&quot;Kullanıcı Bilgisi bölgesi&quot; sağ üst taraftadır. Gizleyebilir veya görüntüleyebilirsiniz."
228
-
229
- #: adminimize_page.php:140
230
- msgid "Change User-Info, redirect to"
231
- msgstr "Kullanıcı Bilgisi değiştir, yönlendirme yeri"
232
-
233
- #: adminimize_page.php:145
234
- msgid "Frontpage of the Blog"
235
- msgstr "Blogun önsayfası"
236
-
237
- #: adminimize_page.php:146
238
- msgid "When the &quot;User-Info-area&quot; change it, then it is possible to change the redirect."
239
- msgstr "&quot;Kullanıcı bilgisi bölgesi&quot; yönlendirilebilir."
240
-
241
- #: adminimize_page.php:150
242
- msgid "Footer"
243
- msgstr "Taban"
244
-
245
- #: adminimize_page.php:156
246
- msgid "The Footer-area kann hide, include all links and details."
247
- msgstr "Taban bölgesi, içerdiği bütün link ve detaylar ile gizlenebilir."
248
-
249
- #: adminimize_page.php:160
250
- msgid "WriteScroll"
251
- msgstr "YazmayaGit"
252
-
253
- #: adminimize_page.php:91
254
- #: adminimize_page.php:165
255
- #: adminimize_page.php:175
256
- #: adminimize_page.php:185
257
- #: adminimize_page.php:195
258
- msgid "Activate"
259
- msgstr "Aktifleştir"
260
-
261
- #: adminimize_page.php:166
262
- msgid "With the WriteScroll option active, these pages will automatically scroll to an optimal position for editing, when you visit Write Post or Write Page."
263
- msgstr "YazmayaGit özelliği aktifse, yazı yazmak için bir sayfaya girdiğinizde sayfa otomatik olarak yazmaya uygun bir bölgeye kayacaktır."
264
-
265
- #: adminimize_page.php:170
266
- msgid "Timestamp"
267
- msgstr "Zaman Etiketi"
268
-
269
- #: adminimize_page.php:176
270
- msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
271
- msgstr "Zaman etiketlerini açmak için \"Düzenle\" linkini tıklamanıza gerek kalmaz."
272
-
273
- #: adminimize_page.php:180
274
- msgid "Thickbox FullScreen"
275
- msgstr "Thickbox Tam Ekran"
276
-
277
- #: adminimize_page.php:186
278
- msgid "All Thickbox-function use the full area of the browser. Thickbox is for examble in upload media-files."
279
- msgstr "Ortam dosyaları yüklerken çıkacak olan kutucuğun tam ekran olarak kullanılmasını sağlar."
280
-
281
- #: adminimize_page.php:190
282
- msgid "Advice in Footer"
283
- msgstr "Tabanda Tavsiyeler"
284
-
285
- #: adminimize_page.php:197
286
- msgid "In the Footer kann you display a advice for change the Default-design, (x)HTML is possible."
287
- msgstr "Taban bölümde öntanımlı dizaynı değiştirmek için tavsiyeler gösterebilirsiniz, (x)HTML mümkün."
288
-
289
- #: adminimize_page.php:239
290
- msgid "Dashboard deaktivate, redirect to"
291
- msgstr "Yönetim paneli pasif, yönlendirme yeri"
292
-
293
- #: adminimize_page.php:244
294
- msgid "Manage Posts"
295
- msgstr "Yazıları Yönet"
296
-
297
- #: adminimize_page.php:245
298
- msgid "Manage Pages"
299
- msgstr "Sayfaları Yönet"
300
-
301
- #: adminimize_page.php:246
302
- msgid "Write Post"
303
- msgstr "Yazı Yaz"
304
-
305
- #: adminimize_page.php:247
306
- msgid "Write Page"
307
- msgstr "Sayfa Yaz"
308
-
309
- #: adminimize_page.php:248
310
- msgid "Comments"
311
- msgstr "Yorumlar"
312
-
313
- #: adminimize_page.php:249
314
- msgid "You have deaktivate the Dashboard, please select a page for redirect?"
315
- msgstr "Yönetim panelini pasifleştirdiniz, lütfen yönlendirme için bir sayfa seçin."
316
-
317
- #: adminimize_page.php:355
318
- msgid "Menu Options"
319
- msgstr "Menü Seçenekleri"
320
-
321
- #: adminimize_page.php:419
322
- #: adminimize_page.php:479
323
- msgid "Permalink"
324
- msgstr "Permalink"
325
-
326
- #: adminimize_page.php:423
327
- msgid "Excerpt"
328
- msgstr "Seçilmiş parça"
329
-
330
- #: adminimize_page.php:424
331
- msgid "Trackbacks"
332
- msgstr "Geribildirimler"
333
-
334
- #: adminimize_page.php:425
335
- #: adminimize_page.php:480
336
- msgid "Custom Fields"
337
- msgstr "Özel Bölgeler"
338
-
339
- #: adminimize_page.php:426
340
- #: adminimize_page.php:481
341
- msgid "Comments &amp; Pings"
342
- msgstr "Yorumlar &amp; Pingler"
343
-
344
- #: adminimize_page.php:427
345
- msgid "Password Protect This Post"
346
- msgstr "Bu Yazıyı Şifre İle Koru"
347
-
348
- #: adminimize_page.php:428
349
- msgid "Post Author"
350
- msgstr "Yazar"
351
-
352
- #: adminimize_page.php:429
353
- msgid "Post Revisions"
354
- msgstr "Yazı Sürümü"
355
-
356
- #: adminimize_page.php:430
357
- msgid "Related, Shortcuts"
358
- msgstr "İlgili, Kısayollar"
359
-
360
- #: adminimize_page.php:431
361
- #: adminimize_page.php:489
362
- msgid "Messenges"
363
- msgstr "Sürümler"
364
-
365
- #: adminimize_page.php:432
366
- #: adminimize_page.php:490
367
- msgid "h2: Advanced Options"
368
- msgstr "h2: Geçişmiş Seçenekler"
369
-
370
- #: adminimize_page.php:433
371
- #: adminimize_page.php:491
372
- msgid "Media Buttons (all)"
373
- msgstr "Ortam Tuşları (hepsi)"
374
-
375
- #: adminimize_page.php:437
376
- #: adminimize_page.php:495
377
- msgid "Suggested tags from"
378
- msgstr "Önerilen etiketler"
379
-
380
- #: adminimize_page.php:439
381
- msgid "Text Control"
382
- msgstr "Yazı Kontrolü"
383
-
384
- #: adminimize_page.php:441
385
- #: adminimize_page.php:497
386
- msgid "HTML Special Characters"
387
- msgstr "HTML Özel Karakterleri"
388
-
389
- #: adminimize_page.php:482
390
- msgid "Password Protect This Page"
391
- msgstr "Bu Sayfayı Şifre İle Koru"
392
-
393
- #: adminimize_page.php:483
394
- msgid "Page Parent"
395
- msgstr "Üst Sayfa"
396
-
397
- #: adminimize_page.php:484
398
- msgid "Page Template"
399
- msgstr "Sayfa Teması"
400
-
401
- #: adminimize_page.php:485
402
- msgid "Page Order"
403
- msgstr "Sayfa Sırası"
404
-
405
- #: adminimize_page.php:486
406
- msgid "Page Author"
407
- msgstr "Sayfa Yazarı"
408
-
409
- #: adminimize_page.php:487
410
- msgid "Page Revisions"
411
- msgstr "Sayfa Sürümleri"
412
-
413
- #: adminimize_page.php:488
414
- msgid "Related"
415
- msgstr "İlgili"
416
-
417
- #: adminimize_page.php:607
418
- #: adminimize_page.php:670
419
- #: adminimize_page.php:718
420
- msgid "All items"
421
- msgstr "Bütün Nesneler"
422
-
423
- #: adminimize_page.php:639
424
- msgid "Write options - Post"
425
- msgstr "Yazım Seçenekleri - Yazı"
426
-
427
- #: adminimize_page.php:687
428
- msgid "Write options - Page"
429
- msgstr "Yazım Seçenekleri - Sayfa"
430
-
431
- #: adminimize_page.php:742
432
- #: adminimize_page.php:808
433
- msgid "Set Theme"
434
- msgstr "Tema Seç"
435
-
436
- #: adminimize_page.php:751
437
- msgid "User-ID"
438
- msgstr "Kullanıcı Kimliği"
439
-
440
- #: adminimize_page.php:752
441
- msgid "Username"
442
- msgstr "Kullanıcı Adı"
443
-
444
- #: adminimize_page.php:753
445
- msgid "Display name publicly as"
446
- msgstr "İsmi göster"
447
-
448
- #: adminimize_page.php:754
449
- msgid "Admin Color Scheme"
450
- msgstr "Yönetici Renk Şeması"
451
-
452
- #: adminimize_page.php:755
453
- msgid "User Level"
454
- msgstr "Kullanıcı Seviyesi"
455
-
456
- #: adminimize_page.php:756
457
- msgid "Role"
458
- msgstr "Rol"
459
-
460
- #: adminimize_page.php:821
461
- msgid "Use this option for clean your database from all entries of this plugin. When you deactivate the plugin, the deinstall of the plugin <strong>clean not</strong> all entries in the database."
462
- msgstr "Veritabanınızı bu eklenti ile gelen bütün girdilerden temizler. Kullanılmazsa eklentinin kaldırılması veya etkisizleştirilmesi veritabanınızı <strong>temizlemeyecektir</strong>."
463
-
464
- #: adminimize_page.php:837
465
- msgid "About the plugin"
466
- msgstr "Eklenti Hakkında"
467
-
468
- #: adminimize_page.php:840
469
- msgid "Further information: Visit the <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
470
- msgstr "Detaylı Bilgi: Daha detaylı bilgi ve yeni sürümler için <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">eklenti anasayfası</a>nı inceleyebilirsiniz."
471
-
472
- #: adminimize_page.php:840
473
- msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a>."
474
- msgstr "Teşekkür etmek mi istiyorsunuz? Lütfen<a href=\"http://bueltge.de/wunschliste/\">istek listem</a>e bakınız."
475
-
476
- #: adminimize_page.php:86
477
- msgid "Menu Order"
478
- msgstr "Menü Sırası"
479
-
480
- #: adminimize_page.php:92
481
- msgid "It is possible to set a new menu-order."
482
- msgstr "Yeni bir menü sırası ayarlamak mümkün."
483
-
484
- #: adminimize_page.php:116
485
- msgid "Dashmenu"
486
- msgstr "Yönetim menüsü"
487
-
488
- #: adminimize_page.php:122
489
- msgid "The &quot;Dashboard-area&quot; is on the top left side of the backend. You can hide show."
490
- msgstr "&quot;Yönetim Bölgesi&quot; arkaplan sayfalarının sol üstündedir. Gizleyip gösterebilirsiniz."
491
-
492
- #: adminimize_page.php:275
493
- #: adminimize_page.php:281
494
- msgid "Top Menu Options"
495
- msgstr "Üst Menü Seçenekleri"
496
-
497
- #: adminimize_page.php:282
498
- #: adminimize_page.php:362
499
- #: adminimize_page.php:640
500
- #: adminimize_page.php:688
501
- msgid "Deactivate for Subscriber"
502
- msgstr "Bildirici (Subscriber) için pasifleştir"
503
-
504
- #: adminimize_page.php:283
505
- #: adminimize_page.php:363
506
- #: adminimize_page.php:641
507
- #: adminimize_page.php:689
508
- msgid "Deactivate for Contributor"
509
- msgstr "Katkıcı (Contributor) için pasifleştir"
510
-
511
- #: adminimize_page.php:284
512
- #: adminimize_page.php:364
513
- #: adminimize_page.php:642
514
- #: adminimize_page.php:690
515
- msgid "Deactivate for Author"
516
- msgstr "Yazar için pasifleştir"
517
-
518
- #: adminimize_page.php:285
519
- #: adminimize_page.php:365
520
- #: adminimize_page.php:643
521
- #: adminimize_page.php:691
522
- msgid "Deactivate for Editor"
523
- msgstr "Editör için pasifleştir"
524
-
525
- #: adminimize_page.php:286
526
- #: adminimize_page.php:366
527
- #: adminimize_page.php:644
528
- #: adminimize_page.php:692
529
- msgid "Deactivate for Administrator"
530
- msgstr "Yönetici için pasifleştir"
531
-
532
- #: adminimize_page.php:361
533
- msgid "Menu options - Menu, <span style=\"font-weight: 400;\">Submenu</span>"
534
- msgstr "Menü seçenekleri - Menü, <span style=\"font-weight: 400;\">Altmenü</span>"
535
-
536
- #: adminimize_page.php:71
537
- #: adminimize_page.php:80
538
- msgid "Backend Options"
539
- msgstr "Arkaplan Seçenekleri"
540
-
541
- #: adminimize_page.php:259
542
- #: adminimize_page.php:345
543
- #: adminimize_page.php:623
544
- #: adminimize_page.php:732
545
- msgid "Update Options"
546
- msgstr "Güncelle"
547
-
548
- #: adminimize_page.php:632
549
- msgid "Write Options"
550
- msgstr "Yazma Seçenekleri"
551
-
552
- #: adminimize_page.php:818
553
- msgid "Deinstall Options"
554
- msgstr "Kaldırma Seçenekleri"
555
-
556
- #: adminimize_page.php:825
557
- msgid "Delete Options"
558
- msgstr "Silme Seçenekleri"
559
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/adminimize-xx_XX.pot CHANGED
@@ -59,67 +59,67 @@ msgstr "Backend-Theme wurde zugewiesen!"
59
  msgid "Load user data to themes was successful."
60
  msgstr "Das Laden der User-Daten zum Theme war erfolgreich."
61
 
62
- #: adminimize.php:468
63
  #: inc-options/links_options.php:52
64
- #: inc-options/write_cp_options.php:99
65
- #: inc-options/write_post_options.php:87
66
  #@ default
67
  #@ adminimize
68
  msgid "Categories"
69
  msgstr "Kategorien"
70
 
71
- #: adminimize.php:474
72
- #: adminimize.php:485
73
  #@ default
74
  msgid "+ Add New Category"
75
  msgstr "+ Add New Category"
76
 
77
- #: adminimize.php:476
78
- #: adminimize.php:487
79
  #@ default
80
  msgid "New category name"
81
  msgstr "New category name"
82
 
83
- #: adminimize.php:477
84
- #: adminimize.php:489
85
  #@ default
86
  msgid "Parent category"
87
  msgstr "Parent category"
88
 
89
- #: adminimize.php:478
90
- #: adminimize.php:490
91
  #@ default
92
  msgid "Add"
93
  msgstr "Add"
94
 
95
- #: adminimize.php:487
96
- #: inc-options/write_cp_options.php:100
97
- #: inc-options/write_post_options.php:88
98
  #@ default
99
  #@ adminimize
100
  msgid "Add New Category"
101
  msgstr "Add New Category"
102
 
103
- #: inc-options/write_cp_options.php:97
104
- #: inc-options/write_cp_options.php:135
105
- #: inc-options/write_post_options.php:85
106
- #: inc-options/write_post_options.php:121
107
  #@ adminimize
108
  #@ default
109
  msgid "Tags"
110
  msgstr "Tags"
111
 
112
- #: adminimize.php:572
113
- #: adminimize.php:575
114
  #@ default
115
  msgid "Dashboard"
116
  msgstr "Dashboard"
117
 
118
- #: adminimize.php:636
119
- #: adminimize.php:638
120
- #: adminimize.php:659
121
- #: adminimize.php:661
122
- #: adminimize.php:1034
123
  #: inc-setup/admin-bar.php:57
124
  #: inc-setup/admin-bar.php:81
125
  #: inc-setup/admin-bar.php:250
@@ -132,32 +132,32 @@ msgstr "Log Out"
132
  msgid "Version"
133
  msgstr "Version"
134
 
135
- #: inc-options/write_cp_options.php:129
136
- #: inc-options/write_page_options.php:108
137
- #: inc-options/write_post_options.php:115
138
  #@ default
139
  msgid "Author"
140
  msgstr "Author"
141
 
142
- #: adminimize.php:1067
143
  #@ default
144
  msgid "Settings"
145
  msgstr "Settings"
146
 
147
  #. translators: plugin header field 'Name'
148
  #: adminimize.php:0
149
- #: adminimize.php:1086
150
  #: inc-options/minimenu.php:14
151
  #@ adminimize
152
  msgid "Adminimize"
153
  msgstr "Adminimize"
154
 
155
- #: adminimize.php:1085
156
  #@ adminimize
157
  msgid "Adminimize Options"
158
  msgstr "Adminimize Einstellungen"
159
 
160
- #: adminimize.php:1111
161
  #@ default
162
  msgid "Cheatin&#8217; uh?"
163
  msgstr "Cheatin&#8217; uh?"
@@ -173,7 +173,7 @@ msgstr "Cheatin&#8217; uh?"
173
  #: inc-options/minimenu.php:82
174
  #: inc-options/theme_options.php:14
175
  #: inc-options/wp_nav_menu_options.php:14
176
- #: inc-options/write_cp_options.php:19
177
  #: inc-options/write_page_options.php:14
178
  #: inc-options/write_post_options.php:15
179
  #@ default
@@ -314,7 +314,6 @@ msgid "Write Page"
314
  msgstr "Schreiben Seite"
315
 
316
  #: inc-options/backend_options.php:158
317
- #: inc-options/write_post_options.php:92
318
  #@ adminimize
319
  msgid "Comments"
320
  msgstr "Kommentare"
@@ -330,9 +329,9 @@ msgstr "andere Seite"
330
  #: inc-options/links_options.php:126
331
  #: inc-options/menu_options.php:155
332
  #: inc-options/wp_nav_menu_options.php:147
333
- #: inc-options/write_cp_options.php:239
334
- #: inc-options/write_page_options.php:187
335
- #: inc-options/write_post_options.php:197
336
  #@ adminimize
337
  msgid "Update Options"
338
  msgstr "Einstellungen aktualisieren"
@@ -351,9 +350,9 @@ msgstr "Globale Einstellungen"
351
  #: inc-options/links_options.php:101
352
  #: inc-options/wp_nav_menu_options.php:22
353
  #: inc-options/wp_nav_menu_options.php:122
354
- #: inc-options/write_cp_options.php:204
355
- #: inc-options/write_page_options.php:162
356
- #: inc-options/write_post_options.php:172
357
  #@ adminimize
358
  msgid "Option"
359
  msgstr "Einstellung"
@@ -363,7 +362,7 @@ msgstr "Einstellung"
363
  #: inc-options/links_options.php:26
364
  #: inc-options/menu_options.php:26
365
  #: inc-options/wp_nav_menu_options.php:25
366
- #: inc-options/write_cp_options.php:32
367
  #: inc-options/write_page_options.php:25
368
  #: inc-options/write_post_options.php:26
369
  #@ adminimize
@@ -382,9 +381,9 @@ msgstr "Screen-Meta"
382
 
383
  #: inc-options/global_options.php:50
384
  #: inc-options/wp_nav_menu_options.php:49
385
- #: inc-options/write_cp_options.php:95
386
- #: inc-options/write_page_options.php:77
387
- #: inc-options/write_post_options.php:82
388
  #@ adminimize
389
  #@ default
390
  msgid "Screen Options"
@@ -410,9 +409,9 @@ msgstr "Deine eigenen Einstellungen"
410
  #: inc-options/global_options.php:96
411
  #: inc-options/links_options.php:100
412
  #: inc-options/wp_nav_menu_options.php:121
413
- #: inc-options/write_cp_options.php:202
414
- #: inc-options/write_page_options.php:161
415
- #: inc-options/write_post_options.php:171
416
  #@ adminimize
417
  msgid "ID or class"
418
  msgstr "ID oder Klasse"
@@ -421,9 +420,9 @@ msgstr "ID oder Klasse"
421
  #: inc-options/global_options.php:103
422
  #: inc-options/links_options.php:107
423
  #: inc-options/wp_nav_menu_options.php:128
424
- #: inc-options/write_cp_options.php:211
425
- #: inc-options/write_page_options.php:168
426
- #: inc-options/write_post_options.php:178
427
  #@ adminimize
428
  msgid "It is possible to add your own IDs or classes from elements and tags. You can find IDs and classes with the FireBug Add-on for Firefox. Assign a value and the associate name per line."
429
  msgstr "Es ist möglich, dass du eigene IDs und Klassen eines Elementes oder Tags hinzufügst. Du findest IDs und Klassen sehr einfach mit dem Firebug Add-on für den Firefox. Füge pro Zeile einen Wert und dazugehörigen Namen ein."
@@ -432,9 +431,9 @@ msgstr "Es ist möglich, dass du eigene IDs und Klassen eines Elementes oder Tag
432
  #: inc-options/global_options.php:109
433
  #: inc-options/links_options.php:113
434
  #: inc-options/wp_nav_menu_options.php:134
435
- #: inc-options/write_cp_options.php:221
436
- #: inc-options/write_page_options.php:174
437
- #: inc-options/write_post_options.php:184
438
  #@ adminimize
439
  msgid "Possible nomination for ID or class. Separate multiple nominations through a carriage return."
440
  msgstr "Mögliche Benennung der ID oder Klasse. Trenne Werte durch eine neue Zeile."
@@ -443,9 +442,9 @@ msgstr "Mögliche Benennung der ID oder Klasse. Trenne Werte durch eine neue Zei
443
  #: inc-options/global_options.php:114
444
  #: inc-options/links_options.php:118
445
  #: inc-options/wp_nav_menu_options.php:139
446
- #: inc-options/write_cp_options.php:229
447
- #: inc-options/write_page_options.php:179
448
- #: inc-options/write_post_options.php:189
449
  #@ adminimize
450
  msgid "Possible IDs or classes. Separate multiple values through a carriage return."
451
  msgstr "Mögliche IDs oder Klassen. Trenne Werte durch eine neue Zeile."
@@ -462,154 +461,133 @@ msgid "Menu options - Menu, <span style=\\\"font-weight: 400;\\\">Submenu</span>
462
  msgstr "Menu Einstellungen - Menu, <span style=\"font-weight: 400;\">Submenu</span>"
463
 
464
  #: inc-options/wp_nav_menu_options.php:48
465
- #: inc-options/write_cp_options.php:94
466
- #: inc-options/write_page_options.php:76
467
- #: inc-options/write_post_options.php:81
468
  #@ adminimize
469
  #@ default
470
  msgid "Help"
471
  msgstr "Hilfe"
472
 
473
- #: inc-options/write_cp_options.php:96
474
- #: inc-options/write_page_options.php:79
475
- #: inc-options/write_post_options.php:84
476
  #@ adminimize
477
  msgid "Permalink"
478
  msgstr "Permalink"
479
 
480
- #: inc-options/write_post_options.php:89
481
- #@ adminimize
482
- msgid "Excerpt"
483
- msgstr "Auszug"
484
-
485
- #: inc-options/write_post_options.php:90
486
- #@ adminimize
487
- msgid "Trackbacks"
488
- msgstr "Trackbacks"
489
-
490
- #: inc-options/write_page_options.php:80
491
- #: inc-options/write_post_options.php:91
492
  #@ default
493
  msgid "Custom Fields"
494
  msgstr "Benutzerdefinierte Felder"
495
 
496
- #: inc-options/write_cp_options.php:101
497
- #: inc-options/write_post_options.php:93
498
  #@ adminimize
499
  msgid "Password Protect This Post"
500
  msgstr "Diesen Artikel durch ein Passwort sch&uuml;tzen"
501
 
502
- #: inc-options/write_post_options.php:94
503
- #@ default
504
- msgid "Post Author"
505
- msgstr "Autor"
506
-
507
- #: inc-options/write_post_options.php:95
508
- #@ default
509
- msgid "Post Revisions"
510
- msgstr "Post Revisions"
511
-
512
- #: inc-options/write_cp_options.php:102
513
- #: inc-options/write_post_options.php:96
514
  #@ adminimize
515
  msgid "Related, Shortcuts"
516
  msgstr "Siehe auch, Tastaturk&uuml;rzel"
517
 
518
- #: inc-options/write_cp_options.php:104
519
- #: inc-options/write_page_options.php:90
520
- #: inc-options/write_post_options.php:98
521
  #@ adminimize
522
  msgid "h2: Advanced Options"
523
  msgstr "h2: Erweiterte Einstellungen"
524
 
525
- #: inc-options/write_cp_options.php:105
526
- #: inc-options/write_page_options.php:91
527
- #: inc-options/write_post_options.php:99
528
  #@ adminimize
529
  msgid "Media Buttons (all)"
530
  msgstr "Media Buttons (alle)"
531
 
532
- #: inc-options/write_cp_options.php:106
533
- #: inc-options/write_page_options.php:92
534
- #: inc-options/write_post_options.php:100
535
  #@ adminimize
536
  msgid "Word count"
537
  msgstr "Word count"
538
 
539
- #: inc-options/write_cp_options.php:107
540
- #: inc-options/write_post_options.php:101
541
  #@ adminimize
542
  msgid "Post Slug"
543
  msgstr "Titelform"
544
 
545
  #: inc-options/links_options.php:56
546
- #: inc-options/write_cp_options.php:108
547
- #: inc-options/write_page_options.php:94
548
- #: inc-options/write_post_options.php:102
549
  #@ adminimize
550
  msgid "Publish Actions"
551
  msgstr "Publish Actions"
552
 
553
- #: inc-options/write_cp_options.php:109
554
- #: inc-options/write_page_options.php:95
555
- #: inc-options/write_post_options.php:103
556
  #@ default
557
  #@ adminimize
558
  msgid "Discussion"
559
  msgstr "Kommentare"
560
 
561
- #: inc-options/write_cp_options.php:120
562
- #: inc-options/write_post_options.php:108
563
  #@ adminimize
564
  msgid "Post Thumbnail"
565
  msgstr "Artikelbild"
566
 
567
- #: inc-options/write_page_options.php:81
568
  #@ adminimize
569
  msgid "Comments &amp; Pings"
570
  msgstr "Kommentare &amp; Pings"
571
 
572
- #: inc-options/write_page_options.php:82
573
  #@ adminimize
574
  msgid "Password Protect This Page"
575
  msgstr "Diese Seite mit einem Passwort versehen"
576
 
577
- #: inc-options/write_page_options.php:83
578
  #@ adminimize
579
  msgid "Attributes"
580
  msgstr "Attribute"
581
 
582
- #: inc-options/write_page_options.php:84
583
  #@ adminimize
584
  msgid "Page Template"
585
  msgstr "Seiten Template"
586
 
587
- #: inc-options/write_page_options.php:85
588
  #@ adminimize
589
  msgid "Page Order"
590
  msgstr "Reihenfolge"
591
 
592
- #: inc-options/write_page_options.php:86
593
  #@ default
594
  msgid "Page Author"
595
  msgstr "Seitenautor"
596
 
597
- #: inc-options/write_page_options.php:87
598
  #@ default
599
  msgid "Page Revisions"
600
  msgstr "Page Revisions"
601
 
602
- #: inc-options/write_page_options.php:88
603
  #@ adminimize
604
  msgid "Related"
605
  msgstr "Siehe auch"
606
 
607
- #: inc-options/write_page_options.php:93
608
  #@ adminimize
609
  msgid "Page Slug"
610
  msgstr "Titelform"
611
 
612
- #: inc-options/write_page_options.php:100
613
  #@ adminimize
614
  msgid "Page Image"
615
  msgstr "Artikelbild"
@@ -632,7 +610,7 @@ msgstr "Profile"
632
  msgid "Write options - Post"
633
  msgstr "Schreiben Einstellungen - Beitr&auml;ge"
634
 
635
- #: inc-options/write_post_options.php:171
636
  #@ adminimize
637
  msgid "Your own post options"
638
  msgstr "Deine eigenen Beitrags-Einstellungen"
@@ -644,7 +622,7 @@ msgstr "Deine eigenen Beitrags-Einstellungen"
644
  msgid "Write options - Page"
645
  msgstr "Schreiben Einstellungen - Seiten"
646
 
647
- #: inc-options/write_page_options.php:161
648
  #@ adminimize
649
  msgid "Your own page options"
650
  msgstr "Deine eigenen Seiten-Einstellungen"
@@ -815,9 +793,9 @@ msgstr "MiniMenu"
815
  #: inc-options/minimenu.php:99
816
  #: inc-options/theme_options.php:105
817
  #: inc-options/wp_nav_menu_options.php:149
818
- #: inc-options/write_cp_options.php:244
819
- #: inc-options/write_page_options.php:189
820
- #: inc-options/write_post_options.php:199
821
  #@ adminimize
822
  msgid "scroll to top"
823
  msgstr "Nach oben"
@@ -852,9 +830,9 @@ msgstr "Im Footer kann ein Hinweis auf die aktive Ver&auml;nderung des Standard-
852
  msgid "Dashboard deactivate, redirect to"
853
  msgstr "Dashboard inaktiv, Weiterleitung nach"
854
 
855
- #: inc-options/write_cp_options.php:110
856
- #: inc-options/write_page_options.php:96
857
- #: inc-options/write_post_options.php:104
858
  #@ default
859
  #@ adminimize
860
  msgid "HTML Editor Button"
@@ -899,8 +877,8 @@ msgstr "Header"
899
  msgid "The Header-area can hide, include all links and details."
900
  msgstr "Der header-Bereich kann ausgeblendet werden, inkl. aller Links und Details."
901
 
902
- #: inc-options/write_page_options.php:78
903
- #: inc-options/write_post_options.php:83
904
  #@ adminimize
905
  msgid "Title"
906
  msgstr "Title"
@@ -952,111 +930,113 @@ msgstr "Benutzerdef. Links"
952
  msgid "Add menu"
953
  msgstr "Menu hinzufügen"
954
 
955
- #: inc-options/write_cp_options.php:98
956
- #: inc-options/write_post_options.php:86
957
  #@ adminimize
958
  msgid "Format"
959
  msgstr "Format"
960
 
961
- #: inc-options/write_cp_options.php:103
962
- #: inc-options/write_page_options.php:89
963
- #: inc-options/write_post_options.php:97
964
  #@ adminimize
965
  msgid "Messages"
966
  msgstr "Mitteilungen"
967
 
968
- #: inc-options/write_cp_options.php:126
969
- #: inc-options/write_page_options.php:104
970
- #: inc-options/write_post_options.php:112
971
  #@ adminimize
972
  msgid "Quick Edit Link"
973
  msgstr "QuickEdit Link"
974
 
975
- #: inc-options/write_cp_options.php:127
976
  #: inc-options/write_cp_options.php:131
977
- #: inc-options/write_cp_options.php:134
978
- #: inc-options/write_cp_options.php:137
979
- #: inc-options/write_page_options.php:105
980
- #: inc-options/write_page_options.php:110
981
- #: inc-options/write_page_options.php:113
982
- #: inc-options/write_post_options.php:113
983
- #: inc-options/write_post_options.php:117
984
- #: inc-options/write_post_options.php:120
985
  #: inc-options/write_post_options.php:123
 
 
 
986
  #@ adminimize
987
  msgid "QE"
988
  msgstr "QE"
989
 
990
- #: inc-options/write_cp_options.php:127
991
- #: inc-options/write_page_options.php:105
992
- #: inc-options/write_post_options.php:113
993
  #@ adminimize
994
  msgid "Inline Edit Left"
995
  msgstr "Inline Edit Links"
996
 
997
- #: inc-options/write_cp_options.php:128
998
- #: inc-options/write_page_options.php:106
999
- #: inc-options/write_post_options.php:114
1000
  #@ adminimize
1001
  msgid "All Labels"
1002
  msgstr "Alle labels"
1003
 
1004
- #: inc-options/write_page_options.php:107
 
 
 
1005
  #@ adminimize
1006
  msgid "Date"
1007
  msgstr "Datum"
1008
 
1009
- #: inc-options/write_cp_options.php:130
1010
- #: inc-options/write_page_options.php:109
1011
- #: inc-options/write_post_options.php:116
1012
  #@ adminimize
1013
  msgid "Password and Private"
1014
  msgstr "Passwort und Privat-Flag"
1015
 
1016
- #: inc-options/write_cp_options.php:134
1017
- #: inc-options/write_page_options.php:110
1018
- #: inc-options/write_post_options.php:120
1019
  #@ adminimize
1020
  msgid "Inline Edit Right"
1021
  msgstr "Inline Edit rechts"
1022
 
1023
- #: inc-options/write_page_options.php:111
1024
  #@ adminimize
1025
  msgid "Parent, Order, Template"
1026
  msgstr "Eltern, Reihenfolge, Template"
1027
 
1028
- #: inc-options/write_page_options.php:112
1029
  #@ adminimize
1030
  msgid "Status"
1031
  msgstr "Status"
1032
 
1033
- #: inc-options/write_cp_options.php:137
1034
- #: inc-options/write_page_options.php:113
1035
- #: inc-options/write_post_options.php:123
1036
  #@ adminimize
1037
  msgid "Cancel/Save Button"
1038
  msgstr "Abbrechen/Aktualisieren Button"
1039
 
1040
- #: inc-options/write_cp_options.php:131
1041
- #: inc-options/write_post_options.php:117
1042
  #@ adminimize
1043
  msgid "Inline Edit Center"
1044
  msgstr "Inline Edit mitte"
1045
 
1046
- #: inc-options/write_cp_options.php:132
1047
- #: inc-options/write_post_options.php:118
1048
  #@ adminimize
1049
  msgid "Categories Title"
1050
  msgstr "Kategorien Title"
1051
 
1052
- #: inc-options/write_cp_options.php:133
1053
- #: inc-options/write_post_options.php:119
1054
  #@ adminimize
1055
  msgid "Categories List"
1056
  msgstr "Kategorien Liste"
1057
 
1058
- #: inc-options/write_cp_options.php:136
1059
- #: inc-options/write_post_options.php:122
1060
  #@ adminimize
1061
  msgid "Status, Sticky"
1062
  msgstr "Status, Sticky"
@@ -1067,8 +1047,8 @@ msgid "Your own Link options"
1067
  msgstr "Deine eigenen Link Einstellungen"
1068
 
1069
  #: inc-options/minimenu.php:52
1070
- #: inc-options/write_cp_options.php:21
1071
- #: inc-options/write_cp_options.php:29
1072
  #@ adminimize
1073
  msgid "Write options"
1074
  msgstr "Einstellungen Schreiben"
@@ -1078,7 +1058,7 @@ msgstr "Einstellungen Schreiben"
1078
  msgid "Your own Nav Menu options"
1079
  msgstr "Deine eigenen Nav Menu Einstellungen"
1080
 
1081
- #: inc-options/write_cp_options.php:201
1082
  #, php-format
1083
  #@ adminimize
1084
  msgid "Your own %s options"
@@ -1100,17 +1080,6 @@ msgstr "Um die Installation für Dashboard Widgets abzuschließen, musst du das
1100
  msgid "Further information: Visit the <a href=\"http://wordpress.org/extend/plugins/adminimize/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
1101
  msgstr "Weitere Informationen: Besuchen Sie die <a href=\"http://wordpress.org/extend/plugins/adminimize/\">Plugin Website</a> für weitere Informationen oder um die neueste Version des Plugins erhalten."
1102
 
1103
- #. translators: plugin header field 'Version'
1104
- #: adminimize.php:0
1105
- #@ adminimize
1106
- msgid "1.7.26"
1107
- msgstr ""
1108
-
1109
- #: inc-options/settings_notice.php:17
1110
- #@ adminimize
1111
- msgid "Attention: The settings page ignores these Menu settings and views the menu with all entries!"
1112
- msgstr "Achtung: Die Seite der Einstellungen ignoriert Menu-Einstellungen und stellt das Menu mit allen Einträgen dar!"
1113
-
1114
  #: inc-setup/admin-bar.php:239
1115
  #@ default
1116
  msgid "Network Admin"
@@ -1121,3 +1090,14 @@ msgstr ""
1121
  msgid "Site Admin"
1122
  msgstr ""
1123
 
 
 
 
 
 
 
 
 
 
 
 
59
  msgid "Load user data to themes was successful."
60
  msgstr "Das Laden der User-Daten zum Theme war erfolgreich."
61
 
62
+ #: adminimize.php:503
63
  #: inc-options/links_options.php:52
64
+ #: inc-options/write_cp_options.php:103
65
+ #: inc-options/write_post_options.php:97
66
  #@ default
67
  #@ adminimize
68
  msgid "Categories"
69
  msgstr "Kategorien"
70
 
71
+ #: adminimize.php:509
72
+ #: adminimize.php:520
73
  #@ default
74
  msgid "+ Add New Category"
75
  msgstr "+ Add New Category"
76
 
77
+ #: adminimize.php:511
78
+ #: adminimize.php:522
79
  #@ default
80
  msgid "New category name"
81
  msgstr "New category name"
82
 
83
+ #: adminimize.php:512
84
+ #: adminimize.php:524
85
  #@ default
86
  msgid "Parent category"
87
  msgstr "Parent category"
88
 
89
+ #: adminimize.php:513
90
+ #: adminimize.php:525
91
  #@ default
92
  msgid "Add"
93
  msgstr "Add"
94
 
95
+ #: adminimize.php:522
96
+ #: inc-options/write_cp_options.php:104
97
+ #: inc-options/write_post_options.php:98
98
  #@ default
99
  #@ adminimize
100
  msgid "Add New Category"
101
  msgstr "Add New Category"
102
 
103
+ #: inc-options/write_cp_options.php:101
104
+ #: inc-options/write_cp_options.php:139
105
+ #: inc-options/write_post_options.php:96
106
+ #: inc-options/write_post_options.php:131
107
  #@ adminimize
108
  #@ default
109
  msgid "Tags"
110
  msgstr "Tags"
111
 
112
+ #: adminimize.php:607
113
+ #: adminimize.php:610
114
  #@ default
115
  msgid "Dashboard"
116
  msgstr "Dashboard"
117
 
118
+ #: adminimize.php:671
119
+ #: adminimize.php:673
120
+ #: adminimize.php:694
121
+ #: adminimize.php:696
122
+ #: adminimize.php:1069
123
  #: inc-setup/admin-bar.php:57
124
  #: inc-setup/admin-bar.php:81
125
  #: inc-setup/admin-bar.php:250
132
  msgid "Version"
133
  msgstr "Version"
134
 
135
+ #: inc-options/write_cp_options.php:133
136
+ #: inc-options/write_page_options.php:132
137
+ #: inc-options/write_post_options.php:125
138
  #@ default
139
  msgid "Author"
140
  msgstr "Author"
141
 
142
+ #: adminimize.php:1099
143
  #@ default
144
  msgid "Settings"
145
  msgstr "Settings"
146
 
147
  #. translators: plugin header field 'Name'
148
  #: adminimize.php:0
149
+ #: adminimize.php:1118
150
  #: inc-options/minimenu.php:14
151
  #@ adminimize
152
  msgid "Adminimize"
153
  msgstr "Adminimize"
154
 
155
+ #: adminimize.php:1117
156
  #@ adminimize
157
  msgid "Adminimize Options"
158
  msgstr "Adminimize Einstellungen"
159
 
160
+ #: adminimize.php:1143
161
  #@ default
162
  msgid "Cheatin&#8217; uh?"
163
  msgstr "Cheatin&#8217; uh?"
173
  #: inc-options/minimenu.php:82
174
  #: inc-options/theme_options.php:14
175
  #: inc-options/wp_nav_menu_options.php:14
176
+ #: inc-options/write_cp_options.php:20
177
  #: inc-options/write_page_options.php:14
178
  #: inc-options/write_post_options.php:15
179
  #@ default
314
  msgstr "Schreiben Seite"
315
 
316
  #: inc-options/backend_options.php:158
 
317
  #@ adminimize
318
  msgid "Comments"
319
  msgstr "Kommentare"
329
  #: inc-options/links_options.php:126
330
  #: inc-options/menu_options.php:155
331
  #: inc-options/wp_nav_menu_options.php:147
332
+ #: inc-options/write_cp_options.php:243
333
+ #: inc-options/write_page_options.php:211
334
+ #: inc-options/write_post_options.php:207
335
  #@ adminimize
336
  msgid "Update Options"
337
  msgstr "Einstellungen aktualisieren"
350
  #: inc-options/links_options.php:101
351
  #: inc-options/wp_nav_menu_options.php:22
352
  #: inc-options/wp_nav_menu_options.php:122
353
+ #: inc-options/write_cp_options.php:208
354
+ #: inc-options/write_page_options.php:186
355
+ #: inc-options/write_post_options.php:182
356
  #@ adminimize
357
  msgid "Option"
358
  msgstr "Einstellung"
362
  #: inc-options/links_options.php:26
363
  #: inc-options/menu_options.php:26
364
  #: inc-options/wp_nav_menu_options.php:25
365
+ #: inc-options/write_cp_options.php:33
366
  #: inc-options/write_page_options.php:25
367
  #: inc-options/write_post_options.php:26
368
  #@ adminimize
381
 
382
  #: inc-options/global_options.php:50
383
  #: inc-options/wp_nav_menu_options.php:49
384
+ #: inc-options/write_cp_options.php:99
385
+ #: inc-options/write_page_options.php:95
386
+ #: inc-options/write_post_options.php:93
387
  #@ adminimize
388
  #@ default
389
  msgid "Screen Options"
409
  #: inc-options/global_options.php:96
410
  #: inc-options/links_options.php:100
411
  #: inc-options/wp_nav_menu_options.php:121
412
+ #: inc-options/write_cp_options.php:206
413
+ #: inc-options/write_page_options.php:185
414
+ #: inc-options/write_post_options.php:181
415
  #@ adminimize
416
  msgid "ID or class"
417
  msgstr "ID oder Klasse"
420
  #: inc-options/global_options.php:103
421
  #: inc-options/links_options.php:107
422
  #: inc-options/wp_nav_menu_options.php:128
423
+ #: inc-options/write_cp_options.php:215
424
+ #: inc-options/write_page_options.php:192
425
+ #: inc-options/write_post_options.php:188
426
  #@ adminimize
427
  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."
428
  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."
431
  #: inc-options/global_options.php:109
432
  #: inc-options/links_options.php:113
433
  #: inc-options/wp_nav_menu_options.php:134
434
+ #: inc-options/write_cp_options.php:225
435
+ #: inc-options/write_page_options.php:198
436
+ #: inc-options/write_post_options.php:194
437
  #@ adminimize
438
  msgid "Possible nomination for ID or class. Separate multiple nominations through a carriage return."
439
  msgstr "Mögliche Benennung der ID oder Klasse. Trenne Werte durch eine neue Zeile."
442
  #: inc-options/global_options.php:114
443
  #: inc-options/links_options.php:118
444
  #: inc-options/wp_nav_menu_options.php:139
445
+ #: inc-options/write_cp_options.php:233
446
+ #: inc-options/write_page_options.php:203
447
+ #: inc-options/write_post_options.php:199
448
  #@ adminimize
449
  msgid "Possible IDs or classes. Separate multiple values through a carriage return."
450
  msgstr "Mögliche IDs oder Klassen. Trenne Werte durch eine neue Zeile."
461
  msgstr "Menu Einstellungen - Menu, <span style=\"font-weight: 400;\">Submenu</span>"
462
 
463
  #: inc-options/wp_nav_menu_options.php:48
464
+ #: inc-options/write_cp_options.php:98
465
+ #: inc-options/write_page_options.php:94
466
+ #: inc-options/write_post_options.php:92
467
  #@ adminimize
468
  #@ default
469
  msgid "Help"
470
  msgstr "Hilfe"
471
 
472
+ #: inc-options/write_cp_options.php:100
473
+ #: inc-options/write_page_options.php:97
474
+ #: inc-options/write_post_options.php:95
475
  #@ adminimize
476
  msgid "Permalink"
477
  msgstr "Permalink"
478
 
479
+ #: inc-options/write_page_options.php:98
 
 
 
 
 
 
 
 
 
 
 
480
  #@ default
481
  msgid "Custom Fields"
482
  msgstr "Benutzerdefinierte Felder"
483
 
484
+ #: inc-options/write_cp_options.php:105
485
+ #: inc-options/write_post_options.php:100
486
  #@ adminimize
487
  msgid "Password Protect This Post"
488
  msgstr "Diesen Artikel durch ein Passwort sch&uuml;tzen"
489
 
490
+ #: inc-options/write_cp_options.php:106
491
+ #: inc-options/write_post_options.php:101
 
 
 
 
 
 
 
 
 
 
492
  #@ adminimize
493
  msgid "Related, Shortcuts"
494
  msgstr "Siehe auch, Tastaturk&uuml;rzel"
495
 
496
+ #: inc-options/write_cp_options.php:108
497
+ #: inc-options/write_page_options.php:109
498
+ #: inc-options/write_post_options.php:103
499
  #@ adminimize
500
  msgid "h2: Advanced Options"
501
  msgstr "h2: Erweiterte Einstellungen"
502
 
503
+ #: inc-options/write_cp_options.php:109
504
+ #: inc-options/write_page_options.php:110
505
+ #: inc-options/write_post_options.php:104
506
  #@ adminimize
507
  msgid "Media Buttons (all)"
508
  msgstr "Media Buttons (alle)"
509
 
510
+ #: inc-options/write_cp_options.php:110
511
+ #: inc-options/write_page_options.php:111
512
+ #: inc-options/write_post_options.php:105
513
  #@ adminimize
514
  msgid "Word count"
515
  msgstr "Word count"
516
 
517
+ #: inc-options/write_cp_options.php:111
518
+ #: inc-options/write_post_options.php:106
519
  #@ adminimize
520
  msgid "Post Slug"
521
  msgstr "Titelform"
522
 
523
  #: inc-options/links_options.php:56
524
+ #: inc-options/write_cp_options.php:112
525
+ #: inc-options/write_page_options.php:113
526
+ #: inc-options/write_post_options.php:107
527
  #@ adminimize
528
  msgid "Publish Actions"
529
  msgstr "Publish Actions"
530
 
531
+ #: inc-options/write_cp_options.php:113
532
+ #: inc-options/write_page_options.php:114
533
+ #: inc-options/write_post_options.php:108
534
  #@ default
535
  #@ adminimize
536
  msgid "Discussion"
537
  msgstr "Kommentare"
538
 
539
+ #: inc-options/write_cp_options.php:124
540
+ #: inc-options/write_post_options.php:118
541
  #@ adminimize
542
  msgid "Post Thumbnail"
543
  msgstr "Artikelbild"
544
 
545
+ #: inc-options/write_page_options.php:99
546
  #@ adminimize
547
  msgid "Comments &amp; Pings"
548
  msgstr "Kommentare &amp; Pings"
549
 
550
+ #: inc-options/write_page_options.php:101
551
  #@ adminimize
552
  msgid "Password Protect This Page"
553
  msgstr "Diese Seite mit einem Passwort versehen"
554
 
555
+ #: inc-options/write_page_options.php:102
556
  #@ adminimize
557
  msgid "Attributes"
558
  msgstr "Attribute"
559
 
560
+ #: inc-options/write_page_options.php:103
561
  #@ adminimize
562
  msgid "Page Template"
563
  msgstr "Seiten Template"
564
 
565
+ #: inc-options/write_page_options.php:104
566
  #@ adminimize
567
  msgid "Page Order"
568
  msgstr "Reihenfolge"
569
 
570
+ #: inc-options/write_page_options.php:105
571
  #@ default
572
  msgid "Page Author"
573
  msgstr "Seitenautor"
574
 
575
+ #: inc-options/write_page_options.php:106
576
  #@ default
577
  msgid "Page Revisions"
578
  msgstr "Page Revisions"
579
 
580
+ #: inc-options/write_page_options.php:107
581
  #@ adminimize
582
  msgid "Related"
583
  msgstr "Siehe auch"
584
 
585
+ #: inc-options/write_page_options.php:112
586
  #@ adminimize
587
  msgid "Page Slug"
588
  msgstr "Titelform"
589
 
590
+ #: inc-options/write_page_options.php:124
591
  #@ adminimize
592
  msgid "Page Image"
593
  msgstr "Artikelbild"
610
  msgid "Write options - Post"
611
  msgstr "Schreiben Einstellungen - Beitr&auml;ge"
612
 
613
+ #: inc-options/write_post_options.php:181
614
  #@ adminimize
615
  msgid "Your own post options"
616
  msgstr "Deine eigenen Beitrags-Einstellungen"
622
  msgid "Write options - Page"
623
  msgstr "Schreiben Einstellungen - Seiten"
624
 
625
+ #: inc-options/write_page_options.php:185
626
  #@ adminimize
627
  msgid "Your own page options"
628
  msgstr "Deine eigenen Seiten-Einstellungen"
793
  #: inc-options/minimenu.php:99
794
  #: inc-options/theme_options.php:105
795
  #: inc-options/wp_nav_menu_options.php:149
796
+ #: inc-options/write_cp_options.php:248
797
+ #: inc-options/write_page_options.php:213
798
+ #: inc-options/write_post_options.php:209
799
  #@ adminimize
800
  msgid "scroll to top"
801
  msgstr "Nach oben"
830
  msgid "Dashboard deactivate, redirect to"
831
  msgstr "Dashboard inaktiv, Weiterleitung nach"
832
 
833
+ #: inc-options/write_cp_options.php:114
834
+ #: inc-options/write_page_options.php:115
835
+ #: inc-options/write_post_options.php:109
836
  #@ default
837
  #@ adminimize
838
  msgid "HTML Editor Button"
877
  msgid "The Header-area can hide, include all links and details."
878
  msgstr "Der header-Bereich kann ausgeblendet werden, inkl. aller Links und Details."
879
 
880
+ #: inc-options/write_page_options.php:96
881
+ #: inc-options/write_post_options.php:94
882
  #@ adminimize
883
  msgid "Title"
884
  msgstr "Title"
930
  msgid "Add menu"
931
  msgstr "Menu hinzufügen"
932
 
933
+ #: inc-options/write_cp_options.php:102
 
934
  #@ adminimize
935
  msgid "Format"
936
  msgstr "Format"
937
 
938
+ #: inc-options/write_cp_options.php:107
939
+ #: inc-options/write_page_options.php:108
940
+ #: inc-options/write_post_options.php:102
941
  #@ adminimize
942
  msgid "Messages"
943
  msgstr "Mitteilungen"
944
 
945
+ #: inc-options/write_cp_options.php:130
946
+ #: inc-options/write_page_options.php:128
947
+ #: inc-options/write_post_options.php:122
948
  #@ adminimize
949
  msgid "Quick Edit Link"
950
  msgstr "QuickEdit Link"
951
 
 
952
  #: inc-options/write_cp_options.php:131
953
+ #: inc-options/write_cp_options.php:135
954
+ #: inc-options/write_cp_options.php:138
955
+ #: inc-options/write_cp_options.php:141
956
+ #: inc-options/write_page_options.php:129
957
+ #: inc-options/write_page_options.php:134
958
+ #: inc-options/write_page_options.php:137
 
 
959
  #: inc-options/write_post_options.php:123
960
+ #: inc-options/write_post_options.php:127
961
+ #: inc-options/write_post_options.php:130
962
+ #: inc-options/write_post_options.php:133
963
  #@ adminimize
964
  msgid "QE"
965
  msgstr "QE"
966
 
967
+ #: inc-options/write_cp_options.php:131
968
+ #: inc-options/write_page_options.php:129
969
+ #: inc-options/write_post_options.php:123
970
  #@ adminimize
971
  msgid "Inline Edit Left"
972
  msgstr "Inline Edit Links"
973
 
974
+ #: inc-options/write_cp_options.php:132
975
+ #: inc-options/write_page_options.php:130
976
+ #: inc-options/write_post_options.php:124
977
  #@ adminimize
978
  msgid "All Labels"
979
  msgstr "Alle labels"
980
 
981
+ #: inc-options/write_page_options.php:100
982
+ #: inc-options/write_page_options.php:131
983
+ #: inc-options/write_post_options.php:99
984
+ #@ default
985
  #@ adminimize
986
  msgid "Date"
987
  msgstr "Datum"
988
 
989
+ #: inc-options/write_cp_options.php:134
990
+ #: inc-options/write_page_options.php:133
991
+ #: inc-options/write_post_options.php:126
992
  #@ adminimize
993
  msgid "Password and Private"
994
  msgstr "Passwort und Privat-Flag"
995
 
996
+ #: inc-options/write_cp_options.php:138
997
+ #: inc-options/write_page_options.php:134
998
+ #: inc-options/write_post_options.php:130
999
  #@ adminimize
1000
  msgid "Inline Edit Right"
1001
  msgstr "Inline Edit rechts"
1002
 
1003
+ #: inc-options/write_page_options.php:135
1004
  #@ adminimize
1005
  msgid "Parent, Order, Template"
1006
  msgstr "Eltern, Reihenfolge, Template"
1007
 
1008
+ #: inc-options/write_page_options.php:136
1009
  #@ adminimize
1010
  msgid "Status"
1011
  msgstr "Status"
1012
 
1013
+ #: inc-options/write_cp_options.php:141
1014
+ #: inc-options/write_page_options.php:137
1015
+ #: inc-options/write_post_options.php:133
1016
  #@ adminimize
1017
  msgid "Cancel/Save Button"
1018
  msgstr "Abbrechen/Aktualisieren Button"
1019
 
1020
+ #: inc-options/write_cp_options.php:135
1021
+ #: inc-options/write_post_options.php:127
1022
  #@ adminimize
1023
  msgid "Inline Edit Center"
1024
  msgstr "Inline Edit mitte"
1025
 
1026
+ #: inc-options/write_cp_options.php:136
1027
+ #: inc-options/write_post_options.php:128
1028
  #@ adminimize
1029
  msgid "Categories Title"
1030
  msgstr "Kategorien Title"
1031
 
1032
+ #: inc-options/write_cp_options.php:137
1033
+ #: inc-options/write_post_options.php:129
1034
  #@ adminimize
1035
  msgid "Categories List"
1036
  msgstr "Kategorien Liste"
1037
 
1038
+ #: inc-options/write_cp_options.php:140
1039
+ #: inc-options/write_post_options.php:132
1040
  #@ adminimize
1041
  msgid "Status, Sticky"
1042
  msgstr "Status, Sticky"
1047
  msgstr "Deine eigenen Link Einstellungen"
1048
 
1049
  #: inc-options/minimenu.php:52
1050
+ #: inc-options/write_cp_options.php:22
1051
+ #: inc-options/write_cp_options.php:30
1052
  #@ adminimize
1053
  msgid "Write options"
1054
  msgstr "Einstellungen Schreiben"
1058
  msgid "Your own Nav Menu options"
1059
  msgstr "Deine eigenen Nav Menu Einstellungen"
1060
 
1061
+ #: inc-options/write_cp_options.php:205
1062
  #, php-format
1063
  #@ adminimize
1064
  msgid "Your own %s options"
1080
  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."
1081
  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."
1082
 
 
 
 
 
 
 
 
 
 
 
 
1083
  #: inc-setup/admin-bar.php:239
1084
  #@ default
1085
  msgid "Network Admin"
1090
  msgid "Site Admin"
1091
  msgstr ""
1092
 
1093
+ #. translators: plugin header field 'Version'
1094
+ #: adminimize.php:0
1095
+ #@ adminimize
1096
+ msgid "1.7.27"
1097
+ msgstr ""
1098
+
1099
+ #: inc-options/settings_notice.php:17
1100
+ #@ adminimize
1101
+ msgid "Please note: The Adminimize settings page ignores the Menu Options below and displays the menu with all entries.<br /><span style=\"font-weight: 300;\">To view your changes to the menu you need to navigate away from the Adminimize settings page.</span>"
1102
+ msgstr "Beachte: Die Einstellungen des Plugins ignorieren Menu Einstellungen um alle Einträge darzustellen.<br /><span style=\\\"font-weight: 300;\\\">Um die Einstellungen an deiner Rolle zu prüfen, musst du eine andere Seite im Backend aufrufen.</span>"
1103
+
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.4-alpha
7
- Stable tag: 1.7.26
8
 
9
  Adminimize is a WordPress plugin that lets you hide 'unnecessary' items from the WordPress backend and many many more ...
10
 
@@ -85,16 +85,15 @@ See on [the official website](http://bueltge.de/wordpress-admin-theme-adminimize
85
 
86
  == Screenshots ==
87
  1. Settings in WordPress 3.2-beta with two Custom Post Types
88
- 1. configure-area for user/admin; options for metaboxes, areas in write-area and menu in WordPress 2.7/2.8
89
- 1. configure-area for user in WordPress 2.7/2.8
90
- 1. Small tweak for design higher WP 2.7, save 50px over the menu
91
- 1. minimize header after activate in WordPress 2.5
92
- 1. configure-area for user in WordPress 2.5
93
- 1. Adminimize Theme how in WordPress 2.3
94
 
95
  == Changelog ==
96
  = v1.7.27 =
97
- * Fix, if you dnt use redirect for php notice
 
 
 
 
 
98
  * Add romanian language
99
 
100
  = v1.7.26 =
@@ -380,7 +379,6 @@ The plugin comes with various translations, please refer to the [WordPress Codex
380
  * Thanks to [ray.s](http://letsbefamous.com/) for irish translation.
381
  * Thanks for bulgarian language files to [Web Geek](http://webhostinggeeks.com/)
382
  * Thanks for romanian language to [Alexander Ovsov - Web Geek](http://webhostinggeeks.com/)
383
- * Lithuanian translation files by [Vincent G](http://www.host1plus.com)
384
 
385
 
386
  == Frequently Asked Questions ==
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.4-Beta4
7
+ Stable tag: 1.7.27
8
 
9
  Adminimize is a WordPress plugin that lets you hide 'unnecessary' items from the WordPress backend and many many more ...
10
 
85
 
86
  == Screenshots ==
87
  1. Settings in WordPress 3.2-beta with two Custom Post Types
 
 
 
 
 
 
88
 
89
  == Changelog ==
90
  = v1.7.27 =
91
+ * Fix for hide Admin Bar in WP 3.4
92
+ * Fix for remove sections on custom post types in edit screen table
93
+ * Enhancements for reduce sections on edit post and page
94
+ * Enhancement for User Info to use also in Admin Bar in front end
95
+ * Fix for different pages in admin, see [forum thread](http://wordpress.org/support/topic/plugin-adminimize-hide-page-and-subpages-editphp)
96
+ * Fix, if you don't use redirect for php notice
97
  * Add romanian language
98
 
99
  = v1.7.26 =
379
  * Thanks to [ray.s](http://letsbefamous.com/) for irish translation.
380
  * Thanks for bulgarian language files to [Web Geek](http://webhostinggeeks.com/)
381
  * Thanks for romanian language to [Alexander Ovsov - Web Geek](http://webhostinggeeks.com/)
 
382
 
383
 
384
  == Frequently Asked Questions ==
screenshot-1.png CHANGED
Binary file