Adminimize - Version exports

Version Description

Download this release

Release Info

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

Code changes from version 1.6 to exports

adminimize.php DELETED
@@ -1,1377 +0,0 @@
1
- <?php
2
-
3
- /*
4
- Plugin Name: Adminimize
5
- Plugin URI: http://bueltge.de/wordpress-admin-theme-adminimize/674/
6
- Description: Visually compresses the administratrive header so that more admin page content can be initially seen. Also moves 'Dashboard' onto the main administrative menu because having it sit in the tip-top black bar was ticking me off and many other changes in the edit-area. The plugin that lets you hide 'unnecessary' items from the WordPress administration menu, with or without admins. You can also hide post meta controls on the edit-area to simplify the interface.
7
- Author: Frank B&uuml;ltge
8
- Author URI: http://bueltge.de/
9
- Version: 1.6
10
- Last Update: 07.12.2008 12:15:06
11
- */
12
-
13
- /**
14
- * The stylesheet and the initial idea is from Eric A. Meyer, http://meyerweb.com/
15
- * and i have written a plugin with many options on the basis
16
- * of differently user-right and a user-friendly range in admin-area.
17
- *
18
- * The javascript for de/activate checkboxes ist by Oliver Schl�be, http://www.schloebe.de
19
- * - many thanks
20
- */
21
-
22
-
23
- // Pre-2.6 compatibility
24
- if ( !defined( 'WP_CONTENT_URL' ) )
25
- define( 'WP_CONTENT_URL', get_option( 'siteurl' ) . '/wp-content' );
26
- if ( !defined( 'WP_CONTENT_DIR' ) )
27
- define( 'WP_CONTENT_DIR', ABSPATH . 'wp-content' );
28
- if ( !defined( 'WP_PLUGIN_URL' ) )
29
- define( 'WP_PLUGIN_URL', WP_CONTENT_URL. '/plugins' );
30
- if ( !defined( 'WP_PLUGIN_DIR' ) )
31
- define( 'WP_PLUGIN_DIR', WP_CONTENT_DIR . '/plugins' );
32
-
33
- function _mw_adminimize_textdomain() {
34
-
35
- if (function_exists('load_plugin_textdomain')) {
36
- if ( !defined('WP_PLUGIN_DIR') ) {
37
- load_plugin_textdomain('adminimize', str_replace( ABSPATH, '', dirname(__FILE__) ) . '/languages');
38
- } else {
39
- load_plugin_textdomain('adminimize', false, dirname(plugin_basename(__FILE__)) . '/languages');
40
- }
41
- }
42
- }
43
-
44
-
45
- function recursive_in_array($needle, $haystack) {
46
- if ($haystack != '') {
47
- foreach ($haystack as $stalk) {
48
- if ( $needle == $stalk || ( is_array($stalk) && recursive_in_array($needle, $stalk) ) ) {
49
- return true;
50
- }
51
- }
52
- return false;
53
- }
54
- }
55
-
56
-
57
- /**
58
- * some basics for message
59
- */
60
- class _mw_adminimize_message_class {
61
- function _mw_adminimize_message_class() {
62
- $this->localizionName = 'adminimize';
63
- $this->errors = new WP_Error();
64
- $this->initialize_errors();
65
- }
66
-
67
- /**
68
- get_error - Returns an error message based on the passed code
69
- Parameters - $code (the error code as a string)
70
- Returns an error message
71
- */
72
- function get_error($code = '') {
73
- $errorMessage = $this->errors->get_error_message($code);
74
- if ($errorMessage == null) {
75
- return __("Unknown error.", $this->localizionName);
76
- }
77
- return $errorMessage;
78
- }
79
-
80
- // Initializes all the error messages
81
- function initialize_errors() {
82
- $this->errors->add('_mw_adminimize_update', __('The updates was saved.', $this->localizionName));
83
- $this->errors->add('_mw_adminimize_access_denied', __('You have not enough rights for edit entries in the database.', $this->localizionName));
84
- $this->errors->add('_mw_adminimize_deinstall', __('All entries in the database was delleted.', $this->localizionName));
85
- $this->errors->add('_mw_adminimize_deinstall_yes', __('Set the checkbox on deinstall-button.', $this->localizionName));
86
- $this->errors->add('_mw_adminimize_get_option', __('Can\'t load menu and submenu.', $this->localizionName));
87
- $this->errors->add('_mw_adminimize_set_theme', __('Backend-Theme was activated!', $this->localizionName));
88
- }
89
- }
90
-
91
-
92
- /**
93
- * check user-option and add new style
94
- * @uses $pagenow
95
- */
96
- function _mw_adminimize_init() {
97
- global $pagenow, $menu, $submenu, $adminimizeoptions, $top_menu, $wp_version;
98
-
99
- $adminimizeoptions = get_option('mw_adminimize');
100
-
101
- $disabled_metaboxes_post_subscriber = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_subscriber_items');
102
- $disabled_metaboxes_page_subscriber = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_subscriber_items');
103
- $disabled_metaboxes_post_contributor = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_contributor_items');
104
- $disabled_metaboxes_page_contributor = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_contributor_items');
105
- $disabled_metaboxes_post_author = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_author_items');
106
- $disabled_metaboxes_page_author = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_author_items');
107
- $disabled_metaboxes_post = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_items');
108
- $disabled_metaboxes_page = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_items');
109
- $disabled_metaboxes_post_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_adm_items');
110
- $disabled_metaboxes_page_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_adm_items');
111
-
112
- $disabled_metaboxes_post_all = array();
113
- array_push($disabled_metaboxes_post_all, $disabled_metaboxes_post_subscriber);
114
- array_push($disabled_metaboxes_post_all, $disabled_metaboxes_post_contributor);
115
- array_push($disabled_metaboxes_post_all, $disabled_metaboxes_post_author);
116
- array_push($disabled_metaboxes_post_all, $disabled_metaboxes_post);
117
- array_push($disabled_metaboxes_post_all, $disabled_metaboxes_post_adm);
118
-
119
- $disabled_metaboxes_page_all = array();
120
- array_push($disabled_metaboxes_page_all, $disabled_metaboxes_page_subscriber);
121
- array_push($disabled_metaboxes_page_all, $disabled_metaboxes_page_contributor);
122
- array_push($disabled_metaboxes_page_all, $disabled_metaboxes_page_author);
123
- array_push($disabled_metaboxes_page_all, $disabled_metaboxes_page);
124
- array_push($disabled_metaboxes_page_all, $disabled_metaboxes_page_adm);
125
-
126
- $_mw_admin_color = get_user_option('admin_color');
127
-
128
- if ( ('post-new.php' == $pagenow) || ('post.php' == $pagenow) || ('page-new.php' == $pagenow) || ('page.php' == $pagenow) ) {
129
-
130
- $_mw_adminimize_writescroll = _mw_adminimize_getOptionValue('_mw_adminimize_writescroll');
131
- switch ($_mw_adminimize_writescroll) {
132
- case 1:
133
- wp_enqueue_script('_mw_adminimize_writescroll', WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/js/writescroll.js', array('jquery'));
134
- break;
135
- }
136
- $_mw_adminimize_tb_window = _mw_adminimize_getOptionValue('_mw_adminimize_tb_window');
137
- switch ($_mw_adminimize_tb_window) {
138
- case 1:
139
- wp_deregister_script('media-upload');
140
- wp_enqueue_script('media-upload', WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/js/tb_window.js', array('thickbox'));
141
- break;
142
- }
143
-
144
- //add_filter('image_downsize', '_mw_adminimize_image_downsize', 1, 3);
145
- }
146
-
147
- $_mw_adminimize_menu_order = _mw_adminimize_getOptionValue('_mw_adminimize_menu_order');
148
- switch ($_mw_adminimize_menu_order) {
149
- case 1:
150
- add_action('admin_head', '_mw_adminimize_adminmenu', 1);
151
- }
152
-
153
- if ( ($_mw_admin_color == 'mw_fresh') ||
154
- ($_mw_admin_color == 'mw_classic') ||
155
- ($_mw_admin_color == 'mw_colorblind') ||
156
- ($_mw_admin_color == 'mw_grey') ||
157
- ($_mw_admin_color == 'mw_fresh_ozh_am') ||
158
- ($_mw_admin_color == 'mw_classic_ozh_am') ||
159
- ($_mw_admin_color == 'mw_fresh_lm') ||
160
- ($_mw_admin_color == 'mw_classic_lm') ||
161
- ($_mw_admin_color == 'mw_wp23')
162
- ) {
163
-
164
- if ( ('post-new.php' == $pagenow) || ('post.php' == $pagenow) ) {
165
- if ( version_compare( substr($wp_version, 0, 3), '2.7', '<' ) )
166
- add_action('admin_head', '_mw_adminimize_remove_box', 99);
167
-
168
- // check for array empty
169
- if ( !isset($disabled_metaboxes_post['0']) )
170
- $disabled_metaboxes_post['0'] = '';
171
- if ( isset($disabled_metaboxes_post_adm['0']) )
172
- $disabled_metaboxes_post_adm['0'] = '';
173
- if ( version_compare(substr($wp_version, 0, 3), '2.7', '<') ) {
174
- if ( !recursive_in_array('#categorydivsb', $disabled_metaboxes_post_all) )
175
- add_action('submitpost_box', '_mw_adminimize_sidecat_list_category_box');
176
- if ( !recursive_in_array('#tagsdivsb', $disabled_metaboxes_post_all) )
177
- add_action('submitpost_box', '_mw_adminimize_sidecat_list_tag_box');
178
- }
179
- if ( recursive_in_array('media_buttons', $disabled_metaboxes_post_all) )
180
- remove_action('media_buttons', 'media_buttons');
181
- }
182
-
183
- if ( ('page-new.php' == $pagenow) || ('page.php' == $pagenow) ) {
184
-
185
- // check for array empty
186
- if ( !isset($disabled_metaboxes_page['0']) )
187
- $disabled_metaboxes_page['0'] = '';
188
- if ( isset($disabled_metaboxes_page_adm['0']) )
189
- $disabled_metaboxes_page_adm['0'] = '';
190
- if ( recursive_in_array('media_buttons', $disabled_metaboxes_page_all) )
191
- remove_action('media_buttons', 'media_buttons');
192
- }
193
-
194
- }
195
-
196
- if ( ('post-new.php' == $pagenow) || ('page-new.php' == $pagenow) || ('page.php' == $pagenow) || ('post.php' == $pagenow) ) {
197
-
198
- // set user option in edit-area
199
- add_action('admin_head', '_mw_adminimize_set_user_option_edit');
200
- }
201
-
202
- if ( basename($_SERVER['REQUEST_URI']) == 'adminimize.php') {
203
- wp_enqueue_script('_mw_adminimize', WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/js/adminimize.js', array('jquery'));
204
- }
205
-
206
- // set menu option
207
- add_action('admin_head', '_mw_adminimize_set_menu_option', 1);
208
-
209
- // set metabox option
210
- add_action('admin_head', '_mw_adminimize_set_metabox_option', 1);
211
-
212
- add_action('in_admin_footer', '_mw_adminimize_admin_footer');
213
-
214
- $adminimizeoptions['mw_adminimize_default_menu'] = $menu;
215
- $adminimizeoptions['mw_adminimize_default_submenu'] = $submenu;
216
- if ( isset($top_menu) )
217
- $adminimizeoptions['mw_adminimize_default_top_menu'] = $top_menu;
218
- }
219
-
220
- add_action('init', '_mw_adminimize_textdomain');
221
- if ( is_admin() ) {
222
- add_action('admin_menu', '_mw_adminimize_add_settings_page');
223
- add_action('admin_menu', '_mw_adminimize_remove_dashboard');
224
- add_action('admin_init', '_mw_adminimize_init', 1);
225
- add_action('admin_init', '_mw_adminimize_admin_styles', 1);
226
- }
227
-
228
- if ( function_exists('register_activation_hook') )
229
- register_activation_hook(__FILE__, '_mw_adminimize_install');
230
- if ( function_exists('register_uninstall_hook') )
231
- register_uninstall_hook(__FILE__, '_mw_adminimize_deinstall');
232
- //register_deactivation_hook(__FILE__, '_mw_adminimize_deinstall');
233
-
234
-
235
- /**
236
- * Uses WordPress filter for image_downsize, kill wp-image-dimension
237
- * code by Andrew Rickmann
238
- * http://www.wp-fun.co.uk/
239
- * @param $value, $id, $size
240
- */
241
- function _mw_adminimize_image_downsize($value = false,$id = 0, $size = "medium") {
242
-
243
- if ( !wp_attachment_is_image($id) )
244
- return false;
245
-
246
- $img_url = wp_get_attachment_url($id);
247
- // Mimic functionality in image_downsize function in wp-includes/media.php
248
- if ( $intermediate = image_get_intermediate_size($id, $size) ) {
249
- $img_url = str_replace(basename($img_url), $intermediate['file'], $img_url);
250
- }
251
- elseif ( $size == 'thumbnail' ) {
252
- // fall back to the old thumbnail
253
- if ( $thumb_file = wp_get_attachment_thumb_file() && $info = getimagesize($thumb_file) ) {
254
- $img_url = str_replace(basename($img_url), basename($thumb_file), $img_url);
255
- }
256
- }
257
- if ( $img_url)
258
- return array($img_url, 0, 0);
259
- return false;
260
- }
261
-
262
-
263
- /**
264
- * list category-box in sidebar
265
- * @uses $post_ID
266
- */
267
- function _mw_adminimize_sidecat_list_category_box() {
268
- global $post_ID;
269
- ?>
270
-
271
- <div class="inside" id="categorydivsb">
272
- <p><strong><?php _e("Categories"); ?></strong></p>
273
- <ul id="categorychecklist" class="list:category categorychecklist form-no-clear">
274
- <?php wp_category_checklist($post_ID); ?>
275
- </ul>
276
- <?php if ( !defined('WP_PLUGIN_DIR') ) { // for wp <2.6 ?>
277
- <div id="category-adder" class="wp-hidden-children">
278
- <h4><a id="category-add-toggle" href="#category-add" class="hide-if-no-js" tabindex="3"><?php _e( '+ Add New Category' ); ?></a></h4>
279
- <p id="category-add" class="wp-hidden-child">
280
- <input type="text" name="newcat" id="newcat" class="form-required form-input-tip" value="<?php _e( 'New category name' ); ?>" tabindex="3" />
281
- <?php wp_dropdown_categories( array( 'hide_empty' => 0, 'name' => 'newcat_parent', 'orderby' => 'name', 'hierarchical' => 1, 'show_option_none' => __('Parent category'), 'tab_index' => 3 ) ); ?>
282
- <input type="button" id="category-add-sumbit" class="add:categorychecklist:category-add button" value="<?php _e( 'Add' ); ?>" tabindex="3" />
283
- <?php wp_nonce_field( 'add-category', '_ajax_nonce', false ); ?>
284
- <span id="category-ajax-response"></span>
285
- </p>
286
- </div>
287
- <?php } else { ?>
288
- <div id="category-adder" class="wp-hidden-children">
289
- <h4><a id="category-add-toggle" href="#category-add" class="hide-if-no-js" tabindex="3"><?php _e( '+ Add New Category' ); ?></a></h4>
290
- <p id="category-add" class="wp-hidden-child">
291
- <label class="hidden" for="newcat"><?php _e( 'Add New Category' ); ?></label><input type="text" name="newcat" id="newcat" class="form-required form-input-tip" value="<?php _e( 'New category name' ); ?>" tabindex="3" aria-required="true"/>
292
- <br />
293
- <label class="hidden" for="newcat_parent"><?php _e('Parent category'); ?>:</label><?php wp_dropdown_categories( array( 'hide_empty' => 0, 'name' => 'newcat_parent', 'orderby' => 'name', 'hierarchical' => 1, 'show_option_none' => __('Parent category'), 'tab_index' => 3 ) ); ?>
294
- <input type="button" id="category-add-sumbit" class="add:categorychecklist:category-add button" value="<?php _e( 'Add' ); ?>" tabindex="3" />
295
- <?php wp_nonce_field( 'add-category', '_ajax_nonce', false ); ?>
296
- <span id="category-ajax-response"></span>
297
- </p>
298
- </div>
299
- <?php } ?>
300
- </div>
301
- <?php
302
- }
303
-
304
-
305
- /**
306
- * list tag-box in sidebar
307
- * @uses $post_ID
308
- */
309
- function _mw_adminimize_sidecat_list_tag_box() {
310
- global $post_ID;
311
-
312
- if ( !class_exists('SimpleTagsAdmin') ) {
313
- ?>
314
- <div class="inside" id="tagsdivsb">
315
- <p><strong><?php _e('Tags'); ?></strong></p>
316
- <p id="jaxtag"><label class="hidden" for="newtag"><?php _e('Tags'); ?></label><input type="text" name="tags_input" class="tags-input" id="tags-input" size="40" tabindex="3" value="<?php echo get_tags_to_edit($post_ID); ?>" /></p>
317
- <div id="tagchecklist"></div>
318
- </div>
319
- <?php
320
- }
321
- }
322
-
323
-
324
- /**
325
- * remove default categorydiv
326
- * @echo script
327
- */
328
- function _mw_adminimize_remove_box() {
329
-
330
- if ( function_exists('remove_meta_box') ) {
331
- if ( !class_exists('SimpleTagsAdmin') )
332
- remove_meta_box('tagsdiv', 'post', 'normal');
333
- remove_meta_box('categorydiv', 'post', 'normal');
334
- } else {
335
- $_mw_adminimize_sidecat_admin_head = "\n" . '<script type="text/javascript">' . "\n";
336
- $_mw_adminimize_sidecat_admin_head .= "\t" . 'jQuery(document).ready(function() { jQuery(\'#categorydiv\').remove(); });' . "\n";
337
- $_mw_adminimize_sidecat_admin_head .= "\t" . 'jQuery(document).ready(function() { jQuery(\'#tagsdiv\').remove(); });' . "\n";
338
- $_mw_adminimize_sidecat_admin_head .= '</script>' . "\n";
339
-
340
- print($_mw_adminimize_sidecat_admin_head);
341
- }
342
- }
343
-
344
-
345
- /**
346
- * reorder admin-menu
347
- * @uses $menu
348
- * @param $file
349
- */
350
- function _mw_adminimize_adminmenu($file) {
351
- global $menu;
352
-
353
- $menu[7] = $menu[5];
354
- $menu[5] = $menu[0];
355
- $menu[32] = $menu[40];
356
- $menu[40] = $menu[35];
357
- $menu[35] = $menu[30];
358
- $menu[30] = $menu[15];
359
- unset($menu[0]);
360
- unset($menu[15]);
361
- }
362
-
363
-
364
- /**
365
- * add new adminstyle to usersettings
366
- * @param $file
367
- */
368
- function _mw_adminimize_admin_styles($file) {
369
- global $wp_version;
370
-
371
- $_mw_adminimize_path = WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/';
372
-
373
- if ( version_compare( $wp_version, '2.6.999', '>' ) ) {
374
- // MW Adminimize Classic
375
- $styleName = 'Adminimize:' . ' ' . __('Blue');
376
- wp_admin_css_color (
377
- 'mw_classic', $styleName, $_mw_adminimize_path . 'mw_classic27.css',
378
- array('#073447', '#21759b', '#eaf3fa', '#bbd8e7')
379
- );
380
-
381
- // MW Adminimize Fresh
382
- $styleName = 'Adminimize:' . ' ' . __('Gray');
383
- wp_admin_css_color (
384
- 'mw_fresh', $styleName, $_mw_adminimize_path . 'mw_fresh27.css',
385
- array('#464646', '#6d6d6d', '#f1f1f1', '#dfdfdf')
386
- );
387
-
388
- } else {
389
- // MW Adminimize Classic
390
- $styleName = 'MW Adminimize:' . ' ' . __('Classic');
391
- wp_admin_css_color (
392
- 'mw_classic', $styleName, $_mw_adminimize_path . 'mw_classic.css',
393
- array('#07273E', '#14568A', '#D54E21', '#2683AE')
394
- );
395
-
396
- // MW Adminimize Fresh
397
- $styleName = 'MW Adminimize:' . ' ' . __('Fresh');
398
- wp_admin_css_color (
399
- 'mw_fresh', $styleName, $_mw_adminimize_path . 'mw_fresh.css',
400
- array('#464646', '#CEE1EF', '#D54E21', '#2683AE')
401
- );
402
-
403
- // MW Adminimize WordPress 2.3
404
- $styleName = 'MW Adminimize:' . ' ' . __('WordPress 2.3');
405
- wp_admin_css_color (
406
- 'mw_wp23', $styleName, $_mw_adminimize_path . 'mw_wp23.css',
407
- array('#000000', '#14568A', '#448ABD', '#83B4D8')
408
- );
409
-
410
- // MW Adminimize Colorblind
411
- $styleName = 'MW Adminimize:' . ' ' . __('Maybe i\'m colorblind');
412
- wp_admin_css_color (
413
- 'mw_colorblind', $styleName, $_mw_adminimize_path . 'mw_colorblind.css',
414
- array('#FF9419', '#F0720C', '#710001', '#550007', '#CF4529')
415
- );
416
-
417
- // MW Adminimize Grey
418
- $styleName = 'MW Adminimize:' . ' ' . __('Grey');
419
- wp_admin_css_color (
420
- 'mw_grey', $styleName, $_mw_adminimize_path . 'mw_grey.css',
421
- array('#000000', '#787878', '#F0F0F0', '#D8D8D8', '#909090')
422
- );
423
- }
424
- /**
425
- * style and changes for plugin Admin Drop Down Menu
426
- * by Ozh
427
- * http://planetozh.com/blog/my-projects/wordpress-admin-menu-drop-down-css/
428
- */
429
- if ( function_exists('wp_ozh_adminmenu') ) {
430
-
431
- // MW Adminimize Classic include ozh adminmenu
432
- $styleName = 'MW Adminimize inc. Admin Drop Down Menu' . ' ' . __('Classic');
433
- wp_admin_css_color (
434
- 'mw_classic_ozh_am', $styleName, $_mw_adminimize_path . 'mw_classic_ozh_am.css',
435
- array('#07273E', '#14568A', '#D54E21', '#2683AE')
436
- );
437
-
438
- // MW Adminimize Fresh include ozh adminmenu
439
- $styleName = 'MW Adminimize inc. Admin Drop Down Menu' . ' ' . __('Fresh');
440
- wp_admin_css_color (
441
- 'mw_fresh_ozh_am', $styleName, $_mw_adminimize_path . 'mw_fresh_ozh_am.css',
442
- array('#464646', '#CEE1EF', '#D54E21', '#2683AE')
443
- );
444
-
445
- }
446
-
447
- /**
448
- * style and changes for plugin Lighter Menus
449
- * by corpodibacco
450
- * http://www.italyisfalling.com/lighter-menus
451
- */
452
- if ( function_exists('lm_build') ) {
453
-
454
- // MW Adminimize Classic include Lighter Menus
455
- $styleName = 'MW Adminimize inc. Lighter Menus' . ' ' . __('Classic');
456
- wp_admin_css_color (
457
- 'mw_classic_lm', $styleName, $_mw_adminimize_path . 'mw_classic_lm.css',
458
- array('#07273E', '#14568A', '#D54E21', '#2683AE')
459
- );
460
-
461
- // MW Adminimize Fresh include Lighter Menus
462
- $styleName = 'MW Adminimize inc. Lighter Menus' . ' ' . __('Fresh');
463
- wp_admin_css_color (
464
- 'mw_fresh_lm', $styleName, $_mw_adminimize_path . 'mw_fresh_lm.css',
465
- array('#464646', '#CEE1EF', '#D54E21', '#2683AE')
466
- );
467
-
468
- }
469
- }
470
-
471
-
472
- /**
473
- * remove the dashbord
474
- * @author of basic Austin Matzko
475
- * http://www.ilfilosofo.com/blog/2006/05/24/plugin-remove-the-wordpress-dashboard/
476
- */
477
- function _mw_adminimize_remove_dashboard() {
478
- global $menu, $submenu, $user_ID, $top_menu;
479
-
480
- $disabled_menu_subscriber = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_subscriber_items');
481
- $disabled_submenu_subscriber = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_subscriber_items');
482
- $disabled_top_menu_subscriber = _mw_adminimize_getOptionValue('mw_adminimize_disabled_top_menu_subscriber_items');
483
- $disabled_menu_contributor = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_contributor_items');
484
- $disabled_submenu_contributor = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_contributor_items');
485
- $disabled_top_menu_contributor = _mw_adminimize_getOptionValue('mw_adminimize_disabled_top_menu_contributor_items');
486
- $disabled_menu_author = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_author_items');
487
- $disabled_submenu_author = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_author_items');
488
- $disabled_top_menu_author = _mw_adminimize_getOptionValue('mw_adminimize_disabled_top_menu_author_items');
489
- $disabled_menu = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_items');
490
- $disabled_submenu = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_items');
491
- $disabled_top_menu = _mw_adminimize_getOptionValue('mw_adminimize_disabled_top_menu_items');
492
- $disabled_menu_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_adm_items');
493
- $disabled_submenu_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_adm_items');
494
- $disabled_top_menu_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_top_menu_adm_items');
495
-
496
- $disabled_menu_all = array();
497
- array_push($disabled_menu_all, $disabled_menu_subscriber);
498
- array_push($disabled_menu_all, $disabled_menu_contributor);
499
- array_push($disabled_menu_all, $disabled_menu_author);
500
- array_push($disabled_menu_all, $disabled_menu);
501
- array_push($disabled_menu_all, $disabled_menu_adm);
502
-
503
- $disabled_submenu_all = array();
504
- array_push($disabled_submenu_all, $disabled_submenu_subscriber);
505
- array_push($disabled_submenu_all, $disabled_submenu_contributor);
506
- array_push($disabled_submenu_all, $disabled_submenu_author);
507
- array_push($disabled_submenu_all, $disabled_submenu);
508
- array_push($disabled_submenu_all, $disabled_submenu_adm);
509
-
510
- $disabled_top_menu_all = array();
511
- array_push($disabled_top_menu_all, $disabled_top_menu_subscriber);
512
- array_push($disabled_top_menu_all, $disabled_top_menu_contributor);
513
- array_push($disabled_top_menu_all, $disabled_top_menu_author);
514
- array_push($disabled_top_menu_all, $disabled_top_menu);
515
- array_push($disabled_top_menu_all, $disabled_top_menu_adm);
516
-
517
- // remove dashboard
518
- if ($disabled_menu_all != '' || $disabled_submenu_all != '' || $disabled_top_menu_all != '') {
519
-
520
- if ( current_user_can('subscriber') ) {
521
- if (
522
- recursive_in_array('index.php', $disabled_menu_subscriber) ||
523
- recursive_in_array('index.php', $disabled_submenu_subscriber) ||
524
- recursive_in_array('index.php', $disabled_top_menu_subscriber)
525
- )
526
- $redirect = 'true';
527
- } elseif ( current_user_can('contributor') ) {
528
- if (
529
- recursive_in_array('index.php', $disabled_menu_contributor) ||
530
- recursive_in_array('index.php', $disabled_submenu_contributor) ||
531
- recursive_in_array('index.php', $disabled_top_menu_contributor)
532
- )
533
- $redirect = 'true';
534
- } elseif ( current_user_can('author') ) {
535
- if (
536
- recursive_in_array('index.php', $disabled_menu_author) ||
537
- recursive_in_array('index.php', $disabled_submenu_author) ||
538
- recursive_in_array('index.php', $disabled_top_menu_author)
539
- )
540
- $redirect = 'true';
541
- } elseif ( current_user_can('editor') ) {
542
- if (
543
- recursive_in_array('index.php', $disabled_menu) ||
544
- recursive_in_array('index.php', $disabled_submenu) ||
545
- recursive_in_array('index.php', $disabled_top_menu)
546
- )
547
- $redirect = 'true';
548
- } elseif ( current_user_can('administrator') ) {
549
- if (
550
- recursive_in_array('index.php', $disabled_menu_adm) ||
551
- recursive_in_array('index.php', $disabled_submenu_adm) ||
552
- recursive_in_array('index.php', $disabled_top_menu_adm)
553
- )
554
- $redirect = 'true';
555
- }
556
-
557
- if ( $redirect == 'true' ) {
558
- $_mw_adminimize_db_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_db_redirect');
559
- switch ($_mw_adminimize_db_redirect) {
560
- case 0:
561
- $_mw_adminimize_db_redirect = 'profile.php';
562
- break;
563
- case 1:
564
- $_mw_adminimize_db_redirect = 'edit.php';
565
- break;
566
- case 2:
567
- $_mw_adminimize_db_redirect = 'edit-pages.php';
568
- break;
569
- case 3:
570
- $_mw_adminimize_db_redirect = 'post-new.php';
571
- break;
572
- case 4:
573
- $_mw_adminimize_db_redirect = 'page-new.php';
574
- break;
575
- case 5:
576
- $_mw_adminimize_db_redirect = 'edit-comments.php';
577
- break;
578
- case 6:
579
- $_mw_adminimize_db_redirect = htmlspecialchars( stripslashes( _mw_adminimize_getOptionValue('_mw_adminimize_db_redirect_txt') ) );
580
- break;
581
- }
582
-
583
- $the_user = new WP_User($user_ID);
584
- reset($menu); $page = key($menu);
585
-
586
- while ( (__('Dashboard') != $menu[$page][0]) && next($menu) || (__('Dashboard') != $menu[$page][1]) && next($menu) )
587
- $page = key($menu);
588
-
589
- if (__('Dashboard') == $menu[$page][0] || __('Dashboard') == $menu[$page][1])
590
- unset($menu[$page]);
591
- reset($menu); $page = key($menu);
592
-
593
- while ( !$the_user->has_cap($menu[$page][1]) && next($menu) )
594
- $page = key($menu);
595
-
596
- if ( preg_match('#wp-admin/?(index.php)?$#', $_SERVER['REQUEST_URI']) ) {
597
- if ( function_exists('admin_url') ) {
598
- wp_redirect( admin_url($_mw_adminimize_db_redirect) );
599
- } else {
600
- wp_redirect( get_option('siteurl') . '/wp-admin/' . $_mw_adminimize_db_redirect );
601
- }
602
- }
603
- }
604
- }
605
- }
606
-
607
-
608
- /**
609
- * remove the flash_uploader
610
- */
611
- function _mw_adminimize_disable_flash_uploader() {
612
- return false;
613
- }
614
-
615
-
616
- /**
617
- * set user options from database in edit-area
618
- */
619
- function _mw_adminimize_set_user_option_edit() {
620
-
621
- $_mw_adminimize_path = WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/';
622
-
623
- $_mw_adminimize_sidecat_admin_head = '';
624
- $_mw_adminimize_sidebar_wight = _mw_adminimize_getOptionValue('_mw_adminimize_sidebar_wight');
625
- switch ($_mw_adminimize_sidebar_wight) {
626
- case 300:
627
- $_mw_adminimize_sidecat_admin_head .= '<link rel="stylesheet" href="' . "\n";
628
- $_mw_adminimize_sidecat_admin_head .= $_mw_adminimize_path . 'mw_300_sidebar.css';
629
- $_mw_adminimize_sidecat_admin_head .= '" type="text/css" media="all" />' . "\n";
630
- break;
631
- case 400:
632
- $_mw_adminimize_sidecat_admin_head .= '<link rel="stylesheet" href="' . "\n";
633
- $_mw_adminimize_sidecat_admin_head .= $_mw_adminimize_path . 'mw_400_sidebar.css';
634
- $_mw_adminimize_sidecat_admin_head .= '" type="text/css" media="all" />' . "\n";
635
- break;
636
- case 20:
637
- $_mw_adminimize_sidecat_admin_head .= '<link rel="stylesheet" href="' . "\n";
638
- $_mw_adminimize_sidecat_admin_head .= $_mw_adminimize_path . 'mw_20p_sidebar.css';
639
- $_mw_adminimize_sidecat_admin_head .= '" type="text/css" media="all" />' . "\n";
640
- break;
641
- case 30:
642
- $_mw_adminimize_sidecat_admin_head .= '<link rel="stylesheet" href="' . "\n";
643
- $_mw_adminimize_sidecat_admin_head .= $_mw_adminimize_path . 'mw_30p_sidebar.css';
644
- $_mw_adminimize_sidecat_admin_head .= '" type="text/css" media="all" />' . "\n";
645
- break;
646
- }
647
-
648
- print($_mw_adminimize_sidecat_admin_head);
649
- }
650
-
651
-
652
- /**
653
- * set menu options from database
654
- */
655
- function _mw_adminimize_set_menu_option() {
656
- global $pagenow, $menu, $submenu, $user_identity, $top_menu, $wp_version;
657
-
658
- $disabled_menu_subscriber = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_subscriber_items');
659
- $disabled_submenu_subscriber = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_subscriber_items');
660
- $disabled_top_menu_subscriber = _mw_adminimize_getOptionValue('mw_adminimize_disabled_top_menu_subscriber_items');
661
- $disabled_menu_contributor = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_contributor_items');
662
- $disabled_submenu_contributor = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_contributor_items');
663
- $disabled_top_menu_contributor = _mw_adminimize_getOptionValue('mw_adminimize_disabled_top_menu_contributor_items');
664
- $disabled_menu_author = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_author_items');
665
- $disabled_submenu_author = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_author_items');
666
- $disabled_top_menu_author = _mw_adminimize_getOptionValue('mw_adminimize_disabled_top_menu_author_items');
667
- $disabled_menu = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_items');
668
- $disabled_submenu = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_items');
669
- $disabled_top_menu = _mw_adminimize_getOptionValue('mw_adminimize_disabled_top_menu_items');
670
- $disabled_menu_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_adm_items');
671
- $disabled_submenu_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_adm_items');
672
- $disabled_top_menu_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_top_menu_adm_items');
673
-
674
- $_mw_adminimize_admin_head = "\n";
675
- $_mw_adminimize_favorite_actions = _mw_adminimize_getOptionValue('_mw_adminimize_favorite_actions');
676
- $_mw_adminimize_screen_options = _mw_adminimize_getOptionValue('_mw_adminimize_screen_options');
677
- $_mw_adminimize_user_info = _mw_adminimize_getOptionValue('_mw_adminimize_user_info');
678
- $_mw_adminimize_ui_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_ui_redirect');
679
-
680
- switch ($_mw_adminimize_favorite_actions) {
681
- case 1:
682
- $_mw_adminimize_admin_head .= '<script type="text/javascript">' . "\n";
683
- $_mw_adminimize_admin_head .= "\t" . 'jQuery(document).ready(function() { jQuery(\'#favorite-actions\').remove(); });' . "\n";
684
- $_mw_adminimize_admin_head .= '</script>' . "\n";
685
- break;
686
- }
687
-
688
- switch ($_mw_adminimize_screen_options) {
689
- case 1:
690
- $_mw_adminimize_admin_head .= '<script type="text/javascript">' . "\n";
691
- $_mw_adminimize_admin_head .= "\t" . 'jQuery(document).ready(function() { jQuery(\'#screen-options\').remove(); });' . "\n";
692
- $_mw_adminimize_admin_head .= '</script>' . "\n";
693
- break;
694
- }
695
-
696
- switch ($_mw_adminimize_user_info) {
697
- case 1:
698
- $_mw_adminimize_admin_head .= '<script type="text/javascript">' . "\n";
699
- $_mw_adminimize_admin_head .= "\t" . 'jQuery(document).ready(function() { jQuery(\'#user_info\').remove(); });' . "\n";
700
- $_mw_adminimize_admin_head .= '</script>' . "\n";
701
- break;
702
- case 2:
703
- if ( version_compare(substr($wp_version, 0, 3), '2.7', '>=') ) {
704
- $_mw_adminimize_admin_head .= '<link rel="stylesheet" href="' . WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/mw_small_user_info27.css" type="text/css" />' . "\n";
705
- } else {
706
- $_mw_adminimize_admin_head .= '<link rel="stylesheet" href="' . WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/mw_small_user_info.css" type="text/css" />' . "\n";
707
- }
708
- $_mw_adminimize_admin_head .= '<script type="text/javascript">' . "\n";
709
- $_mw_adminimize_admin_head .= "\t" . 'jQuery(document).ready(function() { jQuery(\'#user_info\').remove();';
710
- if ($_mw_adminimize_ui_redirect == '1') {
711
- $_mw_adminimize_admin_head .= 'jQuery(\'div#wpcontent\').after(\'<div id="small_user_info"><p><a href="' . get_option('siteurl') . wp_nonce_url( ('/wp-login.php?action=logout&amp;redirect_to=') . get_option('siteurl') , 'log-out' ) . '" title="' . __('Log Out') . '">' . __('Log Out') . '</a></p></div>\') });' . "\n";
712
- } else {
713
- $_mw_adminimize_admin_head .= 'jQuery(\'div#wpcontent\').after(\'<div id="small_user_info"><p><a href="' . get_option('siteurl') . wp_nonce_url( ('/wp-login.php?action=logout') , 'log-out' ) . '" title="' . __('Log Out') . '">' . __('Log Out') . '</a></p></div>\') });' . "\n";
714
- }
715
- $_mw_adminimize_admin_head .= '</script>' . "\n";
716
- break;
717
- case 3:
718
- if ( version_compare(substr($wp_version, 0, 3), '2.7', '>=') ) {
719
- $_mw_adminimize_admin_head .= '<link rel="stylesheet" href="' . WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/mw_small_user_info27.css" type="text/css" />' . "\n";
720
- } else {
721
- $_mw_adminimize_admin_head .= '<link rel="stylesheet" href="' . WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/mw_small_user_info.css" type="text/css" />' . "\n";
722
- }
723
- $_mw_adminimize_admin_head .= '<script type="text/javascript">' . "\n";
724
- $_mw_adminimize_admin_head .= "\t" . 'jQuery(document).ready(function() { jQuery(\'#user_info\').remove();';
725
- if ($_mw_adminimize_ui_redirect == '1') {
726
- $_mw_adminimize_admin_head .= 'jQuery(\'div#wpcontent\').after(\'<div id="small_user_info"><p><a href="' . get_option('siteurl') . ('/wp-admin/profile.php') . '">' . $user_identity . '</a> | <a href="' . get_option('siteurl') . wp_nonce_url( ('/wp-login.php?action=logout&amp;redirect_to=') . get_option('siteurl'), 'log-out' ) . '" title="' . __('Log Out') . '">' . __('Log Out') . '</a></p></div>\') });' . "\n";
727
- } else {
728
- $_mw_adminimize_admin_head .= 'jQuery(\'div#wpcontent\').after(\'<div id="small_user_info"><p><a href="' . get_option('siteurl') . ('/wp-admin/profile.php') . '">' . $user_identity . '</a> | <a href="' . get_option('siteurl') . wp_nonce_url( ('/wp-login.php?action=logout'), 'log-out' ) . '" title="' . __('Log Out') . '">' . __('Log Out') . '</a></p></div>\') });' . "\n";
729
- }
730
- $_mw_adminimize_admin_head .= '</script>' . "\n";
731
- break;
732
- }
733
-
734
- $_mw_adminimize_dashmenu = _mw_adminimize_getOptionValue('_mw_adminimize_dashmenu');
735
- switch ($_mw_adminimize_dashmenu) {
736
- case 1:
737
- $_mw_adminimize_admin_head .= '<script type="text/javascript">' . "\n";
738
- $_mw_adminimize_admin_head .= "\t" . 'jQuery(document).ready(function() { jQuery(\'#dashmenu\').remove(); });' . "\n";
739
- $_mw_adminimize_admin_head .= '</script>' . "\n";
740
- break;
741
- }
742
- $_mw_adminimize_footer = _mw_adminimize_getOptionValue('_mw_adminimize_footer');
743
- switch ($_mw_adminimize_footer) {
744
- case 1:
745
- $_mw_adminimize_admin_head .= '<script type="text/javascript">' . "\n";
746
- $_mw_adminimize_admin_head .= "\t" . 'jQuery(document).ready(function() { jQuery(\'#footer\').remove(); });' . "\n";
747
- $_mw_adminimize_admin_head .= '</script>' . "\n";
748
- break;
749
- }
750
-
751
- // timestamp open
752
- $_mw_adminimize_timestamp = _mw_adminimize_getOptionValue('_mw_adminimize_timestamp');
753
- switch ($_mw_adminimize_timestamp) {
754
- case 1:
755
- $_mw_adminimize_admin_head .= '<script type="text/javascript">' . "\n";
756
- $_mw_adminimize_admin_head .= "\t" . 'addLoadEvent(function(){jQuery(\'.edit-timestamp\').click();});' . "\n";
757
- $_mw_adminimize_admin_head .= '</script>' . "\n";
758
- break;
759
- }
760
-
761
- $_mw_adminimize_admin_head .= '<script type="text/javascript">
762
- /* <![CDATA[ */
763
- adminimizeL10n = {
764
- all: "' . __('All', 'adminimize') . '", none: "' . __('None', 'adminimize') . '"
765
- }
766
- /* ]]> */
767
- </script>';
768
-
769
- // set menu
770
- if ($disabled_menu != '') {
771
-
772
- // set admin-menu
773
- if ( current_user_can('administrator') ) {
774
- $mw_adminimize_menu = $disabled_menu_adm;
775
- $mw_adminimize_submenu = $disabled_submenu_adm;
776
- $mw_adminimize_top_menu = $disabled_top_menu_adm;
777
- } elseif ( current_user_can('editor') ) {
778
- $mw_adminimize_menu = $disabled_menu;
779
- $mw_adminimize_submenu = $disabled_submenu;
780
- $mw_adminimize_top_menu = $disabled_top_menu;
781
- } elseif ( current_user_can('author') ) {
782
- $mw_adminimize_menu = $disabled_menu_author;
783
- $mw_adminimize_submenu = $disabled_submenu_author;
784
- $mw_adminimize_top_menu = $disabled_top_menu_author;
785
- } elseif ( current_user_can('contributor') ) {
786
- $mw_adminimize_menu = $disabled_menu_contributor;
787
- $mw_adminimize_submenu = $disabled_submenu_contributor;
788
- $mw_adminimize_top_menu = $disabled_top_menu_contributor;
789
- } elseif ( current_user_can('subscriber') ) {
790
- $mw_adminimize_menu = $disabled_menu_subscriber;
791
- $mw_adminimize_submenu = $disabled_submenu_subscriber;
792
- $mw_adminimize_top_menu = $disabled_top_menu_subscriber;
793
- }
794
-
795
- foreach ($menu as $index => $item) {
796
- if ($item == 'index.php')
797
- continue;
798
-
799
- if ( isset($mw_adminimize_menu) && in_array($item[2], $mw_adminimize_menu) )
800
- unset($menu[$index]);
801
-
802
- if ( isset($submenu) && !empty($submenu[$item[2]]) ) {
803
- foreach ($submenu[$item[2]] as $subindex => $subitem) {
804
- if ( isset($mw_adminimize_submenu) && in_array($subitem[2], $mw_adminimize_submenu))
805
- unset($submenu[$item[2]][$subindex]);
806
- }
807
- }
808
-
809
- //top_menu, new in 2.7
810
- if ( isset($top_menu) && !empty($top_menu[$item[2]]) ) {
811
- foreach ($top_menu[$item[2]] as $subindex => $subitem) {
812
- if ( isset($mw_adminimize_top_menu) && in_array($subitem[2], $mw_adminimize_top_menu))
813
- unset($top_menu[$item[2]][$subindex]);
814
- }
815
- }
816
- }
817
-
818
- }
819
-
820
- print($_mw_adminimize_admin_head);
821
- }
822
-
823
-
824
- /**
825
- * set metabox options from database
826
- */
827
- function _mw_adminimize_set_metabox_option() {
828
- global $pagenow;
829
-
830
- $_mw_adminimize_admin_head = "\n";
831
-
832
- // post
833
- if ( ('post-new.php' == $pagenow) || ('post.php' == $pagenow) ) {
834
- remove_action('admin_head', 'index_js');
835
-
836
- $disabled_metaboxes_post_subscriber = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_subscriber_items');
837
- $disabled_metaboxes_post_contributor = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_contributor_items');
838
- $disabled_metaboxes_post_author = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_author_items');
839
- $disabled_metaboxes_post = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_items');
840
- $disabled_metaboxes_post_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_adm_items');
841
-
842
- if ( !isset($disabled_metaboxes_post_adm['0']) )
843
- $disabled_metaboxes_post_adm['0'] = '';
844
- if ( !isset($disabled_metaboxes_post['0']) )
845
- $disabled_metaboxes_post['0'] = '';
846
- if ( !isset($disabled_metaboxes_post_author['0']) )
847
- $disabled_metaboxes_post_author['0'] = '';
848
- if ( !isset($disabled_metaboxes_post_contributor['0']) )
849
- $disabled_metaboxes_post_contributor['0'] = '';
850
- if ( !isset($disabled_metaboxes_post_subscriber['0']) )
851
- $disabled_metaboxes_post_subscriber['0'] = '';
852
- if ( current_user_can('administrator') ) {
853
- $metaboxes = implode(',', $disabled_metaboxes_post_adm); // for admins
854
- } elseif ( current_user_can('editor') ) {
855
- $metaboxes = implode(',', $disabled_metaboxes_post); // editor
856
- } elseif ( current_user_can('author') ) {
857
- $metaboxes = implode(',', $disabled_metaboxes_post_author); // author
858
- } elseif ( current_user_can('contributor') ) {
859
- $metaboxes = implode(',', $disabled_metaboxes_post_contributor); // contributor
860
- } elseif ( current_user_can('subscriber') ) {
861
- $metaboxes = implode(',', $disabled_metaboxes_post_subscriber); // subscriber
862
- }
863
-
864
- $_mw_adminimize_admin_head .= '<style type="text/css">' . $metaboxes . ' {display: none !important}</style>' . "\n";
865
- }
866
-
867
- // page
868
- if ( ('page-new.php' == $pagenow) || ('page.php' == $pagenow) ) {
869
- remove_action('admin_head', 'index_js');
870
-
871
- $disabled_metaboxes_page_subscriber = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_subscriber_items');
872
- $disabled_metaboxes_page_contributor = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_contributor_items');
873
- $disabled_metaboxes_page_editor = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_editor_items');
874
- $disabled_metaboxes_page = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_items');
875
- $disabled_metaboxes_page_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_adm_items');
876
-
877
- if ( !isset($disabled_metaboxes_page_subscriber['0']) )
878
- $disabled_metaboxes_page_subscriber['0'] = '';
879
- if ( !isset($disabled_metaboxes_page_contributor['0']) )
880
- $disabled_metaboxes_page_contributor['0'] = '';
881
- if ( !isset($disabled_metaboxes_page_author['0']) )
882
- $disabled_metaboxes_page_author['0'] = '';
883
- if ( !isset($disabled_metaboxes_page['0']) )
884
- $disabled_metaboxes_page['0'] = '';
885
- if ( !isset($disabled_metaboxes_page_adm['0']) )
886
- $disabled_metaboxes_page_adm['0'] = '';
887
-
888
- if ( current_user_can('administrator') ) {
889
- $metaboxes = implode(',', $disabled_metaboxes_page_adm); // admin
890
- } elseif ( current_user_can('editor') ) {
891
- $metaboxes = implode(',', $disabled_metaboxes_page); // editor
892
- } elseif ( current_user_can('author') ) {
893
- $metaboxes = implode(',', $disabled_metaboxes_page_author); // author
894
- } elseif ( current_user_can('contributor') ) {
895
- $metaboxes = implode(',', $disabled_metaboxes_page_contributor); // contributor
896
- } elseif ( current_user_can('subscriber') ) {
897
- $metaboxes = implode(',', $disabled_metaboxes_page_subscriber); // subscriber
898
- }
899
-
900
- $_mw_adminimize_admin_head .= '<style type="text/css">' . $metaboxes . ' {display: none !important}</style>' . "\n";
901
- }
902
-
903
- // hide colorscheme
904
- if ( ('profile.php' == $pagenow) && (_mw_adminimize_getOptionValue('mw_adminimize_disabled_colorscheme') == '1') ) {
905
- $_mw_adminimize_admin_head .= '<style type="text/css">#your-profile .form-table fieldset {display: none !important}</style>' . "\n";
906
- }
907
-
908
- print($_mw_adminimize_admin_head);
909
- }
910
-
911
-
912
- /**
913
- * small user-info
914
- * @uses $post_ID
915
- */
916
- function _mw_adminimize_small_user_info() {
917
- ?>
918
- <div id="small_user_info">
919
- <p><a href="<?php echo wp_nonce_url( site_url('wp-login.php?action=logout'), 'log-out' ) ?>" title="<?php _e('Log Out') ?>"><?php _e('Log Out'); ?></a></p>
920
- </div>
921
- <?php
922
- }
923
-
924
-
925
- /**
926
- * include options-page in wp-admin
927
- */
928
- require_once('adminimize_page.php');
929
-
930
-
931
- /**
932
- * credit in wp-footer
933
- */
934
- function _mw_adminimize_admin_footer() {
935
- $plugin_data = get_plugin_data( __FILE__ );
936
- $plugin_data['Title'] = $plugin_data['Name'];
937
- if ( !empty($plugin_data['PluginURI']) && !empty($plugin_data['Name']) )
938
- $plugin_data['Title'] = '<a href="' . $plugin_data['PluginURI'] . '" title="'.__( 'Visit plugin homepage' ).'">' . $plugin_data['Name'] . '</a>';
939
-
940
- if ( basename($_SERVER['REQUEST_URI']) == 'adminimize.php') {
941
- printf('%1$s ' . __('plugin') . ' | ' . __('Version') . ' <a href="http://bueltge.de/wordpress-admin-theme-adminimize/674/#historie" title="' . __('History', 'adminimize') . '">%2$s</a> | ' . __('Author') . ' %3$s<br />', $plugin_data['Title'], $plugin_data['Version'], $plugin_data['Author']);
942
- }
943
- if ( _mw_adminimize_getOptionValue('_mw_adminimize_advice') == 1 && basename($_SERVER['REQUEST_URI']) != 'adminimize.php' ) {
944
- printf('%1$s ' . __('plugin activate', 'adminimize') . ' | ' . stripslashes( _mw_adminimize_getOptionValue('_mw_adminimize_advice_txt') ) . '<br />', $plugin_data['Title']);
945
- }
946
- }
947
-
948
-
949
- /**
950
- * Add action link(s) to plugins page
951
- * Thanks Dion Hulse -- http://dd32.id.au/wordpress-plugins/?configure-link
952
- */
953
- function _mw_adminimize_filter_plugin_actions($links, $file){
954
- static $this_plugin;
955
-
956
- if( !$this_plugin ) $this_plugin = plugin_basename(__FILE__);
957
-
958
- if( $file == $this_plugin ){
959
- $settings_link = '<a href="options-general.php?page=adminimize/adminimize.php">' . __('Settings') . '</a>';
960
- $links = array_merge( array($settings_link), $links); // before other links
961
- }
962
- return $links;
963
- }
964
-
965
-
966
- /**
967
- * Images/ Icons in base64-encoding
968
- * @use function _mw_adminimize_get_resource_url() for display
969
- */
970
- if( isset($_GET['resource']) && !empty($_GET['resource'])) {
971
- # base64 encoding performed by base64img.php from http://php.holtsmark.no
972
- $resources = array(
973
- 'adminimize.gif' =>
974
- 'R0lGODlhCwALAKIEAPb29tTU1Kurq5SUlP///wAAAAAAAAAAAC'.
975
- 'H5BAEAAAQALAAAAAALAAsAAAMlSErTuw1Ix4a8s4mYgxZbE4wf'.
976
- 'OIzkAJqop64nWm7tULHu0+xLAgA7'.
977
- '');
978
-
979
- if(array_key_exists($_GET['resource'], $resources)) {
980
-
981
- $content = base64_decode($resources[ $_GET['resource'] ]);
982
-
983
- $lastMod = filemtime(__FILE__);
984
- $client = ( isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) ? $_SERVER['HTTP_IF_MODIFIED_SINCE'] : false );
985
- // Checking if the client is validating his cache and if it is current.
986
- if (isset($client) && (strtotime($client) == $lastMod)) {
987
- // Client's cache IS current, so we just respond '304 Not Modified'.
988
- header('Last-Modified: '.gmdate('D, d M Y H:i:s', $lastMod).' GMT', true, 304);
989
- exit;
990
- } else {
991
- // Image not cached or cache outdated, we respond '200 OK' and output the image.
992
- header('Last-Modified: '.gmdate('D, d M Y H:i:s', $lastMod).' GMT', true, 200);
993
- header('Content-Length: '.strlen($content));
994
- header('Content-Type: image/' . substr(strrchr($_GET['resource'], '.'), 1) );
995
- echo $content;
996
- exit;
997
- }
998
- }
999
- }
1000
-
1001
-
1002
- /**
1003
- * Display Images/ Icons in base64-encoding
1004
- * @return $resourceID
1005
- */
1006
- function _mw_adminimize_get_resource_url($resourceID) {
1007
-
1008
- return trailingslashit( get_bloginfo('url') ) . '?resource=' . $resourceID;
1009
- }
1010
-
1011
-
1012
- /**
1013
- * settings in plugin-admin-page
1014
- */
1015
- function _mw_adminimize_add_settings_page() {
1016
- global $wp_version;
1017
-
1018
- if( current_user_can('switch_themes') && function_exists('add_submenu_page') ) {
1019
-
1020
- $menutitle = '';
1021
- if ( version_compare( $wp_version, '2.6.999', '>' ) ) {
1022
- $menutitle = '<img src="' . _mw_adminimize_get_resource_url('adminimize.gif') . '" alt="" />';
1023
- }
1024
- $menutitle .= ' ' . __('Adminimize', 'adminimize');
1025
-
1026
- add_submenu_page('options-general.php', __('Adminimize Options', 'adminimize'), $menutitle, 8, __FILE__, '_mw_adminimize_options');
1027
- add_filter('plugin_action_links', '_mw_adminimize_filter_plugin_actions', 10, 2);
1028
- }
1029
- }
1030
-
1031
-
1032
- /**
1033
- * Set theme for users
1034
- */
1035
- function _mw_adminimize_set_theme() {
1036
-
1037
- if ( !current_user_can('edit_users') )
1038
- wp_die(__('Cheatin&#8217; uh?'));
1039
-
1040
- $user_ids = $_POST[mw_adminimize_theme_items];
1041
- $admin_color = htmlspecialchars( stripslashes( $_POST[_mw_adminimize_set_theme] ) );
1042
-
1043
- if ( !$user_ids )
1044
- return false;
1045
-
1046
- foreach( $user_ids as $user_id) {
1047
- update_usermeta($user_id, 'admin_color', $admin_color);
1048
- }
1049
- }
1050
-
1051
-
1052
- /**
1053
- * read otpions
1054
- */
1055
- function _mw_adminimize_getOptionValue($key) {
1056
-
1057
- $adminimizeoptions = get_option('mw_adminimize');
1058
- return ($adminimizeoptions[$key]);
1059
- }
1060
-
1061
-
1062
- /**
1063
- * Update options in database
1064
- */
1065
- function _mw_adminimize_update() {
1066
- global $menu, $submenu, $adminimizeoptions;
1067
-
1068
- if (isset($_POST['_mw_adminimize_favorite_actions'])) {
1069
- $adminimizeoptions['_mw_adminimize_favorite_actions'] = strip_tags(stripslashes($_POST['_mw_adminimize_favorite_actions']));
1070
- } else {
1071
- $adminimizeoptions['_mw_adminimize_favorite_actions'] = 0;
1072
- }
1073
-
1074
- if (isset($_POST['_mw_adminimize_screen_options'])) {
1075
- $adminimizeoptions['_mw_adminimize_screen_options'] = strip_tags(stripslashes($_POST['_mw_adminimize_screen_options']));
1076
- } else {
1077
- $adminimizeoptions['_mw_adminimize_screen_options'] = 0;
1078
- }
1079
-
1080
- if (isset($_POST['_mw_adminimize_menu_order'])) {
1081
- $adminimizeoptions['_mw_adminimize_menu_order'] = strip_tags(stripslashes($_POST['_mw_adminimize_menu_order']));
1082
- } else {
1083
- $adminimizeoptions['_mw_adminimize_menu_order'] = 0;
1084
- }
1085
-
1086
- if (isset($_POST['_mw_adminimize_user_info'])) {
1087
- $adminimizeoptions['_mw_adminimize_user_info'] = strip_tags(stripslashes($_POST['_mw_adminimize_user_info']));
1088
- } else {
1089
- $adminimizeoptions['_mw_adminimize_user_info'] = 0;
1090
- }
1091
-
1092
- if (isset($_POST['_mw_adminimize_dashmenu'])) {
1093
- $adminimizeoptions['_mw_adminimize_dashmenu'] = strip_tags(stripslashes($_POST['_mw_adminimize_dashmenu']));
1094
- } else {
1095
- $adminimizeoptions['_mw_adminimize_dashmenu'] = 0;
1096
- }
1097
-
1098
- if (isset($_POST['_mw_adminimize_sidebar_wight'])) {
1099
- $adminimizeoptions['_mw_adminimize_sidebar_wight'] = strip_tags(stripslashes($_POST['_mw_adminimize_sidebar_wight']));
1100
- } else {
1101
- $adminimizeoptions['_mw_adminimize_sidebar_wight'] = 0;
1102
- }
1103
-
1104
- if (isset($_POST['_mw_adminimize_footer'])) {
1105
- $adminimizeoptions['_mw_adminimize_footer'] = strip_tags(stripslashes($_POST['_mw_adminimize_footer']));
1106
- } else {
1107
- $adminimizeoptions['_mw_adminimize_footer'] = 0;
1108
- }
1109
-
1110
- if (isset($_POST['_mw_adminimize_writescroll'])) {
1111
- $adminimizeoptions['_mw_adminimize_writescroll'] = strip_tags(stripslashes($_POST['_mw_adminimize_writescroll']));
1112
- } else {
1113
- $adminimizeoptions['_mw_adminimize_writescroll'] = 0;
1114
- }
1115
-
1116
- if (isset($_POST['_mw_adminimize_tb_window'])) {
1117
- $adminimizeoptions['_mw_adminimize_tb_window'] = strip_tags(stripslashes($_POST['_mw_adminimize_tb_window']));
1118
- } else {
1119
- $adminimizeoptions['_mw_adminimize_tb_window'] = 0;
1120
- }
1121
-
1122
- if (isset($_POST['_mw_adminimize_db_redirect'])) {
1123
- $adminimizeoptions['_mw_adminimize_db_redirect'] = strip_tags(stripslashes($_POST['_mw_adminimize_db_redirect']));
1124
- } else {
1125
- $adminimizeoptions['_mw_adminimize_db_redirect'] = 0;
1126
- }
1127
-
1128
- if (isset($_POST['_mw_adminimize_ui_redirect'])) {
1129
- $adminimizeoptions['_mw_adminimize_ui_redirect'] = strip_tags(stripslashes($_POST['_mw_adminimize_ui_redirect']));
1130
- } else {
1131
- $adminimizeoptions['_mw_adminimize_ui_redirect'] = 0;
1132
- }
1133
-
1134
- if (isset($_POST['_mw_adminimize_advice'])) {
1135
- $adminimizeoptions['_mw_adminimize_advice'] = strip_tags(stripslashes($_POST['_mw_adminimize_advice']));
1136
- } else {
1137
- $adminimizeoptions['_mw_adminimize_advice'] = 0;
1138
- }
1139
-
1140
- if (isset($_POST['_mw_adminimize_advice_txt'])) {
1141
- $adminimizeoptions['_mw_adminimize_advice_txt'] = stripslashes($_POST['_mw_adminimize_advice_txt']);
1142
- } else {
1143
- $adminimizeoptions['_mw_adminimize_advice_txt'] = 0;
1144
- }
1145
-
1146
- if (isset($_POST['_mw_adminimize_timestamp'])) {
1147
- $adminimizeoptions['_mw_adminimize_timestamp'] = strip_tags(stripslashes($_POST['_mw_adminimize_timestamp']));
1148
- } else {
1149
- $adminimizeoptions['_mw_adminimize_timestamp'] = 0;
1150
- }
1151
-
1152
- if (isset($_POST['_mw_adminimize_db_redirect_txt'])) {
1153
- $adminimizeoptions['_mw_adminimize_db_redirect_txt'] = stripslashes($_POST['_mw_adminimize_db_redirect_txt']);
1154
- } else {
1155
- $adminimizeoptions['_mw_adminimize_db_redirect_txt'] = 0;
1156
- }
1157
-
1158
- // menu update
1159
- if (isset($_POST['mw_adminimize_disabled_menu_subscriber_items'])) {
1160
- $adminimizeoptions['mw_adminimize_disabled_menu_subscriber_items'] = $_POST['mw_adminimize_disabled_menu_subscriber_items'];
1161
- } else {
1162
- $adminimizeoptions['mw_adminimize_disabled_menu_subscriber_items'] = array();
1163
- }
1164
-
1165
- if (isset($_POST['mw_adminimize_disabled_submenu_subscriber_items'])) {
1166
- $adminimizeoptions['mw_adminimize_disabled_submenu_subscriber_items'] = $_POST['mw_adminimize_disabled_submenu_subscriber_items'];
1167
- } else {
1168
- $adminimizeoptions['mw_adminimize_disabled_submenu_subscriber_items'] = array();
1169
- }
1170
-
1171
- if (isset($_POST['mw_adminimize_disabled_top_menu_subscriber_items'])) {
1172
- $adminimizeoptions['mw_adminimize_disabled_top_menu_subscriber_items'] = $_POST['mw_adminimize_disabled_top_menu_subscriber_items'];
1173
- } else {
1174
- $adminimizeoptions['mw_adminimize_disabled_top_menu_subscriber_items'] = array();
1175
- }
1176
-
1177
- if (isset($_POST['mw_adminimize_disabled_menu_contributor_items'])) {
1178
- $adminimizeoptions['mw_adminimize_disabled_menu_contributor_items'] = $_POST['mw_adminimize_disabled_menu_contributor_items'];
1179
- } else {
1180
- $adminimizeoptions['mw_adminimize_disabled_menu_contributor_items'] = array();
1181
- }
1182
-
1183
- if (isset($_POST['mw_adminimize_disabled_submenu_contributor_items'])) {
1184
- $adminimizeoptions['mw_adminimize_disabled_submenu_contributor_items'] = $_POST['mw_adminimize_disabled_submenu_contributor_items'];
1185
- } else {
1186
- $adminimizeoptions['mw_adminimize_disabled_submenu_contributor_items'] = array();
1187
- }
1188
-
1189
- if (isset($_POST['mw_adminimize_disabled_top_menu_contributor_items'])) {
1190
- $adminimizeoptions['mw_adminimize_disabled_top_menu_contributor_items'] = $_POST['mw_adminimize_disabled_top_menu_contributor_items'];
1191
- } else {
1192
- $adminimizeoptions['mw_adminimize_disabled_top_menu_contributor_items'] = array();
1193
- }
1194
-
1195
- if (isset($_POST['mw_adminimize_disabled_menu_author_items'])) {
1196
- $adminimizeoptions['mw_adminimize_disabled_menu_author_items'] = $_POST['mw_adminimize_disabled_menu_author_items'];
1197
- } else {
1198
- $adminimizeoptions['mw_adminimize_disabled_menu_author_items'] = array();
1199
- }
1200
-
1201
- if (isset($_POST['mw_adminimize_disabled_submenu_author_items'])) {
1202
- $adminimizeoptions['mw_adminimize_disabled_submenu_author_items'] = $_POST['mw_adminimize_disabled_submenu_author_items'];
1203
- } else {
1204
- $adminimizeoptions['mw_adminimize_disabled_submenu_author_items'] = array();
1205
- }
1206
-
1207
- if (isset($_POST['mw_adminimize_disabled_top_menu_author_items'])) {
1208
- $adminimizeoptions['mw_adminimize_disabled_top_menu_author_items'] = $_POST['mw_adminimize_disabled_top_menu_author_items'];
1209
- } else {
1210
- $adminimizeoptions['mw_adminimize_disabled_top_menu_author_items'] = array();
1211
- }
1212
-
1213
- if (isset($_POST['mw_adminimize_disabled_menu_items'])) {
1214
- $adminimizeoptions['mw_adminimize_disabled_menu_items'] = $_POST['mw_adminimize_disabled_menu_items'];
1215
- } else {
1216
- $adminimizeoptions['mw_adminimize_disabled_menu_items'] = array();
1217
- }
1218
-
1219
- if (isset($_POST['mw_adminimize_disabled_submenu_items'])) {
1220
- $adminimizeoptions['mw_adminimize_disabled_submenu_items'] = $_POST['mw_adminimize_disabled_submenu_items'];
1221
- } else {
1222
- $adminimizeoptions['mw_adminimize_disabled_submenu_items'] = array();
1223
- }
1224
-
1225
- if (isset($_POST['mw_adminimize_disabled_top_menu_items'])) {
1226
- $adminimizeoptions['mw_adminimize_disabled_top_menu_items'] = $_POST['mw_adminimize_disabled_top_menu_items'];
1227
- } else {
1228
- $adminimizeoptions['mw_adminimize_disabled_top_menu_items'] = array();
1229
- }
1230
-
1231
- if (isset($_POST['mw_adminimize_disabled_menu_adm_items'])) {
1232
- $adminimizeoptions['mw_adminimize_disabled_menu_adm_items'] = $_POST['mw_adminimize_disabled_menu_adm_items'];
1233
- } else {
1234
- $adminimizeoptions['mw_adminimize_disabled_menu_adm_items'] = array();
1235
- }
1236
-
1237
- if (isset($_POST['mw_adminimize_disabled_submenu_adm_items'])) {
1238
- $adminimizeoptions['mw_adminimize_disabled_submenu_adm_items'] = $_POST['mw_adminimize_disabled_submenu_adm_items'];
1239
- } else {
1240
- $adminimizeoptions['mw_adminimize_disabled_submenu_adm_items'] = array();
1241
- }
1242
-
1243
- if (isset($_POST['mw_adminimize_disabled_top_menu_adm_items'])) {
1244
- $adminimizeoptions['mw_adminimize_disabled_top_menu_adm_items'] = $_POST['mw_adminimize_disabled_top_menu_adm_items'];
1245
- } else {
1246
- $adminimizeoptions['mw_adminimize_disabled_top_menu_adm_items'] = array();
1247
- }
1248
-
1249
- // metaboxes update
1250
- if (isset($_POST['mw_adminimize_disabled_metaboxes_post_adm_items'])) {
1251
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_adm_items'] = $_POST['mw_adminimize_disabled_metaboxes_post_adm_items'];
1252
- } else {
1253
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_adm_items'] = array();
1254
- }
1255
-
1256
- if (isset($_POST['mw_adminimize_disabled_metaboxes_page_adm_items'])) {
1257
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_page_adm_items'] = $_POST['mw_adminimize_disabled_metaboxes_page_adm_items'];
1258
- } else {
1259
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_page_adm_items'] = array();
1260
- }
1261
-
1262
- if (isset($_POST['mw_adminimize_disabled_metaboxes_post_items'])) {
1263
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_items'] = $_POST['mw_adminimize_disabled_metaboxes_post_items'];
1264
- } else {
1265
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_items'] = array();
1266
- }
1267
-
1268
- if (isset($_POST['mw_adminimize_disabled_metaboxes_page_items'])) {
1269
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_page_items'] = $_POST['mw_adminimize_disabled_metaboxes_page_items'];
1270
- } else {
1271
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_page_items'] = array();
1272
- }
1273
-
1274
- if (isset($_POST['mw_adminimize_disabled_metaboxes_post_author_items'])) {
1275
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_author_items'] = $_POST['mw_adminimize_disabled_metaboxes_post_author_items'];
1276
- } else {
1277
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_author_items'] = array();
1278
- }
1279
-
1280
- if (isset($_POST['mw_adminimize_disabled_metaboxes_page_author_items'])) {
1281
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_page_author_items'] = $_POST['mw_adminimize_disabled_metaboxes_page_author_items'];
1282
- } else {
1283
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_page_author_items'] = array();
1284
- }
1285
-
1286
- if (isset($_POST['mw_adminimize_disabled_metaboxes_post_contributor_items'])) {
1287
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_contributor_items'] = $_POST['mw_adminimize_disabled_metaboxes_post_contributor_items'];
1288
- } else {
1289
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_contributor_items'] = array();
1290
- }
1291
-
1292
- if (isset($_POST['mw_adminimize_disabled_metaboxes_page_contributor_items'])) {
1293
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_page_contributor_items'] = $_POST['mw_adminimize_disabled_metaboxes_page_contributor_items'];
1294
- } else {
1295
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_page_contributor_items'] = array();
1296
- }
1297
-
1298
- if (isset($_POST['mw_adminimize_disabled_metaboxes_post_subscriber_items'])) {
1299
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_subscriber_items'] = $_POST['mw_adminimize_disabled_metaboxes_post_subscriber_items'];
1300
- } else {
1301
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_subscriber_items'] = array();
1302
- }
1303
-
1304
- if (isset($_POST['mw_adminimize_disabled_metaboxes_page_subscriber_items'])) {
1305
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_page_subscriber_items'] = $_POST['mw_adminimize_disabled_metaboxes_page_subscriber_items'];
1306
- } else {
1307
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_page_subscriber_items'] = array();
1308
- }
1309
-
1310
- // color scheme
1311
- if (isset($_POST['mw_adminimize_disabled_colorscheme'])) {
1312
- $adminimizeoptions['mw_adminimize_disabled_colorscheme'] = $_POST['mw_adminimize_disabled_colorscheme'];
1313
- } else {
1314
- $adminimizeoptions['mw_adminimize_disabled_colorscheme'] = array();
1315
- }
1316
-
1317
- update_option('mw_adminimize', $adminimizeoptions);
1318
- $adminimizeoptions = get_option('mw_adminimize');
1319
-
1320
- $myErrors = new _mw_adminimize_message_class();
1321
- $myErrors = '<div id="message" class="updated fade"><p>' . $myErrors->get_error('_mw_adminimize_update') . '</p></div>';
1322
- echo $myErrors;
1323
- }
1324
-
1325
-
1326
- /**
1327
- * Delete options in database
1328
- */
1329
- function _mw_adminimize_deinstall() {
1330
-
1331
- delete_option('mw_adminimize');
1332
- }
1333
-
1334
-
1335
- /**
1336
- * Install options in database
1337
- */
1338
- function _mw_adminimize_install() {
1339
- global $menu, $submenu, $top_menu;
1340
-
1341
- $adminimizeoptions = array();
1342
-
1343
- $adminimizeoptions['mw_adminimize_disabled_menu_subscriber_items'] = array();
1344
- $adminimizeoptions['mw_adminimize_disabled_submenu_subscriber_items'] = array();
1345
- $adminimizeoptions['mw_adminimize_disabled_top_menu_subscriber_items'] = array();
1346
- $adminimizeoptions['mw_adminimize_disabled_menu_contributor_items'] = array();
1347
- $adminimizeoptions['mw_adminimize_disabled_submenu_contributor_items'] = array();
1348
- $adminimizeoptions['mw_adminimize_disabled_top_menu_contributor_items'] = array();
1349
- $adminimizeoptions['mw_adminimize_disabled_menu_author_items'] = array();
1350
- $adminimizeoptions['mw_adminimize_disabled_submenu_author_items'] = array();
1351
- $adminimizeoptions['mw_adminimize_disabled_top_menu_author_items'] = array();
1352
- $adminimizeoptions['mw_adminimize_disabled_menu_items'] = array();
1353
- $adminimizeoptions['mw_adminimize_disabled_submenu_items'] = array();
1354
- $adminimizeoptions['mw_adminimize_disabled_top_menu_items'] = array();
1355
- $adminimizeoptions['mw_adminimize_disabled_menu_adm_items'] = array();
1356
- $adminimizeoptions['mw_adminimize_disabled_submenu_adm_items'] = array();
1357
- $adminimizeoptions['mw_adminimize_disabled_top_menu_adm_items'] = array();
1358
-
1359
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_subscriber_items'] = array();
1360
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_page_subscriber_items'] = array();
1361
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_contributor_items'] = array();
1362
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_page_contributor_items'] = array();
1363
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_author_items'] = array();
1364
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_page_author_items'] = array();
1365
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_items'] = array();
1366
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_page_items'] = array();
1367
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_post_adm_items'] = array();
1368
- $adminimizeoptions['mw_adminimize_disabled_metaboxes_page_adm_items'] = array();
1369
-
1370
- $adminimizeoptions['mw_adminimize_default_menu'] = $menu;
1371
- $adminimizeoptions['mw_adminimize_default_submenu'] = $submenu;
1372
- if ( isset($top_menu) )
1373
- $adminimizeoptions['mw_adminimize_default_top_menu'] = $top_menu;
1374
-
1375
- add_option('mw_adminimize', $adminimizeoptions);
1376
- }
1377
- ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
adminimize_export-2010-09-15_7-23-00.seq ADDED
@@ -0,0 +1 @@
 
1
+ a:54:{s:47:"mw_adminimize_disabled_menu_administrator_items";a:0:{}s:50:"mw_adminimize_disabled_submenu_administrator_items";a:0:{}s:56:"mw_adminimize_disabled_global_option_administrator_items";a:0:{}s:57:"mw_adminimize_disabled_metaboxes_post_administrator_items";a:0:{}s:57:"mw_adminimize_disabled_metaboxes_page_administrator_items";a:0:{}s:40:"mw_adminimize_disabled_menu_editor_items";a:0:{}s:43:"mw_adminimize_disabled_submenu_editor_items";a:0:{}s:49:"mw_adminimize_disabled_global_option_editor_items";a:0:{}s:50:"mw_adminimize_disabled_metaboxes_post_editor_items";a:0:{}s:50:"mw_adminimize_disabled_metaboxes_page_editor_items";a:0:{}s:40:"mw_adminimize_disabled_menu_author_items";a:0:{}s:43:"mw_adminimize_disabled_submenu_author_items";a:0:{}s:49:"mw_adminimize_disabled_global_option_author_items";a:0:{}s:50:"mw_adminimize_disabled_metaboxes_post_author_items";a:0:{}s:50:"mw_adminimize_disabled_metaboxes_page_author_items";a:0:{}s:45:"mw_adminimize_disabled_menu_contributor_items";a:0:{}s:48:"mw_adminimize_disabled_submenu_contributor_items";a:0:{}s:54:"mw_adminimize_disabled_global_option_contributor_items";a:0:{}s:55:"mw_adminimize_disabled_metaboxes_post_contributor_items";a:0:{}s:55:"mw_adminimize_disabled_metaboxes_page_contributor_items";a:0:{}s:44:"mw_adminimize_disabled_menu_subscriber_items";a:0:{}s:47:"mw_adminimize_disabled_submenu_subscriber_items";a:1:{i:0;s:9:"index.php";}s:53:"mw_adminimize_disabled_global_option_subscriber_items";a:0:{}s:54:"mw_adminimize_disabled_metaboxes_post_subscriber_items";a:0:{}s:54:"mw_adminimize_disabled_metaboxes_page_subscriber_items";a:0:{}s:26:"mw_adminimize_default_menu";a:16:{i:2;a:7:{i:0;s:9:"Dashboard";i:1;s:4:"read";i:2;s:9:"index.php";i:3;s:0:"";i:4;s:57:"menu-top menu-top-first menu-icon-dashboard menu-top-last";i:5;s:14:"menu-dashboard";i:6;s:3:"div";}i:4;a:5:{i:0;s:0:"";i:1;s:4:"read";i:2;s:10:"separator1";i:3;s:0:"";i:4;s:17:"wp-menu-separator";}i:5;a:7:{i:0;s:7:"Artikel";i:1;s:10:"edit_posts";i:2;s:8:"edit.php";i:3;s:0:"";i:4;s:52:"open-if-no-js menu-top menu-icon-post menu-top-first";i:5;s:10:"menu-posts";i:6;s:3:"div";}i:10;a:7:{i:0;s:9:"Mediathek";i:1;s:12:"upload_files";i:2;s:10:"upload.php";i:3;s:0:"";i:4;s:24:"menu-top menu-icon-media";i:5;s:10:"menu-media";i:6;s:3:"div";}i:15;a:7:{i:0;s:5:"Links";i:1;s:12:"manage_links";i:2;s:16:"link-manager.php";i:3;s:0:"";i:4;s:24:"menu-top menu-icon-links";i:5;s:10:"menu-links";i:6;s:3:"div";}i:20;a:7:{i:0;s:6:"Seiten";i:1;s:10:"edit_pages";i:2;s:23:"edit.php?post_type=page";i:3;s:0:"";i:4;s:23:"menu-top menu-icon-page";i:5;s:10:"menu-pages";i:6;s:3:"div";}i:25;a:7:{i:0;s:94:"Kommentare <span id='awaiting-mod' class='count-0'><span class='pending-count'>0</span></span>";i:1;s:10:"edit_posts";i:2;s:17:"edit-comments.php";i:3;s:0:"";i:4;s:41:"menu-top menu-icon-comments menu-top-last";i:5;s:13:"menu-comments";i:6;s:3:"div";}i:59;a:5:{i:0;s:0:"";i:1;s:4:"read";i:2;s:10:"separator2";i:3;s:0:"";i:4;s:17:"wp-menu-separator";}i:60;a:7:{i:0;s:6:"Design";i:1;s:13:"switch_themes";i:2;s:10:"themes.php";i:3;s:0:"";i:4;s:44:"menu-top menu-icon-appearance menu-top-first";i:5;s:15:"menu-appearance";i:6;s:3:"div";}i:65;a:7:{i:0;s:87:"Plugins <span class='update-plugins count-0'><span class='plugin-count'>0</span></span>";i:1;s:16:"activate_plugins";i:2;s:11:"plugins.php";i:3;s:0:"";i:4;s:26:"menu-top menu-icon-plugins";i:5;s:12:"menu-plugins";i:6;s:3:"div";}i:70;a:7:{i:0;s:8:"Benutzer";i:1;s:10:"list_users";i:2;s:9:"users.php";i:3;s:0:"";i:4;s:24:"menu-top menu-icon-users";i:5;s:10:"menu-users";i:6;s:3:"div";}i:75;a:7:{i:0;s:9:"Werkzeuge";i:1;s:10:"edit_posts";i:2;s:9:"tools.php";i:3;s:0:"";i:4;s:24:"menu-top menu-icon-tools";i:5;s:10:"menu-tools";i:6;s:3:"div";}i:80;a:7:{i:0;s:13:"Einstellungen";i:1;s:14:"manage_options";i:2;s:19:"options-general.php";i:3;s:0:"";i:4;s:41:"menu-top menu-icon-settings menu-top-last";i:5;s:13:"menu-settings";i:6;s:3:"div";}i:99;a:5:{i:0;s:0:"";i:1;s:4:"read";i:2;s:14:"separator-last";i:3;s:0:"";i:4;s:22:"wp-menu-separator-last";}i:100;a:7:{i:0;s:8:"Formular";i:1;s:10:"edit_posts";i:2;s:5:"wpcf7";i:3;s:14:"Contact Form 7";i:4;s:43:"menu-top toplevel_page_wpcf7 menu-top-first";i:5;s:19:"toplevel_page_wpcf7";i:6;s:54:"http://www.brutzelstube.de/wp-admin/images/generic.png";}i:101;a:7:{i:0;s:5:"Polls";i:1;s:12:"manage_polls";i:2;s:26:"wp-polls/polls-manager.php";i:3;s:5:"Polls";i:4;s:59:"menu-top toplevel_page_wp-polls/polls-manager menu-top-last";i:5;s:36:"toplevel_page_wp-polls/polls-manager";i:6;s:70:"http://www.brutzelstube.de/wp-content/plugins/wp-polls/images/poll.png";}}s:29:"mw_adminimize_default_submenu";a:12:{s:9:"index.php";a:4:{i:0;a:3:{i:0;s:9:"Dashboard";i:1;s:4:"read";i:2;s:9:"index.php";}i:10;a:3:{i:0;s:105:"Aktualisierungen <span class='update-plugins count-0' title=''><span class='update-count'>0</span></span>";i:1;s:15:"install_plugins";i:2;s:15:"update-core.php";}i:11;a:4:{i:0;s:10:"Site Stats";i:1;s:13:"administrator";i:2;s:5:"stats";i:3;s:10:"Site Stats";}i:12;a:4:{i:0;s:19:"Akismet-Statistiken";i:1;s:14:"manage_options";i:2;s:21:"akismet-stats-display";i:3;s:19:"Akismet-Statistiken";}}s:8:"edit.php";a:4:{i:5;a:3:{i:0;s:7:"Artikel";i:1;s:10:"edit_posts";i:2;s:8:"edit.php";}i:10;a:3:{i:0;s:9:"Erstellen";i:1;s:10:"edit_posts";i:2;s:12:"post-new.php";}i:15;a:3:{i:0;s:10:"Kategorien";i:1;s:17:"manage_categories";i:2;s:31:"edit-tags.php?taxonomy=category";}i:16;a:3:{i:0;s:13:"Schlagwörter";i:1;s:17:"manage_categories";i:2;s:31:"edit-tags.php?taxonomy=post_tag";}}s:10:"upload.php";a:2:{i:5;a:3:{i:0;s:16:"Medienübersicht";i:1;s:12:"upload_files";i:2;s:10:"upload.php";}i:10;a:3:{i:0;s:17:"Datei hinzufügen";i:1;s:12:"upload_files";i:2;s:13:"media-new.php";}}s:16:"link-manager.php";a:3:{i:5;a:3:{i:0;s:5:"Links";i:1;s:12:"manage_links";i:2;s:16:"link-manager.php";}i:10;a:3:{i:0;s:16:"Link hinzufügen";i:1;s:12:"manage_links";i:2;s:12:"link-add.php";}i:15;a:3:{i:0;s:10:"Kategorien";i:1;s:17:"manage_categories";i:2;s:24:"edit-link-categories.php";}}s:23:"edit.php?post_type=page";a:2:{i:5;a:3:{i:0;s:6:"Seiten";i:1;s:10:"edit_pages";i:2;s:23:"edit.php?post_type=page";}i:10;a:3:{i:0;s:9:"Erstellen";i:1;s:10:"edit_pages";i:2;s:27:"post-new.php?post_type=page";}}s:10:"themes.php";a:5:{i:5;a:3:{i:0;s:6:"Themes";i:1;s:13:"switch_themes";i:2;s:10:"themes.php";}i:7;a:3:{i:0;s:7:"Widgets";i:1;s:18:"edit_theme_options";i:2;s:11:"widgets.php";}i:10;a:3:{i:0;s:6:"Menüs";i:1;s:18:"edit_theme_options";i:2;s:13:"nav-menus.php";}i:11;a:4:{i:0;s:17:"Mystique-Optionen";i:1;s:11:"edit_themes";i:2;s:14:"theme-settings";i:3;s:17:"Mystique-Optionen";}i:12;a:4:{i:0;s:6:"Editor";i:1;s:11:"edit_themes";i:2;s:16:"theme-editor.php";i:3;s:6:"Editor";}}s:11:"plugins.php";a:5:{i:5;a:3:{i:0;s:7:"Plugins";i:1;s:16:"activate_plugins";i:2;s:11:"plugins.php";}i:10;a:3:{i:0;s:12:"Installieren";i:1;s:15:"install_plugins";i:2;s:18:"plugin-install.php";}i:15;a:3:{i:0;s:6:"Editor";i:1;s:12:"edit_plugins";i:2;s:17:"plugin-editor.php";}i:16;a:4:{i:0;s:19:"WordPress.com Stats";i:1;s:14:"manage_options";i:2;s:7:"wpstats";i:3;s:26:"WordPress.com Stats Plugin";}i:17;a:4:{i:0;s:21:"Akismet-Konfiguration";i:1;s:14:"manage_options";i:2;s:18:"akismet-key-config";i:3;s:21:"Akismet-Konfiguration";}}s:9:"users.php";a:8:{i:5;a:3:{i:0;s:8:"Benutzer";i:1;s:10:"list_users";i:2;s:9:"users.php";}i:10;a:3:{i:0;s:11:"Hinzufügen";i:1;s:12:"create_users";i:2;s:12:"user-new.php";}i:15;a:3:{i:0;s:11:"Dein Profil";i:1;s:4:"read";i:2;s:11:"profile.php";}i:16;a:4:{i:0;s:7:"Avatars";i:1;i:1;i:2;s:11:"avatars.php";i:3;s:7:"Avatars";}i:17;a:4:{i:0;s:6:"Rollen";i:1;s:10:"edit_users";i:2;s:19:"role-management.php";i:3;s:17:"Rollen-Verwaltung";}i:18;a:4:{i:0;s:14:"Berechtigungen";i:1;s:10:"edit_users";i:2;s:38:"role-manager/capability-management.php";i:3;s:28:"Verwalten von Berechtigungen";}i:19;a:4:{i:0;s:31:"Rollen/Berechtigungen allgemein";i:1;s:10:"edit_users";i:2;s:11:"general.php";i:3;s:31:"Rollen/Berechtigungen allgemein";}i:20;a:4:{i:0;s:30:"Hilfe zu Rollen/Berechtigungen";i:1;s:10:"edit_users";i:2;s:8:"help.php";i:3;s:30:"Hilfe zu Rollen/Berechtigungen";}}s:9:"tools.php";a:4:{i:5;a:3:{i:0;s:9:"Werkzeuge";i:1;s:10:"edit_posts";i:2;s:9:"tools.php";}i:10;a:3:{i:0;s:17:"Daten importieren";i:1;s:6:"import";i:2;s:10:"import.php";}i:15;a:3:{i:0;s:17:"Daten exportieren";i:1;s:6:"import";i:2;s:10:"export.php";}i:16;a:4:{i:0;s:6:"Backup";i:1;s:6:"import";i:2;s:12:"wp-db-backup";i:3;s:6:"Backup";}}s:19:"options-general.php";a:16:{i:10;a:3:{i:0;s:9:"Allgemein";i:1;s:14:"manage_options";i:2;s:19:"options-general.php";}i:15;a:3:{i:0;s:9:"Schreiben";i:1;s:14:"manage_options";i:2;s:19:"options-writing.php";}i:20;a:3:{i:0;s:5:"Lesen";i:1;s:14:"manage_options";i:2;s:19:"options-reading.php";}i:25;a:3:{i:0;s:10:"Diskussion";i:1;s:14:"manage_options";i:2;s:22:"options-discussion.php";}i:30;a:3:{i:0;s:9:"Mediathek";i:1;s:14:"manage_options";i:2;s:17:"options-media.php";}i:35;a:3:{i:0;s:13:"Privatsphäre";i:1;s:14:"manage_options";i:2;s:19:"options-privacy.php";}i:40;a:3:{i:0;s:10:"Permalinks";i:1;s:14:"manage_options";i:2;s:21:"options-permalink.php";}i:41;a:4:{i:0;s:83:"<img src="http://www.brutzelstube.de/?resource=adminimize.gif" alt="" /> Adminimize";i:1;s:15:"unfiltered_html";i:2;s:25:"adminimize/adminimize.php";i:3;s:24:"Adminimize Einstellungen";}i:42;a:4:{i:0;s:19:"Faster Image Insert";i:1;i:8;i:2;s:43:"faster-image-insert/faster-image-insert.php";i:3;s:34:"Faster Image Insert - User Options";}i:43;a:4:{i:0;s:6:"Flattr";i:1;s:14:"manage_options";i:2;s:19:"flattr/settings.php";i:3;s:12:"Flattr Setup";}i:44;a:4:{i:0;s:16:"Google Analytics";i:1;i:8;i:2;s:23:"google-analyticator.php";i:3;s:28:"Google Analyticator Settings";}i:45;a:4:{i:0;s:16:"Google Analytics";i:1;s:10:"edit_users";i:2;s:30:"google-analytics-for-wordpress";i:3;s:30:"Google Analytics Configuration";}i:46;a:4:{i:0;s:12:"DDSitemapGen";i:1;i:8;i:2;s:39:"sitemap-generator/sitemap-generator.php";i:3;s:30:"Dagon Design Sitemap Generator";}i:47;a:4:{i:0;s:8:"WordTwit";i:1;i:9;i:2;s:12:"wordtwit.php";i:3;s:8:"WordTwit";}i:48;a:4:{i:0;s:10:"Mime types";i:1;s:14:"manage_options";i:2;s:15:"pjw-mime-config";i:3;s:10:"Mime types";}i:49;a:4:{i:0;s:16:"Comment Notifier";i:1;s:14:"manage_options";i:2;s:28:"comment-notifier/options.php";i:3;s:16:"Comment Notifier";}}s:5:"wpcf7";a:1:{i:0;a:4:{i:0;s:10:"Bearbeiten";i:1;s:10:"edit_posts";i:2;s:5:"wpcf7";i:3;s:23:"Bearbeite Contact Forms";}}s:26:"wp-polls/polls-manager.php";a:5:{i:0;a:4:{i:0;s:12:"Manage Polls";i:1;s:12:"manage_polls";i:2;s:26:"wp-polls/polls-manager.php";i:3;s:12:"Manage Polls";}i:1;a:4:{i:0;s:8:"Add Poll";i:1;s:12:"manage_polls";i:2;s:22:"wp-polls/polls-add.php";i:3;s:8:"Add Poll";}i:2;a:4:{i:0;s:12:"Poll Options";i:1;s:12:"manage_polls";i:2;s:26:"wp-polls/polls-options.php";i:3;s:12:"Poll Options";}i:3;a:4:{i:0;s:14:"Poll Templates";i:1;s:12:"manage_polls";i:2;s:28:"wp-polls/polls-templates.php";i:3;s:14:"Poll Templates";}i:4;a:4:{i:0;s:18:"Uninstall WP-Polls";i:1;s:12:"manage_polls";i:2;s:28:"wp-polls/polls-uninstall.php";i:3;s:18:"Uninstall WP-Polls";}}}s:24:"_mw_adminimize_user_info";s:1:"0";s:23:"_mw_adminimize_dashmenu";i:0;s:21:"_mw_adminimize_footer";s:1:"0";s:21:"_mw_adminimize_header";s:1:"0";s:26:"_mw_adminimize_writescroll";s:1:"0";s:24:"_mw_adminimize_tb_window";s:1:"0";s:23:"_mw_adminimize_cat_full";s:1:"0";s:26:"_mw_adminimize_db_redirect";s:1:"0";s:26:"_mw_adminimize_ui_redirect";i:0;s:21:"_mw_adminimize_advice";s:1:"0";s:25:"_mw_adminimize_advice_txt";s:0:"";s:24:"_mw_adminimize_timestamp";s:1:"0";s:34:"_mw_adminimize_control_flashloader";s:1:"0";s:30:"_mw_adminimize_db_redirect_txt";s:0:"";s:54:"mw_adminimize_disabled_link_option_administrator_items";a:0:{}s:47:"mw_adminimize_disabled_link_option_editor_items";a:0:{}s:47:"mw_adminimize_disabled_link_option_author_items";a:0:{}s:52:"mw_adminimize_disabled_link_option_contributor_items";a:0:{}s:51:"mw_adminimize_disabled_link_option_subscriber_items";a:0:{}s:25:"_mw_adminimize_own_values";s:0:"";s:26:"_mw_adminimize_own_options";s:0:"";s:30:"_mw_adminimize_own_post_values";s:0:"";s:31:"_mw_adminimize_own_post_options";s:0:"";s:30:"_mw_adminimize_own_page_values";s:0:"";s:31:"_mw_adminimize_own_page_options";s:0:"";s:30:"_mw_adminimize_own_link_values";s:0:"";s:31:"_mw_adminimize_own_link_options";s:0:"";}
adminimize_page.php DELETED
@@ -1,905 +0,0 @@
1
- <?php
2
- /**
3
- * options-page in wp-admin
4
- */
5
- function _mw_adminimize_options() {
6
- global $wpdb, $_wp_admin_css_colors, $wp_version;
7
-
8
- _mw_adminimize_user_info == '';
9
-
10
- // update options
11
- if ( ($_POST['_mw_adminimize_action'] == '_mw_adminimize_insert') && $_POST['_mw_adminimize_save'] ) {
12
-
13
- if ( function_exists('current_user_can') && current_user_can('edit_plugins') ) {
14
- check_admin_referer('mw_adminimize_nonce');
15
-
16
- _mw_adminimize_update();
17
-
18
- } else {
19
- $myErrors = new _mw_adminimize_message_class();
20
- $myErrors = '<div id="message" class="error"><p>' . $myErrors->get_error('_mw_adminimize_access_denied') . '</p></div>';
21
- wp_die($myErrors);
22
- }
23
- }
24
-
25
- // deinstall options
26
- if ( ($_POST['_mw_adminimize_action'] == '_mw_adminimize_deinstall') && ($_POST['_mw_adminimize_deinstall_yes'] != '_mw_adminimize_deinstall') ) {
27
- $myErrors = new _mw_adminimize_message_class();
28
- $myErrors = '<div id="message" class="error"><p>' . $myErrors->get_error('_mw_adminimize_deinstall_yes') . '</p></div>';
29
- wp_die($myErrors);
30
- }
31
-
32
- if ( ($_POST['_mw_adminimize_action'] == '_mw_adminimize_deinstall') && $_POST['_mw_adminimize_deinstall'] && ($_POST['_mw_adminimize_deinstall_yes'] == '_mw_adminimize_deinstall') ) {
33
-
34
- if ( function_exists('current_user_can') && current_user_can('edit_plugins') ) {
35
- check_admin_referer('mw_adminimize_nonce');
36
-
37
- _mw_adminimize_deinstall();
38
-
39
- $myErrors = new _mw_adminimize_message_class();
40
- $myErrors = '<div id="message" class="updated fade"><p>' . $myErrors->get_error('_mw_adminimize_deinstall') . '</p></div>';
41
- echo $myErrors;
42
- } else {
43
- $myErrors = new _mw_adminimize_message_class();
44
- $myErrors = '<div id="message" class="error"><p>' . $myErrors->get_error('_mw_adminimize_access_denied') . '</p></div>';
45
- wp_die($myErrors);
46
- }
47
- }
48
-
49
- if ( ($_POST['_mw_adminimize_action'] == '_mw_adminimize_set_theme') && $_POST['_mw_adminimize_save'] ) {
50
- if ( function_exists('current_user_can') && current_user_can('edit_users') ) {
51
- check_admin_referer('mw_adminimize_nonce');
52
-
53
- _mw_adminimize_set_theme();
54
-
55
- $myErrors = new _mw_adminimize_message_class();
56
- $myErrors = '<div id="message" class="updated fade"><p>' . $myErrors->get_error('_mw_adminimize_set_theme') . '</p></div>';
57
- echo $myErrors;
58
- } else {
59
- $myErrors = new _mw_adminimize_message_class();
60
- $myErrors = '<div id="message" class="error"><p>' . $myErrors->get_error('_mw_adminimize_access_denied') . '</p></div>';
61
- wp_die($myErrors);
62
- }
63
- }
64
- ?>
65
- <div class="wrap">
66
- <h2><?php _e('Adminimize', 'adminimize'); ?></h2>
67
- <br class="clear" />
68
- <div id="poststuff" class="ui-sortable">
69
- <div class="postbox closed" >
70
- <h3><?php _e('Backend Options', 'adminimize'); ?></h3>
71
- <div class="inside">
72
-
73
- <form name="backend_option" method="post" id="_mw_adminimize_options" action="?page=<?php echo $_GET['page'];?>" >
74
- <?php wp_nonce_field('mw_adminimize_nonce'); ?>
75
- <br class="clear" />
76
- <table summary="config" class="widefat">
77
- <tbody>
78
- <?php if ( version_compare( substr($wp_version, 0, 3), '2.7', '>=' ) ) { ?>
79
- <tr valign="top">
80
- <td><?php _e('Favorite Actions', 'adminimize'); ?></td>
81
- <td>
82
- <?php $_mw_adminimize_favorite_actions = _mw_adminimize_getOptionValue('_mw_adminimize_favorite_actions'); ?>
83
- <select name="_mw_adminimize_favorite_actions">
84
- <option value="0"<?php if ($_mw_adminimize_favorite_actions == '0') { echo ' selected="selected"'; } ?>><?php _e('Default', 'adminimize'); ?></option>
85
- <option value="1"<?php if ($_mw_adminimize_favorite_actions == '1') { echo ' selected="selected"'; } ?>><?php _e('Activate', 'adminimize'); ?></option>
86
- </select> <?php _e('It is possible to hide the favorite-actions in the header.', 'adminimize'); ?>
87
- </td>
88
- </tr>
89
- <tr valign="top">
90
- <td><?php _e('Screen Options', 'adminimize'); ?></td>
91
- <td>
92
- <?php $_mw_adminimize_screen_options = _mw_adminimize_getOptionValue('_mw_adminimize_screen_options'); ?>
93
- <select name="_mw_adminimize_screen_options">
94
- <option value="0"<?php if ($_mw_adminimize_screen_options == '0') { echo ' selected="selected"'; } ?>><?php _e('Default', 'adminimize'); ?></option>
95
- <option value="1"<?php if ($_mw_adminimize_screen_options == '1') { echo ' selected="selected"'; } ?>><?php _e('Activate', 'adminimize'); ?></option>
96
- </select> <?php _e('It is possible to hide the screen-options.', 'adminimize'); ?>
97
- </td>
98
- </tr>
99
- <?php } ?>
100
- <tr valign="top">
101
- <td><?php _e('Menu Order', 'adminimize'); ?></td>
102
- <td>
103
- <?php $_mw_adminimize_menu_order = _mw_adminimize_getOptionValue('_mw_adminimize_menu_order'); ?>
104
- <select name="_mw_adminimize_menu_order">
105
- <option value="0"<?php if ($_mw_adminimize_menu_order == '0') { echo ' selected="selected"'; } ?>><?php _e('Default', 'adminimize'); ?></option>
106
- <option value="1"<?php if ($_mw_adminimize_menu_order == '1') { echo ' selected="selected"'; } ?>><?php _e('Activate', 'adminimize'); ?></option>
107
- </select> <?php _e('It is possible to set a new menu-order.', 'adminimize'); ?>
108
- </td>
109
- </tr>
110
- <tr valign="top">
111
- <td><?php _e('Sidebar Width', 'adminimize'); ?></td>
112
- <td>
113
- <?php $_mw_adminimize_sidebar_wight = _mw_adminimize_getOptionValue('_mw_adminimize_sidebar_wight'); ?>
114
- <select name="_mw_adminimize_sidebar_wight">
115
- <option value="0"<?php if ($_mw_adminimize_sidebar_wight == '0') { echo ' selected="selected"'; } ?>><?php _e('Default', 'adminimize'); ?></option>
116
- <option value="300"<?php if ($_mw_adminimize_sidebar_wight == '300') { echo ' selected="selected"'; } ?>>300px</option>
117
- <option value="400"<?php if ($_mw_adminimize_sidebar_wight == '400') { echo ' selected="selected"'; } ?>>400px</option>
118
- <option value="20"<?php if ($_mw_adminimize_sidebar_wight == '20') { echo ' selected="selected"'; } ?>>20%</option>
119
- <option value="30"<?php if ($_mw_adminimize_sidebar_wight == '30') { echo ' selected="selected"'; } ?>>30%</option>
120
- </select> <?php _e('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>', 'adminimize'); ?>
121
- </td>
122
- </tr>
123
- <?php
124
- /**
125
- * for WP 2.7
126
- * new @ version 1.5
127
- */
128
- if ( isset( $top_menu ) && ($top_menu != '') ) {
129
- ?>
130
- <tr valign="top">
131
- <td><?php _e('Dashmenu', 'adminimize'); ?></td>
132
- <td>
133
- <?php $_mw_adminimize_dashmenu = _mw_adminimize_getOptionValue('_mw_adminimize_dashmenu'); ?>
134
- <select name="_mw_adminimize_dashmenu">
135
- <option value="0"<?php if ($_mw_adminimize_dashmenu == '0') { echo ' selected="selected"'; } ?>><?php _e('Default', 'adminimize'); ?></option>
136
- <option value="1"<?php if ($_mw_adminimize_dashmenu == '1') { echo ' selected="selected"'; } ?>><?php _e('Hide', 'adminimize'); ?></option>
137
- </select> <?php _e('The &quot;Dashboard-area&quot; is on the top left side of the backend. You can hide show.', 'adminimize'); ?>
138
- </td>
139
- </tr>
140
- <?php } ?>
141
- <tr valign="top">
142
- <td><?php _e('User-Info', 'adminimize'); ?></td>
143
- <td>
144
- <?php $_mw_adminimize_user_info = _mw_adminimize_getOptionValue('_mw_adminimize_user_info'); ?>
145
- <select name="_mw_adminimize_user_info">
146
- <option value="0"<?php if ($_mw_adminimize_user_info == '0') { echo ' selected="selected"'; } ?>><?php _e('Default', 'adminimize'); ?></option>
147
- <option value="1"<?php if ($_mw_adminimize_user_info == '1') { echo ' selected="selected"'; } ?>><?php _e('Hide', 'adminimize'); ?></option>
148
- <option value="2"<?php if ($_mw_adminimize_user_info == '2') { echo ' selected="selected"'; } ?>><?php _e('Only logout', 'adminimize'); ?></option>
149
- <option value="3"<?php if ($_mw_adminimize_user_info == '3') { echo ' selected="selected"'; } ?>><?php _e('User &amp; Logout', 'adminimize'); ?></option>
150
- </select> <?php _e('The &quot;User-Info-area&quot; is on the top right side of the backend. You can hide or reduced show.', 'adminimize'); ?>
151
- </td>
152
- </tr>
153
- <?php if ( ($_mw_adminimize_user_info == '') || ($_mw_adminimize_user_info == '1') || ($_mw_adminimize_user_info == '0') ) $disabled_item = ' disabled="disabled"' ?>
154
- <tr valign="top" class="form-invalid">
155
- <td><?php _e('Change User-Info, redirect to', 'adminimize'); ?></td>
156
- <td>
157
- <?php $_mw_adminimize_ui_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_ui_redirect'); ?>
158
- <select name="_mw_adminimize_ui_redirect" <?php echo $disabled_item ?>>
159
- <option value="0"<?php if ($_mw_adminimize_ui_redirect == '0') { echo ' selected="selected"'; } ?>><?php _e('Default', 'adminimize'); ?></option>
160
- <option value="1"<?php if ($_mw_adminimize_ui_redirect == '1') { echo ' selected="selected"'; } ?>><?php _e('Frontpage of the Blog', 'adminimize'); ?>
161
- </select> <?php _e('When the &quot;User-Info-area&quot; change it, then it is possible to change the redirect.', 'adminimize'); ?>
162
- </td>
163
- </tr>
164
- <tr valign="top">
165
- <td><?php _e('Admin Color Scheme', 'adminimize'); ?></td>
166
- <td>
167
- <?php $mw_adminimize_disabled_colorscheme = _mw_adminimize_getOptionValue('mw_adminimize_disabled_colorscheme'); ?>
168
- <select name="mw_adminimize_disabled_colorscheme">
169
- <option value="0"<?php if ($mw_adminimize_disabled_colorscheme == '0') { echo ' selected="selected"'; } ?>><?php _e('Default', 'adminimize'); ?></option>
170
- <option value="1"<?php if ($mw_adminimize_disabled_colorscheme == '1') { echo ' selected="selected"'; } ?>><?php _e('Activate', 'adminimize'); ?></option>
171
- </select> <?php _e('It is possible to hide the Admin Color Schemes.', 'adminimize'); ?>
172
- </td>
173
- </tr>
174
- <tr valign="top">
175
- <td><?php _e('Footer', 'adminimize'); ?></td>
176
- <td>
177
- <?php $_mw_adminimize_footer = _mw_adminimize_getOptionValue('_mw_adminimize_footer'); ?>
178
- <select name="_mw_adminimize_footer">
179
- <option value="0"<?php if ($_mw_adminimize_footer == '0') { echo ' selected="selected"'; } ?>><?php _e('Default', 'adminimize'); ?></option>
180
- <option value="1"<?php if ($_mw_adminimize_footer == '1') { echo ' selected="selected"'; } ?>><?php _e('Hide', 'adminimize'); ?></option>
181
- </select> <?php _e('The Footer-area kann hide, include all links and details.', 'adminimize'); ?>
182
- </td>
183
- </tr>
184
- <tr valign="top">
185
- <td><?php _e('WriteScroll', 'adminimize'); ?></td>
186
- <td>
187
- <?php $_mw_adminimize_writescroll = _mw_adminimize_getOptionValue('_mw_adminimize_writescroll'); ?>
188
- <select name="_mw_adminimize_writescroll">
189
- <option value="0"<?php if ($_mw_adminimize_writescroll == '0') { echo ' selected="selected"'; } ?>><?php _e('Default', 'adminimize'); ?></option>
190
- <option value="1"<?php if ($_mw_adminimize_writescroll == '1') { echo ' selected="selected"'; } ?>><?php _e('Activate', 'adminimize'); ?></option>
191
- </select> <?php _e('With the WriteScroll option active, these pages will automatically scroll to an optimal position for editing, when you visit Write Post or Write Page.', 'adminimize'); ?>
192
- </td>
193
- </tr>
194
- <tr valign="top">
195
- <td><?php _e('Timestamp', 'adminimize'); ?></td>
196
- <td>
197
- <?php $_mw_adminimize_timestamp = _mw_adminimize_getOptionValue('_mw_adminimize_timestamp'); ?>
198
- <select name="_mw_adminimize_timestamp">
199
- <option value="0"<?php if ($_mw_adminimize_timestamp == '0') { echo ' selected="selected"'; } ?>><?php _e('Default', 'adminimize'); ?></option>
200
- <option value="1"<?php if ($_mw_adminimize_timestamp == '1') { echo ' selected="selected"'; } ?>><?php _e('Activate', 'adminimize'); ?></option>
201
- </select> <?php _e('Opens the post timestamp editing fields without you having to click the "Edit" link every time.', 'adminimize'); ?>
202
- </td>
203
- </tr>
204
- <tr valign="top">
205
- <td><?php _e('Thickbox FullScreen', 'adminimize'); ?></td>
206
- <td>
207
- <?php $_mw_adminimize_tb_window = _mw_adminimize_getOptionValue('_mw_adminimize_tb_window'); ?>
208
- <select name="_mw_adminimize_tb_window">
209
- <option value="0"<?php if ($_mw_adminimize_tb_window == '0') { echo ' selected="selected"'; } ?>><?php _e('Default', 'adminimize'); ?></option>
210
- <option value="1"<?php if ($_mw_adminimize_tb_window == '1') { echo ' selected="selected"'; } ?>><?php _e('Activate', 'adminimize'); ?></option>
211
- </select> <?php _e('All Thickbox-function use the full area of the browser. Thickbox is for examble in upload media-files.', 'adminimize'); ?>
212
- </td>
213
- </tr>
214
- <tr valign="top">
215
- <td><?php _e('Advice in Footer', 'adminimize'); ?></td>
216
- <td>
217
- <?php $_mw_adminimize_advice = _mw_adminimize_getOptionValue('_mw_adminimize_advice'); ?>
218
- <select name="_mw_adminimize_advice">
219
- <option value="0"<?php if ($_mw_adminimize_advice == '0') { echo ' selected="selected"'; } ?>><?php _e('Default', 'adminimize'); ?></option>
220
- <option value="1"<?php if ($_mw_adminimize_advice == '1') { echo ' selected="selected"'; } ?>><?php _e('Activate', 'adminimize'); ?></option>
221
- </select>
222
- <textarea style="width: 85%;" class="code" rows="1" cols="60" name="_mw_adminimize_advice_txt" id="_mw_adminimize_advice_txt" ><?php echo htmlspecialchars(stripslashes(_mw_adminimize_getOptionValue('_mw_adminimize_advice_txt'))); ?></textarea><br /><?php _e('In the Footer kann you display a advice for change the Default-design, (x)HTML is possible.', 'adminimize'); ?>
223
- </td>
224
- </tr>
225
- <?php
226
- // when remove dashboard
227
- $disabled_menu_subscriber = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_subscriber_items');
228
- $disabled_submenu_subscriber = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_subscriber_items');
229
- $disabled_top_menu_subscriber = _mw_adminimize_getOptionValue('mw_adminimize_disabled_top_menu_subscriber_items');
230
- $disabled_menu_contributor = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_contributor_items');
231
- $disabled_submenu_contributor = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_contributor_items');
232
- $disabled_top_menu_contributor = _mw_adminimize_getOptionValue('mw_adminimize_disabled_top_menu_contributor_items');
233
- $disabled_menu_author = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_author_items');
234
- $disabled_submenu_author = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_author_items');
235
- $disabled_top_menu_author = _mw_adminimize_getOptionValue('mw_adminimize_disabled_top_menu_author_items');
236
- $disabled_menu = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_items');
237
- $disabled_submenu = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_items');
238
- $disabled_top_menu = _mw_adminimize_getOptionValue('mw_adminimize_disabled_top_menu_items');
239
- $disabled_menu_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_adm_items');
240
- $disabled_submenu_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_adm_items');
241
- $disabled_top_menu_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_top_menu_adm_items');
242
-
243
- $disabled_menu_all = array();
244
- array_push($disabled_menu_all, $disabled_menu_subscriber);
245
- array_push($disabled_menu_all, $disabled_submenu_subscriber);
246
- array_push($disabled_menu_all, $disabled_top_menu_subscriber);
247
- array_push($disabled_menu_all, $disabled_menu_contributor);
248
- array_push($disabled_menu_all, $disabled_submenu_contributor);
249
- array_push($disabled_menu_all, $disabled_top_menu_contributor);
250
- array_push($disabled_menu_all, $disabled_menu_author);
251
- array_push($disabled_menu_all, $disabled_submenu_author);
252
- array_push($disabled_menu_all, $disabled_top_menu_author);
253
- array_push($disabled_menu_all, $disabled_menu);
254
- array_push($disabled_menu_all, $disabled_submenu);
255
- array_push($disabled_menu_all, $disabled_top_menu);
256
- array_push($disabled_menu_all, $disabled_menu_adm);
257
- array_push($disabled_menu_all, $disabled_submenu_adm);
258
- array_push($disabled_menu_all, $disabled_top_menu_adm);
259
-
260
- if ($disabled_menu_all != '') {
261
- if ( !recursive_in_array('index.php', $disabled_menu_all) ) {
262
- $disabled_item2 = ' disabled="disabled"';
263
- }
264
- ?>
265
- <tr valign="top" class="form-invalid">
266
- <td><?php _e('Dashboard deaktivate, redirect to', 'adminimize'); ?></td>
267
- <td>
268
- <?php $_mw_adminimize_db_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_db_redirect'); ?>
269
- <select name="_mw_adminimize_db_redirect"<?php echo $disabled_item2; ?>>
270
- <option value="0"<?php if ($_mw_adminimize_db_redirect == '0') { echo ' selected="selected"'; } ?>><?php _e('Default', 'adminimize'); ?> (profile.php)</option>
271
- <option value="1"<?php if ($_mw_adminimize_db_redirect == '1') { echo ' selected="selected"'; } ?>><?php _e('Manage Posts', 'adminimize'); ?> (edit.php)</option>
272
- <option value="2"<?php if ($_mw_adminimize_db_redirect == '2') { echo ' selected="selected"'; } ?>><?php _e('Manage Pages', 'adminimize'); ?> (edit-pages.php)</option>
273
- <option value="3"<?php if ($_mw_adminimize_db_redirect == '3') { echo ' selected="selected"'; } ?>><?php _e('Write Post', 'adminimize'); ?> (post-new.php)</option>
274
- <option value="4"<?php if ($_mw_adminimize_db_redirect == '4') { echo ' selected="selected"'; } ?>><?php _e('Write Page', 'adminimize'); ?> (page-new.php)</option>
275
- <option value="5"<?php if ($_mw_adminimize_db_redirect == '5') { echo ' selected="selected"'; } ?>><?php _e('Comments', 'adminimize'); ?> (edit-comments.php)</option>
276
- <option value="6"<?php if ($_mw_adminimize_db_redirect == '6') { echo ' selected="selected"'; } ?>><?php _e('other Page', 'adminimize'); ?></option>
277
- </select>
278
- <textarea style="width: 85%;" class="code" rows="1" cols="60" name="_mw_adminimize_db_redirect_txt" id="_mw_adminimize_db_redirect_txt" ><?php echo htmlspecialchars(stripslashes(_mw_adminimize_getOptionValue('_mw_adminimize_db_redirect_txt'))); ?></textarea>
279
- <br /><?php _e('You have deaktivate the Dashboard, please select a page for redirect?', 'adminimize'); ?>
280
- </td>
281
- </tr>
282
- <?php
283
- }
284
- ?>
285
- </tbody>
286
- </table>
287
- <p id="submitbutton">
288
- <input class="button button-primary" type="submit" name="_mw_adminimize_save" value="<?php _e('Update Options', 'adminimize'); ?> &raquo;" /><input type="hidden" name="page_options" value="'dofollow_timeout'" />
289
- </p>
290
-
291
- </div>
292
- </div>
293
- </div>
294
-
295
- <?php
296
- /**
297
- * for WP 2.7
298
- * new @ version 1.5
299
- */
300
- if ( isset( $top_menu ) && ($top_menu != '') ) {
301
- ?>
302
- <div id="poststuff" class="ui-sortable">
303
- <div class="postbox closed" >
304
- <h3 id="config_top_menu"><?php _e('Top Menu Options', 'adminimize'); ?></h3>
305
- <div class="inside">
306
- <br class="clear" />
307
- <table summary="config_top_menu" class="widefat">
308
- <thead>
309
- <tr>
310
- <th><?php _e('Top Menu Options', 'adminimize'); ?></th>
311
- <th><?php _e('Deactivate for Subscriber', 'adminimize'); ?></th>
312
- <th><?php _e('Deactivate for Contributor', 'adminimize'); ?></th>
313
- <th><?php _e('Deactivate for Author', 'adminimize'); ?></th>
314
- <th><?php _e('Deactivate for Editor', 'adminimize'); ?></th>
315
- <th><?php _e('Deactivate for Administrator', 'adminimize'); ?></th>
316
- </tr>
317
- </thead>
318
- <tbody>
319
- <?php
320
- $top_menu = _mw_adminimize_getOptionValue('mw_adminimize_default_top_menu');
321
-
322
- $x = 0;
323
- foreach ($top_menu as $item) {
324
-
325
- // checkbox checked
326
- if ( in_array($item[2], $disabled_top_menu_subscriber) ) {
327
- $checked_subscriber = ' checked="checked"';
328
- } else {
329
- $checked_subscriber = '';
330
- }
331
-
332
- // checkbox checked
333
- if ( in_array($item[2], $disabled_top_menu_contributor) ) {
334
- $checked_contributor = ' checked="checked"';
335
- } else {
336
- $checked_contributor = '';
337
- }
338
-
339
- // checkbox checked
340
- if ( in_array($item[2], $disabled_top_menu_author) ) {
341
- $checked_author = ' checked="checked"';
342
- } else {
343
- $checked_author = '';
344
- }
345
-
346
- // checkbox checked
347
- if ( in_array($item[2], $disabled_top_menu) ) {
348
- $checked = ' checked="checked"';
349
- } else {
350
- $checked = '';
351
- }
352
-
353
- // checkbox checked for admin
354
- if ( in_array($item[2], $disabled_top_menu_adm) ) {
355
- $checked_adm = ' checked="checked"';
356
- } else {
357
- $checked_adm = '';
358
- }
359
-
360
- echo '<tr>' . "\n";
361
- echo "\t" . '<th>' . $item[0] . ' <span style="color:#ccc; font-weight: 400;">(' . $item[2] . ')</span> </th>';
362
- echo "\t" . '<td class="num"><input id="check_top_menusubscriber'. $x .'" type="checkbox"' . $checked_subscriber . ' name="mw_adminimize_disabled_top_menu_subscriber_items[]" value="' . $item[2] . '"/></td>' . "\n";
363
- echo "\t" . '<td class="num"><input id="check_top_menucontributor'. $x .'" type="checkbox"' . $checked_contributor . ' name="mw_adminimize_disabled_top_menu_contributor_items[]" value="' . $item[2] . '"/></td>' . "\n";
364
- echo "\t" . '<td class="num"><input id="check_top_menuauthor'. $x .'" type="checkbox"' . $checked_author . ' name="mw_adminimize_disabled_top_menu_author_items[]" value="' . $item[2] . '"/></td>' . "\n";
365
- echo "\t" . '<td class="num"><input id="check_top_menu'. $x .'" type="checkbox"' . $checked . ' name="mw_adminimize_disabled_top_menu_items[]" value="' . $item[2] . '"/></td>' . "\n";
366
- echo "\t" . '<td class="num"><input id="check_top_menuadm'. $x .'" type="checkbox"' . $checked_adm . ' name="mw_adminimize_disabled_top_menu_adm_items[]" value="' . $item[2] . '"/></td>' . "\n";
367
- echo '</tr>';
368
- $x++;
369
- }
370
- ?>
371
- </tbody>
372
- </table>
373
- <p id="submitbutton">
374
- <input class="button button-primary" type="submit" name="_mw_adminimize_save" value="<?php _e('Update Options', 'adminimize'); ?> &raquo;" /><input type="hidden" name="page_options" value="'dofollow_timeout'" />
375
- </p>
376
-
377
- </div>
378
- </div>
379
- </div>
380
- <?php } ?>
381
-
382
- <div id="poststuff" class="ui-sortable">
383
- <div class="postbox closed" >
384
- <h3 id="config_menu"><?php _e('Menu Options', 'adminimize'); ?></h3>
385
- <div class="inside">
386
- <br class="clear" />
387
- <table summary="config_menu" class="widefat">
388
- <thead>
389
- <tr>
390
- <th><?php _e('Menu options - Menu, <span style=\"font-weight: 400;\">Submenu</span>', 'adminimize'); ?></th>
391
- <th><?php _e('Deactivate for Subscriber', 'adminimize'); ?></th>
392
- <th><?php _e('Deactivate for Contributor', 'adminimize'); ?></th>
393
- <th><?php _e('Deactivate for Author', 'adminimize'); ?></th>
394
- <th><?php _e('Deactivate for Editor', 'adminimize'); ?></th>
395
- <th><?php _e('Deactivate for Administrator', 'adminimize'); ?></th>
396
- </tr>
397
- </thead>
398
- <tbody>
399
- <?php
400
- $menu = _mw_adminimize_getOptionValue('mw_adminimize_default_menu');
401
- $submenu = _mw_adminimize_getOptionValue('mw_adminimize_default_submenu');
402
-
403
- $disabled_metaboxes_post_subscriber = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_subscriber_items');
404
- $disabled_metaboxes_page_subscriber = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_subscriber_items');
405
- $disabled_metaboxes_post_contributor = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_contributor_items');
406
- $disabled_metaboxes_page_contributor = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_contributor_items');
407
- $disabled_metaboxes_post_author = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_author_items');
408
- $disabled_metaboxes_page_author = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_author_items');
409
- $disabled_metaboxes_post = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_items');
410
- $disabled_metaboxes_page = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_items');
411
- $disabled_metaboxes_post_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_post_adm_items');
412
- $disabled_metaboxes_page_adm = _mw_adminimize_getOptionValue('mw_adminimize_disabled_metaboxes_page_adm_items');
413
-
414
- $metaboxes = array(
415
- '#pageslugdiv',
416
- '#tagsdiv,#tagsdivsb',
417
- '#categorydiv,#categorydivsb',
418
- '#category-add-toggle',
419
- '#postexcerpt',
420
- '#trackbacksdiv',
421
- '#postcustom',
422
- '#commentstatusdiv',
423
- '#passworddiv',
424
- '#authordiv',
425
- '#revisionsdiv',
426
- '.side-info',
427
- '#notice',
428
- '#post-body h2',
429
- 'media_buttons'
430
- );
431
-
432
- if (class_exists('SimpleTagsAdmin'))
433
- array_push($metaboxes, '#suggestedtags');
434
- if (function_exists('tc_post'))
435
- array_push($metaboxes, '#textcontroldiv');
436
- if (class_exists('HTMLSpecialCharactersHelper'))
437
- array_push($metaboxes, '#htmlspecialchars');
438
- if (class_exists('All_in_One_SEO_Pack'))
439
- array_push($metaboxes, '#postaiosp');
440
- if (function_exists('tdomf_edit_post_panel_admin_head'))
441
- array_push($metaboxes, '#tdomf');
442
- if (function_exists('post_notification_form'))
443
- array_push($metaboxes, '#post_notification');
444
- if (function_exists('sticky_add_meta_box'))
445
- array_push($metaboxes, '#poststickystatusdiv');
446
-
447
- $metaboxes_names = array(
448
- __('Permalink', 'adminimize'),
449
- __('Tags', 'adminimize'),
450
- __('Categories', 'adminimize'),
451
- __('Add New Category', 'adminimize'),
452
- __('Excerpt', 'adminimize'),
453
- __('Trackbacks', 'adminimize'),
454
- __('Custom Fields', 'adminimize'),
455
- __('Comments &amp; Pings', 'adminimize'),
456
- __('Password Protect This Post', 'adminimize'),
457
- __('Post Author', 'adminimize'),
458
- __('Post Revisions', 'adminimize'),
459
- __('Related, Shortcuts', 'adminimize'),
460
- __('Messenges', 'adminimize'),
461
- __('h2: Advanced Options', 'adminimize'),
462
- __('Media Buttons (all)', 'adminimize')
463
- );
464
-
465
- if (class_exists('SimpleTagsAdmin'))
466
- array_push($metaboxes_names, __('Suggested tags from'));
467
- if (function_exists('tc_post'))
468
- array_push($metaboxes_names, __('Text Control'));
469
- if (class_exists('HTMLSpecialCharactersHelper'))
470
- array_push($metaboxes_names, __('HTML Special Characters'));
471
- if (class_exists('All_in_One_SEO_Pack'))
472
- array_push($metaboxes_names, 'All in One SEO Pack');
473
- if (function_exists('tdomf_edit_post_panel_admin_head'))
474
- array_push($metaboxes_names, 'TDOMF');
475
- if (function_exists('post_notification_form'))
476
- array_push($metaboxes_names, 'Post Notification');
477
- if (function_exists('sticky_add_meta_box'))
478
- array_push($metaboxes, 'Post Sticky Status');
479
-
480
- $metaboxes_page = array(
481
- '#pageslugdiv',
482
- '#pagepostcustom, #pagecustomdiv',
483
- '#pagecommentstatusdiv',
484
- '#pagepassworddiv',
485
- '#pageparentdiv',
486
- '#pagetemplatediv',
487
- '#pageorderdiv',
488
- '#pageauthordiv',
489
- '#revisionsdiv',
490
- '.side-info',
491
- '#notice',
492
- '#post-body h2',
493
- 'media_buttons'
494
- );
495
-
496
- if (class_exists('SimpleTagsAdmin'))
497
- array_push($metaboxes_page, '#suggestedtags');
498
- if (class_exists('HTMLSpecialCharactersHelper'))
499
- array_push($metaboxes_page, '#htmlspecialchars');
500
- if (class_exists('All_in_One_SEO_Pack'))
501
- array_push($metaboxes_page, '#postaiosp');
502
- if (function_exists('tdomf_edit_post_panel_admin_head'))
503
- array_push($metaboxes_page, '#tdomf');
504
- if (function_exists('post_notification_form'))
505
- array_push($metaboxes_page, '#post_notification');
506
-
507
- $metaboxes_names_page = array(
508
- __('Permalink', 'adminimize'),
509
- __('Custom Fields', 'adminimize'),
510
- __('Comments &amp; Pings', 'adminimize'),
511
- __('Password Protect This Page', 'adminimize'),
512
- __('Page Parent', 'adminimize'),
513
- __('Page Template', 'adminimize'),
514
- __('Page Order', 'adminimize'),
515
- __('Page Author', 'adminimize'),
516
- __('Page Revisions', 'adminimize'),
517
- __('Related', 'adminimize'),
518
- __('Messenges', 'adminimize'),
519
- __('h2: Advanced Options', 'adminimize'),
520
- __('Media Buttons (all)', 'adminimize')
521
- );
522
-
523
- if (class_exists('SimpleTagsAdmin'))
524
- array_push($metaboxes_names_page, __('Suggested tags from', 'adminimize'));
525
- if (class_exists('HTMLSpecialCharactersHelper'))
526
- array_push($metaboxes_names_page, __('HTML Special Characters'));
527
- if (class_exists('All_in_One_SEO_Pack'))
528
- array_push($metaboxes_names_page, 'All in One SEO Pack');
529
- if (function_exists('tdomf_edit_post_panel_admin_head'))
530
- array_push($metaboxes_names_page, 'TDOMF');
531
- if (function_exists('post_notification_form'))
532
- array_push($metaboxes_names_page, 'Post Notification');
533
- if (class_exists('HTMLSpecialCharactersHelper'))
534
- array_push($metaboxes_names_page, 'HTML Special Characters');
535
-
536
- // print menu, submenu
537
- if ( isset($menu) && $menu != '') {
538
-
539
- $i = 0;
540
- $x = 0;
541
- foreach ($menu as $item) {
542
-
543
- // checkbox checked
544
- if ( isset($disabled_menu_subscriber) && in_array($item[2], $disabled_menu_subscriber) ) {
545
- $checked_subscriber = ' checked="checked"';
546
- } else {
547
- $checked_subscriber = '';
548
- }
549
-
550
- // checkbox checked
551
- if ( isset($disabled_menu_contributor) && in_array($item[2], $disabled_menu_contributor) ) {
552
- $checked_contributor = ' checked="checked"';
553
- } else {
554
- $checked_contributor = '';
555
- }
556
-
557
- // checkbox checked
558
- if ( isset($disabled_menu_author) && in_array($item[2], $disabled_menu_author) ) {
559
- $checked_author = ' checked="checked"';
560
- } else {
561
- $checked_author = '';
562
- }
563
-
564
- // checkbox checked
565
- if ( isset($disabled_menu) && in_array($item[2], $disabled_menu) ) {
566
- $checked = ' checked="checked"';
567
- } else {
568
- $checked = '';
569
- }
570
-
571
- // checkbox checked for admin
572
- if ( isset($disabled_menu_adm) && in_array($item[2], $disabled_menu_adm) ) {
573
- $checked_adm = ' checked="checked"';
574
- } else {
575
- $checked_adm = '';
576
- }
577
-
578
- // menu items
579
- // items disabled for user
580
- if ( $item[2] == 'options-general.php' ) {
581
- $disabled_item_adm = ' disabled="disabled"';
582
- $checked_adm = '';
583
- } else {
584
- $disabled_item_adm = '';
585
- }
586
-
587
- echo '<tr class="form-invalid">' . "\n";
588
- echo "\t" . '<th>' . $item[0] . ' <span style="color:#ccc; font-weight: 400;">(' . $item[2] . ')</span> </th>';
589
- echo "\t" . '<td class="num"><input id="check_menusubscriber'. $x .'" type="checkbox"' . $checked_subscriber . ' name="mw_adminimize_disabled_menu_subscriber_items[]" value="' . $item[2] . '"/></td>' . "\n";
590
- echo "\t" . '<td class="num"><input id="check_menucontributor'. $x .'" type="checkbox"' . $checked_contributor . ' name="mw_adminimize_disabled_menu_contributor_items[]" value="' . $item[2] . '"/></td>' . "\n";
591
- echo "\t" . '<td class="num"><input id="check_menuauthor'. $x .'" type="checkbox"' . $checked_author . ' name="mw_adminimize_disabled_menu_author_items[]" value="' . $item[2] . '"/></td>' . "\n";
592
- echo "\t" . '<td class="num"><input id="check_menu'. $x .'" type="checkbox"' . $checked . ' name="mw_adminimize_disabled_menu_items[]" value="' . $item[2] . '"/></td>' . "\n";
593
- echo "\t" . '<td class="num"><input id="check_menuadm'. $x .'" type="checkbox"' . $disabled_item_adm . $checked_adm . ' name="mw_adminimize_disabled_menu_adm_items[]" value="' . $item[2] . '"/></td>' . "\n";
594
- echo '</tr>';
595
- $x++;
596
-
597
- if ( !isset($submenu[$item[2]]) )
598
- continue;
599
-
600
- // submenu items
601
- foreach ( $submenu[ $item[2] ] as $subitem ) {
602
-
603
- // submenu items
604
- // items disabled for adm
605
- if ( $subitem[2] == 'adminimize/adminimize.php' ) {
606
- $disabled_subitem_adm = ' disabled="disabled"';
607
- $checked_adm = '';
608
- } else {
609
- $disabled_subitem_adm = '';
610
- }
611
-
612
- echo '<tr>' . "\n";
613
-
614
- if ( isset($disabled_submenu_subscriber) )
615
- $checked_subscriber = ( in_array($subitem[2], $disabled_submenu_subscriber ) ) ? ' checked="checked"' : '';
616
- if ( isset($disabled_submenu_contributor) )
617
- $checked_contributor = ( in_array($subitem[2], $disabled_submenu_contributor ) ) ? ' checked="checked"' : '';
618
- if ( isset($disabled_submenu_author) )
619
- $checked_author = ( in_array($subitem[2], $disabled_submenu_author ) ) ? ' checked="checked"' : '';
620
- if ( isset($disabled_submenu) )
621
- $checked = ( in_array($subitem[2], $disabled_submenu ) ) ? ' checked="checked"' : '';
622
- if ( isset($disabled_submenu_adm) )
623
- $checked_adm = ( in_array($subitem[2], $disabled_submenu_adm ) ) ? ' checked="checked"' : '';
624
-
625
- echo '<td> &mdash; ' . $subitem[0] . ' <span style="color:#ccc; font-weight: 400;">(' . $subitem[2] . ')</span> </td>' . "\n";
626
- echo "\t" . '<td class="num"><input id="check_menusubscriber'. $x .'" type="checkbox"' . $checked_subscriber . ' name="mw_adminimize_disabled_submenu_subscriber_items[]" value="' . $subitem[2] . '" /></td>' . "\n";
627
- echo "\t" . '<td class="num"><input id="check_menucontributor'. $x .'" type="checkbox"' . $checked_contributor . ' name="mw_adminimize_disabled_submenu_contributor_items[]" value="' . $subitem[2] . '" /></td>' . "\n";
628
- echo "\t" . '<td class="num"><input id="check_menuauthor'. $x .'" type="checkbox"' . $checked_author . ' name="mw_adminimize_disabled_submenu_author_items[]" value="' . $subitem[2] . '" /></td>' . "\n";
629
- echo "\t" . '<td class="num"><input id="check_menu'. $x .'" type="checkbox"' . $checked . ' name="mw_adminimize_disabled_submenu_items[]" value="' . $subitem[2] . '" /></td>' . "\n";
630
- echo "\t" . '<td class="num"><input id="check_menuadm'. $x .'" type="checkbox"' . $disabled_subitem_adm . $checked_adm . ' name="mw_adminimize_disabled_submenu_adm_items[]" value="' . $subitem[2] . '" /></td>' . "\n";
631
- echo '</tr>' . "\n";
632
- $x++;
633
- }
634
- $i++;
635
- $x++;
636
- }
637
- echo '<tr>' . "\n";
638
- echo '<th>' . __('All items', 'adminimize') . '</th>';
639
- echo "\t" . '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_menusubscriber" onClick="toggleCheckboxes_menusubscriber();"><a id="atoggleCheckboxes_menusubscriber" href="javascript:toggleCheckboxes_menusubscriber();"> ' . __('All', 'adminimize') . '</a></td>';
640
- echo "\t" . '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_menucontributor" onClick="toggleCheckboxes_menucontributor();"><a id="atoggleCheckboxes_menucontributor" href="javascript:toggleCheckboxes_menucontributor();"> ' . __('All', 'adminimize') . '</a></td>';
641
- echo "\t" . '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_menuauthor" onClick="toggleCheckboxes_menuauthor();"><a id="atoggleCheckboxes_menuauthor" href="javascript:toggleCheckboxes_menuauthor();"> ' . __('All', 'adminimize') . '</a></td>';
642
- echo "\t" . '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_menu" onClick="toggleCheckboxes_menu();"><a id="atoggleCheckboxes_menu" href="javascript:toggleCheckboxes_menu();"> ' . __('All', 'adminimize') . '</a></td>';
643
- echo "\t" . '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_menuadm" onClick="toggleCheckboxes_menuadm();"><a id="atoggleCheckboxes_menuadm" href="javascript:toggleCheckboxes_menuadm();"> ' . __('All', 'adminimize') . '</a></td>';
644
- echo '</tr>' . "\n";
645
-
646
- } else {
647
- $myErrors = new _mw_adminimize_message_class();
648
- $myErrors = '<tr><td style="color: red;">' . $myErrors->get_error('_mw_adminimize_get_option') . '</td></tr>';
649
- echo $myErrors;
650
- } ?>
651
- </tbody>
652
- </table>
653
- <p id="submitbutton">
654
- <input class="button button-primary" type="submit" name="_mw_adminimize_save" value="<?php _e('Update Options', 'adminimize'); ?> &raquo;" /><input type="hidden" name="page_options" value="'dofollow_timeout'" />
655
- </p>
656
-
657
- </div>
658
- </div>
659
- </div>
660
-
661
- <div id="poststuff" class="ui-sortable">
662
- <div class="postbox closed" >
663
- <h3 id="config_edit"><?php _e('Write options - Post', 'adminimize'); ?></h3>
664
- <div class="inside">
665
- <br class="clear" />
666
-
667
- <table summary="config_edit_post" class="widefat">
668
- <thead>
669
- <tr>
670
- <th><?php _e('Write options - Post', 'adminimize'); ?></th>
671
- <th><?php _e('Deactivate for Subscriber', 'adminimize'); ?></th>
672
- <th><?php _e('Deactivate for Contributor', 'adminimize'); ?></th>
673
- <th><?php _e('Deactivate for Author', 'adminimize'); ?></th>
674
- <th><?php _e('Deactivate for Editor', 'adminimize'); ?></th>
675
- <th><?php _e('Deactivate for Administrator', 'adminimize'); ?></th>
676
- </tr>
677
- </thead>
678
-
679
- <tbody>
680
- <?php
681
- $x = 0;
682
- foreach ($metaboxes as $index => $metabox) {
683
- $checked_subscriber = ( isset($disabled_metaboxes_post_subscriber) && in_array($metabox, $disabled_metaboxes_post_subscriber) ) ? ' checked="checked"' : '';
684
- $checked_contributor = ( isset($disabled_metaboxes_post_contributor) && in_array($metabox, $disabled_metaboxes_post_contributor) ) ? ' checked="checked"' : '';
685
- $checked_author = ( isset($disabled_metaboxes_post_author) && in_array($metabox, $disabled_metaboxes_post_author) ) ? ' checked="checked"' : '';
686
- $checked = ( isset($disabled_metaboxes_post) && in_array($metabox, $disabled_metaboxes_post) ) ? ' checked="checked"' : '';
687
- $checked_adm = ( isset($disabled_metaboxes_post_adm) && in_array($metabox, $disabled_metaboxes_post_adm) ) ? ' checked="checked"' : '';
688
-
689
- echo '<tr>' . "\n";
690
- echo '<td>' . $metaboxes_names[$index] . ' <span style="color:#ccc; font-weight: 400;">(' . $metabox . ')</span> </td>' . "\n";
691
- echo '<td class="num"><input id="check_postsubscriber'. $x .'" type="checkbox"' . $checked_subscriber . ' name="mw_adminimize_disabled_metaboxes_post_subscriber_items[]" value="' . $metabox . '" /></td>' . "\n";
692
- echo '<td class="num"><input id="check_postcontributor'. $x .'" type="checkbox"' . $checked_contributor . ' name="mw_adminimize_disabled_metaboxes_post_contributor_items[]" value="' . $metabox . '" /></td>' . "\n";
693
- echo '<td class="num"><input id="check_postauthor'. $x .'" type="checkbox"' . $checked_author . ' name="mw_adminimize_disabled_metaboxes_post_author_items[]" value="' . $metabox . '" /></td>' . "\n";
694
- echo '<td class="num"><input id="check_post'. $x .'" type="checkbox"' . $checked . ' name="mw_adminimize_disabled_metaboxes_post_items[]" value="' . $metabox . '" /></td>' . "\n";
695
- echo '<td class="num"><input id="check_postadm'. $x .'" type="checkbox"' . $checked_adm . ' name="mw_adminimize_disabled_metaboxes_post_adm_items[]" value="' . $metabox . '" /></td>' . "\n";
696
- echo '</tr>' . "\n";
697
- $x++;
698
- }
699
- ?>
700
- <tr>
701
- <th><?php _e('All items', 'adminimize'); ?></th>
702
- <?php
703
- echo '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_postsubscriber" onClick="toggleCheckboxes_postsubscriber();"><a id="atoggleCheckboxes_postsubscriber" href="javascript:toggleCheckboxes_postsubscriber();"> ' . __('All', 'adminimize') . '</a></td>';
704
- echo '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_postcontributor" onClick="toggleCheckboxes_postcontributor();"><a id="atoggleCheckboxes_postcontributor" href="javascript:toggleCheckboxes_postcontributor();"> ' . __('All', 'adminimize') . '</a></td>';
705
- echo '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_postauthor" onClick="toggleCheckboxes_postauthor();"><a id="atoggleCheckboxes_postauthor" href="javascript:toggleCheckboxes_postauthor();"> ' . __('All', 'adminimize') . '</a></td>';
706
- echo '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_post" onClick="toggleCheckboxes_post();"><a id="atoggleCheckboxes_post" href="javascript:toggleCheckboxes_post();"> ' . __('All', 'adminimize') . '</a></td>';
707
- echo '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_postadm" onClick="toggleCheckboxes_postadm();"><a id="atoggleCheckboxes_postadm" href="javascript:toggleCheckboxes_postadm();"> ' . __('All', 'adminimize') . '</a></td>';
708
- ?>
709
- </tr>
710
- </tbody>
711
- </table>
712
-
713
- <p id="submitbutton">
714
- <input type="hidden" name="_mw_adminimize_action" value="_mw_adminimize_insert" />
715
- <input class="button button-primary" type="submit" name="_mw_adminimize_save" value="<?php _e('Update Options', 'adminimize'); ?> &raquo;" /><input type="hidden" name="page_options" value="'dofollow_timeout'" />
716
- </p>
717
-
718
- </div>
719
- </div>
720
- </div>
721
-
722
- <div id="poststuff" class="ui-sortable">
723
- <div class="postbox closed" >
724
- <h3 id="config_edit"><?php _e('Write options - Page', 'adminimize'); ?></h3>
725
- <div class="inside">
726
- <br class="clear" />
727
-
728
- <table summary="config_edit_page" class="widefat">
729
- <thead>
730
- <tr>
731
- <th><?php _e('Write options - Page', 'adminimize'); ?></th>
732
- <th><?php _e('Deactivate for Subscriber', 'adminimize'); ?></th>
733
- <th><?php _e('Deactivate for Contributor', 'adminimize'); ?></th>
734
- <th><?php _e('Deactivate for Author', 'adminimize'); ?></th>
735
- <th><?php _e('Deactivate for Editor', 'adminimize'); ?></th>
736
- <th><?php _e('Deactivate for Administrator', 'adminimize'); ?></th>
737
- </tr>
738
- </thead>
739
-
740
- <tbody>
741
- <?php
742
- $x = 0;
743
- foreach ($metaboxes_page as $index => $metabox) {
744
- $checked_subscriber = ( isset($disabled_metaboxes_page_subscriber) && in_array($metabox, $disabled_metaboxes_page_subscriber) ) ? ' checked="checked"' : '';
745
- $checked_contributor = ( isset($disabled_metaboxes_page_contributor) && in_array($metabox, $disabled_metaboxes_page_contributor) ) ? ' checked="checked"' : '';
746
- $checked_author = ( isset($disabled_metaboxes_page_author) && in_array($metabox, $disabled_metaboxes_page_author) ) ? ' checked="checked"' : '';
747
- $checked = ( isset($disabled_metaboxes_page) && in_array($metabox, $disabled_metaboxes_page) ) ? ' checked="checked"' : '';
748
- $checked_adm = ( isset($disabled_metaboxes_page_adm) && in_array($metabox, $disabled_metaboxes_page_adm) ) ? ' checked="checked"' : '';
749
-
750
- echo '<tr>' . "\n";
751
- echo '<td>' . $metaboxes_names_page[$index] . ' <span style="color:#ccc; font-weight: 400;">(' . $metabox . ')</span> </td>' . "\n";
752
- echo '<td class="num"><input id="check_pagesubscriber'. $x .'" type="checkbox"' . $checked_subscriber . ' name="mw_adminimize_disabled_metaboxes_page_subscriber_items[]" value="' . $metabox . '" /></td>' . "\n";
753
- echo '<td class="num"><input id="check_pagecontributor'. $x .'" type="checkbox"' . $checked_contributor . ' name="mw_adminimize_disabled_metaboxes_page_contributor_items[]" value="' . $metabox . '" /></td>' . "\n";
754
- echo '<td class="num"><input id="check_pageauthor'. $x .'" type="checkbox"' . $checked_author . ' name="mw_adminimize_disabled_metaboxes_page_author_items[]" value="' . $metabox . '" /></td>' . "\n";
755
- echo '<td class="num"><input id="check_page'. $x .'" type="checkbox"' . $checked . ' name="mw_adminimize_disabled_metaboxes_page_items[]" value="' . $metabox . '" /></td>' . "\n";
756
- echo '<td class="num"><input id="check_pageadm'. $x .'" type="checkbox"' . $checked_adm . ' name="mw_adminimize_disabled_metaboxes_page_adm_items[]" value="' . $metabox . '" /></td>' . "\n";
757
- echo '</tr>' . "\n";
758
- $x++;
759
- }
760
- ?>
761
- <tr>
762
- <th><?php _e('All items', 'adminimize'); ?></th>
763
- <?php
764
- echo '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_pagesubscriber" onClick="toggleCheckboxes_pagesubscriber();"><a id="atoggleCheckboxes_pagesubscriber" href="javascript:toggleCheckboxes_pagesubscriber();"> ' . __('All', 'adminimize') . '</a></td>';
765
- echo '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_pagecontributor" onClick="toggleCheckboxes_pagecontributor();"><a id="atoggleCheckboxes_pagecontributor" href="javascript:toggleCheckboxes_pagecontributor();"> ' . __('All', 'adminimize') . '</a></td>';
766
- echo '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_pageauthor" onClick="toggleCheckboxes_pageauthor();"><a id="atoggleCheckboxes_pageauthor" href="javascript:toggleCheckboxes_pageauthor();"> ' . __('All', 'adminimize') . '</a></td>';
767
- echo '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_page" onClick="toggleCheckboxes_page();"><a id="atoggleCheckboxes_page" href="javascript:toggleCheckboxes_page();"> ' . __('All', 'adminimize') . '</a></td>';
768
- echo '<td class="num"><input type="checkbox" id="ctoggleCheckboxes_pageadm" onClick="toggleCheckboxes_pageadm();"><a id="atoggleCheckboxes_pageadm" href="javascript:toggleCheckboxes_pageadm();"> ' . __('All', 'adminimize') . '</a></td>';
769
- ?>
770
- </tr>
771
- </tbody>
772
- </table>
773
-
774
- <p id="submitbutton">
775
- <input type="hidden" name="_mw_adminimize_action" value="_mw_adminimize_insert" />
776
- <input class="button button-primary" type="submit" name="_mw_adminimize_save" value="<?php _e('Update Options', 'adminimize'); ?> &raquo;" /><input type="hidden" name="page_options" value="'dofollow_timeout'" />
777
- </p>
778
- </form>
779
-
780
- </div>
781
- </div>
782
- </div>
783
-
784
- <div id="poststuff" class="ui-sortable">
785
- <div class="postbox closed" >
786
- <h3 id="set_theme"><?php _e('Set Theme', 'adminimize') ?></h3>
787
- <div class="inside">
788
- <br class="clear" />
789
- <form name="set_theme" method="post" id="_mw_adminimize_set_theme" action="?page=<?php echo $_GET['page'];?>" >
790
- <?php wp_nonce_field('mw_adminimize_nonce'); ?>
791
- <table class="widefat">
792
- <thead>
793
- <tr class="thead">
794
- <th>&nbsp;</th>
795
- <th class="num"><?php _e('User-ID') ?></th>
796
- <th><?php _e('Username') ?></th>
797
- <th><?php _e('Display name publicly as') ?></th>
798
- <th><?php _e('Admin-Color Scheme') ?></th>
799
- <th><?php _e('User Level') ?></th>
800
- <th><?php _e('Role') ?></th>
801
- </tr>
802
- </thead>
803
- <tbody id="users" class="list:user user-list">
804
- <?php
805
- $wp_user_search = $wpdb->get_results("SELECT ID, user_login, display_name FROM $wpdb->users ORDER BY ID");
806
-
807
- $style = '';
808
- foreach ( $wp_user_search as $userid ) {
809
- $user_id = (int) $userid->ID;
810
- $user_login = stripslashes($userid->user_login);
811
- $display_name = stripslashes($userid->display_name);
812
- $current_color = get_user_option('admin_color', $user_id);
813
- $user_level = (int) get_user_option($table_prefix . 'user_level', $user_id);
814
- $user_object = new WP_User($user_id);
815
- $roles = $user_object->roles;
816
- $role = array_shift($roles);
817
-
818
- $style = ( ' class="alternate"' == $style ) ? '' : ' class="alternate"';
819
- $return = '';
820
- $return .= '<tr>' . "\n";
821
- $return .= "\t" . '<td><input type="checkbox" name="mw_adminimize_theme_items[]" value="' . $user_id . '" /></td>' . "\n";
822
- $return .= "\t" . '<td class="num">'. $user_id .'</td>' . "\n";
823
- $return .= "\t" . '<td>'. $user_login .'</td>' . "\n";
824
- $return .= "\t" . '<td>'. $display_name .'</td>' . "\n";
825
- $return .= "\t" . '<td>'. $current_color . '</td>' . "\n";
826
- $return .= "\t" . '<td class="num">'. $user_level . '</td>' . "\n";
827
- $return .= "\t" . '<td>'. $role . '</td>' . "\n";
828
- $return .= '</tr>' . "\n";
829
-
830
- print($return);
831
- }
832
- ?>
833
- <tr valign="top">
834
- <td>&nbsp;</td>
835
- <td>&nbsp;</td>
836
- <td>&nbsp;</td>
837
- <td>&nbsp;</td>
838
- <td>
839
- <select name="_mw_adminimize_set_theme">
840
- <?php foreach ( $_wp_admin_css_colors as $color => $color_info ): ?>
841
- <option value="<?php echo $color; ?>"><?php echo $color_info->name . ' (' . $color . ')' ?></option>
842
- <?php endforeach; ?>
843
- </select>
844
- </td>
845
- <td>&nbsp;</td>
846
- <td>&nbsp;</td>
847
- </tr>
848
- </tbody>
849
- </table>
850
- <p id="submitbutton">
851
- <input type="hidden" name="_mw_adminimize_action" value="_mw_adminimize_set_theme" />
852
- <input type="submit" name="_mw_adminimize_save" value="<?php _e('Set Theme', 'adminimize'); ?> &raquo;" class="button button-primary" />
853
- </p>
854
- </form>
855
-
856
- </div>
857
- </div>
858
- </div>
859
-
860
- <div id="poststuff" class="ui-sortable">
861
- <div class="postbox closed" >
862
- <h3 id="uninstall"><?php _e('Deinstall Options', 'adminimize') ?></h3>
863
- <div class="inside">
864
-
865
- <p><?php _e('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.', 'adminimize'); ?></p>
866
- <form name="deinstall_options" method="post" id="_mw_adminimize_options_deinstall" action="?page=<?php echo $_GET['page'];?>">
867
- <?php wp_nonce_field('mw_adminimize_nonce'); ?>
868
- <p id="submitbutton">
869
- <input type="submit" name="_mw_adminimize_deinstall" value="<?php _e('Delete Options', 'adminimize'); ?> &raquo;" class="button-secondary" />
870
- <input type="checkbox" name="_mw_adminimize_deinstall_yes" value="_mw_adminimize_deinstall" />
871
- <input type="hidden" name="_mw_adminimize_action" value="_mw_adminimize_deinstall" />
872
- </p>
873
- </form>
874
-
875
- </div>
876
- </div>
877
- </div>
878
-
879
- <div id="poststuff" class="ui-sortable">
880
- <div class="postbox closed" >
881
- <h3 id="about"><?php _e('About the plugin', 'adminimize') ?></h3>
882
- <div class="inside">
883
-
884
- <p><?php _e('Further information: Visit the <a href="http://bueltge.de/wordpress-admin-theme-adminimize/674/">plugin homepage</a> for further information or to grab the latest version of this plugin.', 'adminimize'); ?><br />&copy; Copyright 2008 - <?php echo date("Y"); ?> <a href="http://bueltge.de">Frank B&uuml;ltge</a> | <?php _e('You want to thank me? Visit my <a href="http://bueltge.de/wunschliste/">wishlist</a>.', 'adminimize'); ?></p>
885
- <p class="textright"><?php echo $wpdb->num_queries; ?>q, <?php timer_stop(1); ?>s</p>
886
- </div>
887
- </div>
888
- </div>
889
-
890
- <script type="text/javascript">
891
- <!--
892
- <?php if ( version_compare( substr($wp_version, 0, 3), '2.7', '<' ) ) { ?>
893
- jQuery('.postbox h3').prepend('<a class="togbox">+</a> ');
894
- <?php } ?>
895
- jQuery('.postbox h3').click( function() { jQuery(jQuery(this).parent().get(0)).toggleClass('closed'); } );
896
- jQuery('.postbox.close-me').each(function(){
897
- jQuery(this).addClass("closed");
898
- });
899
- //-->
900
- </script>
901
-
902
- </div>
903
- <?php
904
- }
905
- ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
css/colors-colorblind.css DELETED
@@ -1,733 +0,0 @@
1
- a.page-numbers:hover {
2
- border-color: #FF9419; /* colorvalue 1 */
3
- }
4
-
5
- body {
6
- background: #fff;
7
- color: #333;
8
- }
9
-
10
- body > #upload-menu {
11
- border-bottom-color: #fff;;
12
- }
13
-
14
- div#current-widgets, #postcustomstuff table, #your-profile fieldset, a.page-numbers, #rightnow, div.dashboard-widget, .widefat {
15
- border-color: #CF4529; /* colorvalue 5 */
16
- }
17
-
18
- div.dashboard-widget-error {
19
- background-color: #CF4529; /* colorvalue 5 */
20
- }
21
-
22
- div.dashboard-widget-notice {
23
- background-color: #550007; /* colorvalue 4 */
24
- }
25
-
26
- div.dashboard-widget-submit, ul.widget-control-list div.widget-control-actions {
27
- border-top-color: #CF4529; /* colorvalue 5 */
28
- }
29
-
30
- input.disabled, textarea.disabled {
31
- background-color: #550007; /* colorvalue 4 */
32
- }
33
-
34
- #user_info a:hover, li.widget-list-control-item h4.widget-title a:hover, .submit a, #dashmenu a:hover, #footer a, #upload-menu li a.upload-tab-link, li.widget-list-control-item h4.widget-title a,
35
- #dragHelper li.widget-list-control-item h4.widget-title a,
36
- #draghelper li.widget-list-control-item h4.widget-title a:visited, .login #backtoblog a:hover {
37
- color: #550007; /* colorvalue 4 */
38
- }
39
-
40
- ul#category-tabs li.ui-tabs-selected, li.widget-list-control-item, div.nav, .tablenav, .submitbox, h3.dashboard-widget-title, h3.dashboard-widget-title span, h3.dashboard-widget-title small, ul.view-switch li.current, .form-table tr, #poststuff h3, .login form {
41
- background-color:#710001; /* colorvalue 3 */
42
- color:#FF9419; /* colorvalue 1 */
43
- }
44
-
45
- div.ui-tabs-panel {
46
- border-color: #710001; /* colorvalue 3 */
47
- }
48
-
49
- select {
50
- background-color: #fff;
51
- border-color: #CF4529; /* colorvalue 5 */
52
- }
53
-
54
- strong .post-com-count span {
55
- background-color: #2583ad;
56
- }
57
-
58
- .button-secondary, #login form .submit input {
59
- background-color: #FF9419; /* colorvalue 1 */
60
- }
61
-
62
- ul#widget-list li.widget-list-item h4.widget-title {
63
- background-color: #CF4529; /* colorvalue 5 */
64
- color: #333;
65
- }
66
-
67
- ul.widget-control-list .sorthelper {
68
- background-color: #CF4529; /* colorvalue 5 */
69
- }
70
-
71
- .ac_match, .subsubsub a.current, h2 {
72
- color: #333;
73
- }
74
-
75
- .ac_over {
76
- background-color: #550007; /* colorvalue 4 */
77
- }
78
-
79
- .ac_results {
80
- background-color: #fff;
81
- border-color: #CF4529; /* colorvalue 5 */
82
- }
83
-
84
- .ac_results li {
85
- color: #333;
86
- }
87
-
88
- .alternate {
89
- background-color: #550007; /* colorvalue 4 */
90
- }
91
-
92
- .available-theme a.screenshot {
93
- background-color: #550007; /* colorvalue 4 */
94
- border-color: #CF4529; /* colorvalue 5 */
95
- }
96
-
97
- .bar {
98
- background-color: #CF4529; /* colorvalue 5 */
99
- border-right-color: #550007; /* colorvalue 4 */
100
- }
101
-
102
- .describe {
103
- border-top-color: #CF4529; /* colorvalue 5 */
104
- }
105
-
106
- .error, #login #login_error {
107
- background-color: #ffebe8;
108
- border-color: #c00;
109
- }
110
-
111
- .error a {
112
- color: #c00;
113
- }
114
-
115
- .form-invalid {
116
- background-color: #ffebe8 !important;
117
- }
118
-
119
- .form-invalid input {
120
- border-color: #c00 !important;
121
- }
122
-
123
- .form-table input, .form-table textarea {
124
- border-color: #CF4529; /* colorvalue 5 */
125
- }
126
-
127
- .form-table td, .form-table th {
128
- border-bottom-color: #fff;
129
- }
130
-
131
- .highlight {
132
- background-color: #710001; /* colorvalue 3 */
133
- color: #F0720C; /* colorvalue 2 */
134
- }
135
-
136
- .howto, .nonessential, #sidemenu, #edit-slug-box, .form-input-tip, #dashboard_primary span.rss-date, .subsubsub, #dashboard_secondary div.dashboard-widget-content ul li a cite {
137
- color: #CF4529; /* colorvalue 5 */
138
- }
139
-
140
- #dashmenu a, #user_info a {
141
- color: #710001; /* colorvalue 3 */
142
- }
143
-
144
- .media-item {
145
- border-bottom-color: #CF4529; /* colorvalue 5 */
146
- }
147
-
148
- .media-upload-form label.form-help, td.help {
149
- color: #F0720C; /* colorvalue 2 */
150
- }
151
-
152
- .page-numbers {
153
- background-color: #fff;
154
- border-color: #fff;
155
- }
156
-
157
- .page-numbers.current {
158
- background-color: #F0720C; /* colorvalue 2 */
159
- border-color: #F0720C; /* colorvalue 2 */
160
- color: #fff;
161
- }
162
-
163
- .post-com-count {
164
- background-image: url(../../../../wp-admin/images/bubble_bg.gif);
165
- color: #fff;
166
- }
167
-
168
- .post-com-count span {
169
- background-color: #bbb;
170
- color: #fff;
171
- }
172
-
173
- .post-com-count:hover span {
174
- background-color: #d54e21;
175
- }
176
-
177
- .quicktags, .search {
178
- background-color: #F0720C; /* colorvalue 2 */
179
- color: #333;
180
- }
181
-
182
- .side-info h5, .bordertitle {
183
- border-bottom-color: #CF4529; /* colorvalue 5 */
184
- }
185
-
186
- .side-info ul, .widget-description {
187
- color: #F0720C; /* colorvalue 2 */
188
- }
189
-
190
- .submit input, .button, .button-secondary, #login form .submit input, div.dashboard-widget-submit input, #edit-slug-buttons a.save {
191
- background-color: #550007; /* colorvalue 4 */
192
- color: #F0720C; /* colorvalue 2 */
193
- border-color: #710001; /* colorvalue 3 */
194
- }
195
-
196
- .tablenav .button-secondary {
197
- border-color: #F0720C; /* colorvalue 2 */
198
- }
199
-
200
- .submit input:hover, .button:hover, #edit-slug-buttons a.save:hover {
201
- border-color: #710001; /* colorvalue 3 */
202
- }
203
-
204
- .submit input:hover, .button:hover, .button-secondary:hover, #wphead #viewsite a:hover, #submenu a.current, #submenu a:hover, .submitbox #previewview a:hover, #the-comment-list .comment a:hover, #rightnow a:hover, a:hover, .subsubsub a:hover, .subsubsub a.current:hover, #login form .submit input:hover, div.dashboard-widget-submit input:hover, #edit-slug-buttons a.save:hover {
205
- color: #FF9419; /* colorvalue 1 */
206
- }
207
-
208
- #adminmenu a:hover, #sidemenu a:hover {
209
- color: #550007; /* colorvalue 4 */
210
- }
211
-
212
- .button-secondary:hover, #login form .submit input:hover {
213
- border-color: #F0720C; /* colorvalue 2 */
214
- background-color: #550007; /* colorvalue 4 */
215
- }
216
-
217
- .submitbox #autosave .error, ul.view-switch li.current a {
218
- color: #CF4529; /* colorvalue 5 */
219
- }
220
-
221
- .submitbox #previewview {
222
- background-color:#F0720C; /* colorvalue 2 */
223
- }
224
-
225
- .submitbox #previewview a, #rightnow .rbutton {
226
- background-color: #CF4529; /* colorvalue 5 */
227
- color: #710001; /* colorvalue 3 */
228
- }
229
-
230
- .submitbox .submit {
231
- background-color: #CF4529; /* colorvalue 5 */
232
- color: #710001; /* colorvalue 3 */
233
- }
234
-
235
- .submitbox .submitdelete {
236
- border-bottom-color: #CF4529; /* colorvalue 5 */
237
- }
238
-
239
- .submitbox .submitdelete:hover {
240
- color: #fff;
241
- background-color: #f00;
242
- border-bottom-color: #f00;
243
- }
244
-
245
- .tablenav .dots {
246
- background-color: #710001; /* colorvalue 3 */
247
- border-color: #710001; /* colorvalue 3 */
248
- }
249
-
250
- .tablenav .next, .tablenav .prev{
251
- background-color: #710001; /* colorvalue 3 */
252
- border-bottom-color: #710001; /* colorvalue 3 */
253
- border-color: #710001; /* colorvalue 3 */
254
- color: #F0720C; /* colorvalue 2 */
255
- }
256
-
257
- .tablenav .next:hover, .tablenav .prev:hover {
258
- border-bottom-color: #d54e21;
259
- border-color: #710001; /* colorvalue 3 */
260
- color: #d54e21;
261
- }
262
-
263
- .updated, .login #login_error, .login .message {
264
- background-color:#F0720C; /* colorvalue 2 */
265
- border-color:#FF9419; /* colorvalue 1 */
266
- }
267
-
268
- .updated a {
269
- border-bottom-color: #710001; /* colorvalue 3 */
270
- }
271
-
272
- .widefat td, .widefat th, div#available-widgets-filter, ul#widget-list li.widget-list-item, .commentlist li {
273
- border-bottom-color: #CF4529; /* colorvalue 5 */
274
- }
275
-
276
- .widefat thead, .thead {
277
- background-color:#CF4529; /* colorvalue 5 */
278
- color: #F0720C; /* colorvalue 2 */
279
- }
280
-
281
- .widget-control-save, .widget-control-remove {
282
- background-color: #710001; /* colorvalue 3 */
283
- color: #CF4529; /* colorvalue 5 */
284
- }
285
-
286
- .wrap h2 {
287
- border-bottom-color:#710001; /* colorvalue 3 */
288
- color:#F0720C; /* colorvalue 2 */
289
- }
290
-
291
- #poststuff #edButtonPreview, #poststuff #edButtonHTML, #the-comment-list p.comment-author strong a, a {
292
- color: #F0720C; /* colorvalue 2 */
293
- }
294
-
295
- #adminmenu a {
296
- color: #710001; /* colorvalue 3 */
297
- }
298
-
299
- #submenu a {
300
- color: #F0720C; /* colorvalue 2 */
301
- }
302
- /* Because we don't want visited on these links */
303
- #adminmenu a.current, #sidemenu a.current {
304
- background-color: #fff;
305
- border-color: #FF9419; /* colorvalue 1 */
306
- border-bottom-color: #fff;
307
- color: #333;
308
- font-weight: bold;
309
- }
310
-
311
- #adminmenu li a #awaiting-mod {
312
- background-image: url(../../../../wp-admin/images/comment-stalk-classic.gif);
313
- }
314
-
315
- #adminmenu li a #awaiting-mod span {
316
- background-color: #d54e21;
317
- color: #fff;
318
- }
319
-
320
- #rightnow .reallynow {
321
- background-color:#F0720C; /* colorvalue 2 */
322
- color:#550007; /* colorvalue 4 */
323
- }
324
-
325
- #rightnow .reallynow a {
326
- background-color:#550007; /* colorvalue 4 */
327
- color:#F0720C; /* colorvalue 2 */
328
- }
329
-
330
- #rightnow .reallynow a:hover {
331
- color:#CF4529; /* colorvalue 5 */
332
- }
333
-
334
-
335
- #adminmenu li a:hover #awaiting-mod span {
336
- background-color: #FF9419; /* colorvalue 1 */
337
- }
338
-
339
- #adminmenu, div#media-upload-header {
340
- background-color: #F0720C; /* colorvalue 2 */
341
- border-bottom-color: #FF9419; /* colorvalue 1 */
342
- }
343
-
344
- #currenttheme img {
345
- border-color: #CF4529; /* colorvalue 5 */
346
- }
347
-
348
- #current-widgets .drop-widget-here {
349
- background-color: #ffc;
350
- }
351
-
352
- #dashboard_secondary div.dashboard-widget-content ul li a {
353
- background-color: #550007; /* colorvalue 4 */
354
- }
355
-
356
- input.readonly {
357
- background-color: #CF4529; /* colorvalue 5 */
358
- }
359
-
360
- #dashmenu a.current {
361
- background-color: #F0720C; /* colorvalue 2 */
362
- color: #710001; /* colorvalue 3 */
363
- }
364
-
365
- #dragHelper h4.widget-title, li.widget-list-control-item h4, #dragHelper li.widget-list-control-item h4 {
366
- background-color: #F0720C; /* colorvalue 2 */
367
- color: #550007; /* colorvalue 4 */
368
- }
369
-
370
- #ed_toolbar input {
371
- background: url( ../../../../wp-admin/images/fade-butt.png ) #fff repeat-x 0 -2px;
372
- }
373
-
374
- #editable-post-name {
375
- background-color: #fffbcc;
376
- }
377
-
378
- #edit-slug-box strong, .login #nav a {
379
- color: #CF4529; /* colorvalue 5 */
380
- }
381
-
382
- #edit-slug-buttons a.save {
383
- background-color: #CF4529; /* colorvalue 5 */
384
- }
385
-
386
- #footer {
387
- background-image: url(../img/wplogo.png) !important;
388
- background-position:10px 10px;
389
- background-repeat: no-repeat;
390
- _background-image: url(../img/wplogo.gif);
391
- background-color:#CF4529; /* colorvalue 5 */
392
- color:#FF9419; /* colorvalue 1 */
393
- }
394
-
395
- #media-items {
396
- border-color: #CF4529; /* colorvalue 5 */
397
- }
398
-
399
- #pass-strength-result {
400
- background-color: #CF4529; /* colorvalue 5 */
401
- border-color: #550007; /* colorvalue 4 */
402
- }
403
-
404
- #pass-strength-result.bad {
405
- background-color: #550007; /* colorvalue 4 */
406
- border-color: #FF9419; /* colorvalue 1 */
407
- }
408
-
409
- #pass-strength-result.good {
410
- background-color: #CF4529; /* colorvalue 5 */
411
- border-color: #550007; /* colorvalue 4 */
412
- }
413
-
414
- #pass-strength-result.short {
415
- background-color: #CF4529; /* colorvalue 5 */
416
- }
417
-
418
- #pass-strength-result.strong {
419
- background-color: #F0720C; /* colorvalue 2 */
420
- border-color: #550007; /* colorvalue 4 */
421
- }
422
-
423
- .checkbox, .side-info, #your-profile #rich_editing {
424
- background-color: #fff;
425
- }
426
-
427
- #plugins .active {
428
- background-color:#710001; /* colorvalue 3 */
429
- color:#F0720C; /* colorvalue 2 */
430
- }
431
-
432
- #plugins .togl {
433
- border-right-color: #550007; /* colorvalue 4 */
434
- }
435
-
436
- #the-comment-list .unapproved {
437
- background-color: #ffffe0;
438
- }
439
-
440
- #plugins tr {
441
- background-color: #fff;
442
- }
443
-
444
- #poststuff #editor-toolbar .active {
445
- background-color: #550007; /* colorvalue 4 */
446
- color: #F0720C; /* colorvalue 2 */
447
- }
448
-
449
- #poststuff .closed .togbox {
450
- background-color: #710001; /* colorvalue 3 */
451
- background-image: url(../../../../wp-admin/images/toggle-arrow.gif);
452
- }
453
-
454
- #poststuff .postbox, #titlediv, #poststuff .postarea, #poststuff .stuffbox {
455
- border-color: #CF4529; /* colorvalue 5 */
456
- border-right-color: #710001; /* colorvalue 3 */
457
- border-bottom-color: #710001; /* colorvalue 3 */
458
- }
459
-
460
- #poststuff .togbox {
461
- background-color:#CF4529; /* colorvalue 5 */
462
- background-image: url(../../../../wp-admin/images/toggle-arrow.gif);
463
- }
464
-
465
- #quicktags #ed_link {
466
- color: #F0720C; /* colorvalue 2 */
467
- }
468
-
469
- #rightnow .youhave {
470
- background-color: #710001; /* colorvalue 3 */
471
- }
472
-
473
- #rightnow a {
474
- color: #F0720C; /* colorvalue 2 */
475
- }
476
-
477
- #sidemenu a {
478
- background-color: #F0720C; /* colorvalue 2 */
479
- border-bottom-color: #FF9419; /* colorvalue 1 */
480
- border-top-color: #F0720C; /* colorvalue 2 */
481
- color: #710001; /* colorvalue 3 */
482
- }
483
-
484
- #tagchecklist span a {
485
- background: url(../../../../wp-admin/images/xit.gif) no-repeat;
486
- }
487
-
488
- #tagchecklist span a:hover {
489
- background: url(../../../../wp-admin/images/xit.gif) no-repeat -10px 0;
490
- }
491
-
492
- #the-comment-list .comment a {
493
- border-bottom-color: #CF4529; /* colorvalue 5 */
494
- color: #710001; /* colorvalue 3 */
495
- }
496
-
497
- #update-nag, .plugin-update {
498
- background-color: #fffeeb;
499
- border-bottom-color: #ccc;
500
- border-top-color: #ccc;
501
- color: #555;
502
- }
503
-
504
- #upload-files a.file-link {
505
- background-color: #550007; /* colorvalue 4 */
506
- }
507
-
508
- #upload-file-view a img {
509
- border-bottom-color: #F0720C; /* colorvalue 2 */
510
- }
511
-
512
- #upload-menu li #current-tab-nav, #upload-file {
513
- background-color: #550007; /* colorvalue 4 */
514
- }
515
-
516
- #upload-menu li span a.page-numbers {
517
- color: #FF9419; /* colorvalue 1 */
518
- }
519
-
520
- #upload-menu li.current {
521
- border-right-color: #710001; /* colorvalue 3 */
522
- color: #333;
523
- }
524
-
525
- #upload-menu li.current a.upload-tab-link, #upload-menu li a:hover {
526
- background-color: #550007; /* colorvalue 4 */
527
- color: #333;
528
- }
529
-
530
- #upload-menu, #upload-menu li {
531
- border-top-color: #550007; /* colorvalue 4 */
532
- }
533
-
534
- #user_info, .login #backtoblog a {
535
- color: #550007; /* colorvalue 4 */
536
- }
537
-
538
- #wphead {
539
- background-color:#F0720C; /* colorvalue 2 */
540
- color:#710001; /* colorvalue 3 */
541
- }
542
-
543
- #wphead, body.login {
544
- border-top-color:#FF9419; /* colorvalue 1 */
545
- color:#F0720C; /* colorvalue 2 */
546
- }
547
-
548
- #wphead #viewsite a {
549
- background-color: #710001; /* colorvalue 3 */
550
- color: #F0720C; /* colorvalue 2 */
551
- border-color: #550007; /* colorvalue 4 */
552
- }
553
-
554
- #wphead #viewsite a:hover {
555
- color: #FF9419; /* colorvalue 1 */
556
- }
557
-
558
- #wphead h1, #dashmenu a.current:hover {
559
- color:#710001; /* colorvalue 3 */
560
- }
561
-
562
- div#media-upload-error, .file-error, abbr.required, .widget-control-remove:hover, .delete:hover {
563
- color: #f00;
564
- }
565
-
566
- #media-upload a.delete {
567
- color: #CF4529; /* colorvalue 5 */
568
- }
569
-
570
-
571
- /* TinyMCE */
572
- .wp_themeSkin *,
573
- .wp_themeSkin a:hover,
574
- .wp_themeSkin a:link,
575
- .wp_themeSkin a:visited,
576
- .wp_themeSkin a:active {
577
- color: #000;
578
- }
579
-
580
- /* Containers */
581
- .wp_themeSkin table {
582
- background: #710001; /* colorvalue 3 */
583
- }
584
-
585
- .wp_themeSkin iframe {
586
- background: #fff;
587
- }
588
-
589
- /* Layout */
590
- .wp_themeSkin .mceStatusbar {
591
- color:#333;
592
- background-color: #550007; /* colorvalue 4 */
593
- }
594
-
595
- /* Button */
596
- .wp_themeSkin .mceButton {
597
- background-color: #CF4529; /* colorvalue 5 */
598
- border-color: #710001; /* colorvalue 3 */
599
- }
600
-
601
- .wp_themeSkin a.mceButtonEnabled:hover,
602
- .wp_themeSkin a.mceButtonActive,
603
- .wp_themeSkin a.mceButtonSelected {
604
- background-color: #d6d8da;
605
- border-color: #7789ba !important;
606
- }
607
-
608
- .wp_themeSkin .mceButtonDisabled {
609
- border-color: #83B4D5 !important;
610
- }
611
-
612
- /* ListBox */
613
- .wp_themeSkin .mceListBox .mceText,
614
- .wp_themeSkin .mceListBox .mceOpen {
615
- border-color: #710001; /* colorvalue 3 */
616
- background-color: #CF4529; /* colorvalue 5 */
617
- }
618
-
619
- .wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
620
- .wp_themeSkin .mceListBoxHover .mceOpen,
621
- .wp_themeSkin .mceListBoxSelected .mceOpen,
622
- .wp_themeSkin .mceListBoxSelected .mceText {
623
- border-color: #7789ba !important;
624
- background-color: #d6d8da;
625
- }
626
-
627
- .wp_themeSkin table.mceListBoxEnabled:hover .mceText,
628
- .wp_themeSkin .mceListBoxHover .mceText {
629
- border-color: #7789ba !important;
630
- }
631
-
632
- .wp_themeSkin select.mceListBox {
633
- border-color: #550007; /* colorvalue 4 */
634
- background-color: #fff;
635
- }
636
-
637
- /* SplitButton */
638
- .wp_themeSkin .mceSplitButton a.mceAction,
639
- .wp_themeSkin .mceSplitButton a.mceOpen {
640
- background-color: #CF4529; /* colorvalue 5 */
641
- border-color: #710001; /* colorvalue 3 */
642
- }
643
-
644
- .wp_themeSkin .mceSplitButton a.mceOpen:hover,
645
- .wp_themeSkin .mceSplitButtonSelected a.mceOpen,
646
- .wp_themeSkin table.mceSplitButtonEnabled:hover a.mceAction,
647
- .wp_themeSkin .mceSplitButton a.mceAction:hover {
648
- background-color: #d6d8da;
649
- border-color: #7789ba !important;
650
- }
651
-
652
- .wp_themeSkin .mceSplitButtonActive {
653
- background-color: #d6d8da;
654
- }
655
-
656
- /* ColorSplitButton */
657
- .wp_themeSkin div.mceColorSplitMenu table {
658
- background-color: #ebeaeb;
659
- border-color: #808080;
660
- }
661
-
662
- .wp_themeSkin .mceColorSplitMenu a {
663
- border-color: #808080;
664
- }
665
-
666
- .wp_themeSkin .mceColorSplitMenu a.mceMoreColors {
667
- border-color: #fff;
668
- }
669
-
670
- .wp_themeSkin .mceColorSplitMenu a.mceMoreColors:hover {
671
- border-color: #0A246A;
672
- background-color: #B6BDD2;
673
- }
674
-
675
- .wp_themeSkin a.mceMoreColors:hover {
676
- border-color: #0A246A;
677
- }
678
-
679
- /* Menu */
680
- .wp_themeSkin .mceMenu {
681
- border-color: #ddd;
682
- }
683
-
684
- .wp_themeSkin .mceMenu table {
685
- background-color: #ebeaeb;
686
- }
687
-
688
- .wp_themeSkin .mceMenu .mceText {
689
- color: #000;
690
- }
691
-
692
- .wp_themeSkin .mceMenu .mceMenuItemEnabled a:hover,
693
- .wp_themeSkin .mceMenu .mceMenuItemActive, #quicktags {
694
- background-color:#550007; /* colorvalue 4 */
695
- }
696
- .wp_themeSkin td.mceMenuItemSeparator {
697
- background-color: #aaa;
698
- }
699
- .wp_themeSkin .mceMenuItemTitle a {
700
- background-color: #ccc;
701
- border-bottom-color: #aaa;
702
- }
703
- .wp_themeSkin .mceMenuItemTitle span.mceText {
704
- color: #000;
705
- }
706
- .wp_themeSkin .mceMenuItemDisabled .mceText {
707
- color: #888;
708
- }
709
-
710
- /* pop-up */
711
- .clearlooks2 .mceTop .mceLeft, .clearlooks2 .mceTop .mceRight {
712
- background-color: #550007; /* colorvalue 4 */
713
- border-color: #710001; /* colorvalue 3 */
714
- }
715
-
716
- .clearlooks2 .mceFocus .mceTop .mceLeft, .clearlooks2 .mceFocus .mceTop .mceRight {
717
- background-color: #710001; /* colorvalue 3 */
718
- border-color: #CF4529; /* colorvalue 5 */
719
- }
720
-
721
- #editorcontainer {
722
- border-color: #CF4529; /* colorvalue 5 */
723
- }
724
-
725
- #poststuff #titlewrap {
726
- border-color: #CF4529; /* colorvalue 5 */
727
- }
728
-
729
- #tTips p#tTips_inside {
730
- background-color: #ddd;
731
- color: #333;
732
- }
733
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
css/colors-grey.css DELETED
@@ -1,733 +0,0 @@
1
- a.page-numbers:hover {
2
- border-color: #000000; /* colorvalue 1 */
3
- }
4
-
5
- body {
6
- background: #fff;
7
- color: #333;
8
- }
9
-
10
- body > #upload-menu {
11
- border-bottom-color: #fff;;
12
- }
13
-
14
- div#current-widgets, #postcustomstuff table, #your-profile fieldset, a.page-numbers, #rightnow, div.dashboard-widget, .widefat {
15
- border-color: #909090; /* colorvalue 5 */
16
- }
17
-
18
- div.dashboard-widget-error {
19
- background-color: #909090; /* colorvalue 5 */
20
- }
21
-
22
- div.dashboard-widget-notice {
23
- background-color: #D8D8D8; /* colorvalue 4 */
24
- }
25
-
26
- div.dashboard-widget-submit, ul.widget-control-list div.widget-control-actions {
27
- border-top-color: #909090; /* colorvalue 5 */
28
- }
29
-
30
- input.disabled, textarea.disabled {
31
- background-color: #D8D8D8; /* colorvalue 4 */
32
- }
33
-
34
- #user_info a:hover, li.widget-list-control-item h4.widget-title a:hover, .submit a, #dashmenu a:hover, #footer a, #upload-menu li a.upload-tab-link, li.widget-list-control-item h4.widget-title a,
35
- #dragHelper li.widget-list-control-item h4.widget-title a,
36
- #draghelper li.widget-list-control-item h4.widget-title a:visited, .login #backtoblog a:hover {
37
- color: #D8D8D8; /* colorvalue 4 */
38
- }
39
-
40
- ul#category-tabs li.ui-tabs-selected, li.widget-list-control-item, div.nav, .tablenav, .submitbox, h3.dashboard-widget-title, h3.dashboard-widget-title span, h3.dashboard-widget-title small, ul.view-switch li.current, .form-table tr, #poststuff h3, .login form {
41
- background-color:#F0F0F0; /* colorvalue 3 */
42
- color:#000000; /* colorvalue 1 */
43
- }
44
-
45
- div.ui-tabs-panel {
46
- border-color: #F0F0F0; /* colorvalue 3 */
47
- }
48
-
49
- select {
50
- background-color: #fff;
51
- border-color: #909090; /* colorvalue 5 */
52
- }
53
-
54
- strong .post-com-count span {
55
- background-color: #2583ad;
56
- }
57
-
58
- .button-secondary, #login form .submit input {
59
- background-color: #000000; /* colorvalue 1 */
60
- }
61
-
62
- ul#widget-list li.widget-list-item h4.widget-title {
63
- background-color: #909090; /* colorvalue 5 */
64
- color: #333;
65
- }
66
-
67
- ul.widget-control-list .sorthelper {
68
- background-color: #909090; /* colorvalue 5 */
69
- }
70
-
71
- .ac_match, .subsubsub a.current, h2 {
72
- color: #333;
73
- }
74
-
75
- .ac_over {
76
- background-color: #D8D8D8; /* colorvalue 4 */
77
- }
78
-
79
- .ac_results {
80
- background-color: #fff;
81
- border-color: #909090; /* colorvalue 5 */
82
- }
83
-
84
- .ac_results li {
85
- color: #333;
86
- }
87
-
88
- .alternate {
89
- background-color: #D8D8D8; /* colorvalue 4 */
90
- }
91
-
92
- .available-theme a.screenshot {
93
- background-color: #D8D8D8; /* colorvalue 4 */
94
- border-color: #909090; /* colorvalue 5 */
95
- }
96
-
97
- .bar {
98
- background-color: #909090; /* colorvalue 5 */
99
- border-right-color: #D8D8D8; /* colorvalue 4 */
100
- }
101
-
102
- .describe {
103
- border-top-color: #909090; /* colorvalue 5 */
104
- }
105
-
106
- .error, #login #login_error {
107
- background-color: #ffebe8;
108
- border-color: #c00;
109
- }
110
-
111
- .error a {
112
- color: #c00;
113
- }
114
-
115
- .form-invalid {
116
- background-color: #ffebe8 !important;
117
- }
118
-
119
- .form-invalid input {
120
- border-color: #c00 !important;
121
- }
122
-
123
- .form-table input, .form-table textarea {
124
- border-color: #909090; /* colorvalue 5 */
125
- }
126
-
127
- .form-table td, .form-table th {
128
- border-bottom-color: #fff;
129
- }
130
-
131
- .highlight {
132
- background-color: #F0F0F0; /* colorvalue 3 */
133
- color: #787878; /* colorvalue 2 */
134
- }
135
-
136
- .howto, .nonessential, #sidemenu, #edit-slug-box, .form-input-tip, #dashboard_primary span.rss-date, .subsubsub, #dashboard_secondary div.dashboard-widget-content ul li a cite {
137
- color: #909090; /* colorvalue 5 */
138
- }
139
-
140
- #dashmenu a, #user_info a {
141
- color: #F0F0F0; /* colorvalue 3 */
142
- }
143
-
144
- .media-item {
145
- border-bottom-color: #909090; /* colorvalue 5 */
146
- }
147
-
148
- .media-upload-form label.form-help, td.help {
149
- color: #787878; /* colorvalue 2 */
150
- }
151
-
152
- .page-numbers {
153
- background-color: #fff;
154
- border-color: #fff;
155
- }
156
-
157
- .page-numbers.current {
158
- background-color: #787878; /* colorvalue 2 */
159
- border-color: #787878; /* colorvalue 2 */
160
- color: #fff;
161
- }
162
-
163
- .post-com-count {
164
- background-image: url(../../../../wp-admin/images/bubble_bg.gif);
165
- color: #fff;
166
- }
167
-
168
- .post-com-count span {
169
- background-color: #bbb;
170
- color: #fff;
171
- }
172
-
173
- .post-com-count:hover span {
174
- background-color: #d54e21;
175
- }
176
-
177
- .quicktags, .search {
178
- background-color: #787878; /* colorvalue 2 */
179
- color: #333;
180
- }
181
-
182
- .side-info h5, .bordertitle {
183
- border-bottom-color: #909090; /* colorvalue 5 */
184
- }
185
-
186
- .side-info ul, .widget-description {
187
- color: #787878; /* colorvalue 2 */
188
- }
189
-
190
- .submit input, .button, .button-secondary, #login form .submit input, div.dashboard-widget-submit input, #edit-slug-buttons a.save {
191
- background-color: #D8D8D8; /* colorvalue 4 */
192
- color: #787878; /* colorvalue 2 */
193
- border-color: #F0F0F0; /* colorvalue 3 */
194
- }
195
-
196
- .tablenav .button-secondary {
197
- border-color: #787878; /* colorvalue 2 */
198
- }
199
-
200
- .submit input:hover, .button:hover, #edit-slug-buttons a.save:hover {
201
- border-color: #F0F0F0; /* colorvalue 3 */
202
- }
203
-
204
- .submit input:hover, .button:hover, .button-secondary:hover, #wphead #viewsite a:hover, #submenu a.current, #submenu a:hover, .submitbox #previewview a:hover, #the-comment-list .comment a:hover, #rightnow a:hover, a:hover, .subsubsub a:hover, .subsubsub a.current:hover, #login form .submit input:hover, div.dashboard-widget-submit input:hover, #edit-slug-buttons a.save:hover {
205
- color: #000000; /* colorvalue 1 */
206
- }
207
-
208
- #adminmenu a:hover, #sidemenu a:hover {
209
- color: #D8D8D8; /* colorvalue 4 */
210
- }
211
-
212
- .button-secondary:hover, #login form .submit input:hover {
213
- border-color: #787878; /* colorvalue 2 */
214
- background-color: #D8D8D8; /* colorvalue 4 */
215
- }
216
-
217
- .submitbox #autosave .error, ul.view-switch li.current a {
218
- color: #909090; /* colorvalue 5 */
219
- }
220
-
221
- .submitbox #previewview {
222
- background-color:#787878; /* colorvalue 2 */
223
- }
224
-
225
- .submitbox #previewview a, #rightnow .rbutton {
226
- background-color: #909090; /* colorvalue 5 */
227
- color: #F0F0F0; /* colorvalue 3 */
228
- }
229
-
230
- .submitbox .submit {
231
- background-color: #909090; /* colorvalue 5 */
232
- color: #F0F0F0; /* colorvalue 3 */
233
- }
234
-
235
- .submitbox .submitdelete {
236
- border-bottom-color: #909090; /* colorvalue 5 */
237
- }
238
-
239
- .submitbox .submitdelete:hover {
240
- color: #fff;
241
- background-color: #f00;
242
- border-bottom-color: #f00;
243
- }
244
-
245
- .tablenav .dots {
246
- background-color: #F0F0F0; /* colorvalue 3 */
247
- border-color: #F0F0F0; /* colorvalue 3 */
248
- }
249
-
250
- .tablenav .next, .tablenav .prev{
251
- background-color: #F0F0F0; /* colorvalue 3 */
252
- border-bottom-color: #F0F0F0; /* colorvalue 3 */
253
- border-color: #F0F0F0; /* colorvalue 3 */
254
- color: #787878; /* colorvalue 2 */
255
- }
256
-
257
- .tablenav .next:hover, .tablenav .prev:hover {
258
- border-bottom-color: #d54e21;
259
- border-color: #F0F0F0; /* colorvalue 3 */
260
- color: #d54e21;
261
- }
262
-
263
- .updated, .login #login_error, .login .message {
264
- background-color:#787878; /* colorvalue 2 */
265
- border-color:#000000; /* colorvalue 1 */
266
- }
267
-
268
- .updated a {
269
- border-bottom-color: #F0F0F0; /* colorvalue 3 */
270
- }
271
-
272
- .widefat td, .widefat th, div#available-widgets-filter, ul#widget-list li.widget-list-item, .commentlist li {
273
- border-bottom-color: #909090; /* colorvalue 5 */
274
- }
275
-
276
- .widefat thead, .thead {
277
- background-color:#909090; /* colorvalue 5 */
278
- color: #787878; /* colorvalue 2 */
279
- }
280
-
281
- .widget-control-save, .widget-control-remove {
282
- background-color: #F0F0F0; /* colorvalue 3 */
283
- color: #909090; /* colorvalue 5 */
284
- }
285
-
286
- .wrap h2 {
287
- border-bottom-color:#F0F0F0; /* colorvalue 3 */
288
- color:#787878; /* colorvalue 2 */
289
- }
290
-
291
- #poststuff #edButtonPreview, #poststuff #edButtonHTML, #the-comment-list p.comment-author strong a, a {
292
- color: #787878; /* colorvalue 2 */
293
- }
294
-
295
- #adminmenu a {
296
- color: #F0F0F0; /* colorvalue 3 */
297
- }
298
-
299
- #submenu a {
300
- color: #787878; /* colorvalue 2 */
301
- }
302
- /* Because we don't want visited on these links */
303
- #adminmenu a.current, #sidemenu a.current {
304
- background-color: #fff;
305
- border-color: #000000; /* colorvalue 1 */
306
- border-bottom-color: #fff;
307
- color: #333;
308
- font-weight: bold;
309
- }
310
-
311
- #adminmenu li a #awaiting-mod {
312
- background-image: url(../../../../wp-admin/images/comment-stalk-classic.gif);
313
- }
314
-
315
- #adminmenu li a #awaiting-mod span {
316
- background-color: #d54e21;
317
- color: #fff;
318
- }
319
-
320
- #rightnow .reallynow {
321
- background-color:#787878; /* colorvalue 2 */
322
- color:#D8D8D8; /* colorvalue 4 */
323
- }
324
-
325
- #rightnow .reallynow a {
326
- background-color:#D8D8D8; /* colorvalue 4 */
327
- color:#787878; /* colorvalue 2 */
328
- }
329
-
330
- #rightnow .reallynow a:hover {
331
- color:#909090; /* colorvalue 5 */
332
- }
333
-
334
-
335
- #adminmenu li a:hover #awaiting-mod span {
336
- background-color: #000000; /* colorvalue 1 */
337
- }
338
-
339
- #adminmenu, div#media-upload-header {
340
- background-color: #787878; /* colorvalue 2 */
341
- border-bottom-color: #000000; /* colorvalue 1 */
342
- }
343
-
344
- #currenttheme img {
345
- border-color: #909090; /* colorvalue 5 */
346
- }
347
-
348
- #current-widgets .drop-widget-here {
349
- background-color: #ffc;
350
- }
351
-
352
- #dashboard_secondary div.dashboard-widget-content ul li a {
353
- background-color: #D8D8D8; /* colorvalue 4 */
354
- }
355
-
356
- input.readonly {
357
- background-color: #909090; /* colorvalue 5 */
358
- }
359
-
360
- #dashmenu a.current {
361
- background-color: #787878; /* colorvalue 2 */
362
- color: #F0F0F0; /* colorvalue 3 */
363
- }
364
-
365
- #dragHelper h4.widget-title, li.widget-list-control-item h4, #dragHelper li.widget-list-control-item h4 {
366
- background-color: #787878; /* colorvalue 2 */
367
- color: #D8D8D8; /* colorvalue 4 */
368
- }
369
-
370
- #ed_toolbar input {
371
- background: url( ../../../../wp-admin/images/fade-butt.png ) #fff repeat-x 0 -2px;
372
- }
373
-
374
- #editable-post-name {
375
- background-color: #fffbcc;
376
- }
377
-
378
- #edit-slug-box strong, .login #nav a {
379
- color: #909090; /* colorvalue 5 */
380
- }
381
-
382
- #edit-slug-buttons a.save {
383
- background-color: #909090; /* colorvalue 5 */
384
- }
385
-
386
- #footer {
387
- background-image: url(../img/wplogo.png) !important;
388
- background-position:10px 10px;
389
- background-repeat: no-repeat;
390
- _background-image: url(../img/wplogo.gif);
391
- background-color:#909090; /* colorvalue 5 */
392
- color:#000000; /* colorvalue 1 */
393
- }
394
-
395
- #media-items {
396
- border-color: #909090; /* colorvalue 5 */
397
- }
398
-
399
- #pass-strength-result {
400
- background-color: #909090; /* colorvalue 5 */
401
- border-color: #D8D8D8; /* colorvalue 4 */
402
- }
403
-
404
- #pass-strength-result.bad {
405
- background-color: #D8D8D8; /* colorvalue 4 */
406
- border-color: #000000; /* colorvalue 1 */
407
- }
408
-
409
- #pass-strength-result.good {
410
- background-color: #909090; /* colorvalue 5 */
411
- border-color: #D8D8D8; /* colorvalue 4 */
412
- }
413
-
414
- #pass-strength-result.short {
415
- background-color: #909090; /* colorvalue 5 */
416
- }
417
-
418
- #pass-strength-result.strong {
419
- background-color: #787878; /* colorvalue 2 */
420
- border-color: #D8D8D8; /* colorvalue 4 */
421
- }
422
-
423
- .checkbox, .side-info, #your-profile #rich_editing {
424
- background-color: #fff;
425
- }
426
-
427
- #plugins .active {
428
- background-color:#F0F0F0; /* colorvalue 3 */
429
- color:#787878; /* colorvalue 2 */
430
- }
431
-
432
- #plugins .togl {
433
- border-right-color: #D8D8D8; /* colorvalue 4 */
434
- }
435
-
436
- #the-comment-list .unapproved {
437
- background-color: #ffffe0;
438
- }
439
-
440
- #plugins tr {
441
- background-color: #fff;
442
- }
443
-
444
- #poststuff #editor-toolbar .active {
445
- background-color: #D8D8D8; /* colorvalue 4 */
446
- color: #787878; /* colorvalue 2 */
447
- }
448
-
449
- #poststuff .closed .togbox {
450
- background-color: #F0F0F0; /* colorvalue 3 */
451
- background-image: url(../../../../wp-admin/images/toggle-arrow.gif);
452
- }
453
-
454
- #poststuff .postbox, #titlediv, #poststuff .postarea, #poststuff .stuffbox {
455
- border-color: #909090; /* colorvalue 5 */
456
- border-right-color: #F0F0F0; /* colorvalue 3 */
457
- border-bottom-color: #F0F0F0; /* colorvalue 3 */
458
- }
459
-
460
- #poststuff .togbox {
461
- background-color:#909090; /* colorvalue 5 */
462
- background-image: url(../../../../wp-admin/images/toggle-arrow.gif);
463
- }
464
-
465
- #quicktags #ed_link {
466
- color: #787878; /* colorvalue 2 */
467
- }
468
-
469
- #rightnow .youhave {
470
- background-color: #F0F0F0; /* colorvalue 3 */
471
- }
472
-
473
- #rightnow a {
474
- color: #787878; /* colorvalue 2 */
475
- }
476
-
477
- #sidemenu a {
478
- background-color: #787878; /* colorvalue 2 */
479
- border-bottom-color: #000000; /* colorvalue 1 */
480
- border-top-color: #787878; /* colorvalue 2 */
481
- color: #F0F0F0; /* colorvalue 3 */
482
- }
483
-
484
- #tagchecklist span a {
485
- background: url(../../../../wp-admin/images/xit.gif) no-repeat;
486
- }
487
-
488
- #tagchecklist span a:hover {
489
- background: url(../../../../wp-admin/images/xit.gif) no-repeat -10px 0;
490
- }
491
-
492
- #the-comment-list .comment a {
493
- border-bottom-color: #909090; /* colorvalue 5 */
494
- color: #F0F0F0; /* colorvalue 3 */
495
- }
496
-
497
- #update-nag, .plugin-update {
498
- background-color: #fffeeb;
499
- border-bottom-color: #ccc;
500
- border-top-color: #ccc;
501
- color: #555;
502
- }
503
-
504
- #upload-files a.file-link {
505
- background-color: #D8D8D8; /* colorvalue 4 */
506
- }
507
-
508
- #upload-file-view a img {
509
- border-bottom-color: #787878; /* colorvalue 2 */
510
- }
511
-
512
- #upload-menu li #current-tab-nav, #upload-file {
513
- background-color: #D8D8D8; /* colorvalue 4 */
514
- }
515
-
516
- #upload-menu li span a.page-numbers {
517
- color: #000000; /* colorvalue 1 */
518
- }
519
-
520
- #upload-menu li.current {
521
- border-right-color: #F0F0F0; /* colorvalue 3 */
522
- color: #333;
523
- }
524
-
525
- #upload-menu li.current a.upload-tab-link, #upload-menu li a:hover {
526
- background-color: #D8D8D8; /* colorvalue 4 */
527
- color: #333;
528
- }
529
-
530
- #upload-menu, #upload-menu li {
531
- border-top-color: #D8D8D8; /* colorvalue 4 */
532
- }
533
-
534
- #user_info, .login #backtoblog a {
535
- color: #D8D8D8; /* colorvalue 4 */
536
- }
537
-
538
- #wphead {
539
- background-color:#787878; /* colorvalue 2 */
540
- color:#F0F0F0; /* colorvalue 3 */
541
- }
542
-
543
- #wphead, body.login {
544
- border-top-color:#000000; /* colorvalue 1 */
545
- color:#787878; /* colorvalue 2 */
546
- }
547
-
548
- #wphead #viewsite a {
549
- background-color: #F0F0F0; /* colorvalue 3 */
550
- color: #787878; /* colorvalue 2 */
551
- border-color: #D8D8D8; /* colorvalue 4 */
552
- }
553
-
554
- #wphead #viewsite a:hover {
555
- color: #000000; /* colorvalue 1 */
556
- }
557
-
558
- #wphead h1, #dashmenu a.current:hover {
559
- color:#F0F0F0; /* colorvalue 3 */
560
- }
561
-
562
- div#media-upload-error, .file-error, abbr.required, .widget-control-remove:hover, .delete:hover {
563
- color: #f00;
564
- }
565
-
566
- #media-upload a.delete {
567
- color: #909090; /* colorvalue 5 */
568
- }
569
-
570
-
571
- /* TinyMCE */
572
- .wp_themeSkin *,
573
- .wp_themeSkin a:hover,
574
- .wp_themeSkin a:link,
575
- .wp_themeSkin a:visited,
576
- .wp_themeSkin a:active {
577
- color: #000;
578
- }
579
-
580
- /* Containers */
581
- .wp_themeSkin table {
582
- background: #F0F0F0; /* colorvalue 3 */
583
- }
584
-
585
- .wp_themeSkin iframe {
586
- background: #fff;
587
- }
588
-
589
- /* Layout */
590
- .wp_themeSkin .mceStatusbar {
591
- color:#333;
592
- background-color: #D8D8D8; /* colorvalue 4 */
593
- }
594
-
595
- /* Button */
596
- .wp_themeSkin .mceButton {
597
- background-color: #909090; /* colorvalue 5 */
598
- border-color: #F0F0F0; /* colorvalue 3 */
599
- }
600
-
601
- .wp_themeSkin a.mceButtonEnabled:hover,
602
- .wp_themeSkin a.mceButtonActive,
603
- .wp_themeSkin a.mceButtonSelected {
604
- background-color: #d6d8da;
605
- border-color: #7789ba !important;
606
- }
607
-
608
- .wp_themeSkin .mceButtonDisabled {
609
- border-color: #83B4D5 !important;
610
- }
611
-
612
- /* ListBox */
613
- .wp_themeSkin .mceListBox .mceText,
614
- .wp_themeSkin .mceListBox .mceOpen {
615
- border-color: #F0F0F0; /* colorvalue 3 */
616
- background-color: #909090; /* colorvalue 5 */
617
- }
618
-
619
- .wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
620
- .wp_themeSkin .mceListBoxHover .mceOpen,
621
- .wp_themeSkin .mceListBoxSelected .mceOpen,
622
- .wp_themeSkin .mceListBoxSelected .mceText {
623
- border-color: #7789ba !important;
624
- background-color: #d6d8da;
625
- }
626
-
627
- .wp_themeSkin table.mceListBoxEnabled:hover .mceText,
628
- .wp_themeSkin .mceListBoxHover .mceText {
629
- border-color: #7789ba !important;
630
- }
631
-
632
- .wp_themeSkin select.mceListBox {
633
- border-color: #D8D8D8; /* colorvalue 4 */
634
- background-color: #fff;
635
- }
636
-
637
- /* SplitButton */
638
- .wp_themeSkin .mceSplitButton a.mceAction,
639
- .wp_themeSkin .mceSplitButton a.mceOpen {
640
- background-color: #909090; /* colorvalue 5 */
641
- border-color: #F0F0F0; /* colorvalue 3 */
642
- }
643
-
644
- .wp_themeSkin .mceSplitButton a.mceOpen:hover,
645
- .wp_themeSkin .mceSplitButtonSelected a.mceOpen,
646
- .wp_themeSkin table.mceSplitButtonEnabled:hover a.mceAction,
647
- .wp_themeSkin .mceSplitButton a.mceAction:hover {
648
- background-color: #d6d8da;
649
- border-color: #7789ba !important;
650
- }
651
-
652
- .wp_themeSkin .mceSplitButtonActive {
653
- background-color: #d6d8da;
654
- }
655
-
656
- /* ColorSplitButton */
657
- .wp_themeSkin div.mceColorSplitMenu table {
658
- background-color: #ebeaeb;
659
- border-color: #808080;
660
- }
661
-
662
- .wp_themeSkin .mceColorSplitMenu a {
663
- border-color: #808080;
664
- }
665
-
666
- .wp_themeSkin .mceColorSplitMenu a.mceMoreColors {
667
- border-color: #fff;
668
- }
669
-
670
- .wp_themeSkin .mceColorSplitMenu a.mceMoreColors:hover {
671
- border-color: #0A246A;
672
- background-color: #B6BDD2;
673
- }
674
-
675
- .wp_themeSkin a.mceMoreColors:hover {
676
- border-color: #0A246A;
677
- }
678
-
679
- /* Menu */
680
- .wp_themeSkin .mceMenu {
681
- border-color: #ddd;
682
- }
683
-
684
- .wp_themeSkin .mceMenu table {
685
- background-color: #ebeaeb;
686
- }
687
-
688
- .wp_themeSkin .mceMenu .mceText {
689
- color: #000;
690
- }
691
-
692
- .wp_themeSkin .mceMenu .mceMenuItemEnabled a:hover,
693
- .wp_themeSkin .mceMenu .mceMenuItemActive, #quicktags {
694
- background-color:#D8D8D8; /* colorvalue 4 */
695
- }
696
- .wp_themeSkin td.mceMenuItemSeparator {
697
- background-color: #aaa;
698
- }
699
- .wp_themeSkin .mceMenuItemTitle a {
700
- background-color: #ccc;
701
- border-bottom-color: #aaa;
702
- }
703
- .wp_themeSkin .mceMenuItemTitle span.mceText {
704
- color: #000;
705
- }
706
- .wp_themeSkin .mceMenuItemDisabled .mceText {
707
- color: #888;
708
- }
709
-
710
- /* pop-up */
711
- .clearlooks2 .mceTop .mceLeft, .clearlooks2 .mceTop .mceRight {
712
- background-color: #D8D8D8; /* colorvalue 4 */
713
- border-color: #F0F0F0; /* colorvalue 3 */
714
- }
715
-
716
- .clearlooks2 .mceFocus .mceTop .mceLeft, .clearlooks2 .mceFocus .mceTop .mceRight {
717
- background-color: #F0F0F0; /* colorvalue 3 */
718
- border-color: #909090; /* colorvalue 5 */
719
- }
720
-
721
- #editorcontainer {
722
- border-color: #909090; /* colorvalue 5 */
723
- }
724
-
725
- #poststuff #titlewrap {
726
- border-color: #909090; /* colorvalue 5 */
727
- }
728
-
729
- #tTips p#tTips_inside {
730
- background-color: #ddd;
731
- color: #333;
732
- }
733
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
css/colors-wp23.css DELETED
@@ -1,940 +0,0 @@
1
- /*
2
- Scheme: WordPress 2.3
3
- Colors: 000000|14568A|448ABD|83B4D8
4
- Author of Basis: James Dick
5
- Basis from Plugin: http://www.jamesdimick.com/creations/easy-admin-color-schemes/
6
- */
7
- a.page-numbers:hover {
8
- border-color: #999;
9
- }
10
-
11
- body > #upload-menu {
12
- border-bottom-color: #fff;
13
- }
14
-
15
- div#current-widgets, #postcustomstuff table, #your-profile fieldset, a.page-numbers, #rightnow, div.dashboard-widget, .widefat {
16
- border-color: #ccc;
17
- }
18
-
19
- div.dashboard-widget-error {
20
- background-color: #c43;
21
- }
22
-
23
- div.dashboard-widget-notice {
24
- background-color: #F0F6FB;
25
- }
26
-
27
- div.dashboard-widget-submit, ul.widget-control-list div.widget-control-actions {
28
- border-top-color: #ccc;
29
- }
30
-
31
- input.disabled, textarea.disabled {
32
- background-color: #ccc;
33
- }
34
-
35
- li.widget-list-control-item h4.widget-title a:hover, .submit a, #upload-menu li a.upload-tab-link, li.widget-list-control-item h4.widget-title a,
36
- #dragHelper li.widget-list-control-item h4.widget-title a,
37
- #draghelper li.widget-list-control-item h4.widget-title a:visited, .login #backtoblog a:hover {
38
- color: #fff;
39
- }
40
-
41
- ul#category-tabs li.ui-tabs-selected, li.widget-list-control-item, div.nav, .tablenav, .submitbox, h3.dashboard-widget-title, h3.dashboard-widget-title span, h3.dashboard-widget-title small, ul.view-switch li.current, .form-table tr, #poststuff h3, .login form {
42
- background-color: #cfebf7;
43
- }
44
-
45
- div.ui-tabs-panel {
46
- border-color: #cfebf7;
47
- }
48
-
49
- select {
50
- background-color: #fff;
51
- border-color: #ddd;
52
- }
53
-
54
- strong .post-com-count span {
55
- background-color: #2583ad;
56
- }
57
-
58
- .button-secondary, #login form .submit input {
59
- background-color: #8ebddc !important;
60
- }
61
-
62
- ul#widget-list li.widget-list-item h4.widget-title {
63
- background-color: #f0f0f0;
64
- color: #000;
65
- }
66
-
67
- ul.widget-control-list .sorthelper {
68
- background-color: #ccf3fa;
69
- }
70
-
71
- .ac_match, .subsubsub a.current, h2 {
72
- color: #000;
73
- }
74
-
75
- .ac_over {
76
- background-color: #f0f0b8;
77
- }
78
-
79
- .ac_results {
80
- background-color: #fff;
81
- border-color: #808080;
82
- }
83
-
84
- .ac_results li {
85
- color: #101010;
86
- }
87
-
88
- .alternate {
89
- background-color: #f9f9f9;
90
- }
91
-
92
- .available-theme a.screenshot {
93
- background-color: #f1f1f1;
94
- border-color: #ccc;
95
- }
96
-
97
- .bar {
98
- background-color: #e8e8e8;
99
- border-right-color: #99d;
100
- }
101
-
102
- .describe {
103
- border-top-color: #d0d0d0;
104
- }
105
-
106
- #login #login_error {
107
- background-color: #ffebe8;
108
- border-color: #c00;
109
- }
110
-
111
- .form-invalid {
112
- background-color: #ffebe8 !important;
113
- }
114
-
115
- .form-invalid input {
116
- border-color: #c00 !important;
117
- }
118
-
119
- .form-table input, .form-table textarea {
120
- border-color: #c6d9e9;
121
- }
122
-
123
- .form-table td, .form-table th {
124
- border-bottom-color: #fff;
125
- }
126
-
127
- .highlight {
128
- background-color: #cfebf7;
129
- color: #d54e21;
130
- }
131
-
132
- .howto, .nonessential, #edit-slug-box, .form-input-tip, #dashboard_primary span.rss-date, .subsubsub, #dashboard_secondary div.dashboard-widget-content ul li a cite {
133
- color: #999;
134
- }
135
-
136
- .media-item {
137
- border-bottom-color: #d0d0d0;
138
- }
139
-
140
- .media-upload-form label.form-help, td.help {
141
- color: #9a9a9a;
142
- }
143
-
144
- .page-numbers {
145
- background-color: #fff;
146
- border-color: #fff;
147
- }
148
-
149
- .page-numbers.current {
150
- background-color: #328ab2;
151
- border-color: #328ab2;
152
- color: #fff;
153
- }
154
-
155
- .post-com-count {
156
- background-image: url(../../../../wp-admin/images/bubble_bg.gif);
157
- color: #fff;
158
- }
159
-
160
- .post-com-count span {
161
- background-color: #bbb;
162
- color: #fff;
163
- }
164
-
165
- .post-com-count:hover span {
166
- background-color: #d54e21;
167
- }
168
-
169
- .quicktags, .search {
170
- background-color: #ccc;
171
- color: #000;
172
- }
173
-
174
- .side-info h5, .bordertitle {
175
- border-bottom-color: #dadada;
176
- }
177
-
178
- .side-info ul, .widget-description {
179
- color: #666;
180
- }
181
-
182
- .submit input, .button, .button-secondary, #login form .submit input, div.dashboard-widget-submit input, #edit-slug-buttons a.save {
183
- background-color: #e5e5e5;
184
- color: #07273e;
185
- border-color: #a3a3a3;
186
- }
187
-
188
- .button[disabled], .button:disabled {
189
- background-color: #999;
190
- }
191
-
192
- .tablenav .button-secondary {
193
- border-color: #5396c5;
194
- }
195
-
196
- .submit input:hover, .button:hover, #edit-slug-buttons a.save:hover {
197
- border-color: #535353;
198
- }
199
-
200
- .submit input:hover, .button:hover, .button-secondary:hover, .submitbox #previewview a:hover, #the-comment-list .comment a:hover, #rightnow a:hover, a:hover, .subsubsub a:hover, .subsubsub a.current:hover, #login form .submit input:hover, div.dashboard-widget-submit input:hover, #edit-slug-buttons a.save:hover {
201
- color: #d54e21;
202
- }
203
-
204
- .button-secondary:hover, #login form .submit input:hover {
205
- border-color: #328ab2;
206
- background-color: #a6d2e5 !important;
207
- }
208
-
209
- .submitbox #autosave .error, ul.view-switch li.current a {
210
- color: #333;
211
- }
212
-
213
- .submitbox #previewview {
214
- background-color: #5488af;
215
- }
216
-
217
- .submitbox #previewview a, #rightnow .rbutton {
218
- background-color: #ebebeb;
219
- color: #264761;
220
- }
221
-
222
- .submitbox .submit {
223
- background-color: #464646;
224
- color: #ccc;
225
- }
226
-
227
- .submitbox .submitdelete {
228
- border-bottom-color: #999;
229
- }
230
-
231
- .submitbox .submitdelete:hover {
232
- color: #fff;
233
- background-color: #f00;
234
- border-bottom-color: #f00;
235
- }
236
-
237
- .tablenav .dots {
238
- background-color: #cfebf7;
239
- border-color: #cfebf7;
240
- }
241
-
242
- .tablenav .next, .tablenav .prev{
243
- background-color: #cfebf7;
244
- border-bottom-color: #cfebf7;
245
- border-color: #cfebf7;
246
- color: #2583ad;
247
- }
248
-
249
- .tablenav .next:hover, .tablenav .prev:hover {
250
- border-bottom-color: #d54e21;
251
- border-color: #cfebf7;
252
- color: #d54e21;
253
- }
254
-
255
- .updated, .login #login_error, .login .message {
256
- background-color: #ffffe0;
257
- border-color: #e6db55;
258
- }
259
-
260
- .widefat td, .widefat th, div#available-widgets-filter, ul#widget-list li.widget-list-item, .commentlist li {
261
- border-bottom-color: #ccc;
262
- }
263
-
264
- .widefat thead, .thead {
265
- background-color: #464646;
266
- color: #d7d7d7;
267
- }
268
-
269
- .widget-control-save, .widget-control-remove {
270
- background-color: #83b4d5;
271
- color: #246;
272
- }
273
-
274
- .wrap h2 {
275
- border-bottom-color: #dadada;
276
- color: #5a5a5a;
277
- }
278
-
279
- #poststuff #edButtonPreview, #poststuff #edButtonHTML, #the-comment-list p.comment-author strong a, a {
280
- color: #2e7ca0;
281
- }
282
-
283
- #rightnow .reallynow {
284
- background-color: #14568a;
285
- color: #fff;
286
- }
287
-
288
- div#media-upload-header {
289
- background-color: #14568a;
290
- border-bottom-color: #07273e;
291
- }
292
-
293
- #currenttheme img {
294
- border-color: #666;
295
- }
296
-
297
- #current-widgets .drop-widget-here {
298
- background-color: #ffc;
299
- }
300
-
301
- #dashboard_secondary div.dashboard-widget-content ul li a {
302
- background-color: #f9f9f9;
303
- }
304
-
305
- input.readonly {
306
- background-color: #ddd;
307
- }
308
-
309
- #dragHelper h4.widget-title, li.widget-list-control-item h4, #dragHelper li.widget-list-control-item h4 {
310
- background-color: #2683ae;
311
- color: #fff;
312
- }
313
-
314
- #ed_toolbar input {
315
- background: url( ../images/fade-butt.png ) #fff repeat-x 0 -2px;
316
- }
317
-
318
- #editable-post-name {
319
- background-color: #fffbcc;
320
- }
321
-
322
- #edit-slug-box strong, .login #nav a {
323
- color: #777;
324
- }
325
-
326
- #edit-slug-buttons a.save {
327
- background-color: #ebebeb;
328
- }
329
-
330
- #media-items {
331
- border-color: #c0c0c0;
332
- }
333
-
334
- #pass-strength-result {
335
- background-color: #e3e3e3;
336
- border-color: #000;
337
- }
338
-
339
- #pass-strength-result.bad {
340
- background-color: #ffeff7;
341
- border-color: #c69;
342
- }
343
-
344
- #pass-strength-result.good {
345
- background-color: #effff4;
346
- border-color: #66cc87;
347
- }
348
-
349
- #pass-strength-result.short {
350
- background-color: #e3e3e3;
351
- }
352
-
353
- #pass-strength-result.strong {
354
- background-color: #59ef86;
355
- border-color: #319f52;
356
- }
357
-
358
- .checkbox, .side-info, #your-profile #rich_editing {
359
- background-color: #fff;
360
- }
361
-
362
- #plugins .active {
363
- background-color: #BBEEBB;
364
- }
365
-
366
- #plugins .togl {
367
- border-right-color: #ccc;
368
- }
369
-
370
- #the-comment-list .unapproved {
371
- background-color: #ffffe0;
372
- }
373
-
374
- #plugins tr {
375
- background-color: #fff;
376
- }
377
-
378
- #poststuff #editor-toolbar .active {
379
- background-color: #83b4d5;
380
- color: #333;
381
- }
382
-
383
- #poststuff .closed .togbox {
384
- background-color: #2583ad;
385
- background-image: url(../../../../wp-admin/images/toggle-arrow.gif);
386
- }
387
-
388
- #poststuff .postbox, #titlediv, #poststuff .postarea, #poststuff .stuffbox {
389
- border-color: #ebebeb;
390
- border-right-color: #ccc;
391
- border-bottom-color: #ccc;
392
- }
393
-
394
- #poststuff .togbox {
395
- background-color: #b2b2b2;
396
- background-image: url(../../../../wp-admin/images/toggle-arrow.gif);
397
- }
398
-
399
- #quicktags #ed_link {
400
- color: #00f;
401
- }
402
-
403
- #rightnow .youhave {
404
- background-color: #f0f6fb;
405
- }
406
-
407
- #rightnow a {
408
- color: #448abd;
409
- }
410
-
411
- #tagchecklist span a {
412
- background: url(../../../../wp-admin/images/xit.gif) no-repeat;
413
- }
414
-
415
- #tagchecklist span a:hover {
416
- background: url(../../../../wp-admin/images/xit.gif) no-repeat -10px 0;
417
- }
418
-
419
- #the-comment-list .comment a {
420
- border-bottom-color: #ababab;
421
- color: #666;
422
- }
423
-
424
- #update-nag, .plugin-update {
425
- background-color: #fffeeb;
426
- border-bottom-color: #ccc;
427
- border-top-color: #ccc;
428
- color: #555;
429
- }
430
-
431
- #upload-files a.file-link {
432
- background-color: #d1e2ef;
433
- }
434
-
435
- #upload-file-view a img {
436
- border-bottom-color: #69c;
437
- }
438
-
439
- #upload-menu li #current-tab-nav, #upload-file {
440
- background-color: #f9fcfe;
441
- }
442
-
443
- #upload-menu li span a.page-numbers {
444
- color: #00019b;
445
- }
446
-
447
- #upload-menu li.current {
448
- border-right-color: #448abd;
449
- color: #000;
450
- }
451
-
452
- #upload-menu li.current a.upload-tab-link, #upload-menu li a:hover {
453
- background-color: #f9fcfe;
454
- color: #000;
455
- }
456
-
457
- #upload-menu, #upload-menu li {
458
- border-top-color: #247fab;
459
- }
460
-
461
- #user_info, .login #backtoblog a {
462
- color: #ccc;
463
- }
464
-
465
- body.login {
466
- border-top-color: #07273e;
467
- }
468
-
469
- div#media-upload-error, .file-error, abbr.required, .widget-control-remove:hover, .delete:hover {
470
- color: #f00;
471
- }
472
-
473
- #media-upload a.delete {
474
- color: #888;
475
- }
476
-
477
- .wp_themeSkin *,
478
- .wp_themeSkin a:hover,
479
- .wp_themeSkin a:link,
480
- .wp_themeSkin a:visited,
481
- .wp_themeSkin a:active {
482
- color: #000;
483
- }
484
-
485
- .wp_themeSkin table {
486
- background: #83B4D5;
487
- }
488
-
489
- .wp_themeSkin iframe {
490
- background: #fff;
491
- }
492
-
493
- .wp_themeSkin .mceStatusbar {
494
- color:#000;
495
- background-color: #eaf3fa;
496
- }
497
-
498
- .wp_themeSkin .mceButton {
499
- background-color: #e9e8e8;
500
- border-color: #83B4D5;
501
- }
502
-
503
- .wp_themeSkin a.mceButtonEnabled:hover,
504
- .wp_themeSkin a.mceButtonActive,
505
- .wp_themeSkin a.mceButtonSelected {
506
- background-color: #d6d8da;
507
- border-color: #7789ba !important;
508
- }
509
-
510
- .wp_themeSkin .mceButtonDisabled {
511
- border-color: #83B4D5 !important;
512
- }
513
-
514
- .wp_themeSkin .mceListBox .mceText,
515
- .wp_themeSkin .mceListBox .mceOpen {
516
- border-color: #83B4D5;
517
- background-color: #e9e8e8;
518
- }
519
-
520
- .wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
521
- .wp_themeSkin .mceListBoxHover .mceOpen,
522
- .wp_themeSkin .mceListBoxSelected .mceOpen,
523
- .wp_themeSkin .mceListBoxSelected .mceText {
524
- border-color: #7789ba !important;
525
- background-color: #d6d8da;
526
- }
527
-
528
- .wp_themeSkin table.mceListBoxEnabled:hover .mceText,
529
- .wp_themeSkin .mceListBoxHover .mceText {
530
- border-color: #7789ba !important;
531
- }
532
-
533
- .wp_themeSkin select.mceListBox {
534
- border-color: #b3c7e1;
535
- background-color: #fff;
536
- }
537
-
538
- .wp_themeSkin .mceSplitButton a.mceAction,
539
- .wp_themeSkin .mceSplitButton a.mceOpen {
540
- background-color: #e9e8e8;
541
- border-color: #83B4D5;
542
- }
543
-
544
- .wp_themeSkin .mceSplitButton a.mceOpen:hover,
545
- .wp_themeSkin .mceSplitButtonSelected a.mceOpen,
546
- .wp_themeSkin table.mceSplitButtonEnabled:hover a.mceAction,
547
- .wp_themeSkin .mceSplitButton a.mceAction:hover {
548
- background-color: #d6d8da;
549
- border-color: #7789ba !important;
550
- }
551
-
552
- .wp_themeSkin .mceSplitButtonActive {
553
- background-color: #d6d8da;
554
- }
555
-
556
- .wp_themeSkin div.mceColorSplitMenu table {
557
- background-color: #ebeaeb;
558
- border-color: #808080;
559
- }
560
-
561
- .wp_themeSkin .mceColorSplitMenu a {
562
- border-color: #808080;
563
- }
564
-
565
- .wp_themeSkin .mceColorSplitMenu a.mceMoreColors {
566
- border-color: #fff;
567
- }
568
-
569
- .wp_themeSkin .mceColorSplitMenu a.mceMoreColors:hover {
570
- border-color: #0A246A;
571
- background-color: #B6BDD2;
572
- }
573
-
574
- .wp_themeSkin a.mceMoreColors:hover {
575
- border-color: #0A246A;
576
- }
577
-
578
- .wp_themeSkin .mceMenu {
579
- border-color: #ddd;
580
- }
581
-
582
- .wp_themeSkin .mceMenu table {
583
- background-color: #ebeaeb;
584
- }
585
-
586
- .wp_themeSkin .mceMenu .mceText {
587
- color: #000;
588
- }
589
-
590
- .wp_themeSkin .mceMenu .mceMenuItemEnabled a:hover,
591
- .wp_themeSkin .mceMenu .mceMenuItemActive, #quicktags {
592
- background-color: #83B4D5;
593
- }
594
- .wp_themeSkin td.mceMenuItemSeparator {
595
- background-color: #aaa;
596
- }
597
- .wp_themeSkin .mceMenuItemTitle a {
598
- background-color: #ccc;
599
- border-bottom-color: #aaa;
600
- }
601
- .wp_themeSkin .mceMenuItemTitle span.mceText {
602
- color: #000;
603
- }
604
- .wp_themeSkin .mceMenuItemDisabled .mceText {
605
- color: #888;
606
- }
607
-
608
- .clearlooks2 .mceTop .mceLeft, .clearlooks2 .mceTop .mceRight {
609
- background-color: #cee1ef;
610
- border-color: #c6d9e9;
611
- }
612
-
613
- .clearlooks2 .mceFocus .mceTop .mceLeft, .clearlooks2 .mceFocus .mceTop .mceRight {
614
- background-color: #5488AF;
615
- border-color: #464646;
616
- }
617
-
618
- #editorcontainer {
619
- border-color: #ccc;
620
- }
621
-
622
- #poststuff #titlewrap {
623
- border-color: #ccc;
624
- }
625
-
626
- #tTips p#tTips_inside {
627
- background-color: #ddd;
628
- color: #333;
629
- }
630
-
631
- /******************** Styles added for 2.3 look ********************/
632
- #wpcontent, #wphead, #wphead *, #user_info, #user_info *, #dashmenu, #dashmenu *, #adminmenu, #adminmenu *, #sidemenu, #sidemenu *, #minisub, #minisub *, #submenu, #submenu *, #wpbody, .wrap, #footer, #footer * {
633
- position: static !important;
634
- float: none !important;
635
- clear: none !important;
636
- font-size: 14px !important;
637
- text-decoration: none !important;
638
- letter-spacing: normal !important;
639
- line-height: normal !important;
640
- color: #000 !important;
641
- background: transparent !important;
642
- list-style: none !important;
643
- padding: 0 !important;
644
- border: none !important;
645
- -moz-border-radius: 0 !important;
646
- -khtml-border-radius: 0 !important;
647
- -webkit-border-radius: 0 !important;
648
- border-radius: 0 !important;
649
- margin: 0 !important;
650
- }
651
-
652
- body {
653
- background: #f9fcfe !important;
654
- }
655
-
656
- #wpcontent {
657
- background: #83B4D8 !important;
658
- }
659
-
660
- #wphead {
661
- color: #c3def1 !important;
662
- background: #14568a !important;
663
- padding: .7em 19em .8em 1.9em !important;
664
- border-bottom: 3px solid #448abd !important;
665
- }
666
-
667
- #wphead h1 {
668
- font: normal 1.5em/1 Georgia, "Times New Roman", Times, serif !important;
669
- letter-spacing: -.05em !important;
670
- color: #c3def1 !important;
671
- padding: 0.5em 170px 16px 12px;
672
- margin: 0;
673
- position: absolute;
674
- top: 0;
675
- left: 0;
676
- margin: 0 15% 0 0.5em;
677
- }
678
-
679
- #wphead h1 #viewsite, #wphead h1 #viewsite a {
680
- font-family: Georgia, "Times New Roman", Times, serif !important;
681
- color: #c3def1 !important;
682
- }
683
-
684
- #wphead h1 #viewsite {
685
- font-size: 14px !important;
686
- margin: 0 0 0 0.5em !important;
687
- }
688
-
689
- #wphead h1 #viewsite:before {
690
- content: '\0028';
691
- }
692
-
693
- #wphead h1 #viewsite:after {
694
- content: '\0029';
695
- }
696
-
697
- #wphead h1 #viewsite a {
698
- display: inline !important;
699
- color: #fff !important;
700
- border-bottom: 1px solid #69c !important;
701
- }
702
-
703
- #wphead h1 #viewsite a:after {
704
- content: ' \00BB';
705
- }
706
-
707
- #user_info, #user_info p, #user_info a {
708
- color: #fff !important;
709
- }
710
-
711
- #user_info {
712
- position: absolute !important;
713
- top: 0 !important;
714
- right: 1em !important;
715
- }
716
-
717
- #user_info p, #user_info a {
718
- font-size: 12px !important;
719
- }
720
-
721
- #user_info p {
722
- margin-top: .9em !important;
723
- }
724
-
725
- #user_info a {
726
- border-bottom: 1px solid #69c !important;
727
- }
728
-
729
- #dashmenu, #adminmenu {
730
- float: left !important;
731
- }
732
-
733
- #dashmenu {
734
- padding: 0 0 0 2em !important;
735
- }
736
-
737
- #sidemenu {
738
- padding: 0 2em 0 0 !important;
739
- }
740
-
741
- #dashmenu li, #adminmenu li, #sidemenu li, #submenu li {
742
- display: inline !important;
743
- }
744
-
745
- #sidemenu a {
746
- display: block !important;
747
- float: right !important;
748
- padding: 4px 5px 3px 5px !important;
749
- margin: 0 2px 2px 2px !important;
750
- }
751
-
752
- #dashmenu a, #adminmenu a, #submenu a {
753
- display: block !important;
754
- float: left !important;
755
- padding: 4px 5px 3px 5px !important;
756
- margin: 0 2px 2px 2px !important;
757
- }
758
-
759
- #dashmenu a:hover, #dashmenu a.current, #adminmenu a:hover, #adminmenu a.current, #sidemenu a:hover, #sidemenu a.current, #submenu a:hover, #submenu a.current {
760
- color: #333 !important;
761
- background: #ddeaf4 !important;
762
- }
763
-
764
- #dashmenu a.current, #adminmenu a.current, #sidemenu a.current, #submenu a.current {
765
- font-weight: bold !important;
766
- color: #fff !important;
767
- background: #0d324f !important;
768
- padding-bottom: 7px !important;
769
- border-top: 1px solid #96c0de !important;
770
- border-right: 2px solid #4f96c8 !important;
771
- margin: 0 2px -8px 2px !important;
772
- }
773
-
774
- #adminmenu .comment-count, #sidemenu .plugin-count {
775
- font-size: 11px !important;
776
- }
777
-
778
- #adminmenu li a #awaiting-mod, #sidemenu li a #update-plugins {
779
- position: absolute !important;
780
- background-image: url(../../../../wp-admin/images/comment-stalk-classic.gif) 0 bottom no-repeat !important;
781
- height: 0.9em !important;
782
- width: 1em !important;
783
- margin-top: -0.4em !important;
784
- margin-left: -0.4em !important;
785
- }
786
-
787
- #adminmenu li a:hover #awaiting-mod, #sidemenu li a:hover #update-plugins {
788
- background-position: -80px bottom !important;
789
- }
790
-
791
- #adminmenu li a #awaiting-mod span, #sidemenu li a #update-plugins span {
792
- position: absolute !important;
793
- top: -0.5em !important;
794
- right: 0 !important;
795
- display: block !important;
796
- line-height: 1.3em !important;
797
- color: #fff !important;
798
- background-color: #d54e21 !important;
799
- height: 1.3em !important;
800
- padding: 0 0.6em !important;
801
- -moz-border-radius: 3px !important;
802
- -khtml-border-radius: 3px !important;
803
- -webkit-border-radius: 3px !important;
804
- border-radius: 3px !important;
805
- }
806
-
807
- #adminmenu li a:hover #awaiting-mod span, #sidemenu li a:hover #update-plugins span {
808
- background-color: #07273E !important;
809
- }
810
-
811
- #minisub, #submenu {
812
- clear: both !important;
813
- background: #0d324f !important;
814
- padding: 1px 2em 0 4em !important;
815
- }
816
-
817
- #minisub {
818
- height: 8px !important;
819
- }
820
-
821
- #submenu, #submenu a {
822
- font-size: 12px !important;
823
- line-height: 180% !important;
824
- color: #fff !important;
825
- }
826
-
827
- #submenu, #submenu li {
828
- height: 25px !important;
829
- }
830
-
831
- #submenu:after {
832
- display: block !important;
833
- visibility: hidden !important;
834
- clear: both !important;
835
- content: '.';
836
- height: 0 !important;
837
- width: 0 !important;
838
- }
839
-
840
- #submenu a {
841
- padding: .2em .4em .3em !important;
842
- }
843
-
844
- #submenu a.current {
845
- color: #000 !important;
846
- background: #f9fcfe !important;
847
- padding-bottom: 2px !important;
848
- border-top: 1px solid #045290 !important;
849
- border-right: 2px solid #045290 !important;
850
- margin: 0 2px -8px 2px !important;
851
- }
852
-
853
- #submenu a:hover {
854
- color: #393939 !important;
855
- background: #ddeaf4 !important;
856
- }
857
-
858
- .updated, .confirm {
859
- background: #CFEBF7 url(notice.gif) no-repeat 1em !important;
860
- padding: 0 1em 0 3em !important;
861
- border: 1px solid #2580B2 !important;
862
- margin: 1em 5% 10px !important;
863
- }
864
-
865
- .updated a {
866
- border-bottom-color: #2583ad !important;
867
- }
868
-
869
- .error {
870
- background: #FFEFF7 !important;
871
- padding: 0 1em 0 1em !important;
872
- border: 1px solid #c69 !important;
873
- margin: 1em 5% 10px !important;
874
- }
875
-
876
- .error a {
877
- color: #c00 !important;
878
- }
879
-
880
- #wpbody {
881
- background: #f9fcfe !important;
882
- padding: 1px 0 0 0 !important;
883
- }
884
-
885
- .wrap {
886
- background: #fff !important;
887
- padding: 1em !important;
888
- border: 1px solid #ccc !important;
889
- margin: 15px 5% !important;
890
- }
891
-
892
- .submit input, .submit input:focus, .button, .button:focus {
893
- font-size: 13px !important;
894
- color: #333 !important;
895
- background: url(../../../../wp-admin/images/fade-butt.png) !important;
896
- padding: 0.10em 0.25em !important;
897
- border: 3px double #999 !important;
898
- border-top-color: #ccc !important;
899
- border-left-color: #ccc !important;
900
- -moz-border-radius: 0 !important;
901
- -khtml-border-radius: 0 !important;
902
- -webkit-border-radius: 0 !important;
903
- border-radius: 0 !important;
904
- }
905
-
906
- .submit input:active, .button:active {
907
- background: #f4f4f4 !important;
908
- border: 3px double #ccc !important;
909
- border-top-color: #999 !important;
910
- border-left-color: #999 !important;
911
- }
912
-
913
- #footer, #footer p, #footer a {
914
- font-size: 13px !important;
915
- }
916
-
917
- #footer {
918
- clear: both !important;
919
- background: #f9fcfe url(logo-ghost.png) no-repeat top left !important;
920
- height: 35px !important;
921
- padding: 0 0 15px 40px !important;
922
- margin: 15px 5% !important;
923
- }
924
-
925
- #footer p {
926
- padding: 5px 0 !important;
927
- }
928
-
929
- #footer a {
930
- color: #00019b !important;
931
- border-bottom: 1px solid #69c !important;
932
- }
933
-
934
- #footer a:visited {
935
- color: #004 !important;
936
- }
937
-
938
- #footer a:hover {
939
- color: #069 !important;
940
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
css/mw_20p_sidebar.css DELETED
@@ -1,7 +0,0 @@
1
- #poststuff #post-body {
2
- margin-right: 22%;
3
- }
4
-
5
- .submitbox {
6
- width: 21%;
7
- }
 
 
 
 
 
 
 
