Version Description
Download this release
Release Info
Developer | Bueltge |
Plugin | Adminimize |
Version | 1.8.0 |
Comparing to | |
See all releases |
Code changes from version 1.7.27 to 1.8.0
- adminimize.php +67 -37
- adminimize_admin_bar.php.new +104 -0
- inc-options/backend_options.php +21 -0
- inc-options/minimenu.php +26 -16
- inc-options/write_post_options.php +1 -1
- inc-setup/dashboard.php +12 -4
- languages/adminimize-de_DE.mo +0 -0
- languages/adminimize-de_DE.po +812 -817
- languages/adminimize-xx_XX.pot +812 -817
- readme.txt +13 -2
- screenshot-1.png +0 -0
adminimize.php
CHANGED
@@ -12,7 +12,7 @@
|
|
12 |
* Description: Visually compresses the administratrive meta-boxes so that more admin page content can be initially seen. The plugin that lets you hide 'unnecessary' items from the WordPress administration menu, for alle roles of your install. You can also hide post meta controls on the edit-area to simplify the interface. It is possible to simplify the admin in different for all roles.
|
13 |
* Author: Frank Bültge
|
14 |
* Author URI: http://bueltge.de/
|
15 |
-
* Version: 1.
|
16 |
* License: GPLv3
|
17 |
*/
|
18 |
|
@@ -87,10 +87,10 @@ function _mw_adminimize_recursive_in_array( $needle, $haystack ) {
|
|
87 |
if ( '' != $haystack ) {
|
88 |
foreach ( $haystack as $stalk ) {
|
89 |
if ( $needle == $stalk ||
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
return TRUE;
|
95 |
}
|
96 |
}
|
@@ -271,7 +271,12 @@ function _mw_adminimize_admin_init() {
|
|
271 |
|
272 |
$user_roles = _mw_adminimize_get_all_user_roles();
|
273 |
|
274 |
-
|
|
|
|
|
|
|
|
|
|
|
275 |
// pages for post type Post
|
276 |
$def_post_pages = array( 'edit.php', 'post.php', 'post-new.php' );
|
277 |
$def_post_types = array( 'post' );
|
@@ -449,10 +454,13 @@ function _mw_adminimize_init() {
|
|
449 |
}
|
450 |
|
451 |
// on admin init
|
|
|
452 |
add_action( 'admin_init', '_mw_adminimize_textdomain' );
|
453 |
add_action( 'admin_init', '_mw_adminimize_register_styles', 1 );
|
454 |
add_action( 'admin_init', '_mw_adminimize_admin_init', 2 );
|
455 |
add_action( 'init', '_mw_adminimize_init', 2 );
|
|
|
|
|
456 |
add_action( 'admin_menu', '_mw_adminimize_add_settings_page' );
|
457 |
add_action( 'admin_menu', '_mw_adminimize_remove_dashboard' );
|
458 |
|
@@ -723,7 +731,7 @@ function _mw_adminimize_set_menu_option() {
|
|
723 |
}
|
724 |
|
725 |
// set menu
|
726 |
-
if ( '' != $disabled_menu_['editor'] ) {
|
727 |
|
728 |
// set admin-menu
|
729 |
foreach ( $user_roles as $role ) {
|
@@ -1080,7 +1088,7 @@ require_once( 'inc-setup/dashboard.php' );
|
|
1080 |
require_once( 'inc-setup/admin-bar.php' );
|
1081 |
require_once( 'inc-setup/admin-footer.php' );
|
1082 |
// globale settings
|
1083 |
-
require_once( 'inc-options/settings_notice.php' );
|
1084 |
|
1085 |
|
1086 |
/**
|
@@ -1108,22 +1116,29 @@ function _mw_adminimize_filter_plugin_meta( $links, $file ) {
|
|
1108 |
* settings in plugin-admin-page
|
1109 |
*/
|
1110 |
function _mw_adminimize_add_settings_page() {
|
1111 |
-
|
1112 |
-
|
1113 |
-
|
1114 |
-
|
1115 |
-
$pagehook = add_submenu_page(
|
1116 |
-
'
|
1117 |
-
__( 'Adminimize Options', FB_ADMINIMIZE_TEXTDOMAIN ),
|
1118 |
-
__( 'Adminimize', FB_ADMINIMIZE_TEXTDOMAIN ),
|
1119 |
-
'manage_options',
|
1120 |
-
__FILE__,
|
1121 |
'_mw_adminimize_options'
|
1122 |
);
|
1123 |
-
add_action( 'load-' . $pagehook, '_mw_adminimize_on_load_page' );
|
1124 |
-
add_filter( 'plugin_action_links', '_mw_adminimize_filter_plugin_meta', 10, 2 );
|
1125 |
}
|
1126 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1127 |
}
|
1128 |
|
1129 |
|
@@ -1142,8 +1157,8 @@ function _mw_adminimize_set_theme() {
|
|
1142 |
if ( ! current_user_can( 'edit_users' ) )
|
1143 |
wp_die( __( 'Cheatin’ uh?' ) );
|
1144 |
|
1145 |
-
$user_ids = $_POST[mw_adminimize_theme_items];
|
1146 |
-
$admin_color = htmlspecialchars( stripslashes( $_POST[_mw_adminimize_set_theme] ) );
|
1147 |
|
1148 |
if ( ! $user_ids )
|
1149 |
return FALSE;
|
@@ -1159,8 +1174,12 @@ function _mw_adminimize_set_theme() {
|
|
1159 |
* read otpions
|
1160 |
*/
|
1161 |
function _mw_adminimize_get_option_value( $key) {
|
1162 |
-
|
1163 |
-
|
|
|
|
|
|
|
|
|
1164 |
|
1165 |
if ( isset( $adminimizeoptions[$key] ) )
|
1166 |
return ( $adminimizeoptions[$key] );
|
@@ -1423,8 +1442,10 @@ function _mw_adminimize_update() {
|
|
1423 |
$adminimizeoptions['mw_adminimize_default_submenu'] = $GLOBALS['submenu'];
|
1424 |
|
1425 |
// update
|
1426 |
-
|
1427 |
-
|
|
|
|
|
1428 |
|
1429 |
$myErrors = new _mw_adminimize_message_class();
|
1430 |
$myErrors = '<div id="message" class="updated fade"><p>' . $myErrors->get_error( '_mw_adminimize_update' ) . '</p></div>';
|
@@ -1437,6 +1458,7 @@ function _mw_adminimize_update() {
|
|
1437 |
*/
|
1438 |
function _mw_adminimize_deinstall() {
|
1439 |
|
|
|
1440 |
delete_option( 'mw_adminimize' );
|
1441 |
}
|
1442 |
|
@@ -1449,11 +1471,11 @@ function _mw_adminimize_install() {
|
|
1449 |
|
1450 |
$user_roles = _mw_adminimize_get_all_user_roles();
|
1451 |
$adminimizeoptions = array();
|
1452 |
-
|
1453 |
foreach ( $user_roles as $role ) {
|
1454 |
-
$adminimizeoptions['mw_adminimize_disabled_menu_' . $role . '_items']
|
1455 |
-
$adminimizeoptions['mw_adminimize_disabled_submenu_' . $role . '_items']
|
1456 |
-
$adminimizeoptions['mw_adminimize_disabled_global_option_' . $role . '_items']
|
1457 |
$adminimizeoptions['mw_adminimize_disabled_metaboxes_post_' . $role . '_items'] = array();
|
1458 |
$adminimizeoptions['mw_adminimize_disabled_metaboxes_page_' . $role . '_items'] = array();
|
1459 |
$args = array( 'public' => TRUE, '_builtin' => FALSE );
|
@@ -1461,11 +1483,14 @@ function _mw_adminimize_install() {
|
|
1461 |
$adminimizeoptions['mw_adminimize_disabled_metaboxes_' . $post_type . '_' . $role . '_items'] = array();
|
1462 |
}
|
1463 |
}
|
1464 |
-
|
1465 |
-
$adminimizeoptions['mw_adminimize_default_menu']
|
1466 |
$adminimizeoptions['mw_adminimize_default_submenu'] = $submenu;
|
1467 |
-
|
1468 |
-
|
|
|
|
|
|
|
1469 |
}
|
1470 |
|
1471 |
/**
|
@@ -1519,13 +1544,18 @@ function _mw_adminimize_import() {
|
|
1519 |
|
1520 |
if ( file_exists( $str_ziel ) )
|
1521 |
unlink( $str_ziel );
|
1522 |
-
|
|
|
|
|
|
|
|
|
|
|
1523 |
if ( file_exists( $str_ziel ) )
|
1524 |
unlink( $str_ziel );
|
1525 |
|
1526 |
$addreferer = 'true';
|
1527 |
}
|
1528 |
-
|
1529 |
$myErrors = new _mw_adminimize_message_class();
|
1530 |
$myErrors = '<div id="message" class="updated fade"><p>' .
|
1531 |
$myErrors->get_error( '_mw_adminimize_import' ) . '</p></div>';
|
12 |
* Description: Visually compresses the administratrive meta-boxes so that more admin page content can be initially seen. The plugin that lets you hide 'unnecessary' items from the WordPress administration menu, for alle roles of your install. You can also hide post meta controls on the edit-area to simplify the interface. It is possible to simplify the admin in different for all roles.
|
13 |
* Author: Frank Bültge
|
14 |
* Author URI: http://bueltge.de/
|
15 |
+
* Version: 1.8.0
|
16 |
* License: GPLv3
|
17 |
*/
|
18 |
|
87 |
if ( '' != $haystack ) {
|
88 |
foreach ( $haystack as $stalk ) {
|
89 |
if ( $needle == $stalk ||
|
90 |
+
( is_array( $stalk) &&
|
91 |
+
_mw_adminimize_recursive_in_array( $needle, $stalk )
|
92 |
+
)
|
93 |
+
) {
|
94 |
return TRUE;
|
95 |
}
|
96 |
}
|
271 |
|
272 |
$user_roles = _mw_adminimize_get_all_user_roles();
|
273 |
|
274 |
+
// check for use on multisite
|
275 |
+
if ( is_multisite() && is_plugin_active_for_network( MW_ADMIN_FILE ) )
|
276 |
+
$adminimizeoptions = get_site_option( 'mw_adminimize' );
|
277 |
+
else
|
278 |
+
$adminimizeoptions = get_option( 'mw_adminimize' );
|
279 |
+
|
280 |
// pages for post type Post
|
281 |
$def_post_pages = array( 'edit.php', 'post.php', 'post-new.php' );
|
282 |
$def_post_types = array( 'post' );
|
454 |
}
|
455 |
|
456 |
// on admin init
|
457 |
+
define( 'MW_ADMIN_FILE', plugin_basename( __FILE__ ) );
|
458 |
add_action( 'admin_init', '_mw_adminimize_textdomain' );
|
459 |
add_action( 'admin_init', '_mw_adminimize_register_styles', 1 );
|
460 |
add_action( 'admin_init', '_mw_adminimize_admin_init', 2 );
|
461 |
add_action( 'init', '_mw_adminimize_init', 2 );
|
462 |
+
if ( is_multisite() && is_plugin_active_for_network( MW_ADMIN_FILE ) )
|
463 |
+
add_action( 'network_admin_menu', '_mw_adminimize_add_settings_page' );
|
464 |
add_action( 'admin_menu', '_mw_adminimize_add_settings_page' );
|
465 |
add_action( 'admin_menu', '_mw_adminimize_remove_dashboard' );
|
466 |
|
731 |
}
|
732 |
|
733 |
// set menu
|
734 |
+
if ( isset( $disabled_menu_['editor'] ) && '' != $disabled_menu_['editor'] ) {
|
735 |
|
736 |
// set admin-menu
|
737 |
foreach ( $user_roles as $role ) {
|
1088 |
require_once( 'inc-setup/admin-bar.php' );
|
1089 |
require_once( 'inc-setup/admin-footer.php' );
|
1090 |
// globale settings
|
1091 |
+
//require_once( 'inc-options/settings_notice.php' );
|
1092 |
|
1093 |
|
1094 |
/**
|
1116 |
* settings in plugin-admin-page
|
1117 |
*/
|
1118 |
function _mw_adminimize_add_settings_page() {
|
1119 |
+
|
1120 |
+
/*
|
1121 |
+
* Maybe later
|
1122 |
+
if ( is_multisite() && is_plugin_active_for_network( plugin_basename( __FILE__ ) ) ) {
|
1123 |
+
$pagehook = add_submenu_page(
|
1124 |
+
'settings.php',
|
1125 |
+
__( 'Adminimize Network Options', FB_ADMINIMIZE_TEXTDOMAIN ),
|
1126 |
+
__( 'Adminimize', FB_ADMINIMIZE_TEXTDOMAIN ),
|
1127 |
+
'manage_options',
|
1128 |
+
plugin_basename( __FILE__ ),
|
1129 |
'_mw_adminimize_options'
|
1130 |
);
|
|
|
|
|
1131 |
}
|
1132 |
+
*/
|
1133 |
+
$pagehook = add_options_page(
|
1134 |
+
__( 'Adminimize Options', FB_ADMINIMIZE_TEXTDOMAIN ),
|
1135 |
+
__( 'Adminimize', FB_ADMINIMIZE_TEXTDOMAIN ),
|
1136 |
+
'manage_options',
|
1137 |
+
__FILE__,
|
1138 |
+
'_mw_adminimize_options'
|
1139 |
+
);
|
1140 |
+
add_filter( 'plugin_action_links', '_mw_adminimize_filter_plugin_meta', 10, 2 );
|
1141 |
+
add_action( 'load-' . $pagehook, '_mw_adminimize_on_load_page' );
|
1142 |
}
|
1143 |
|
1144 |
|
1157 |
if ( ! current_user_can( 'edit_users' ) )
|
1158 |
wp_die( __( 'Cheatin’ uh?' ) );
|
1159 |
|
1160 |
+
$user_ids = $_POST['mw_adminimize_theme_items'];
|
1161 |
+
$admin_color = htmlspecialchars( stripslashes( $_POST['_mw_adminimize_set_theme'] ) );
|
1162 |
|
1163 |
if ( ! $user_ids )
|
1164 |
return FALSE;
|
1174 |
* read otpions
|
1175 |
*/
|
1176 |
function _mw_adminimize_get_option_value( $key) {
|
1177 |
+
|
1178 |
+
// check for use on multisite
|
1179 |
+
if ( is_multisite() && is_plugin_active_for_network( MW_ADMIN_FILE ) )
|
1180 |
+
$adminimizeoptions = get_site_option( 'mw_adminimize' );
|
1181 |
+
else
|
1182 |
+
$adminimizeoptions = get_option( 'mw_adminimize' );
|
1183 |
|
1184 |
if ( isset( $adminimizeoptions[$key] ) )
|
1185 |
return ( $adminimizeoptions[$key] );
|
1442 |
$adminimizeoptions['mw_adminimize_default_submenu'] = $GLOBALS['submenu'];
|
1443 |
|
1444 |
// update
|
1445 |
+
if ( is_multisite() && is_plugin_active_for_network( MW_ADMIN_FILE ) )
|
1446 |
+
update_site_option( 'mw_adminimize', $adminimizeoptions );
|
1447 |
+
else
|
1448 |
+
update_option( 'mw_adminimize', $adminimizeoptions );
|
1449 |
|
1450 |
$myErrors = new _mw_adminimize_message_class();
|
1451 |
$myErrors = '<div id="message" class="updated fade"><p>' . $myErrors->get_error( '_mw_adminimize_update' ) . '</p></div>';
|
1458 |
*/
|
1459 |
function _mw_adminimize_deinstall() {
|
1460 |
|
1461 |
+
delete_site_option( 'mw_adminimize' );
|
1462 |
delete_option( 'mw_adminimize' );
|
1463 |
}
|
1464 |
|
1471 |
|
1472 |
$user_roles = _mw_adminimize_get_all_user_roles();
|
1473 |
$adminimizeoptions = array();
|
1474 |
+
|
1475 |
foreach ( $user_roles as $role ) {
|
1476 |
+
$adminimizeoptions['mw_adminimize_disabled_menu_' . $role . '_items'] = array();
|
1477 |
+
$adminimizeoptions['mw_adminimize_disabled_submenu_' . $role . '_items'] = array();
|
1478 |
+
$adminimizeoptions['mw_adminimize_disabled_global_option_' . $role . '_items'] = array();
|
1479 |
$adminimizeoptions['mw_adminimize_disabled_metaboxes_post_' . $role . '_items'] = array();
|
1480 |
$adminimizeoptions['mw_adminimize_disabled_metaboxes_page_' . $role . '_items'] = array();
|
1481 |
$args = array( 'public' => TRUE, '_builtin' => FALSE );
|
1483 |
$adminimizeoptions['mw_adminimize_disabled_metaboxes_' . $post_type . '_' . $role . '_items'] = array();
|
1484 |
}
|
1485 |
}
|
1486 |
+
|
1487 |
+
$adminimizeoptions['mw_adminimize_default_menu'] = $menu;
|
1488 |
$adminimizeoptions['mw_adminimize_default_submenu'] = $submenu;
|
1489 |
+
|
1490 |
+
if ( is_multisite() && is_plugin_active_for_network( MW_ADMIN_FILE ) )
|
1491 |
+
add_site_option( 'mw_adminimize', $adminimizeoptions );
|
1492 |
+
else
|
1493 |
+
add_option( 'mw_adminimize', $adminimizeoptions );
|
1494 |
}
|
1495 |
|
1496 |
/**
|
1544 |
|
1545 |
if ( file_exists( $str_ziel ) )
|
1546 |
unlink( $str_ziel );
|
1547 |
+
|
1548 |
+
if ( is_multisite() && is_plugin_active_for_network( MW_ADMIN_FILE ) )
|
1549 |
+
update_site_option( 'mw_adminimize', $import_file );
|
1550 |
+
else
|
1551 |
+
update_option( 'mw_adminimize', $import_file );
|
1552 |
+
|
1553 |
if ( file_exists( $str_ziel ) )
|
1554 |
unlink( $str_ziel );
|
1555 |
|
1556 |
$addreferer = 'true';
|
1557 |
}
|
1558 |
+
|
1559 |
$myErrors = new _mw_adminimize_message_class();
|
1560 |
$myErrors = '<div id="message" class="updated fade"><p>' .
|
1561 |
$myErrors->get_error( '_mw_adminimize_import' ) . '</p></div>';
|
adminimize_admin_bar.php.new
ADDED
@@ -0,0 +1,104 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* setup admin bar
|
4 |
+
*/
|
5 |
+
|
6 |
+
// test
|
7 |
+
function _fb_filter_admin_bar() {
|
8 |
+
global $wp_admin_bar;
|
9 |
+
|
10 |
+
//get array with userroles
|
11 |
+
$user_roles = get_all_user_roles();
|
12 |
+
$user_roles_names = get_all_user_roles_names();
|
13 |
+
$disabled_item_adm = '';
|
14 |
+
$disabled_item_adm_hint = '';
|
15 |
+
|
16 |
+
foreach ($user_roles as $role) {
|
17 |
+
$disabled_menu_[$role] = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_'. $role .'_items');
|
18 |
+
$disabled_submenu_[$role] = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_'. $role .'_items');
|
19 |
+
}
|
20 |
+
?>
|
21 |
+
<div id="poststuff" class="ui-sortable meta-box-sortables">
|
22 |
+
<div class="postbox">
|
23 |
+
<div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
|
24 |
+
<h3 class="hndle" id="config_menu"><?php _e('WP Admin Bar Options', FB_ADMINIMIZE_TEXTDOMAIN ); ?></h3>
|
25 |
+
<div class="inside">
|
26 |
+
<br class="clear" />
|
27 |
+
|
28 |
+
<table summary="config_menu" class="widefat">
|
29 |
+
<thead>
|
30 |
+
<tr>
|
31 |
+
<th><?php _e('Admin Bar options - Menu, <span style=\"font-weight: 400;\">Submenu</span>', FB_ADMINIMIZE_TEXTDOMAIN ); ?></th>
|
32 |
+
<?php foreach ($user_roles_names as $role_name) { ?>
|
33 |
+
<th><?php _e('Deactivate for', FB_ADMINIMIZE_TEXTDOMAIN ); echo '<br/>' . $role_name; ?></th>
|
34 |
+
<?php } ?>
|
35 |
+
</tr>
|
36 |
+
</thead>
|
37 |
+
<tbody>
|
38 |
+
<?php
|
39 |
+
foreach ($wp_admin_bar->menu as $menu_item_id => $item) {
|
40 |
+
if ( isset($item) && $item != '' ) {
|
41 |
+
|
42 |
+
$x = 0;
|
43 |
+
$class = '';
|
44 |
+
|
45 |
+
foreach($user_roles as $role) {
|
46 |
+
// checkbox checked
|
47 |
+
if ( isset( $disabled_menu_[$role]) && in_array($menu_item_id, $disabled_menu_[$role]) ) {
|
48 |
+
$checked_user_role_[$role] = ' checked="checked"';
|
49 |
+
} else {
|
50 |
+
$checked_user_role_[$role] = '';
|
51 |
+
}
|
52 |
+
}
|
53 |
+
|
54 |
+
echo '<tr class="form-invalid">' . "\n";
|
55 |
+
echo "\t" . '<th>' . $item['title'] . ' <span style="color:#ccc; font-weight:400;">(' . $menu_item_id . ')</span> </th>';
|
56 |
+
foreach ($user_roles as $role) {
|
57 |
+
echo "\t" . '<td class="num">' .
|
58 |
+
'<input id="check_menu'. $role . $x .'" type="checkbox"' . $checked_user_role_[$role] . ' name="mw_adminimize_disabled_menu_'. $role .'_items[]" value="' . $item['title'] . '" />'
|
59 |
+
. '</td>' . "\n";
|
60 |
+
}
|
61 |
+
echo '</tr>';
|
62 |
+
|
63 |
+
if ( !isset($item['children']) )
|
64 |
+
continue;
|
65 |
+
|
66 |
+
// submenu items
|
67 |
+
foreach ( $item['children'] as $subitem ) {
|
68 |
+
$class = ( ' class="alternate"' == $class ) ? '' : ' class="alternate"';
|
69 |
+
echo '<tr' . $class . '>' . "\n";
|
70 |
+
foreach ($user_roles as $role) {
|
71 |
+
if ( isset($disabled_submenu_[$role]) )
|
72 |
+
$checked_user_role_[$role] = ( in_array($subitem['id'], $disabled_submenu_[$role] ) ) ? ' checked="checked"' : '';
|
73 |
+
}
|
74 |
+
echo '<td> — ' . $subitem['title'] . ' <span style="color:#ccc; font-weight: 400;">(' . $subitem['id'] . ')</span> </td>' . "\n";
|
75 |
+
foreach ($user_roles as $role) {
|
76 |
+
echo '<td class="num">
|
77 |
+
<input id="check_menu'. $role.$x .'" type="checkbox"' . $checked_user_role_[$role] . ' name="mw_adminimize_disabled_submenu_'. $role .'_items[]" value="' . $subitem['id'] . '" />' .
|
78 |
+
'</td>' . "\n";
|
79 |
+
}
|
80 |
+
echo '</tr>' . "\n";
|
81 |
+
$x++;
|
82 |
+
}
|
83 |
+
$x++;
|
84 |
+
}
|
85 |
+
}
|
86 |
+
?>
|
87 |
+
</tbody>
|
88 |
+
</table>
|
89 |
+
|
90 |
+
<p id="submitbutton">
|
91 |
+
<input class="button button-primary" type="submit" name="_mw_adminimize_save" value="<?php _e('Update Options', FB_ADMINIMIZE_TEXTDOMAIN ); ?> »" /><input type="hidden" name="page_options" value="'dofollow_timeout'" />
|
92 |
+
</p>
|
93 |
+
<p><a class="alignright button" href="javascript:void(0);" onclick="window.scrollTo(0,0);" style="margin:3px 0 0 30px;"><?php _e('scroll to top', FB_ADMINIMIZE_TEXTDOMAIN); ?></a><br class="clear" /></p>
|
94 |
+
|
95 |
+
</div>
|
96 |
+
</div>
|
97 |
+
</div>
|
98 |
+
|
99 |
+
<?php
|
100 |
+
//$wp_admin_bar->remove_menu('edit-my-profile');
|
101 |
+
}
|
102 |
+
add_action('wp_before_admin_bar_render', '_fb_filter_admin_bar');
|
103 |
+
|
104 |
+
?>
|
inc-options/backend_options.php
CHANGED
@@ -22,6 +22,27 @@ if ( ! function_exists( 'add_action' ) ) {
|
|
22 |
<table summary="config" class="widefat">
|
23 |
<tbody>
|
24 |
<?php if ( function_exists('is_super_admin') ) { ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
<tr valign="top" class="form-invalid">
|
26 |
<td><?php _e('Exclude Super Admin', FB_ADMINIMIZE_TEXTDOMAIN ); ?></td>
|
27 |
<td>
|
22 |
<table summary="config" class="widefat">
|
23 |
<tbody>
|
24 |
<?php if ( function_exists('is_super_admin') ) { ?>
|
25 |
+
<!--
|
26 |
+
<tr valign="top" class="form-invalid">
|
27 |
+
<td><?php _e( 'Use Global Settings', FB_ADMINIMIZE_TEXTDOMAIN ); ?></td>
|
28 |
+
<td>
|
29 |
+
<?php
|
30 |
+
$mw_adminimize_use_global = '0';
|
31 |
+
$select_active = '';
|
32 |
+
$message = '';
|
33 |
+
if ( is_multisite() && is_plugin_active_for_network( MW_ADMIN_FILE ) ) {
|
34 |
+
$mw_adminimize_use_global = 1;
|
35 |
+
$select_active = ' disabled="disabled"';
|
36 |
+
$message = __( 'The plugin is active in multiste.', FB_ADMINIMIZE_TEXTDOMAIN );
|
37 |
+
}
|
38 |
+
$mw_adminimize_use_global = get_option( 'mw_adminimize_use_global' ); ?>
|
39 |
+
<select name="_mw_adminimize_use_global"<?php echo $select_active; ?>>
|
40 |
+
<option value="0"<?php if ( '0' === $mw_adminimize_use_global ) { echo ' selected="selected"'; } ?>><?php _e( 'False', FB_ADMINIMIZE_TEXTDOMAIN ); ?></option>
|
41 |
+
<option value="1"<?php if ( '1' === $mw_adminimize_use_global ) { echo ' selected="selected"'; } ?>><?php _e('True', FB_ADMINIMIZE_TEXTDOMAIN ); ?></option>
|
42 |
+
</select> <?php _e('Use the settings global in your Multisite network.', FB_ADMINIMIZE_TEXTDOMAIN ); echo ' ' . $message; ?>
|
43 |
+
</td>
|
44 |
+
</tr>
|
45 |
+
-->
|
46 |
<tr valign="top" class="form-invalid">
|
47 |
<td><?php _e('Exclude Super Admin', FB_ADMINIMIZE_TEXTDOMAIN ); ?></td>
|
48 |
<td>
|
inc-options/minimenu.php
CHANGED
@@ -1,17 +1,21 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* @package
|
4 |
-
* @subpackage
|
5 |
-
* @author
|
6 |
*/
|
7 |
if ( ! function_exists( 'add_action' ) ) {
|
8 |
echo "Hi there! I'm just a part of plugin, not much I can do when called directly.";
|
9 |
exit;
|
10 |
}
|
|
|
|
|
|
|
|
|
11 |
?>
|
12 |
|
13 |
-
<?php screen_icon('
|
14 |
-
<h2><?php _e('Adminimize', FB_ADMINIMIZE_TEXTDOMAIN ); ?></h2>
|
15 |
<br class="clear" />
|
16 |
<div id="poststuff" class="ui-sortable meta-box-sortables">
|
17 |
<div id="minimeu" class="postbox ">
|
@@ -84,17 +88,23 @@ if ( ! function_exists( 'add_action' ) ) {
|
|
84 |
<div class="inside">
|
85 |
<p><?php echo _mw_adminimize_get_plugin_data( 'Title' ); echo ' '; _e( 'Version', FB_ADMINIMIZE_TEXTDOMAIN ); echo ' '; echo _mw_adminimize_get_plugin_data( 'Version' ) ?></p>
|
86 |
<p><?php echo _mw_adminimize_get_plugin_data( 'Description' ) ?></p>
|
87 |
-
<
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
<
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
98 |
<p>© Copyright 2008 - <?php echo date('Y'); ?> <a href="http://bueltge.de">Frank Bültge</a></p>
|
99 |
<p><a class="alignright button" href="javascript:void(0);" onclick="window.scrollTo(0,0);" style="margin:3px 0 0 30px;"><?php _e('scroll to top', FB_ADMINIMIZE_TEXTDOMAIN); ?></a><br class="clear" /></p>
|
100 |
</div>
|
1 |
<?php
|
2 |
/**
|
3 |
+
* @package Adminimize
|
4 |
+
* @subpackage Menu on settings page
|
5 |
+
* @author Frank Bültge
|
6 |
*/
|
7 |
if ( ! function_exists( 'add_action' ) ) {
|
8 |
echo "Hi there! I'm just a part of plugin, not much I can do when called directly.";
|
9 |
exit;
|
10 |
}
|
11 |
+
|
12 |
+
$screen = get_current_screen();
|
13 |
+
if ( is_multisite() && is_plugin_active_for_network( plugin_basename( MW_ADMIN_FILE ) ) )
|
14 |
+
$message = __( 'Network' );
|
15 |
?>
|
16 |
|
17 |
+
<?php screen_icon('options-general'); ?>
|
18 |
+
<h2><?php _e('Adminimize', FB_ADMINIMIZE_TEXTDOMAIN ); echo ' ' . $message; ?></h2>
|
19 |
<br class="clear" />
|
20 |
<div id="poststuff" class="ui-sortable meta-box-sortables">
|
21 |
<div id="minimeu" class="postbox ">
|
88 |
<div class="inside">
|
89 |
<p><?php echo _mw_adminimize_get_plugin_data( 'Title' ); echo ' '; _e( 'Version', FB_ADMINIMIZE_TEXTDOMAIN ); echo ' '; echo _mw_adminimize_get_plugin_data( 'Version' ) ?></p>
|
90 |
<p><?php echo _mw_adminimize_get_plugin_data( 'Description' ) ?></p>
|
91 |
+
<ul>
|
92 |
+
<li><?php _e( 'Further information: Visit the <a href="http://wordpress.org/extend/plugins/adminimize/">plugin homepage</a> for further information or to grab the latest version of this plugin. Also see the <a href="http://wordpress.org/support/plugin/adminimize">support forum</a> for questions.', FB_ADMINIMIZE_TEXTDOMAIN ); ?></li>
|
93 |
+
<li>
|
94 |
+
<?php _e( 'You want to thank me? Visit my <a href="http://bueltge.de/wunschliste/">wishlist</a> or donate.', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
|
95 |
+
<span>
|
96 |
+
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
|
97 |
+
<input type="hidden" name="cmd" value="_s-xclick">
|
98 |
+
<input type="hidden" name="hosted_button_id" value="4578111">
|
99 |
+
<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif" border="0" name="submit" alt="<?php _e( 'PayPal - The safer, easier way to pay online!', FB_ADMINIMIZE_TEXTDOMAIN ); ?>">
|
100 |
+
<img alt="" border="0" src="https://www.paypal.com/de_DE/i/scr/pixel.gif" width="1" height="1">
|
101 |
+
</form>
|
102 |
+
</li>
|
103 |
+
</ul>
|
104 |
+
<div class="form-invalid" style="padding:.3em 1em;">
|
105 |
+
<p><span style="font-size: 35px; float: left; margin: 10px 3px 0 0;">☝</span><?php _e( 'Please note: The Adminimize settings page ignores the Menu Options below and displays the menu with all entries.<br /><span style="font-weight: 300;">To view your changes to the menu you need to navigate away from the Adminimize settings page.</span>', FB_ADMINIMIZE_TEXTDOMAIN ); ?></p>
|
106 |
+
<p><?php _e( 'You have to activated the Plugin for your Multisite Network. Your settings works now on all blogs in the network. Please set the settings only in one blog, there you have all active menu items and plugins. If you update the settings then write the plugin new settings in dependence of the blog where you put, save the settings.', FB_ADMINIMIZE_TEXTDOMAIN ); ?></p>
|
107 |
+
</div>
|
108 |
<p>© Copyright 2008 - <?php echo date('Y'); ?> <a href="http://bueltge.de">Frank Bültge</a></p>
|
109 |
<p><a class="alignright button" href="javascript:void(0);" onclick="window.scrollTo(0,0);" style="margin:3px 0 0 30px;"><?php _e('scroll to top', FB_ADMINIMIZE_TEXTDOMAIN); ?></a><br class="clear" /></p>
|
110 |
</div>
|
inc-options/write_post_options.php
CHANGED
@@ -48,7 +48,7 @@ if ( ! function_exists( 'add_action' ) ) {
|
|
48 |
'#slugdiv,#edit-slug-box',
|
49 |
'#misc-publishing-actions',
|
50 |
'#commentstatusdiv',
|
51 |
-
'#editor-toolbar #edButtonHTML, #quicktags, #content-html'
|
52 |
);
|
53 |
|
54 |
$post_type = 'post';
|
48 |
'#slugdiv,#edit-slug-box',
|
49 |
'#misc-publishing-actions',
|
50 |
'#commentstatusdiv',
|
51 |
+
'#editor-toolbar #edButtonHTML, #quicktags, #content-html, .wp-switch-editor.switch-html'
|
52 |
);
|
53 |
|
54 |
$post_type = 'post';
|
inc-setup/dashboard.php
CHANGED
@@ -15,12 +15,20 @@ add_action( 'wp_dashboard_setup', '_mw_adminimize_dashboard_setup', 99 );
|
|
15 |
function _mw_adminimize_dashboard_setup () {
|
16 |
global $wp_meta_boxes;
|
17 |
|
18 |
-
|
19 |
-
|
|
|
|
|
20 |
|
|
|
21 |
$adminimizeoptions['mw_adminimize_dashboard_widgets'] = $widgets;
|
22 |
-
|
23 |
-
|
|
|
|
|
|
|
|
|
|
|
24 |
|
25 |
// exclude super admin
|
26 |
if ( _mw_adminimize_exclude_super_admin() )
|
15 |
function _mw_adminimize_dashboard_setup () {
|
16 |
global $wp_meta_boxes;
|
17 |
|
18 |
+
if ( is_multisite() && is_plugin_active_for_network( MW_ADMIN_FILE ) )
|
19 |
+
$adminimizeoptions = get_site_option( 'mw_adminimize' );
|
20 |
+
else
|
21 |
+
$adminimizeoptions = get_option( 'mw_adminimize' );
|
22 |
|
23 |
+
$widgets = _mw_adminimize_get_dashboard_widgets();
|
24 |
$adminimizeoptions['mw_adminimize_dashboard_widgets'] = $widgets;
|
25 |
+
|
26 |
+
if ( current_user_can( 'manage_options' ) ) {
|
27 |
+
if ( is_multisite() && is_plugin_active_for_network( MW_ADMIN_FILE ) )
|
28 |
+
update_site_option( 'mw_adminimize', $adminimizeoptions );
|
29 |
+
else
|
30 |
+
update_option( 'mw_adminimize', $adminimizeoptions );
|
31 |
+
}
|
32 |
|
33 |
// exclude super admin
|
34 |
if ( _mw_adminimize_exclude_super_admin() )
|
languages/adminimize-de_DE.mo
CHANGED
Binary file
|
languages/adminimize-de_DE.po
CHANGED
@@ -2,1102 +2,1097 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Adminimize\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
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 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
-
"X-Poedit-Language: \n"
|
14 |
-
"X-Poedit-Country: \n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2
|
17 |
-
"X-Poedit-Basepath:
|
18 |
-
"X-
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
-
"X-Textdomain-Support: yes"
|
21 |
|
|
|
22 |
#: adminimize.php:127
|
23 |
-
#@ adminimize
|
24 |
msgid "Unknown error."
|
25 |
msgstr "Unbekannter Fehler."
|
26 |
|
|
|
27 |
#: adminimize.php:136
|
28 |
-
#@ adminimize
|
29 |
msgid "The updates were saved."
|
30 |
msgstr "Die Einstellungen wurden gespeichert"
|
31 |
|
|
|
32 |
#: adminimize.php:137
|
33 |
-
#@ adminimize
|
34 |
msgid "You have not enough rights to edit entries in the database."
|
35 |
msgstr "Du hast nicht ausreichend Rechte um diese Aktion durchzuführen!"
|
36 |
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
#: adminimize.php:139
|
38 |
-
#@ adminimize
|
39 |
msgid "All entries in the database were deleted."
|
40 |
msgstr "Die Einstellungen wurde gelöscht!"
|
41 |
|
|
|
42 |
#: adminimize.php:140
|
43 |
-
#@ adminimize
|
44 |
msgid "Set the checkbox on deinstall-button."
|
45 |
msgstr "Checkbox setzen, wenn wirklich deinstalliert werden soll!"
|
46 |
|
|
|
47 |
#: adminimize.php:141
|
48 |
-
#@ adminimize
|
49 |
msgid "Can't load menu and submenu."
|
50 |
msgstr "Menu und Submenu können nicht geladen werden!"
|
51 |
|
|
|
52 |
#: adminimize.php:142
|
53 |
-
#@ adminimize
|
54 |
msgid "Backend-Theme was activated!"
|
55 |
msgstr "Backend-Theme wurde zugewiesen!"
|
56 |
|
|
|
57 |
#: adminimize.php:143
|
58 |
-
#@ adminimize
|
59 |
msgid "Load user data to themes was successful."
|
60 |
msgstr "Das Laden der User-Daten zum Theme war erfolgreich."
|
61 |
|
62 |
-
|
|
|
|
|
|
|
63 |
#: inc-options/links_options.php:52
|
64 |
#: inc-options/write_cp_options.php:103
|
65 |
-
#: inc-options/write_post_options.php:97
|
66 |
-
#@ default
|
67 |
-
#@ adminimize
|
68 |
msgid "Categories"
|
69 |
msgstr "Kategorien"
|
70 |
|
71 |
-
|
72 |
-
#: adminimize.php:
|
73 |
-
|
74 |
msgid "+ Add New Category"
|
75 |
msgstr "+ Add New Category"
|
76 |
|
77 |
-
|
78 |
-
#: adminimize.php:
|
79 |
-
|
80 |
msgid "New category name"
|
81 |
msgstr "New category name"
|
82 |
|
83 |
-
|
84 |
-
#: adminimize.php:
|
85 |
-
|
86 |
msgid "Parent category"
|
87 |
msgstr "Parent category"
|
88 |
|
89 |
-
|
90 |
-
#: adminimize.php:
|
91 |
-
|
92 |
msgid "Add"
|
93 |
msgstr "Add"
|
94 |
|
95 |
-
|
96 |
-
|
|
|
97 |
#: inc-options/write_post_options.php:98
|
98 |
-
|
99 |
-
#@ adminimize
|
100 |
msgid "Add New Category"
|
101 |
msgstr "Add New Category"
|
102 |
|
103 |
-
|
104 |
-
#:
|
105 |
-
#:
|
106 |
-
#: inc-options/write_post_options.php:131
|
107 |
-
#@ adminimize
|
108 |
-
#@ default
|
109 |
-
msgid "Tags"
|
110 |
-
msgstr "Tags"
|
111 |
-
|
112 |
-
#: adminimize.php:607
|
113 |
-
#: adminimize.php:610
|
114 |
-
#@ default
|
115 |
msgid "Dashboard"
|
116 |
msgstr "Dashboard"
|
117 |
|
118 |
-
|
119 |
-
#: adminimize.php:
|
120 |
-
#: adminimize.php:
|
121 |
-
#: adminimize.php:
|
122 |
-
#: adminimize.php:
|
123 |
-
#:
|
124 |
-
#: inc-setup/admin-bar.php:81
|
125 |
-
#: inc-setup/admin-bar.php:250
|
126 |
-
#@ default
|
127 |
msgid "Log Out"
|
128 |
msgstr "Log Out"
|
129 |
|
130 |
-
|
131 |
-
|
132 |
-
msgid "Version"
|
133 |
-
msgstr "Version"
|
134 |
-
|
135 |
-
#: inc-options/write_cp_options.php:133
|
136 |
-
#: inc-options/write_page_options.php:132
|
137 |
-
#: inc-options/write_post_options.php:125
|
138 |
-
#@ default
|
139 |
-
msgid "Author"
|
140 |
-
msgstr "Author"
|
141 |
-
|
142 |
-
#: adminimize.php:1099
|
143 |
-
#@ default
|
144 |
msgid "Settings"
|
145 |
msgstr "Settings"
|
146 |
|
147 |
-
|
148 |
-
#: adminimize.php:
|
149 |
-
#: adminimize.php:1118
|
150 |
-
#: inc-options/minimenu.php:14
|
151 |
-
#@ adminimize
|
152 |
-
msgid "Adminimize"
|
153 |
-
msgstr "Adminimize"
|
154 |
-
|
155 |
-
#: adminimize.php:1117
|
156 |
-
#@ adminimize
|
157 |
msgid "Adminimize Options"
|
158 |
msgstr "Adminimize Einstellungen"
|
159 |
|
160 |
-
|
161 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
msgid "Cheatin’ uh?"
|
163 |
msgstr "Cheatin’ uh?"
|
164 |
|
165 |
-
|
166 |
-
#: inc-options/
|
167 |
-
#: inc-options/deinstall_options.php:14
|
168 |
-
#: inc-options/global_options.php:15
|
169 |
-
#: inc-options/im_export_options.php:14
|
170 |
-
#: inc-options/links_options.php:15
|
171 |
#: inc-options/menu_options.php:15
|
172 |
-
#: inc-options/
|
173 |
-
#: inc-options/minimenu.php:82
|
174 |
-
#: inc-options/theme_options.php:14
|
175 |
#: inc-options/wp_nav_menu_options.php:14
|
|
|
|
|
|
|
176 |
#: inc-options/write_cp_options.php:20
|
|
|
|
|
|
|
|
|
|
|
177 |
#: inc-options/write_page_options.php:14
|
178 |
-
#: inc-options/write_post_options.php:15
|
179 |
-
#@ default
|
180 |
msgid "Click to toggle"
|
181 |
msgstr "Zum Umschalten klicken"
|
182 |
|
183 |
-
|
184 |
-
#: inc-options/
|
185 |
-
|
186 |
-
|
187 |
-
|
|
|
188 |
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
193 |
|
194 |
-
|
195 |
-
|
196 |
-
#: inc-options/
|
197 |
-
#: inc-options/
|
198 |
-
#: inc-options/
|
199 |
-
#: inc-options/
|
200 |
-
|
201 |
-
|
202 |
-
#: inc-options/backend_options.php:114
|
203 |
-
#: inc-options/backend_options.php:124
|
204 |
-
#: inc-options/backend_options.php:153
|
205 |
-
#@ adminimize
|
206 |
-
msgid "Default"
|
207 |
-
msgstr "Standard"
|
208 |
|
209 |
-
|
210 |
-
|
211 |
-
#: inc-options/
|
212 |
-
|
213 |
-
|
214 |
-
|
|
|
|
|
|
|
215 |
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
|
|
220 |
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
|
|
|
|
225 |
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
|
|
|
|
|
|
|
|
230 |
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
|
|
|
|
|
|
235 |
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
|
|
240 |
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
|
|
245 |
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
|
|
|
|
250 |
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
|
|
|
|
255 |
|
256 |
-
|
257 |
-
#: inc-options/
|
258 |
-
#: inc-options/
|
259 |
-
#: inc-options/
|
260 |
-
|
261 |
-
|
262 |
-
#@ adminimize
|
263 |
-
msgid "Activate"
|
264 |
-
msgstr "Aktiv"
|
265 |
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
|
|
|
|
270 |
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
|
|
275 |
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
|
|
|
|
|
|
280 |
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
|
|
|
|
|
|
285 |
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
|
|
|
|
|
|
290 |
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
|
|
295 |
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
|
|
|
|
300 |
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
305 |
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
|
|
|
|
310 |
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
|
|
|
|
315 |
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
|
|
|
|
320 |
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
|
|
|
|
325 |
|
326 |
-
|
327 |
-
#: inc-options/
|
328 |
-
#: inc-options/
|
329 |
-
|
330 |
-
|
331 |
-
#: inc-options/wp_nav_menu_options.php:147
|
332 |
-
#: inc-options/write_cp_options.php:243
|
333 |
-
#: inc-options/write_page_options.php:211
|
334 |
-
#: inc-options/write_post_options.php:207
|
335 |
-
#@ adminimize
|
336 |
-
msgid "Update Options"
|
337 |
-
msgstr "Einstellungen aktualisieren"
|
338 |
-
|
339 |
-
#: inc-options/global_options.php:16
|
340 |
-
#: inc-options/minimenu.php:29
|
341 |
-
#@ adminimize
|
342 |
-
msgid "Global options"
|
343 |
-
msgstr "Globale Einstellungen"
|
344 |
-
|
345 |
-
#: inc-options/dashboard_options.php:33
|
346 |
-
#: inc-options/dashboard_options.php:97
|
347 |
-
#: inc-options/global_options.php:23
|
348 |
-
#: inc-options/global_options.php:97
|
349 |
-
#: inc-options/links_options.php:23
|
350 |
-
#: inc-options/links_options.php:101
|
351 |
-
#: inc-options/wp_nav_menu_options.php:22
|
352 |
-
#: inc-options/wp_nav_menu_options.php:122
|
353 |
-
#: inc-options/write_cp_options.php:208
|
354 |
-
#: inc-options/write_page_options.php:186
|
355 |
-
#: inc-options/write_post_options.php:182
|
356 |
-
#@ adminimize
|
357 |
-
msgid "Option"
|
358 |
-
msgstr "Einstellung"
|
359 |
-
|
360 |
-
#: inc-options/dashboard_options.php:36
|
361 |
-
#: inc-options/global_options.php:26
|
362 |
-
#: inc-options/links_options.php:26
|
363 |
-
#: inc-options/menu_options.php:26
|
364 |
-
#: inc-options/wp_nav_menu_options.php:25
|
365 |
-
#: inc-options/write_cp_options.php:33
|
366 |
-
#: inc-options/write_page_options.php:25
|
367 |
-
#: inc-options/write_post_options.php:26
|
368 |
-
#@ adminimize
|
369 |
-
msgid "Deactivate for"
|
370 |
-
msgstr "Deaktiviere für"
|
371 |
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
|
|
376 |
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
|
|
381 |
|
382 |
-
|
383 |
-
#: inc-options/
|
384 |
-
#: inc-options/write_cp_options.php:
|
385 |
-
#: inc-options/write_page_options.php:
|
386 |
-
|
387 |
-
|
388 |
-
#@ default
|
389 |
-
msgid "Screen Options"
|
390 |
-
msgstr "kontextabhängige Optionen"
|
391 |
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
|
|
396 |
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
|
|
|
|
401 |
|
402 |
-
|
403 |
-
#: inc-options/
|
404 |
-
|
405 |
-
|
406 |
-
msgstr "Deine eigenen Einstellungen"
|
407 |
|
408 |
-
|
409 |
-
#: inc-options/
|
410 |
#: inc-options/links_options.php:100
|
411 |
#: inc-options/wp_nav_menu_options.php:121
|
|
|
412 |
#: inc-options/write_cp_options.php:206
|
|
|
413 |
#: inc-options/write_page_options.php:185
|
414 |
-
#: inc-options/write_post_options.php:181
|
415 |
-
#@ adminimize
|
416 |
msgid "ID or class"
|
417 |
msgstr "ID oder Klasse"
|
418 |
|
419 |
-
|
420 |
-
#: inc-options/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
421 |
#: inc-options/links_options.php:107
|
422 |
#: inc-options/wp_nav_menu_options.php:128
|
|
|
423 |
#: inc-options/write_cp_options.php:215
|
|
|
424 |
#: inc-options/write_page_options.php:192
|
425 |
-
#: inc-options/write_post_options.php:188
|
426 |
-
#@ adminimize
|
427 |
msgid "It is possible to add your own IDs or classes from elements and tags. You can find IDs and classes with the FireBug Add-on for Firefox. Assign a value and the associate name per line."
|
428 |
msgstr "Es ist möglich, dass du eigene IDs und Klassen eines Elementes oder Tags hinzufügst. Du findest IDs und Klassen sehr einfach mit dem Firebug Add-on für den Firefox. Füge pro Zeile einen Wert und dazugehörigen Namen ein."
|
429 |
|
430 |
-
|
431 |
-
#: inc-options/
|
432 |
#: inc-options/links_options.php:113
|
433 |
#: inc-options/wp_nav_menu_options.php:134
|
|
|
434 |
#: inc-options/write_cp_options.php:225
|
|
|
435 |
#: inc-options/write_page_options.php:198
|
436 |
-
#: inc-options/write_post_options.php:194
|
437 |
-
#@ adminimize
|
438 |
msgid "Possible nomination for ID or class. Separate multiple nominations through a carriage return."
|
439 |
msgstr "Mögliche Benennung der ID oder Klasse. Trenne Werte durch eine neue Zeile."
|
440 |
|
441 |
-
|
442 |
-
#: inc-options/
|
443 |
#: inc-options/links_options.php:118
|
444 |
#: inc-options/wp_nav_menu_options.php:139
|
|
|
445 |
#: inc-options/write_cp_options.php:233
|
|
|
446 |
#: inc-options/write_page_options.php:203
|
447 |
-
#: inc-options/write_post_options.php:199
|
448 |
-
#@ adminimize
|
449 |
msgid "Possible IDs or classes. Separate multiple values through a carriage return."
|
450 |
msgstr "Mögliche IDs oder Klassen. Trenne Werte durch eine neue Zeile."
|
451 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
452 |
#: inc-options/menu_options.php:16
|
453 |
-
#: inc-options/minimenu.php:
|
454 |
-
#@ adminimize
|
455 |
msgid "Menu Options"
|
456 |
msgstr "Menu Einstellungen"
|
457 |
|
|
|
458 |
#: inc-options/menu_options.php:23
|
459 |
-
#@ adminimize
|
460 |
msgid "Menu options - Menu, <span style=\\\"font-weight: 400;\\\">Submenu</span>"
|
461 |
msgstr "Menu Einstellungen - Menu, <span style=\"font-weight: 400;\">Submenu</span>"
|
462 |
|
463 |
-
|
464 |
-
#: inc-options/
|
465 |
-
#: inc-options/
|
466 |
-
|
467 |
-
|
468 |
-
#@ default
|
469 |
-
msgid "Help"
|
470 |
-
msgstr "Hilfe"
|
471 |
-
|
472 |
-
#: inc-options/write_cp_options.php:100
|
473 |
-
#: inc-options/write_page_options.php:97
|
474 |
-
#: inc-options/write_post_options.php:95
|
475 |
-
#@ adminimize
|
476 |
-
msgid "Permalink"
|
477 |
-
msgstr "Permalink"
|
478 |
|
479 |
-
|
480 |
-
|
481 |
-
msgid "
|
482 |
-
msgstr "
|
483 |
|
484 |
-
|
485 |
-
#: inc-options/
|
486 |
-
|
487 |
-
msgid "
|
488 |
-
msgstr "
|
489 |
|
490 |
-
|
491 |
-
#: inc-options/
|
492 |
-
|
493 |
-
|
494 |
-
msgstr "Siehe auch, Tastaturkürzel"
|
495 |
|
496 |
-
|
497 |
-
#: inc-options/
|
498 |
-
|
499 |
-
|
500 |
-
msgid "h2: Advanced Options"
|
501 |
-
msgstr "h2: Erweiterte Einstellungen"
|
502 |
|
503 |
-
|
504 |
-
#: inc-options/
|
505 |
-
|
506 |
-
|
507 |
-
msgid "Media Buttons (all)"
|
508 |
-
msgstr "Media Buttons (alle)"
|
509 |
|
510 |
-
|
511 |
-
#: inc-options/
|
512 |
-
|
513 |
-
|
514 |
-
msgid "Word count"
|
515 |
-
msgstr "Word count"
|
516 |
|
517 |
-
|
518 |
-
#: inc-options/
|
519 |
-
|
520 |
-
|
521 |
-
msgstr "Titelform"
|
522 |
|
523 |
-
|
524 |
-
#: inc-options/
|
525 |
-
|
526 |
-
|
527 |
-
#@ adminimize
|
528 |
-
msgid "Publish Actions"
|
529 |
-
msgstr "Publish Actions"
|
530 |
|
531 |
-
|
532 |
-
#: inc-options/
|
533 |
-
|
534 |
-
|
535 |
-
#@ adminimize
|
536 |
-
msgid "Discussion"
|
537 |
-
msgstr "Kommentare"
|
538 |
|
539 |
-
|
540 |
-
#: inc-options/
|
541 |
-
|
542 |
-
|
543 |
-
msgstr "Artikelbild"
|
544 |
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
|
|
|
|
549 |
|
550 |
-
|
551 |
-
|
552 |
-
msgid "
|
553 |
-
msgstr "
|
554 |
|
555 |
-
|
556 |
-
|
557 |
-
msgid "
|
558 |
-
msgstr "
|
559 |
-
|
560 |
-
#: inc-options/write_page_options.php:103
|
561 |
-
#@ adminimize
|
562 |
-
msgid "Page Template"
|
563 |
-
msgstr "Seiten Template"
|
564 |
-
|
565 |
-
#: inc-options/write_page_options.php:104
|
566 |
-
#@ adminimize
|
567 |
-
msgid "Page Order"
|
568 |
-
msgstr "Reihenfolge"
|
569 |
-
|
570 |
-
#: inc-options/write_page_options.php:105
|
571 |
-
#@ default
|
572 |
-
msgid "Page Author"
|
573 |
-
msgstr "Seitenautor"
|
574 |
-
|
575 |
-
#: inc-options/write_page_options.php:106
|
576 |
-
#@ default
|
577 |
-
msgid "Page Revisions"
|
578 |
-
msgstr "Page Revisions"
|
579 |
-
|
580 |
-
#: inc-options/write_page_options.php:107
|
581 |
-
#@ adminimize
|
582 |
-
msgid "Related"
|
583 |
-
msgstr "Siehe auch"
|
584 |
-
|
585 |
-
#: inc-options/write_page_options.php:112
|
586 |
-
#@ adminimize
|
587 |
-
msgid "Page Slug"
|
588 |
-
msgstr "Titelform"
|
589 |
-
|
590 |
-
#: inc-options/write_page_options.php:124
|
591 |
-
#@ adminimize
|
592 |
-
msgid "Page Image"
|
593 |
-
msgstr "Artikelbild"
|
594 |
-
|
595 |
-
#: inc-options/menu_options.php:67
|
596 |
-
#: inc-options/menu_options.php:119
|
597 |
-
#@ adminimize
|
598 |
-
msgid "After activate the check box it heavy attitudes will change."
|
599 |
-
msgstr "Wenn die Checkbox aktiv ist, dann wird das Ändern von Einstellungen erschwert."
|
600 |
-
|
601 |
-
#: inc-options/menu_options.php:102
|
602 |
-
#@ default
|
603 |
-
msgid "Profile"
|
604 |
-
msgstr "Profile"
|
605 |
-
|
606 |
-
#: inc-options/minimenu.php:38
|
607 |
-
#: inc-options/write_post_options.php:16
|
608 |
-
#: inc-options/write_post_options.php:23
|
609 |
-
#@ adminimize
|
610 |
-
msgid "Write options - Post"
|
611 |
-
msgstr "Schreiben Einstellungen - Beiträge"
|
612 |
-
|
613 |
-
#: inc-options/write_post_options.php:181
|
614 |
-
#@ adminimize
|
615 |
-
msgid "Your own post options"
|
616 |
-
msgstr "Deine eigenen Beitrags-Einstellungen"
|
617 |
-
|
618 |
-
#: inc-options/minimenu.php:41
|
619 |
-
#: inc-options/write_page_options.php:15
|
620 |
-
#: inc-options/write_page_options.php:22
|
621 |
-
#@ adminimize
|
622 |
-
msgid "Write options - Page"
|
623 |
-
msgstr "Schreiben Einstellungen - Seiten"
|
624 |
-
|
625 |
-
#: inc-options/write_page_options.php:185
|
626 |
-
#@ adminimize
|
627 |
-
msgid "Your own page options"
|
628 |
-
msgstr "Deine eigenen Seiten-Einstellungen"
|
629 |
-
|
630 |
-
#: inc-options/links_options.php:16
|
631 |
-
#: inc-options/minimenu.php:61
|
632 |
-
#@ adminimize
|
633 |
-
msgid "Links options"
|
634 |
-
msgstr "Link Einstellungen"
|
635 |
-
|
636 |
-
#: inc-options/links_options.php:49
|
637 |
-
#@ default
|
638 |
-
msgid "Name"
|
639 |
-
msgstr "Name"
|
640 |
-
|
641 |
-
#: inc-options/links_options.php:50
|
642 |
-
#@ default
|
643 |
-
msgid "Web Address"
|
644 |
-
msgstr "Web-Adresse"
|
645 |
-
|
646 |
-
#: inc-options/links_options.php:51
|
647 |
-
#@ default
|
648 |
-
msgid "Description"
|
649 |
-
msgstr "Beschreibung"
|
650 |
-
|
651 |
-
#: inc-options/links_options.php:53
|
652 |
-
#@ default
|
653 |
-
msgid "Target"
|
654 |
-
msgstr "Target"
|
655 |
-
|
656 |
-
#: inc-options/links_options.php:54
|
657 |
-
#@ default
|
658 |
-
msgid "Link Relationship (XFN)"
|
659 |
-
msgstr "Link-Beziehungen (XFN)"
|
660 |
|
661 |
-
|
662 |
-
|
663 |
-
msgid "
|
664 |
-
msgstr "
|
665 |
|
666 |
-
|
667 |
#: inc-options/theme_options.php:15
|
668 |
#: inc-options/theme_options.php:100
|
669 |
-
|
670 |
msgid "Set Theme"
|
671 |
msgstr "Theme zuweisen"
|
672 |
|
|
|
673 |
#: inc-options/theme_options.php:22
|
674 |
-
#@ adminimize
|
675 |
msgid "For better peformance with many users on your blog; load only userlist, when you will change the theme options for users."
|
676 |
msgstr "Für eine bessere Performance bei vielen Usern in deinem Blog werden die Userdaten nur nach Aufforderung geladen."
|
677 |
|
|
|
678 |
#: inc-options/theme_options.php:25
|
679 |
-
#@ adminimize
|
680 |
msgid "Load User Data"
|
681 |
msgstr "Lade User Daten"
|
682 |
|
|
|
683 |
#: inc-options/theme_options.php:36
|
684 |
-
#@ default
|
685 |
msgid "User-ID"
|
686 |
msgstr "User-ID"
|
687 |
|
|
|
688 |
#: inc-options/theme_options.php:37
|
689 |
-
#@ default
|
690 |
msgid "Username"
|
691 |
msgstr "Benutzername"
|
692 |
|
|
|
693 |
#: inc-options/theme_options.php:38
|
694 |
-
#@ default
|
695 |
msgid "Display name publicly as"
|
696 |
msgstr "Name im Blog"
|
697 |
|
|
|
698 |
#: inc-options/theme_options.php:39
|
699 |
-
#@ default
|
700 |
msgid "Admin-Color Scheme"
|
701 |
msgstr "Admin-Color Scheme"
|
702 |
|
|
|
703 |
#: inc-options/theme_options.php:40
|
704 |
-
#@ default
|
705 |
msgid "User Level"
|
706 |
msgstr "User Level"
|
707 |
|
|
|
708 |
#: inc-options/theme_options.php:41
|
709 |
-
#@ default
|
710 |
msgid "Role"
|
711 |
msgstr "Rolle"
|
712 |
|
|
|
713 |
#: inc-options/deinstall_options.php:15
|
714 |
-
#: inc-options/minimenu.php:
|
715 |
-
#@ adminimize
|
716 |
msgid "Deinstall Options"
|
717 |
msgstr "Einstellungen deinstallieren"
|
718 |
|
|
|
719 |
#: inc-options/deinstall_options.php:18
|
720 |
-
#@ adminimize
|
721 |
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."
|
722 |
msgstr "Nutze diese Option, um die Einstellungen für das Plugin in der Datenbank zu löschen. Das Plugin entfernt die Einträge <strong>nicht</strong>, wenn es deaktiviert wird!"
|
723 |
|
|
|
724 |
#: inc-options/deinstall_options.php:22
|
725 |
-
#@ adminimize
|
726 |
msgid "Delete Options"
|
727 |
msgstr "Einstellungen Löschen"
|
728 |
|
729 |
-
|
730 |
-
#: inc-options/
|
731 |
-
|
732 |
-
msgid "
|
733 |
-
msgstr "
|
734 |
-
|
735 |
-
#: inc-options/minimenu.php:94
|
736 |
-
#@ adminimize
|
737 |
-
msgid "PayPal - The safer, easier way to pay online!"
|
738 |
-
msgstr "PayPal - Der sichere und einfache Weg zu zahlen!"
|
739 |
|
740 |
-
|
741 |
-
|
742 |
-
msgid "
|
743 |
-
msgstr "
|
744 |
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
|
|
749 |
|
750 |
-
|
751 |
-
#: inc-options/
|
752 |
-
|
753 |
-
|
754 |
-
|
|
|
755 |
|
756 |
-
|
757 |
-
|
758 |
-
msgid "
|
759 |
-
msgstr "
|
760 |
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
|
|
765 |
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
|
|
770 |
|
771 |
-
|
772 |
-
|
773 |
-
msgid "
|
774 |
-
msgstr "
|
775 |
|
776 |
-
|
777 |
-
|
778 |
-
msgid "
|
779 |
-
msgstr "
|
780 |
|
781 |
-
|
782 |
-
|
783 |
-
msgid "
|
784 |
-
msgstr "
|
785 |
|
786 |
-
|
787 |
-
#: inc-options/
|
788 |
-
|
789 |
-
|
790 |
-
#: inc-options/im_export_options.php:41
|
791 |
-
#: inc-options/links_options.php:129
|
792 |
-
#: inc-options/menu_options.php:157
|
793 |
-
#: inc-options/minimenu.php:99
|
794 |
-
#: inc-options/theme_options.php:105
|
795 |
-
#: inc-options/wp_nav_menu_options.php:149
|
796 |
-
#: inc-options/write_cp_options.php:248
|
797 |
-
#: inc-options/write_page_options.php:213
|
798 |
-
#: inc-options/write_post_options.php:209
|
799 |
-
#@ adminimize
|
800 |
-
msgid "scroll to top"
|
801 |
-
msgstr "Nach oben"
|
802 |
|
803 |
-
|
804 |
-
|
805 |
-
msgid "
|
806 |
-
msgstr "
|
807 |
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
|
|
|
812 |
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
|
|
817 |
|
818 |
-
#: inc-options/backend_options.php:
|
819 |
-
|
820 |
-
|
821 |
-
msgstr "Stellt in die Meta Box der Kategorien in voller Höhe dar, kein Scrollbar und kein Leerraum."
|
822 |
|
823 |
-
#: inc-options/backend_options.php:
|
824 |
-
|
825 |
-
|
826 |
-
msgstr "Im Footer kann ein Hinweis auf die aktive Veränderung des Standard-Layout gesetzt werden, (x)HTML erlaubt."
|
827 |
|
828 |
-
#: inc-options/backend_options.php:
|
829 |
-
|
830 |
-
|
831 |
-
msgstr "Dashboard inaktiv, Weiterleitung nach"
|
832 |
|
833 |
-
#: inc-options/
|
834 |
-
|
835 |
-
|
836 |
-
#@ default
|
837 |
-
#@ adminimize
|
838 |
-
msgid "HTML Editor Button"
|
839 |
-
msgstr "HTML Editor Button"
|
840 |
|
841 |
-
|
842 |
-
|
843 |
-
msgid "
|
844 |
-
msgstr "
|
845 |
|
846 |
-
|
847 |
-
#:
|
848 |
-
|
849 |
-
|
850 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
851 |
|
852 |
-
|
853 |
-
#:
|
854 |
-
|
855 |
-
|
856 |
-
|
|
|
|
|
|
|
|
|
857 |
|
858 |
-
|
859 |
-
#:
|
860 |
-
|
861 |
-
|
862 |
-
msgstr ""
|
863 |
|
864 |
-
|
865 |
-
#:
|
866 |
-
|
867 |
-
|
868 |
-
msgstr ""
|
869 |
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
|
|
|
|
874 |
|
875 |
-
|
876 |
-
|
877 |
-
msgid "
|
878 |
-
msgstr "
|
879 |
|
880 |
-
|
881 |
-
#: inc-options/
|
882 |
-
|
883 |
-
|
884 |
-
msgstr "Title"
|
885 |
|
886 |
-
|
887 |
-
|
888 |
-
msgid "
|
889 |
-
msgstr "
|
890 |
|
891 |
-
|
892 |
-
|
893 |
-
msgid "
|
894 |
-
msgstr "
|
895 |
|
896 |
-
|
897 |
-
|
898 |
-
msgid "
|
899 |
-
msgstr "
|
900 |
|
901 |
-
|
902 |
-
|
903 |
-
msgid "
|
904 |
-
msgstr "
|
905 |
|
906 |
-
|
907 |
-
|
908 |
-
msgid "
|
909 |
-
msgstr "
|
910 |
|
911 |
-
|
912 |
-
|
913 |
-
msgid "
|
914 |
-
msgstr "
|
915 |
|
916 |
-
|
917 |
-
#: inc-options/
|
918 |
-
|
919 |
-
|
920 |
-
msgid "Theme Locations"
|
921 |
-
msgstr "Anordnung im Theme"
|
922 |
|
923 |
-
|
924 |
-
|
925 |
-
msgid "
|
926 |
-
msgstr "
|
927 |
|
928 |
-
|
929 |
-
|
930 |
-
msgid "
|
931 |
-
msgstr "
|
932 |
|
933 |
-
|
934 |
-
|
935 |
-
msgid "
|
936 |
-
msgstr "
|
937 |
|
938 |
-
|
939 |
-
#: inc-options/
|
940 |
-
|
941 |
-
|
942 |
-
msgid "Messages"
|
943 |
-
msgstr "Mitteilungen"
|
944 |
|
945 |
-
|
946 |
-
#: inc-options/
|
947 |
-
|
948 |
-
|
949 |
-
msgid "Quick Edit Link"
|
950 |
-
msgstr "QuickEdit Link"
|
951 |
|
952 |
-
|
953 |
-
#: inc-options/
|
954 |
-
|
955 |
-
|
956 |
-
#: inc-options/write_page_options.php:129
|
957 |
-
#: inc-options/write_page_options.php:134
|
958 |
-
#: inc-options/write_page_options.php:137
|
959 |
-
#: inc-options/write_post_options.php:123
|
960 |
-
#: inc-options/write_post_options.php:127
|
961 |
-
#: inc-options/write_post_options.php:130
|
962 |
-
#: inc-options/write_post_options.php:133
|
963 |
-
#@ adminimize
|
964 |
-
msgid "QE"
|
965 |
-
msgstr "QE"
|
966 |
|
967 |
-
|
968 |
-
#: inc-options/
|
969 |
-
|
970 |
-
|
971 |
-
msgid "Inline Edit Left"
|
972 |
-
msgstr "Inline Edit Links"
|
973 |
|
974 |
-
|
975 |
-
#: inc-options/
|
976 |
-
|
977 |
-
|
978 |
-
msgid "All Labels"
|
979 |
-
msgstr "Alle labels"
|
980 |
|
981 |
-
|
982 |
-
#: inc-options/
|
983 |
-
|
984 |
-
|
985 |
-
#@ adminimize
|
986 |
-
msgid "Date"
|
987 |
-
msgstr "Datum"
|
988 |
|
989 |
-
|
990 |
-
#: inc-options/
|
991 |
-
|
992 |
-
|
993 |
-
msgid "Password and Private"
|
994 |
-
msgstr "Passwort und Privat-Flag"
|
995 |
|
996 |
-
|
997 |
-
#: inc-options/
|
998 |
-
|
999 |
-
|
1000 |
-
msgid "Inline Edit Right"
|
1001 |
-
msgstr "Inline Edit rechts"
|
1002 |
|
1003 |
-
|
1004 |
-
|
1005 |
-
msgid "
|
1006 |
-
msgstr "
|
1007 |
|
1008 |
-
|
1009 |
-
|
1010 |
-
msgid "
|
1011 |
-
msgstr "
|
1012 |
|
1013 |
-
|
1014 |
-
#: inc-options/
|
1015 |
-
|
1016 |
-
|
1017 |
-
msgid "Cancel/Save Button"
|
1018 |
-
msgstr "Abbrechen/Aktualisieren Button"
|
1019 |
|
1020 |
-
|
1021 |
-
#: inc-options/
|
1022 |
-
|
1023 |
-
|
1024 |
-
msgstr "Inline Edit mitte"
|
1025 |
|
1026 |
-
|
1027 |
-
#: inc-options/
|
1028 |
-
|
1029 |
-
|
1030 |
-
msgstr "Kategorien Title"
|
1031 |
|
1032 |
-
|
1033 |
-
#: inc-options/
|
1034 |
-
|
1035 |
-
|
1036 |
-
msgstr "Kategorien Liste"
|
1037 |
|
1038 |
-
|
1039 |
-
#: inc-options/
|
1040 |
-
|
1041 |
-
|
1042 |
-
msgstr "Status, Sticky"
|
1043 |
|
1044 |
-
|
1045 |
-
|
1046 |
-
msgid "
|
1047 |
-
msgstr "
|
1048 |
|
1049 |
-
|
1050 |
-
#: inc-options/
|
1051 |
-
#: inc-options/
|
1052 |
-
|
1053 |
-
|
1054 |
-
msgstr "Einstellungen Schreiben"
|
1055 |
|
1056 |
-
|
1057 |
-
|
1058 |
-
msgid "
|
1059 |
-
msgstr "
|
1060 |
|
1061 |
-
|
1062 |
-
|
1063 |
-
|
1064 |
-
|
1065 |
-
msgstr "Deine eigenen %s Einstellungen"
|
1066 |
|
1067 |
-
|
1068 |
-
#: inc-options/
|
1069 |
-
|
1070 |
-
|
1071 |
-
msgstr "Dashboard Einstellungen"
|
1072 |
|
1073 |
-
|
1074 |
-
|
1075 |
-
msgid "
|
1076 |
-
msgstr "
|
1077 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1078 |
#: inc-options/minimenu.php:87
|
1079 |
-
|
1080 |
-
|
1081 |
-
msgstr "Weitere Informationen: Besuchen Sie die <a href=\"http://wordpress.org/extend/plugins/adminimize/\">Plugin Website</a> für weitere Informationen oder um die neueste Version des Plugins erhalten."
|
1082 |
|
1083 |
-
|
1084 |
-
|
1085 |
-
|
1086 |
-
|
|
|
|
|
1087 |
|
1088 |
-
|
1089 |
-
|
1090 |
-
msgid "
|
1091 |
-
msgstr ""
|
1092 |
|
1093 |
-
|
1094 |
-
#:
|
1095 |
-
|
1096 |
-
|
1097 |
-
msgstr ""
|
1098 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1099 |
#: inc-options/settings_notice.php:17
|
1100 |
-
#@ adminimize
|
1101 |
msgid "Please note: The Adminimize settings page ignores the Menu Options below and displays the menu with all entries.<br /><span style=\"font-weight: 300;\">To view your changes to the menu you need to navigate away from the Adminimize settings page.</span>"
|
1102 |
msgstr "Beachte: Die Einstellungen des Plugins ignorieren Menu Einstellungen um alle Einträge darzustellen.<br /><span style=\\\"font-weight: 300;\\\">Um die Einstellungen an deiner Rolle zu prüfen, musst du eine andere Seite im Backend aufrufen.</span>"
|
1103 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Adminimize\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-10-23 23:23+0100\n"
|
6 |
+
"PO-Revision-Date: 2012-10-23 23:27+0100\n"
|
7 |
"Last-Translator: Frank Bueltge <frank@bueltge.de>\n"
|
8 |
"Language-Team: Frank Bueltge <frank@bueltge.de>\n"
|
9 |
+
"Language: \n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
|
|
|
14 |
"X-Poedit-SourceCharset: utf-8\n"
|
15 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
16 |
+
"X-Poedit-Basepath: /var/www/wp-plugins/adminimize/\n"
|
17 |
+
"X-Textdomain-Support: yes\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
|
|
19 |
|
20 |
+
# @ adminimize
|
21 |
#: adminimize.php:127
|
|
|
22 |
msgid "Unknown error."
|
23 |
msgstr "Unbekannter Fehler."
|
24 |
|
25 |
+
# @ adminimize
|
26 |
#: adminimize.php:136
|
|
|
27 |
msgid "The updates were saved."
|
28 |
msgstr "Die Einstellungen wurden gespeichert"
|
29 |
|
30 |
+
# @ adminimize
|
31 |
#: adminimize.php:137
|
|
|
32 |
msgid "You have not enough rights to edit entries in the database."
|
33 |
msgstr "Du hast nicht ausreichend Rechte um diese Aktion durchzuführen!"
|
34 |
|
35 |
+
# @ adminimize
|
36 |
+
#: adminimize.php:138
|
37 |
+
msgid "All entries in the database were imported."
|
38 |
+
msgstr "Alle Einträge wurden in die Datenbank geschrieben."
|
39 |
+
|
40 |
+
# @ adminimize
|
41 |
#: adminimize.php:139
|
|
|
42 |
msgid "All entries in the database were deleted."
|
43 |
msgstr "Die Einstellungen wurde gelöscht!"
|
44 |
|
45 |
+
# @ adminimize
|
46 |
#: adminimize.php:140
|
|
|
47 |
msgid "Set the checkbox on deinstall-button."
|
48 |
msgstr "Checkbox setzen, wenn wirklich deinstalliert werden soll!"
|
49 |
|
50 |
+
# @ adminimize
|
51 |
#: adminimize.php:141
|
|
|
52 |
msgid "Can't load menu and submenu."
|
53 |
msgstr "Menu und Submenu können nicht geladen werden!"
|
54 |
|
55 |
+
# @ adminimize
|
56 |
#: adminimize.php:142
|
|
|
57 |
msgid "Backend-Theme was activated!"
|
58 |
msgstr "Backend-Theme wurde zugewiesen!"
|
59 |
|
60 |
+
# @ adminimize
|
61 |
#: adminimize.php:143
|
|
|
62 |
msgid "Load user data to themes was successful."
|
63 |
msgstr "Das Laden der User-Daten zum Theme war erfolgreich."
|
64 |
|
65 |
+
# @ default
|
66 |
+
# @ adminimize
|
67 |
+
#: adminimize.php:511
|
68 |
+
#: inc-options/write_post_options.php:97
|
69 |
#: inc-options/links_options.php:52
|
70 |
#: inc-options/write_cp_options.php:103
|
|
|
|
|
|
|
71 |
msgid "Categories"
|
72 |
msgstr "Kategorien"
|
73 |
|
74 |
+
# @ default
|
75 |
+
#: adminimize.php:517
|
76 |
+
#: adminimize.php:528
|
77 |
msgid "+ Add New Category"
|
78 |
msgstr "+ Add New Category"
|
79 |
|
80 |
+
# @ default
|
81 |
+
#: adminimize.php:519
|
82 |
+
#: adminimize.php:530
|
83 |
msgid "New category name"
|
84 |
msgstr "New category name"
|
85 |
|
86 |
+
# @ default
|
87 |
+
#: adminimize.php:520
|
88 |
+
#: adminimize.php:532
|
89 |
msgid "Parent category"
|
90 |
msgstr "Parent category"
|
91 |
|
92 |
+
# @ default
|
93 |
+
#: adminimize.php:521
|
94 |
+
#: adminimize.php:533
|
95 |
msgid "Add"
|
96 |
msgstr "Add"
|
97 |
|
98 |
+
# @ default
|
99 |
+
# @ adminimize
|
100 |
+
#: adminimize.php:530
|
101 |
#: inc-options/write_post_options.php:98
|
102 |
+
#: inc-options/write_cp_options.php:104
|
|
|
103 |
msgid "Add New Category"
|
104 |
msgstr "Add New Category"
|
105 |
|
106 |
+
# @ default
|
107 |
+
#: adminimize.php:615
|
108 |
+
#: adminimize.php:618
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
msgid "Dashboard"
|
110 |
msgstr "Dashboard"
|
111 |
|
112 |
+
# @ default
|
113 |
+
#: adminimize.php:679
|
114 |
+
#: adminimize.php:681
|
115 |
+
#: adminimize.php:702
|
116 |
+
#: adminimize.php:704
|
117 |
+
#: adminimize.php:1077
|
|
|
|
|
|
|
118 |
msgid "Log Out"
|
119 |
msgstr "Log Out"
|
120 |
|
121 |
+
# @ default
|
122 |
+
#: adminimize.php:1107
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
123 |
msgid "Settings"
|
124 |
msgstr "Settings"
|
125 |
|
126 |
+
# @ adminimize
|
127 |
+
#: adminimize.php:1134
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
msgid "Adminimize Options"
|
129 |
msgstr "Adminimize Einstellungen"
|
130 |
|
131 |
+
# @ adminimize
|
132 |
+
#: adminimize.php:1135
|
133 |
+
#: inc-options/minimenu.php:18
|
134 |
+
msgid "Adminimize"
|
135 |
+
msgstr "Adminimize"
|
136 |
+
|
137 |
+
# @ default
|
138 |
+
#: adminimize.php:1158
|
139 |
msgid "Cheatin’ uh?"
|
140 |
msgstr "Cheatin’ uh?"
|
141 |
|
142 |
+
# @ default
|
143 |
+
#: inc-options/write_post_options.php:15
|
|
|
|
|
|
|
|
|
144 |
#: inc-options/menu_options.php:15
|
145 |
+
#: inc-options/links_options.php:15
|
|
|
|
|
146 |
#: inc-options/wp_nav_menu_options.php:14
|
147 |
+
#: inc-options/theme_options.php:14
|
148 |
+
#: inc-options/deinstall_options.php:14
|
149 |
+
#: inc-options/dashboard_options.php:16
|
150 |
#: inc-options/write_cp_options.php:20
|
151 |
+
#: inc-options/global_options.php:15
|
152 |
+
#: inc-options/backend_options.php:15
|
153 |
+
#: inc-options/im_export_options.php:14
|
154 |
+
#: inc-options/minimenu.php:22
|
155 |
+
#: inc-options/minimenu.php:86
|
156 |
#: inc-options/write_page_options.php:14
|
|
|
|
|
157 |
msgid "Click to toggle"
|
158 |
msgstr "Zum Umschalten klicken"
|
159 |
|
160 |
+
# @ adminimize
|
161 |
+
#: inc-options/write_post_options.php:16
|
162 |
+
#: inc-options/write_post_options.php:23
|
163 |
+
#: inc-options/minimenu.php:42
|
164 |
+
msgid "Write options - Post"
|
165 |
+
msgstr "Schreiben Einstellungen - Beiträge"
|
166 |
|
167 |
+
# @ adminimize
|
168 |
+
#: inc-options/write_post_options.php:26
|
169 |
+
#: inc-options/menu_options.php:26
|
170 |
+
#: inc-options/links_options.php:26
|
171 |
+
#: inc-options/wp_nav_menu_options.php:25
|
172 |
+
#: inc-options/dashboard_options.php:36
|
173 |
+
#: inc-options/write_cp_options.php:33
|
174 |
+
#: inc-options/global_options.php:26
|
175 |
+
#: inc-options/write_page_options.php:25
|
176 |
+
msgid "Deactivate for"
|
177 |
+
msgstr "Deaktiviere für"
|
178 |
|
179 |
+
# @ adminimize
|
180 |
+
# @ default
|
181 |
+
#: inc-options/write_post_options.php:92
|
182 |
+
#: inc-options/wp_nav_menu_options.php:48
|
183 |
+
#: inc-options/write_cp_options.php:98
|
184 |
+
#: inc-options/write_page_options.php:94
|
185 |
+
msgid "Help"
|
186 |
+
msgstr "Hilfe"
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
|
188 |
+
# @ adminimize
|
189 |
+
# @ default
|
190 |
+
#: inc-options/write_post_options.php:93
|
191 |
+
#: inc-options/wp_nav_menu_options.php:49
|
192 |
+
#: inc-options/write_cp_options.php:99
|
193 |
+
#: inc-options/global_options.php:50
|
194 |
+
#: inc-options/write_page_options.php:95
|
195 |
+
msgid "Screen Options"
|
196 |
+
msgstr "kontextabhängige Optionen"
|
197 |
|
198 |
+
# @ adminimize
|
199 |
+
#: inc-options/write_post_options.php:94
|
200 |
+
#: inc-options/write_page_options.php:96
|
201 |
+
msgid "Title"
|
202 |
+
msgstr "Title"
|
203 |
|
204 |
+
# @ adminimize
|
205 |
+
#: inc-options/write_post_options.php:95
|
206 |
+
#: inc-options/write_cp_options.php:100
|
207 |
+
#: inc-options/write_page_options.php:97
|
208 |
+
msgid "Permalink"
|
209 |
+
msgstr "Permalink"
|
210 |
|
211 |
+
# @ adminimize
|
212 |
+
# @ default
|
213 |
+
#: inc-options/write_post_options.php:96
|
214 |
+
#: inc-options/write_post_options.php:131
|
215 |
+
#: inc-options/write_cp_options.php:101
|
216 |
+
#: inc-options/write_cp_options.php:139
|
217 |
+
msgid "Tags"
|
218 |
+
msgstr "Tags"
|
219 |
|
220 |
+
# @ default
|
221 |
+
# @ adminimize
|
222 |
+
#: inc-options/write_post_options.php:99
|
223 |
+
#: inc-options/write_page_options.php:100
|
224 |
+
#: inc-options/write_page_options.php:131
|
225 |
+
msgid "Date"
|
226 |
+
msgstr "Datum"
|
227 |
|
228 |
+
# @ adminimize
|
229 |
+
#: inc-options/write_post_options.php:100
|
230 |
+
#: inc-options/write_cp_options.php:105
|
231 |
+
msgid "Password Protect This Post"
|
232 |
+
msgstr "Diesen Artikel durch ein Passwort schützen"
|
233 |
|
234 |
+
# @ adminimize
|
235 |
+
#: inc-options/write_post_options.php:101
|
236 |
+
#: inc-options/write_cp_options.php:106
|
237 |
+
msgid "Related, Shortcuts"
|
238 |
+
msgstr "Siehe auch, Tastaturkürzel"
|
239 |
|
240 |
+
# @ adminimize
|
241 |
+
#: inc-options/write_post_options.php:102
|
242 |
+
#: inc-options/write_cp_options.php:107
|
243 |
+
#: inc-options/write_page_options.php:108
|
244 |
+
msgid "Messages"
|
245 |
+
msgstr "Mitteilungen"
|
246 |
|
247 |
+
# @ adminimize
|
248 |
+
#: inc-options/write_post_options.php:103
|
249 |
+
#: inc-options/write_cp_options.php:108
|
250 |
+
#: inc-options/write_page_options.php:109
|
251 |
+
msgid "h2: Advanced Options"
|
252 |
+
msgstr "h2: Erweiterte Einstellungen"
|
253 |
|
254 |
+
# @ adminimize
|
255 |
+
#: inc-options/write_post_options.php:104
|
256 |
+
#: inc-options/write_cp_options.php:109
|
257 |
+
#: inc-options/write_page_options.php:110
|
258 |
+
msgid "Media Buttons (all)"
|
259 |
+
msgstr "Media Buttons (alle)"
|
|
|
|
|
|
|
260 |
|
261 |
+
# @ adminimize
|
262 |
+
#: inc-options/write_post_options.php:105
|
263 |
+
#: inc-options/write_cp_options.php:110
|
264 |
+
#: inc-options/write_page_options.php:111
|
265 |
+
msgid "Word count"
|
266 |
+
msgstr "Word count"
|
267 |
|
268 |
+
# @ adminimize
|
269 |
+
#: inc-options/write_post_options.php:106
|
270 |
+
#: inc-options/write_cp_options.php:111
|
271 |
+
msgid "Post Slug"
|
272 |
+
msgstr "Titelform"
|
273 |
|
274 |
+
# @ adminimize
|
275 |
+
#: inc-options/write_post_options.php:107
|
276 |
+
#: inc-options/links_options.php:56
|
277 |
+
#: inc-options/write_cp_options.php:112
|
278 |
+
#: inc-options/write_page_options.php:113
|
279 |
+
msgid "Publish Actions"
|
280 |
+
msgstr "Publish Actions"
|
281 |
|
282 |
+
# @ default
|
283 |
+
# @ adminimize
|
284 |
+
#: inc-options/write_post_options.php:108
|
285 |
+
#: inc-options/write_cp_options.php:113
|
286 |
+
#: inc-options/write_page_options.php:114
|
287 |
+
msgid "Discussion"
|
288 |
+
msgstr "Kommentare"
|
289 |
|
290 |
+
# @ default
|
291 |
+
# @ adminimize
|
292 |
+
#: inc-options/write_post_options.php:109
|
293 |
+
#: inc-options/write_cp_options.php:114
|
294 |
+
#: inc-options/write_page_options.php:115
|
295 |
+
msgid "HTML Editor Button"
|
296 |
+
msgstr "HTML Editor Button"
|
297 |
|
298 |
+
# @ adminimize
|
299 |
+
#: inc-options/write_post_options.php:118
|
300 |
+
#: inc-options/write_cp_options.php:124
|
301 |
+
msgid "Post Thumbnail"
|
302 |
+
msgstr "Artikelbild"
|
303 |
|
304 |
+
# @ adminimize
|
305 |
+
#: inc-options/write_post_options.php:122
|
306 |
+
#: inc-options/write_cp_options.php:130
|
307 |
+
#: inc-options/write_page_options.php:128
|
308 |
+
msgid "Quick Edit Link"
|
309 |
+
msgstr "QuickEdit Link"
|
310 |
|
311 |
+
# @ adminimize
|
312 |
+
#: inc-options/write_post_options.php:123
|
313 |
+
#: inc-options/write_post_options.php:127
|
314 |
+
#: inc-options/write_post_options.php:130
|
315 |
+
#: inc-options/write_post_options.php:133
|
316 |
+
#: inc-options/write_cp_options.php:131
|
317 |
+
#: inc-options/write_cp_options.php:135
|
318 |
+
#: inc-options/write_cp_options.php:138
|
319 |
+
#: inc-options/write_cp_options.php:141
|
320 |
+
#: inc-options/write_page_options.php:129
|
321 |
+
#: inc-options/write_page_options.php:134
|
322 |
+
#: inc-options/write_page_options.php:137
|
323 |
+
msgid "QE"
|
324 |
+
msgstr "QE"
|
325 |
|
326 |
+
# @ adminimize
|
327 |
+
#: inc-options/write_post_options.php:123
|
328 |
+
#: inc-options/write_cp_options.php:131
|
329 |
+
#: inc-options/write_page_options.php:129
|
330 |
+
msgid "Inline Edit Left"
|
331 |
+
msgstr "Inline Edit Links"
|
332 |
|
333 |
+
# @ adminimize
|
334 |
+
#: inc-options/write_post_options.php:124
|
335 |
+
#: inc-options/write_cp_options.php:132
|
336 |
+
#: inc-options/write_page_options.php:130
|
337 |
+
msgid "All Labels"
|
338 |
+
msgstr "Alle labels"
|
339 |
|
340 |
+
# @ default
|
341 |
+
#: inc-options/write_post_options.php:125
|
342 |
+
#: inc-options/write_cp_options.php:133
|
343 |
+
#: inc-options/write_page_options.php:132
|
344 |
+
msgid "Author"
|
345 |
+
msgstr "Author"
|
346 |
|
347 |
+
# @ adminimize
|
348 |
+
#: inc-options/write_post_options.php:126
|
349 |
+
#: inc-options/write_cp_options.php:134
|
350 |
+
#: inc-options/write_page_options.php:133
|
351 |
+
msgid "Password and Private"
|
352 |
+
msgstr "Passwort und Privat-Flag"
|
353 |
|
354 |
+
# @ adminimize
|
355 |
+
#: inc-options/write_post_options.php:127
|
356 |
+
#: inc-options/write_cp_options.php:135
|
357 |
+
msgid "Inline Edit Center"
|
358 |
+
msgstr "Inline Edit mitte"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
359 |
|
360 |
+
# @ adminimize
|
361 |
+
#: inc-options/write_post_options.php:128
|
362 |
+
#: inc-options/write_cp_options.php:136
|
363 |
+
msgid "Categories Title"
|
364 |
+
msgstr "Kategorien Title"
|
365 |
|
366 |
+
# @ adminimize
|
367 |
+
#: inc-options/write_post_options.php:129
|
368 |
+
#: inc-options/write_cp_options.php:137
|
369 |
+
msgid "Categories List"
|
370 |
+
msgstr "Kategorien Liste"
|
371 |
|
372 |
+
# @ adminimize
|
373 |
+
#: inc-options/write_post_options.php:130
|
374 |
+
#: inc-options/write_cp_options.php:138
|
375 |
+
#: inc-options/write_page_options.php:134
|
376 |
+
msgid "Inline Edit Right"
|
377 |
+
msgstr "Inline Edit rechts"
|
|
|
|
|
|
|
378 |
|
379 |
+
# @ adminimize
|
380 |
+
#: inc-options/write_post_options.php:132
|
381 |
+
#: inc-options/write_cp_options.php:140
|
382 |
+
msgid "Status, Sticky"
|
383 |
+
msgstr "Status, Sticky"
|
384 |
|
385 |
+
# @ adminimize
|
386 |
+
#: inc-options/write_post_options.php:133
|
387 |
+
#: inc-options/write_cp_options.php:141
|
388 |
+
#: inc-options/write_page_options.php:137
|
389 |
+
msgid "Cancel/Save Button"
|
390 |
+
msgstr "Abbrechen/Aktualisieren Button"
|
391 |
|
392 |
+
# @ adminimize
|
393 |
+
#: inc-options/write_post_options.php:181
|
394 |
+
msgid "Your own post options"
|
395 |
+
msgstr "Deine eigenen Beitrags-Einstellungen"
|
|
|
396 |
|
397 |
+
# @ adminimize
|
398 |
+
#: inc-options/write_post_options.php:181
|
399 |
#: inc-options/links_options.php:100
|
400 |
#: inc-options/wp_nav_menu_options.php:121
|
401 |
+
#: inc-options/dashboard_options.php:96
|
402 |
#: inc-options/write_cp_options.php:206
|
403 |
+
#: inc-options/global_options.php:96
|
404 |
#: inc-options/write_page_options.php:185
|
|
|
|
|
405 |
msgid "ID or class"
|
406 |
msgstr "ID oder Klasse"
|
407 |
|
408 |
+
# @ adminimize
|
409 |
+
#: inc-options/write_post_options.php:182
|
410 |
+
#: inc-options/links_options.php:23
|
411 |
+
#: inc-options/links_options.php:101
|
412 |
+
#: inc-options/wp_nav_menu_options.php:22
|
413 |
+
#: inc-options/wp_nav_menu_options.php:122
|
414 |
+
#: inc-options/dashboard_options.php:33
|
415 |
+
#: inc-options/dashboard_options.php:97
|
416 |
+
#: inc-options/write_cp_options.php:208
|
417 |
+
#: inc-options/global_options.php:23
|
418 |
+
#: inc-options/global_options.php:97
|
419 |
+
#: inc-options/write_page_options.php:186
|
420 |
+
msgid "Option"
|
421 |
+
msgstr "Einstellung"
|
422 |
+
|
423 |
+
# @ adminimize
|
424 |
+
#: inc-options/write_post_options.php:188
|
425 |
#: inc-options/links_options.php:107
|
426 |
#: inc-options/wp_nav_menu_options.php:128
|
427 |
+
#: inc-options/dashboard_options.php:103
|
428 |
#: inc-options/write_cp_options.php:215
|
429 |
+
#: inc-options/global_options.php:103
|
430 |
#: inc-options/write_page_options.php:192
|
|
|
|
|
431 |
msgid "It is possible to add your own IDs or classes from elements and tags. You can find IDs and classes with the FireBug Add-on for Firefox. Assign a value and the associate name per line."
|
432 |
msgstr "Es ist möglich, dass du eigene IDs und Klassen eines Elementes oder Tags hinzufügst. Du findest IDs und Klassen sehr einfach mit dem Firebug Add-on für den Firefox. Füge pro Zeile einen Wert und dazugehörigen Namen ein."
|
433 |
|
434 |
+
# @ adminimize
|
435 |
+
#: inc-options/write_post_options.php:194
|
436 |
#: inc-options/links_options.php:113
|
437 |
#: inc-options/wp_nav_menu_options.php:134
|
438 |
+
#: inc-options/dashboard_options.php:109
|
439 |
#: inc-options/write_cp_options.php:225
|
440 |
+
#: inc-options/global_options.php:109
|
441 |
#: inc-options/write_page_options.php:198
|
|
|
|
|
442 |
msgid "Possible nomination for ID or class. Separate multiple nominations through a carriage return."
|
443 |
msgstr "Mögliche Benennung der ID oder Klasse. Trenne Werte durch eine neue Zeile."
|
444 |
|
445 |
+
# @ adminimize
|
446 |
+
#: inc-options/write_post_options.php:199
|
447 |
#: inc-options/links_options.php:118
|
448 |
#: inc-options/wp_nav_menu_options.php:139
|
449 |
+
#: inc-options/dashboard_options.php:114
|
450 |
#: inc-options/write_cp_options.php:233
|
451 |
+
#: inc-options/global_options.php:114
|
452 |
#: inc-options/write_page_options.php:203
|
|
|
|
|
453 |
msgid "Possible IDs or classes. Separate multiple values through a carriage return."
|
454 |
msgstr "Mögliche IDs oder Klassen. Trenne Werte durch eine neue Zeile."
|
455 |
|
456 |
+
# @ adminimize
|
457 |
+
#: inc-options/write_post_options.php:207
|
458 |
+
#: inc-options/menu_options.php:155
|
459 |
+
#: inc-options/links_options.php:126
|
460 |
+
#: inc-options/wp_nav_menu_options.php:147
|
461 |
+
#: inc-options/dashboard_options.php:122
|
462 |
+
#: inc-options/write_cp_options.php:243
|
463 |
+
#: inc-options/global_options.php:122
|
464 |
+
#: inc-options/backend_options.php:192
|
465 |
+
#: inc-options/write_page_options.php:211
|
466 |
+
msgid "Update Options"
|
467 |
+
msgstr "Einstellungen aktualisieren"
|
468 |
+
|
469 |
+
# @ adminimize
|
470 |
+
#: inc-options/write_post_options.php:209
|
471 |
+
#: inc-options/menu_options.php:157
|
472 |
+
#: inc-options/links_options.php:129
|
473 |
+
#: inc-options/wp_nav_menu_options.php:149
|
474 |
+
#: inc-options/theme_options.php:105
|
475 |
+
#: inc-options/deinstall_options.php:27
|
476 |
+
#: inc-options/dashboard_options.php:127
|
477 |
+
#: inc-options/write_cp_options.php:248
|
478 |
+
#: inc-options/global_options.php:124
|
479 |
+
#: inc-options/backend_options.php:194
|
480 |
+
#: inc-options/im_export_options.php:41
|
481 |
+
#: inc-options/minimenu.php:109
|
482 |
+
#: inc-options/write_page_options.php:213
|
483 |
+
msgid "scroll to top"
|
484 |
+
msgstr "Nach oben"
|
485 |
+
|
486 |
+
# @ adminimize
|
487 |
#: inc-options/menu_options.php:16
|
488 |
+
#: inc-options/minimenu.php:39
|
|
|
489 |
msgid "Menu Options"
|
490 |
msgstr "Menu Einstellungen"
|
491 |
|
492 |
+
# @ adminimize
|
493 |
#: inc-options/menu_options.php:23
|
|
|
494 |
msgid "Menu options - Menu, <span style=\\\"font-weight: 400;\\\">Submenu</span>"
|
495 |
msgstr "Menu Einstellungen - Menu, <span style=\"font-weight: 400;\">Submenu</span>"
|
496 |
|
497 |
+
# @ adminimize
|
498 |
+
#: inc-options/menu_options.php:67
|
499 |
+
#: inc-options/menu_options.php:119
|
500 |
+
msgid "After activate the check box it heavy attitudes will change."
|
501 |
+
msgstr "Wenn die Checkbox aktiv ist, dann wird das Ändern von Einstellungen erschwert."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
502 |
|
503 |
+
# @ default
|
504 |
+
#: inc-options/menu_options.php:102
|
505 |
+
msgid "Profile"
|
506 |
+
msgstr "Profile"
|
507 |
|
508 |
+
# @ adminimize
|
509 |
+
#: inc-options/links_options.php:16
|
510 |
+
#: inc-options/minimenu.php:65
|
511 |
+
msgid "Links options"
|
512 |
+
msgstr "Link Einstellungen"
|
513 |
|
514 |
+
# @ default
|
515 |
+
#: inc-options/links_options.php:49
|
516 |
+
msgid "Name"
|
517 |
+
msgstr "Name"
|
|
|
518 |
|
519 |
+
# @ default
|
520 |
+
#: inc-options/links_options.php:50
|
521 |
+
msgid "Web Address"
|
522 |
+
msgstr "Web-Adresse"
|
|
|
|
|
523 |
|
524 |
+
# @ default
|
525 |
+
#: inc-options/links_options.php:51
|
526 |
+
msgid "Description"
|
527 |
+
msgstr "Beschreibung"
|
|
|
|
|
528 |
|
529 |
+
# @ default
|
530 |
+
#: inc-options/links_options.php:53
|
531 |
+
msgid "Target"
|
532 |
+
msgstr "Target"
|
|
|
|
|
533 |
|
534 |
+
# @ default
|
535 |
+
#: inc-options/links_options.php:54
|
536 |
+
msgid "Link Relationship (XFN)"
|
537 |
+
msgstr "Link-Beziehungen (XFN)"
|
|
|
538 |
|
539 |
+
# @ default
|
540 |
+
#: inc-options/links_options.php:55
|
541 |
+
msgid "Advanced"
|
542 |
+
msgstr "Erweitert"
|
|
|
|
|
|
|
543 |
|
544 |
+
# @ adminimize
|
545 |
+
#: inc-options/links_options.php:100
|
546 |
+
msgid "Your own Link options"
|
547 |
+
msgstr "Deine eigenen Link Einstellungen"
|
|
|
|
|
|
|
548 |
|
549 |
+
# @ adminimize
|
550 |
+
#: inc-options/wp_nav_menu_options.php:15
|
551 |
+
msgid "WP Nav Menu options"
|
552 |
+
msgstr "WP Nav Menü Einstellungen"
|
|
|
553 |
|
554 |
+
# @ adminimize
|
555 |
+
# @ default
|
556 |
+
#: inc-options/wp_nav_menu_options.php:50
|
557 |
+
#: inc-options/wp_nav_menu_options.php:56
|
558 |
+
msgid "Theme Locations"
|
559 |
+
msgstr "Anordnung im Theme"
|
560 |
|
561 |
+
# @ adminimize
|
562 |
+
#: inc-options/wp_nav_menu_options.php:51
|
563 |
+
msgid "Custom Links"
|
564 |
+
msgstr "Benutzerdef. Links"
|
565 |
|
566 |
+
# @ adminimize
|
567 |
+
#: inc-options/wp_nav_menu_options.php:52
|
568 |
+
msgid "Add menu"
|
569 |
+
msgstr "Menu hinzufügen"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
570 |
|
571 |
+
# @ adminimize
|
572 |
+
#: inc-options/wp_nav_menu_options.php:121
|
573 |
+
msgid "Your own Nav Menu options"
|
574 |
+
msgstr "Deine eigenen Nav Menu Einstellungen"
|
575 |
|
576 |
+
# @ adminimize
|
577 |
#: inc-options/theme_options.php:15
|
578 |
#: inc-options/theme_options.php:100
|
579 |
+
#: inc-options/minimenu.php:71
|
580 |
msgid "Set Theme"
|
581 |
msgstr "Theme zuweisen"
|
582 |
|
583 |
+
# @ adminimize
|
584 |
#: inc-options/theme_options.php:22
|
|
|
585 |
msgid "For better peformance with many users on your blog; load only userlist, when you will change the theme options for users."
|
586 |
msgstr "Für eine bessere Performance bei vielen Usern in deinem Blog werden die Userdaten nur nach Aufforderung geladen."
|
587 |
|
588 |
+
# @ adminimize
|
589 |
#: inc-options/theme_options.php:25
|
|
|
590 |
msgid "Load User Data"
|
591 |
msgstr "Lade User Daten"
|
592 |
|
593 |
+
# @ default
|
594 |
#: inc-options/theme_options.php:36
|
|
|
595 |
msgid "User-ID"
|
596 |
msgstr "User-ID"
|
597 |
|
598 |
+
# @ default
|
599 |
#: inc-options/theme_options.php:37
|
|
|
600 |
msgid "Username"
|
601 |
msgstr "Benutzername"
|
602 |
|
603 |
+
# @ default
|
604 |
#: inc-options/theme_options.php:38
|
|
|
605 |
msgid "Display name publicly as"
|
606 |
msgstr "Name im Blog"
|
607 |
|
608 |
+
# @ default
|
609 |
#: inc-options/theme_options.php:39
|
|
|
610 |
msgid "Admin-Color Scheme"
|
611 |
msgstr "Admin-Color Scheme"
|
612 |
|
613 |
+
# @ default
|
614 |
#: inc-options/theme_options.php:40
|
|
|
615 |
msgid "User Level"
|
616 |
msgstr "User Level"
|
617 |
|
618 |
+
# @ default
|
619 |
#: inc-options/theme_options.php:41
|
|
|
620 |
msgid "Role"
|
621 |
msgstr "Rolle"
|
622 |
|
623 |
+
# @ adminimize
|
624 |
#: inc-options/deinstall_options.php:15
|
625 |
+
#: inc-options/minimenu.php:77
|
|
|
626 |
msgid "Deinstall Options"
|
627 |
msgstr "Einstellungen deinstallieren"
|
628 |
|
629 |
+
# @ adminimize
|
630 |
#: inc-options/deinstall_options.php:18
|
|
|
631 |
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."
|
632 |
msgstr "Nutze diese Option, um die Einstellungen für das Plugin in der Datenbank zu löschen. Das Plugin entfernt die Einträge <strong>nicht</strong>, wenn es deaktiviert wird!"
|
633 |
|
634 |
+
# @ adminimize
|
635 |
#: inc-options/deinstall_options.php:22
|
|
|
636 |
msgid "Delete Options"
|
637 |
msgstr "Einstellungen Löschen"
|
638 |
|
639 |
+
# @ adminimize
|
640 |
+
#: inc-options/dashboard_options.php:17
|
641 |
+
#: inc-options/minimenu.php:36
|
642 |
+
msgid "Dashboard options"
|
643 |
+
msgstr "Dashboard Einstellungen"
|
|
|
|
|
|
|
|
|
|
|
644 |
|
645 |
+
# @ adminimize
|
646 |
+
#: inc-options/dashboard_options.php:25
|
647 |
+
msgid "To complete the installation for Dashboard Widgets you must visit your dashboard once and then come back to Settings > Adminimize to configure who has access to each widget."
|
648 |
+
msgstr "Um die Installation für Dashboard Widgets abzuschließen, musst du das Dashboard einmal besuchen und dann zurück zu den Einstellungen > Adminimize kommen, um den Zugriff der Widgets zu steuern."
|
649 |
|
650 |
+
# @ adminimize
|
651 |
+
#: inc-options/dashboard_options.php:96
|
652 |
+
#: inc-options/global_options.php:96
|
653 |
+
msgid "Your own options"
|
654 |
+
msgstr "Deine eigenen Einstellungen"
|
655 |
|
656 |
+
# @ adminimize
|
657 |
+
#: inc-options/write_cp_options.php:22
|
658 |
+
#: inc-options/write_cp_options.php:30
|
659 |
+
#: inc-options/minimenu.php:56
|
660 |
+
msgid "Write options"
|
661 |
+
msgstr "Einstellungen Schreiben"
|
662 |
|
663 |
+
# @ adminimize
|
664 |
+
#: inc-options/write_cp_options.php:102
|
665 |
+
msgid "Format"
|
666 |
+
msgstr "Format"
|
667 |
|
668 |
+
# @ adminimize
|
669 |
+
#: inc-options/write_cp_options.php:205
|
670 |
+
#, php-format
|
671 |
+
msgid "Your own %s options"
|
672 |
+
msgstr "Deine eigenen %s Einstellungen"
|
673 |
|
674 |
+
# @ adminimize
|
675 |
+
#: inc-options/global_options.php:16
|
676 |
+
#: inc-options/minimenu.php:33
|
677 |
+
msgid "Global options"
|
678 |
+
msgstr "Globale Einstellungen"
|
679 |
|
680 |
+
# @ adminimize
|
681 |
+
#: inc-options/global_options.php:47
|
682 |
+
msgid "Admin Bar"
|
683 |
+
msgstr "Admin Bar"
|
684 |
|
685 |
+
# @ adminimize
|
686 |
+
#: inc-options/global_options.php:48
|
687 |
+
msgid "Favorite Actions"
|
688 |
+
msgstr "Favorisierte Aktionen"
|
689 |
|
690 |
+
# @ adminimize
|
691 |
+
#: inc-options/global_options.php:49
|
692 |
+
msgid "Screen-Meta"
|
693 |
+
msgstr "Screen-Meta"
|
694 |
|
695 |
+
# @ adminimize
|
696 |
+
#: inc-options/global_options.php:51
|
697 |
+
msgid "Contextual Help"
|
698 |
+
msgstr "kontextabhängig Hilfe"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
699 |
|
700 |
+
# @ adminimize
|
701 |
+
#: inc-options/global_options.php:52
|
702 |
+
msgid "Admin Color Scheme"
|
703 |
+
msgstr "Farbschema verwalten"
|
704 |
|
705 |
+
# @ adminimize
|
706 |
+
#: inc-options/backend_options.php:16
|
707 |
+
#: inc-options/minimenu.php:30
|
708 |
+
msgid "Backend Options"
|
709 |
+
msgstr "Einstellungen Backend"
|
710 |
|
711 |
+
# @ adminimize
|
712 |
+
#: inc-options/backend_options.php:27
|
713 |
+
#, fuzzy
|
714 |
+
msgid "Use Global Settings"
|
715 |
+
msgstr "Globale Einstellungen"
|
716 |
|
717 |
+
#: inc-options/backend_options.php:36
|
718 |
+
msgid "The plugin is active in multiste."
|
719 |
+
msgstr "Das Plugin ist aktiv für die Multisite Umgebung."
|
|
|
720 |
|
721 |
+
#: inc-options/backend_options.php:40
|
722 |
+
msgid "False"
|
723 |
+
msgstr "Falsch"
|
|
|
724 |
|
725 |
+
#: inc-options/backend_options.php:41
|
726 |
+
msgid "True"
|
727 |
+
msgstr "Wahr"
|
|
|
728 |
|
729 |
+
#: inc-options/backend_options.php:42
|
730 |
+
msgid "Use the settings global in your Multisite network."
|
731 |
+
msgstr "Nutze die Einstellungen global in deinem Multisite Netzwerk."
|
|
|
|
|
|
|
|
|
732 |
|
733 |
+
# @ adminimize
|
734 |
+
#: inc-options/backend_options.php:47
|
735 |
+
msgid "Exclude Super Admin"
|
736 |
+
msgstr "Ausschließen des Super Admin"
|
737 |
|
738 |
+
# @ adminimize
|
739 |
+
#: inc-options/backend_options.php:51
|
740 |
+
#: inc-options/backend_options.php:62
|
741 |
+
#: inc-options/backend_options.php:75
|
742 |
+
#: inc-options/backend_options.php:85
|
743 |
+
#: inc-options/backend_options.php:95
|
744 |
+
#: inc-options/backend_options.php:105
|
745 |
+
#: inc-options/backend_options.php:115
|
746 |
+
#: inc-options/backend_options.php:125
|
747 |
+
#: inc-options/backend_options.php:135
|
748 |
+
#: inc-options/backend_options.php:145
|
749 |
+
#: inc-options/backend_options.php:174
|
750 |
+
msgid "Default"
|
751 |
+
msgstr "Standard"
|
752 |
|
753 |
+
# @ adminimize
|
754 |
+
#: inc-options/backend_options.php:52
|
755 |
+
#: inc-options/backend_options.php:106
|
756 |
+
#: inc-options/backend_options.php:116
|
757 |
+
#: inc-options/backend_options.php:126
|
758 |
+
#: inc-options/backend_options.php:136
|
759 |
+
#: inc-options/backend_options.php:146
|
760 |
+
msgid "Activate"
|
761 |
+
msgstr "Aktiv"
|
762 |
|
763 |
+
# @ adminimize
|
764 |
+
#: inc-options/backend_options.php:53
|
765 |
+
msgid "Exclude the Super Admin on a WP Multisite Install from all limitations of this plugin."
|
766 |
+
msgstr "Schließe den Super Admin in einer WordPress Multisite Installation von allen Restriktionen dieses Plugins aus."
|
|
|
767 |
|
768 |
+
# @ adminimize
|
769 |
+
#: inc-options/backend_options.php:58
|
770 |
+
msgid "User-Info"
|
771 |
+
msgstr "User-Info"
|
|
|
772 |
|
773 |
+
# @ adminimize
|
774 |
+
#: inc-options/backend_options.php:63
|
775 |
+
#: inc-options/backend_options.php:86
|
776 |
+
#: inc-options/backend_options.php:96
|
777 |
+
msgid "Hide"
|
778 |
+
msgstr "Ausblenden"
|
779 |
|
780 |
+
# @ adminimize
|
781 |
+
#: inc-options/backend_options.php:64
|
782 |
+
msgid "Only logout"
|
783 |
+
msgstr "nur Abmelden"
|
784 |
|
785 |
+
# @ adminimize
|
786 |
+
#: inc-options/backend_options.php:65
|
787 |
+
msgid "User & Logout"
|
788 |
+
msgstr "User & Abmelden"
|
|
|
789 |
|
790 |
+
# @ adminimize
|
791 |
+
#: inc-options/backend_options.php:66
|
792 |
+
msgid "The "User-Info-area" is on the top right side of the backend. You can hide or reduced show."
|
793 |
+
msgstr "Der "User-Info-Bereich" ist im oberen rechten Bereich zu finden und kann ausgeblendet oder reduziert dargestellt werden."
|
794 |
|
795 |
+
# @ adminimize
|
796 |
+
#: inc-options/backend_options.php:71
|
797 |
+
msgid "Change User-Info, redirect to"
|
798 |
+
msgstr "User Info geändert, Weiterleitung nach"
|
799 |
|
800 |
+
# @ adminimize
|
801 |
+
#: inc-options/backend_options.php:76
|
802 |
+
msgid "Frontpage of the Blog"
|
803 |
+
msgstr "Startseite des Blog"
|
804 |
|
805 |
+
# @ adminimize
|
806 |
+
#: inc-options/backend_options.php:77
|
807 |
+
msgid "When the "User-Info-area" change it, then it is possible to change the redirect."
|
808 |
+
msgstr "Wenn der "User-Info-Bereich" geändert wird, dann kann die die Weiterleitung nach einem Logout geändert werden."
|
809 |
|
810 |
+
# @ adminimize
|
811 |
+
#: inc-options/backend_options.php:81
|
812 |
+
msgid "Footer"
|
813 |
+
msgstr "Footer"
|
814 |
|
815 |
+
# @ adminimize
|
816 |
+
#: inc-options/backend_options.php:87
|
817 |
+
msgid "The Footer-area can hide, include all links and details."
|
818 |
+
msgstr "Der Footer-Bereich kann deaktiviert werden, inklusive aller Links und Hinweise."
|
819 |
|
820 |
+
# @ adminimize
|
821 |
+
#: inc-options/backend_options.php:91
|
822 |
+
msgid "Header"
|
823 |
+
msgstr "Header"
|
|
|
|
|
824 |
|
825 |
+
# @ adminimize
|
826 |
+
#: inc-options/backend_options.php:97
|
827 |
+
msgid "The Header-area can hide, include all links and details."
|
828 |
+
msgstr "Der header-Bereich kann ausgeblendet werden, inkl. aller Links und Details."
|
829 |
|
830 |
+
# @ adminimize
|
831 |
+
#: inc-options/backend_options.php:101
|
832 |
+
msgid "Timestamp"
|
833 |
+
msgstr "Timestamp"
|
834 |
|
835 |
+
# @ adminimize
|
836 |
+
#: inc-options/backend_options.php:107
|
837 |
+
msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
|
838 |
+
msgstr "Das Feld zum Ändern des Veröffentlichungsdatum ist immer geöffnet."
|
839 |
|
840 |
+
# @ adminimize
|
841 |
+
#: inc-options/backend_options.php:111
|
842 |
+
msgid "Thickbox FullScreen"
|
843 |
+
msgstr "Thickbox FullScreen"
|
|
|
|
|
844 |
|
845 |
+
# @ adminimize
|
846 |
+
#: inc-options/backend_options.php:117
|
847 |
+
msgid "All Thickbox-function use the full area of the browser. Thickbox is for example in upload media-files."
|
848 |
+
msgstr "Alle Thickbox-Funktion verwenden den vollständigen Bereich des Browsers. Thickbox ist beispielsweise in der Medien-Upload-Funktion."
|
|
|
|
|
849 |
|
850 |
+
# @ adminimize
|
851 |
+
#: inc-options/backend_options.php:121
|
852 |
+
msgid "Flashuploader"
|
853 |
+
msgstr "Flashuploader"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
854 |
|
855 |
+
# @ adminimize
|
856 |
+
#: inc-options/backend_options.php:127
|
857 |
+
msgid "Disable the flashuploader and users use only the standard uploader."
|
858 |
+
msgstr "Deaktiviere den Flashuploader und Nutzer können nur den Standard-Uploader erreichen."
|
|
|
|
|
859 |
|
860 |
+
# @ adminimize
|
861 |
+
#: inc-options/backend_options.php:131
|
862 |
+
msgid "Category Height"
|
863 |
+
msgstr "Kategorie-Höhe"
|
|
|
|
|
864 |
|
865 |
+
# @ adminimize
|
866 |
+
#: inc-options/backend_options.php:137
|
867 |
+
msgid "View the Meta Box with Categories in the full height, no scrollbar or whitespace."
|
868 |
+
msgstr "Stellt in die Meta Box der Kategorien in voller Höhe dar, kein Scrollbar und kein Leerraum."
|
|
|
|
|
|
|
869 |
|
870 |
+
# @ adminimize
|
871 |
+
#: inc-options/backend_options.php:141
|
872 |
+
msgid "Advice in Footer"
|
873 |
+
msgstr "Hinweis im Footer"
|
|
|
|
|
874 |
|
875 |
+
# @ adminimize
|
876 |
+
#: inc-options/backend_options.php:148
|
877 |
+
msgid "In the Footer you can display an advice for changing the Default-design, (x)HTML is possible."
|
878 |
+
msgstr "Im Footer kann ein Hinweis auf die aktive Veränderung des Standard-Layout gesetzt werden, (x)HTML erlaubt."
|
|
|
|
|
879 |
|
880 |
+
# @ adminimize
|
881 |
+
#: inc-options/backend_options.php:170
|
882 |
+
msgid "Dashboard deactivate, redirect to"
|
883 |
+
msgstr "Dashboard inaktiv, Weiterleitung nach"
|
884 |
|
885 |
+
# @ adminimize
|
886 |
+
#: inc-options/backend_options.php:175
|
887 |
+
msgid "Manage Posts"
|
888 |
+
msgstr "Verwalten Beiträge"
|
889 |
|
890 |
+
# @ adminimize
|
891 |
+
#: inc-options/backend_options.php:176
|
892 |
+
msgid "Manage Pages"
|
893 |
+
msgstr "Verwalten Seiten"
|
|
|
|
|
894 |
|
895 |
+
# @ adminimize
|
896 |
+
#: inc-options/backend_options.php:177
|
897 |
+
msgid "Write Post"
|
898 |
+
msgstr "Schreiben Beitrag"
|
|
|
899 |
|
900 |
+
# @ adminimize
|
901 |
+
#: inc-options/backend_options.php:178
|
902 |
+
msgid "Write Page"
|
903 |
+
msgstr "Schreiben Seite"
|
|
|
904 |
|
905 |
+
# @ adminimize
|
906 |
+
#: inc-options/backend_options.php:179
|
907 |
+
msgid "Comments"
|
908 |
+
msgstr "Kommentare"
|
|
|
909 |
|
910 |
+
# @ adminimize
|
911 |
+
#: inc-options/backend_options.php:180
|
912 |
+
msgid "other Page"
|
913 |
+
msgstr "andere Seite"
|
|
|
914 |
|
915 |
+
# @ adminimize
|
916 |
+
#: inc-options/backend_options.php:183
|
917 |
+
msgid "You have deactivated the Dashboard, please select a page for redirection or define custom url, include http://?"
|
918 |
+
msgstr "Du hast das Dashboard deaktiviert; bitte wähle eine Seite für die Weiterleitung oder definiere eine eigene URL, inklusive http://"
|
919 |
|
920 |
+
# @ adminimize
|
921 |
+
#: inc-options/im_export_options.php:15
|
922 |
+
#: inc-options/minimenu.php:74
|
923 |
+
msgid "Export/Import Options"
|
924 |
+
msgstr "Export/Import Einstellungen"
|
|
|
925 |
|
926 |
+
# @ adminimize
|
927 |
+
#: inc-options/im_export_options.php:19
|
928 |
+
msgid "Export"
|
929 |
+
msgstr "Export"
|
930 |
|
931 |
+
# @ adminimize
|
932 |
+
#: inc-options/im_export_options.php:21
|
933 |
+
msgid "You can save a .seq file with your options."
|
934 |
+
msgstr "Du kannst deine Einstellungen in einer .seq Datei speichern."
|
|
|
935 |
|
936 |
+
# @ adminimize
|
937 |
+
#: inc-options/im_export_options.php:24
|
938 |
+
msgid "Export »"
|
939 |
+
msgstr "Exportieren »"
|
|
|
940 |
|
941 |
+
# @ adminimize
|
942 |
+
#: inc-options/im_export_options.php:28
|
943 |
+
msgid "Import"
|
944 |
+
msgstr "Import"
|
945 |
|
946 |
+
# @ adminimize
|
947 |
+
#: inc-options/im_export_options.php:31
|
948 |
+
msgid "Choose a Adminimize (<em>.seq</em>) file to upload, then click <em>Upload file and import</em>."
|
949 |
+
msgstr "Wähle eine Adminimize (<em>.seq</em>) Datei zum hoch laden und dann klick <em>Hochladen der Datei und importieren</em>"
|
950 |
+
|
951 |
+
# @ adminimize
|
952 |
+
#: inc-options/im_export_options.php:33
|
953 |
+
msgid "Choose a file from your computer"
|
954 |
+
msgstr "Wähle eine Datei vom Rechner"
|
955 |
+
|
956 |
+
# @ adminimize
|
957 |
+
#: inc-options/im_export_options.php:38
|
958 |
+
msgid "Upload file and import »"
|
959 |
+
msgstr "Hochladen der Datei und importieren »"
|
960 |
+
|
961 |
+
#: inc-options/minimenu.php:14
|
962 |
+
msgid "Network"
|
963 |
+
msgstr "Netzwerk"
|
964 |
+
|
965 |
+
# @ adminimize
|
966 |
+
#: inc-options/minimenu.php:23
|
967 |
+
msgid "MiniMenu"
|
968 |
+
msgstr "MiniMenu"
|
969 |
+
|
970 |
+
# @ adminimize
|
971 |
+
#: inc-options/minimenu.php:27
|
972 |
#: inc-options/minimenu.php:87
|
973 |
+
msgid "About the plugin"
|
974 |
+
msgstr "Über das Plugin"
|
|
|
975 |
|
976 |
+
# @ adminimize
|
977 |
+
#: inc-options/minimenu.php:45
|
978 |
+
#: inc-options/write_page_options.php:15
|
979 |
+
#: inc-options/write_page_options.php:22
|
980 |
+
msgid "Write options - Page"
|
981 |
+
msgstr "Schreiben Einstellungen - Seiten"
|
982 |
|
983 |
+
# @ adminimize
|
984 |
+
#: inc-options/minimenu.php:68
|
985 |
+
msgid "WP Nav Menu"
|
986 |
+
msgstr "WP Nav Menü"
|
987 |
|
988 |
+
# @ adminimize
|
989 |
+
#: inc-options/minimenu.php:89
|
990 |
+
msgid "Version"
|
991 |
+
msgstr "Version"
|
|
|
992 |
|
993 |
+
# @ adminimize
|
994 |
+
#: inc-options/minimenu.php:92
|
995 |
+
#, fuzzy
|
996 |
+
msgid "Further information: Visit the <a href=\"http://wordpress.org/extend/plugins/adminimize/\">plugin homepage</a> for further information or to grab the latest version of this plugin. Also see the <a href=\"http://wordpress.org/support/plugin/adminimize\">support forum</a> for questions."
|
997 |
+
msgstr "Weitere Informationen: Besuchen Sie die <a href=\"http://wordpress.org/extend/plugins/adminimize/\">Plugin Website</a> für weitere Informationen oder um die neueste Version des Plugins erhalten."
|
998 |
+
|
999 |
+
# @ adminimize
|
1000 |
+
#: inc-options/minimenu.php:94
|
1001 |
+
msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a> or donate."
|
1002 |
+
msgstr "Du willst Danke sagen? Besuche meine <a href=\"http://bueltge.de/wunschliste/\">Wunschliste</a> oder spende."
|
1003 |
+
|
1004 |
+
# @ adminimize
|
1005 |
+
#: inc-options/minimenu.php:99
|
1006 |
+
msgid "PayPal - The safer, easier way to pay online!"
|
1007 |
+
msgstr "PayPal - Der sichere und einfache Weg zu zahlen!"
|
1008 |
+
|
1009 |
+
# @ adminimize
|
1010 |
+
#: inc-options/minimenu.php:105
|
1011 |
#: inc-options/settings_notice.php:17
|
|
|
1012 |
msgid "Please note: The Adminimize settings page ignores the Menu Options below and displays the menu with all entries.<br /><span style=\"font-weight: 300;\">To view your changes to the menu you need to navigate away from the Adminimize settings page.</span>"
|
1013 |
msgstr "Beachte: Die Einstellungen des Plugins ignorieren Menu Einstellungen um alle Einträge darzustellen.<br /><span style=\\\"font-weight: 300;\\\">Um die Einstellungen an deiner Rolle zu prüfen, musst du eine andere Seite im Backend aufrufen.</span>"
|
1014 |
|
1015 |
+
#: inc-options/minimenu.php:106
|
1016 |
+
msgid "You have to activated the Plugin for your Multisite Network. Your settings works now on all blogs in the network. Please set the settings only in one blog, there you have all active menu items and plugins. If you update the settings then write the plugin new settings in dependence of the blog where you put, save the settings."
|
1017 |
+
msgstr "Du hast das Plugin für ein Multisite Netzwerk aktiviert. Deine Einstellungen werden nun in allen Blogs des Networks genutzt. Bitte setze die Einstellungen in dem Blog, in dem alle Menu-Einträge aktiv sind. Wenn du eine Aktualisierung der Einstellungen vornimmst, dann werden die Einstellungen neu gesetzt - mit den Werten des Blogs, in dem du gerade aktiv bist und als Einstellungen gespeichert."
|
1018 |
+
|
1019 |
+
# @ default
|
1020 |
+
#: inc-options/write_page_options.php:98
|
1021 |
+
msgid "Custom Fields"
|
1022 |
+
msgstr "Benutzerdefinierte Felder"
|
1023 |
+
|
1024 |
+
# @ adminimize
|
1025 |
+
#: inc-options/write_page_options.php:99
|
1026 |
+
msgid "Comments & Pings"
|
1027 |
+
msgstr "Kommentare & Pings"
|
1028 |
+
|
1029 |
+
# @ adminimize
|
1030 |
+
#: inc-options/write_page_options.php:101
|
1031 |
+
msgid "Password Protect This Page"
|
1032 |
+
msgstr "Diese Seite mit einem Passwort versehen"
|
1033 |
+
|
1034 |
+
# @ adminimize
|
1035 |
+
#: inc-options/write_page_options.php:102
|
1036 |
+
msgid "Attributes"
|
1037 |
+
msgstr "Attribute"
|
1038 |
+
|
1039 |
+
# @ adminimize
|
1040 |
+
#: inc-options/write_page_options.php:103
|
1041 |
+
msgid "Page Template"
|
1042 |
+
msgstr "Seiten Template"
|
1043 |
+
|
1044 |
+
# @ adminimize
|
1045 |
+
#: inc-options/write_page_options.php:104
|
1046 |
+
msgid "Page Order"
|
1047 |
+
msgstr "Reihenfolge"
|
1048 |
+
|
1049 |
+
# @ default
|
1050 |
+
#: inc-options/write_page_options.php:105
|
1051 |
+
msgid "Page Author"
|
1052 |
+
msgstr "Seitenautor"
|
1053 |
+
|
1054 |
+
# @ default
|
1055 |
+
#: inc-options/write_page_options.php:106
|
1056 |
+
msgid "Page Revisions"
|
1057 |
+
msgstr "Page Revisions"
|
1058 |
+
|
1059 |
+
# @ adminimize
|
1060 |
+
#: inc-options/write_page_options.php:107
|
1061 |
+
msgid "Related"
|
1062 |
+
msgstr "Siehe auch"
|
1063 |
+
|
1064 |
+
# @ adminimize
|
1065 |
+
#: inc-options/write_page_options.php:112
|
1066 |
+
msgid "Page Slug"
|
1067 |
+
msgstr "Titelform"
|
1068 |
+
|
1069 |
+
# @ adminimize
|
1070 |
+
#: inc-options/write_page_options.php:124
|
1071 |
+
msgid "Page Image"
|
1072 |
+
msgstr "Artikelbild"
|
1073 |
+
|
1074 |
+
# @ adminimize
|
1075 |
+
#: inc-options/write_page_options.php:135
|
1076 |
+
msgid "Parent, Order, Template"
|
1077 |
+
msgstr "Eltern, Reihenfolge, Template"
|
1078 |
+
|
1079 |
+
# @ adminimize
|
1080 |
+
#: inc-options/write_page_options.php:136
|
1081 |
+
msgid "Status"
|
1082 |
+
msgstr "Status"
|
1083 |
+
|
1084 |
+
# @ adminimize
|
1085 |
+
#: inc-options/write_page_options.php:185
|
1086 |
+
msgid "Your own page options"
|
1087 |
+
msgstr "Deine eigenen Seiten-Einstellungen"
|
1088 |
+
|
1089 |
+
# @ default
|
1090 |
+
#: inc-setup/admin-bar.php:239
|
1091 |
+
msgid "Network Admin"
|
1092 |
+
msgstr "Netwerk-Admin"
|
1093 |
+
|
1094 |
+
# @ default
|
1095 |
+
#: inc-setup/admin-bar.php:241
|
1096 |
+
msgid "Site Admin"
|
1097 |
+
msgstr "Site-Admin"
|
1098 |
+
|
languages/adminimize-xx_XX.pot
CHANGED
@@ -2,1102 +2,1097 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Adminimize\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
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 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
-
"X-Poedit-Language: \n"
|
14 |
-
"X-Poedit-Country: \n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2
|
17 |
-
"X-Poedit-Basepath:
|
18 |
-
"X-
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
-
"X-Textdomain-Support: yes"
|
21 |
|
|
|
22 |
#: adminimize.php:127
|
23 |
-
#@ adminimize
|
24 |
msgid "Unknown error."
|
25 |
msgstr "Unbekannter Fehler."
|
26 |
|
|
|
27 |
#: adminimize.php:136
|
28 |
-
#@ adminimize
|
29 |
msgid "The updates were saved."
|
30 |
msgstr "Die Einstellungen wurden gespeichert"
|
31 |
|
|
|
32 |
#: adminimize.php:137
|
33 |
-
#@ adminimize
|
34 |
msgid "You have not enough rights to edit entries in the database."
|
35 |
msgstr "Du hast nicht ausreichend Rechte um diese Aktion durchzuführen!"
|
36 |
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
#: adminimize.php:139
|
38 |
-
#@ adminimize
|
39 |
msgid "All entries in the database were deleted."
|
40 |
msgstr "Die Einstellungen wurde gelöscht!"
|
41 |
|
|
|
42 |
#: adminimize.php:140
|
43 |
-
#@ adminimize
|
44 |
msgid "Set the checkbox on deinstall-button."
|
45 |
msgstr "Checkbox setzen, wenn wirklich deinstalliert werden soll!"
|
46 |
|
|
|
47 |
#: adminimize.php:141
|
48 |
-
#@ adminimize
|
49 |
msgid "Can't load menu and submenu."
|
50 |
msgstr "Menu und Submenu können nicht geladen werden!"
|
51 |
|
|
|
52 |
#: adminimize.php:142
|
53 |
-
#@ adminimize
|
54 |
msgid "Backend-Theme was activated!"
|
55 |
msgstr "Backend-Theme wurde zugewiesen!"
|
56 |
|
|
|
57 |
#: adminimize.php:143
|
58 |
-
#@ adminimize
|
59 |
msgid "Load user data to themes was successful."
|
60 |
msgstr "Das Laden der User-Daten zum Theme war erfolgreich."
|
61 |
|
62 |
-
|
|
|
|
|
|
|
63 |
#: inc-options/links_options.php:52
|
64 |
#: inc-options/write_cp_options.php:103
|
65 |
-
#: inc-options/write_post_options.php:97
|
66 |
-
#@ default
|
67 |
-
#@ adminimize
|
68 |
msgid "Categories"
|
69 |
msgstr "Kategorien"
|
70 |
|
71 |
-
|
72 |
-
#: adminimize.php:
|
73 |
-
|
74 |
msgid "+ Add New Category"
|
75 |
msgstr "+ Add New Category"
|
76 |
|
77 |
-
|
78 |
-
#: adminimize.php:
|
79 |
-
|
80 |
msgid "New category name"
|
81 |
msgstr "New category name"
|
82 |
|
83 |
-
|
84 |
-
#: adminimize.php:
|
85 |
-
|
86 |
msgid "Parent category"
|
87 |
msgstr "Parent category"
|
88 |
|
89 |
-
|
90 |
-
#: adminimize.php:
|
91 |
-
|
92 |
msgid "Add"
|
93 |
msgstr "Add"
|
94 |
|
95 |
-
|
96 |
-
|
|
|
97 |
#: inc-options/write_post_options.php:98
|
98 |
-
|
99 |
-
#@ adminimize
|
100 |
msgid "Add New Category"
|
101 |
msgstr "Add New Category"
|
102 |
|
103 |
-
|
104 |
-
#:
|
105 |
-
#:
|
106 |
-
#: inc-options/write_post_options.php:131
|
107 |
-
#@ adminimize
|
108 |
-
#@ default
|
109 |
-
msgid "Tags"
|
110 |
-
msgstr "Tags"
|
111 |
-
|
112 |
-
#: adminimize.php:607
|
113 |
-
#: adminimize.php:610
|
114 |
-
#@ default
|
115 |
msgid "Dashboard"
|
116 |
msgstr "Dashboard"
|
117 |
|
118 |
-
|
119 |
-
#: adminimize.php:
|
120 |
-
#: adminimize.php:
|
121 |
-
#: adminimize.php:
|
122 |
-
#: adminimize.php:
|
123 |
-
#:
|
124 |
-
#: inc-setup/admin-bar.php:81
|
125 |
-
#: inc-setup/admin-bar.php:250
|
126 |
-
#@ default
|
127 |
msgid "Log Out"
|
128 |
msgstr "Log Out"
|
129 |
|
130 |
-
|
131 |
-
|
132 |
-
msgid "Version"
|
133 |
-
msgstr "Version"
|
134 |
-
|
135 |
-
#: inc-options/write_cp_options.php:133
|
136 |
-
#: inc-options/write_page_options.php:132
|
137 |
-
#: inc-options/write_post_options.php:125
|
138 |
-
#@ default
|
139 |
-
msgid "Author"
|
140 |
-
msgstr "Author"
|
141 |
-
|
142 |
-
#: adminimize.php:1099
|
143 |
-
#@ default
|
144 |
msgid "Settings"
|
145 |
msgstr "Settings"
|
146 |
|
147 |
-
|
148 |
-
#: adminimize.php:
|
149 |
-
#: adminimize.php:1118
|
150 |
-
#: inc-options/minimenu.php:14
|
151 |
-
#@ adminimize
|
152 |
-
msgid "Adminimize"
|
153 |
-
msgstr "Adminimize"
|
154 |
-
|
155 |
-
#: adminimize.php:1117
|
156 |
-
#@ adminimize
|
157 |
msgid "Adminimize Options"
|
158 |
msgstr "Adminimize Einstellungen"
|
159 |
|
160 |
-
|
161 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
msgid "Cheatin’ uh?"
|
163 |
msgstr "Cheatin’ uh?"
|
164 |
|
165 |
-
|
166 |
-
#: inc-options/
|
167 |
-
#: inc-options/deinstall_options.php:14
|
168 |
-
#: inc-options/global_options.php:15
|
169 |
-
#: inc-options/im_export_options.php:14
|
170 |
-
#: inc-options/links_options.php:15
|
171 |
#: inc-options/menu_options.php:15
|
172 |
-
#: inc-options/
|
173 |
-
#: inc-options/minimenu.php:82
|
174 |
-
#: inc-options/theme_options.php:14
|
175 |
#: inc-options/wp_nav_menu_options.php:14
|
|
|
|
|
|
|
176 |
#: inc-options/write_cp_options.php:20
|
|
|
|
|
|
|
|
|
|
|
177 |
#: inc-options/write_page_options.php:14
|
178 |
-
#: inc-options/write_post_options.php:15
|
179 |
-
#@ default
|
180 |
msgid "Click to toggle"
|
181 |
msgstr "Zum Umschalten klicken"
|
182 |
|
183 |
-
|
184 |
-
#: inc-options/
|
185 |
-
|
186 |
-
|
187 |
-
|
|
|
188 |
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
193 |
|
194 |
-
|
195 |
-
|
196 |
-
#: inc-options/
|
197 |
-
#: inc-options/
|
198 |
-
#: inc-options/
|
199 |
-
#: inc-options/
|
200 |
-
|
201 |
-
|
202 |
-
#: inc-options/backend_options.php:114
|
203 |
-
#: inc-options/backend_options.php:124
|
204 |
-
#: inc-options/backend_options.php:153
|
205 |
-
#@ adminimize
|
206 |
-
msgid "Default"
|
207 |
-
msgstr "Standard"
|
208 |
|
209 |
-
|
210 |
-
|
211 |
-
#: inc-options/
|
212 |
-
|
213 |
-
|
214 |
-
|
|
|
|
|
|
|
215 |
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
|
|
220 |
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
|
|
|
|
225 |
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
|
|
|
|
|
|
|
|
230 |
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
|
|
|
|
|
|
235 |
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
|
|
240 |
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
|
|
245 |
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
|
|
|
|
250 |
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
|
|
|
|
255 |
|
256 |
-
|
257 |
-
#: inc-options/
|
258 |
-
#: inc-options/
|
259 |
-
#: inc-options/
|
260 |
-
|
261 |
-
|
262 |
-
#@ adminimize
|
263 |
-
msgid "Activate"
|
264 |
-
msgstr "Aktiv"
|
265 |
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
|
|
|
|
270 |
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
|
|
275 |
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
|
|
|
|
|
|
280 |
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
|
|
|
|
|
|
285 |
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
|
|
|
|
|
|
290 |
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
|
|
295 |
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
|
|
|
|
300 |
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
305 |
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
|
|
|
|
310 |
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
|
|
|
|
315 |
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
|
|
|
|
320 |
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
|
|
|
|
325 |
|
326 |
-
|
327 |
-
#: inc-options/
|
328 |
-
#: inc-options/
|
329 |
-
|
330 |
-
|
331 |
-
#: inc-options/wp_nav_menu_options.php:147
|
332 |
-
#: inc-options/write_cp_options.php:243
|
333 |
-
#: inc-options/write_page_options.php:211
|
334 |
-
#: inc-options/write_post_options.php:207
|
335 |
-
#@ adminimize
|
336 |
-
msgid "Update Options"
|
337 |
-
msgstr "Einstellungen aktualisieren"
|
338 |
-
|
339 |
-
#: inc-options/global_options.php:16
|
340 |
-
#: inc-options/minimenu.php:29
|
341 |
-
#@ adminimize
|
342 |
-
msgid "Global options"
|
343 |
-
msgstr "Globale Einstellungen"
|
344 |
-
|
345 |
-
#: inc-options/dashboard_options.php:33
|
346 |
-
#: inc-options/dashboard_options.php:97
|
347 |
-
#: inc-options/global_options.php:23
|
348 |
-
#: inc-options/global_options.php:97
|
349 |
-
#: inc-options/links_options.php:23
|
350 |
-
#: inc-options/links_options.php:101
|
351 |
-
#: inc-options/wp_nav_menu_options.php:22
|
352 |
-
#: inc-options/wp_nav_menu_options.php:122
|
353 |
-
#: inc-options/write_cp_options.php:208
|
354 |
-
#: inc-options/write_page_options.php:186
|
355 |
-
#: inc-options/write_post_options.php:182
|
356 |
-
#@ adminimize
|
357 |
-
msgid "Option"
|
358 |
-
msgstr "Einstellung"
|
359 |
-
|
360 |
-
#: inc-options/dashboard_options.php:36
|
361 |
-
#: inc-options/global_options.php:26
|
362 |
-
#: inc-options/links_options.php:26
|
363 |
-
#: inc-options/menu_options.php:26
|
364 |
-
#: inc-options/wp_nav_menu_options.php:25
|
365 |
-
#: inc-options/write_cp_options.php:33
|
366 |
-
#: inc-options/write_page_options.php:25
|
367 |
-
#: inc-options/write_post_options.php:26
|
368 |
-
#@ adminimize
|
369 |
-
msgid "Deactivate for"
|
370 |
-
msgstr "Deaktiviere für"
|
371 |
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
|
|
376 |
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
|
|
381 |
|
382 |
-
|
383 |
-
#: inc-options/
|
384 |
-
#: inc-options/write_cp_options.php:
|
385 |
-
#: inc-options/write_page_options.php:
|
386 |
-
|
387 |
-
|
388 |
-
#@ default
|
389 |
-
msgid "Screen Options"
|
390 |
-
msgstr "kontextabhängige Optionen"
|
391 |
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
|
|
396 |
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
|
|
|
|
401 |
|
402 |
-
|
403 |
-
#: inc-options/
|
404 |
-
|
405 |
-
|
406 |
-
msgstr "Deine eigenen Einstellungen"
|
407 |
|
408 |
-
|
409 |
-
#: inc-options/
|
410 |
#: inc-options/links_options.php:100
|
411 |
#: inc-options/wp_nav_menu_options.php:121
|
|
|
412 |
#: inc-options/write_cp_options.php:206
|
|
|
413 |
#: inc-options/write_page_options.php:185
|
414 |
-
#: inc-options/write_post_options.php:181
|
415 |
-
#@ adminimize
|
416 |
msgid "ID or class"
|
417 |
msgstr "ID oder Klasse"
|
418 |
|
419 |
-
|
420 |
-
#: inc-options/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
421 |
#: inc-options/links_options.php:107
|
422 |
#: inc-options/wp_nav_menu_options.php:128
|
|
|
423 |
#: inc-options/write_cp_options.php:215
|
|
|
424 |
#: inc-options/write_page_options.php:192
|
425 |
-
#: inc-options/write_post_options.php:188
|
426 |
-
#@ adminimize
|
427 |
msgid "It is possible to add your own IDs or classes from elements and tags. You can find IDs and classes with the FireBug Add-on for Firefox. Assign a value and the associate name per line."
|
428 |
msgstr "Es ist möglich, dass du eigene IDs und Klassen eines Elementes oder Tags hinzufügst. Du findest IDs und Klassen sehr einfach mit dem Firebug Add-on für den Firefox. Füge pro Zeile einen Wert und dazugehörigen Namen ein."
|
429 |
|
430 |
-
|
431 |
-
#: inc-options/
|
432 |
#: inc-options/links_options.php:113
|
433 |
#: inc-options/wp_nav_menu_options.php:134
|
|
|
434 |
#: inc-options/write_cp_options.php:225
|
|
|
435 |
#: inc-options/write_page_options.php:198
|
436 |
-
#: inc-options/write_post_options.php:194
|
437 |
-
#@ adminimize
|
438 |
msgid "Possible nomination for ID or class. Separate multiple nominations through a carriage return."
|
439 |
msgstr "Mögliche Benennung der ID oder Klasse. Trenne Werte durch eine neue Zeile."
|
440 |
|
441 |
-
|
442 |
-
#: inc-options/
|
443 |
#: inc-options/links_options.php:118
|
444 |
#: inc-options/wp_nav_menu_options.php:139
|
|
|
445 |
#: inc-options/write_cp_options.php:233
|
|
|
446 |
#: inc-options/write_page_options.php:203
|
447 |
-
#: inc-options/write_post_options.php:199
|
448 |
-
#@ adminimize
|
449 |
msgid "Possible IDs or classes. Separate multiple values through a carriage return."
|
450 |
msgstr "Mögliche IDs oder Klassen. Trenne Werte durch eine neue Zeile."
|
451 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
452 |
#: inc-options/menu_options.php:16
|
453 |
-
#: inc-options/minimenu.php:
|
454 |
-
#@ adminimize
|
455 |
msgid "Menu Options"
|
456 |
msgstr "Menu Einstellungen"
|
457 |
|
|
|
458 |
#: inc-options/menu_options.php:23
|
459 |
-
#@ adminimize
|
460 |
msgid "Menu options - Menu, <span style=\\\"font-weight: 400;\\\">Submenu</span>"
|
461 |
msgstr "Menu Einstellungen - Menu, <span style=\"font-weight: 400;\">Submenu</span>"
|
462 |
|
463 |
-
|
464 |
-
#: inc-options/
|
465 |
-
#: inc-options/
|
466 |
-
|
467 |
-
|
468 |
-
#@ default
|
469 |
-
msgid "Help"
|
470 |
-
msgstr "Hilfe"
|
471 |
-
|
472 |
-
#: inc-options/write_cp_options.php:100
|
473 |
-
#: inc-options/write_page_options.php:97
|
474 |
-
#: inc-options/write_post_options.php:95
|
475 |
-
#@ adminimize
|
476 |
-
msgid "Permalink"
|
477 |
-
msgstr "Permalink"
|
478 |
|
479 |
-
|
480 |
-
|
481 |
-
msgid "
|
482 |
-
msgstr "
|
483 |
|
484 |
-
|
485 |
-
#: inc-options/
|
486 |
-
|
487 |
-
msgid "
|
488 |
-
msgstr "
|
489 |
|
490 |
-
|
491 |
-
#: inc-options/
|
492 |
-
|
493 |
-
|
494 |
-
msgstr "Siehe auch, Tastaturkürzel"
|
495 |
|
496 |
-
|
497 |
-
#: inc-options/
|
498 |
-
|
499 |
-
|
500 |
-
msgid "h2: Advanced Options"
|
501 |
-
msgstr "h2: Erweiterte Einstellungen"
|
502 |
|
503 |
-
|
504 |
-
#: inc-options/
|
505 |
-
|
506 |
-
|
507 |
-
msgid "Media Buttons (all)"
|
508 |
-
msgstr "Media Buttons (alle)"
|
509 |
|
510 |
-
|
511 |
-
#: inc-options/
|
512 |
-
|
513 |
-
|
514 |
-
msgid "Word count"
|
515 |
-
msgstr "Word count"
|
516 |
|
517 |
-
|
518 |
-
#: inc-options/
|
519 |
-
|
520 |
-
|
521 |
-
msgstr "Titelform"
|
522 |
|
523 |
-
|
524 |
-
#: inc-options/
|
525 |
-
|
526 |
-
|
527 |
-
#@ adminimize
|
528 |
-
msgid "Publish Actions"
|
529 |
-
msgstr "Publish Actions"
|
530 |
|
531 |
-
|
532 |
-
#: inc-options/
|
533 |
-
|
534 |
-
|
535 |
-
#@ adminimize
|
536 |
-
msgid "Discussion"
|
537 |
-
msgstr "Kommentare"
|
538 |
|
539 |
-
|
540 |
-
#: inc-options/
|
541 |
-
|
542 |
-
|
543 |
-
msgstr "Artikelbild"
|
544 |
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
|
|
|
|
549 |
|
550 |
-
|
551 |
-
|
552 |
-
msgid "
|
553 |
-
msgstr "
|
554 |
|
555 |
-
|
556 |
-
|
557 |
-
msgid "
|
558 |
-
msgstr "
|
559 |
-
|
560 |
-
#: inc-options/write_page_options.php:103
|
561 |
-
#@ adminimize
|
562 |
-
msgid "Page Template"
|
563 |
-
msgstr "Seiten Template"
|
564 |
-
|
565 |
-
#: inc-options/write_page_options.php:104
|
566 |
-
#@ adminimize
|
567 |
-
msgid "Page Order"
|
568 |
-
msgstr "Reihenfolge"
|
569 |
-
|
570 |
-
#: inc-options/write_page_options.php:105
|
571 |
-
#@ default
|
572 |
-
msgid "Page Author"
|
573 |
-
msgstr "Seitenautor"
|
574 |
-
|
575 |
-
#: inc-options/write_page_options.php:106
|
576 |
-
#@ default
|
577 |
-
msgid "Page Revisions"
|
578 |
-
msgstr "Page Revisions"
|
579 |
-
|
580 |
-
#: inc-options/write_page_options.php:107
|
581 |
-
#@ adminimize
|
582 |
-
msgid "Related"
|
583 |
-
msgstr "Siehe auch"
|
584 |
-
|
585 |
-
#: inc-options/write_page_options.php:112
|
586 |
-
#@ adminimize
|
587 |
-
msgid "Page Slug"
|
588 |
-
msgstr "Titelform"
|
589 |
-
|
590 |
-
#: inc-options/write_page_options.php:124
|
591 |
-
#@ adminimize
|
592 |
-
msgid "Page Image"
|
593 |
-
msgstr "Artikelbild"
|
594 |
-
|
595 |
-
#: inc-options/menu_options.php:67
|
596 |
-
#: inc-options/menu_options.php:119
|
597 |
-
#@ adminimize
|
598 |
-
msgid "After activate the check box it heavy attitudes will change."
|
599 |
-
msgstr "Wenn die Checkbox aktiv ist, dann wird das Ändern von Einstellungen erschwert."
|
600 |
-
|
601 |
-
#: inc-options/menu_options.php:102
|
602 |
-
#@ default
|
603 |
-
msgid "Profile"
|
604 |
-
msgstr "Profile"
|
605 |
-
|
606 |
-
#: inc-options/minimenu.php:38
|
607 |
-
#: inc-options/write_post_options.php:16
|
608 |
-
#: inc-options/write_post_options.php:23
|
609 |
-
#@ adminimize
|
610 |
-
msgid "Write options - Post"
|
611 |
-
msgstr "Schreiben Einstellungen - Beiträge"
|
612 |
-
|
613 |
-
#: inc-options/write_post_options.php:181
|
614 |
-
#@ adminimize
|
615 |
-
msgid "Your own post options"
|
616 |
-
msgstr "Deine eigenen Beitrags-Einstellungen"
|
617 |
-
|
618 |
-
#: inc-options/minimenu.php:41
|
619 |
-
#: inc-options/write_page_options.php:15
|
620 |
-
#: inc-options/write_page_options.php:22
|
621 |
-
#@ adminimize
|
622 |
-
msgid "Write options - Page"
|
623 |
-
msgstr "Schreiben Einstellungen - Seiten"
|
624 |
-
|
625 |
-
#: inc-options/write_page_options.php:185
|
626 |
-
#@ adminimize
|
627 |
-
msgid "Your own page options"
|
628 |
-
msgstr "Deine eigenen Seiten-Einstellungen"
|
629 |
-
|
630 |
-
#: inc-options/links_options.php:16
|
631 |
-
#: inc-options/minimenu.php:61
|
632 |
-
#@ adminimize
|
633 |
-
msgid "Links options"
|
634 |
-
msgstr "Link Einstellungen"
|
635 |
-
|
636 |
-
#: inc-options/links_options.php:49
|
637 |
-
#@ default
|
638 |
-
msgid "Name"
|
639 |
-
msgstr "Name"
|
640 |
-
|
641 |
-
#: inc-options/links_options.php:50
|
642 |
-
#@ default
|
643 |
-
msgid "Web Address"
|
644 |
-
msgstr "Web-Adresse"
|
645 |
-
|
646 |
-
#: inc-options/links_options.php:51
|
647 |
-
#@ default
|
648 |
-
msgid "Description"
|
649 |
-
msgstr "Beschreibung"
|
650 |
-
|
651 |
-
#: inc-options/links_options.php:53
|
652 |
-
#@ default
|
653 |
-
msgid "Target"
|
654 |
-
msgstr "Target"
|
655 |
-
|
656 |
-
#: inc-options/links_options.php:54
|
657 |
-
#@ default
|
658 |
-
msgid "Link Relationship (XFN)"
|
659 |
-
msgstr "Link-Beziehungen (XFN)"
|
660 |
|
661 |
-
|
662 |
-
|
663 |
-
msgid "
|
664 |
-
msgstr "
|
665 |
|
666 |
-
|
667 |
#: inc-options/theme_options.php:15
|
668 |
#: inc-options/theme_options.php:100
|
669 |
-
|
670 |
msgid "Set Theme"
|
671 |
msgstr "Theme zuweisen"
|
672 |
|
|
|
673 |
#: inc-options/theme_options.php:22
|
674 |
-
#@ adminimize
|
675 |
msgid "For better peformance with many users on your blog; load only userlist, when you will change the theme options for users."
|
676 |
msgstr "Für eine bessere Performance bei vielen Usern in deinem Blog werden die Userdaten nur nach Aufforderung geladen."
|
677 |
|
|
|
678 |
#: inc-options/theme_options.php:25
|
679 |
-
#@ adminimize
|
680 |
msgid "Load User Data"
|
681 |
msgstr "Lade User Daten"
|
682 |
|
|
|
683 |
#: inc-options/theme_options.php:36
|
684 |
-
#@ default
|
685 |
msgid "User-ID"
|
686 |
msgstr "User-ID"
|
687 |
|
|
|
688 |
#: inc-options/theme_options.php:37
|
689 |
-
#@ default
|
690 |
msgid "Username"
|
691 |
msgstr "Benutzername"
|
692 |
|
|
|
693 |
#: inc-options/theme_options.php:38
|
694 |
-
#@ default
|
695 |
msgid "Display name publicly as"
|
696 |
msgstr "Name im Blog"
|
697 |
|
|
|
698 |
#: inc-options/theme_options.php:39
|
699 |
-
#@ default
|
700 |
msgid "Admin-Color Scheme"
|
701 |
msgstr "Admin-Color Scheme"
|
702 |
|
|
|
703 |
#: inc-options/theme_options.php:40
|
704 |
-
#@ default
|
705 |
msgid "User Level"
|
706 |
msgstr "User Level"
|
707 |
|
|
|
708 |
#: inc-options/theme_options.php:41
|
709 |
-
#@ default
|
710 |
msgid "Role"
|
711 |
msgstr "Rolle"
|
712 |
|
|
|
713 |
#: inc-options/deinstall_options.php:15
|
714 |
-
#: inc-options/minimenu.php:
|
715 |
-
#@ adminimize
|
716 |
msgid "Deinstall Options"
|
717 |
msgstr "Einstellungen deinstallieren"
|
718 |
|
|
|
719 |
#: inc-options/deinstall_options.php:18
|
720 |
-
#@ adminimize
|
721 |
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."
|
722 |
msgstr "Nutze diese Option, um die Einstellungen für das Plugin in der Datenbank zu löschen. Das Plugin entfernt die Einträge <strong>nicht</strong>, wenn es deaktiviert wird!"
|
723 |
|
|
|
724 |
#: inc-options/deinstall_options.php:22
|
725 |
-
#@ adminimize
|
726 |
msgid "Delete Options"
|
727 |
msgstr "Einstellungen Löschen"
|
728 |
|
729 |
-
|
730 |
-
#: inc-options/
|
731 |
-
|
732 |
-
msgid "
|
733 |
-
msgstr "
|
734 |
-
|
735 |
-
#: inc-options/minimenu.php:94
|
736 |
-
#@ adminimize
|
737 |
-
msgid "PayPal - The safer, easier way to pay online!"
|
738 |
-
msgstr "PayPal - Der sichere und einfache Weg zu zahlen!"
|
739 |
|
740 |
-
|
741 |
-
|
742 |
-
msgid "
|
743 |
-
msgstr "
|
744 |
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
|
|
749 |
|
750 |
-
|
751 |
-
#: inc-options/
|
752 |
-
|
753 |
-
|
754 |
-
|
|
|
755 |
|
756 |
-
|
757 |
-
|
758 |
-
msgid "
|
759 |
-
msgstr "
|
760 |
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
|
|
765 |
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
|
|
770 |
|
771 |
-
|
772 |
-
|
773 |
-
msgid "
|
774 |
-
msgstr "
|
775 |
|
776 |
-
|
777 |
-
|
778 |
-
msgid "
|
779 |
-
msgstr "
|
780 |
|
781 |
-
|
782 |
-
|
783 |
-
msgid "
|
784 |
-
msgstr "
|
785 |
|
786 |
-
|
787 |
-
#: inc-options/
|
788 |
-
|
789 |
-
|
790 |
-
#: inc-options/im_export_options.php:41
|
791 |
-
#: inc-options/links_options.php:129
|
792 |
-
#: inc-options/menu_options.php:157
|
793 |
-
#: inc-options/minimenu.php:99
|
794 |
-
#: inc-options/theme_options.php:105
|
795 |
-
#: inc-options/wp_nav_menu_options.php:149
|
796 |
-
#: inc-options/write_cp_options.php:248
|
797 |
-
#: inc-options/write_page_options.php:213
|
798 |
-
#: inc-options/write_post_options.php:209
|
799 |
-
#@ adminimize
|
800 |
-
msgid "scroll to top"
|
801 |
-
msgstr "Nach oben"
|
802 |
|
803 |
-
|
804 |
-
|
805 |
-
msgid "
|
806 |
-
msgstr "
|
807 |
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
|
|
|
812 |
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
|
|
817 |
|
818 |
-
#: inc-options/backend_options.php:
|
819 |
-
|
820 |
-
|
821 |
-
msgstr "Stellt in die Meta Box der Kategorien in voller Höhe dar, kein Scrollbar und kein Leerraum."
|
822 |
|
823 |
-
#: inc-options/backend_options.php:
|
824 |
-
|
825 |
-
|
826 |
-
msgstr "Im Footer kann ein Hinweis auf die aktive Veränderung des Standard-Layout gesetzt werden, (x)HTML erlaubt."
|
827 |
|
828 |
-
#: inc-options/backend_options.php:
|
829 |
-
|
830 |
-
|
831 |
-
msgstr "Dashboard inaktiv, Weiterleitung nach"
|
832 |
|
833 |
-
#: inc-options/
|
834 |
-
|
835 |
-
|
836 |
-
#@ default
|
837 |
-
#@ adminimize
|
838 |
-
msgid "HTML Editor Button"
|
839 |
-
msgstr "HTML Editor Button"
|
840 |
|
841 |
-
|
842 |
-
|
843 |
-
msgid "
|
844 |
-
msgstr "
|
845 |
|
846 |
-
|
847 |
-
#:
|
848 |
-
|
849 |
-
|
850 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
851 |
|
852 |
-
|
853 |
-
#:
|
854 |
-
|
855 |
-
|
856 |
-
|
|
|
|
|
|
|
|
|
857 |
|
858 |
-
|
859 |
-
#:
|
860 |
-
|
861 |
-
|
862 |
-
msgstr ""
|
863 |
|
864 |
-
|
865 |
-
#:
|
866 |
-
|
867 |
-
|
868 |
-
msgstr ""
|
869 |
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
|
|
|
|
874 |
|
875 |
-
|
876 |
-
|
877 |
-
msgid "
|
878 |
-
msgstr "
|
879 |
|
880 |
-
|
881 |
-
#: inc-options/
|
882 |
-
|
883 |
-
|
884 |
-
msgstr "Title"
|
885 |
|
886 |
-
|
887 |
-
|
888 |
-
msgid "
|
889 |
-
msgstr "
|
890 |
|
891 |
-
|
892 |
-
|
893 |
-
msgid "
|
894 |
-
msgstr "
|
895 |
|
896 |
-
|
897 |
-
|
898 |
-
msgid "
|
899 |
-
msgstr "
|
900 |
|
901 |
-
|
902 |
-
|
903 |
-
msgid "
|
904 |
-
msgstr "
|
905 |
|
906 |
-
|
907 |
-
|
908 |
-
msgid "
|
909 |
-
msgstr "
|
910 |
|
911 |
-
|
912 |
-
|
913 |
-
msgid "
|
914 |
-
msgstr "
|
915 |
|
916 |
-
|
917 |
-
#: inc-options/
|
918 |
-
|
919 |
-
|
920 |
-
msgid "Theme Locations"
|
921 |
-
msgstr "Anordnung im Theme"
|
922 |
|
923 |
-
|
924 |
-
|
925 |
-
msgid "
|
926 |
-
msgstr "
|
927 |
|
928 |
-
|
929 |
-
|
930 |
-
msgid "
|
931 |
-
msgstr "
|
932 |
|
933 |
-
|
934 |
-
|
935 |
-
msgid "
|
936 |
-
msgstr "
|
937 |
|
938 |
-
|
939 |
-
#: inc-options/
|
940 |
-
|
941 |
-
|
942 |
-
msgid "Messages"
|
943 |
-
msgstr "Mitteilungen"
|
944 |
|
945 |
-
|
946 |
-
#: inc-options/
|
947 |
-
|
948 |
-
|
949 |
-
msgid "Quick Edit Link"
|
950 |
-
msgstr "QuickEdit Link"
|
951 |
|
952 |
-
|
953 |
-
#: inc-options/
|
954 |
-
|
955 |
-
|
956 |
-
#: inc-options/write_page_options.php:129
|
957 |
-
#: inc-options/write_page_options.php:134
|
958 |
-
#: inc-options/write_page_options.php:137
|
959 |
-
#: inc-options/write_post_options.php:123
|
960 |
-
#: inc-options/write_post_options.php:127
|
961 |
-
#: inc-options/write_post_options.php:130
|
962 |
-
#: inc-options/write_post_options.php:133
|
963 |
-
#@ adminimize
|
964 |
-
msgid "QE"
|
965 |
-
msgstr "QE"
|
966 |
|
967 |
-
|
968 |
-
#: inc-options/
|
969 |
-
|
970 |
-
|
971 |
-
msgid "Inline Edit Left"
|
972 |
-
msgstr "Inline Edit Links"
|
973 |
|
974 |
-
|
975 |
-
#: inc-options/
|
976 |
-
|
977 |
-
|
978 |
-
msgid "All Labels"
|
979 |
-
msgstr "Alle labels"
|
980 |
|
981 |
-
|
982 |
-
#: inc-options/
|
983 |
-
|
984 |
-
|
985 |
-
#@ adminimize
|
986 |
-
msgid "Date"
|
987 |
-
msgstr "Datum"
|
988 |
|
989 |
-
|
990 |
-
#: inc-options/
|
991 |
-
|
992 |
-
|
993 |
-
msgid "Password and Private"
|
994 |
-
msgstr "Passwort und Privat-Flag"
|
995 |
|
996 |
-
|
997 |
-
#: inc-options/
|
998 |
-
|
999 |
-
|
1000 |
-
msgid "Inline Edit Right"
|
1001 |
-
msgstr "Inline Edit rechts"
|
1002 |
|
1003 |
-
|
1004 |
-
|
1005 |
-
msgid "
|
1006 |
-
msgstr "
|
1007 |
|
1008 |
-
|
1009 |
-
|
1010 |
-
msgid "
|
1011 |
-
msgstr "
|
1012 |
|
1013 |
-
|
1014 |
-
#: inc-options/
|
1015 |
-
|
1016 |
-
|
1017 |
-
msgid "Cancel/Save Button"
|
1018 |
-
msgstr "Abbrechen/Aktualisieren Button"
|
1019 |
|
1020 |
-
|
1021 |
-
#: inc-options/
|
1022 |
-
|
1023 |
-
|
1024 |
-
msgstr "Inline Edit mitte"
|
1025 |
|
1026 |
-
|
1027 |
-
#: inc-options/
|
1028 |
-
|
1029 |
-
|
1030 |
-
msgstr "Kategorien Title"
|
1031 |
|
1032 |
-
|
1033 |
-
#: inc-options/
|
1034 |
-
|
1035 |
-
|
1036 |
-
msgstr "Kategorien Liste"
|
1037 |
|
1038 |
-
|
1039 |
-
#: inc-options/
|
1040 |
-
|
1041 |
-
|
1042 |
-
msgstr "Status, Sticky"
|
1043 |
|
1044 |
-
|
1045 |
-
|
1046 |
-
msgid "
|
1047 |
-
msgstr "
|
1048 |
|
1049 |
-
|
1050 |
-
#: inc-options/
|
1051 |
-
#: inc-options/
|
1052 |
-
|
1053 |
-
|
1054 |
-
msgstr "Einstellungen Schreiben"
|
1055 |
|
1056 |
-
|
1057 |
-
|
1058 |
-
msgid "
|
1059 |
-
msgstr "
|
1060 |
|
1061 |
-
|
1062 |
-
|
1063 |
-
|
1064 |
-
|
1065 |
-
msgstr "Deine eigenen %s Einstellungen"
|
1066 |
|
1067 |
-
|
1068 |
-
#: inc-options/
|
1069 |
-
|
1070 |
-
|
1071 |
-
msgstr "Dashboard Einstellungen"
|
1072 |
|
1073 |
-
|
1074 |
-
|
1075 |
-
msgid "
|
1076 |
-
msgstr "
|
1077 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1078 |
#: inc-options/minimenu.php:87
|
1079 |
-
|
1080 |
-
|
1081 |
-
msgstr "Weitere Informationen: Besuchen Sie die <a href=\"http://wordpress.org/extend/plugins/adminimize/\">Plugin Website</a> für weitere Informationen oder um die neueste Version des Plugins erhalten."
|
1082 |
|
1083 |
-
|
1084 |
-
|
1085 |
-
|
1086 |
-
|
|
|
|
|
1087 |
|
1088 |
-
|
1089 |
-
|
1090 |
-
msgid "
|
1091 |
-
msgstr ""
|
1092 |
|
1093 |
-
|
1094 |
-
#:
|
1095 |
-
|
1096 |
-
|
1097 |
-
msgstr ""
|
1098 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1099 |
#: inc-options/settings_notice.php:17
|
1100 |
-
#@ adminimize
|
1101 |
msgid "Please note: The Adminimize settings page ignores the Menu Options below and displays the menu with all entries.<br /><span style=\"font-weight: 300;\">To view your changes to the menu you need to navigate away from the Adminimize settings page.</span>"
|
1102 |
msgstr "Beachte: Die Einstellungen des Plugins ignorieren Menu Einstellungen um alle Einträge darzustellen.<br /><span style=\\\"font-weight: 300;\\\">Um die Einstellungen an deiner Rolle zu prüfen, musst du eine andere Seite im Backend aufrufen.</span>"
|
1103 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Adminimize\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-10-23 23:23+0100\n"
|
6 |
+
"PO-Revision-Date: 2012-10-23 23:27+0100\n"
|
7 |
"Last-Translator: Frank Bueltge <frank@bueltge.de>\n"
|
8 |
"Language-Team: Frank Bueltge <frank@bueltge.de>\n"
|
9 |
+
"Language: \n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
|
|
|
14 |
"X-Poedit-SourceCharset: utf-8\n"
|
15 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
16 |
+
"X-Poedit-Basepath: /var/www/wp-plugins/adminimize/\n"
|
17 |
+
"X-Textdomain-Support: yes\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
|
|
19 |
|
20 |
+
# @ adminimize
|
21 |
#: adminimize.php:127
|
|
|
22 |
msgid "Unknown error."
|
23 |
msgstr "Unbekannter Fehler."
|
24 |
|
25 |
+
# @ adminimize
|
26 |
#: adminimize.php:136
|
|
|
27 |
msgid "The updates were saved."
|
28 |
msgstr "Die Einstellungen wurden gespeichert"
|
29 |
|
30 |
+
# @ adminimize
|
31 |
#: adminimize.php:137
|
|
|
32 |
msgid "You have not enough rights to edit entries in the database."
|
33 |
msgstr "Du hast nicht ausreichend Rechte um diese Aktion durchzuführen!"
|
34 |
|
35 |
+
# @ adminimize
|
36 |
+
#: adminimize.php:138
|
37 |
+
msgid "All entries in the database were imported."
|
38 |
+
msgstr "Alle Einträge wurden in die Datenbank geschrieben."
|
39 |
+
|
40 |
+
# @ adminimize
|
41 |
#: adminimize.php:139
|
|
|
42 |
msgid "All entries in the database were deleted."
|
43 |
msgstr "Die Einstellungen wurde gelöscht!"
|
44 |
|
45 |
+
# @ adminimize
|
46 |
#: adminimize.php:140
|
|
|
47 |
msgid "Set the checkbox on deinstall-button."
|
48 |
msgstr "Checkbox setzen, wenn wirklich deinstalliert werden soll!"
|
49 |
|
50 |
+
# @ adminimize
|
51 |
#: adminimize.php:141
|
|
|
52 |
msgid "Can't load menu and submenu."
|
53 |
msgstr "Menu und Submenu können nicht geladen werden!"
|
54 |
|
55 |
+
# @ adminimize
|
56 |
#: adminimize.php:142
|
|
|
57 |
msgid "Backend-Theme was activated!"
|
58 |
msgstr "Backend-Theme wurde zugewiesen!"
|
59 |
|
60 |
+
# @ adminimize
|
61 |
#: adminimize.php:143
|
|
|
62 |
msgid "Load user data to themes was successful."
|
63 |
msgstr "Das Laden der User-Daten zum Theme war erfolgreich."
|
64 |
|
65 |
+
# @ default
|
66 |
+
# @ adminimize
|
67 |
+
#: adminimize.php:511
|
68 |
+
#: inc-options/write_post_options.php:97
|
69 |
#: inc-options/links_options.php:52
|
70 |
#: inc-options/write_cp_options.php:103
|
|
|
|
|
|
|
71 |
msgid "Categories"
|
72 |
msgstr "Kategorien"
|
73 |
|
74 |
+
# @ default
|
75 |
+
#: adminimize.php:517
|
76 |
+
#: adminimize.php:528
|
77 |
msgid "+ Add New Category"
|
78 |
msgstr "+ Add New Category"
|
79 |
|
80 |
+
# @ default
|
81 |
+
#: adminimize.php:519
|
82 |
+
#: adminimize.php:530
|
83 |
msgid "New category name"
|
84 |
msgstr "New category name"
|
85 |
|
86 |
+
# @ default
|
87 |
+
#: adminimize.php:520
|
88 |
+
#: adminimize.php:532
|
89 |
msgid "Parent category"
|
90 |
msgstr "Parent category"
|
91 |
|
92 |
+
# @ default
|
93 |
+
#: adminimize.php:521
|
94 |
+
#: adminimize.php:533
|
95 |
msgid "Add"
|
96 |
msgstr "Add"
|
97 |
|
98 |
+
# @ default
|
99 |
+
# @ adminimize
|
100 |
+
#: adminimize.php:530
|
101 |
#: inc-options/write_post_options.php:98
|
102 |
+
#: inc-options/write_cp_options.php:104
|
|
|
103 |
msgid "Add New Category"
|
104 |
msgstr "Add New Category"
|
105 |
|
106 |
+
# @ default
|
107 |
+
#: adminimize.php:615
|
108 |
+
#: adminimize.php:618
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
msgid "Dashboard"
|
110 |
msgstr "Dashboard"
|
111 |
|
112 |
+
# @ default
|
113 |
+
#: adminimize.php:679
|
114 |
+
#: adminimize.php:681
|
115 |
+
#: adminimize.php:702
|
116 |
+
#: adminimize.php:704
|
117 |
+
#: adminimize.php:1077
|
|
|
|
|
|
|
118 |
msgid "Log Out"
|
119 |
msgstr "Log Out"
|
120 |
|
121 |
+
# @ default
|
122 |
+
#: adminimize.php:1107
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
123 |
msgid "Settings"
|
124 |
msgstr "Settings"
|
125 |
|
126 |
+
# @ adminimize
|
127 |
+
#: adminimize.php:1134
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
msgid "Adminimize Options"
|
129 |
msgstr "Adminimize Einstellungen"
|
130 |
|
131 |
+
# @ adminimize
|
132 |
+
#: adminimize.php:1135
|
133 |
+
#: inc-options/minimenu.php:18
|
134 |
+
msgid "Adminimize"
|
135 |
+
msgstr "Adminimize"
|
136 |
+
|
137 |
+
# @ default
|
138 |
+
#: adminimize.php:1158
|
139 |
msgid "Cheatin’ uh?"
|
140 |
msgstr "Cheatin’ uh?"
|
141 |
|
142 |
+
# @ default
|
143 |
+
#: inc-options/write_post_options.php:15
|
|
|
|
|
|
|
|
|
144 |
#: inc-options/menu_options.php:15
|
145 |
+
#: inc-options/links_options.php:15
|
|
|
|
|
146 |
#: inc-options/wp_nav_menu_options.php:14
|
147 |
+
#: inc-options/theme_options.php:14
|
148 |
+
#: inc-options/deinstall_options.php:14
|
149 |
+
#: inc-options/dashboard_options.php:16
|
150 |
#: inc-options/write_cp_options.php:20
|
151 |
+
#: inc-options/global_options.php:15
|
152 |
+
#: inc-options/backend_options.php:15
|
153 |
+
#: inc-options/im_export_options.php:14
|
154 |
+
#: inc-options/minimenu.php:22
|
155 |
+
#: inc-options/minimenu.php:86
|
156 |
#: inc-options/write_page_options.php:14
|
|
|
|
|
157 |
msgid "Click to toggle"
|
158 |
msgstr "Zum Umschalten klicken"
|
159 |
|
160 |
+
# @ adminimize
|
161 |
+
#: inc-options/write_post_options.php:16
|
162 |
+
#: inc-options/write_post_options.php:23
|
163 |
+
#: inc-options/minimenu.php:42
|
164 |
+
msgid "Write options - Post"
|
165 |
+
msgstr "Schreiben Einstellungen - Beiträge"
|
166 |
|
167 |
+
# @ adminimize
|
168 |
+
#: inc-options/write_post_options.php:26
|
169 |
+
#: inc-options/menu_options.php:26
|
170 |
+
#: inc-options/links_options.php:26
|
171 |
+
#: inc-options/wp_nav_menu_options.php:25
|
172 |
+
#: inc-options/dashboard_options.php:36
|
173 |
+
#: inc-options/write_cp_options.php:33
|
174 |
+
#: inc-options/global_options.php:26
|
175 |
+
#: inc-options/write_page_options.php:25
|
176 |
+
msgid "Deactivate for"
|
177 |
+
msgstr "Deaktiviere für"
|
178 |
|
179 |
+
# @ adminimize
|
180 |
+
# @ default
|
181 |
+
#: inc-options/write_post_options.php:92
|
182 |
+
#: inc-options/wp_nav_menu_options.php:48
|
183 |
+
#: inc-options/write_cp_options.php:98
|
184 |
+
#: inc-options/write_page_options.php:94
|
185 |
+
msgid "Help"
|
186 |
+
msgstr "Hilfe"
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
|
188 |
+
# @ adminimize
|
189 |
+
# @ default
|
190 |
+
#: inc-options/write_post_options.php:93
|
191 |
+
#: inc-options/wp_nav_menu_options.php:49
|
192 |
+
#: inc-options/write_cp_options.php:99
|
193 |
+
#: inc-options/global_options.php:50
|
194 |
+
#: inc-options/write_page_options.php:95
|
195 |
+
msgid "Screen Options"
|
196 |
+
msgstr "kontextabhängige Optionen"
|
197 |
|
198 |
+
# @ adminimize
|
199 |
+
#: inc-options/write_post_options.php:94
|
200 |
+
#: inc-options/write_page_options.php:96
|
201 |
+
msgid "Title"
|
202 |
+
msgstr "Title"
|
203 |
|
204 |
+
# @ adminimize
|
205 |
+
#: inc-options/write_post_options.php:95
|
206 |
+
#: inc-options/write_cp_options.php:100
|
207 |
+
#: inc-options/write_page_options.php:97
|
208 |
+
msgid "Permalink"
|
209 |
+
msgstr "Permalink"
|
210 |
|
211 |
+
# @ adminimize
|
212 |
+
# @ default
|
213 |
+
#: inc-options/write_post_options.php:96
|
214 |
+
#: inc-options/write_post_options.php:131
|
215 |
+
#: inc-options/write_cp_options.php:101
|
216 |
+
#: inc-options/write_cp_options.php:139
|
217 |
+
msgid "Tags"
|
218 |
+
msgstr "Tags"
|
219 |
|
220 |
+
# @ default
|
221 |
+
# @ adminimize
|
222 |
+
#: inc-options/write_post_options.php:99
|
223 |
+
#: inc-options/write_page_options.php:100
|
224 |
+
#: inc-options/write_page_options.php:131
|
225 |
+
msgid "Date"
|
226 |
+
msgstr "Datum"
|
227 |
|
228 |
+
# @ adminimize
|
229 |
+
#: inc-options/write_post_options.php:100
|
230 |
+
#: inc-options/write_cp_options.php:105
|
231 |
+
msgid "Password Protect This Post"
|
232 |
+
msgstr "Diesen Artikel durch ein Passwort schützen"
|
233 |
|
234 |
+
# @ adminimize
|
235 |
+
#: inc-options/write_post_options.php:101
|
236 |
+
#: inc-options/write_cp_options.php:106
|
237 |
+
msgid "Related, Shortcuts"
|
238 |
+
msgstr "Siehe auch, Tastaturkürzel"
|
239 |
|
240 |
+
# @ adminimize
|
241 |
+
#: inc-options/write_post_options.php:102
|
242 |
+
#: inc-options/write_cp_options.php:107
|
243 |
+
#: inc-options/write_page_options.php:108
|
244 |
+
msgid "Messages"
|
245 |
+
msgstr "Mitteilungen"
|
246 |
|
247 |
+
# @ adminimize
|
248 |
+
#: inc-options/write_post_options.php:103
|
249 |
+
#: inc-options/write_cp_options.php:108
|
250 |
+
#: inc-options/write_page_options.php:109
|
251 |
+
msgid "h2: Advanced Options"
|
252 |
+
msgstr "h2: Erweiterte Einstellungen"
|
253 |
|
254 |
+
# @ adminimize
|
255 |
+
#: inc-options/write_post_options.php:104
|
256 |
+
#: inc-options/write_cp_options.php:109
|
257 |
+
#: inc-options/write_page_options.php:110
|
258 |
+
msgid "Media Buttons (all)"
|
259 |
+
msgstr "Media Buttons (alle)"
|
|
|
|
|
|
|
260 |
|
261 |
+
# @ adminimize
|
262 |
+
#: inc-options/write_post_options.php:105
|
263 |
+
#: inc-options/write_cp_options.php:110
|
264 |
+
#: inc-options/write_page_options.php:111
|
265 |
+
msgid "Word count"
|
266 |
+
msgstr "Word count"
|
267 |
|
268 |
+
# @ adminimize
|
269 |
+
#: inc-options/write_post_options.php:106
|
270 |
+
#: inc-options/write_cp_options.php:111
|
271 |
+
msgid "Post Slug"
|
272 |
+
msgstr "Titelform"
|
273 |
|
274 |
+
# @ adminimize
|
275 |
+
#: inc-options/write_post_options.php:107
|
276 |
+
#: inc-options/links_options.php:56
|
277 |
+
#: inc-options/write_cp_options.php:112
|
278 |
+
#: inc-options/write_page_options.php:113
|
279 |
+
msgid "Publish Actions"
|
280 |
+
msgstr "Publish Actions"
|
281 |
|
282 |
+
# @ default
|
283 |
+
# @ adminimize
|
284 |
+
#: inc-options/write_post_options.php:108
|
285 |
+
#: inc-options/write_cp_options.php:113
|
286 |
+
#: inc-options/write_page_options.php:114
|
287 |
+
msgid "Discussion"
|
288 |
+
msgstr "Kommentare"
|
289 |
|
290 |
+
# @ default
|
291 |
+
# @ adminimize
|
292 |
+
#: inc-options/write_post_options.php:109
|
293 |
+
#: inc-options/write_cp_options.php:114
|
294 |
+
#: inc-options/write_page_options.php:115
|
295 |
+
msgid "HTML Editor Button"
|
296 |
+
msgstr "HTML Editor Button"
|
297 |
|
298 |
+
# @ adminimize
|
299 |
+
#: inc-options/write_post_options.php:118
|
300 |
+
#: inc-options/write_cp_options.php:124
|
301 |
+
msgid "Post Thumbnail"
|
302 |
+
msgstr "Artikelbild"
|
303 |
|
304 |
+
# @ adminimize
|
305 |
+
#: inc-options/write_post_options.php:122
|
306 |
+
#: inc-options/write_cp_options.php:130
|
307 |
+
#: inc-options/write_page_options.php:128
|
308 |
+
msgid "Quick Edit Link"
|
309 |
+
msgstr "QuickEdit Link"
|
310 |
|
311 |
+
# @ adminimize
|
312 |
+
#: inc-options/write_post_options.php:123
|
313 |
+
#: inc-options/write_post_options.php:127
|
314 |
+
#: inc-options/write_post_options.php:130
|
315 |
+
#: inc-options/write_post_options.php:133
|
316 |
+
#: inc-options/write_cp_options.php:131
|
317 |
+
#: inc-options/write_cp_options.php:135
|
318 |
+
#: inc-options/write_cp_options.php:138
|
319 |
+
#: inc-options/write_cp_options.php:141
|
320 |
+
#: inc-options/write_page_options.php:129
|
321 |
+
#: inc-options/write_page_options.php:134
|
322 |
+
#: inc-options/write_page_options.php:137
|
323 |
+
msgid "QE"
|
324 |
+
msgstr "QE"
|
325 |
|
326 |
+
# @ adminimize
|
327 |
+
#: inc-options/write_post_options.php:123
|
328 |
+
#: inc-options/write_cp_options.php:131
|
329 |
+
#: inc-options/write_page_options.php:129
|
330 |
+
msgid "Inline Edit Left"
|
331 |
+
msgstr "Inline Edit Links"
|
332 |
|
333 |
+
# @ adminimize
|
334 |
+
#: inc-options/write_post_options.php:124
|
335 |
+
#: inc-options/write_cp_options.php:132
|
336 |
+
#: inc-options/write_page_options.php:130
|
337 |
+
msgid "All Labels"
|
338 |
+
msgstr "Alle labels"
|
339 |
|
340 |
+
# @ default
|
341 |
+
#: inc-options/write_post_options.php:125
|
342 |
+
#: inc-options/write_cp_options.php:133
|
343 |
+
#: inc-options/write_page_options.php:132
|
344 |
+
msgid "Author"
|
345 |
+
msgstr "Author"
|
346 |
|
347 |
+
# @ adminimize
|
348 |
+
#: inc-options/write_post_options.php:126
|
349 |
+
#: inc-options/write_cp_options.php:134
|
350 |
+
#: inc-options/write_page_options.php:133
|
351 |
+
msgid "Password and Private"
|
352 |
+
msgstr "Passwort und Privat-Flag"
|
353 |
|
354 |
+
# @ adminimize
|
355 |
+
#: inc-options/write_post_options.php:127
|
356 |
+
#: inc-options/write_cp_options.php:135
|
357 |
+
msgid "Inline Edit Center"
|
358 |
+
msgstr "Inline Edit mitte"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
359 |
|
360 |
+
# @ adminimize
|
361 |
+
#: inc-options/write_post_options.php:128
|
362 |
+
#: inc-options/write_cp_options.php:136
|
363 |
+
msgid "Categories Title"
|
364 |
+
msgstr "Kategorien Title"
|
365 |
|
366 |
+
# @ adminimize
|
367 |
+
#: inc-options/write_post_options.php:129
|
368 |
+
#: inc-options/write_cp_options.php:137
|
369 |
+
msgid "Categories List"
|
370 |
+
msgstr "Kategorien Liste"
|
371 |
|
372 |
+
# @ adminimize
|
373 |
+
#: inc-options/write_post_options.php:130
|
374 |
+
#: inc-options/write_cp_options.php:138
|
375 |
+
#: inc-options/write_page_options.php:134
|
376 |
+
msgid "Inline Edit Right"
|
377 |
+
msgstr "Inline Edit rechts"
|
|
|
|
|
|
|
378 |
|
379 |
+
# @ adminimize
|
380 |
+
#: inc-options/write_post_options.php:132
|
381 |
+
#: inc-options/write_cp_options.php:140
|
382 |
+
msgid "Status, Sticky"
|
383 |
+
msgstr "Status, Sticky"
|
384 |
|
385 |
+
# @ adminimize
|
386 |
+
#: inc-options/write_post_options.php:133
|
387 |
+
#: inc-options/write_cp_options.php:141
|
388 |
+
#: inc-options/write_page_options.php:137
|
389 |
+
msgid "Cancel/Save Button"
|
390 |
+
msgstr "Abbrechen/Aktualisieren Button"
|
391 |
|
392 |
+
# @ adminimize
|
393 |
+
#: inc-options/write_post_options.php:181
|
394 |
+
msgid "Your own post options"
|
395 |
+
msgstr "Deine eigenen Beitrags-Einstellungen"
|
|
|
396 |
|
397 |
+
# @ adminimize
|
398 |
+
#: inc-options/write_post_options.php:181
|
399 |
#: inc-options/links_options.php:100
|
400 |
#: inc-options/wp_nav_menu_options.php:121
|
401 |
+
#: inc-options/dashboard_options.php:96
|
402 |
#: inc-options/write_cp_options.php:206
|
403 |
+
#: inc-options/global_options.php:96
|
404 |
#: inc-options/write_page_options.php:185
|
|
|
|
|
405 |
msgid "ID or class"
|
406 |
msgstr "ID oder Klasse"
|
407 |
|
408 |
+
# @ adminimize
|
409 |
+
#: inc-options/write_post_options.php:182
|
410 |
+
#: inc-options/links_options.php:23
|
411 |
+
#: inc-options/links_options.php:101
|
412 |
+
#: inc-options/wp_nav_menu_options.php:22
|
413 |
+
#: inc-options/wp_nav_menu_options.php:122
|
414 |
+
#: inc-options/dashboard_options.php:33
|
415 |
+
#: inc-options/dashboard_options.php:97
|
416 |
+
#: inc-options/write_cp_options.php:208
|
417 |
+
#: inc-options/global_options.php:23
|
418 |
+
#: inc-options/global_options.php:97
|
419 |
+
#: inc-options/write_page_options.php:186
|
420 |
+
msgid "Option"
|
421 |
+
msgstr "Einstellung"
|
422 |
+
|
423 |
+
# @ adminimize
|
424 |
+
#: inc-options/write_post_options.php:188
|
425 |
#: inc-options/links_options.php:107
|
426 |
#: inc-options/wp_nav_menu_options.php:128
|
427 |
+
#: inc-options/dashboard_options.php:103
|
428 |
#: inc-options/write_cp_options.php:215
|
429 |
+
#: inc-options/global_options.php:103
|
430 |
#: inc-options/write_page_options.php:192
|
|
|
|
|
431 |
msgid "It is possible to add your own IDs or classes from elements and tags. You can find IDs and classes with the FireBug Add-on for Firefox. Assign a value and the associate name per line."
|
432 |
msgstr "Es ist möglich, dass du eigene IDs und Klassen eines Elementes oder Tags hinzufügst. Du findest IDs und Klassen sehr einfach mit dem Firebug Add-on für den Firefox. Füge pro Zeile einen Wert und dazugehörigen Namen ein."
|
433 |
|
434 |
+
# @ adminimize
|
435 |
+
#: inc-options/write_post_options.php:194
|
436 |
#: inc-options/links_options.php:113
|
437 |
#: inc-options/wp_nav_menu_options.php:134
|
438 |
+
#: inc-options/dashboard_options.php:109
|
439 |
#: inc-options/write_cp_options.php:225
|
440 |
+
#: inc-options/global_options.php:109
|
441 |
#: inc-options/write_page_options.php:198
|
|
|
|
|
442 |
msgid "Possible nomination for ID or class. Separate multiple nominations through a carriage return."
|
443 |
msgstr "Mögliche Benennung der ID oder Klasse. Trenne Werte durch eine neue Zeile."
|
444 |
|
445 |
+
# @ adminimize
|
446 |
+
#: inc-options/write_post_options.php:199
|
447 |
#: inc-options/links_options.php:118
|
448 |
#: inc-options/wp_nav_menu_options.php:139
|
449 |
+
#: inc-options/dashboard_options.php:114
|
450 |
#: inc-options/write_cp_options.php:233
|
451 |
+
#: inc-options/global_options.php:114
|
452 |
#: inc-options/write_page_options.php:203
|
|
|
|
|
453 |
msgid "Possible IDs or classes. Separate multiple values through a carriage return."
|
454 |
msgstr "Mögliche IDs oder Klassen. Trenne Werte durch eine neue Zeile."
|
455 |
|
456 |
+
# @ adminimize
|
457 |
+
#: inc-options/write_post_options.php:207
|
458 |
+
#: inc-options/menu_options.php:155
|
459 |
+
#: inc-options/links_options.php:126
|
460 |
+
#: inc-options/wp_nav_menu_options.php:147
|
461 |
+
#: inc-options/dashboard_options.php:122
|
462 |
+
#: inc-options/write_cp_options.php:243
|
463 |
+
#: inc-options/global_options.php:122
|
464 |
+
#: inc-options/backend_options.php:192
|
465 |
+
#: inc-options/write_page_options.php:211
|
466 |
+
msgid "Update Options"
|
467 |
+
msgstr "Einstellungen aktualisieren"
|
468 |
+
|
469 |
+
# @ adminimize
|
470 |
+
#: inc-options/write_post_options.php:209
|
471 |
+
#: inc-options/menu_options.php:157
|
472 |
+
#: inc-options/links_options.php:129
|
473 |
+
#: inc-options/wp_nav_menu_options.php:149
|
474 |
+
#: inc-options/theme_options.php:105
|
475 |
+
#: inc-options/deinstall_options.php:27
|
476 |
+
#: inc-options/dashboard_options.php:127
|
477 |
+
#: inc-options/write_cp_options.php:248
|
478 |
+
#: inc-options/global_options.php:124
|
479 |
+
#: inc-options/backend_options.php:194
|
480 |
+
#: inc-options/im_export_options.php:41
|
481 |
+
#: inc-options/minimenu.php:109
|
482 |
+
#: inc-options/write_page_options.php:213
|
483 |
+
msgid "scroll to top"
|
484 |
+
msgstr "Nach oben"
|
485 |
+
|
486 |
+
# @ adminimize
|
487 |
#: inc-options/menu_options.php:16
|
488 |
+
#: inc-options/minimenu.php:39
|
|
|
489 |
msgid "Menu Options"
|
490 |
msgstr "Menu Einstellungen"
|
491 |
|
492 |
+
# @ adminimize
|
493 |
#: inc-options/menu_options.php:23
|
|
|
494 |
msgid "Menu options - Menu, <span style=\\\"font-weight: 400;\\\">Submenu</span>"
|
495 |
msgstr "Menu Einstellungen - Menu, <span style=\"font-weight: 400;\">Submenu</span>"
|
496 |
|
497 |
+
# @ adminimize
|
498 |
+
#: inc-options/menu_options.php:67
|
499 |
+
#: inc-options/menu_options.php:119
|
500 |
+
msgid "After activate the check box it heavy attitudes will change."
|
501 |
+
msgstr "Wenn die Checkbox aktiv ist, dann wird das Ändern von Einstellungen erschwert."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
502 |
|
503 |
+
# @ default
|
504 |
+
#: inc-options/menu_options.php:102
|
505 |
+
msgid "Profile"
|
506 |
+
msgstr "Profile"
|
507 |
|
508 |
+
# @ adminimize
|
509 |
+
#: inc-options/links_options.php:16
|
510 |
+
#: inc-options/minimenu.php:65
|
511 |
+
msgid "Links options"
|
512 |
+
msgstr "Link Einstellungen"
|
513 |
|
514 |
+
# @ default
|
515 |
+
#: inc-options/links_options.php:49
|
516 |
+
msgid "Name"
|
517 |
+
msgstr "Name"
|
|
|
518 |
|
519 |
+
# @ default
|
520 |
+
#: inc-options/links_options.php:50
|
521 |
+
msgid "Web Address"
|
522 |
+
msgstr "Web-Adresse"
|
|
|
|
|
523 |
|
524 |
+
# @ default
|
525 |
+
#: inc-options/links_options.php:51
|
526 |
+
msgid "Description"
|
527 |
+
msgstr "Beschreibung"
|
|
|
|
|
528 |
|
529 |
+
# @ default
|
530 |
+
#: inc-options/links_options.php:53
|
531 |
+
msgid "Target"
|
532 |
+
msgstr "Target"
|
|
|
|
|
533 |
|
534 |
+
# @ default
|
535 |
+
#: inc-options/links_options.php:54
|
536 |
+
msgid "Link Relationship (XFN)"
|
537 |
+
msgstr "Link-Beziehungen (XFN)"
|
|
|
538 |
|
539 |
+
# @ default
|
540 |
+
#: inc-options/links_options.php:55
|
541 |
+
msgid "Advanced"
|
542 |
+
msgstr "Erweitert"
|
|
|
|
|
|
|
543 |
|
544 |
+
# @ adminimize
|
545 |
+
#: inc-options/links_options.php:100
|
546 |
+
msgid "Your own Link options"
|
547 |
+
msgstr "Deine eigenen Link Einstellungen"
|
|
|
|
|
|
|
548 |
|
549 |
+
# @ adminimize
|
550 |
+
#: inc-options/wp_nav_menu_options.php:15
|
551 |
+
msgid "WP Nav Menu options"
|
552 |
+
msgstr "WP Nav Menü Einstellungen"
|
|
|
553 |
|
554 |
+
# @ adminimize
|
555 |
+
# @ default
|
556 |
+
#: inc-options/wp_nav_menu_options.php:50
|
557 |
+
#: inc-options/wp_nav_menu_options.php:56
|
558 |
+
msgid "Theme Locations"
|
559 |
+
msgstr "Anordnung im Theme"
|
560 |
|
561 |
+
# @ adminimize
|
562 |
+
#: inc-options/wp_nav_menu_options.php:51
|
563 |
+
msgid "Custom Links"
|
564 |
+
msgstr "Benutzerdef. Links"
|
565 |
|
566 |
+
# @ adminimize
|
567 |
+
#: inc-options/wp_nav_menu_options.php:52
|
568 |
+
msgid "Add menu"
|
569 |
+
msgstr "Menu hinzufügen"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
570 |
|
571 |
+
# @ adminimize
|
572 |
+
#: inc-options/wp_nav_menu_options.php:121
|
573 |
+
msgid "Your own Nav Menu options"
|
574 |
+
msgstr "Deine eigenen Nav Menu Einstellungen"
|
575 |
|
576 |
+
# @ adminimize
|
577 |
#: inc-options/theme_options.php:15
|
578 |
#: inc-options/theme_options.php:100
|
579 |
+
#: inc-options/minimenu.php:71
|
580 |
msgid "Set Theme"
|
581 |
msgstr "Theme zuweisen"
|
582 |
|
583 |
+
# @ adminimize
|
584 |
#: inc-options/theme_options.php:22
|
|
|
585 |
msgid "For better peformance with many users on your blog; load only userlist, when you will change the theme options for users."
|
586 |
msgstr "Für eine bessere Performance bei vielen Usern in deinem Blog werden die Userdaten nur nach Aufforderung geladen."
|
587 |
|
588 |
+
# @ adminimize
|
589 |
#: inc-options/theme_options.php:25
|
|
|
590 |
msgid "Load User Data"
|
591 |
msgstr "Lade User Daten"
|
592 |
|
593 |
+
# @ default
|
594 |
#: inc-options/theme_options.php:36
|
|
|
595 |
msgid "User-ID"
|
596 |
msgstr "User-ID"
|
597 |
|
598 |
+
# @ default
|
599 |
#: inc-options/theme_options.php:37
|
|
|
600 |
msgid "Username"
|
601 |
msgstr "Benutzername"
|
602 |
|
603 |
+
# @ default
|
604 |
#: inc-options/theme_options.php:38
|
|
|
605 |
msgid "Display name publicly as"
|
606 |
msgstr "Name im Blog"
|
607 |
|
608 |
+
# @ default
|
609 |
#: inc-options/theme_options.php:39
|
|
|
610 |
msgid "Admin-Color Scheme"
|
611 |
msgstr "Admin-Color Scheme"
|
612 |
|
613 |
+
# @ default
|
614 |
#: inc-options/theme_options.php:40
|
|
|
615 |
msgid "User Level"
|
616 |
msgstr "User Level"
|
617 |
|
618 |
+
# @ default
|
619 |
#: inc-options/theme_options.php:41
|
|
|
620 |
msgid "Role"
|
621 |
msgstr "Rolle"
|
622 |
|
623 |
+
# @ adminimize
|
624 |
#: inc-options/deinstall_options.php:15
|
625 |
+
#: inc-options/minimenu.php:77
|
|
|
626 |
msgid "Deinstall Options"
|
627 |
msgstr "Einstellungen deinstallieren"
|
628 |
|
629 |
+
# @ adminimize
|
630 |
#: inc-options/deinstall_options.php:18
|
|
|
631 |
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."
|
632 |
msgstr "Nutze diese Option, um die Einstellungen für das Plugin in der Datenbank zu löschen. Das Plugin entfernt die Einträge <strong>nicht</strong>, wenn es deaktiviert wird!"
|
633 |
|
634 |
+
# @ adminimize
|
635 |
#: inc-options/deinstall_options.php:22
|
|
|
636 |
msgid "Delete Options"
|
637 |
msgstr "Einstellungen Löschen"
|
638 |
|
639 |
+
# @ adminimize
|
640 |
+
#: inc-options/dashboard_options.php:17
|
641 |
+
#: inc-options/minimenu.php:36
|
642 |
+
msgid "Dashboard options"
|
643 |
+
msgstr "Dashboard Einstellungen"
|
|
|
|
|
|
|
|
|
|
|
644 |
|
645 |
+
# @ adminimize
|
646 |
+
#: inc-options/dashboard_options.php:25
|
647 |
+
msgid "To complete the installation for Dashboard Widgets you must visit your dashboard once and then come back to Settings > Adminimize to configure who has access to each widget."
|
648 |
+
msgstr "Um die Installation für Dashboard Widgets abzuschließen, musst du das Dashboard einmal besuchen und dann zurück zu den Einstellungen > Adminimize kommen, um den Zugriff der Widgets zu steuern."
|
649 |
|
650 |
+
# @ adminimize
|
651 |
+
#: inc-options/dashboard_options.php:96
|
652 |
+
#: inc-options/global_options.php:96
|
653 |
+
msgid "Your own options"
|
654 |
+
msgstr "Deine eigenen Einstellungen"
|
655 |
|
656 |
+
# @ adminimize
|
657 |
+
#: inc-options/write_cp_options.php:22
|
658 |
+
#: inc-options/write_cp_options.php:30
|
659 |
+
#: inc-options/minimenu.php:56
|
660 |
+
msgid "Write options"
|
661 |
+
msgstr "Einstellungen Schreiben"
|
662 |
|
663 |
+
# @ adminimize
|
664 |
+
#: inc-options/write_cp_options.php:102
|
665 |
+
msgid "Format"
|
666 |
+
msgstr "Format"
|
667 |
|
668 |
+
# @ adminimize
|
669 |
+
#: inc-options/write_cp_options.php:205
|
670 |
+
#, php-format
|
671 |
+
msgid "Your own %s options"
|
672 |
+
msgstr "Deine eigenen %s Einstellungen"
|
673 |
|
674 |
+
# @ adminimize
|
675 |
+
#: inc-options/global_options.php:16
|
676 |
+
#: inc-options/minimenu.php:33
|
677 |
+
msgid "Global options"
|
678 |
+
msgstr "Globale Einstellungen"
|
679 |
|
680 |
+
# @ adminimize
|
681 |
+
#: inc-options/global_options.php:47
|
682 |
+
msgid "Admin Bar"
|
683 |
+
msgstr "Admin Bar"
|
684 |
|
685 |
+
# @ adminimize
|
686 |
+
#: inc-options/global_options.php:48
|
687 |
+
msgid "Favorite Actions"
|
688 |
+
msgstr "Favorisierte Aktionen"
|
689 |
|
690 |
+
# @ adminimize
|
691 |
+
#: inc-options/global_options.php:49
|
692 |
+
msgid "Screen-Meta"
|
693 |
+
msgstr "Screen-Meta"
|
694 |
|
695 |
+
# @ adminimize
|
696 |
+
#: inc-options/global_options.php:51
|
697 |
+
msgid "Contextual Help"
|
698 |
+
msgstr "kontextabhängig Hilfe"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
699 |
|
700 |
+
# @ adminimize
|
701 |
+
#: inc-options/global_options.php:52
|
702 |
+
msgid "Admin Color Scheme"
|
703 |
+
msgstr "Farbschema verwalten"
|
704 |
|
705 |
+
# @ adminimize
|
706 |
+
#: inc-options/backend_options.php:16
|
707 |
+
#: inc-options/minimenu.php:30
|
708 |
+
msgid "Backend Options"
|
709 |
+
msgstr "Einstellungen Backend"
|
710 |
|
711 |
+
# @ adminimize
|
712 |
+
#: inc-options/backend_options.php:27
|
713 |
+
#, fuzzy
|
714 |
+
msgid "Use Global Settings"
|
715 |
+
msgstr "Globale Einstellungen"
|
716 |
|
717 |
+
#: inc-options/backend_options.php:36
|
718 |
+
msgid "The plugin is active in multiste."
|
719 |
+
msgstr "Das Plugin ist aktiv für die Multisite Umgebung."
|
|
|
720 |
|
721 |
+
#: inc-options/backend_options.php:40
|
722 |
+
msgid "False"
|
723 |
+
msgstr "Falsch"
|
|
|
724 |
|
725 |
+
#: inc-options/backend_options.php:41
|
726 |
+
msgid "True"
|
727 |
+
msgstr "Wahr"
|
|
|
728 |
|
729 |
+
#: inc-options/backend_options.php:42
|
730 |
+
msgid "Use the settings global in your Multisite network."
|
731 |
+
msgstr "Nutze die Einstellungen global in deinem Multisite Netzwerk."
|
|
|
|
|
|
|
|
|
732 |
|
733 |
+
# @ adminimize
|
734 |
+
#: inc-options/backend_options.php:47
|
735 |
+
msgid "Exclude Super Admin"
|
736 |
+
msgstr "Ausschließen des Super Admin"
|
737 |
|
738 |
+
# @ adminimize
|
739 |
+
#: inc-options/backend_options.php:51
|
740 |
+
#: inc-options/backend_options.php:62
|
741 |
+
#: inc-options/backend_options.php:75
|
742 |
+
#: inc-options/backend_options.php:85
|
743 |
+
#: inc-options/backend_options.php:95
|
744 |
+
#: inc-options/backend_options.php:105
|
745 |
+
#: inc-options/backend_options.php:115
|
746 |
+
#: inc-options/backend_options.php:125
|
747 |
+
#: inc-options/backend_options.php:135
|
748 |
+
#: inc-options/backend_options.php:145
|
749 |
+
#: inc-options/backend_options.php:174
|
750 |
+
msgid "Default"
|
751 |
+
msgstr "Standard"
|
752 |
|
753 |
+
# @ adminimize
|
754 |
+
#: inc-options/backend_options.php:52
|
755 |
+
#: inc-options/backend_options.php:106
|
756 |
+
#: inc-options/backend_options.php:116
|
757 |
+
#: inc-options/backend_options.php:126
|
758 |
+
#: inc-options/backend_options.php:136
|
759 |
+
#: inc-options/backend_options.php:146
|
760 |
+
msgid "Activate"
|
761 |
+
msgstr "Aktiv"
|
762 |
|
763 |
+
# @ adminimize
|
764 |
+
#: inc-options/backend_options.php:53
|
765 |
+
msgid "Exclude the Super Admin on a WP Multisite Install from all limitations of this plugin."
|
766 |
+
msgstr "Schließe den Super Admin in einer WordPress Multisite Installation von allen Restriktionen dieses Plugins aus."
|
|
|
767 |
|
768 |
+
# @ adminimize
|
769 |
+
#: inc-options/backend_options.php:58
|
770 |
+
msgid "User-Info"
|
771 |
+
msgstr "User-Info"
|
|
|
772 |
|
773 |
+
# @ adminimize
|
774 |
+
#: inc-options/backend_options.php:63
|
775 |
+
#: inc-options/backend_options.php:86
|
776 |
+
#: inc-options/backend_options.php:96
|
777 |
+
msgid "Hide"
|
778 |
+
msgstr "Ausblenden"
|
779 |
|
780 |
+
# @ adminimize
|
781 |
+
#: inc-options/backend_options.php:64
|
782 |
+
msgid "Only logout"
|
783 |
+
msgstr "nur Abmelden"
|
784 |
|
785 |
+
# @ adminimize
|
786 |
+
#: inc-options/backend_options.php:65
|
787 |
+
msgid "User & Logout"
|
788 |
+
msgstr "User & Abmelden"
|
|
|
789 |
|
790 |
+
# @ adminimize
|
791 |
+
#: inc-options/backend_options.php:66
|
792 |
+
msgid "The "User-Info-area" is on the top right side of the backend. You can hide or reduced show."
|
793 |
+
msgstr "Der "User-Info-Bereich" ist im oberen rechten Bereich zu finden und kann ausgeblendet oder reduziert dargestellt werden."
|
794 |
|
795 |
+
# @ adminimize
|
796 |
+
#: inc-options/backend_options.php:71
|
797 |
+
msgid "Change User-Info, redirect to"
|
798 |
+
msgstr "User Info geändert, Weiterleitung nach"
|
799 |
|
800 |
+
# @ adminimize
|
801 |
+
#: inc-options/backend_options.php:76
|
802 |
+
msgid "Frontpage of the Blog"
|
803 |
+
msgstr "Startseite des Blog"
|
804 |
|
805 |
+
# @ adminimize
|
806 |
+
#: inc-options/backend_options.php:77
|
807 |
+
msgid "When the "User-Info-area" change it, then it is possible to change the redirect."
|
808 |
+
msgstr "Wenn der "User-Info-Bereich" geändert wird, dann kann die die Weiterleitung nach einem Logout geändert werden."
|
809 |
|
810 |
+
# @ adminimize
|
811 |
+
#: inc-options/backend_options.php:81
|
812 |
+
msgid "Footer"
|
813 |
+
msgstr "Footer"
|
814 |
|
815 |
+
# @ adminimize
|
816 |
+
#: inc-options/backend_options.php:87
|
817 |
+
msgid "The Footer-area can hide, include all links and details."
|
818 |
+
msgstr "Der Footer-Bereich kann deaktiviert werden, inklusive aller Links und Hinweise."
|
819 |
|
820 |
+
# @ adminimize
|
821 |
+
#: inc-options/backend_options.php:91
|
822 |
+
msgid "Header"
|
823 |
+
msgstr "Header"
|
|
|
|
|
824 |
|
825 |
+
# @ adminimize
|
826 |
+
#: inc-options/backend_options.php:97
|
827 |
+
msgid "The Header-area can hide, include all links and details."
|
828 |
+
msgstr "Der header-Bereich kann ausgeblendet werden, inkl. aller Links und Details."
|
829 |
|
830 |
+
# @ adminimize
|
831 |
+
#: inc-options/backend_options.php:101
|
832 |
+
msgid "Timestamp"
|
833 |
+
msgstr "Timestamp"
|
834 |
|
835 |
+
# @ adminimize
|
836 |
+
#: inc-options/backend_options.php:107
|
837 |
+
msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
|
838 |
+
msgstr "Das Feld zum Ändern des Veröffentlichungsdatum ist immer geöffnet."
|
839 |
|
840 |
+
# @ adminimize
|
841 |
+
#: inc-options/backend_options.php:111
|
842 |
+
msgid "Thickbox FullScreen"
|
843 |
+
msgstr "Thickbox FullScreen"
|
|
|
|
|
844 |
|
845 |
+
# @ adminimize
|
846 |
+
#: inc-options/backend_options.php:117
|
847 |
+
msgid "All Thickbox-function use the full area of the browser. Thickbox is for example in upload media-files."
|
848 |
+
msgstr "Alle Thickbox-Funktion verwenden den vollständigen Bereich des Browsers. Thickbox ist beispielsweise in der Medien-Upload-Funktion."
|
|
|
|
|
849 |
|
850 |
+
# @ adminimize
|
851 |
+
#: inc-options/backend_options.php:121
|
852 |
+
msgid "Flashuploader"
|
853 |
+
msgstr "Flashuploader"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
854 |
|
855 |
+
# @ adminimize
|
856 |
+
#: inc-options/backend_options.php:127
|
857 |
+
msgid "Disable the flashuploader and users use only the standard uploader."
|
858 |
+
msgstr "Deaktiviere den Flashuploader und Nutzer können nur den Standard-Uploader erreichen."
|
|
|
|
|
859 |
|
860 |
+
# @ adminimize
|
861 |
+
#: inc-options/backend_options.php:131
|
862 |
+
msgid "Category Height"
|
863 |
+
msgstr "Kategorie-Höhe"
|
|
|
|
|
864 |
|
865 |
+
# @ adminimize
|
866 |
+
#: inc-options/backend_options.php:137
|
867 |
+
msgid "View the Meta Box with Categories in the full height, no scrollbar or whitespace."
|
868 |
+
msgstr "Stellt in die Meta Box der Kategorien in voller Höhe dar, kein Scrollbar und kein Leerraum."
|
|
|
|
|
|
|
869 |
|
870 |
+
# @ adminimize
|
871 |
+
#: inc-options/backend_options.php:141
|
872 |
+
msgid "Advice in Footer"
|
873 |
+
msgstr "Hinweis im Footer"
|
|
|
|
|
874 |
|
875 |
+
# @ adminimize
|
876 |
+
#: inc-options/backend_options.php:148
|
877 |
+
msgid "In the Footer you can display an advice for changing the Default-design, (x)HTML is possible."
|
878 |
+
msgstr "Im Footer kann ein Hinweis auf die aktive Veränderung des Standard-Layout gesetzt werden, (x)HTML erlaubt."
|
|
|
|
|
879 |
|
880 |
+
# @ adminimize
|
881 |
+
#: inc-options/backend_options.php:170
|
882 |
+
msgid "Dashboard deactivate, redirect to"
|
883 |
+
msgstr "Dashboard inaktiv, Weiterleitung nach"
|
884 |
|
885 |
+
# @ adminimize
|
886 |
+
#: inc-options/backend_options.php:175
|
887 |
+
msgid "Manage Posts"
|
888 |
+
msgstr "Verwalten Beiträge"
|
889 |
|
890 |
+
# @ adminimize
|
891 |
+
#: inc-options/backend_options.php:176
|
892 |
+
msgid "Manage Pages"
|
893 |
+
msgstr "Verwalten Seiten"
|
|
|
|
|
894 |
|
895 |
+
# @ adminimize
|
896 |
+
#: inc-options/backend_options.php:177
|
897 |
+
msgid "Write Post"
|
898 |
+
msgstr "Schreiben Beitrag"
|
|
|
899 |
|
900 |
+
# @ adminimize
|
901 |
+
#: inc-options/backend_options.php:178
|
902 |
+
msgid "Write Page"
|
903 |
+
msgstr "Schreiben Seite"
|
|
|
904 |
|
905 |
+
# @ adminimize
|
906 |
+
#: inc-options/backend_options.php:179
|
907 |
+
msgid "Comments"
|
908 |
+
msgstr "Kommentare"
|
|
|
909 |
|
910 |
+
# @ adminimize
|
911 |
+
#: inc-options/backend_options.php:180
|
912 |
+
msgid "other Page"
|
913 |
+
msgstr "andere Seite"
|
|
|
914 |
|
915 |
+
# @ adminimize
|
916 |
+
#: inc-options/backend_options.php:183
|
917 |
+
msgid "You have deactivated the Dashboard, please select a page for redirection or define custom url, include http://?"
|
918 |
+
msgstr "Du hast das Dashboard deaktiviert; bitte wähle eine Seite für die Weiterleitung oder definiere eine eigene URL, inklusive http://"
|
919 |
|
920 |
+
# @ adminimize
|
921 |
+
#: inc-options/im_export_options.php:15
|
922 |
+
#: inc-options/minimenu.php:74
|
923 |
+
msgid "Export/Import Options"
|
924 |
+
msgstr "Export/Import Einstellungen"
|
|
|
925 |
|
926 |
+
# @ adminimize
|
927 |
+
#: inc-options/im_export_options.php:19
|
928 |
+
msgid "Export"
|
929 |
+
msgstr "Export"
|
930 |
|
931 |
+
# @ adminimize
|
932 |
+
#: inc-options/im_export_options.php:21
|
933 |
+
msgid "You can save a .seq file with your options."
|
934 |
+
msgstr "Du kannst deine Einstellungen in einer .seq Datei speichern."
|
|
|
935 |
|
936 |
+
# @ adminimize
|
937 |
+
#: inc-options/im_export_options.php:24
|
938 |
+
msgid "Export »"
|
939 |
+
msgstr "Exportieren »"
|
|
|
940 |
|
941 |
+
# @ adminimize
|
942 |
+
#: inc-options/im_export_options.php:28
|
943 |
+
msgid "Import"
|
944 |
+
msgstr "Import"
|
945 |
|
946 |
+
# @ adminimize
|
947 |
+
#: inc-options/im_export_options.php:31
|
948 |
+
msgid "Choose a Adminimize (<em>.seq</em>) file to upload, then click <em>Upload file and import</em>."
|
949 |
+
msgstr "Wähle eine Adminimize (<em>.seq</em>) Datei zum hoch laden und dann klick <em>Hochladen der Datei und importieren</em>"
|
950 |
+
|
951 |
+
# @ adminimize
|
952 |
+
#: inc-options/im_export_options.php:33
|
953 |
+
msgid "Choose a file from your computer"
|
954 |
+
msgstr "Wähle eine Datei vom Rechner"
|
955 |
+
|
956 |
+
# @ adminimize
|
957 |
+
#: inc-options/im_export_options.php:38
|
958 |
+
msgid "Upload file and import »"
|
959 |
+
msgstr "Hochladen der Datei und importieren »"
|
960 |
+
|
961 |
+
#: inc-options/minimenu.php:14
|
962 |
+
msgid "Network"
|
963 |
+
msgstr "Netzwerk"
|
964 |
+
|
965 |
+
# @ adminimize
|
966 |
+
#: inc-options/minimenu.php:23
|
967 |
+
msgid "MiniMenu"
|
968 |
+
msgstr "MiniMenu"
|
969 |
+
|
970 |
+
# @ adminimize
|
971 |
+
#: inc-options/minimenu.php:27
|
972 |
#: inc-options/minimenu.php:87
|
973 |
+
msgid "About the plugin"
|
974 |
+
msgstr "Über das Plugin"
|
|
|
975 |
|
976 |
+
# @ adminimize
|
977 |
+
#: inc-options/minimenu.php:45
|
978 |
+
#: inc-options/write_page_options.php:15
|
979 |
+
#: inc-options/write_page_options.php:22
|
980 |
+
msgid "Write options - Page"
|
981 |
+
msgstr "Schreiben Einstellungen - Seiten"
|
982 |
|
983 |
+
# @ adminimize
|
984 |
+
#: inc-options/minimenu.php:68
|
985 |
+
msgid "WP Nav Menu"
|
986 |
+
msgstr "WP Nav Menü"
|
987 |
|
988 |
+
# @ adminimize
|
989 |
+
#: inc-options/minimenu.php:89
|
990 |
+
msgid "Version"
|
991 |
+
msgstr "Version"
|
|
|
992 |
|
993 |
+
# @ adminimize
|
994 |
+
#: inc-options/minimenu.php:92
|
995 |
+
#, fuzzy
|
996 |
+
msgid "Further information: Visit the <a href=\"http://wordpress.org/extend/plugins/adminimize/\">plugin homepage</a> for further information or to grab the latest version of this plugin. Also see the <a href=\"http://wordpress.org/support/plugin/adminimize\">support forum</a> for questions."
|
997 |
+
msgstr "Weitere Informationen: Besuchen Sie die <a href=\"http://wordpress.org/extend/plugins/adminimize/\">Plugin Website</a> für weitere Informationen oder um die neueste Version des Plugins erhalten."
|
998 |
+
|
999 |
+
# @ adminimize
|
1000 |
+
#: inc-options/minimenu.php:94
|
1001 |
+
msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a> or donate."
|
1002 |
+
msgstr "Du willst Danke sagen? Besuche meine <a href=\"http://bueltge.de/wunschliste/\">Wunschliste</a> oder spende."
|
1003 |
+
|
1004 |
+
# @ adminimize
|
1005 |
+
#: inc-options/minimenu.php:99
|
1006 |
+
msgid "PayPal - The safer, easier way to pay online!"
|
1007 |
+
msgstr "PayPal - Der sichere und einfache Weg zu zahlen!"
|
1008 |
+
|
1009 |
+
# @ adminimize
|
1010 |
+
#: inc-options/minimenu.php:105
|
1011 |
#: inc-options/settings_notice.php:17
|
|
|
1012 |
msgid "Please note: The Adminimize settings page ignores the Menu Options below and displays the menu with all entries.<br /><span style=\"font-weight: 300;\">To view your changes to the menu you need to navigate away from the Adminimize settings page.</span>"
|
1013 |
msgstr "Beachte: Die Einstellungen des Plugins ignorieren Menu Einstellungen um alle Einträge darzustellen.<br /><span style=\\\"font-weight: 300;\\\">Um die Einstellungen an deiner Rolle zu prüfen, musst du eine andere Seite im Backend aufrufen.</span>"
|
1014 |
|
1015 |
+
#: inc-options/minimenu.php:106
|
1016 |
+
msgid "You have to activated the Plugin for your Multisite Network. Your settings works now on all blogs in the network. Please set the settings only in one blog, there you have all active menu items and plugins. If you update the settings then write the plugin new settings in dependence of the blog where you put, save the settings."
|
1017 |
+
msgstr "Du hast das Plugin für ein Multisite Netzwerk aktiviert. Deine Einstellungen werden nun in allen Blogs des Networks genutzt. Bitte setze die Einstellungen in dem Blog, in dem alle Menu-Einträge aktiv sind. Wenn du eine Aktualisierung der Einstellungen vornimmst, dann werden die Einstellungen neu gesetzt - mit den Werten des Blogs, in dem du gerade aktiv bist und als Einstellungen gespeichert."
|
1018 |
+
|
1019 |
+
# @ default
|
1020 |
+
#: inc-options/write_page_options.php:98
|
1021 |
+
msgid "Custom Fields"
|
1022 |
+
msgstr "Benutzerdefinierte Felder"
|
1023 |
+
|
1024 |
+
# @ adminimize
|
1025 |
+
#: inc-options/write_page_options.php:99
|
1026 |
+
msgid "Comments & Pings"
|
1027 |
+
msgstr "Kommentare & Pings"
|
1028 |
+
|
1029 |
+
# @ adminimize
|
1030 |
+
#: inc-options/write_page_options.php:101
|
1031 |
+
msgid "Password Protect This Page"
|
1032 |
+
msgstr "Diese Seite mit einem Passwort versehen"
|
1033 |
+
|
1034 |
+
# @ adminimize
|
1035 |
+
#: inc-options/write_page_options.php:102
|
1036 |
+
msgid "Attributes"
|
1037 |
+
msgstr "Attribute"
|
1038 |
+
|
1039 |
+
# @ adminimize
|
1040 |
+
#: inc-options/write_page_options.php:103
|
1041 |
+
msgid "Page Template"
|
1042 |
+
msgstr "Seiten Template"
|
1043 |
+
|
1044 |
+
# @ adminimize
|
1045 |
+
#: inc-options/write_page_options.php:104
|
1046 |
+
msgid "Page Order"
|
1047 |
+
msgstr "Reihenfolge"
|
1048 |
+
|
1049 |
+
# @ default
|
1050 |
+
#: inc-options/write_page_options.php:105
|
1051 |
+
msgid "Page Author"
|
1052 |
+
msgstr "Seitenautor"
|
1053 |
+
|
1054 |
+
# @ default
|
1055 |
+
#: inc-options/write_page_options.php:106
|
1056 |
+
msgid "Page Revisions"
|
1057 |
+
msgstr "Page Revisions"
|
1058 |
+
|
1059 |
+
# @ adminimize
|
1060 |
+
#: inc-options/write_page_options.php:107
|
1061 |
+
msgid "Related"
|
1062 |
+
msgstr "Siehe auch"
|
1063 |
+
|
1064 |
+
# @ adminimize
|
1065 |
+
#: inc-options/write_page_options.php:112
|
1066 |
+
msgid "Page Slug"
|
1067 |
+
msgstr "Titelform"
|
1068 |
+
|
1069 |
+
# @ adminimize
|
1070 |
+
#: inc-options/write_page_options.php:124
|
1071 |
+
msgid "Page Image"
|
1072 |
+
msgstr "Artikelbild"
|
1073 |
+
|
1074 |
+
# @ adminimize
|
1075 |
+
#: inc-options/write_page_options.php:135
|
1076 |
+
msgid "Parent, Order, Template"
|
1077 |
+
msgstr "Eltern, Reihenfolge, Template"
|
1078 |
+
|
1079 |
+
# @ adminimize
|
1080 |
+
#: inc-options/write_page_options.php:136
|
1081 |
+
msgid "Status"
|
1082 |
+
msgstr "Status"
|
1083 |
+
|
1084 |
+
# @ adminimize
|
1085 |
+
#: inc-options/write_page_options.php:185
|
1086 |
+
msgid "Your own page options"
|
1087 |
+
msgstr "Deine eigenen Seiten-Einstellungen"
|
1088 |
+
|
1089 |
+
# @ default
|
1090 |
+
#: inc-setup/admin-bar.php:239
|
1091 |
+
msgid "Network Admin"
|
1092 |
+
msgstr "Netwerk-Admin"
|
1093 |
+
|
1094 |
+
# @ default
|
1095 |
+
#: inc-setup/admin-bar.php:241
|
1096 |
+
msgid "Site Admin"
|
1097 |
+
msgstr "Site-Admin"
|
1098 |
+
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: Bueltge
|
|
3 |
Donate link: http://bueltge.de/wunschliste/
|
4 |
Tags: color, scheme, theme, admin, dashboard, color scheme, plugin, interface, ui, metabox, hide, editor, minimal, menu, customization, interface, administration, lite, light, usability, lightweight, layout, zen
|
5 |
Requires at least: 2.5
|
6 |
-
Tested up to: 3.
|
7 |
-
Stable tag: 1.
|
8 |
|
9 |
Adminimize is a WordPress plugin that lets you hide 'unnecessary' items from the WordPress backend and many many more ...
|
10 |
|
@@ -85,8 +85,19 @@ See on [the official website](http://bueltge.de/wordpress-admin-theme-adminimize
|
|
85 |
|
86 |
== Screenshots ==
|
87 |
1. Settings in WordPress 3.2-beta with two Custom Post Types
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
|
89 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
90 |
= v1.7.27 =
|
91 |
* Fix for hide Admin Bar in WP 3.4
|
92 |
* Fix for remove sections on custom post types in edit screen table
|
3 |
Donate link: http://bueltge.de/wunschliste/
|
4 |
Tags: color, scheme, theme, admin, dashboard, color scheme, plugin, interface, ui, metabox, hide, editor, minimal, menu, customization, interface, administration, lite, light, usability, lightweight, layout, zen
|
5 |
Requires at least: 2.5
|
6 |
+
Tested up to: 3.5-Beta2
|
7 |
+
Stable tag: 1.8.0
|
8 |
|
9 |
Adminimize is a WordPress plugin that lets you hide 'unnecessary' items from the WordPress backend and many many more ...
|
10 |
|
85 |
|
86 |
== Screenshots ==
|
87 |
1. Settings in WordPress 3.2-beta with two Custom Post Types
|
88 |
+
1. configure-area for user/admin; options for metaboxes, areas in write-area and menu in WordPress 2.7/2.8
|
89 |
+
1. configure-area for user in WordPress 2.7/2.8
|
90 |
+
1. Small tweak for design higher WP 2.7, save 50px over the menu
|
91 |
+
1. minimize header after activate in WordPress 2.5
|
92 |
+
1. configure-area for user in WordPress 2.5
|
93 |
+
1. Adminimize Theme how in WordPress 2.3
|
94 |
|
95 |
== Changelog ==
|
96 |
+
= v1.8.0 =
|
97 |
+
* Simple Support for WP Multisite
|
98 |
+
* Enhancement for hide Text-Tab on editors in custom post types
|
99 |
+
* Small fix for PHP notice
|
100 |
+
|
101 |
= v1.7.27 =
|
102 |
* Fix for hide Admin Bar in WP 3.4
|
103 |
* Fix for remove sections on custom post types in edit screen table
|
screenshot-1.png
DELETED
Binary file
|