Version Description
(2016-01-30) = * Change get role name, return now a array with slug and name to fix "Select All" function for custom roles. * Change Menu Items to Key value, not the id. Makes possible to hide also menu items, there have a stupid menu entry. * Remove https fix; not necessary for the plugin. If you will usage, add this custom plugin. * Update pot and de_De language files.
Download this release
Release Info
Developer | Bueltge |
Plugin | Adminimize |
Version | 1.9.2 |
Comparing to | |
See all releases |
Code changes from version 1.9.1 to 1.9.2
- CHANGELOG.md +6 -0
- LICENSE.txt +0 -0
- adminimize.php +33 -28
- adminimize_page.php +0 -0
- css/mw_cat_full.css +0 -0
- css/mw_small_user_info.css +0 -0
- css/style.css +0 -0
- inc-options/admin_bar.php +3 -4
- inc-options/admin_bar_frontend.php +4 -4
- inc-options/backend_options.php +0 -0
- inc-options/dashboard_options.php +0 -0
- inc-options/deinstall_options.php +0 -0
- inc-options/global_options.php +0 -0
- inc-options/im_export_options.php +0 -0
- inc-options/links_options.php +0 -0
- inc-options/menu_options.php +11 -2
- inc-options/minimenu.php +2 -2
- inc-options/settings_notice.php +0 -0
- inc-options/theme_options.php +0 -0
- inc-options/widget_options.php +0 -0
- inc-options/wp_nav_menu_options.php +0 -0
- inc-options/write_cp_options.php +0 -0
- inc-options/write_page_options.php +0 -0
- inc-options/write_post_options.php +0 -0
- inc-setup/admin-bar-items.php +0 -0
- inc-setup/admin-footer.php +0 -0
- inc-setup/dashboard.php +0 -0
- inc-setup/helping_hands.php +23 -46
- inc-setup/meta-boxes.php +0 -0
- inc-setup/remove-admin-bar.php +0 -0
- inc-setup/widget.php +0 -0
- js/adminimize.js +0 -0
- js/remove_footer.js +0 -0
- js/remove_header.js +0 -0
- js/tb_window.js +0 -0
- js/timestamp.js +0 -0
- languages/adminimize-de_DE.mo +0 -0
- languages/adminimize-de_DE.po +581 -471
- languages/adminimize-xx_XX.pot +271 -200
- readme.txt +15 -12
CHANGELOG.md
CHANGED
@@ -1,3 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
## 1.9.1 (2016-25-01)
|
2 |
* Bugfix for fixing ssl protocol in WP core on include styles and scripts.
|
3 |
|
1 |
+
## 1.9.2 (2016-01-30)
|
2 |
+
* Change get role name, return now a array with slug and name to fix "Select All" function for custom roles.
|
3 |
+
* Change Menu Items to Key value, not the id. Makes possible to hide also menu items, there have a stupid menu entry.
|
4 |
+
* Remove https fix; not necessary for the plugin. If you will usage, add this custom [plugin](https://gist.github.com/bueltge/01f37a868e2e1321b931).
|
5 |
+
* Update pot and de_De language files.
|
6 |
+
|
7 |
## 1.9.1 (2016-25-01)
|
8 |
* Bugfix for fixing ssl protocol in WP core on include styles and scripts.
|
9 |
|
LICENSE.txt
CHANGED
File without changes
|
adminimize.php
CHANGED
@@ -7,13 +7,13 @@
|
|
7 |
* Description: Visually compresses the administrative 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 all 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.
|
8 |
* Author: Frank Bültge
|
9 |
* Author URI: http://bueltge.de/
|
10 |
-
* Version: 1.9.
|
11 |
* License: GPLv2+
|
12 |
*
|
13 |
* @package WordPress
|
14 |
* @author Frank Bültge <frank@bueltge.de>
|
15 |
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
16 |
-
* @version 2016-01-
|
17 |
*/
|
18 |
|
19 |
/**
|
@@ -40,9 +40,7 @@ function _mw_adminimize_get_plugin_data( $value = 'Version' ) {
|
|
40 |
}
|
41 |
|
42 |
$plugin_data = get_plugin_data( __FILE__ );
|
43 |
-
|
44 |
-
|
45 |
-
return $plugin_value;
|
46 |
}
|
47 |
|
48 |
/**
|
@@ -159,19 +157,19 @@ function _mw_adminimize_get_all_user_roles() {
|
|
159 |
function _mw_adminimize_get_all_user_roles_names() {
|
160 |
|
161 |
global $wp_roles;
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
}
|
175 |
|
176 |
// exclude the new bbPress roles
|
177 |
$user_roles_names = array_diff(
|
@@ -699,10 +697,11 @@ function _mw_adminimize_set_menu_option() {
|
|
699 |
|
700 |
$user = wp_get_current_user();
|
701 |
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
)
|
|
|
706 |
) {
|
707 |
$mw_adminimize_menu = $disabled_menu_[ $role ];
|
708 |
$mw_adminimize_submenu = $disabled_submenu_[ $role ];
|
@@ -713,25 +712,31 @@ function _mw_adminimize_set_menu_option() {
|
|
713 |
if ( is_array( $mw_adminimize_menu ) && in_array( 'users.php', $mw_adminimize_menu, FALSE ) ) {
|
714 |
$mw_adminimize_menu[] = 'profile.php';
|
715 |
}
|
|
|
|
|
716 |
|
717 |
-
foreach ( $menu as $
|
|
|
|
|
|
|
718 |
|
719 |
if ( 'index.php' === $item ) {
|
720 |
continue;
|
721 |
}
|
722 |
|
|
|
723 |
if ( isset( $item[ 2 ] ) ) {
|
|
|
724 |
if ( isset( $mw_adminimize_menu ) && is_array( $mw_adminimize_menu )
|
725 |
-
&&
|
726 |
-
$item[ 2 ], $mw_adminimize_menu, FALSE
|
727 |
-
)
|
728 |
) {
|
729 |
-
unset( $menu[ $
|
730 |
}
|
731 |
|
|
|
732 |
if ( isset( $submenu ) && ! empty( $submenu[ $item[ 2 ] ] ) ) {
|
733 |
foreach ( $submenu[ $item[ 2 ] ] as $subindex => $subitem ) {
|
734 |
-
// Check, if is
|
735 |
if (
|
736 |
isset( $mw_adminimize_submenu )
|
737 |
&& _mw_adminimize_in_arrays(
|
7 |
* Description: Visually compresses the administrative 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 all 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.
|
8 |
* Author: Frank Bültge
|
9 |
* Author URI: http://bueltge.de/
|
10 |
+
* Version: 1.9.2
|
11 |
* License: GPLv2+
|
12 |
*
|
13 |
* @package WordPress
|
14 |
* @author Frank Bültge <frank@bueltge.de>
|
15 |
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
16 |
+
* @version 2016-01-30
|
17 |
*/
|
18 |
|
19 |
/**
|
40 |
}
|
41 |
|
42 |
$plugin_data = get_plugin_data( __FILE__ );
|
43 |
+
return $plugin_data[ $value ];
|
|
|
|
|
44 |
}
|
45 |
|
46 |
/**
|
157 |
function _mw_adminimize_get_all_user_roles_names() {
|
158 |
|
159 |
global $wp_roles;
|
160 |
+
$user_roles_names = $wp_roles->role_names;
|
161 |
+
|
162 |
+
// Remove Custom Format
|
163 |
+
// @since 2016-01-30
|
164 |
+
// ToDo Remove old Code.
|
165 |
+
//$user_roles_names = array();
|
166 |
+
//
|
167 |
+
///** @var array $wp_roles */
|
168 |
+
//foreach ( $wp_roles->role_names as $role_name => $data ) {
|
169 |
+
//
|
170 |
+
// $data = translate_user_role( $data );
|
171 |
+
// $user_roles_names[] = $data;
|
172 |
+
//}
|
173 |
|
174 |
// exclude the new bbPress roles
|
175 |
$user_roles_names = array_diff(
|
697 |
|
698 |
$user = wp_get_current_user();
|
699 |
|
700 |
+
_mw_adminimize_debug( 'Adminimize Menu Current User', $user );
|
701 |
+
|
702 |
+
if ( is_array( $user->roles )
|
703 |
+
&& in_array( $role, $user->roles, FALSE )
|
704 |
+
&& _mw_adminimize_current_user_has_role( $role )
|
705 |
) {
|
706 |
$mw_adminimize_menu = $disabled_menu_[ $role ];
|
707 |
$mw_adminimize_submenu = $disabled_submenu_[ $role ];
|
712 |
if ( is_array( $mw_adminimize_menu ) && in_array( 'users.php', $mw_adminimize_menu, FALSE ) ) {
|
713 |
$mw_adminimize_menu[] = 'profile.php';
|
714 |
}
|
715 |
+
_mw_adminimize_debug( 'Adminimize Disabled Menu Items', $mw_adminimize_menu );
|
716 |
+
_mw_adminimize_debug( 'Adminimize Disabled Sub Menu Items', $mw_adminimize_submenu );
|
717 |
|
718 |
+
foreach ( $menu as $key => $item ) {
|
719 |
+
|
720 |
+
_mw_adminimize_debug( 'Adminimize Menu Item Key', $key );
|
721 |
+
_mw_adminimize_debug( 'Adminimize Menu Item', $item );
|
722 |
|
723 |
if ( 'index.php' === $item ) {
|
724 |
continue;
|
725 |
}
|
726 |
|
727 |
+
// Menu
|
728 |
if ( isset( $item[ 2 ] ) ) {
|
729 |
+
// Check, if the Menu item in the current user role settings?
|
730 |
if ( isset( $mw_adminimize_menu ) && is_array( $mw_adminimize_menu )
|
731 |
+
&& _mw_adminimize_in_arrays( array( $key, $item[ 2 ] ), $mw_adminimize_menu )
|
|
|
|
|
732 |
) {
|
733 |
+
unset( $menu[ $key ] );
|
734 |
}
|
735 |
|
736 |
+
// Sub Menu Settings.
|
737 |
if ( isset( $submenu ) && ! empty( $submenu[ $item[ 2 ] ] ) ) {
|
738 |
foreach ( $submenu[ $item[ 2 ] ] as $subindex => $subitem ) {
|
739 |
+
// Check, if is Sub Menu item in the user role settings?
|
740 |
if (
|
741 |
isset( $mw_adminimize_submenu )
|
742 |
&& _mw_adminimize_in_arrays(
|
adminimize_page.php
CHANGED
File without changes
|
css/mw_cat_full.css
CHANGED
File without changes
|
css/mw_small_user_info.css
CHANGED
File without changes
|
css/style.css
CHANGED
File without changes
|
inc-options/admin_bar.php
CHANGED
@@ -15,7 +15,7 @@ if ( ! isset( $wp_admin_bar ) ) {
|
|
15 |
|
16 |
if ( ! isset( $user_roles_names ) ) {
|
17 |
$user_roles_names = _mw_adminimize_get_all_user_roles_names();
|
18 |
-
}
|
19 |
?>
|
20 |
<div id="poststuff" class="ui-sortable meta-box-sortables">
|
21 |
<div class="postbox">
|
@@ -48,10 +48,9 @@ if ( ! isset( $user_roles_names ) ) {
|
|
48 |
<tr>
|
49 |
<td><?php esc_attr_e( 'Select all', 'adminimize' ); ?></td>
|
50 |
<?php
|
51 |
-
foreach ( $user_roles_names as $role_name ) {
|
52 |
-
$role_name = strtolower( $role_name );
|
53 |
echo '<td class="num">';
|
54 |
-
echo '<input id="select_all" class="admin_bar_' . $
|
55 |
. '" type="checkbox" name="" value="" />';
|
56 |
echo '</td>' . "\n";
|
57 |
} ?>
|
15 |
|
16 |
if ( ! isset( $user_roles_names ) ) {
|
17 |
$user_roles_names = _mw_adminimize_get_all_user_roles_names();
|
18 |
+
}_mw_adminimize_debug( 'User Role Name', $user_roles_names );
|
19 |
?>
|
20 |
<div id="poststuff" class="ui-sortable meta-box-sortables">
|
21 |
<div class="postbox">
|
48 |
<tr>
|
49 |
<td><?php esc_attr_e( 'Select all', 'adminimize' ); ?></td>
|
50 |
<?php
|
51 |
+
foreach ( $user_roles_names as $role_slug => $role_name ) {
|
|
|
52 |
echo '<td class="num">';
|
53 |
+
echo '<input id="select_all" class="admin_bar_' . $role_slug
|
54 |
. '" type="checkbox" name="" value="" />';
|
55 |
echo '</td>' . "\n";
|
56 |
} ?>
|
inc-options/admin_bar_frontend.php
CHANGED
@@ -48,11 +48,11 @@ if ( ! isset( $user_roles_names ) ) {
|
|
48 |
<tr>
|
49 |
<td><?php esc_attr_e( 'Select all', 'adminimize' ); ?></td>
|
50 |
<?php
|
51 |
-
foreach ( $user_roles_names as $role_name ) {
|
52 |
$role_name = strtolower( $role_name );
|
53 |
echo '<td class="num">';
|
54 |
-
echo '<input id="select_all" class="admin_bar_frontend_' . $
|
55 |
-
. '" type="checkbox"
|
56 |
echo '</td>' . "\n";
|
57 |
} ?>
|
58 |
</tr>
|
@@ -120,7 +120,7 @@ if ( ! isset( $user_roles_names ) ) {
|
|
120 |
} else {
|
121 |
$message = '<span style="font-size: 35px;">☝</span>'
|
122 |
. esc_attr__(
|
123 |
-
'
|
124 |
'adminimize'
|
125 |
);
|
126 |
}
|
48 |
<tr>
|
49 |
<td><?php esc_attr_e( 'Select all', 'adminimize' ); ?></td>
|
50 |
<?php
|
51 |
+
foreach ( $user_roles_names as $role_slug => $role_name ) {
|
52 |
$role_name = strtolower( $role_name );
|
53 |
echo '<td class="num">';
|
54 |
+
echo '<input id="select_all" class="admin_bar_frontend_' . $role_slug
|
55 |
+
. '" type="checkbox" value="" />';
|
56 |
echo '</td>' . "\n";
|
57 |
} ?>
|
58 |
</tr>
|
120 |
} else {
|
121 |
$message = '<span style="font-size: 35px;">☝</span>'
|
122 |
. esc_attr__(
|
123 |
+
'You must open the front end of the site in this browser in order for the plugin to discover the Admin Bar items that are currently not visible.',
|
124 |
'adminimize'
|
125 |
);
|
126 |
}
|
inc-options/backend_options.php
CHANGED
File without changes
|
inc-options/dashboard_options.php
CHANGED
File without changes
|
inc-options/deinstall_options.php
CHANGED
File without changes
|
inc-options/global_options.php
CHANGED
File without changes
|
inc-options/im_export_options.php
CHANGED
File without changes
|
inc-options/links_options.php
CHANGED
File without changes
|
inc-options/menu_options.php
CHANGED
@@ -94,6 +94,9 @@ if ( ! function_exists( 'add_action' ) ) {
|
|
94 |
|
95 |
foreach ( $wp_menu as $key => $item ) {
|
96 |
|
|
|
|
|
|
|
97 |
// non checked items
|
98 |
if ( $item[ 2 ] === 'options-general.php' ) {
|
99 |
$disabled_item_adm_hint = '<abbr title="' . esc_attr__(
|
@@ -143,12 +146,18 @@ if ( ! function_exists( 'add_action' ) ) {
|
|
143 |
$disabled_item_adm = '';
|
144 |
$disabled_item_adm_hint = '';
|
145 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
146 |
echo "\t" . '<td class="num">' . $disabled_item_adm_hint . '<input id="check_menu'
|
147 |
. $role . $x . '" class="menu_options_'
|
148 |
. preg_replace( '/[^a-z0-9]+/', '', $role ) . '" type="checkbox"'
|
149 |
. $disabled_item_adm . $checked_user_role_[ $role ]
|
150 |
. ' name="mw_adminimize_disabled_menu_' . $role . '_items[]" value="'
|
151 |
-
.
|
152 |
}
|
153 |
echo '</tr>';
|
154 |
|
@@ -174,7 +183,7 @@ if ( ! function_exists( 'add_action' ) ) {
|
|
174 |
continue;
|
175 |
}
|
176 |
|
177 |
-
// Loop about
|
178 |
foreach ( $wp_submenu[ $item[ 2 ] ] as $subkey => $subitem ) {
|
179 |
|
180 |
// Special solutions for the Adminimize link, that it not works on settings site.
|
94 |
|
95 |
foreach ( $wp_menu as $key => $item ) {
|
96 |
|
97 |
+
_mw_adminimize_debug( 'Adminimize Menu Settings: Menu Item Key', $key );
|
98 |
+
_mw_adminimize_debug( 'Adminimize Menu Settings: Menu Item', $item );
|
99 |
+
|
100 |
// non checked items
|
101 |
if ( $item[ 2 ] === 'options-general.php' ) {
|
102 |
$disabled_item_adm_hint = '<abbr title="' . esc_attr__(
|
146 |
$disabled_item_adm = '';
|
147 |
$disabled_item_adm_hint = '';
|
148 |
}
|
149 |
+
/**
|
150 |
+
* Switch to key of each Menu item
|
151 |
+
* @since 2016-01-29
|
152 |
+
*
|
153 |
+
* Use $key instead of htmlentities( $item[ 2 ] ) in the input field below, attribute value
|
154 |
+
*/
|
155 |
echo "\t" . '<td class="num">' . $disabled_item_adm_hint . '<input id="check_menu'
|
156 |
. $role . $x . '" class="menu_options_'
|
157 |
. preg_replace( '/[^a-z0-9]+/', '', $role ) . '" type="checkbox"'
|
158 |
. $disabled_item_adm . $checked_user_role_[ $role ]
|
159 |
. ' name="mw_adminimize_disabled_menu_' . $role . '_items[]" value="'
|
160 |
+
. $key . '" />' . $disabled_item_adm_hint . '</td>' . "\n";
|
161 |
}
|
162 |
echo '</tr>';
|
163 |
|
183 |
continue;
|
184 |
}
|
185 |
|
186 |
+
// Loop about Sub Menu items.
|
187 |
foreach ( $wp_submenu[ $item[ 2 ] ] as $subkey => $subitem ) {
|
188 |
|
189 |
// Special solutions for the Adminimize link, that it not works on settings site.
|
inc-options/minimenu.php
CHANGED
@@ -180,7 +180,7 @@ if ( _mw_adminimize_is_active_on_multisite() ) {
|
|
180 |
</ul>
|
181 |
<div class="form-invalid" style="padding:.3em 1em;">
|
182 |
<p>
|
183 |
-
<span style="font-size: 35px; float: left; margin: -5px 3px 0 0;">☝</span>
|
184 |
<?php esc_attr_e(
|
185 |
'Please note: The Adminimize settings page ignores the Menu Options below and displays the menu with all entries.',
|
186 |
'adminimize'
|
@@ -189,7 +189,7 @@ if ( _mw_adminimize_is_active_on_multisite() ) {
|
|
189 |
'To view your changes to the menu you need to navigate away from the Adminimize settings page.',
|
190 |
'adminimize'
|
191 |
); ?>
|
192 |
-
</p>
|
193 |
<?php if ( _mw_adminimize_is_active_on_multisite() ) { ?>
|
194 |
<p><?php esc_attr_e(
|
195 |
'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.',
|
180 |
</ul>
|
181 |
<div class="form-invalid" style="padding:.3em 1em;">
|
182 |
<p>
|
183 |
+
<span style="font-size: 35px; float: left; margin: -5px 3px 0 0;">☝</span><strong>
|
184 |
<?php esc_attr_e(
|
185 |
'Please note: The Adminimize settings page ignores the Menu Options below and displays the menu with all entries.',
|
186 |
'adminimize'
|
189 |
'To view your changes to the menu you need to navigate away from the Adminimize settings page.',
|
190 |
'adminimize'
|
191 |
); ?>
|
192 |
+
</strong></p>
|
193 |
<?php if ( _mw_adminimize_is_active_on_multisite() ) { ?>
|
194 |
<p><?php esc_attr_e(
|
195 |
'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.',
|
inc-options/settings_notice.php
CHANGED
File without changes
|
inc-options/theme_options.php
CHANGED
File without changes
|
inc-options/widget_options.php
CHANGED
File without changes
|
inc-options/wp_nav_menu_options.php
CHANGED
File without changes
|
inc-options/write_cp_options.php
CHANGED
File without changes
|
inc-options/write_page_options.php
CHANGED
File without changes
|
inc-options/write_post_options.php
CHANGED
File without changes
|
inc-setup/admin-bar-items.php
CHANGED
File without changes
|
inc-setup/admin-footer.php
CHANGED
File without changes
|
inc-setup/dashboard.php
CHANGED
File without changes
|
inc-setup/helping_hands.php
CHANGED
@@ -53,66 +53,43 @@ function _mw_adminimize_in_arrays( $array1, $array2 ) {
|
|
53 |
return (bool) count( array_intersect( $array1, $array2 ) );
|
54 |
}
|
55 |
|
56 |
-
// Fix some badly enqueued scripts with no sense of HTTPS.
|
57 |
-
// Kudos to http://snippets.webaware.com.au/snippets/cleaning-up-wordpress-plugin-script-and-stylesheet-loads-over-ssl/
|
58 |
-
add_action( 'wp_print_scripts', '_mw_adminimize_enqueueScriptsFix', 100 );
|
59 |
-
add_action( 'wp_print_styles', '_mw_adminimize_enqueueStylesFix', 100 );
|
60 |
-
|
61 |
/**
|
62 |
-
*
|
|
|
|
|
|
|
|
|
63 |
*/
|
64 |
-
function
|
65 |
-
|
66 |
-
if ( is_admin() ) {
|
67 |
-
return;
|
68 |
-
}
|
69 |
|
70 |
-
$
|
71 |
-
if (
|
72 |
-
return;
|
73 |
}
|
74 |
|
75 |
-
|
76 |
-
if ( FALSE !== stripos( $script->src, 'http://', 0 ) ) {
|
77 |
-
$script->src = str_replace( 'http://', 'https://', $script->src );
|
78 |
-
}
|
79 |
-
}
|
80 |
}
|
81 |
|
82 |
/**
|
83 |
-
*
|
|
|
|
|
|
|
|
|
84 |
*/
|
85 |
-
function
|
86 |
|
87 |
-
if (
|
88 |
return;
|
89 |
}
|
90 |
|
91 |
-
|
92 |
-
|
93 |
-
return;
|
94 |
}
|
95 |
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
}
|
100 |
-
}
|
101 |
-
}
|
102 |
|
103 |
-
|
104 |
-
* Check the role with the current user data.
|
105 |
-
*
|
106 |
-
* @param string $role
|
107 |
-
*
|
108 |
-
* @return bool
|
109 |
-
*/
|
110 |
-
function _mw_adminimize_current_user_has_role( $role ) {
|
111 |
-
|
112 |
-
$user = wp_get_current_user();
|
113 |
-
if ( in_array( $role, (array) $user->roles ) ) {
|
114 |
-
return TRUE;
|
115 |
-
}
|
116 |
-
|
117 |
-
return FALSE;
|
118 |
}
|
53 |
return (bool) count( array_intersect( $array1, $array2 ) );
|
54 |
}
|
55 |
|
|
|
|
|
|
|
|
|
|
|
56 |
/**
|
57 |
+
* Check the role with the current user data.
|
58 |
+
*
|
59 |
+
* @param string $role
|
60 |
+
*
|
61 |
+
* @return bool
|
62 |
*/
|
63 |
+
function _mw_adminimize_current_user_has_role( $role ) {
|
|
|
|
|
|
|
|
|
64 |
|
65 |
+
$user = wp_get_current_user();
|
66 |
+
if ( in_array( $role, (array) $user->roles, FALSE ) ) {
|
67 |
+
return TRUE;
|
68 |
}
|
69 |
|
70 |
+
return FALSE;
|
|
|
|
|
|
|
|
|
71 |
}
|
72 |
|
73 |
/**
|
74 |
+
* Simple helper to debug to the console of the browser.
|
75 |
+
* Set WP_DEBUG_DISPLAY in your wp-config.php to true for view debug messages inside the console.
|
76 |
+
*
|
77 |
+
* @param string $description
|
78 |
+
* @param string | array | object
|
79 |
*/
|
80 |
+
function _mw_adminimize_debug( $description = '' , $data ) {
|
81 |
|
82 |
+
if ( defined( WP_DEBUG_DISPLAY ) && ! WP_DEBUG_DISPLAY ) {
|
83 |
return;
|
84 |
}
|
85 |
|
86 |
+
if ( '' === $description ) {
|
87 |
+
$description = 'Debug in Console via Adminimize Plugin:';
|
|
|
88 |
}
|
89 |
|
90 |
+
$output = 'console.info(' . json_encode( $description ) . ');';
|
91 |
+
$output .= 'console.log(' . json_encode( $data ) . ');';
|
92 |
+
$output = sprintf( '<script>%s</script>', $output );
|
|
|
|
|
|
|
93 |
|
94 |
+
echo $output;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
}
|
inc-setup/meta-boxes.php
CHANGED
File without changes
|
inc-setup/remove-admin-bar.php
CHANGED
File without changes
|
inc-setup/widget.php
CHANGED
File without changes
|
js/adminimize.js
CHANGED
File without changes
|
js/remove_footer.js
CHANGED
File without changes
|
js/remove_header.js
CHANGED
File without changes
|
js/tb_window.js
CHANGED
File without changes
|
js/timestamp.js
CHANGED
File without changes
|
languages/adminimize-de_DE.mo
CHANGED
Binary file
|
languages/adminimize-de_DE.po
CHANGED
@@ -2,395 +2,74 @@
|
|
2 |
# This file is distributed under the same license as the Development (trunk) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator:
|
11 |
-
"Project-Id-Version: Development (trunk)\n"
|
12 |
-
|
13 |
-
#: inc-options/admin_bar.php:121
|
14 |
-
msgid "Switch to another back-end page and come back to update the options to get all items of the admin bar in the back end area."
|
15 |
-
msgstr "Wechsel auf eine andere Backend Seite und komme zurück um die Einstellungen zu aktualisieren. Im Anschluss erhälst du alle eingelesenen Einträge zur Admin Bar im Backend."
|
16 |
-
|
17 |
-
#. Description of the plugin/theme
|
18 |
-
msgid "Visually compresses the administrative 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 all 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."
|
19 |
-
msgstr "Visuelle Reduzierung des administrativen Bereiches auf das, was notwendig ist. Das Plugin gibt die die Möglichkeit \"unnötige\" Bereiche aus dem WordPress Adminisrationsbereich, Menus zu entfernen, getrennt für jede existierende Benutzerrolle. Du kannst außerdem diverse andere Bereiche ausblenden um das Interface zu vereinfachen. Es ist außerdem möglich eigene Optione pro Benutzerrolle zu ergänzen."
|
20 |
-
|
21 |
-
#: inc-options/minimenu.php:152
|
22 |
-
msgid "Further information: Visit the <a href=\"%1$s\">plugin homepage</a> for further information or to grab the latest version of this plugin. Also see the <a href=\"%2$s\">support forum</a> for questions."
|
23 |
-
msgstr "Weitere Informationen: Besuche die <a href=\"%1$s\">Plugin Website</a> für weitere Informationen oder um die neueste Version des Plugins zu erhalten. Besuche außerdem das <a href=\"%2$s\">Support Forum</a> für Fragen."
|
24 |
-
|
25 |
-
#: inc-options/minimenu.php:160
|
26 |
-
msgid "<br>For more hints about the functions and how to's with the possibilities of the plugin settings see the <a href=\"%s\">FAQ page</a> on the plugin site."
|
27 |
-
msgstr "<br>Weitere Hinweise über die Funktionen und wie du vorgehen musst um die Möglichkeiten des Plugins zu nutzen findest du auf der <a href=\"%s\">FAQ Seite</a> zum Plugin."
|
28 |
-
|
29 |
-
#: inc-options/minimenu.php:171
|
30 |
-
msgid "You want to thank me? Visit my <a href=\"%1$s\">wishlist</a> or <a href=\"%2$s\">donate</a>."
|
31 |
-
msgstr "Du willst Danke sagen? Besuche meine <a href=\"%1$s\">Wunschliste</a> oder <a href=\"%2$s\">spende</a>."
|
32 |
-
|
33 |
-
#: inc-options/minimenu.php:184 inc-options/settings_notice.php:17
|
34 |
-
msgid "Please note: The Adminimize settings page ignores the Menu Options below and displays the menu with all entries."
|
35 |
-
msgstr "Beachte: Die Adminimize-Einstellungsseite ignoriert die Menu Einstellungen um alle Einträge darzustellen."
|
36 |
-
|
37 |
-
#: inc-options/minimenu.php:188 inc-options/settings_notice.php:21
|
38 |
-
msgid "To view your changes to the menu you need to navigate away from the Adminimize settings page."
|
39 |
-
msgstr "Um die Einstellungen sichtbar zu sehen, musst du eine andere Seite besuchen, unabhängig der Adminimize-Einstellungsseite."
|
40 |
-
|
41 |
-
#: inc-options/admin_bar.php:90 inc-options/admin_bar_frontend.php:91
|
42 |
-
#: inc-options/menu_options.php:129
|
43 |
-
msgid "Group"
|
44 |
-
msgstr "Gruppe"
|
45 |
-
|
46 |
-
#: inc-options/menu_options.php:24
|
47 |
-
msgid "Menu options - Menu, Submenu"
|
48 |
-
msgstr "Menu Einstellungen - Menu, Submenu"
|
49 |
-
|
50 |
-
#: inc-options/admin_bar.php:49 inc-options/admin_bar_frontend.php:49
|
51 |
-
#: inc-options/dashboard_options.php:46 inc-options/global_options.php:32
|
52 |
-
#: inc-options/links_options.php:32 inc-options/menu_options.php:33
|
53 |
-
#: inc-options/widget_options.php:32 inc-options/wp_nav_menu_options.php:31
|
54 |
-
#: inc-options/write_cp_options.php:41 inc-options/write_page_options.php:30
|
55 |
-
#: inc-options/write_post_options.php:33
|
56 |
-
msgid "Select all"
|
57 |
-
msgstr "Alles auswählen"
|
58 |
-
|
59 |
-
#: inc-options/admin_bar_frontend.php:24 inc-options/minimenu.php:42
|
60 |
-
msgid "Admin Bar Front end Options"
|
61 |
-
msgstr "Admin Bar Frontend"
|
62 |
-
|
63 |
-
#: adminimize.php:1750
|
64 |
-
msgid "Please upload a valid .json file"
|
65 |
-
msgstr "Bitte wählen Sie eine gültige .json Datei zum Hochladen aus"
|
66 |
-
|
67 |
-
#: adminimize.php:1756
|
68 |
-
msgid "Please upload a file to import"
|
69 |
-
msgstr "Bitte laden sie eine Datei zum Importieren hoch"
|
70 |
-
|
71 |
-
#: inc-options/admin_bar.php:24
|
72 |
-
msgid "Admin Bar Back end options"
|
73 |
-
msgstr "Admin Bar Backend"
|
74 |
-
|
75 |
-
#: inc-options/admin_bar.php:84 inc-options/admin_bar_frontend.php:85
|
76 |
-
#: inc-options/dashboard_options.php:119
|
77 |
-
msgid "No Title!"
|
78 |
-
msgstr "Kein Titel!"
|
79 |
-
|
80 |
-
#: inc-options/admin_bar_frontend.php:122
|
81 |
-
msgid "Display the front end include load or refresh of the site to get all items of the admin bar in the front end area."
|
82 |
-
msgstr "Wechsel zum Frontend inklusive einem Aktualisieren um alle Einträge der Admin Bar zum Frontend zu erhalten."
|
83 |
-
|
84 |
-
#: inc-options/global_options.php:70
|
85 |
-
msgid "Admin Notices"
|
86 |
-
msgstr "Admin Hinweise"
|
87 |
-
|
88 |
-
#: inc-options/im_export_options.php:23
|
89 |
-
msgid "You can save a JSON formatted \".json\" file with your settings."
|
90 |
-
msgstr "Du kannst deine Einstellungen in einer \".json-Datei\" speichern."
|
91 |
-
|
92 |
-
#: inc-options/im_export_options.php:50
|
93 |
-
msgid "After import please reload the page to display also all global values from WordPress."
|
94 |
-
msgstr "Nach dem Import lade die Seite neu um alle Einstellungen, auch die globalen Einstellungen von WordPress zu listen."
|
95 |
-
|
96 |
-
#: inc-options/im_export_options.php:55
|
97 |
-
msgid "Choose a \".json\" file from your computer:"
|
98 |
-
msgstr "Wähle eine .json-Datei von deinem Rechner."
|
99 |
-
|
100 |
-
#: inc-options/minimenu.php:36
|
101 |
-
msgid "Admin Bar Back end Options"
|
102 |
-
msgstr "Admin Bar Backend"
|
103 |
-
|
104 |
-
#: inc-options/write_cp_options.php:131 inc-options/write_page_options.php:131
|
105 |
-
#: inc-options/write_post_options.php:132
|
106 |
-
msgid "Messages"
|
107 |
-
msgstr "Mitteilungen"
|
108 |
-
|
109 |
-
#: inc-options/write_cp_options.php:132 inc-options/write_page_options.php:132
|
110 |
-
#: inc-options/write_post_options.php:133
|
111 |
-
msgid "h2: Advanced Options"
|
112 |
-
msgstr "h2: Erweiterte Einstellungen"
|
113 |
-
|
114 |
-
#: inc-options/write_cp_options.php:133 inc-options/write_page_options.php:133
|
115 |
-
#: inc-options/write_post_options.php:134
|
116 |
-
msgid "Media Buttons (all)"
|
117 |
-
msgstr "Media Buttons (alle)"
|
118 |
-
|
119 |
-
#: inc-options/write_cp_options.php:134 inc-options/write_page_options.php:134
|
120 |
-
#: inc-options/write_post_options.php:135
|
121 |
-
msgid "Word count"
|
122 |
-
msgstr "Word count"
|
123 |
-
|
124 |
-
#: inc-options/write_cp_options.php:135 inc-options/write_post_options.php:136
|
125 |
-
msgid "Post Slug"
|
126 |
-
msgstr "Titelform"
|
127 |
-
|
128 |
-
#: inc-options/write_cp_options.php:137 inc-options/write_page_options.php:137
|
129 |
-
#: inc-options/write_post_options.php:138
|
130 |
-
msgid "Discussion"
|
131 |
-
msgstr "Kommentare"
|
132 |
-
|
133 |
-
#: inc-options/write_cp_options.php:138 inc-options/write_page_options.php:138
|
134 |
-
#: inc-options/write_post_options.php:139
|
135 |
-
msgid "HTML Editor Button"
|
136 |
-
msgstr "HTML Editor Button"
|
137 |
-
|
138 |
-
#: inc-options/write_cp_options.php:151 inc-options/write_post_options.php:153
|
139 |
-
msgid "Post Thumbnail"
|
140 |
-
msgstr "Artikelbild"
|
141 |
-
|
142 |
-
#: inc-options/write_cp_options.php:159 inc-options/write_page_options.php:157
|
143 |
-
#: inc-options/write_post_options.php:158
|
144 |
-
msgid "Quick Edit Link"
|
145 |
-
msgstr "QuickEdit Link"
|
146 |
-
|
147 |
-
#: inc-options/write_cp_options.php:160 inc-options/write_cp_options.php:164
|
148 |
-
#: inc-options/write_cp_options.php:167 inc-options/write_cp_options.php:170
|
149 |
-
#: inc-options/write_page_options.php:158
|
150 |
-
#: inc-options/write_page_options.php:163
|
151 |
-
#: inc-options/write_page_options.php:166
|
152 |
-
#: inc-options/write_post_options.php:159
|
153 |
-
#: inc-options/write_post_options.php:163
|
154 |
-
#: inc-options/write_post_options.php:166
|
155 |
-
#: inc-options/write_post_options.php:169
|
156 |
-
msgid "QE"
|
157 |
-
msgstr "QE"
|
158 |
-
|
159 |
-
#: inc-options/write_cp_options.php:160 inc-options/write_page_options.php:158
|
160 |
-
#: inc-options/write_post_options.php:159
|
161 |
-
msgid "Inline Edit Left"
|
162 |
-
msgstr "Inline Edit Links"
|
163 |
-
|
164 |
-
#: inc-options/write_cp_options.php:161 inc-options/write_page_options.php:159
|
165 |
-
#: inc-options/write_post_options.php:160
|
166 |
-
msgid "All Labels"
|
167 |
-
msgstr "Alle labels"
|
168 |
-
|
169 |
-
#: inc-options/write_cp_options.php:162 inc-options/write_page_options.php:161
|
170 |
-
#: inc-options/write_post_options.php:161
|
171 |
-
msgid "Author"
|
172 |
-
msgstr "Author"
|
173 |
-
|
174 |
-
#: inc-options/write_cp_options.php:163 inc-options/write_page_options.php:162
|
175 |
-
#: inc-options/write_post_options.php:162
|
176 |
-
msgid "Password and Private"
|
177 |
-
msgstr "Passwort und Privat-Flag"
|
178 |
-
|
179 |
-
#: inc-options/write_cp_options.php:164 inc-options/write_post_options.php:163
|
180 |
-
msgid "Inline Edit Center"
|
181 |
-
msgstr "Inline Edit mitte"
|
182 |
-
|
183 |
-
#: inc-options/write_cp_options.php:165 inc-options/write_post_options.php:164
|
184 |
-
msgid "Categories Title"
|
185 |
-
msgstr "Kategorien Title"
|
186 |
-
|
187 |
-
#: inc-options/write_cp_options.php:166 inc-options/write_post_options.php:165
|
188 |
-
msgid "Categories List"
|
189 |
-
msgstr "Kategorien Liste"
|
190 |
-
|
191 |
-
#: inc-options/write_cp_options.php:167 inc-options/write_page_options.php:163
|
192 |
-
#: inc-options/write_post_options.php:166
|
193 |
-
msgid "Inline Edit Right"
|
194 |
-
msgstr "Inline Edit rechts"
|
195 |
-
|
196 |
-
#: inc-options/write_cp_options.php:169 inc-options/write_post_options.php:168
|
197 |
-
msgid "Status, Sticky"
|
198 |
-
msgstr "Status, Sticky"
|
199 |
-
|
200 |
-
#: inc-options/write_cp_options.php:170 inc-options/write_page_options.php:166
|
201 |
-
#: inc-options/write_post_options.php:169
|
202 |
-
msgid "Cancel/Save Button"
|
203 |
-
msgstr "Abbrechen/Aktualisieren Button"
|
204 |
-
|
205 |
-
#: inc-options/write_cp_options.php:241
|
206 |
-
msgid "Your own %s options"
|
207 |
-
msgstr "Deine eigenen %s Einstellungen"
|
208 |
-
|
209 |
-
#: inc-options/write_page_options.php:119
|
210 |
-
#: inc-options/write_post_options.php:124
|
211 |
-
msgid "Title"
|
212 |
-
msgstr "Title"
|
213 |
-
|
214 |
-
#: inc-options/write_page_options.php:121
|
215 |
-
msgid "Custom Fields"
|
216 |
-
msgstr "Benutzerdefinierte Felder"
|
217 |
-
|
218 |
-
#: inc-options/write_page_options.php:122
|
219 |
-
msgid "Comments & Pings"
|
220 |
-
msgstr "Kommentare & Pings"
|
221 |
-
|
222 |
-
#: inc-options/write_page_options.php:123
|
223 |
-
#: inc-options/write_page_options.php:160
|
224 |
-
#: inc-options/write_post_options.php:129
|
225 |
-
msgid "Date"
|
226 |
-
msgstr "Datum"
|
227 |
-
|
228 |
-
#: inc-options/write_page_options.php:124
|
229 |
-
msgid "Password Protect This Page"
|
230 |
-
msgstr "Diese Seite mit einem Passwort versehen"
|
231 |
-
|
232 |
-
#: inc-options/write_page_options.php:125
|
233 |
-
msgid "Attributes"
|
234 |
-
msgstr "Attribute"
|
235 |
-
|
236 |
-
#: inc-options/write_page_options.php:126
|
237 |
-
msgid "Page Template"
|
238 |
-
msgstr "Seiten Template"
|
239 |
-
|
240 |
-
#: inc-options/write_page_options.php:127
|
241 |
-
msgid "Page Order"
|
242 |
-
msgstr "Reihenfolge"
|
243 |
-
|
244 |
-
#: inc-options/write_page_options.php:128
|
245 |
-
msgid "Page Author"
|
246 |
-
msgstr "Seitenautor"
|
247 |
-
|
248 |
-
#: inc-options/write_page_options.php:129
|
249 |
-
msgid "Page Revisions"
|
250 |
-
msgstr "Page Revisions"
|
251 |
-
|
252 |
-
#: inc-options/write_page_options.php:130
|
253 |
-
msgid "Related"
|
254 |
-
msgstr "Siehe auch"
|
255 |
-
|
256 |
-
#: inc-options/write_page_options.php:135
|
257 |
-
msgid "Page Slug"
|
258 |
-
msgstr "Titelform"
|
259 |
-
|
260 |
-
#: inc-options/write_page_options.php:152
|
261 |
-
msgid "Page Image"
|
262 |
-
msgstr "Artikelbild"
|
263 |
-
|
264 |
-
#: inc-options/write_page_options.php:164
|
265 |
-
msgid "Parent, Order, Template"
|
266 |
-
msgstr "Eltern, Reihenfolge, Template"
|
267 |
-
|
268 |
-
#: inc-options/write_page_options.php:165
|
269 |
-
msgid "Status"
|
270 |
-
msgstr "Status"
|
271 |
-
|
272 |
-
#: inc-options/write_page_options.php:220
|
273 |
-
msgid "Your own page options"
|
274 |
-
msgstr "Deine eigenen Seiten-Einstellungen"
|
275 |
|
276 |
-
#:
|
277 |
-
msgid "Your own post options"
|
278 |
-
msgstr "Deine eigenen Beitrags-Einstellungen"
|
279 |
-
|
280 |
-
#: inc-setup/remove-admin-bar.php:272 inc-setup/remove-admin-bar.php:274
|
281 |
-
msgid "Network Admin"
|
282 |
-
msgstr "Netwerk-Admin"
|
283 |
-
|
284 |
-
#: inc-setup/remove-admin-bar.php:276 inc-setup/remove-admin-bar.php:278
|
285 |
-
msgid "Site Admin"
|
286 |
-
msgstr "Site-Admin"
|
287 |
-
|
288 |
-
#. Plugin URI of the plugin/theme
|
289 |
-
msgid "https://wordpress.org/plugins/adminimize/"
|
290 |
-
msgstr "https://wordpress.org/plugins/adminimize/"
|
291 |
-
|
292 |
-
#. Author of the plugin/theme
|
293 |
-
msgid "Frank Bültge"
|
294 |
-
msgstr "Frank Bültge"
|
295 |
-
|
296 |
-
#. Author URI of the plugin/theme
|
297 |
-
msgid "http://bueltge.de/"
|
298 |
-
msgstr "http://bueltge.de/"
|
299 |
-
|
300 |
-
#: inc-setup/messages.php:38
|
301 |
-
msgid "Unknown error."
|
302 |
-
msgstr "Unbekannter Fehler."
|
303 |
-
|
304 |
-
#: inc-setup/messages.php:49
|
305 |
-
msgid "The updates were saved."
|
306 |
-
msgstr "Die Einstellungen wurden gespeichert"
|
307 |
-
|
308 |
-
#: inc-setup/messages.php:52
|
309 |
-
msgid "You have not enough rights to edit entries in the database."
|
310 |
-
msgstr "Du hast nicht ausreichend Rechte um diese Aktion durchzuführen!"
|
311 |
-
|
312 |
-
#: inc-setup/messages.php:55
|
313 |
-
msgid "All entries in the database were imported."
|
314 |
-
msgstr "Alle Einträge wurden in die Datenbank geschrieben."
|
315 |
-
|
316 |
-
#: inc-setup/messages.php:58
|
317 |
-
msgid "All entries in the database were deleted."
|
318 |
-
msgstr "Die Einstellungen wurde gelöscht!"
|
319 |
-
|
320 |
-
#: inc-setup/messages.php:61
|
321 |
-
msgid "Set the checkbox on deinstall-button."
|
322 |
-
msgstr "Checkbox setzen, wenn wirklich deinstalliert werden soll!"
|
323 |
-
|
324 |
-
#: inc-setup/messages.php:64
|
325 |
-
msgid "Can't load menu and submenu."
|
326 |
-
msgstr "Menu und Submenu können nicht geladen werden!"
|
327 |
-
|
328 |
-
#: inc-setup/messages.php:66
|
329 |
-
msgid "Backend-Theme was activated!"
|
330 |
-
msgstr "Backend-Theme wurde zugewiesen!"
|
331 |
-
|
332 |
-
#: inc-setup/messages.php:68
|
333 |
-
msgid "Load user data to themes was successful."
|
334 |
-
msgstr "Das Laden der User-Daten zum Theme war erfolgreich."
|
335 |
-
|
336 |
-
#: adminimize.php:159
|
337 |
msgid "Keymaster"
|
338 |
msgstr "Administrator"
|
339 |
|
340 |
-
#: adminimize.php:
|
341 |
msgid "Moderator"
|
342 |
msgstr "Moderator"
|
343 |
|
344 |
-
#: adminimize.php:
|
345 |
msgid "Participant"
|
346 |
msgstr "Teilnehmer"
|
347 |
|
348 |
-
#: adminimize.php:
|
349 |
msgid "Spectator"
|
350 |
msgstr "Zuschauer"
|
351 |
|
352 |
-
#: adminimize.php:
|
353 |
msgid "Blocked"
|
354 |
msgstr "Gesperrt"
|
355 |
|
356 |
-
#:
|
357 |
-
#: inc-options/write_post_options.php:127
|
358 |
-
msgid "Categories"
|
359 |
-
msgstr "Kategorien"
|
360 |
-
|
361 |
-
#: inc-options/write_cp_options.php:128 inc-options/write_post_options.php:128
|
362 |
-
msgid "Add New Category"
|
363 |
-
msgstr "Add New Category"
|
364 |
-
|
365 |
-
#: adminimize.php:533 adminimize.php:534 adminimize.php:540 adminimize.php:541
|
366 |
msgid "Dashboard"
|
367 |
msgstr "Dashboard"
|
368 |
|
369 |
#: adminimize.php:613 adminimize.php:619 adminimize.php:621 adminimize.php:639
|
370 |
-
#: adminimize.php:647 adminimize.php:649 adminimize.php:
|
371 |
#: inc-setup/remove-admin-bar.php:64 inc-setup/remove-admin-bar.php:91
|
372 |
#: inc-setup/remove-admin-bar.php:284
|
373 |
msgid "Log Out"
|
374 |
msgstr "Log Out"
|
375 |
|
376 |
-
#: adminimize.php:
|
377 |
msgid "Settings"
|
378 |
msgstr "Settings"
|
379 |
|
380 |
-
#: adminimize.php:
|
381 |
msgid "Adminimize Options"
|
382 |
msgstr "Adminimize Einstellungen"
|
383 |
|
384 |
-
#. #-#-#-#-# tmp-adminimize.pot (Adminimize 1.9.0-RC2) #-#-#-#-#
|
385 |
#. Plugin Name of the plugin/theme
|
386 |
-
#: adminimize.php:1210 inc-options/minimenu.php:19
|
387 |
msgid "Adminimize"
|
388 |
msgstr "Adminimize"
|
389 |
|
390 |
-
#: adminimize.php:
|
391 |
msgid "Cheatin’ uh?"
|
392 |
msgstr "Cheatin’ uh?"
|
393 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
394 |
#: inc-options/admin_bar.php:22 inc-options/admin_bar.php:23
|
395 |
#: inc-options/admin_bar_frontend.php:22 inc-options/admin_bar_frontend.php:23
|
396 |
#: inc-options/backend_options.php:15 inc-options/dashboard_options.php:16
|
@@ -405,14 +84,17 @@ msgstr "Cheatin’ uh?"
|
|
405 |
msgid "Click to toggle"
|
406 |
msgstr "Zum Umschalten klicken"
|
407 |
|
|
|
|
|
|
|
|
|
408 |
#: inc-options/admin_bar.php:41 inc-options/admin_bar_frontend.php:41
|
409 |
-
#: inc-options/dashboard_options.php:38 inc-options/dashboard_options.php:
|
410 |
#: inc-options/global_options.php:24 inc-options/global_options.php:127
|
411 |
#: inc-options/links_options.php:24 inc-options/links_options.php:128
|
412 |
#: inc-options/widget_options.php:24 inc-options/widget_options.php:140
|
413 |
-
#: inc-options/wp_nav_menu_options.php:23
|
414 |
-
#: inc-options/
|
415 |
-
#: inc-options/write_page_options.php:224
|
416 |
#: inc-options/write_post_options.php:227
|
417 |
msgid "Option"
|
418 |
msgstr "Einstellung"
|
@@ -426,197 +108,264 @@ msgstr "Einstellung"
|
|
426 |
msgid "Deactivate for"
|
427 |
msgstr "Deaktiviere für"
|
428 |
|
429 |
-
#: inc-options/admin_bar.php:
|
430 |
-
#: inc-options/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
431 |
#: inc-options/global_options.php:166 inc-options/links_options.php:165
|
432 |
-
#: inc-options/menu_options.php:
|
433 |
-
#: inc-options/wp_nav_menu_options.php:192 inc-options/write_cp_options.php:
|
434 |
-
#: inc-options/write_page_options.php:261
|
435 |
-
#: inc-options/write_post_options.php:264
|
436 |
msgid "Update Options"
|
437 |
msgstr "Einstellungen aktualisieren"
|
438 |
|
439 |
-
#: inc-options/admin_bar.php:
|
440 |
-
#: inc-options/backend_options.php:
|
441 |
#: inc-options/deinstall_options.php:36 inc-options/global_options.php:173
|
442 |
#: inc-options/im_export_options.php:77 inc-options/links_options.php:171
|
443 |
-
#: inc-options/menu_options.php:
|
444 |
#: inc-options/theme_options.php:121 inc-options/widget_options.php:183
|
445 |
-
#: inc-options/wp_nav_menu_options.php:198 inc-options/write_cp_options.php:
|
446 |
-
#: inc-options/write_page_options.php:266
|
447 |
-
#: inc-options/write_post_options.php:270
|
448 |
msgid "scroll to top"
|
449 |
msgstr "Nach oben"
|
450 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
451 |
#: inc-options/backend_options.php:16 inc-options/minimenu.php:48
|
452 |
msgid "Backend Options"
|
453 |
msgstr "Einstellungen Backend"
|
454 |
|
455 |
-
#: inc-options/backend_options.php:
|
456 |
msgid "Exclude Super Admin"
|
457 |
msgstr "Ausschließen des Super Admin"
|
458 |
|
459 |
-
#: inc-options/backend_options.php:
|
460 |
-
#: inc-options/backend_options.php:
|
461 |
-
#: inc-options/backend_options.php:
|
462 |
-
#: inc-options/backend_options.php:
|
463 |
msgid "Default"
|
464 |
msgstr "Standard"
|
465 |
|
466 |
-
#: inc-options/backend_options.php:
|
467 |
-
#: inc-options/backend_options.php:
|
468 |
msgid "Activate"
|
469 |
msgstr "Aktiv"
|
470 |
|
471 |
-
#: inc-options/backend_options.php:
|
472 |
-
msgid "
|
473 |
-
|
|
|
|
|
|
|
|
|
474 |
|
475 |
-
#: inc-options/backend_options.php:
|
476 |
msgid "User-Info"
|
477 |
msgstr "User-Info"
|
478 |
|
479 |
-
#: inc-options/backend_options.php:
|
480 |
msgid "Hide"
|
481 |
msgstr "Ausblenden"
|
482 |
|
483 |
-
#: inc-options/backend_options.php:
|
484 |
msgid "Only logout"
|
485 |
msgstr "nur Abmelden"
|
486 |
|
487 |
-
#: inc-options/backend_options.php:
|
488 |
msgid "User & Logout"
|
489 |
msgstr "User & Abmelden"
|
490 |
|
491 |
-
#: inc-options/backend_options.php:
|
492 |
-
msgid "
|
493 |
-
|
|
|
|
|
|
|
|
|
494 |
|
495 |
-
#: inc-options/backend_options.php:
|
496 |
msgid "Change User-Info, redirect to"
|
497 |
msgstr "User Info geändert, Weiterleitung nach"
|
498 |
|
499 |
-
#: inc-options/backend_options.php:
|
500 |
msgid "Frontpage of the Blog"
|
501 |
msgstr "Startseite des Blog"
|
502 |
|
503 |
-
#: inc-options/backend_options.php:
|
504 |
-
msgid "
|
505 |
-
|
|
|
|
|
|
|
|
|
506 |
|
507 |
-
#: inc-options/backend_options.php:
|
508 |
msgid "Footer"
|
509 |
msgstr "Footer"
|
510 |
|
511 |
-
#: inc-options/backend_options.php:
|
512 |
msgid "The Footer-area can hide, include all links and details."
|
513 |
-
msgstr "
|
|
|
514 |
|
515 |
-
#: inc-options/backend_options.php:
|
516 |
msgid "Timestamp"
|
517 |
msgstr "Timestamp"
|
518 |
|
519 |
-
#: inc-options/backend_options.php:
|
520 |
-
msgid "
|
521 |
-
|
|
|
|
|
|
|
522 |
|
523 |
-
#: inc-options/backend_options.php:
|
524 |
msgid "Category Height"
|
525 |
msgstr "Kategorie-Höhe"
|
526 |
|
527 |
-
#: inc-options/backend_options.php:
|
528 |
-
msgid "
|
529 |
-
|
|
|
|
|
|
|
530 |
|
531 |
-
#: inc-options/backend_options.php:
|
532 |
msgid "Advice in Footer"
|
533 |
msgstr "Hinweis im Footer"
|
534 |
|
535 |
-
#: inc-options/backend_options.php:
|
536 |
-
msgid "
|
537 |
-
|
|
|
|
|
|
|
|
|
538 |
|
539 |
-
#: inc-options/backend_options.php:
|
540 |
msgid "Dashboard deactivate, redirect to"
|
541 |
msgstr "Dashboard inaktiv, Weiterleitung nach"
|
542 |
|
543 |
-
#: inc-options/backend_options.php:
|
544 |
msgid "Manage Posts"
|
545 |
msgstr "Verwalten Beiträge"
|
546 |
|
547 |
-
#: inc-options/backend_options.php:
|
548 |
msgid "Manage Pages"
|
549 |
msgstr "Verwalten Seiten"
|
550 |
|
551 |
-
#: inc-options/backend_options.php:
|
552 |
msgid "Write Post"
|
553 |
msgstr "Schreiben Beitrag"
|
554 |
|
555 |
-
#: inc-options/backend_options.php:
|
556 |
msgid "Write Page"
|
557 |
msgstr "Schreiben Seite"
|
558 |
|
559 |
-
#: inc-options/backend_options.php:
|
560 |
msgid "Comments"
|
561 |
msgstr "Kommentare"
|
562 |
|
563 |
-
#: inc-options/backend_options.php:
|
564 |
msgid "other Page"
|
565 |
msgstr "andere Seite"
|
566 |
|
567 |
-
#: inc-options/backend_options.php:
|
568 |
-
msgid "
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
#: inc-options/im_export_options.php:40
|
576 |
-
msgid "Import"
|
577 |
-
msgstr "Import"
|
578 |
|
579 |
#: inc-options/dashboard_options.php:17 inc-options/minimenu.php:58
|
580 |
msgid "Dashboard options"
|
581 |
msgstr "Dashboard Einstellungen"
|
582 |
|
583 |
#: inc-options/dashboard_options.php:27
|
584 |
-
msgid "
|
585 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
586 |
|
587 |
-
#: inc-options/dashboard_options.php:
|
588 |
msgid "Your own options"
|
589 |
msgstr "Deine eigenen Einstellungen"
|
590 |
|
591 |
-
#: inc-options/dashboard_options.php:
|
592 |
#: inc-options/links_options.php:126 inc-options/widget_options.php:138
|
593 |
-
#: inc-options/wp_nav_menu_options.php:153 inc-options/write_cp_options.php:
|
594 |
-
#: inc-options/write_page_options.php:222
|
595 |
-
#: inc-options/write_post_options.php:225
|
596 |
msgid "ID or class"
|
597 |
msgstr "ID oder Klasse"
|
598 |
|
599 |
-
#: inc-options/dashboard_options.php:
|
600 |
#: inc-options/links_options.php:134 inc-options/widget_options.php:146
|
601 |
-
#: inc-options/wp_nav_menu_options.php:161 inc-options/write_cp_options.php:
|
602 |
-
#: inc-options/write_page_options.php:230
|
603 |
-
|
604 |
-
|
605 |
-
|
|
|
|
|
|
|
|
|
|
|
606 |
|
607 |
-
#: inc-options/dashboard_options.php:
|
608 |
#: inc-options/links_options.php:145 inc-options/widget_options.php:157
|
609 |
-
#: inc-options/wp_nav_menu_options.php:172 inc-options/write_cp_options.php:
|
610 |
-
#: inc-options/write_page_options.php:241
|
611 |
-
|
612 |
-
|
|
|
613 |
msgstr "Mögliche Benennung der ID oder Klasse. Trenne Werte durch eine neue Zeile."
|
614 |
|
615 |
-
#: inc-options/dashboard_options.php:
|
616 |
#: inc-options/links_options.php:155 inc-options/widget_options.php:167
|
617 |
-
#: inc-options/wp_nav_menu_options.php:182 inc-options/write_cp_options.php:
|
618 |
-
#: inc-options/write_page_options.php:251
|
619 |
-
#: inc-options/write_post_options.php:254
|
620 |
msgid "Possible IDs or classes. Separate multiple values through a carriage return."
|
621 |
msgstr "Mögliche IDs oder Klassen. Trenne Werte durch eine neue Zeile."
|
622 |
|
@@ -625,8 +374,14 @@ msgid "Uninstall Options"
|
|
625 |
msgstr "Einstellungen deinstallieren"
|
626 |
|
627 |
#: inc-options/deinstall_options.php:18
|
628 |
-
msgid "
|
629 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
630 |
|
631 |
#: inc-options/deinstall_options.php:27
|
632 |
msgid "Delete Options"
|
@@ -649,9 +404,8 @@ msgid "Screen-Meta"
|
|
649 |
msgstr "Screen-Meta"
|
650 |
|
651 |
#: inc-options/global_options.php:67 inc-options/widget_options.php:63
|
652 |
-
#: inc-options/wp_nav_menu_options.php:66 inc-options/write_cp_options.php:
|
653 |
-
#: inc-options/write_page_options.php:118
|
654 |
-
#: inc-options/write_post_options.php:123
|
655 |
msgid "Screen Options"
|
656 |
msgstr "kontextabhängige Optionen"
|
657 |
|
@@ -663,17 +417,49 @@ msgstr "kontextabhängig Hilfe"
|
|
663 |
msgid "Admin Color Scheme"
|
664 |
msgstr "Farbschema verwalten"
|
665 |
|
|
|
|
|
|
|
|
|
666 |
#: inc-options/im_export_options.php:15 inc-options/minimenu.php:121
|
667 |
msgid "Export/Import Options"
|
668 |
msgstr "Export/Import Einstellungen"
|
669 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
670 |
#: inc-options/im_export_options.php:31
|
671 |
msgid "Export »"
|
672 |
msgstr "Exportieren »"
|
673 |
|
674 |
-
#: inc-options/im_export_options.php:
|
675 |
-
msgid "
|
676 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
677 |
|
678 |
#: inc-options/im_export_options.php:66
|
679 |
msgid "Upload file and import »"
|
@@ -695,6 +481,11 @@ msgstr "Web-Adresse"
|
|
695 |
msgid "Description"
|
696 |
msgstr "Beschreibung"
|
697 |
|
|
|
|
|
|
|
|
|
|
|
698 |
#: inc-options/links_options.php:69
|
699 |
msgid "Target"
|
700 |
msgstr "Target"
|
@@ -707,9 +498,8 @@ msgstr "Link-Beziehungen (XFN)"
|
|
707 |
msgid "Advanced"
|
708 |
msgstr "Erweitert"
|
709 |
|
710 |
-
#: inc-options/links_options.php:72 inc-options/write_cp_options.php:
|
711 |
-
#: inc-options/write_page_options.php:136
|
712 |
-
#: inc-options/write_post_options.php:137
|
713 |
msgid "Publish Actions"
|
714 |
msgstr "Publish Actions"
|
715 |
|
@@ -721,11 +511,16 @@ msgstr "Deine eigenen Link Einstellungen"
|
|
721 |
msgid "Menu Options"
|
722 |
msgstr "Menu Einstellungen"
|
723 |
|
724 |
-
#: inc-options/menu_options.php:
|
|
|
|
|
|
|
|
|
725 |
msgid "After activate the check box it heavy attitudes will change."
|
726 |
-
msgstr "
|
|
|
727 |
|
728 |
-
#: inc-options/menu_options.php:
|
729 |
msgid "Profile"
|
730 |
msgstr "Profile"
|
731 |
|
@@ -741,6 +536,10 @@ msgstr "MiniMenu"
|
|
741 |
msgid "About the plugin"
|
742 |
msgstr "Über das Plugin"
|
743 |
|
|
|
|
|
|
|
|
|
744 |
#: inc-options/minimenu.php:68 inc-options/write_post_options.php:17
|
745 |
#: inc-options/write_post_options.php:25
|
746 |
msgid "Write options - Post"
|
@@ -773,21 +572,81 @@ msgstr "Theme zuweisen"
|
|
773 |
msgid "Version"
|
774 |
msgstr "Version"
|
775 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
776 |
#: inc-options/minimenu.php:163
|
777 |
msgid "Report a issue on the development repository:"
|
778 |
msgstr "Melde einen Fehler, Hinweis am Entwicklungsrepository:"
|
779 |
|
780 |
#: inc-options/minimenu.php:165
|
781 |
-
msgid "
|
782 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
783 |
|
784 |
#: inc-options/minimenu.php:194
|
785 |
-
msgid "
|
786 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
787 |
|
788 |
#: inc-options/theme_options.php:26
|
789 |
-
msgid "
|
790 |
-
|
|
|
|
|
|
|
|
|
791 |
|
792 |
#: inc-options/theme_options.php:33
|
793 |
msgid "Load User Data"
|
@@ -818,7 +677,7 @@ msgid "Role"
|
|
818 |
msgstr "Rolle"
|
819 |
|
820 |
#: inc-options/widget_options.php:62 inc-options/wp_nav_menu_options.php:65
|
821 |
-
#: inc-options/write_cp_options.php:
|
822 |
#: inc-options/write_post_options.php:122
|
823 |
msgid "Help"
|
824 |
msgstr "Hilfe"
|
@@ -839,8 +698,7 @@ msgstr "Inaktive Widgets"
|
|
839 |
msgid "Your own Widget options"
|
840 |
msgstr "Deine eigenen Widget-Einstellungen"
|
841 |
|
842 |
-
#: inc-options/wp_nav_menu_options.php:67
|
843 |
-
#: inc-options/wp_nav_menu_options.php:73
|
844 |
msgid "Theme Locations"
|
845 |
msgstr "Anordnung im Theme"
|
846 |
|
@@ -856,25 +714,277 @@ msgstr "Menu hinzufügen"
|
|
856 |
msgid "Your own Nav Menu options"
|
857 |
msgstr "Deine eigenen Nav Menu Einstellungen"
|
858 |
|
859 |
-
#: inc-options/write_cp_options.php:
|
860 |
#: inc-options/write_post_options.php:125
|
861 |
msgid "Permalink"
|
862 |
msgstr "Permalink"
|
863 |
|
864 |
-
#: inc-options/write_cp_options.php:
|
865 |
-
#: inc-options/write_post_options.php:126
|
866 |
-
#: inc-options/write_post_options.php:167
|
867 |
msgid "Tags"
|
868 |
msgstr "Tags"
|
869 |
|
870 |
-
#: inc-options/write_cp_options.php:
|
871 |
msgid "Format"
|
872 |
msgstr "Format"
|
873 |
|
874 |
-
#: inc-options/write_cp_options.php:129 inc-options/write_post_options.php:
|
|
|
|
|
|
|
|
|
875 |
msgid "Password Protect This Post"
|
876 |
msgstr "Diesen Artikel durch ein Passwort schützen"
|
877 |
|
878 |
-
#: inc-options/write_cp_options.php:
|
879 |
msgid "Related, Shortcuts"
|
880 |
-
msgstr "Siehe auch, Tastaturkürzel"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
# This file is distributed under the same license as the Development (trunk) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Development (trunk)\n"
|
6 |
+
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/adminimize\n"
|
7 |
+
"POT-Creation-Date: 2016-01-30 23:09+0100\n"
|
8 |
+
"PO-Revision-Date: 2016-01-30 23:10+0100\n"
|
9 |
+
"Last-Translator: Frank Bültge <frank@bueltge.de>\n"
|
10 |
+
"Language-Team: \n"
|
11 |
+
"Language: de_DE\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
16 |
+
"X-Generator: Poedit 1.8.4\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
|
18 |
+
#: adminimize.php:178
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
msgid "Keymaster"
|
20 |
msgstr "Administrator"
|
21 |
|
22 |
+
#: adminimize.php:179
|
23 |
msgid "Moderator"
|
24 |
msgstr "Moderator"
|
25 |
|
26 |
+
#: adminimize.php:180
|
27 |
msgid "Participant"
|
28 |
msgstr "Teilnehmer"
|
29 |
|
30 |
+
#: adminimize.php:181
|
31 |
msgid "Spectator"
|
32 |
msgstr "Zuschauer"
|
33 |
|
34 |
+
#: adminimize.php:182
|
35 |
msgid "Blocked"
|
36 |
msgstr "Gesperrt"
|
37 |
|
38 |
+
#: adminimize.php:536
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
msgid "Dashboard"
|
40 |
msgstr "Dashboard"
|
41 |
|
42 |
#: adminimize.php:613 adminimize.php:619 adminimize.php:621 adminimize.php:639
|
43 |
+
#: adminimize.php:647 adminimize.php:649 adminimize.php:1154
|
44 |
#: inc-setup/remove-admin-bar.php:64 inc-setup/remove-admin-bar.php:91
|
45 |
#: inc-setup/remove-admin-bar.php:284
|
46 |
msgid "Log Out"
|
47 |
msgstr "Log Out"
|
48 |
|
49 |
+
#: adminimize.php:1207
|
50 |
msgid "Settings"
|
51 |
msgstr "Settings"
|
52 |
|
53 |
+
#: adminimize.php:1220
|
54 |
msgid "Adminimize Options"
|
55 |
msgstr "Adminimize Einstellungen"
|
56 |
|
|
|
57 |
#. Plugin Name of the plugin/theme
|
|
|
58 |
msgid "Adminimize"
|
59 |
msgstr "Adminimize"
|
60 |
|
61 |
+
#: adminimize.php:1256
|
62 |
msgid "Cheatin’ uh?"
|
63 |
msgstr "Cheatin’ uh?"
|
64 |
|
65 |
+
#: adminimize.php:1763
|
66 |
+
msgid "Please upload a valid .json file"
|
67 |
+
msgstr "Bitte wählen Sie eine gültige .json Datei zum Hochladen aus"
|
68 |
+
|
69 |
+
#: adminimize.php:1769
|
70 |
+
msgid "Please upload a file to import"
|
71 |
+
msgstr "Bitte laden sie eine Datei zum Importieren hoch"
|
72 |
+
|
73 |
#: inc-options/admin_bar.php:22 inc-options/admin_bar.php:23
|
74 |
#: inc-options/admin_bar_frontend.php:22 inc-options/admin_bar_frontend.php:23
|
75 |
#: inc-options/backend_options.php:15 inc-options/dashboard_options.php:16
|
84 |
msgid "Click to toggle"
|
85 |
msgstr "Zum Umschalten klicken"
|
86 |
|
87 |
+
#: inc-options/admin_bar.php:24
|
88 |
+
msgid "Admin Bar Back end options"
|
89 |
+
msgstr "Admin Bar Backend"
|
90 |
+
|
91 |
#: inc-options/admin_bar.php:41 inc-options/admin_bar_frontend.php:41
|
92 |
+
#: inc-options/dashboard_options.php:38 inc-options/dashboard_options.php:147
|
93 |
#: inc-options/global_options.php:24 inc-options/global_options.php:127
|
94 |
#: inc-options/links_options.php:24 inc-options/links_options.php:128
|
95 |
#: inc-options/widget_options.php:24 inc-options/widget_options.php:140
|
96 |
+
#: inc-options/wp_nav_menu_options.php:23 inc-options/wp_nav_menu_options.php:155
|
97 |
+
#: inc-options/write_cp_options.php:249 inc-options/write_page_options.php:224
|
|
|
98 |
#: inc-options/write_post_options.php:227
|
99 |
msgid "Option"
|
100 |
msgstr "Einstellung"
|
108 |
msgid "Deactivate for"
|
109 |
msgstr "Deaktiviere für"
|
110 |
|
111 |
+
#: inc-options/admin_bar.php:49 inc-options/admin_bar_frontend.php:49
|
112 |
+
#: inc-options/dashboard_options.php:46 inc-options/global_options.php:32
|
113 |
+
#: inc-options/links_options.php:32 inc-options/menu_options.php:33
|
114 |
+
#: inc-options/widget_options.php:32 inc-options/wp_nav_menu_options.php:31
|
115 |
+
#: inc-options/write_cp_options.php:41 inc-options/write_page_options.php:30
|
116 |
+
#: inc-options/write_post_options.php:33
|
117 |
+
msgid "Select all"
|
118 |
+
msgstr "Alles auswählen"
|
119 |
+
|
120 |
+
#: inc-options/admin_bar.php:83 inc-options/admin_bar_frontend.php:85
|
121 |
+
#: inc-options/dashboard_options.php:114
|
122 |
+
msgid "No Title!"
|
123 |
+
msgstr "Kein Titel!"
|
124 |
+
|
125 |
+
#: inc-options/admin_bar.php:89 inc-options/admin_bar_frontend.php:91
|
126 |
+
#: inc-options/menu_options.php:132
|
127 |
+
msgid "Group"
|
128 |
+
msgstr "Gruppe"
|
129 |
+
|
130 |
+
#: inc-options/admin_bar.php:120
|
131 |
+
msgid ""
|
132 |
+
"Switch to another back-end page and come back to update the options to get all "
|
133 |
+
"items of the admin bar in the back end area."
|
134 |
+
msgstr ""
|
135 |
+
"Wechsel auf eine andere Backend Seite und komme zurück um die Einstellungen zu "
|
136 |
+
"aktualisieren. Im Anschluss erhälst du alle eingelesenen Einträge zur Admin Bar im "
|
137 |
+
"Backend."
|
138 |
+
|
139 |
+
#: inc-options/admin_bar.php:129 inc-options/admin_bar_frontend.php:135
|
140 |
+
#: inc-options/backend_options.php:245 inc-options/dashboard_options.php:193
|
141 |
#: inc-options/global_options.php:166 inc-options/links_options.php:165
|
142 |
+
#: inc-options/menu_options.php:256 inc-options/widget_options.php:177
|
143 |
+
#: inc-options/wp_nav_menu_options.php:192 inc-options/write_cp_options.php:297
|
144 |
+
#: inc-options/write_page_options.php:261 inc-options/write_post_options.php:264
|
|
|
145 |
msgid "Update Options"
|
146 |
msgstr "Einstellungen aktualisieren"
|
147 |
|
148 |
+
#: inc-options/admin_bar.php:136 inc-options/admin_bar_frontend.php:142
|
149 |
+
#: inc-options/backend_options.php:251 inc-options/dashboard_options.php:201
|
150 |
#: inc-options/deinstall_options.php:36 inc-options/global_options.php:173
|
151 |
#: inc-options/im_export_options.php:77 inc-options/links_options.php:171
|
152 |
+
#: inc-options/menu_options.php:262 inc-options/minimenu.php:203
|
153 |
#: inc-options/theme_options.php:121 inc-options/widget_options.php:183
|
154 |
+
#: inc-options/wp_nav_menu_options.php:198 inc-options/write_cp_options.php:303
|
155 |
+
#: inc-options/write_page_options.php:266 inc-options/write_post_options.php:270
|
|
|
156 |
msgid "scroll to top"
|
157 |
msgstr "Nach oben"
|
158 |
|
159 |
+
#: inc-options/admin_bar_frontend.php:24 inc-options/minimenu.php:42
|
160 |
+
msgid "Admin Bar Front end Options"
|
161 |
+
msgstr "Admin Bar Frontend"
|
162 |
+
|
163 |
+
#: inc-options/admin_bar_frontend.php:122
|
164 |
+
msgid ""
|
165 |
+
"You must open the front end of the site in this browser in order for the plugin to "
|
166 |
+
"discover the Admin Bar items that are currently not visible."
|
167 |
+
msgstr ""
|
168 |
+
"Du musst die Site, das Frontend, in diesem Browser besuchen, damit das Plugin die "
|
169 |
+
"nicht sichtbaren Admin Bar Einträge laden kann."
|
170 |
+
|
171 |
#: inc-options/backend_options.php:16 inc-options/minimenu.php:48
|
172 |
msgid "Backend Options"
|
173 |
msgstr "Einstellungen Backend"
|
174 |
|
175 |
+
#: inc-options/backend_options.php:28
|
176 |
msgid "Exclude Super Admin"
|
177 |
msgstr "Ausschließen des Super Admin"
|
178 |
|
179 |
+
#: inc-options/backend_options.php:36 inc-options/backend_options.php:56
|
180 |
+
#: inc-options/backend_options.php:86 inc-options/backend_options.php:103
|
181 |
+
#: inc-options/backend_options.php:121 inc-options/backend_options.php:140
|
182 |
+
#: inc-options/backend_options.php:157 inc-options/backend_options.php:203
|
183 |
msgid "Default"
|
184 |
msgstr "Standard"
|
185 |
|
186 |
+
#: inc-options/backend_options.php:39 inc-options/backend_options.php:124
|
187 |
+
#: inc-options/backend_options.php:143 inc-options/backend_options.php:160
|
188 |
msgid "Activate"
|
189 |
msgstr "Aktiv"
|
190 |
|
191 |
+
#: inc-options/backend_options.php:40
|
192 |
+
msgid ""
|
193 |
+
"Exclude the Super Admin on a WP Multisite Install from all limitations of this "
|
194 |
+
"plugin."
|
195 |
+
msgstr ""
|
196 |
+
"Schließe den Super Admin in einer WordPress Multisite Installation von allen "
|
197 |
+
"Restriktionen dieses Plugins aus."
|
198 |
|
199 |
+
#: inc-options/backend_options.php:48
|
200 |
msgid "User-Info"
|
201 |
msgstr "User-Info"
|
202 |
|
203 |
+
#: inc-options/backend_options.php:59 inc-options/backend_options.php:106
|
204 |
msgid "Hide"
|
205 |
msgstr "Ausblenden"
|
206 |
|
207 |
+
#: inc-options/backend_options.php:62
|
208 |
msgid "Only logout"
|
209 |
msgstr "nur Abmelden"
|
210 |
|
211 |
+
#: inc-options/backend_options.php:65
|
212 |
msgid "User & Logout"
|
213 |
msgstr "User & Abmelden"
|
214 |
|
215 |
+
#: inc-options/backend_options.php:66
|
216 |
+
msgid ""
|
217 |
+
"The "User-Info-area" is on the top right side of the backend. You can "
|
218 |
+
"hide or reduced show."
|
219 |
+
msgstr ""
|
220 |
+
"Der "User-Info-Bereich" ist im oberen rechten Bereich zu finden und kann "
|
221 |
+
"ausgeblendet oder reduziert dargestellt werden."
|
222 |
|
223 |
+
#: inc-options/backend_options.php:76
|
224 |
msgid "Change User-Info, redirect to"
|
225 |
msgstr "User Info geändert, Weiterleitung nach"
|
226 |
|
227 |
+
#: inc-options/backend_options.php:89
|
228 |
msgid "Frontpage of the Blog"
|
229 |
msgstr "Startseite des Blog"
|
230 |
|
231 |
+
#: inc-options/backend_options.php:90
|
232 |
+
msgid ""
|
233 |
+
"When the "User-Info-area" change it, then it is possible to change the "
|
234 |
+
"redirect."
|
235 |
+
msgstr ""
|
236 |
+
"Wenn der "User-Info-Bereich" geändert wird, dann kann die die "
|
237 |
+
"Weiterleitung nach einem Logout geändert werden."
|
238 |
|
239 |
+
#: inc-options/backend_options.php:97
|
240 |
msgid "Footer"
|
241 |
msgstr "Footer"
|
242 |
|
243 |
+
#: inc-options/backend_options.php:107
|
244 |
msgid "The Footer-area can hide, include all links and details."
|
245 |
+
msgstr ""
|
246 |
+
"Der Footer-Bereich kann deaktiviert werden, inklusive aller Links und Hinweise."
|
247 |
|
248 |
+
#: inc-options/backend_options.php:113
|
249 |
msgid "Timestamp"
|
250 |
msgstr "Timestamp"
|
251 |
|
252 |
+
#: inc-options/backend_options.php:125
|
253 |
+
msgid ""
|
254 |
+
"Opens the post timestamp editing fields without you having to click the \"Edit\" "
|
255 |
+
"link every time."
|
256 |
+
msgstr ""
|
257 |
+
"Das Feld zum Ändern des Veröffentlichungsdatum ist immer geöffnet."
|
258 |
|
259 |
+
#: inc-options/backend_options.php:132
|
260 |
msgid "Category Height"
|
261 |
msgstr "Kategorie-Höhe"
|
262 |
|
263 |
+
#: inc-options/backend_options.php:144
|
264 |
+
msgid ""
|
265 |
+
"View the Meta Box with Categories in the full height, no scrollbar or whitespace."
|
266 |
+
msgstr ""
|
267 |
+
"Stellt in die Meta Box der Kategorien in voller Höhe dar, kein Scrollbar und kein "
|
268 |
+
"Leerraum."
|
269 |
|
270 |
+
#: inc-options/backend_options.php:151
|
271 |
msgid "Advice in Footer"
|
272 |
msgstr "Hinweis im Footer"
|
273 |
|
274 |
+
#: inc-options/backend_options.php:164
|
275 |
+
msgid ""
|
276 |
+
"In the Footer you can display an advice for changing the Default-design, (x)HTML "
|
277 |
+
"is possible."
|
278 |
+
msgstr ""
|
279 |
+
"Im Footer kann ein Hinweis auf die aktive Veränderung des Standard-Layout "
|
280 |
+
"gesetzt werden, (x)HTML erlaubt."
|
281 |
|
282 |
+
#: inc-options/backend_options.php:193
|
283 |
msgid "Dashboard deactivate, redirect to"
|
284 |
msgstr "Dashboard inaktiv, Weiterleitung nach"
|
285 |
|
286 |
+
#: inc-options/backend_options.php:207
|
287 |
msgid "Manage Posts"
|
288 |
msgstr "Verwalten Beiträge"
|
289 |
|
290 |
+
#: inc-options/backend_options.php:211
|
291 |
msgid "Manage Pages"
|
292 |
msgstr "Verwalten Seiten"
|
293 |
|
294 |
+
#: inc-options/backend_options.php:215
|
295 |
msgid "Write Post"
|
296 |
msgstr "Schreiben Beitrag"
|
297 |
|
298 |
+
#: inc-options/backend_options.php:219
|
299 |
msgid "Write Page"
|
300 |
msgstr "Schreiben Seite"
|
301 |
|
302 |
+
#: inc-options/backend_options.php:223
|
303 |
msgid "Comments"
|
304 |
msgstr "Kommentare"
|
305 |
|
306 |
+
#: inc-options/backend_options.php:227
|
307 |
msgid "other Page"
|
308 |
msgstr "andere Seite"
|
309 |
|
310 |
+
#: inc-options/backend_options.php:233
|
311 |
+
msgid ""
|
312 |
+
"You have deactivated the Dashboard, please select a page for redirection or define "
|
313 |
+
"custom url, include http://?"
|
314 |
+
msgstr ""
|
315 |
+
"Du hast das Dashboard deaktiviert; bitte wähle eine Seite für die Weiterleitung "
|
316 |
+
"oder definiere eine eigene URL, inklusive http://"
|
|
|
|
|
|
|
|
|
317 |
|
318 |
#: inc-options/dashboard_options.php:17 inc-options/minimenu.php:58
|
319 |
msgid "Dashboard options"
|
320 |
msgstr "Dashboard Einstellungen"
|
321 |
|
322 |
#: inc-options/dashboard_options.php:27
|
323 |
+
msgid ""
|
324 |
+
"To complete the installation for Dashboard Widgets you must visit your dashboard "
|
325 |
+
"once and then come back to Settings > Adminimize to configure who has access to "
|
326 |
+
"each widget."
|
327 |
+
msgstr ""
|
328 |
+
"Um die Installation für Dashboard Widgets abzuschließen, musst du das Dashboard "
|
329 |
+
"einmal besuchen und dann zurück zu den Einstellungen > Adminimize kommen, um den "
|
330 |
+
"Zugriff der Widgets zu steuern."
|
331 |
|
332 |
+
#: inc-options/dashboard_options.php:143 inc-options/global_options.php:123
|
333 |
msgid "Your own options"
|
334 |
msgstr "Deine eigenen Einstellungen"
|
335 |
|
336 |
+
#: inc-options/dashboard_options.php:145 inc-options/global_options.php:125
|
337 |
#: inc-options/links_options.php:126 inc-options/widget_options.php:138
|
338 |
+
#: inc-options/wp_nav_menu_options.php:153 inc-options/write_cp_options.php:246
|
339 |
+
#: inc-options/write_page_options.php:222 inc-options/write_post_options.php:225
|
|
|
340 |
msgid "ID or class"
|
341 |
msgstr "ID oder Klasse"
|
342 |
|
343 |
+
#: inc-options/dashboard_options.php:153 inc-options/global_options.php:133
|
344 |
#: inc-options/links_options.php:134 inc-options/widget_options.php:146
|
345 |
+
#: inc-options/wp_nav_menu_options.php:161 inc-options/write_cp_options.php:256
|
346 |
+
#: inc-options/write_page_options.php:230 inc-options/write_post_options.php:233
|
347 |
+
msgid ""
|
348 |
+
"It is possible to add your own IDs or classes from elements and tags. You can find "
|
349 |
+
"IDs and classes with the FireBug Add-on for Firefox. Assign a value and the "
|
350 |
+
"associate name per line."
|
351 |
+
msgstr ""
|
352 |
+
"Es ist möglich, dass du eigene IDs und Klassen eines Elementes oder Tags "
|
353 |
+
"hinzufügst. Du findest IDs und Klassen sehr einfach mit dem Firebug Add-on für den "
|
354 |
+
"Firefox. Füge pro Zeile einen Wert und dazugehörigen Namen ein."
|
355 |
|
356 |
+
#: inc-options/dashboard_options.php:167 inc-options/global_options.php:145
|
357 |
#: inc-options/links_options.php:145 inc-options/widget_options.php:157
|
358 |
+
#: inc-options/wp_nav_menu_options.php:172 inc-options/write_cp_options.php:271
|
359 |
+
#: inc-options/write_page_options.php:241 inc-options/write_post_options.php:244
|
360 |
+
msgid ""
|
361 |
+
"Possible nomination for ID or class. Separate multiple nominations through a "
|
362 |
+
"carriage return."
|
363 |
msgstr "Mögliche Benennung der ID oder Klasse. Trenne Werte durch eine neue Zeile."
|
364 |
|
365 |
+
#: inc-options/dashboard_options.php:181 inc-options/global_options.php:156
|
366 |
#: inc-options/links_options.php:155 inc-options/widget_options.php:167
|
367 |
+
#: inc-options/wp_nav_menu_options.php:182 inc-options/write_cp_options.php:284
|
368 |
+
#: inc-options/write_page_options.php:251 inc-options/write_post_options.php:254
|
|
|
369 |
msgid "Possible IDs or classes. Separate multiple values through a carriage return."
|
370 |
msgstr "Mögliche IDs oder Klassen. Trenne Werte durch eine neue Zeile."
|
371 |
|
374 |
msgstr "Einstellungen deinstallieren"
|
375 |
|
376 |
#: inc-options/deinstall_options.php:18
|
377 |
+
msgid ""
|
378 |
+
"Use this option for clean your database from all entries of this plugin. When you "
|
379 |
+
"deactivate the plugin, the deinstall of the plugin <strong>clean not</strong> all "
|
380 |
+
"entries in the database."
|
381 |
+
msgstr ""
|
382 |
+
"Nutze diese Option, um die Einstellungen für das Plugin in der Datenbank zu "
|
383 |
+
"löschen. Das Plugin entfernt die Einträge <strong>nicht</strong>, wenn "
|
384 |
+
"es deaktiviert wird!"
|
385 |
|
386 |
#: inc-options/deinstall_options.php:27
|
387 |
msgid "Delete Options"
|
404 |
msgstr "Screen-Meta"
|
405 |
|
406 |
#: inc-options/global_options.php:67 inc-options/widget_options.php:63
|
407 |
+
#: inc-options/wp_nav_menu_options.php:66 inc-options/write_cp_options.php:124
|
408 |
+
#: inc-options/write_page_options.php:118 inc-options/write_post_options.php:123
|
|
|
409 |
msgid "Screen Options"
|
410 |
msgstr "kontextabhängige Optionen"
|
411 |
|
417 |
msgid "Admin Color Scheme"
|
418 |
msgstr "Farbschema verwalten"
|
419 |
|
420 |
+
#: inc-options/global_options.php:70
|
421 |
+
msgid "Admin Notices"
|
422 |
+
msgstr "Admin Hinweise"
|
423 |
+
|
424 |
#: inc-options/im_export_options.php:15 inc-options/minimenu.php:121
|
425 |
msgid "Export/Import Options"
|
426 |
msgstr "Export/Import Einstellungen"
|
427 |
|
428 |
+
#: inc-options/im_export_options.php:20
|
429 |
+
msgid "Export"
|
430 |
+
msgstr "Export"
|
431 |
+
|
432 |
+
#: inc-options/im_export_options.php:23
|
433 |
+
msgid "You can save a JSON formatted \".json\" file with your settings."
|
434 |
+
msgstr "Du kannst deine Einstellungen in einer \".json-Datei\" speichern."
|
435 |
+
|
436 |
#: inc-options/im_export_options.php:31
|
437 |
msgid "Export »"
|
438 |
msgstr "Exportieren »"
|
439 |
|
440 |
+
#: inc-options/im_export_options.php:40
|
441 |
+
msgid "Import"
|
442 |
+
msgstr "Import"
|
443 |
+
|
444 |
+
#: inc-options/im_export_options.php:46
|
445 |
+
msgid ""
|
446 |
+
"Choose a Adminimize (<em>.json</em>) file to upload, then click <em>Upload file "
|
447 |
+
"and import</em>."
|
448 |
+
msgstr ""
|
449 |
+
"Wähle eine Adminimize (<em>.json</em>) Datei zum hochladen und klick <em>Hochladen "
|
450 |
+
"der Datei und importieren</em>."
|
451 |
+
|
452 |
+
#: inc-options/im_export_options.php:50
|
453 |
+
msgid ""
|
454 |
+
"After import please reload the page to display also all global values from "
|
455 |
+
"WordPress."
|
456 |
+
msgstr ""
|
457 |
+
"Nach dem Import lade die Seite neu um alle Einstellungen, auch die globalen "
|
458 |
+
"Einstellungen von WordPress zu listen."
|
459 |
+
|
460 |
+
#: inc-options/im_export_options.php:55
|
461 |
+
msgid "Choose a \".json\" file from your computer:"
|
462 |
+
msgstr "Wähle eine .json-Datei von deinem Rechner."
|
463 |
|
464 |
#: inc-options/im_export_options.php:66
|
465 |
msgid "Upload file and import »"
|
481 |
msgid "Description"
|
482 |
msgstr "Beschreibung"
|
483 |
|
484 |
+
#: inc-options/links_options.php:68 inc-options/write_cp_options.php:128
|
485 |
+
#: inc-options/write_post_options.php:127
|
486 |
+
msgid "Categories"
|
487 |
+
msgstr "Kategorien"
|
488 |
+
|
489 |
#: inc-options/links_options.php:69
|
490 |
msgid "Target"
|
491 |
msgstr "Target"
|
498 |
msgid "Advanced"
|
499 |
msgstr "Erweitert"
|
500 |
|
501 |
+
#: inc-options/links_options.php:72 inc-options/write_cp_options.php:137
|
502 |
+
#: inc-options/write_page_options.php:136 inc-options/write_post_options.php:137
|
|
|
503 |
msgid "Publish Actions"
|
504 |
msgstr "Publish Actions"
|
505 |
|
511 |
msgid "Menu Options"
|
512 |
msgstr "Menu Einstellungen"
|
513 |
|
514 |
+
#: inc-options/menu_options.php:24
|
515 |
+
msgid "Menu options - Menu, Submenu"
|
516 |
+
msgstr "Menu Einstellungen - Menu, Submenu"
|
517 |
+
|
518 |
+
#: inc-options/menu_options.php:102 inc-options/menu_options.php:193
|
519 |
msgid "After activate the check box it heavy attitudes will change."
|
520 |
+
msgstr ""
|
521 |
+
"Wenn die Checkbox aktiv ist, dann wird das Ändern von Einstellungen erschwert."
|
522 |
|
523 |
+
#: inc-options/menu_options.php:168
|
524 |
msgid "Profile"
|
525 |
msgstr "Profile"
|
526 |
|
536 |
msgid "About the plugin"
|
537 |
msgstr "Über das Plugin"
|
538 |
|
539 |
+
#: inc-options/minimenu.php:36
|
540 |
+
msgid "Admin Bar Back end Options"
|
541 |
+
msgstr "Admin Bar Backend"
|
542 |
+
|
543 |
#: inc-options/minimenu.php:68 inc-options/write_post_options.php:17
|
544 |
#: inc-options/write_post_options.php:25
|
545 |
msgid "Write options - Post"
|
572 |
msgid "Version"
|
573 |
msgstr "Version"
|
574 |
|
575 |
+
#: inc-options/minimenu.php:152
|
576 |
+
msgid ""
|
577 |
+
"Further information: Visit the <a href=\"%1$s\">plugin homepage</a> for further "
|
578 |
+
"information or to grab the latest version of this plugin. Also see the <a href="
|
579 |
+
"\"%2$s\">support forum</a> for questions."
|
580 |
+
msgstr ""
|
581 |
+
"Weitere Informationen: Besuche die <a href=\"%1$s\">Plugin Website</a> für weitere "
|
582 |
+
"Informationen oder um die neueste Version des Plugins zu erhalten. Besuche "
|
583 |
+
"außerdem das <a href=\"%2$s\">Support Forum</a> für Fragen."
|
584 |
+
|
585 |
+
#: inc-options/minimenu.php:160
|
586 |
+
msgid ""
|
587 |
+
"<br>For more hints about the functions and how to's with the possibilities of the "
|
588 |
+
"plugin settings see the <a href=\"%s\">FAQ page</a> on the plugin site."
|
589 |
+
msgstr ""
|
590 |
+
"<br>Weitere Hinweise über die Funktionen und wie du vorgehen musst um die "
|
591 |
+
"Möglichkeiten des Plugins zu nutzen findest du auf der <a href=\"%s\">FAQ Seite</"
|
592 |
+
"a> zum Plugin."
|
593 |
+
|
594 |
#: inc-options/minimenu.php:163
|
595 |
msgid "Report a issue on the development repository:"
|
596 |
msgstr "Melde einen Fehler, Hinweis am Entwicklungsrepository:"
|
597 |
|
598 |
#: inc-options/minimenu.php:165
|
599 |
+
msgid ""
|
600 |
+
"The plugin have a github repository to easy add a issue or a create a fork, pull "
|
601 |
+
"request:"
|
602 |
+
msgstr ""
|
603 |
+
"Das Plugin hat ein Repository auf github für die einfache Verwaltung von Issues, "
|
604 |
+
"Forks oder Erweiterungen durch dich."
|
605 |
+
|
606 |
+
#: inc-options/minimenu.php:171
|
607 |
+
msgid ""
|
608 |
+
"You want to thank me? Visit my <a href=\"%1$s\">wishlist</a> or <a href=\"%2$s"
|
609 |
+
"\">donate</a>."
|
610 |
+
msgstr ""
|
611 |
+
"Du willst Danke sagen? Besuche meine <a href=\"%1$s\">Wunschliste</a> oder <a href="
|
612 |
+
"\"%2$s\">spende</a>."
|
613 |
+
|
614 |
+
#: inc-options/minimenu.php:184 inc-options/settings_notice.php:17
|
615 |
+
msgid ""
|
616 |
+
"Please note: The Adminimize settings page ignores the Menu Options below and "
|
617 |
+
"displays the menu with all entries."
|
618 |
+
msgstr ""
|
619 |
+
"Beachte: Die Adminimize-Einstellungsseite ignoriert die Menu Einstellungen um alle "
|
620 |
+
"Einträge darzustellen."
|
621 |
+
|
622 |
+
#: inc-options/minimenu.php:188 inc-options/settings_notice.php:21
|
623 |
+
msgid ""
|
624 |
+
"To view your changes to the menu you need to navigate away from the Adminimize "
|
625 |
+
"settings page."
|
626 |
+
msgstr ""
|
627 |
+
"Um die Einstellungen sichtbar zu sehen, musst du eine andere Seite besuchen, "
|
628 |
+
"unabhängig der Adminimize-Einstellungsseite."
|
629 |
|
630 |
#: inc-options/minimenu.php:194
|
631 |
+
msgid ""
|
632 |
+
"You have to activated the Plugin for your Multisite Network. Your settings works "
|
633 |
+
"now on all blogs in the network. Please set the settings only in one blog, there "
|
634 |
+
"you have all active menu items and plugins. If you update the settings then write "
|
635 |
+
"the plugin new settings in dependence of the blog where you put, save the settings."
|
636 |
+
msgstr ""
|
637 |
+
"Du hast das Plugin für ein Multisite Netzwerk aktiviert. Deine Einstellungen "
|
638 |
+
"werden nun in allen Blogs des Networks genutzt. Bitte setze die Einstellungen in "
|
639 |
+
"dem Blog, in dem alle Menu-Einträge aktiv sind. Wenn du eine Aktualisierung der "
|
640 |
+
"Einstellungen vornimmst, dann werden die Einstellungen neu gesetzt - mit den "
|
641 |
+
"Werten des Blogs, in dem du gerade aktiv bist und als Einstellungen gespeichert."
|
642 |
|
643 |
#: inc-options/theme_options.php:26
|
644 |
+
msgid ""
|
645 |
+
"For better peformance with many users on your blog; load only userlist, when you "
|
646 |
+
"will change the theme options for users."
|
647 |
+
msgstr ""
|
648 |
+
"Für eine bessere Performance bei vielen Usern in deinem Blog werden die Userdaten "
|
649 |
+
"nur nach Aufforderung geladen."
|
650 |
|
651 |
#: inc-options/theme_options.php:33
|
652 |
msgid "Load User Data"
|
677 |
msgstr "Rolle"
|
678 |
|
679 |
#: inc-options/widget_options.php:62 inc-options/wp_nav_menu_options.php:65
|
680 |
+
#: inc-options/write_cp_options.php:123 inc-options/write_page_options.php:117
|
681 |
#: inc-options/write_post_options.php:122
|
682 |
msgid "Help"
|
683 |
msgstr "Hilfe"
|
698 |
msgid "Your own Widget options"
|
699 |
msgstr "Deine eigenen Widget-Einstellungen"
|
700 |
|
701 |
+
#: inc-options/wp_nav_menu_options.php:67 inc-options/wp_nav_menu_options.php:73
|
|
|
702 |
msgid "Theme Locations"
|
703 |
msgstr "Anordnung im Theme"
|
704 |
|
714 |
msgid "Your own Nav Menu options"
|
715 |
msgstr "Deine eigenen Nav Menu Einstellungen"
|
716 |
|
717 |
+
#: inc-options/write_cp_options.php:125 inc-options/write_page_options.php:120
|
718 |
#: inc-options/write_post_options.php:125
|
719 |
msgid "Permalink"
|
720 |
msgstr "Permalink"
|
721 |
|
722 |
+
#: inc-options/write_cp_options.php:126 inc-options/write_cp_options.php:169
|
723 |
+
#: inc-options/write_post_options.php:126 inc-options/write_post_options.php:167
|
|
|
724 |
msgid "Tags"
|
725 |
msgstr "Tags"
|
726 |
|
727 |
+
#: inc-options/write_cp_options.php:127
|
728 |
msgid "Format"
|
729 |
msgstr "Format"
|
730 |
|
731 |
+
#: inc-options/write_cp_options.php:129 inc-options/write_post_options.php:128
|
732 |
+
msgid "Add New Category"
|
733 |
+
msgstr "Add New Category"
|
734 |
+
|
735 |
+
#: inc-options/write_cp_options.php:130 inc-options/write_post_options.php:130
|
736 |
msgid "Password Protect This Post"
|
737 |
msgstr "Diesen Artikel durch ein Passwort schützen"
|
738 |
|
739 |
+
#: inc-options/write_cp_options.php:131 inc-options/write_post_options.php:131
|
740 |
msgid "Related, Shortcuts"
|
741 |
+
msgstr "Siehe auch, Tastaturkürzel"
|
742 |
+
|
743 |
+
#: inc-options/write_cp_options.php:132 inc-options/write_page_options.php:131
|
744 |
+
#: inc-options/write_post_options.php:132
|
745 |
+
msgid "Messages"
|
746 |
+
msgstr "Mitteilungen"
|
747 |
+
|
748 |
+
#: inc-options/write_cp_options.php:133 inc-options/write_page_options.php:132
|
749 |
+
#: inc-options/write_post_options.php:133
|
750 |
+
msgid "h2: Advanced Options"
|
751 |
+
msgstr "h2: Erweiterte Einstellungen"
|
752 |
+
|
753 |
+
#: inc-options/write_cp_options.php:134 inc-options/write_page_options.php:133
|
754 |
+
#: inc-options/write_post_options.php:134
|
755 |
+
msgid "Media Buttons (all)"
|
756 |
+
msgstr "Media Buttons (alle)"
|
757 |
+
|
758 |
+
#: inc-options/write_cp_options.php:135 inc-options/write_page_options.php:134
|
759 |
+
#: inc-options/write_post_options.php:135
|
760 |
+
msgid "Word count"
|
761 |
+
msgstr "Word count"
|
762 |
+
|
763 |
+
#: inc-options/write_cp_options.php:136 inc-options/write_post_options.php:136
|
764 |
+
msgid "Post Slug"
|
765 |
+
msgstr "Titelform"
|
766 |
+
|
767 |
+
#: inc-options/write_cp_options.php:138 inc-options/write_page_options.php:137
|
768 |
+
#: inc-options/write_post_options.php:138
|
769 |
+
msgid "Discussion"
|
770 |
+
msgstr "Kommentare"
|
771 |
+
|
772 |
+
#: inc-options/write_cp_options.php:139 inc-options/write_page_options.php:138
|
773 |
+
#: inc-options/write_post_options.php:139
|
774 |
+
msgid "HTML Editor Button"
|
775 |
+
msgstr "HTML Editor Button"
|
776 |
+
|
777 |
+
#: inc-options/write_cp_options.php:152 inc-options/write_post_options.php:153
|
778 |
+
msgid "Post Thumbnail"
|
779 |
+
msgstr "Artikelbild"
|
780 |
+
|
781 |
+
#: inc-options/write_cp_options.php:160 inc-options/write_page_options.php:157
|
782 |
+
#: inc-options/write_post_options.php:158
|
783 |
+
msgid "Quick Edit Link"
|
784 |
+
msgstr "QuickEdit Link"
|
785 |
+
|
786 |
+
#: inc-options/write_cp_options.php:161 inc-options/write_cp_options.php:165
|
787 |
+
#: inc-options/write_cp_options.php:168 inc-options/write_cp_options.php:171
|
788 |
+
#: inc-options/write_page_options.php:158 inc-options/write_page_options.php:163
|
789 |
+
#: inc-options/write_page_options.php:166 inc-options/write_post_options.php:159
|
790 |
+
#: inc-options/write_post_options.php:163 inc-options/write_post_options.php:166
|
791 |
+
#: inc-options/write_post_options.php:169
|
792 |
+
msgid "QE"
|
793 |
+
msgstr "QE"
|
794 |
+
|
795 |
+
#: inc-options/write_cp_options.php:161 inc-options/write_page_options.php:158
|
796 |
+
#: inc-options/write_post_options.php:159
|
797 |
+
msgid "Inline Edit Left"
|
798 |
+
msgstr "Inline Edit Links"
|
799 |
+
|
800 |
+
#: inc-options/write_cp_options.php:162 inc-options/write_page_options.php:159
|
801 |
+
#: inc-options/write_post_options.php:160
|
802 |
+
msgid "All Labels"
|
803 |
+
msgstr "Alle labels"
|
804 |
+
|
805 |
+
#: inc-options/write_cp_options.php:163 inc-options/write_page_options.php:161
|
806 |
+
#: inc-options/write_post_options.php:161
|
807 |
+
msgid "Author"
|
808 |
+
msgstr "Author"
|
809 |
+
|
810 |
+
#: inc-options/write_cp_options.php:164 inc-options/write_page_options.php:162
|
811 |
+
#: inc-options/write_post_options.php:162
|
812 |
+
msgid "Password and Private"
|
813 |
+
msgstr "Passwort und Privat-Flag"
|
814 |
+
|
815 |
+
#: inc-options/write_cp_options.php:165 inc-options/write_post_options.php:163
|
816 |
+
msgid "Inline Edit Center"
|
817 |
+
msgstr "Inline Edit mitte"
|
818 |
+
|
819 |
+
#: inc-options/write_cp_options.php:166 inc-options/write_post_options.php:164
|
820 |
+
msgid "Categories Title"
|
821 |
+
msgstr "Kategorien Title"
|
822 |
+
|
823 |
+
#: inc-options/write_cp_options.php:167 inc-options/write_post_options.php:165
|
824 |
+
msgid "Categories List"
|
825 |
+
msgstr "Kategorien Liste"
|
826 |
+
|
827 |
+
#: inc-options/write_cp_options.php:168 inc-options/write_page_options.php:163
|
828 |
+
#: inc-options/write_post_options.php:166
|
829 |
+
msgid "Inline Edit Right"
|
830 |
+
msgstr "Inline Edit rechts"
|
831 |
+
|
832 |
+
#: inc-options/write_cp_options.php:170 inc-options/write_post_options.php:168
|
833 |
+
msgid "Status, Sticky"
|
834 |
+
msgstr "Status, Sticky"
|
835 |
+
|
836 |
+
#: inc-options/write_cp_options.php:171 inc-options/write_page_options.php:166
|
837 |
+
#: inc-options/write_post_options.php:169
|
838 |
+
msgid "Cancel/Save Button"
|
839 |
+
msgstr "Abbrechen/Aktualisieren Button"
|
840 |
+
|
841 |
+
#: inc-options/write_cp_options.php:243
|
842 |
+
msgid "Your own %s options"
|
843 |
+
msgstr "Deine eigenen %s Einstellungen"
|
844 |
+
|
845 |
+
#: inc-options/write_page_options.php:119 inc-options/write_post_options.php:124
|
846 |
+
msgid "Title"
|
847 |
+
msgstr "Title"
|
848 |
+
|
849 |
+
#: inc-options/write_page_options.php:121
|
850 |
+
msgid "Custom Fields"
|
851 |
+
msgstr "Benutzerdefinierte Felder"
|
852 |
+
|
853 |
+
#: inc-options/write_page_options.php:122
|
854 |
+
msgid "Comments & Pings"
|
855 |
+
msgstr "Kommentare & Pings"
|
856 |
+
|
857 |
+
#: inc-options/write_page_options.php:123 inc-options/write_page_options.php:160
|
858 |
+
#: inc-options/write_post_options.php:129
|
859 |
+
msgid "Date"
|
860 |
+
msgstr "Datum"
|
861 |
+
|
862 |
+
#: inc-options/write_page_options.php:124
|
863 |
+
msgid "Password Protect This Page"
|
864 |
+
msgstr "Diese Seite mit einem Passwort versehen"
|
865 |
+
|
866 |
+
#: inc-options/write_page_options.php:125
|
867 |
+
msgid "Attributes"
|
868 |
+
msgstr "Attribute"
|
869 |
+
|
870 |
+
#: inc-options/write_page_options.php:126
|
871 |
+
msgid "Page Template"
|
872 |
+
msgstr "Seiten Template"
|
873 |
+
|
874 |
+
#: inc-options/write_page_options.php:127
|
875 |
+
msgid "Page Order"
|
876 |
+
msgstr "Reihenfolge"
|
877 |
+
|
878 |
+
#: inc-options/write_page_options.php:128
|
879 |
+
msgid "Page Author"
|
880 |
+
msgstr "Seitenautor"
|
881 |
+
|
882 |
+
#: inc-options/write_page_options.php:129
|
883 |
+
msgid "Page Revisions"
|
884 |
+
msgstr "Page Revisions"
|
885 |
+
|
886 |
+
#: inc-options/write_page_options.php:130
|
887 |
+
msgid "Related"
|
888 |
+
msgstr "Siehe auch"
|
889 |
+
|
890 |
+
#: inc-options/write_page_options.php:135
|
891 |
+
msgid "Page Slug"
|
892 |
+
msgstr "Titelform"
|
893 |
+
|
894 |
+
#: inc-options/write_page_options.php:152
|
895 |
+
msgid "Page Image"
|
896 |
+
msgstr "Artikelbild"
|
897 |
+
|
898 |
+
#: inc-options/write_page_options.php:164
|
899 |
+
msgid "Parent, Order, Template"
|
900 |
+
msgstr "Eltern, Reihenfolge, Template"
|
901 |
+
|
902 |
+
#: inc-options/write_page_options.php:165
|
903 |
+
msgid "Status"
|
904 |
+
msgstr "Status"
|
905 |
+
|
906 |
+
#: inc-options/write_page_options.php:220
|
907 |
+
msgid "Your own page options"
|
908 |
+
msgstr "Deine eigenen Seiten-Einstellungen"
|
909 |
+
|
910 |
+
#: inc-options/write_post_options.php:223
|
911 |
+
msgid "Your own post options"
|
912 |
+
msgstr "Deine eigenen Beitrags-Einstellungen"
|
913 |
+
|
914 |
+
#: inc-setup/messages.php:38
|
915 |
+
msgid "Unknown error."
|
916 |
+
msgstr "Unbekannter Fehler."
|
917 |
+
|
918 |
+
#: inc-setup/messages.php:49
|
919 |
+
msgid "The updates were saved."
|
920 |
+
msgstr "Die Einstellungen wurden gespeichert"
|
921 |
+
|
922 |
+
#: inc-setup/messages.php:52
|
923 |
+
msgid "You have not enough rights to edit entries in the database."
|
924 |
+
msgstr "Du hast nicht ausreichend Rechte um diese Aktion durchzuführen!"
|
925 |
+
|
926 |
+
#: inc-setup/messages.php:55
|
927 |
+
msgid "All entries in the database were imported."
|
928 |
+
msgstr "Alle Einträge wurden in die Datenbank geschrieben."
|
929 |
+
|
930 |
+
#: inc-setup/messages.php:58
|
931 |
+
msgid "All entries in the database were deleted."
|
932 |
+
msgstr "Die Einstellungen wurde gelöscht!"
|
933 |
+
|
934 |
+
#: inc-setup/messages.php:61
|
935 |
+
msgid "Set the checkbox on deinstall-button."
|
936 |
+
msgstr "Checkbox setzen, wenn wirklich deinstalliert werden soll!"
|
937 |
+
|
938 |
+
#: inc-setup/messages.php:64
|
939 |
+
msgid "Can't load menu and submenu."
|
940 |
+
msgstr "Menu und Submenu können nicht geladen werden!"
|
941 |
+
|
942 |
+
#: inc-setup/messages.php:66
|
943 |
+
msgid "Backend-Theme was activated!"
|
944 |
+
msgstr "Backend-Theme wurde zugewiesen!"
|
945 |
+
|
946 |
+
#: inc-setup/messages.php:68
|
947 |
+
msgid "Load user data to themes was successful."
|
948 |
+
msgstr "Das Laden der User-Daten zum Theme war erfolgreich."
|
949 |
+
|
950 |
+
#: inc-setup/remove-admin-bar.php:272 inc-setup/remove-admin-bar.php:274
|
951 |
+
msgid "Network Admin"
|
952 |
+
msgstr "Netwerk-Admin"
|
953 |
+
|
954 |
+
#: inc-setup/remove-admin-bar.php:276 inc-setup/remove-admin-bar.php:278
|
955 |
+
msgid "Site Admin"
|
956 |
+
msgstr "Site-Admin"
|
957 |
+
|
958 |
+
#. Plugin URI of the plugin/theme
|
959 |
+
msgid "https://wordpress.org/plugins/adminimize/"
|
960 |
+
msgstr "https://wordpress.org/plugins/adminimize/"
|
961 |
+
|
962 |
+
#. Description of the plugin/theme
|
963 |
+
msgid ""
|
964 |
+
"Visually compresses the administrative meta-boxes so that more admin page content "
|
965 |
+
"can be initially seen. The plugin that lets you hide 'unnecessary' items from the "
|
966 |
+
"WordPress administration menu, for all roles of your install. You can also hide "
|
967 |
+
"post meta controls on the edit-area to simplify the interface. It is possible to "
|
968 |
+
"simplify the admin in different for all roles."
|
969 |
+
msgstr ""
|
970 |
+
"Visuelle Reduzierung des administrativen Bereiches auf das, was notwendig ist. Das "
|
971 |
+
"Plugin gibt die die Möglichkeit \"unnötige\" Bereiche aus dem WordPress "
|
972 |
+
"Adminisrationsbereich, Menus zu entfernen, getrennt für jede existierende "
|
973 |
+
"Benutzerrolle. Du kannst außerdem diverse andere Bereiche ausblenden um das "
|
974 |
+
"Interface zu vereinfachen. Es ist außerdem möglich eigene Optione pro "
|
975 |
+
"Benutzerrolle zu ergänzen."
|
976 |
+
|
977 |
+
#. Author of the plugin/theme
|
978 |
+
msgid "Frank Bültge"
|
979 |
+
msgstr "Frank Bültge"
|
980 |
+
|
981 |
+
#. Author URI of the plugin/theme
|
982 |
+
msgid "http://bueltge.de/"
|
983 |
+
msgstr "http://bueltge.de/"
|
984 |
+
|
985 |
+
#~ msgid ""
|
986 |
+
#~ "Display the front end include load or refresh of the site to get all items of "
|
987 |
+
#~ "the admin bar in the front end area."
|
988 |
+
#~ msgstr ""
|
989 |
+
#~ "Wechsel zum Frontend inklusive einem Aktualisieren um alle Einträge der Admin "
|
990 |
+
#~ "Bar zum Frontend zu erhalten."
|
languages/adminimize-xx_XX.pot
CHANGED
@@ -1,76 +1,74 @@
|
|
1 |
-
|
|
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
-
"Project-Id-Version: Adminimize\n"
|
5 |
-
"Report-Msgid-Bugs-To: \n"
|
6 |
-
"POT-Creation-Date: 2016-01-
|
7 |
-
"PO-Revision-Date: 2012-10-23 23:27+0100\n"
|
8 |
-
"Last-Translator: Frank Bueltge <frank@bueltge.de>\n"
|
9 |
-
"Language-Team: Frank Bueltge <frank@bueltge.de>\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
-
"Content-Type: text/plain; charset=
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"
|
14 |
-
"
|
15 |
-
"
|
16 |
-
"X-
|
17 |
-
"X-
|
18 |
-
"
|
19 |
-
"
|
20 |
-
|
21 |
-
|
|
|
22 |
msgid "Keymaster"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: adminimize.php:
|
26 |
msgid "Moderator"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: adminimize.php:
|
30 |
msgid "Participant"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: adminimize.php:
|
34 |
msgid "Spectator"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: adminimize.php:
|
38 |
msgid "Blocked"
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: adminimize.php:
|
42 |
msgid "Dashboard"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: adminimize.php:613 adminimize.php:
|
46 |
-
#: adminimize.php:
|
47 |
-
#:
|
48 |
-
#: inc-setup/remove-admin-bar.php:
|
49 |
-
#: inc-setup/remove-admin-bar.php:285
|
50 |
msgid "Log Out"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: adminimize.php:
|
54 |
msgid "Settings"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: adminimize.php:
|
58 |
msgid "Adminimize Options"
|
59 |
msgstr ""
|
60 |
|
61 |
-
|
62 |
msgid "Adminimize"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: adminimize.php:
|
66 |
msgid "Cheatin’ uh?"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: adminimize.php:
|
70 |
msgid "Please upload a valid .json file"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: adminimize.php:
|
74 |
msgid "Please upload a file to import"
|
75 |
msgstr ""
|
76 |
|
@@ -93,19 +91,19 @@ msgid "Admin Bar Back end options"
|
|
93 |
msgstr ""
|
94 |
|
95 |
#: inc-options/admin_bar.php:41 inc-options/admin_bar_frontend.php:41
|
96 |
-
#: inc-options/dashboard_options.php:
|
97 |
#: inc-options/global_options.php:24 inc-options/global_options.php:127
|
98 |
#: inc-options/links_options.php:24 inc-options/links_options.php:128
|
99 |
#: inc-options/widget_options.php:24 inc-options/widget_options.php:140
|
100 |
#: inc-options/wp_nav_menu_options.php:23
|
101 |
-
#: inc-options/wp_nav_menu_options.php:155 inc-options/write_cp_options.php:
|
102 |
#: inc-options/write_page_options.php:224
|
103 |
#: inc-options/write_post_options.php:227
|
104 |
msgid "Option"
|
105 |
msgstr ""
|
106 |
|
107 |
#: inc-options/admin_bar.php:44 inc-options/admin_bar_frontend.php:44
|
108 |
-
#: inc-options/dashboard_options.php:
|
109 |
#: inc-options/links_options.php:27 inc-options/menu_options.php:27
|
110 |
#: inc-options/widget_options.php:27 inc-options/wp_nav_menu_options.php:26
|
111 |
#: inc-options/write_cp_options.php:36 inc-options/write_page_options.php:25
|
@@ -114,7 +112,7 @@ msgid "Deactivate for"
|
|
114 |
msgstr ""
|
115 |
|
116 |
#: inc-options/admin_bar.php:49 inc-options/admin_bar_frontend.php:49
|
117 |
-
#: inc-options/dashboard_options.php:
|
118 |
#: inc-options/links_options.php:32 inc-options/menu_options.php:33
|
119 |
#: inc-options/widget_options.php:32 inc-options/wp_nav_menu_options.php:31
|
120 |
#: inc-options/write_cp_options.php:41 inc-options/write_page_options.php:30
|
@@ -122,226 +120,256 @@ msgstr ""
|
|
122 |
msgid "Select all"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: inc-options/admin_bar.php:
|
|
|
126 |
msgid "No Title!"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: inc-options/admin_bar.php:
|
130 |
-
#: inc-options/menu_options.php:
|
131 |
msgid "Group"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: inc-options/admin_bar.php:
|
135 |
-
msgid "
|
|
|
|
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: inc-options/admin_bar.php:
|
139 |
-
#: inc-options/backend_options.php:
|
140 |
-
#: inc-options/global_options.php:
|
141 |
-
#: inc-options/menu_options.php:
|
142 |
-
#: inc-options/wp_nav_menu_options.php:
|
143 |
-
#: inc-options/write_page_options.php:
|
144 |
-
#: inc-options/write_post_options.php:
|
145 |
msgid "Update Options"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: inc-options/admin_bar.php:
|
149 |
-
#: inc-options/backend_options.php:
|
150 |
-
#: inc-options/deinstall_options.php:36 inc-options/global_options.php:
|
151 |
-
#: inc-options/im_export_options.php:
|
152 |
-
#: inc-options/menu_options.php:
|
153 |
-
#: inc-options/theme_options.php:
|
154 |
-
#: inc-options/wp_nav_menu_options.php:
|
155 |
-
#: inc-options/write_page_options.php:
|
156 |
-
#: inc-options/write_post_options.php:
|
157 |
msgid "scroll to top"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: inc-options/admin_bar_frontend.php:24 inc-options/minimenu.php:
|
161 |
msgid "Admin Bar Front end Options"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: inc-options/admin_bar_frontend.php:
|
165 |
-
msgid "
|
|
|
|
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: inc-options/backend_options.php:16 inc-options/minimenu.php:
|
169 |
msgid "Backend Options"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: inc-options/backend_options.php:
|
173 |
msgid "Exclude Super Admin"
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: inc-options/backend_options.php:
|
177 |
-
#: inc-options/backend_options.php:
|
178 |
-
#: inc-options/backend_options.php:
|
179 |
-
#: inc-options/backend_options.php:
|
180 |
msgid "Default"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: inc-options/backend_options.php:
|
184 |
-
#: inc-options/backend_options.php:
|
185 |
msgid "Activate"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: inc-options/backend_options.php:
|
189 |
-
msgid "
|
|
|
|
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: inc-options/backend_options.php:
|
193 |
msgid "User-Info"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: inc-options/backend_options.php:
|
197 |
msgid "Hide"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: inc-options/backend_options.php:
|
201 |
msgid "Only logout"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: inc-options/backend_options.php:
|
205 |
msgid "User & Logout"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: inc-options/backend_options.php:
|
209 |
-
msgid "
|
|
|
|
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: inc-options/backend_options.php:
|
213 |
msgid "Change User-Info, redirect to"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: inc-options/backend_options.php:
|
217 |
msgid "Frontpage of the Blog"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: inc-options/backend_options.php:
|
221 |
-
msgid "
|
|
|
|
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: inc-options/backend_options.php:
|
225 |
msgid "Footer"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: inc-options/backend_options.php:
|
229 |
msgid "The Footer-area can hide, include all links and details."
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: inc-options/backend_options.php:
|
233 |
msgid "Timestamp"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: inc-options/backend_options.php:
|
237 |
-
msgid "
|
|
|
|
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: inc-options/backend_options.php:
|
241 |
msgid "Category Height"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: inc-options/backend_options.php:
|
245 |
-
msgid "
|
|
|
|
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: inc-options/backend_options.php:
|
249 |
msgid "Advice in Footer"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: inc-options/backend_options.php:
|
253 |
-
msgid "
|
|
|
|
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: inc-options/backend_options.php:
|
257 |
msgid "Dashboard deactivate, redirect to"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: inc-options/backend_options.php:
|
261 |
msgid "Manage Posts"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: inc-options/backend_options.php:
|
265 |
msgid "Manage Pages"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: inc-options/backend_options.php:
|
269 |
msgid "Write Post"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: inc-options/backend_options.php:
|
273 |
msgid "Write Page"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: inc-options/backend_options.php:
|
277 |
msgid "Comments"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: inc-options/backend_options.php:
|
281 |
msgid "other Page"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: inc-options/backend_options.php:
|
285 |
-
msgid "
|
|
|
|
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: inc-options/dashboard_options.php:17 inc-options/minimenu.php:
|
289 |
msgid "Dashboard options"
|
290 |
msgstr ""
|
291 |
|
292 |
#: inc-options/dashboard_options.php:27
|
293 |
-
msgid "
|
|
|
|
|
|
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: inc-options/dashboard_options.php:
|
297 |
msgid "Your own options"
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: inc-options/dashboard_options.php:
|
301 |
#: inc-options/links_options.php:126 inc-options/widget_options.php:138
|
302 |
-
#: inc-options/wp_nav_menu_options.php:153 inc-options/write_cp_options.php:
|
303 |
#: inc-options/write_page_options.php:222
|
304 |
#: inc-options/write_post_options.php:225
|
305 |
msgid "ID or class"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: inc-options/dashboard_options.php:
|
309 |
-
#: inc-options/links_options.php:
|
310 |
-
#: inc-options/wp_nav_menu_options.php:
|
311 |
-
#: inc-options/write_page_options.php:
|
312 |
-
#: inc-options/write_post_options.php:
|
313 |
-
msgid "
|
|
|
|
|
|
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: inc-options/dashboard_options.php:
|
317 |
-
#: inc-options/links_options.php:
|
318 |
-
#: inc-options/wp_nav_menu_options.php:
|
319 |
-
#: inc-options/write_page_options.php:
|
320 |
-
#: inc-options/write_post_options.php:
|
321 |
-
msgid "
|
|
|
|
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: inc-options/dashboard_options.php:
|
325 |
-
#: inc-options/links_options.php:
|
326 |
-
#: inc-options/wp_nav_menu_options.php:
|
327 |
-
#: inc-options/write_page_options.php:
|
328 |
-
#: inc-options/write_post_options.php:
|
329 |
msgid "Possible IDs or classes. Separate multiple values through a carriage return."
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: inc-options/deinstall_options.php:15 inc-options/minimenu.php:
|
333 |
msgid "Uninstall Options"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: inc-options/deinstall_options.php:
|
337 |
-
msgid "
|
|
|
|
|
|
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: inc-options/deinstall_options.php:
|
341 |
msgid "Delete Options"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: inc-options/global_options.php:16 inc-options/minimenu.php:
|
345 |
msgid "Global options"
|
346 |
msgstr ""
|
347 |
|
@@ -358,7 +386,7 @@ msgid "Screen-Meta"
|
|
358 |
msgstr ""
|
359 |
|
360 |
#: inc-options/global_options.php:67 inc-options/widget_options.php:63
|
361 |
-
#: inc-options/wp_nav_menu_options.php:66 inc-options/write_cp_options.php:
|
362 |
#: inc-options/write_page_options.php:118
|
363 |
#: inc-options/write_post_options.php:123
|
364 |
msgid "Screen Options"
|
@@ -376,7 +404,7 @@ msgstr ""
|
|
376 |
msgid "Admin Notices"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: inc-options/im_export_options.php:15 inc-options/minimenu.php:
|
380 |
msgid "Export/Import Options"
|
381 |
msgstr ""
|
382 |
|
@@ -384,7 +412,7 @@ msgstr ""
|
|
384 |
msgid "Export"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: inc-options/im_export_options.php:
|
388 |
msgid "You can save a JSON formatted \".json\" file with your settings."
|
389 |
msgstr ""
|
390 |
|
@@ -396,15 +424,19 @@ msgstr ""
|
|
396 |
msgid "Import"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: inc-options/im_export_options.php:
|
400 |
-
msgid "
|
|
|
|
|
401 |
msgstr ""
|
402 |
|
403 |
#: inc-options/im_export_options.php:50
|
404 |
-
msgid "
|
|
|
|
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: inc-options/im_export_options.php:
|
408 |
msgid "Choose a \".json\" file from your computer:"
|
409 |
msgstr ""
|
410 |
|
@@ -412,7 +444,7 @@ msgstr ""
|
|
412 |
msgid "Upload file and import »"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: inc-options/links_options.php:16 inc-options/minimenu.php:
|
416 |
msgid "Links options"
|
417 |
msgstr ""
|
418 |
|
@@ -428,7 +460,7 @@ msgstr ""
|
|
428 |
msgid "Description"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: inc-options/links_options.php:68 inc-options/write_cp_options.php:
|
432 |
#: inc-options/write_post_options.php:127
|
433 |
msgid "Categories"
|
434 |
msgstr ""
|
@@ -445,7 +477,7 @@ msgstr ""
|
|
445 |
msgid "Advanced"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: inc-options/links_options.php:72 inc-options/write_cp_options.php:
|
449 |
#: inc-options/write_page_options.php:136
|
450 |
#: inc-options/write_post_options.php:137
|
451 |
msgid "Publish Actions"
|
@@ -455,7 +487,7 @@ msgstr ""
|
|
455 |
msgid "Your own Link options"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: inc-options/menu_options.php:16 inc-options/minimenu.php:
|
459 |
msgid "Menu Options"
|
460 |
msgstr ""
|
461 |
|
@@ -463,11 +495,11 @@ msgstr ""
|
|
463 |
msgid "Menu options - Menu, Submenu"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: inc-options/menu_options.php:
|
467 |
msgid "After activate the check box it heavy attitudes will change."
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: inc-options/menu_options.php:
|
471 |
msgid "Profile"
|
472 |
msgstr ""
|
473 |
|
@@ -479,20 +511,20 @@ msgstr ""
|
|
479 |
msgid "MiniMenu"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: inc-options/minimenu.php:
|
483 |
msgid "About the plugin"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: inc-options/minimenu.php:
|
487 |
msgid "Admin Bar Back end Options"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: inc-options/minimenu.php:
|
491 |
#: inc-options/write_post_options.php:25
|
492 |
msgid "Write options - Post"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: inc-options/minimenu.php:
|
496 |
#: inc-options/write_page_options.php:22
|
497 |
msgid "Write options - Page"
|
498 |
msgstr ""
|
@@ -502,16 +534,16 @@ msgstr ""
|
|
502 |
msgid "Write options"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: inc-options/minimenu.php:
|
506 |
msgid "Widgets"
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: inc-options/minimenu.php:
|
510 |
msgid "WP Nav Menu"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: inc-options/minimenu.php:
|
514 |
-
#: inc-options/theme_options.php:
|
515 |
msgid "Set Theme"
|
516 |
msgstr ""
|
517 |
|
@@ -519,46 +551,64 @@ msgstr ""
|
|
519 |
msgid "Version"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: inc-options/minimenu.php:
|
523 |
-
|
524 |
-
|
|
|
|
|
525 |
msgstr ""
|
526 |
|
527 |
#: inc-options/minimenu.php:160
|
528 |
-
|
529 |
-
|
|
|
|
|
530 |
msgstr ""
|
531 |
|
532 |
#: inc-options/minimenu.php:163
|
533 |
msgid "Report a issue on the development repository:"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: inc-options/minimenu.php:
|
537 |
-
msgid "
|
|
|
|
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: inc-options/minimenu.php:
|
541 |
-
|
542 |
-
|
|
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: inc-options/minimenu.php:
|
546 |
-
msgid "
|
|
|
|
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: inc-options/minimenu.php:
|
550 |
-
msgid "
|
|
|
|
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: inc-options/minimenu.php:
|
554 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: inc-options/theme_options.php:
|
558 |
-
msgid "
|
|
|
|
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: inc-options/theme_options.php:
|
562 |
msgid "Load User Data"
|
563 |
msgstr ""
|
564 |
|
@@ -587,7 +637,7 @@ msgid "Role"
|
|
587 |
msgstr ""
|
588 |
|
589 |
#: inc-options/widget_options.php:62 inc-options/wp_nav_menu_options.php:65
|
590 |
-
#: inc-options/write_cp_options.php:
|
591 |
#: inc-options/write_post_options.php:122
|
592 |
msgid "Help"
|
593 |
msgstr ""
|
@@ -625,78 +675,78 @@ msgstr ""
|
|
625 |
msgid "Your own Nav Menu options"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: inc-options/write_cp_options.php:
|
629 |
#: inc-options/write_post_options.php:125
|
630 |
msgid "Permalink"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: inc-options/write_cp_options.php:
|
634 |
#: inc-options/write_post_options.php:126
|
635 |
#: inc-options/write_post_options.php:167
|
636 |
msgid "Tags"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: inc-options/write_cp_options.php:
|
640 |
msgid "Format"
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: inc-options/write_cp_options.php:
|
644 |
msgid "Add New Category"
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: inc-options/write_cp_options.php:
|
648 |
msgid "Password Protect This Post"
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: inc-options/write_cp_options.php:
|
652 |
msgid "Related, Shortcuts"
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: inc-options/write_cp_options.php:
|
656 |
#: inc-options/write_post_options.php:132
|
657 |
msgid "Messages"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: inc-options/write_cp_options.php:
|
661 |
#: inc-options/write_post_options.php:133
|
662 |
msgid "h2: Advanced Options"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: inc-options/write_cp_options.php:
|
666 |
#: inc-options/write_post_options.php:134
|
667 |
msgid "Media Buttons (all)"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: inc-options/write_cp_options.php:
|
671 |
#: inc-options/write_post_options.php:135
|
672 |
msgid "Word count"
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: inc-options/write_cp_options.php:
|
676 |
msgid "Post Slug"
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: inc-options/write_cp_options.php:
|
680 |
#: inc-options/write_post_options.php:138
|
681 |
msgid "Discussion"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: inc-options/write_cp_options.php:
|
685 |
#: inc-options/write_post_options.php:139
|
686 |
msgid "HTML Editor Button"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: inc-options/write_cp_options.php:
|
690 |
msgid "Post Thumbnail"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: inc-options/write_cp_options.php:
|
694 |
#: inc-options/write_post_options.php:158
|
695 |
msgid "Quick Edit Link"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: inc-options/write_cp_options.php:
|
699 |
-
#: inc-options/write_cp_options.php:
|
700 |
#: inc-options/write_page_options.php:158
|
701 |
#: inc-options/write_page_options.php:163
|
702 |
#: inc-options/write_page_options.php:166
|
@@ -707,54 +757,53 @@ msgstr ""
|
|
707 |
msgid "QE"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: inc-options/write_cp_options.php:
|
711 |
#: inc-options/write_post_options.php:159
|
712 |
msgid "Inline Edit Left"
|
713 |
msgstr ""
|
714 |
|
715 |
-
#: inc-options/write_cp_options.php:
|
716 |
#: inc-options/write_post_options.php:160
|
717 |
msgid "All Labels"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: inc-options/write_cp_options.php:
|
721 |
#: inc-options/write_post_options.php:161
|
722 |
msgid "Author"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: inc-options/write_cp_options.php:
|
726 |
#: inc-options/write_post_options.php:162
|
727 |
msgid "Password and Private"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: inc-options/write_cp_options.php:
|
731 |
msgid "Inline Edit Center"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: inc-options/write_cp_options.php:
|
735 |
msgid "Categories Title"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: inc-options/write_cp_options.php:
|
739 |
msgid "Categories List"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: inc-options/write_cp_options.php:
|
743 |
#: inc-options/write_post_options.php:166
|
744 |
msgid "Inline Edit Right"
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: inc-options/write_cp_options.php:
|
748 |
msgid "Status, Sticky"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: inc-options/write_cp_options.php:
|
752 |
#: inc-options/write_post_options.php:169
|
753 |
msgid "Cancel/Save Button"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: inc-options/write_cp_options.php:
|
757 |
-
#, php-format
|
758 |
msgid "Your own %s options"
|
759 |
msgstr ""
|
760 |
|
@@ -865,10 +914,32 @@ msgstr ""
|
|
865 |
msgid "Load user data to themes was successful."
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: inc-setup/remove-admin-bar.php:
|
869 |
msgid "Network Admin"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: inc-setup/remove-admin-bar.php:
|
873 |
msgid "Site Admin"
|
874 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2016 Frank Bültge
|
2 |
+
# This file is distributed under the GPLv2+.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Adminimize 1.9.2-alpha\n"
|
6 |
+
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/adminimize\n"
|
7 |
+
"POT-Creation-Date: 2016-01-30 22:08:47+00:00\n"
|
|
|
|
|
|
|
8 |
"MIME-Version: 1.0\n"
|
9 |
+
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2016-MO-DA HO:MI+ZONE\n"
|
12 |
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
+
"X-Generator: grunt-wp-i18n 0.5.3\n"
|
15 |
+
"X-Poedit-KeywordsList: "
|
16 |
+
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
17 |
+
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
18 |
+
"Poedit: \n"
|
19 |
+
|
20 |
+
#: adminimize.php:178
|
21 |
msgid "Keymaster"
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: adminimize.php:179
|
25 |
msgid "Moderator"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: adminimize.php:180
|
29 |
msgid "Participant"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: adminimize.php:181
|
33 |
msgid "Spectator"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: adminimize.php:182
|
37 |
msgid "Blocked"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: adminimize.php:536
|
41 |
msgid "Dashboard"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: adminimize.php:613 adminimize.php:619 adminimize.php:621 adminimize.php:639
|
45 |
+
#: adminimize.php:647 adminimize.php:649 adminimize.php:1154
|
46 |
+
#: inc-setup/remove-admin-bar.php:64 inc-setup/remove-admin-bar.php:91
|
47 |
+
#: inc-setup/remove-admin-bar.php:284
|
|
|
48 |
msgid "Log Out"
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: adminimize.php:1207
|
52 |
msgid "Settings"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: adminimize.php:1220
|
56 |
msgid "Adminimize Options"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#. Plugin Name of the plugin/theme
|
60 |
msgid "Adminimize"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: adminimize.php:1256
|
64 |
msgid "Cheatin’ uh?"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: adminimize.php:1763
|
68 |
msgid "Please upload a valid .json file"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: adminimize.php:1769
|
72 |
msgid "Please upload a file to import"
|
73 |
msgstr ""
|
74 |
|
91 |
msgstr ""
|
92 |
|
93 |
#: inc-options/admin_bar.php:41 inc-options/admin_bar_frontend.php:41
|
94 |
+
#: inc-options/dashboard_options.php:38 inc-options/dashboard_options.php:147
|
95 |
#: inc-options/global_options.php:24 inc-options/global_options.php:127
|
96 |
#: inc-options/links_options.php:24 inc-options/links_options.php:128
|
97 |
#: inc-options/widget_options.php:24 inc-options/widget_options.php:140
|
98 |
#: inc-options/wp_nav_menu_options.php:23
|
99 |
+
#: inc-options/wp_nav_menu_options.php:155 inc-options/write_cp_options.php:249
|
100 |
#: inc-options/write_page_options.php:224
|
101 |
#: inc-options/write_post_options.php:227
|
102 |
msgid "Option"
|
103 |
msgstr ""
|
104 |
|
105 |
#: inc-options/admin_bar.php:44 inc-options/admin_bar_frontend.php:44
|
106 |
+
#: inc-options/dashboard_options.php:41 inc-options/global_options.php:27
|
107 |
#: inc-options/links_options.php:27 inc-options/menu_options.php:27
|
108 |
#: inc-options/widget_options.php:27 inc-options/wp_nav_menu_options.php:26
|
109 |
#: inc-options/write_cp_options.php:36 inc-options/write_page_options.php:25
|
112 |
msgstr ""
|
113 |
|
114 |
#: inc-options/admin_bar.php:49 inc-options/admin_bar_frontend.php:49
|
115 |
+
#: inc-options/dashboard_options.php:46 inc-options/global_options.php:32
|
116 |
#: inc-options/links_options.php:32 inc-options/menu_options.php:33
|
117 |
#: inc-options/widget_options.php:32 inc-options/wp_nav_menu_options.php:31
|
118 |
#: inc-options/write_cp_options.php:41 inc-options/write_page_options.php:30
|
120 |
msgid "Select all"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: inc-options/admin_bar.php:83 inc-options/admin_bar_frontend.php:85
|
124 |
+
#: inc-options/dashboard_options.php:114
|
125 |
msgid "No Title!"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: inc-options/admin_bar.php:89 inc-options/admin_bar_frontend.php:91
|
129 |
+
#: inc-options/menu_options.php:132
|
130 |
msgid "Group"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: inc-options/admin_bar.php:120
|
134 |
+
msgid ""
|
135 |
+
"Switch to another back-end page and come back to update the options to get "
|
136 |
+
"all items of the admin bar in the back end area."
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: inc-options/admin_bar.php:129 inc-options/admin_bar_frontend.php:135
|
140 |
+
#: inc-options/backend_options.php:245 inc-options/dashboard_options.php:193
|
141 |
+
#: inc-options/global_options.php:166 inc-options/links_options.php:165
|
142 |
+
#: inc-options/menu_options.php:256 inc-options/widget_options.php:177
|
143 |
+
#: inc-options/wp_nav_menu_options.php:192 inc-options/write_cp_options.php:297
|
144 |
+
#: inc-options/write_page_options.php:261
|
145 |
+
#: inc-options/write_post_options.php:264
|
146 |
msgid "Update Options"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: inc-options/admin_bar.php:136 inc-options/admin_bar_frontend.php:142
|
150 |
+
#: inc-options/backend_options.php:251 inc-options/dashboard_options.php:201
|
151 |
+
#: inc-options/deinstall_options.php:36 inc-options/global_options.php:173
|
152 |
+
#: inc-options/im_export_options.php:77 inc-options/links_options.php:171
|
153 |
+
#: inc-options/menu_options.php:262 inc-options/minimenu.php:203
|
154 |
+
#: inc-options/theme_options.php:121 inc-options/widget_options.php:183
|
155 |
+
#: inc-options/wp_nav_menu_options.php:198 inc-options/write_cp_options.php:303
|
156 |
+
#: inc-options/write_page_options.php:266
|
157 |
+
#: inc-options/write_post_options.php:270
|
158 |
msgid "scroll to top"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: inc-options/admin_bar_frontend.php:24 inc-options/minimenu.php:42
|
162 |
msgid "Admin Bar Front end Options"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: inc-options/admin_bar_frontend.php:122
|
166 |
+
msgid ""
|
167 |
+
"You must open the front end of the site in this browser in order for the "
|
168 |
+
"plugin to discover the Admin Bar items that are currently not visible."
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: inc-options/backend_options.php:16 inc-options/minimenu.php:48
|
172 |
msgid "Backend Options"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: inc-options/backend_options.php:28
|
176 |
msgid "Exclude Super Admin"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: inc-options/backend_options.php:36 inc-options/backend_options.php:56
|
180 |
+
#: inc-options/backend_options.php:86 inc-options/backend_options.php:103
|
181 |
+
#: inc-options/backend_options.php:121 inc-options/backend_options.php:140
|
182 |
+
#: inc-options/backend_options.php:157 inc-options/backend_options.php:203
|
183 |
msgid "Default"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: inc-options/backend_options.php:39 inc-options/backend_options.php:124
|
187 |
+
#: inc-options/backend_options.php:143 inc-options/backend_options.php:160
|
188 |
msgid "Activate"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: inc-options/backend_options.php:40
|
192 |
+
msgid ""
|
193 |
+
"Exclude the Super Admin on a WP Multisite Install from all limitations of "
|
194 |
+
"this plugin."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: inc-options/backend_options.php:48
|
198 |
msgid "User-Info"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: inc-options/backend_options.php:59 inc-options/backend_options.php:106
|
202 |
msgid "Hide"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: inc-options/backend_options.php:62
|
206 |
msgid "Only logout"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: inc-options/backend_options.php:65
|
210 |
msgid "User & Logout"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: inc-options/backend_options.php:66
|
214 |
+
msgid ""
|
215 |
+
"The "User-Info-area" is on the top right side of the backend. You "
|
216 |
+
"can hide or reduced show."
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: inc-options/backend_options.php:76
|
220 |
msgid "Change User-Info, redirect to"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: inc-options/backend_options.php:89
|
224 |
msgid "Frontpage of the Blog"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: inc-options/backend_options.php:90
|
228 |
+
msgid ""
|
229 |
+
"When the "User-Info-area" change it, then it is possible to "
|
230 |
+
"change the redirect."
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: inc-options/backend_options.php:97
|
234 |
msgid "Footer"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: inc-options/backend_options.php:107
|
238 |
msgid "The Footer-area can hide, include all links and details."
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: inc-options/backend_options.php:113
|
242 |
msgid "Timestamp"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: inc-options/backend_options.php:125
|
246 |
+
msgid ""
|
247 |
+
"Opens the post timestamp editing fields without you having to click the "
|
248 |
+
"\"Edit\" link every time."
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: inc-options/backend_options.php:132
|
252 |
msgid "Category Height"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: inc-options/backend_options.php:144
|
256 |
+
msgid ""
|
257 |
+
"View the Meta Box with Categories in the full height, no scrollbar or "
|
258 |
+
"whitespace."
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: inc-options/backend_options.php:151
|
262 |
msgid "Advice in Footer"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: inc-options/backend_options.php:164
|
266 |
+
msgid ""
|
267 |
+
"In the Footer you can display an advice for changing the Default-design, "
|
268 |
+
"(x)HTML is possible."
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: inc-options/backend_options.php:193
|
272 |
msgid "Dashboard deactivate, redirect to"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: inc-options/backend_options.php:207
|
276 |
msgid "Manage Posts"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: inc-options/backend_options.php:211
|
280 |
msgid "Manage Pages"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: inc-options/backend_options.php:215
|
284 |
msgid "Write Post"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: inc-options/backend_options.php:219
|
288 |
msgid "Write Page"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: inc-options/backend_options.php:223
|
292 |
msgid "Comments"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: inc-options/backend_options.php:227
|
296 |
msgid "other Page"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: inc-options/backend_options.php:233
|
300 |
+
msgid ""
|
301 |
+
"You have deactivated the Dashboard, please select a page for redirection or "
|
302 |
+
"define custom url, include http://?"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: inc-options/dashboard_options.php:17 inc-options/minimenu.php:58
|
306 |
msgid "Dashboard options"
|
307 |
msgstr ""
|
308 |
|
309 |
#: inc-options/dashboard_options.php:27
|
310 |
+
msgid ""
|
311 |
+
"To complete the installation for Dashboard Widgets you must visit your "
|
312 |
+
"dashboard once and then come back to Settings > Adminimize to configure who "
|
313 |
+
"has access to each widget."
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: inc-options/dashboard_options.php:143 inc-options/global_options.php:123
|
317 |
msgid "Your own options"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: inc-options/dashboard_options.php:145 inc-options/global_options.php:125
|
321 |
#: inc-options/links_options.php:126 inc-options/widget_options.php:138
|
322 |
+
#: inc-options/wp_nav_menu_options.php:153 inc-options/write_cp_options.php:246
|
323 |
#: inc-options/write_page_options.php:222
|
324 |
#: inc-options/write_post_options.php:225
|
325 |
msgid "ID or class"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: inc-options/dashboard_options.php:153 inc-options/global_options.php:133
|
329 |
+
#: inc-options/links_options.php:134 inc-options/widget_options.php:146
|
330 |
+
#: inc-options/wp_nav_menu_options.php:161 inc-options/write_cp_options.php:256
|
331 |
+
#: inc-options/write_page_options.php:230
|
332 |
+
#: inc-options/write_post_options.php:233
|
333 |
+
msgid ""
|
334 |
+
"It is possible to add your own IDs or classes from elements and tags. You "
|
335 |
+
"can find IDs and classes with the FireBug Add-on for Firefox. Assign a "
|
336 |
+
"value and the associate name per line."
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: inc-options/dashboard_options.php:167 inc-options/global_options.php:145
|
340 |
+
#: inc-options/links_options.php:145 inc-options/widget_options.php:157
|
341 |
+
#: inc-options/wp_nav_menu_options.php:172 inc-options/write_cp_options.php:271
|
342 |
+
#: inc-options/write_page_options.php:241
|
343 |
+
#: inc-options/write_post_options.php:244
|
344 |
+
msgid ""
|
345 |
+
"Possible nomination for ID or class. Separate multiple nominations through "
|
346 |
+
"a carriage return."
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: inc-options/dashboard_options.php:181 inc-options/global_options.php:156
|
350 |
+
#: inc-options/links_options.php:155 inc-options/widget_options.php:167
|
351 |
+
#: inc-options/wp_nav_menu_options.php:182 inc-options/write_cp_options.php:284
|
352 |
+
#: inc-options/write_page_options.php:251
|
353 |
+
#: inc-options/write_post_options.php:254
|
354 |
msgid "Possible IDs or classes. Separate multiple values through a carriage return."
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: inc-options/deinstall_options.php:15 inc-options/minimenu.php:126
|
358 |
msgid "Uninstall Options"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: inc-options/deinstall_options.php:18
|
362 |
+
msgid ""
|
363 |
+
"Use this option for clean your database from all entries of this plugin. "
|
364 |
+
"When you deactivate the plugin, the deinstall of the plugin <strong>clean "
|
365 |
+
"not</strong> all entries in the database."
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: inc-options/deinstall_options.php:27
|
369 |
msgid "Delete Options"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: inc-options/global_options.php:16 inc-options/minimenu.php:53
|
373 |
msgid "Global options"
|
374 |
msgstr ""
|
375 |
|
386 |
msgstr ""
|
387 |
|
388 |
#: inc-options/global_options.php:67 inc-options/widget_options.php:63
|
389 |
+
#: inc-options/wp_nav_menu_options.php:66 inc-options/write_cp_options.php:124
|
390 |
#: inc-options/write_page_options.php:118
|
391 |
#: inc-options/write_post_options.php:123
|
392 |
msgid "Screen Options"
|
404 |
msgid "Admin Notices"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: inc-options/im_export_options.php:15 inc-options/minimenu.php:121
|
408 |
msgid "Export/Import Options"
|
409 |
msgstr ""
|
410 |
|
412 |
msgid "Export"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: inc-options/im_export_options.php:23
|
416 |
msgid "You can save a JSON formatted \".json\" file with your settings."
|
417 |
msgstr ""
|
418 |
|
424 |
msgid "Import"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: inc-options/im_export_options.php:46
|
428 |
+
msgid ""
|
429 |
+
"Choose a Adminimize (<em>.json</em>) file to upload, then click <em>Upload "
|
430 |
+
"file and import</em>."
|
431 |
msgstr ""
|
432 |
|
433 |
#: inc-options/im_export_options.php:50
|
434 |
+
msgid ""
|
435 |
+
"After import please reload the page to display also all global values from "
|
436 |
+
"WordPress."
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: inc-options/im_export_options.php:55
|
440 |
msgid "Choose a \".json\" file from your computer:"
|
441 |
msgstr ""
|
442 |
|
444 |
msgid "Upload file and import »"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: inc-options/links_options.php:16 inc-options/minimenu.php:99
|
448 |
msgid "Links options"
|
449 |
msgstr ""
|
450 |
|
460 |
msgid "Description"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: inc-options/links_options.php:68 inc-options/write_cp_options.php:128
|
464 |
#: inc-options/write_post_options.php:127
|
465 |
msgid "Categories"
|
466 |
msgstr ""
|
477 |
msgid "Advanced"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: inc-options/links_options.php:72 inc-options/write_cp_options.php:137
|
481 |
#: inc-options/write_page_options.php:136
|
482 |
#: inc-options/write_post_options.php:137
|
483 |
msgid "Publish Actions"
|
487 |
msgid "Your own Link options"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: inc-options/menu_options.php:16 inc-options/minimenu.php:63
|
491 |
msgid "Menu Options"
|
492 |
msgstr ""
|
493 |
|
495 |
msgid "Menu options - Menu, Submenu"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: inc-options/menu_options.php:102 inc-options/menu_options.php:193
|
499 |
msgid "After activate the check box it heavy attitudes will change."
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: inc-options/menu_options.php:168
|
503 |
msgid "Profile"
|
504 |
msgstr ""
|
505 |
|
511 |
msgid "MiniMenu"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: inc-options/minimenu.php:30 inc-options/minimenu.php:138
|
515 |
msgid "About the plugin"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: inc-options/minimenu.php:36
|
519 |
msgid "Admin Bar Back end Options"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: inc-options/minimenu.php:68 inc-options/write_post_options.php:17
|
523 |
#: inc-options/write_post_options.php:25
|
524 |
msgid "Write options - Post"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: inc-options/minimenu.php:73 inc-options/write_page_options.php:15
|
528 |
#: inc-options/write_page_options.php:22
|
529 |
msgid "Write options - Page"
|
530 |
msgstr ""
|
534 |
msgid "Write options"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: inc-options/minimenu.php:106 inc-options/widget_options.php:16
|
538 |
msgid "Widgets"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: inc-options/minimenu.php:111 inc-options/wp_nav_menu_options.php:15
|
542 |
msgid "WP Nav Menu"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: inc-options/minimenu.php:116 inc-options/theme_options.php:16
|
546 |
+
#: inc-options/theme_options.php:113
|
547 |
msgid "Set Theme"
|
548 |
msgstr ""
|
549 |
|
551 |
msgid "Version"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: inc-options/minimenu.php:152
|
555 |
+
msgid ""
|
556 |
+
"Further information: Visit the <a href=\"%1$s\">plugin homepage</a> for "
|
557 |
+
"further information or to grab the latest version of this plugin. Also see "
|
558 |
+
"the <a href=\"%2$s\">support forum</a> for questions."
|
559 |
msgstr ""
|
560 |
|
561 |
#: inc-options/minimenu.php:160
|
562 |
+
msgid ""
|
563 |
+
"<br>For more hints about the functions and how to's with the possibilities "
|
564 |
+
"of the plugin settings see the <a href=\"%s\">FAQ page</a> on the plugin "
|
565 |
+
"site."
|
566 |
msgstr ""
|
567 |
|
568 |
#: inc-options/minimenu.php:163
|
569 |
msgid "Report a issue on the development repository:"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: inc-options/minimenu.php:165
|
573 |
+
msgid ""
|
574 |
+
"The plugin have a github repository to easy add a issue or a create a fork, "
|
575 |
+
"pull request:"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: inc-options/minimenu.php:171
|
579 |
+
msgid ""
|
580 |
+
"You want to thank me? Visit my <a href=\"%1$s\">wishlist</a> or <a "
|
581 |
+
"href=\"%2$s\">donate</a>."
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: inc-options/minimenu.php:184 inc-options/settings_notice.php:17
|
585 |
+
msgid ""
|
586 |
+
"Please note: The Adminimize settings page ignores the Menu Options below "
|
587 |
+
"and displays the menu with all entries."
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: inc-options/minimenu.php:188 inc-options/settings_notice.php:21
|
591 |
+
msgid ""
|
592 |
+
"To view your changes to the menu you need to navigate away from the "
|
593 |
+
"Adminimize settings page."
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: inc-options/minimenu.php:194
|
597 |
+
msgid ""
|
598 |
+
"You have to activated the Plugin for your Multisite Network. Your settings "
|
599 |
+
"works now on all blogs in the network. Please set the settings only in one "
|
600 |
+
"blog, there you have all active menu items and plugins. If you update the "
|
601 |
+
"settings then write the plugin new settings in dependence of the blog where "
|
602 |
+
"you put, save the settings."
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: inc-options/theme_options.php:26
|
606 |
+
msgid ""
|
607 |
+
"For better peformance with many users on your blog; load only userlist, "
|
608 |
+
"when you will change the theme options for users."
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: inc-options/theme_options.php:33
|
612 |
msgid "Load User Data"
|
613 |
msgstr ""
|
614 |
|
637 |
msgstr ""
|
638 |
|
639 |
#: inc-options/widget_options.php:62 inc-options/wp_nav_menu_options.php:65
|
640 |
+
#: inc-options/write_cp_options.php:123 inc-options/write_page_options.php:117
|
641 |
#: inc-options/write_post_options.php:122
|
642 |
msgid "Help"
|
643 |
msgstr ""
|
675 |
msgid "Your own Nav Menu options"
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: inc-options/write_cp_options.php:125 inc-options/write_page_options.php:120
|
679 |
#: inc-options/write_post_options.php:125
|
680 |
msgid "Permalink"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: inc-options/write_cp_options.php:126 inc-options/write_cp_options.php:169
|
684 |
#: inc-options/write_post_options.php:126
|
685 |
#: inc-options/write_post_options.php:167
|
686 |
msgid "Tags"
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: inc-options/write_cp_options.php:127
|
690 |
msgid "Format"
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: inc-options/write_cp_options.php:129 inc-options/write_post_options.php:128
|
694 |
msgid "Add New Category"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: inc-options/write_cp_options.php:130 inc-options/write_post_options.php:130
|
698 |
msgid "Password Protect This Post"
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: inc-options/write_cp_options.php:131 inc-options/write_post_options.php:131
|
702 |
msgid "Related, Shortcuts"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: inc-options/write_cp_options.php:132 inc-options/write_page_options.php:131
|
706 |
#: inc-options/write_post_options.php:132
|
707 |
msgid "Messages"
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: inc-options/write_cp_options.php:133 inc-options/write_page_options.php:132
|
711 |
#: inc-options/write_post_options.php:133
|
712 |
msgid "h2: Advanced Options"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: inc-options/write_cp_options.php:134 inc-options/write_page_options.php:133
|
716 |
#: inc-options/write_post_options.php:134
|
717 |
msgid "Media Buttons (all)"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: inc-options/write_cp_options.php:135 inc-options/write_page_options.php:134
|
721 |
#: inc-options/write_post_options.php:135
|
722 |
msgid "Word count"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: inc-options/write_cp_options.php:136 inc-options/write_post_options.php:136
|
726 |
msgid "Post Slug"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: inc-options/write_cp_options.php:138 inc-options/write_page_options.php:137
|
730 |
#: inc-options/write_post_options.php:138
|
731 |
msgid "Discussion"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: inc-options/write_cp_options.php:139 inc-options/write_page_options.php:138
|
735 |
#: inc-options/write_post_options.php:139
|
736 |
msgid "HTML Editor Button"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: inc-options/write_cp_options.php:152 inc-options/write_post_options.php:153
|
740 |
msgid "Post Thumbnail"
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: inc-options/write_cp_options.php:160 inc-options/write_page_options.php:157
|
744 |
#: inc-options/write_post_options.php:158
|
745 |
msgid "Quick Edit Link"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: inc-options/write_cp_options.php:161 inc-options/write_cp_options.php:165
|
749 |
+
#: inc-options/write_cp_options.php:168 inc-options/write_cp_options.php:171
|
750 |
#: inc-options/write_page_options.php:158
|
751 |
#: inc-options/write_page_options.php:163
|
752 |
#: inc-options/write_page_options.php:166
|
757 |
msgid "QE"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: inc-options/write_cp_options.php:161 inc-options/write_page_options.php:158
|
761 |
#: inc-options/write_post_options.php:159
|
762 |
msgid "Inline Edit Left"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: inc-options/write_cp_options.php:162 inc-options/write_page_options.php:159
|
766 |
#: inc-options/write_post_options.php:160
|
767 |
msgid "All Labels"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: inc-options/write_cp_options.php:163 inc-options/write_page_options.php:161
|
771 |
#: inc-options/write_post_options.php:161
|
772 |
msgid "Author"
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: inc-options/write_cp_options.php:164 inc-options/write_page_options.php:162
|
776 |
#: inc-options/write_post_options.php:162
|
777 |
msgid "Password and Private"
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: inc-options/write_cp_options.php:165 inc-options/write_post_options.php:163
|
781 |
msgid "Inline Edit Center"
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: inc-options/write_cp_options.php:166 inc-options/write_post_options.php:164
|
785 |
msgid "Categories Title"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: inc-options/write_cp_options.php:167 inc-options/write_post_options.php:165
|
789 |
msgid "Categories List"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: inc-options/write_cp_options.php:168 inc-options/write_page_options.php:163
|
793 |
#: inc-options/write_post_options.php:166
|
794 |
msgid "Inline Edit Right"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: inc-options/write_cp_options.php:170 inc-options/write_post_options.php:168
|
798 |
msgid "Status, Sticky"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: inc-options/write_cp_options.php:171 inc-options/write_page_options.php:166
|
802 |
#: inc-options/write_post_options.php:169
|
803 |
msgid "Cancel/Save Button"
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: inc-options/write_cp_options.php:243
|
|
|
807 |
msgid "Your own %s options"
|
808 |
msgstr ""
|
809 |
|
914 |
msgid "Load user data to themes was successful."
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: inc-setup/remove-admin-bar.php:272 inc-setup/remove-admin-bar.php:274
|
918 |
msgid "Network Admin"
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: inc-setup/remove-admin-bar.php:276 inc-setup/remove-admin-bar.php:278
|
922 |
msgid "Site Admin"
|
923 |
msgstr ""
|
924 |
+
|
925 |
+
#. Plugin URI of the plugin/theme
|
926 |
+
msgid "https://wordpress.org/plugins/adminimize/"
|
927 |
+
msgstr ""
|
928 |
+
|
929 |
+
#. Description of the plugin/theme
|
930 |
+
msgid ""
|
931 |
+
"Visually compresses the administrative meta-boxes so that more admin page "
|
932 |
+
"content can be initially seen. The plugin that lets you hide 'unnecessary' "
|
933 |
+
"items from the WordPress administration menu, for all roles of your "
|
934 |
+
"install. You can also hide post meta controls on the edit-area to simplify "
|
935 |
+
"the interface. It is possible to simplify the admin in different for all "
|
936 |
+
"roles."
|
937 |
+
msgstr ""
|
938 |
+
|
939 |
+
#. Author of the plugin/theme
|
940 |
+
msgid "Frank Bültge"
|
941 |
+
msgstr ""
|
942 |
+
|
943 |
+
#. Author URI of the plugin/theme
|
944 |
+
msgid "http://bueltge.de/"
|
945 |
+
msgstr ""
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.me/FrankBueltge
|
|
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: 4.0
|
6 |
Tested up to: 4.5-alpha
|
7 |
-
Stable tag: 1.9.
|
8 |
|
9 |
Adminimize that lets you hide 'unnecessary' items from the WordPress backend
|
10 |
|
@@ -32,28 +32,31 @@ The plugin support all functions also for custom post types, automatically in th
|
|
32 |
= Compatibility with plugins for MetaBoxes in Write-area =
|
33 |
You can add your own options, you must only see for css selectors
|
34 |
|
35 |
-
= Requirements =
|
36 |
-
* WordPress version 4.0 and later; tested only in last stable version.
|
37 |
-
|
38 |
= What does this plugin do? =
|
39 |
The plugin changes the administration backend and gives you the power to assign rights on certain parts. Admins can activate/deactivate every part of the menu and even parts of the sub-menu. Meta fields can be administered separately for posts and pages. Certain parts of the write menu can be deactivated separately for admins or non-admins. The header of the backend is minimized and optimized to give you more space and the structure of the menu gets changed to make it more logical - this can all be done per user so each user can have his own settings.
|
40 |
|
41 |
== Installation ==
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
4. Selecting Colour Scheme and Theme, selection in Your Profile, go to your User Profile (under `Users` > `Your Profile` or by clicking on your name at the top right corner of the administration panel).
|
46 |
-
5. Administrator can go to `Options` > `Adminimize` menu and configure the plugin (Menu, Sub-menu, Meta boxes, ...)
|
47 |
|
48 |
-
|
49 |
|
50 |
-
|
51 |
-
|
|
|
|
|
52 |
|
53 |
== Screenshots ==
|
54 |
1. Settings area in WP 4.5-alpha
|
55 |
|
56 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
= 1.9.1 (2016-25-01) =
|
58 |
* Bugfix for fixing ssl protocol in WP core on include styles and scripts.
|
59 |
|
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: 4.0
|
6 |
Tested up to: 4.5-alpha
|
7 |
+
Stable tag: 1.9.2
|
8 |
|
9 |
Adminimize that lets you hide 'unnecessary' items from the WordPress backend
|
10 |
|
32 |
= Compatibility with plugins for MetaBoxes in Write-area =
|
33 |
You can add your own options, you must only see for css selectors
|
34 |
|
|
|
|
|
|
|
35 |
= What does this plugin do? =
|
36 |
The plugin changes the administration backend and gives you the power to assign rights on certain parts. Admins can activate/deactivate every part of the menu and even parts of the sub-menu. Meta fields can be administered separately for posts and pages. Certain parts of the write menu can be deactivated separately for admins or non-admins. The header of the backend is minimized and optimized to give you more space and the structure of the menu gets changed to make it more logical - this can all be done per user so each user can have his own settings.
|
37 |
|
38 |
== Installation ==
|
39 |
+
= Requirements =
|
40 |
+
* WordPress version 4.0 and later; tested only in last stable version.
|
41 |
+
* PHP 5.2.4, newer PHP versions will work faster. Tested only from version 5.4.
|
|
|
|
|
42 |
|
43 |
+
Use the installer via back-end of your install or ...
|
44 |
|
45 |
+
1. Unpack the download-package.
|
46 |
+
2. Upload the files to the `/wp-content/plugins/` directory.
|
47 |
+
3. Activate the plugin through the Plugins menu in WordPress and click Activate.
|
48 |
+
4. Administrator can go to `Settings` > `Adminimize` menu and configure the plugin (Menu, Sub-menu, Meta boxes, ...)
|
49 |
|
50 |
== Screenshots ==
|
51 |
1. Settings area in WP 4.5-alpha
|
52 |
|
53 |
== Changelog ==
|
54 |
+
= 1.9.2 (2016-01-30) =
|
55 |
+
* Change get role name, return now a array with slug and name to fix "Select All" function for custom roles.
|
56 |
+
* Change Menu Items to Key value, not the id. Makes possible to hide also menu items, there have a stupid menu entry.
|
57 |
+
* Remove https fix; not necessary for the plugin. If you will usage, add this custom [plugin](https://gist.github.com/bueltge/01f37a868e2e1321b931).
|
58 |
+
* Update pot and de_De language files.
|
59 |
+
|
60 |
= 1.9.1 (2016-25-01) =
|
61 |
* Bugfix for fixing ssl protocol in WP core on include styles and scripts.
|
62 |
|