css/mw_300_sidebar.css DELETED
@@ -1,7 +0,0 @@
1
- #poststuff #post-body {
2
- margin-right: 330px;
3
- }
4
-
5
- .submitbox {
6
- width: 320px;
7
- }
 
 
 
 
 
 
 
css/mw_30p_sidebar.css DELETED
@@ -1,7 +0,0 @@
1
- #poststuff #post-body {
2
- margin-right: 32%;
3
- }
4
-
5
- .submitbox {
6
- width: 31%;
7
- }
 
 
 
 
 
 
 
css/mw_400_sidebar.css DELETED
@@ -1,7 +0,0 @@
1
- #poststuff #post-body {
2
- margin-right: 430px;
3
- }
4
-
5
- .submitbox {
6
- width: 420px;
7
- }
 
 
 
 
 
 
 
css/mw_admin.css DELETED
@@ -1,121 +0,0 @@
1
- #wpwrap #wphead h1 {
2
- font: italic 1.25em/1 Georgia, "Times New Roman", Times, serif;
3
- padding: 0.5em 170px 16px 12px;
4
- margin: 0;
5
- position: absolute;
6
- top: 0;
7
- left: 0;
8
- margin: 0 15% 0 0.5em;
9
- color: #ABACAB;
10
- }
11
- #wphead h1 #viewsite {
12
- position: static;
13
- margin: 0;
14
- }
15
-
16
- #wphead h1 #viewsite a {
17
- padding: 0 2em;
18
- font: small-caps smaller "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif;
19
- background: transparent;
20
- color: #CEE1EF;
21
- display: inline;
22
- letter-spacing: normal;
23
- border-style: none;
24
- }
25
- #wphead h1 #viewsite a:after {
26
- content: " \BB ";
27
- }
28
-
29
- #adminmenu {
30
- padding-top: 0.4em;
31
- }
32
- #adminmenu a {
33
- font-size: 1em;
34
- line-height: 2;
35
- }
36
-
37
- #submenu {
38
- padding: 0;
39
- border-bottom: 2px solid #C6D9E9;
40
- margin-bottom: 1em;
41
- }
42
- #submenu li {
43
- font-size: 0.95em;
44
- }
45
-
46
-
47
- #poststuff h3 {wp-admin.css (line 975)
48
- font-size: 1em;
49
- margin: 0;
50
- padding: 0.25em 0.5em;
51
- }
52
- #poststuff #titlediv {
53
- position: relative;
54
- margin-bottom: 0;
55
- }
56
- #poststuff #editor-toolbar {
57
- margin-top: -2em;
58
- height: 2em;
59
- }
60
- #poststuff #edit-slug-box {
61
- text-align: right;
62
- position: absolute;
63
- top: 0;
64
- right: 0;
65
- margin: 0.5em;
66
- }
67
-
68
- #ed_toolbar input {
69
- padding: 0 0.2em;
70
- }
71
-
72
-
73
- .submitbox .submit {
74
- font-size: smaller;
75
- padding: 0.75em;
76
- text-align: center;
77
- }
78
- .submitbox .submit input {
79
- margin: 0;
80
- padding: 0.1em 0.2em;
81
- }
82
-
83
- .submitbox #previewview {
84
- padding: 0.75em;
85
- text-align: center;
86
- }
87
- .submitbox #previewview a {
88
- border-bottom: medium none;
89
- font-size: 0.95em;
90
- font-weight: normal;
91
- padding: 0.25em 0.5em;
92
- text-decoration: none;
93
- }
94
- .submitbox #autosave {
95
- display: block;
96
- padding-top: 0.25em;
97
- }
98
-
99
- #poststuff .postbox, #poststuff .stuffbox {
100
- padding: 0;
101
- }
102
- #poststuff .togbox {
103
- background-position: -10px 0.55em;
104
- height: 1.75em;
105
- margin-left: -20px;
106
- margin-top: -3px;
107
- }
108
-
109
- #poststuff .closed .togbox {
110
- background-position: 4px 0.55em;
111
- }
112
-
113
-
114
- #the-comment-list .unapproved {
115
- background-color: #FFDFD0;
116
- }
117
-
118
- #tagchecklist strong {
119
- margin-left: 0 !important;
120
- position: relative !important;
121
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
css/mw_admin27.css DELETED
@@ -1,117 +0,0 @@
1
- #wpwrap #wphead h1 {
2
- font: italic 1.25em Georgia, "Times New Roman", Times, serif;
3
- position: absolute;
4
- top: 4px;
5
- left: 5px;
6
- padding-left: 25px;
7
- padding-bottom: 10px;
8
- background: url('../../../../favicon.ico') 6px center no-repeat;
9
- }
10
-
11
- #wpwrap #wphead #logo50, #wpwrap #wphead #header-logo {
12
- display: none;
13
- }
14
-
15
- #wpwrap #wphead #breadcrumb {
16
- font-size: .8em;
17
- }
18
- #wpwrap #wphead #breadcrumb a {
19
- color: #2583AD;
20
- }
21
- #wpwrap #wphead #breadcrumb a:hover {
22
- color: #D54E21;
23
- }
24
-
25
- #adminmenu a {
26
- font-size: 1em;
27
- line-height: 1.2;
28
- }
29
-
30
- #adminmenu .write-new-button {
31
- margin-top: 45px !important;
32
- }
33
-
34
- #poststuff h3, #normal-sortables h3, #side-sortables h3 {
35
- padding: 0.25em 0.5em;
36
- }
37
- .postbox .inside {
38
- margin-top: .5em !important;
39
- }
40
- #poststuff #titlediv, #normal-sortables #titlediv, #side-sortables #titlediv {
41
- position: relative;
42
- margin-bottom: 0;
43
- }
44
-
45
- #poststuff #edit-slug-box, #normal-sortables #edit-slig-box, #side-sortables #edit-slig-box {
46
- text-align: right;
47
- position: absolute;
48
- top: -2em;
49
- right: 0;
50
- margin: 0.5em;
51
- }
52
-
53
- #ed_toolbar input {
54
- padding: 0 0.2em;
55
- }
56
-
57
- .submitbox .submit {
58
- font-size: smaller;
59
- padding: 0.75em;
60
- text-align: center;
61
- }
62
- .submitbox .submit input, .submitbox .submit a {
63
- margin: 0;
64
- padding: 0.1em 0.2em;
65
- }
66
- .submitbox #previewview {
67
- padding: 0.75em;
68
- text-align: center;
69
- }
70
- .submitbox #previewview a {
71
- border-bottom: medium none;
72
- font-size: 0.95em;
73
- font-weight: normal;
74
- padding: 0.25em 0.5em;
75
- text-decoration: none;
76
- }
77
- .submitbox #autosave {
78
- display: block;
79
- padding-top: 0.25em;
80
- }
81
-
82
- #poststuff .postbox, #poststuff .stuffbox,
83
- #normal-sortables .postbox, #normal-sortables .stuffbox,
84
- #side-sortables .postbox, #side-sortables .stuffbox {
85
- padding: 0;
86
- }
87
- #poststuff .togbox, #normal-sortables .togbox, #side-sortables .togbox {
88
- background-position: -10px 0.55em;
89
- height: 1.75em;
90
- margin-top: 0;
91
- }
92
-
93
- #poststuff .closed .togbox, #normal-sortables .closed .togbox, #side-sortables .closed .togbox {
94
- background-position: 4px 0.55em;
95
- }
96
- #postdivrich h3 {
97
- padding-bottom: 20px;
98
- margin-bottom:20px;
99
- }
100
-
101
- #the-comment-list .unapproved {
102
- background-color: #FFDFD0;
103
- }
104
-
105
- #tagchecklist strong {
106
- margin-left: 0 !important;
107
- position: relative !important;
108
- }
109
-
110
-
111
- .meta-box-sortables .postbox .handlediv {
112
- height: 18px;
113
- }
114
-
115
- .meta-box-sortables .postbox:hover .handlediv {
116
- background-position: left -114px;
117
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
css/mw_basic.css DELETED
@@ -1,16 +0,0 @@
1
- .wrap, .updated, .error, #the-comment-list td.comment {
2
- max-width: 99%;
3
- }
4
-
5
- html {
6
- height: 100%;
7
- margin-bottom: 1px;
8
- }
9
-
10
- #newcat {
11
- width:95% !important;
12
- }
13
-
14
- #category-add select, #newtag {
15
- width: 75% !important;
16
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
css/mw_big_sidebar.css DELETED
@@ -1,7 +0,0 @@
1
- #poststuff #post-body {
2
- margin-right: 430px;
3
- }
4
-
5
- .submitbox {
6
- width: 420px;
7
- }
 
 
 
 
 
 
 
css/mw_cat.css DELETED
@@ -1,26 +0,0 @@
1
- /**
2
- * Category in sidebar
3
- */
4
- #poststuff h2 {
5
- clear: none;
6
- }
7
-
8
- .categorychecklist {
9
- list-style-type: none;
10
- margin: 0;
11
- overflow: auto;
12
- padding-left: 0;
13
- }
14
-
15
- .categorychecklist ul {
16
- list-style-type: none;
17
- margin: 0;
18
- padding-left: 17px;
19
- }
20
-
21
- .inside #categorychecklist {
22
- background: #fff;
23
- border: 2px solid #CEE1EF;
24
- max-height: 300px;
25
- padding: 3px 0 5px 5px;
26
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
css/mw_classic.css DELETED
@@ -1,8 +0,0 @@
1
- @import url(../../../../wp-admin/css/colors-classic.css);
2
- @import url(mw_basic.css);
3
- @import url(mw_admin.css);
4
- @import url(mw_cat.css);
5
-
6
- #wphead h1 #viewsite a:hover {
7
- color: #d54e21;
8
- }
 
 
 
 
 
 
 
 
css/mw_classic27.css DELETED
@@ -1,8 +0,0 @@
1
- @import url(../../../../wp-admin/css/colors-classic.css);
2
- @import url(mw_basic.css);
3
- @import url(mw_admin27.css);
4
- @import url(mw_cat.css);
5
-
6
- #wphead h1 #viewsite a:hover {
7
- color: #d54e21;
8
- }
 
 
 
 
 
 
 
 
css/mw_classic_lm.css DELETED
@@ -1,7 +0,0 @@
1
- @import url(../../../../wp-admin/css/colors-classic.css);
2
- @import url(mw_basic.css);
3
- @import url(mw_cat.css);
4
-
5
- #wphead h1 #viewsite a:hover {
6
- color: #d54e21;
7
- }
 
 
 
 
 
 
 
css/mw_classic_ozh_am.css DELETED
@@ -1,7 +0,0 @@
1
- @import url(../../../../wp-admin/css/colors-classic.css);
2
- @import url(mw_basic.css);
3
- @import url(mw_cat.css);
4
-
5
- #wphead h1 #viewsite a:hover {
6
- color: #d54e21;
7
- }
 
 
 
 
 
 
 
css/mw_colorblind.css DELETED
@@ -1,4 +0,0 @@
1
- @import url(colors-colorblind.css);
2
- @import url(mw_basic.css);
3
- @import url(mw_admin.css);
4
- @import url(mw_cat.css);
 
 
 
 
css/mw_fresh.css DELETED
@@ -1,4 +0,0 @@
1
- @import url(../../../../wp-admin/css/colors-fresh.css);
2
- @import url(mw_basic.css);
3
- @import url(mw_admin.css);
4
- @import url(mw_cat.css);
 
 
 
 
css/mw_fresh27.css DELETED
@@ -1,4 +0,0 @@
1
- @import url(../../../../wp-admin/css/colors-fresh.css);
2
- @import url(mw_basic.css);
3
- @import url(mw_admin27.css);
4
- @import url(mw_cat.css);
 
 
 
 
css/mw_fresh_lm.css DELETED
@@ -1,3 +0,0 @@
1
- @import url(../../../../wp-admin/css/colors-fresh.css);
2
- @import url(mw_basic.css);
3
- @import url(mw_cat.css);
 
 
 
css/mw_fresh_ozh_am.css DELETED
@@ -1,3 +0,0 @@
1
- @import url(../../../../wp-admin/css/colors-fresh.css);
2
- @import url(mw_basic.css);
3
- @import url(mw_cat.css);
 
 
 
css/mw_grey.css DELETED
@@ -1,4 +0,0 @@
1
- @import url(colors-grey.css);
2
- @import url(mw_basic.css);
3
- @import url(mw_admin.css);
4
- @import url(mw_cat.css);
 
 
 
 
css/mw_small_user_info.css DELETED
@@ -1,16 +0,0 @@
1
- #small_user_info {
2
- position: absolute;
3
- right: 15px;
4
- top: 11px;
5
- font-size: 11px;
6
- color: #999;
7
- }
8
-
9
- #small_user_info a {
10
- color: #ccc;
11
- }
12
-
13
- #small_user_info p {
14
- margin: 0;
15
- padding: 0;
16
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
css/mw_small_user_info27.css DELETED
@@ -1,25 +0,0 @@
1
- #small_user_info {
2
- float: right;
3
- font-size: 12px;
4
- line-height: 46px;
5
- height: 46px;
6
- position:absolute;
7
- right:15px;
8
- top:0;
9
- }
10
-
11
- #small_user_info a, #small_user_info a:visited {
12
- color: #ccc;
13
- text-decoration: none;
14
- }
15
-
16
- #small_user_info p {
17
- margin: 0;
18
- padding: 0;
19
- line-height: 46px;
20
- }
21
-
22
- #favorite-actions {
23
- position:absolute;
24
- right:150px;
25
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
css/mw_wp23.css DELETED
@@ -1,4 +0,0 @@
1
- @import url(colors-wp23.css);
2
- @import url(mw_basic.css);
3
- @import url(mw_admin.css);
4
- @import url(mw_cat.css);
 
 
 
 
js/adminimize.js DELETED
@@ -1,95 +0,0 @@
1
- jQuery(function($) {
2
- jQuery("input#ctoggleCheckboxes_menusubscriber, input#ctoggleCheckboxes_menucontributor, input#ctoggleCheckboxes_menuauthor, input#ctoggleCheckboxes_menu, input#ctoggleCheckboxes_menuadm, input#ctoggleCheckboxes_postsubscriber, input#ctoggleCheckboxes_postcontributor, input#ctoggleCheckboxes_postauthor, input#ctoggleCheckboxes_post, input#ctoggleCheckboxes_postadm, input#ctoggleCheckboxes_pagesubscriber, input#ctoggleCheckboxes_pagecontributor, input#ctoggleCheckboxes_pageauthor, input#ctoggleCheckboxes_page, input#ctoggleCheckboxes_pageadm").css("display", "none");
3
- });
4
-
5
- var bAllChecked = false;
6
- function toggleCheckboxes_menusubscriber() {
7
- jQuery("input[id^='check_menusubscriber']").attr("checked", !bAllChecked);
8
- bAllChecked = !bAllChecked; jQuery('#atoggleCheckboxes_menusubscriber').text( bAllChecked ? adminimizeL10n.none : adminimizeL10n.all );
9
- }
10
-
11
- var bAllChecked = false;
12
- function toggleCheckboxes_menucontributor() {
13
- jQuery("input[id^='check_menucontributor']").attr("checked", !bAllChecked);
14
- bAllChecked = !bAllChecked; jQuery('#atoggleCheckboxes_menucontributor').text( bAllChecked ? adminimizeL10n.none : adminimizeL10n.all );
15
- }
16
-
17
- var bAllChecked = false;
18
- function toggleCheckboxes_menuauthor() {
19
- jQuery("input[id^='check_menuauthor']").attr("checked", !bAllChecked);
20
- bAllChecked = !bAllChecked; jQuery('#atoggleCheckboxes_menuauthor').text( bAllChecked ? adminimizeL10n.none : adminimizeL10n.all );
21
- }
22
-
23
- var bAllChecked = false;
24
- function toggleCheckboxes_menu() {
25
- jQuery("input[id^='check_menu']").not("input[id^='check_menuadm']").not("input[id^='check_menuauthor']").not("input[id^='check_menucontributor']").not("input[id^='check_menusubscriber']").attr("checked", !bAllChecked);
26
- bAllChecked = !bAllChecked; jQuery('#atoggleCheckboxes_menu').text( bAllChecked ? adminimizeL10n.none : adminimizeL10n.all );
27
- }
28
-
29
- var bAllChecked = false;
30
- function toggleCheckboxes_menuadm() {
31
- jQuery("input[id^='check_menuadm']").attr("checked", !bAllChecked);
32
- bAllChecked = !bAllChecked; jQuery('#atoggleCheckboxes_menuadm').text( bAllChecked ? adminimizeL10n.none : adminimizeL10n.all );
33
- }
34
-
35
- //post
36
- var bAllChecked = false;
37
- function toggleCheckboxes_postsubscriber() {
38
- jQuery("input[id^='check_postsubscriber']").attr("checked", !bAllChecked);
39
- bAllChecked = !bAllChecked; jQuery('#atoggleCheckboxes_postsubsciber').text( bAllChecked ? adminimizeL10n.none : adminimizeL10n.all );
40
- }
41
-
42
- var bAllChecked = false;
43
- function toggleCheckboxes_postcontributor() {
44
- jQuery("input[id^='check_postcontributor']").attr("checked", !bAllChecked);
45
- bAllChecked = !bAllChecked; jQuery('#atoggleCheckboxes_postcontributor').text( bAllChecked ? adminimizeL10n.none : adminimizeL10n.all );
46
- }
47
-
48
- var bAllChecked = false;
49
- function toggleCheckboxes_postauthor() {
50
- jQuery("input[id^='check_postauthor']").attr("checked", !bAllChecked);
51
- bAllChecked = !bAllChecked; jQuery('#atoggleCheckboxes_postauthor').text( bAllChecked ? adminimizeL10n.none : adminimizeL10n.all );
52
- }
53
-
54
- var bAllChecked = false;
55
- function toggleCheckboxes_post() {
56
- jQuery("input[id^='check_post']").not("input[id^='check_postsubscriber']").not("input[id^='check_postcontributor']").not("input[id^='check_postauthor']").not("input[id^='check_postadm']").attr("checked", !bAllChecked);
57
- bAllChecked = !bAllChecked; jQuery('#atoggleCheckboxes_post').text( bAllChecked ? adminimizeL10n.none : adminimizeL10n.all );
58
- }
59
-
60
- var bAllChecked = false;
61
- function toggleCheckboxes_postadm() {
62
- jQuery("input[id^='check_postadm']").attr("checked", !bAllChecked);
63
- bAllChecked = !bAllChecked; jQuery('#atoggleCheckboxes_postadm').text( bAllChecked ? adminimizeL10n.none : adminimizeL10n.all );
64
- }
65
-
66
- //page
67
- var bAllChecked = false;
68
- function toggleCheckboxes_pagesubscriber() {
69
- jQuery("input[id^='check_pagesubscriber']").attr("checked", !bAllChecked);
70
- bAllChecked = !bAllChecked; jQuery('#atoggleCheckboxes_pagesubscriber').text( bAllChecked ? adminimizeL10n.none : adminimizeL10n.all );
71
- }
72
-
73
- var bAllChecked = false;
74
- function toggleCheckboxes_pagecontributor() {
75
- jQuery("input[id^='check_pagecontributor']").attr("checked", !bAllChecked);
76
- bAllChecked = !bAllChecked; jQuery('#atoggleCheckboxes_pagecontributor').text( bAllChecked ? adminimizeL10n.none : adminimizeL10n.all );
77
- }
78
-
79
- var bAllChecked = false;
80
- function toggleCheckboxes_pageauthor() {
81
- jQuery("input[id^='check_pageauthor']").attr("checked", !bAllChecked);
82
- bAllChecked = !bAllChecked; jQuery('#atoggleCheckboxes_pageauthor').text( bAllChecked ? adminimizeL10n.none : adminimizeL10n.all );
83
- }
84
-
85
- var bAllChecked = false;
86
- function toggleCheckboxes_page() {
87
- jQuery("input[id^='check_page']").not("input[id^='check_pagesubscriber']").not("input[id^='check_pagecontributor']").not("input[id^='check_pageauthor']").not("input[id^='check_pageadm']").attr("checked", !bAllChecked);
88
- bAllChecked = !bAllChecked; jQuery('#atoggleCheckboxes_page').text( bAllChecked ? adminimizeL10n.none : adminimizeL10n.all );
89
- }
90
-
91
- var bAllChecked = false;
92
- function toggleCheckboxes_pageadm() {
93
- jQuery("input[id^='check_pageadm']").attr("checked", !bAllChecked);
94
- bAllChecked = !bAllChecked; jQuery('#atoggleCheckboxes_pageadm').text( bAllChecked ? adminimizeL10n.none : adminimizeL10n.all );
95
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
js/tb_window.js DELETED
@@ -1,54 +0,0 @@
1
- // send html to the post editor
2
- function send_to_editor(h) {
3
- if ( typeof tinyMCE != 'undefined' && ( ed = tinyMCE.activeEditor ) && !ed.isHidden() ) {
4
- ed.focus();
5
- if (tinymce.isIE)
6
- ed.selection.moveToBookmark(tinymce.EditorManager.activeEditor.windowManager.bookmark);
7
-
8
- if ( h.indexOf('[caption') != -1 )
9
- h = ed.plugins.wpeditimage._do_shcode(h);
10
-
11
- ed.execCommand('mceInsertContent', false, h);
12
- } else
13
- edInsertContent(edCanvas, h);
14
-
15
- tb_remove();
16
- }
17
-
18
- /**
19
- * new tb_window of media-uplader
20
- */
21
- jQuery(function($) {
22
- tb_position = function() {
23
- var tbWindow = $('#TB_window');
24
- var width = $(window).width();
25
- var H = $(window).height();
26
- var W = ( 1720 < width ) ? 1720 : width;
27
-
28
- if ( tbWindow.size() ) {
29
- tbWindow.width( W - 50 ).height( H - 45 );
30
- $('#TB_iframeContent').width( W - 50 ).height( H - 75 );
31
- tbWindow.css({'margin-left': '-' + parseInt((( W - 50 ) / 2),10) + 'px'});
32
- if ( typeof document.body.style.maxWidth != 'undefined' )
33
- tbWindow.css({'top':'20px','margin-top':'0'});
34
- $('#TB_title').css({'background-color':'#fff','color':'#cfcfcf'});
35
- };
36
-
37
- return $('a.thickbox').each( function() {
38
- var href = $(this).attr('href');
39
- if ( ! href ) return;
40
- href = href.replace(/&width=[0-9]+/g, '');
41
- href = href.replace(/&height=[0-9]+/g, '');
42
- $(this).attr( 'href', href + '&width=' + ( W - 80 ) + '&height=' + ( H - 85 ) );
43
- });
44
- };
45
-
46
- jQuery('a.thickbox').click(function(){
47
- if ( typeof tinyMCE != 'undefined' && tinyMCE.activeEditor ) {
48
- tinyMCE.get('content').focus();
49
- tinyMCE.activeEditor.windowManager.bookmark = tinyMCE.activeEditor.selection.getBookmark('simple');
50
- }
51
- });
52
-
53
- $(window).resize( function() { tb_position() } );
54
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
js/writescroll.js DELETED
@@ -1,13 +0,0 @@
1
- /**
2
- * Automatically scroll Write pages to a good position
3
- * code by Dougal Campbell
4
- * http://dougal.gunters.org/blog/2008/06/03/writescroll
5
- */
6
- jQuery(function($) {
7
- // element to scroll
8
- var h = jQuery('html');
9
- // position to scroll to
10
- var wraptop = jQuery('div#wpbody').offset().top;
11
- var speed = 250; // ms
12
- h.animate({scrollTop: wraptop}, speed);
13
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/adminimize-de_DE.mo DELETED
Binary file
languages/adminimize-de_DE.po DELETED
@@ -1,602 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Adminimize\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-12-07 16:44+0100\n"
6
- "PO-Revision-Date: 2008-12-07 16:44+0100\n"
7
- "Last-Translator: Frank Bueltge <frank@bueltge.de>\n"
8
- "Language-Team: Frank Bueltge <frank@bueltge.de>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-SourceCharset: utf-8\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Basepath: D:\\Eigene\\WP-Plugins\\adminimize\\trunk\\\n"
15
- ": \n"
16
- "X-Poedit-SearchPath-0: .\n"
17
-
18
- #: adminimize.php:75
19
- msgid "Unknown error."
20
- msgstr "Unbekannter Fehler."
21
-
22
- #: adminimize.php:82
23
- msgid "The updates was saved."
24
- msgstr "Die Einstellungen wurden gespeichert"
25
-
26
- #: adminimize.php:83
27
- msgid "You have not enough rights for edit entries in the database."
28
- msgstr "Du hast nicht ausreichend Rechte um diese Aktion durchzuf&uuml;hren!"
29
-
30
- #: adminimize.php:84
31
- msgid "All entries in the database was delleted."
32
- msgstr "Die Einstellungen wurde gel&ouml;scht!"
33
-
34
- #: adminimize.php:85
35
- msgid "Set the checkbox on deinstall-button."
36
- msgstr "Checkbox setzen, wenn wirklich deinstalliert werden soll!"
37
-
38
- #: adminimize.php:86
39
- msgid "Can't load menu and submenu."
40
- msgstr "Menu und Submenu k&ouml;nnen nicht geladen werden!"
41
-
42
- #: adminimize.php:87
43
- msgid "Backend-Theme was activated!"
44
- msgstr "Backend-Theme wurde zugewiesen!"
45
-
46
- #: adminimize.php:272
47
- #: adminimize_page.php:450
48
- msgid "Categories"
49
- msgstr "Kategorien"
50
-
51
- #: adminimize.php:278
52
- #: adminimize.php:289
53
- msgid "+ Add New Category"
54
- msgstr "+ Add New Category"
55
-
56
- #: adminimize.php:280
57
- #: adminimize.php:291
58
- msgid "New category name"
59
- msgstr "New category name"
60
-
61
- #: adminimize.php:281
62
- #: adminimize.php:293
63
- msgid "Parent category"
64
- msgstr "Parent category"
65
-
66
- #: adminimize.php:282
67
- #: adminimize.php:294
68
- msgid "Add"
69
- msgstr "Add"
70
-
71
- #: adminimize.php:291
72
- #: adminimize_page.php:451
73
- msgid "Add New Category"
74
- msgstr "Add New Category"
75
-
76
- #: adminimize.php:315
77
- #: adminimize.php:316
78
- #: adminimize_page.php:449
79
- msgid "Tags"
80
- msgstr "Tags"
81
-
82
- #: adminimize.php:375
83
- msgid "Blue"
84
- msgstr "Blau"
85
-
86
- #: adminimize.php:382
87
- msgid "Gray"
88
- msgstr "Grau"
89
-
90
- #: adminimize.php:390
91
- #: adminimize.php:432
92
- #: adminimize.php:455
93
- msgid "Classic"
94
- msgstr "Classic"
95
-
96
- #: adminimize.php:397
97
- #: adminimize.php:439
98
- #: adminimize.php:462
99
- msgid "Fresh"
100
- msgstr "Fresh"
101
-
102
- #: adminimize.php:404
103
- msgid "WordPress 2.3"
104
- msgstr "WordPress 2.3"
105
-
106
- #: adminimize.php:411
107
- msgid "Maybe i'm colorblind"
108
- msgstr "Maybe i'm colorblind"
109
-
110
- #: adminimize.php:418
111
- msgid "Grey"
112
- msgstr "Grey"
113
-
114
- #: adminimize.php:586
115
- #: adminimize.php:589
116
- msgid "Dashboard"
117
- msgstr "Dashboard"
118
-
119
- #: adminimize.php:711
120
- #: adminimize.php:713
121
- #: adminimize.php:726
122
- #: adminimize.php:728
123
- #: adminimize.php:919
124
- msgid "Log Out"
125
- msgstr "Log Out"
126
-
127
- #: adminimize.php:764
128
- #: adminimize_page.php:639
129
- #: adminimize_page.php:640
130
- #: adminimize_page.php:641
131
- #: adminimize_page.php:642
132
- #: adminimize_page.php:643
133
- #: adminimize_page.php:703
134
- #: adminimize_page.php:704
135
- #: adminimize_page.php:705
136
- #: adminimize_page.php:706
137
- #: adminimize_page.php:707
138
- #: adminimize_page.php:764
139
- #: adminimize_page.php:765
140
- #: adminimize_page.php:766
141
- #: adminimize_page.php:767
142
- #: adminimize_page.php:768
143
- msgid "All"
144
- msgstr "Alle"
145
-
146
- #: adminimize.php:764
147
- msgid "None"
148
- msgstr "Keine"
149
-
150
- #: adminimize.php:938
151
- msgid "Visit plugin homepage"
152
- msgstr "Visit plugin homepage"
153
-
154
- #: adminimize.php:941
155
- msgid "plugin"
156
- msgstr "plugin"
157
-
158
- #: adminimize.php:941
159
- msgid "Version"
160
- msgstr "Version"
161
-
162
- #: adminimize.php:941
163
- msgid "History"
164
- msgstr "Historie"
165
-
166
- #: adminimize.php:941
167
- msgid "Author"
168
- msgstr "Author"
169
-
170
- #: adminimize.php:944
171
- msgid "plugin activate"
172
- msgstr "plugin activate"
173
-
174
- #: adminimize.php:959
175
- msgid "Settings"
176
- msgstr "Settings"
177
-
178
- #: adminimize.php:1024
179
- #: adminimize_page.php:66
180
- msgid "Adminimize"
181
- msgstr "Adminimize"
182
-
183
- #: adminimize.php:1026
184
- msgid "Adminimize Options"
185
- msgstr "Adminimize Einstellungen"
186
-
187
- #: adminimize.php:1038
188
- msgid "Cheatin&#8217; uh?"
189
- msgstr "Cheatin&#8217; uh?"
190
-
191
- #: adminimize_page.php:70
192
- msgid "Backend Options"
193
- msgstr "Einstellungen Backend"
194
-
195
- #: adminimize_page.php:80
196
- msgid "Favorite Actions"
197
- msgstr "Favoriten"
198
-
199
- #: adminimize_page.php:84
200
- #: adminimize_page.php:94
201
- #: adminimize_page.php:105
202
- #: adminimize_page.php:115
203
- #: adminimize_page.php:135
204
- #: adminimize_page.php:146
205
- #: adminimize_page.php:159
206
- #: adminimize_page.php:169
207
- #: adminimize_page.php:179
208
- #: adminimize_page.php:189
209
- #: adminimize_page.php:199
210
- #: adminimize_page.php:209
211
- #: adminimize_page.php:219
212
- #: adminimize_page.php:270
213
- msgid "Default"
214
- msgstr "Standard"
215
-
216
- #: adminimize_page.php:85
217
- #: adminimize_page.php:95
218
- #: adminimize_page.php:106
219
- #: adminimize_page.php:170
220
- #: adminimize_page.php:190
221
- #: adminimize_page.php:200
222
- #: adminimize_page.php:210
223
- #: adminimize_page.php:220
224
- msgid "Activate"
225
- msgstr "Aktiv"
226
-
227
- #: adminimize_page.php:86
228
- msgid "It is possible to hide the favorite-actions in the header."
229
- msgstr "Es ist möglich die Favoriten-Zugriffe im Header auszublenden."
230
-
231
- #: adminimize_page.php:90
232
- msgid "Screen Options"
233
- msgstr "Optionen einblenden"
234
-
235
- #: adminimize_page.php:96
236
- msgid "It is possible to hide the screen-options."
237
- msgstr "Es ist möglich den Bereich der \"Optionen einblenden\" in allen Bereichen auszublenden."
238
-
239
- #: adminimize_page.php:101
240
- msgid "Menu Order"
241
- msgstr "Menu Reihenfolge"
242
-
243
- #: adminimize_page.php:107
244
- msgid "It is possible to set a new menu-order."
245
- msgstr "Setzt eine neue Reihenfolge der Menustruktur auf."
246
-
247
- #: adminimize_page.php:111
248
- msgid "Sidebar Width"
249
- msgstr "Sidebar Width"
250
-
251
- #: adminimize_page.php:120
252
- 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>"
253
- msgstr "Der Sidebar am rechten Rand des Bereich <em>Schreiben</em> kann konfiguriert werden. Standard sind 200 Pixel im WordPress Theme <em>Classic</em> und <em>Fresh</em>"
254
-
255
- #: adminimize_page.php:131
256
- msgid "Dashmenu"
257
- msgstr "Dashmenu"
258
-
259
- #: adminimize_page.php:136
260
- #: adminimize_page.php:147
261
- #: adminimize_page.php:180
262
- msgid "Hide"
263
- msgstr "Ausblenden"
264
-
265
- #: adminimize_page.php:137
266
- msgid "The &quot;Dashboard-area&quot; is on the top left side of the backend. You can hide show."
267
- msgstr "Unbekannter Fehler."
268
-
269
- #: adminimize_page.php:142
270
- msgid "User-Info"
271
- msgstr "User-Info"
272
-
273
- #: adminimize_page.php:148
274
- msgid "Only logout"
275
- msgstr "nur Abmelden"
276
-
277
- #: adminimize_page.php:149
278
- msgid "User &amp; Logout"
279
- msgstr "User &amp; Abmelden"
280
-
281
- #: adminimize_page.php:150
282
- msgid "The &quot;User-Info-area&quot; is on the top right side of the backend. You can hide or reduced show."
283
- msgstr "Der &quot;User-Info-Bereich&quot; ist im oberen rechten Bereich zu finden und kann ausgeblendet oder reduziert dargestellt werden."
284
-
285
- #: adminimize_page.php:155
286
- msgid "Change User-Info, redirect to"
287
- msgstr "User Info ge&auml;ndert, Weiterleitung nach"
288
-
289
- #: adminimize_page.php:160
290
- msgid "Frontpage of the Blog"
291
- msgstr "Startseite des Blog"
292
-
293
- #: adminimize_page.php:161
294
- msgid "When the &quot;User-Info-area&quot; change it, then it is possible to change the redirect."
295
- msgstr "Wenn der &quot;User-Info-Bereich&quot; ge&auml;ndert wird, dann kann die die Weiterleitung nach einem Logout ge&auml;ndert werden."
296
-
297
- #: adminimize_page.php:165
298
- msgid "Admin Color Scheme"
299
- msgstr "Farbschema verwalten"
300
-
301
- #: adminimize_page.php:171
302
- msgid "It is possible to hide the Admin Color Schemes."
303
- msgstr "Es ist möglich den Bereich der \"Farbschema verwalten\" im Profil des Users auszublenden."
304
-
305
- #: adminimize_page.php:175
306
- msgid "Footer"
307
- msgstr "Footer"
308
-
309
- #: adminimize_page.php:181
310
- msgid "The Footer-area kann hide, include all links and details."
311
- msgstr "Der Footer-Bereich kann deaktiviert werden, inklusive aller Links und Hinweise."
312
-
313
- #: adminimize_page.php:185
314
- msgid "WriteScroll"
315
- msgstr "WriteScroll"
316
-
317
- #: adminimize_page.php:191
318
- 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."
319
- msgstr "Automatisches Scrollen zum Editor beim Aufruf der Seite Schreiben in Beitr&auml;ge und Seite."
320
-
321
- #: adminimize_page.php:195
322
- msgid "Timestamp"
323
- msgstr "Timestamp"
324
-
325
- #: adminimize_page.php:201
326
- msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
327
- msgstr "Das Feld zum &Auml;ndern des Ver&ouml;ffentlichungsdatum ist immer ge&ouml;ffnet."
328
-
329
- #: adminimize_page.php:205
330
- msgid "Thickbox FullScreen"
331
- msgstr "Thickbox FullScreen"
332
-
333
- #: adminimize_page.php:211
334
- msgid "All Thickbox-function use the full area of the browser. Thickbox is for examble in upload media-files."
335
- msgstr "Alle Thickbox-Funktionen nutzen den kompletten Raum des Browsers, zum Beispiel beim uploaden von Bildern."
336
-
337
- #: adminimize_page.php:215
338
- msgid "Advice in Footer"
339
- msgstr "Hinweis im Footer"
340
-
341
- #: adminimize_page.php:222
342
- #, fuzzy
343
- msgid "In the Footer kann you display a advice for change the Default-design, (x)HTML is possible."
344
- msgstr "Im Footer kann ein Hinweis auf die aktive Ver&auml;nderung des Standard-Layout gesetzt werden, (x)HTML erlaubt."
345
-
346
- #: adminimize_page.php:266
347
- msgid "Dashboard deaktivate, redirect to"
348
- msgstr "Dashboard inaktiv, Weiterleitung nach"
349
-
350
- #: adminimize_page.php:271
351
- msgid "Manage Posts"
352
- msgstr "Verwalten Beitr&auml;ge"
353
-
354
- #: adminimize_page.php:272
355
- msgid "Manage Pages"
356
- msgstr "Verwalten Seiten"
357
-
358
- #: adminimize_page.php:273
359
- msgid "Write Post"
360
- msgstr "Schreiben Beitrag"
361
-
362
- #: adminimize_page.php:274
363
- msgid "Write Page"
364
- msgstr "Schreiben Seite"
365
-
366
- #: adminimize_page.php:275
367
- msgid "Comments"
368
- msgstr "Kommentare"
369
-
370
- #: adminimize_page.php:276
371
- msgid "other Page"
372
- msgstr "andere Seite"
373
-
374
- #: adminimize_page.php:279
375
- msgid "You have deaktivate the Dashboard, please select a page for redirect?"
376
- msgstr "Du hast das Dashboard deaktivert, wohin soll der Nutzer weitergeleitet werden?"
377
-
378
- #: adminimize_page.php:288
379
- #: adminimize_page.php:374
380
- #: adminimize_page.php:654
381
- #: adminimize_page.php:715
382
- #: adminimize_page.php:776
383
- msgid "Update Options"
384
- msgstr "Einstellungen aktualisieren"
385
-
386
- #: adminimize_page.php:304
387
- #: adminimize_page.php:310
388
- msgid "Top Menu Options"
389
- msgstr "Top Menu Einstellungen"
390
-
391
- #: adminimize_page.php:311
392
- #: adminimize_page.php:391
393
- #: adminimize_page.php:671
394
- #: adminimize_page.php:732
395
- msgid "Deactivate for Subscriber"
396
- msgstr "Deaktiviere für Registrierte Leser"
397
-
398
- #: adminimize_page.php:312
399
- #: adminimize_page.php:392
400
- #: adminimize_page.php:672
401
- #: adminimize_page.php:733
402
- msgid "Deactivate for Contributor"
403
- msgstr "Deaktiviere für Mitarbeiter"
404
-
405
- #: adminimize_page.php:313
406
- #: adminimize_page.php:393
407
- #: adminimize_page.php:673
408
- #: adminimize_page.php:734
409
- msgid "Deactivate for Author"
410
- msgstr "Deaktiviere für Autoren"
411
-
412
- #: adminimize_page.php:314
413
- #: adminimize_page.php:394
414
- #: adminimize_page.php:674
415
- #: adminimize_page.php:735
416
- msgid "Deactivate for Editor"
417
- msgstr "Deaktiviere für Herausgeber"
418
-
419
- #: adminimize_page.php:315
420
- #: adminimize_page.php:395
421
- #: adminimize_page.php:675
422
- #: adminimize_page.php:736
423
- msgid "Deactivate for Administrator"
424
- msgstr "Deaktiviere für Admin's"
425
-
426
- #: adminimize_page.php:384
427
- msgid "Menu Options"
428
- msgstr "Menu Einstellungen"
429
-
430
- #: adminimize_page.php:390
431
- #, fuzzy
432
- msgid "Menu options - Menu, <span style=\\\"font-weight: 400;\\\">Submenu</span>"
433
- msgstr "Menu Einstellungen - Menu, <span style=\"font-weight: 400;\">Submenu</span>"
434
-
435
- #: adminimize_page.php:448
436
- #: adminimize_page.php:508
437
- msgid "Permalink"
438
- msgstr "Permalink"
439
-
440
- #: adminimize_page.php:452
441
- msgid "Excerpt"
442
- msgstr "Auszug"
443
-
444
- #: adminimize_page.php:453
445
- msgid "Trackbacks"
446
- msgstr "Trackbacks"
447
-
448
- #: adminimize_page.php:454
449
- #: adminimize_page.php:509
450
- msgid "Custom Fields"
451
- msgstr "Benutzerdefinierte Felder"
452
-
453
- #: adminimize_page.php:455
454
- #: adminimize_page.php:510
455
- msgid "Comments &amp; Pings"
456
- msgstr "Kommentare &amp; Pings"
457
-
458
- #: adminimize_page.php:456
459
- msgid "Password Protect This Post"
460
- msgstr "Diesen Artikel durch ein Passwort sch&uuml;tzen"
461
-
462
- #: adminimize_page.php:457
463
- msgid "Post Author"
464
- msgstr "Autor"
465
-
466
- #: adminimize_page.php:458
467
- msgid "Post Revisions"
468
- msgstr "Post Revisions"
469
-
470
- #: adminimize_page.php:459
471
- msgid "Related, Shortcuts"
472
- msgstr "Siehe auch, Tastaturk&uuml;rzel"
473
-
474
- #: adminimize_page.php:460
475
- #: adminimize_page.php:518
476
- msgid "Messenges"
477
- msgstr "Mitteilungen"
478
-
479
- #: adminimize_page.php:461
480
- #: adminimize_page.php:519
481
- msgid "h2: Advanced Options"
482
- msgstr "h2: Erweiterte Einstellungen"
483
-
484
- #: adminimize_page.php:462
485
- #: adminimize_page.php:520
486
- msgid "Media Buttons (all)"
487
- msgstr "Media Buttons (alle)"
488
-
489
- #: adminimize_page.php:466
490
- #: adminimize_page.php:524
491
- msgid "Suggested tags from"
492
- msgstr "Suggested tags from"
493
-
494
- #: adminimize_page.php:468
495
- msgid "Text Control"
496
- msgstr "Text Control"
497
-
498
- #: adminimize_page.php:470
499
- #: adminimize_page.php:526
500
- msgid "HTML Special Characters"
501
- msgstr "HTML Special Characters"
502
-
503
- #: adminimize_page.php:511
504
- msgid "Password Protect This Page"
505
- msgstr "Diese Seite mit einem Passwort versehen"
506
-
507
- #: adminimize_page.php:512
508
- msgid "Page Parent"
509
- msgstr "&Uuml;bergeordnete Seite"
510
-
511
- #: adminimize_page.php:513
512
- msgid "Page Template"
513
- msgstr "Seiten Template"
514
-
515
- #: adminimize_page.php:514
516
- msgid "Page Order"
517
- msgstr "Reihenfolge"
518
-
519
- #: adminimize_page.php:515
520
- msgid "Page Author"
521
- msgstr "Seitenautor"
522
-
523
- #: adminimize_page.php:516
524
- msgid "Page Revisions"
525
- msgstr "Page Revisions"
526
-
527
- #: adminimize_page.php:517
528
- msgid "Related"
529
- msgstr "Siehe auch"
530
-
531
- #: adminimize_page.php:638
532
- #: adminimize_page.php:701
533
- #: adminimize_page.php:762
534
- msgid "All items"
535
- msgstr "Alle w&auml;hlen"
536
-
537
- #: adminimize_page.php:663
538
- #: adminimize_page.php:670
539
- msgid "Write options - Post"
540
- msgstr "Schreiben Einstellungen - Beitr&auml;ge"
541
-
542
- #: adminimize_page.php:724
543
- #: adminimize_page.php:731
544
- msgid "Write options - Page"
545
- msgstr "Schreiben Einstellungen - Seiten"
546
-
547
- #: adminimize_page.php:786
548
- #: adminimize_page.php:852
549
- msgid "Set Theme"
550
- msgstr "Theme zuweisen"
551
-
552
- #: adminimize_page.php:795
553
- msgid "User-ID"
554
- msgstr "User-ID"
555
-
556
- #: adminimize_page.php:796
557
- msgid "Username"
558
- msgstr "Benutzername"
559
-
560
- #: adminimize_page.php:797
561
- msgid "Display name publicly as"
562
- msgstr "Name im Blog"
563
-
564
- #: adminimize_page.php:798
565
- msgid "Admin-Color Scheme"
566
- msgstr "Admin Farbschema"
567
-
568
- #: adminimize_page.php:799
569
- msgid "User Level"
570
- msgstr "User Level"
571
-
572
- #: adminimize_page.php:800
573
- msgid "Role"
574
- msgstr "Rolle"
575
-
576
- #: adminimize_page.php:862
577
- msgid "Deinstall Options"
578
- msgstr "Einstellungen deinstallieren"
579
-
580
- #: adminimize_page.php:865
581
- 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."
582
- msgstr "Nutze diese Option, um die Einstellungen f&uuml;r das Plugin in der Datenbank zu l&ouml;schen. Das Plugin entfernt die Eintr&auml;ge <strong>nicht</strong>, wenn es deaktiviert wird!"
583
-
584
- #: adminimize_page.php:869
585
- msgid "Delete Options"
586
- msgstr "Einstellungen Löschen"
587
-
588
- #: adminimize_page.php:881
589
- msgid "About the plugin"
590
- msgstr "&Uuml;ber das Plugin"
591
-
592
- #: adminimize_page.php:884
593
- 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."
594
- msgstr "Weitere Information: Besuche die <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">Plugin Webseite</a> f&uuml;r weitere Informationen oder hole die aktuelle Version des Plugins."
595
-
596
- #: adminimize_page.php:884
597
- msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a>."
598
- msgstr "Du willst Danke sagen? Besuche meine <a href=\"http://bueltge.de/wunschliste/\">Wunschliste</a>."
599
-
600
- #~ msgid "Write Options"
601
- #~ msgstr "Einstellungen Schreiben"
602
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/adminimize-es_ES.mo DELETED
Binary file
languages/adminimize-es_ES.po DELETED
@@ -1,585 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Adminimize\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-11-03 10:55+0100\n"
6
- "PO-Revision-Date: 2008-11-04 17:41-0300\n"
7
- "Last-Translator: Gabriel Scheffer <scheffer.gabriel@gmail.com>\n"
8
- "Language-Team: Frank Bueltge <frank@bueltge.de>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-SourceCharset: utf-8\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Basepath: D:\\Eigene\\WP-Plugins\\adminimize\\trunk\\\n"
15
- ": \n"
16
- "X-Poedit-SearchPath-0: .\n"
17
-
18
- #: adminimize.php:75
19
- msgid "Unknown error."
20
- msgstr "Error desconocido."
21
-
22
- #: adminimize.php:82
23
- msgid "The updates was saved."
24
- msgstr "Los cambios se modificaron con éxito."
25
-
26
- #: adminimize.php:83
27
- msgid "You have not enough rights for edit entries in the database."
28
- msgstr "Usted no tiene derechos suficientes para editar las entradas en la base de datos."
29
-
30
- #: adminimize.php:84
31
- msgid "All entries in the database was delleted."
32
- msgstr "Todas las entradas en la base de datos se han eliminado."
33
-
34
- #: adminimize.php:85
35
- msgid "Set the checkbox on deinstall-button."
36
- msgstr "Clicke en la casilla de verificación y presione el botón desinstalar."
37
-
38
- #: adminimize.php:86
39
- msgid "Can't load menu and submenu."
40
- msgstr "No se puede cargar el menú y submenú."
41
-
42
- #: adminimize.php:87
43
- msgid "Backend-Theme was activated!"
44
- msgstr "El tema se ha activado!"
45
-
46
- #: adminimize.php:272
47
- #: adminimize_page.php:446
48
- msgid "Categories"
49
- msgstr "Categorías"
50
-
51
- #: adminimize.php:278
52
- #: adminimize.php:289
53
- msgid "+ Add New Category"
54
- msgstr "+ Agregar nueva categoría"
55
-
56
- #: adminimize.php:280
57
- #: adminimize.php:291
58
- msgid "New category name"
59
- msgstr "Nueva categoría"
60
-
61
- #: adminimize.php:281
62
- #: adminimize.php:293
63
- msgid "Parent category"
64
- msgstr "Categoría padre "
65
-
66
- #: adminimize.php:282
67
- #: adminimize.php:294
68
- msgid "Add"
69
- msgstr "Agregar"
70
-
71
- #: adminimize.php:291
72
- #: adminimize_page.php:447
73
- msgid "Add New Category"
74
- msgstr "Agregar nueva categoría"
75
-
76
- #: adminimize.php:315
77
- #: adminimize.php:316
78
- #: adminimize_page.php:445
79
- msgid "Tags"
80
- msgstr "Etiquetas"
81
-
82
- #: adminimize.php:375
83
- #: adminimize.php:412
84
- #: adminimize.php:454
85
- #: adminimize.php:477
86
- msgid "Classic"
87
- msgstr "Classic"
88
-
89
- #: adminimize.php:382
90
- #: adminimize.php:419
91
- #: adminimize.php:461
92
- #: adminimize.php:484
93
- msgid "Fresh"
94
- msgstr "Fresh"
95
-
96
- #: adminimize.php:397
97
- #: adminimize.php:433
98
- msgid "Maybe i'm colorblind"
99
- msgstr "Maybe \"Colorido\""
100
-
101
- #: adminimize.php:404
102
- #: adminimize.php:440
103
- msgid "Grey"
104
- msgstr "Gris"
105
-
106
- #: adminimize.php:426
107
- msgid "WordPress 2.3"
108
- msgstr "WordPress 2.3"
109
-
110
- #: adminimize.php:608
111
- #: adminimize.php:611
112
- msgid "Dashboard"
113
- msgstr "Dashboard"
114
-
115
- #: adminimize.php:733
116
- #: adminimize.php:735
117
- #: adminimize.php:748
118
- #: adminimize.php:750
119
- #: adminimize.php:936
120
- msgid "Log Out"
121
- msgstr "Cerrar sesión"
122
-
123
- #: adminimize.php:786
124
- #: adminimize_page.php:635
125
- #: adminimize_page.php:636
126
- #: adminimize_page.php:637
127
- #: adminimize_page.php:638
128
- #: adminimize_page.php:639
129
- #: adminimize_page.php:699
130
- #: adminimize_page.php:700
131
- #: adminimize_page.php:701
132
- #: adminimize_page.php:702
133
- #: adminimize_page.php:703
134
- #: adminimize_page.php:747
135
- #: adminimize_page.php:748
136
- #: adminimize_page.php:749
137
- #: adminimize_page.php:750
138
- #: adminimize_page.php:751
139
- msgid "All"
140
- msgstr "Todo"
141
-
142
- #: adminimize.php:786
143
- msgid "None"
144
- msgstr "Ninguno"
145
-
146
- #: adminimize.php:955
147
- msgid "Visit plugin homepage"
148
- msgstr "Visita la página principal del plugin"
149
-
150
- #: adminimize.php:958
151
- msgid "plugin"
152
- msgstr "plugin"
153
-
154
- #: adminimize.php:958
155
- msgid "Version"
156
- msgstr "Versión"
157
-
158
- #: adminimize.php:958
159
- msgid "History"
160
- msgstr "Historia"
161
-
162
- #: adminimize.php:958
163
- msgid "Author"
164
- msgstr "Autor"
165
-
166
- #: adminimize.php:961
167
- msgid "plugin activate"
168
- msgstr "activar el plugin"
169
-
170
- #: adminimize.php:976
171
- msgid "Settings"
172
- msgstr "Configuración"
173
-
174
- #: adminimize.php:1040
175
- #: adminimize_page.php:66
176
- msgid "Adminimize"
177
- msgstr "Adminimize"
178
-
179
- #: adminimize.php:1042
180
- msgid "Adminimize Options"
181
- msgstr "Opciones de Adminimize "
182
-
183
- #: adminimize.php:1054
184
- msgid "Cheatin&#8217; uh?"
185
- msgstr "Cheatin&#8217; uh?"
186
-
187
- #: adminimize_page.php:70
188
- #: adminimize_page.php:79
189
- msgid "Backend Options"
190
- msgstr "Opciones Generales"
191
-
192
- #: adminimize_page.php:86
193
- msgid "Favorite Actions"
194
- msgstr "Acciones favoritas"
195
-
196
- #: adminimize_page.php:90
197
- #: adminimize_page.php:100
198
- #: adminimize_page.php:111
199
- #: adminimize_page.php:121
200
- #: adminimize_page.php:141
201
- #: adminimize_page.php:152
202
- #: adminimize_page.php:165
203
- #: adminimize_page.php:175
204
- #: adminimize_page.php:185
205
- #: adminimize_page.php:195
206
- #: adminimize_page.php:205
207
- #: adminimize_page.php:215
208
- #: adminimize_page.php:266
209
- msgid "Default"
210
- msgstr "Predeterminado"
211
-
212
- #: adminimize_page.php:91
213
- #: adminimize_page.php:101
214
- #: adminimize_page.php:112
215
- #: adminimize_page.php:186
216
- #: adminimize_page.php:196
217
- #: adminimize_page.php:206
218
- #: adminimize_page.php:216
219
- msgid "Activate"
220
- msgstr "Activar"
221
-
222
- #: adminimize_page.php:92
223
- msgid "It is possible to hide the favorite-actions in the header."
224
- msgstr "Oculta \"Acciones favoritas\" en la cabecera."
225
-
226
- #: adminimize_page.php:96
227
- msgid "Screen Options"
228
- msgstr "Opciones de la pantalla"
229
-
230
- #: adminimize_page.php:102
231
- msgid "It is possible to hide the screen-options."
232
- msgstr "Oculta el boton \"Opciones de la pantalla\""
233
-
234
- #: adminimize_page.php:107
235
- msgid "Menu Order"
236
- msgstr "Orden del Menú "
237
-
238
- #: adminimize_page.php:113
239
- msgid "It is possible to set a new menu-order."
240
- msgstr "Asigna un nuevo orden al menú ."
241
-
242
- #: adminimize_page.php:117
243
- msgid "Sidebar Width"
244
- msgstr "Ancho de la barra lateral"
245
-
246
- #: adminimize_page.php:126
247
- 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>"
248
- msgstr "La barra lateral en el lado derecho en la zona <em>Editar</em>es configurable. El valor por defecto es de 200 píxeles en el Tema WordPress <em>Classic</em> o <em>Fresh</em>"
249
-
250
- #: adminimize_page.php:137
251
- msgid "Dashmenu"
252
- msgstr "Dashmenu"
253
-
254
- #: adminimize_page.php:142
255
- #: adminimize_page.php:153
256
- #: adminimize_page.php:176
257
- msgid "Hide"
258
- msgstr "Ocultar"
259
-
260
- #: adminimize_page.php:143
261
- msgid "The &quot;Dashboard-area&quot; is on the top left side of the backend. You can hide show."
262
- msgstr "Puede mostrar o esconder la parte superior izquierda de la administracion. "
263
-
264
- #: adminimize_page.php:148
265
- msgid "User-Info"
266
- msgstr "Informacion del Usuario"
267
-
268
- #: adminimize_page.php:154
269
- msgid "Only logout"
270
- msgstr "Solo Cerrar Sesión"
271
-
272
- #: adminimize_page.php:155
273
- msgid "User &amp; Logout"
274
- msgstr "Usuario &amp; Cerrar Sesión"
275
-
276
- #: adminimize_page.php:156
277
- msgid "The &quot;User-Info-area&quot; is on the top right side of the backend. You can hide or reduced show."
278
- msgstr "Usted puede ocultar o mostrar reducido el &quot;área de información de usuario&quot; \"es en la parte superior derecha\" de la Administracion. "
279
-
280
- #: adminimize_page.php:161
281
- msgid "Change User-Info, redirect to"
282
- msgstr "Cambio de usuario-info, se redirige a"
283
-
284
- #: adminimize_page.php:166
285
- msgid "Frontpage of the Blog"
286
- msgstr "Portada del Blog"
287
-
288
- #: adminimize_page.php:167
289
- msgid "When the &quot;User-Info-area&quot; change it, then it is possible to change the redirect."
290
- msgstr "Cuando el area de informacion del usuario cambia, es posible cambiar la redirección."
291
-
292
- #: adminimize_page.php:171
293
- msgid "Footer"
294
- msgstr "Pie de página"
295
-
296
- #: adminimize_page.php:177
297
- msgid "The Footer-area kann hide, include all links and details."
298
- msgstr "Oculta \"TODO\" el pie de pagina."
299
-
300
- #: adminimize_page.php:181
301
- msgid "WriteScroll"
302
- msgstr "WriteScroll"
303
-
304
- #: adminimize_page.php:187
305
- msgid "With the WriteScroll option active, these pages will automatically scroll to an optimal position for editing, when you visit Write Post or Write Page."
306
- msgstr "Con la opción activa, la página automáticamente se modifica para una óptima edición."
307
-
308
- #: adminimize_page.php:191
309
- msgid "Timestamp"
310
- msgstr "Fecha y hora"
311
-
312
- #: adminimize_page.php:197
313
- msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
314
- msgstr "Deja abierto el campo de edición \"fecha y hora\", sin que usted tenga que hacer clic en el vínculo \"Modificar\"."
315
-
316
- #: adminimize_page.php:201
317
- msgid "Thickbox FullScreen"
318
- msgstr "Thickbox en Pantalla Completa"
319
-
320
- #: adminimize_page.php:207
321
- msgid "All Thickbox-function use the full area of the browser. Thickbox is for examble in upload media-files."
322
- msgstr "Thickbox por ejemplo se usa, para cargar los archivos de los medios."
323
-
324
- #: adminimize_page.php:211
325
- msgid "Advice in Footer"
326
- msgstr "Creditos en Pie de página"
327
-
328
- #: adminimize_page.php:218
329
- msgid "In the Footer kann you display a advice for change the Default-design, (x)HTML is possible."
330
- msgstr "Puede cambiar el valor por defecto del pie de pagina de su diseño mostrando creditos adicionales, (x)HTML es valido."
331
-
332
- #: adminimize_page.php:262
333
- msgid "Dashboard deaktivate, redirect to"
334
- msgstr "Cuando el \"Dashboard\" se desactive, redirigir a"
335
-
336
- #: adminimize_page.php:267
337
- msgid "Manage Posts"
338
- msgstr "Gestionar Entradas"
339
-
340
- #: adminimize_page.php:268
341
- msgid "Manage Pages"
342
- msgstr "Gestionar Páginas"
343
-
344
- #: adminimize_page.php:269
345
- msgid "Write Post"
346
- msgstr "Escribir Entrada"
347
-
348
- #: adminimize_page.php:270
349
- msgid "Write Page"
350
- msgstr "Escribir Pagina"
351
-
352
- #: adminimize_page.php:271
353
- msgid "Comments"
354
- msgstr "Comentarios"
355
-
356
- #: adminimize_page.php:272
357
- msgid "other Page"
358
- msgstr "otra página"
359
-
360
- #: adminimize_page.php:275
361
- msgid "You have deaktivate the Dashboard, please select a page for redirect?"
362
- msgstr "Usted puede desabilitar el \"Dashboard\" por favor, seleccionar una página para redireccionar?"
363
-
364
- #: adminimize_page.php:284
365
- #: adminimize_page.php:370
366
- #: adminimize_page.php:650
367
- #: adminimize_page.php:759
368
- msgid "Update Options"
369
- msgstr "Opciones de Actualización"
370
-
371
- #: adminimize_page.php:300
372
- #: adminimize_page.php:306
373
- msgid "Top Menu Options"
374
- msgstr "Opciones del menú superior"
375
-
376
- #: adminimize_page.php:307
377
- #: adminimize_page.php:387
378
- #: adminimize_page.php:667
379
- #: adminimize_page.php:715
380
- msgid "Deactivate for Subscriber"
381
- msgstr "Desactivar para el Suscriptor"
382
-
383
- #: adminimize_page.php:308
384
- #: adminimize_page.php:388
385
- #: adminimize_page.php:668
386
- #: adminimize_page.php:716
387
- msgid "Deactivate for Contributor"
388
- msgstr "Desactivar para Contribuyente"
389
-
390
- #: adminimize_page.php:309
391
- #: adminimize_page.php:389
392
- #: adminimize_page.php:669
393
- #: adminimize_page.php:717
394
- msgid "Deactivate for Author"
395
- msgstr "Desactivar para el Autor"
396
-
397
- #: adminimize_page.php:310
398
- #: adminimize_page.php:390
399
- #: adminimize_page.php:670
400
- #: adminimize_page.php:718
401
- msgid "Deactivate for Editor"
402
- msgstr "Desactivar para el Editor"
403
-
404
- #: adminimize_page.php:311
405
- #: adminimize_page.php:391
406
- #: adminimize_page.php:671
407
- #: adminimize_page.php:719
408
- msgid "Deactivate for Administrator"
409
- msgstr "Desactivar para el Administrador"
410
-
411
- #: adminimize_page.php:380
412
- msgid "Menu Options"
413
- msgstr "Opciones del Menú "
414
-
415
- #: adminimize_page.php:386
416
- msgid "Menu options - Menu, <span style=\\\"font-weight: 400;\\\">Submenu</span>"
417
- msgstr "Opciones de menú - Menu, <span style=\"font-weight: 400;\">Submenu</span>"
418
-
419
- #: adminimize_page.php:444
420
- #: adminimize_page.php:504
421
- msgid "Permalink"
422
- msgstr "Enlace permanente"
423
-
424
- #: adminimize_page.php:448
425
- msgid "Excerpt"
426
- msgstr "Extracto"
427
-
428
- #: adminimize_page.php:449
429
- msgid "Trackbacks"
430
- msgstr "Trackbacks"
431
-
432
- #: adminimize_page.php:450
433
- #: adminimize_page.php:505
434
- msgid "Custom Fields"
435
- msgstr "Campos personalizados"
436
-
437
- #: adminimize_page.php:451
438
- #: adminimize_page.php:506
439
- msgid "Comments &amp; Pings"
440
- msgstr "Comentarios &amp; Pings"
441
-
442
- #: adminimize_page.php:452
443
- msgid "Password Protect This Post"
444
- msgstr "Proteger esta entrada con contraseña "
445
-
446
- #: adminimize_page.php:453
447
- msgid "Post Author"
448
- msgstr "Autor"
449
-
450
- #: adminimize_page.php:454
451
- msgid "Post Revisions"
452
- msgstr "Revisiones de la entrada"
453
-
454
- #: adminimize_page.php:455
455
- msgid "Related, Shortcuts"
456
- msgstr "Relacionados, accesos directos"
457
-
458
- #: adminimize_page.php:456
459
- #: adminimize_page.php:514
460
- msgid "Messenges"
461
- msgstr "Mensajes"
462
-
463
- #: adminimize_page.php:457
464
- #: adminimize_page.php:515
465
- msgid "h2: Advanced Options"
466
- msgstr "h2:Opciones avanzadas"
467
-
468
- #: adminimize_page.php:458
469
- #: adminimize_page.php:516
470
- msgid "Media Buttons (all)"
471
- msgstr "Botones de los medios (todos)"
472
-
473
- #: adminimize_page.php:462
474
- #: adminimize_page.php:520
475
- msgid "Suggested tags from"
476
- msgstr "Etiquetas"
477
-
478
- #: adminimize_page.php:464
479
- msgid "Text Control"
480
- msgstr "Control de texto"
481
-
482
- #: adminimize_page.php:466
483
- #: adminimize_page.php:522
484
- msgid "HTML Special Characters"
485
- msgstr "HTML Caracteres especiales"
486
-
487
- #: adminimize_page.php:507
488
- msgid "Password Protect This Page"
489
- msgstr "Proteger página con contraseña"
490
-
491
- #: adminimize_page.php:508
492
- msgid "Page Parent"
493
- msgstr "Page Parent"
494
-
495
- #: adminimize_page.php:509
496
- msgid "Page Template"
497
- msgstr "Template de la página"
498
-
499
- #: adminimize_page.php:510
500
- msgid "Page Order"
501
- msgstr "Orden de las páginas"
502
-
503
- #: adminimize_page.php:511
504
- msgid "Page Author"
505
- msgstr "Autor de la página"
506
-
507
- #: adminimize_page.php:512
508
- msgid "Page Revisions"
509
- msgstr "Revisiones de la página"
510
-
511
- #: adminimize_page.php:513
512
- msgid "Related"
513
- msgstr "Relacionado"
514
-
515
- #: adminimize_page.php:634
516
- #: adminimize_page.php:697
517
- #: adminimize_page.php:745
518
- msgid "All items"
519
- msgstr "Todos los artículos"
520
-
521
- #: adminimize_page.php:659
522
- msgid "Write Options"
523
- msgstr "Opciones de escritura"
524
-
525
- #: adminimize_page.php:666
526
- msgid "Write options - Post"
527
- msgstr "Opciones de escritura - Entradas"
528
-
529
- #: adminimize_page.php:714
530
- msgid "Write options - Page"
531
- msgstr "Opciones de escritura - Paginas"
532
-
533
- #: adminimize_page.php:769
534
- #: adminimize_page.php:835
535
- msgid "Set Theme"
536
- msgstr "Seleccionar diseño"
537
-
538
- #: adminimize_page.php:778
539
- msgid "User-ID"
540
- msgstr "ID del Usuario"
541
-
542
- #: adminimize_page.php:779
543
- msgid "Username"
544
- msgstr "Usuario"
545
-
546
- #: adminimize_page.php:780
547
- msgid "Display name publicly as"
548
- msgstr "Nombre para mostrar"
549
-
550
- #: adminimize_page.php:781
551
- msgid "Admin Color Scheme"
552
- msgstr "Colores de la administración"
553
-
554
- #: adminimize_page.php:782
555
- msgid "User Level"
556
- msgstr "Nivel de Usuario"
557
-
558
- #: adminimize_page.php:783
559
- msgid "Role"
560
- msgstr "Role"
561
-
562
- #: adminimize_page.php:845
563
- msgid "Deinstall Options"
564
- msgstr "Opciones de desinstalacion"
565
-
566
- #: adminimize_page.php:848
567
- 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."
568
- msgstr "Utiliza esta opción para limpiar la base de datos de todas las entradas de este plugin. Cuando desactiva o desinstalador el plugin <strong> no limpia </ strong> todas las entradas en la base de datos."
569
-
570
- #: adminimize_page.php:852
571
- msgid "Delete Options"
572
- msgstr "Opciones de eliminación"
573
-
574
- #: adminimize_page.php:864
575
- msgid "About the plugin"
576
- msgstr "Acerca del plugin"
577
-
578
- #: adminimize_page.php:867
579
- 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."
580
- msgstr "Nota: Para más información o para obtener la última versión de este plugin, visite la<a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">Pagína del Plugin</a> "
581
-
582
- #: adminimize_page.php:867
583
- msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a>."
584
- msgstr "¿Quieres dar las gracias por el plugins? Visita el sitio del creador: <a href=\"http://bueltge.de/wunschliste/\">Wunschliste</a>."
585
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.pot 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
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme.txt DELETED
@@ -1,106 +0,0 @@
1
- === Adminimize ===
2
- 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: 2.7
7
- Stable tag: 0.5
8
-
9
- At first: Visually compresses the administratrive header so that more admin page content can be initially seen. Also moves 'Dashboard' onto the main administrative menu because having it sit in the tip-top black bar was ticking me off and many other changes in the edit-area.
10
- At second. Adminimize is a WordPress plugin that lets you hide 'unnecessary' items from the WordPress administration menu, submenu and even the 'Dashboard', with forwarding to the Manage-page. On top of that, you can also hide post meta controls on the Write page and other areas in the admin-area and Write-page, so as to simplify the editing interface. All is addicted from your rights, admin (user_level 10) or other roles.
11
-
12
- == Description ==
13
- Visually compresses the administratrive header so that more admin page content can be initially seen. Also moves 'Dashboard' onto the main administrative menu because having it sit in the tip-top black bar was ticking me off and many other changes in the edit-area. Adminimize is a WordPress plugin that lets you hide 'unnecessary' items from the WordPress administration menu, submenu and even the 'Dashboard', with forwarding to the Manage-page. On top of that, you can also hide post meta controls on the Write page and other areas in the admin-area and Write-page, so as to simplify the editing interface. Compatible with WordPress 2.5 or later.
14
- Configure all metaboxes and other areas in the write-area. The new theme move the Tags- and Categorys-box to the sidebar, switch off optional metaboxes and other areas in the write-area. Scoll automatocly to the Textbox, when you click the write-button. Many options for menu, submenu and all areas, metaboxes in the write-area, separated for admins (user_level 10) and other roles.
15
-
16
- = Compatibility with the drop-down menu plugins =
17
- 1. [Ozh Admin Drop Down Menu](http://planetozh.com/blog/my-projects/wordpress-admin-menu-drop-down-css/ "Admin Drop Down Menu for WordPress 2.5") by Ozh
18
- 1. [Drop Down Admin Menus](http://www.stuff.yellowswordfish.com/ "Drop Down Admin Menus for WordPress 2.5") by Andy Staines
19
-
20
- = Compatibility with the plugins for MetaBoxes in Write-area =
21
- 1. [Simple Tag](http://wordpress.org/extend/plugins/simple-tags "Simple Tag") by Amaury BALMER
22
- 1. [Text Control](http://dev.wp-plugins.org/wiki/TextControl "Text Control") by Michael Torbert
23
- 1. [All in One SEO Pack](http://semperfiwebdesign.com "All in One SEO Pack") by Jeff Minard and Frank Bueltge
24
- 1. [TDO Mini Forms](http://thedeadone.net/software/tdo-mini-forms-wordpress-plugin/ "TDO Mini Forms") by Mark Cunningham
25
- 1. [Post Notification](http://pn.xn--strbe-mva.de/ "Post Notification") by Moritz Str&uuml;be
26
- 1. [HTML Special Characters Helper](http://coffee2code.com/wp-plugins/html-special-characters-helper "HTML Special Characters Helper") by Scott Reilly
27
-
28
- = Requirements =
29
- 1. WordPress version 2.5 and later
30
-
31
- Please visit [the official website](http://bueltge.de/wordpress-admin-theme-adminimize/674/ "Adminimize") for further details and the latest information on this plugin.
32
-
33
- = What does this plugin do? =
34
- The plugin changes the administration backend and gives you the power to assign rights on certain parts. Admins can activate/deactivate every part of the menu and even parts of the submenu. Meta fields can be administered separately for posts and pages. Certain parts of the write menu can be deactivated separately for admins or non-admins. The header of the backend is minimized and optimized to give you more space and the structure of the menu gets changed to make it more logical - this can all be done per user so each user can have his own settings.
35
-
36
- = Details =
37
- 1. the admin theme can be set per user. To change this go to user settings
38
- 1. currently you can use the theme together with the color settings for the Fresh and Classic themes
39
- 1. more colors can be easily added
40
- 1. new menu structure: on the left hand site you find classic menu points for managing and writing, while the right part is reserved for settings, design, plugins and user settings
41
- 1. the dashboard has been moved into the menu itself but this can be deactivated if its not desired
42
- 1. the menu is now smaller and takes up less space
43
- 1. the WRITE menu has been changed as follows:
44
- 1. it is no longer limited to a fixed width but flows to fill your whole browser window now
45
- 1. you can scroll all input fields now, no need to make certain parts of the WRITE screen bigger
46
- 1. categories moved to the sidebar
47
- 1. tags moved to the sidebar if you are not using the plugin "Simple Tags"
48
- 1. the editing part gets auto-scrolled which makes sense when using a small resolution
49
- 1. the media uploader now uses the whole screen width
50
- 1. supports the plugin "Admin Drop Down Menu" - when the plugin is active the user has two more backend-themes to chose from
51
- 1. supports the plugin "Lighter Menus" - when that plugin is active the user has another two backend-themes to chose from
52
- 1. two new color schemes are now available
53
- 1. the width of the sidebar is changeable to standard, 300px, 400px or 30%
54
- 1. each meta field can now be deactivated (per user setting) so it doesn't clutter up your write screen
55
- 1. you can even deactivate other parts like h2, messages or the info in the sidebar
56
- 1. the part of the user info you have on the upper - right part of your menu can be deactivated or just the log-out link
57
- 1. the dashboard can be completely removed from the backend
58
- 1. all menu and sub menu points can be completely deactivated for admins and non-admins
59
- 1. most of these changes are only loaded when needed - i.e. only in the write screen
60
- 1. set a backend-theme for difficult user
61
- 1. ... many more
62
-
63
- == Installation ==
64
- 1. Unpack the download-package
65
-
66
- 2. Upload folder include all files to the `/wp-content/plugins/` directory. The
67
- final directory tree should look like `/wp-content/plugins/adminimize/adminimize.php`, `/wp-content/plugins/adminimize/adminimize_page.php`, `/wp-content/plugins/adminimize/css/` and `/wp-content/plugins/adminimize/languages`
68
-
69
- 3. Activate the plugin through the `Plugins` menu in WordPress
70
-
71
- 4. Colour Scheme and Theme selection in Your Profile Go to your User Profile (under `Users` > `Your Profile` or by clicking on your name at the top right corner of the administration panel).
72
-
73
- 4. Administrator can go to `Options` > `Adminimize` menu and configure the plugin (Menu, Submenu, Metaboxes, ...)
74
-
75
- = Advice =
76
- Please use the `Deinstall-Funktion` in the option-area bevor update to version 1.4! Version 1.4 and bigger has only one databas entry and the `Deinstall-Option` desinatll the old entrys.
77
-
78
- See on [the official website](http://bueltge.de/wordpress-admin-theme-adminimize/674/ "Adminimize").
79
-
80
- == Screenshots ==
81
- 1. minimize header after activate
82
- 1. configure-area for user
83
- 1. configure-area for user/admin; options for metaboxes, areas in write-area and menu
84
- 1. Adminimize Theme how in WordPress 2.3
85
-
86
- == Other Notes ==
87
- = Acknowledgements =
88
- Thanks to [Eric Meyer](http://meyerweb.com/ "Eric Meyer") for the Idea and the Stylesheet to minimize the header of backend and thanks to [Alphawolf](http://www.schloebe.de/ "Alphawolf") for write a smaller javascript with jQuery.
89
- Also Thanks to [Ovidio](http://pacura.ru/ "pacaru.ru") for an translations the details in english and [G&uuml;rkan G&uuml;r](http://www.seqizz.net/ "G�rkan G�r") for translation in turkish.
90
- Thanks to [Gabriel Scheffer](http://www.gabrielscheffer.com.ar "Gabriel Scheffer") for the spanish language files.
91
-
92
- = Licence =
93
- Good news, this plugin is free for everyone! Since it's released under the GPL, you can use it free of charge on your personal or commercial blog. But if you enjoy this plugin, you can thank me and leave a [small donation](http://bueltge.de/wunschliste/ "Wishliste and Donate") for the time I've spent writing and supporting this plugin. And I really don't want to know how many hours of my life this plugin has already eaten ;)
94
-
95
- = Translations =
96
- The plugin comes with various translations, please refer to the [WordPress Codex](http://codex.wordpress.org/Installing_WordPress_in_Your_Language "Installing WordPress in Your Language") for more information about activating the translation. If you want to help to translate the plugin to your language, please have a look at the sitemap.pot file which contains all defintions and may be used with a [gettext](http://www.gnu.org/software/gettext/) editor like [Poedit](http://www.poedit.net/) (Windows).
97
-
98
- == Frequently Asked Questions ==
99
- = History? =
100
- Please see the changes on version on the [the official website](http://bueltge.de/wordpress-admin-theme-adminimize/674/ "Adminimize")!
101
-
102
- = Where can I get more information? =
103
- Please visit [the official website](http://bueltge.de/wordpress-admin-theme-adminimize/674/ "Adminimize") for the latest information on this plugin.
104
-
105
- = I love this plugin! How can I show the developer how much I appreciate his work? =
106
- Please visit [the official website](http://bueltge.de/wordpress-admin-theme-adminimize/674/ "Adminimize") and let him know your care or see the [wishlist](http://bueltge.de/wunschliste/ "Wishlist") of the author.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
screenshot-1.png DELETED
Binary file
screenshot-2.png DELETED
Binary file
screenshot-3.png DELETED
Binary file
screenshot-4.png DELETED
Binary file