Version Description
Download this release
Release Info
Developer | Bueltge |
Plugin | Adminimize |
Version | 1.7.7 |
Comparing to | |
See all releases |
Code changes from version 1.7.12 to 1.7.7
- Adminimize-da_DK.txt +1 -1
- adminimize.php +74 -139
- adminimize_page.php +14 -28
- css/mw_small_user_info30.css +0 -24
- js/remove_header.js +0 -6
- languages/adminimize-da_DK.mo +0 -0
- languages/adminimize-da_DK.po +224 -234
- languages/adminimize-de_DE.mo +0 -0
- languages/adminimize-de_DE.po +233 -337
- languages/adminimize-xx_XX.pot +382 -486
- readme.txt +6 -0
Adminimize-da_DK.txt
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
Adminimize 1.7.
|
2 |
|
3 |
Filerne skal ligge i mappen adminimize/languages
|
4 |
|
1 |
+
Adminimize 1.7.7
|
2 |
|
3 |
Filerne skal ligge i mappen adminimize/languages
|
4 |
|
adminimize.php
CHANGED
@@ -2,20 +2,18 @@
|
|
2 |
/**
|
3 |
* @package Adminimize
|
4 |
* @author Frank Bültge
|
5 |
-
|
6 |
*/
|
7 |
|
8 |
/*
|
9 |
Plugin Name: Adminimize
|
10 |
Plugin URI: http://bueltge.de/wordpress-admin-theme-adminimize/674/
|
11 |
-
Text Domain: adminimize
|
12 |
-
Domain Path: /languages
|
13 |
Description: Visually compresses the administratrive meta-boxes so that more admin page content can be initially seen. The plugin that lets you hide 'unnecessary' items from the WordPress administration menu, for alle roles of your install. You can also hide post meta controls on the edit-area to simplify the interface. It is possible to simplify the admin in different for all roles.
|
14 |
Author: Frank Bültge
|
15 |
Author URI: http://bueltge.de/
|
16 |
-
Version: 1.7.
|
17 |
License: GNU
|
18 |
-
Last Update:
|
19 |
*/
|
20 |
|
21 |
/**
|
@@ -119,12 +117,10 @@ function get_all_user_roles() {
|
|
119 |
global $wp_roles;
|
120 |
|
121 |
$user_roles = array();
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
//$data contains caps, maybe for later use..
|
127 |
-
}
|
128 |
}
|
129 |
|
130 |
return $user_roles;
|
@@ -171,39 +167,6 @@ function _mw_adminimize_control_flashloader() {
|
|
171 |
function _mw_adminimize_init() {
|
172 |
global $pagenow, $menu, $submenu, $adminimizeoptions, $wp_version;
|
173 |
|
174 |
-
if ( function_exists('get_post_type_object') ) {
|
175 |
-
if ( isset($_GET['post']) )
|
176 |
-
$post_id = (int) $_GET['post'];
|
177 |
-
elseif ( isset($_POST['post_ID']) )
|
178 |
-
$post_id = (int) $_POST['post_ID'];
|
179 |
-
else
|
180 |
-
$post_id = 0;
|
181 |
-
$post_ID = $post_id;
|
182 |
-
$post = null;
|
183 |
-
$post_type_object = null;
|
184 |
-
$post_type = null;
|
185 |
-
if ( $post_id ) {
|
186 |
-
$post = get_post($post_id);
|
187 |
-
if ( $post ) {
|
188 |
-
$post_type_object = get_post_type_object($post->post_type);
|
189 |
-
if ( $post_type_object ) {
|
190 |
-
$post_type = $post->post_type;
|
191 |
-
$current_screen->post_type = $post->post_type;
|
192 |
-
$current_screen->id = $current_screen->post_type;
|
193 |
-
}
|
194 |
-
}
|
195 |
-
} elseif ( isset($_POST['post_type']) ) {
|
196 |
-
$post_type_object = get_post_type_object($_POST['post_type']);
|
197 |
-
if ( $post_type_object ) {
|
198 |
-
$post_type = $post_type_object->name;
|
199 |
-
$current_screen->post_type = $post_type;
|
200 |
-
$current_screen->id = $current_screen->post_type;
|
201 |
-
}
|
202 |
-
}
|
203 |
-
} else {
|
204 |
-
$post_type = '';
|
205 |
-
}
|
206 |
-
|
207 |
$user_roles = get_all_user_roles();
|
208 |
|
209 |
$adminimizeoptions = get_option('mw_adminimize');
|
@@ -233,17 +196,10 @@ function _mw_adminimize_init() {
|
|
233 |
break;
|
234 |
}
|
235 |
|
236 |
-
$_mw_adminimize_header = _mw_adminimize_getOptionValue('_mw_adminimize_header');
|
237 |
-
switch ($_mw_adminimize_header) {
|
238 |
-
case 1:
|
239 |
-
wp_enqueue_script( '_mw_adminimize_remove_header', WP_PLUGIN_URL . '/' . FB_ADMINIMIZE_BASEFOLDER . '/js/remove_header.js', array('jquery') );
|
240 |
-
break;
|
241 |
-
}
|
242 |
-
|
243 |
//post-page options
|
244 |
$post_page_pages = array('post-new.php', 'post.php', 'page-new.php', 'page.php');
|
245 |
if ( in_array( $pagenow, $post_page_pages ) ) {
|
246 |
-
|
247 |
$_mw_adminimize_writescroll = _mw_adminimize_getOptionValue('_mw_adminimize_writescroll');
|
248 |
switch ($_mw_adminimize_writescroll) {
|
249 |
case 1:
|
@@ -304,11 +260,7 @@ function _mw_adminimize_init() {
|
|
304 |
) {
|
305 |
|
306 |
// only posts
|
307 |
-
if (
|
308 |
-
( 'post-new.php' == $pagenow ) ||
|
309 |
-
( 'post.php' == $pagenow ) ||
|
310 |
-
( 'post' == $post_type )
|
311 |
-
) {
|
312 |
if ( version_compare( substr($wp_version, 0, 3), '2.7', '<' ) )
|
313 |
add_action('admin_head', '_mw_adminimize_remove_box', 99);
|
314 |
|
@@ -326,12 +278,7 @@ function _mw_adminimize_init() {
|
|
326 |
}
|
327 |
|
328 |
// only pages
|
329 |
-
if (
|
330 |
-
( 'page-new.php' == $pagenow ) ||
|
331 |
-
( 'page.php' == $pagenow ) ||
|
332 |
-
( 'post_type=page' == esc_attr($_SERVER['QUERY_STRING']) ) ||
|
333 |
-
( 'page' == $post_type )
|
334 |
-
) {
|
335 |
|
336 |
// check for array empty
|
337 |
if ( !isset($disabled_metaboxes_page_['editor']['0']) )
|
@@ -349,15 +296,13 @@ function _mw_adminimize_init() {
|
|
349 |
add_action('admin_head', '_mw_adminimize_set_global_option', 1);
|
350 |
|
351 |
// set metabox post option
|
352 |
-
$post_pages = array('post-new.php', 'post.php'
|
353 |
-
if ( in_array( $pagenow, $post_pages )
|
354 |
-
|
355 |
-
add_action('admin_head', '_mw_adminimize_set_metabox_post_option', 1);
|
356 |
-
}
|
357 |
|
358 |
// set metabox page option
|
359 |
-
$page_pages = array(
|
360 |
-
if ( in_array( $pagenow, $page_pages )
|
361 |
add_action('admin_head', '_mw_adminimize_set_metabox_page_option', 1);
|
362 |
|
363 |
// set link option
|
@@ -657,19 +602,28 @@ function _mw_adminimize_remove_dashboard() {
|
|
657 |
}
|
658 |
|
659 |
// remove dashboard
|
660 |
-
if ( $disabled_menu_all != '' || $disabled_submenu_all
|
661 |
|
|
|
662 |
foreach ($user_roles as $role) {
|
663 |
-
|
664 |
-
if ( current_user_can($role) ) {
|
665 |
-
if (
|
666 |
-
|
667 |
-
|
668 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
669 |
}
|
|
|
670 |
}
|
671 |
-
|
672 |
-
if ( $redirect ) {
|
673 |
$_mw_adminimize_db_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_db_redirect');
|
674 |
switch ($_mw_adminimize_db_redirect) {
|
675 |
case 0:
|
@@ -691,7 +645,7 @@ function _mw_adminimize_remove_dashboard() {
|
|
691 |
$_mw_adminimize_db_redirect = 'edit-comments.php';
|
692 |
break;
|
693 |
case 6:
|
694 |
-
$_mw_adminimize_db_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_db_redirect_txt');
|
695 |
break;
|
696 |
}
|
697 |
|
@@ -736,11 +690,11 @@ function _mw_adminimize_set_menu_option() {
|
|
736 |
$disabled_menu_[$role] = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_'. $role .'_items');
|
737 |
$disabled_submenu_[$role] = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_'. $role .'_items');
|
738 |
}
|
739 |
-
|
740 |
$_mw_adminimize_admin_head = "\n";
|
741 |
$_mw_adminimize_user_info = _mw_adminimize_getOptionValue('_mw_adminimize_user_info');
|
742 |
$_mw_adminimize_ui_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_ui_redirect');
|
743 |
-
|
744 |
switch ($_mw_adminimize_user_info) {
|
745 |
case 1:
|
746 |
$_mw_adminimize_admin_head .= '<script type="text/javascript">' . "\n";
|
@@ -748,9 +702,7 @@ function _mw_adminimize_set_menu_option() {
|
|
748 |
$_mw_adminimize_admin_head .= '</script>' . "\n";
|
749 |
break;
|
750 |
case 2:
|
751 |
-
if ( version_compare($wp_version,
|
752 |
-
$_mw_adminimize_admin_head .= '<link rel="stylesheet" href="' . WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/mw_small_user_info30.css" type="text/css" />' . "\n";
|
753 |
-
} elseif ( version_compare(substr($wp_version, 0, 3), '2.7', '>=') ) {
|
754 |
$_mw_adminimize_admin_head .= '<link rel="stylesheet" href="' . WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/mw_small_user_info27.css" type="text/css" />' . "\n";
|
755 |
} else {
|
756 |
$_mw_adminimize_admin_head .= '<link rel="stylesheet" href="' . WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/mw_small_user_info.css" type="text/css" />' . "\n";
|
@@ -765,9 +717,7 @@ function _mw_adminimize_set_menu_option() {
|
|
765 |
$_mw_adminimize_admin_head .= '</script>' . "\n";
|
766 |
break;
|
767 |
case 3:
|
768 |
-
if ( version_compare($wp_version,
|
769 |
-
$_mw_adminimize_admin_head .= '<link rel="stylesheet" href="' . WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/mw_small_user_info30.css" type="text/css" />' . "\n";
|
770 |
-
} elseif ( version_compare(substr($wp_version, 0, 3), '2.7', '>=') ) {
|
771 |
$_mw_adminimize_admin_head .= '<link rel="stylesheet" href="' . WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/mw_small_user_info27.css" type="text/css" />' . "\n";
|
772 |
} else {
|
773 |
$_mw_adminimize_admin_head .= '<link rel="stylesheet" href="' . WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/mw_small_user_info.css" type="text/css" />' . "\n";
|
@@ -788,32 +738,28 @@ function _mw_adminimize_set_menu_option() {
|
|
788 |
|
789 |
// set admin-menu
|
790 |
foreach ($user_roles as $role) {
|
791 |
-
|
792 |
-
if
|
793 |
if ( current_user_can($role) ) {
|
794 |
$mw_adminimize_menu = $disabled_menu_[$role];
|
795 |
$mw_adminimize_submenu = $disabled_submenu_[$role];
|
796 |
}
|
|
|
|
|
|
|
797 |
}
|
798 |
}
|
799 |
|
800 |
-
// fallback on users.php on all userroles smaller admin
|
801 |
-
if ( in_array('users.php', $mw_adminimize_menu) )
|
802 |
-
$mw_adminimize_menu[] = 'profile.php';
|
803 |
-
|
804 |
foreach ($menu as $index => $item) {
|
805 |
-
if ( 'index.php'
|
806 |
continue;
|
807 |
-
|
808 |
-
if ( isset($mw_adminimize_menu) && in_array($item[2], $mw_adminimize_menu) )
|
809 |
unset($menu[$index]);
|
810 |
-
|
811 |
-
|
812 |
if ( isset($submenu) && !empty($submenu[$item[2]]) ) {
|
813 |
foreach ($submenu[$item[2]] as $subindex => $subitem) {
|
814 |
if ( isset($mw_adminimize_submenu) && in_array($subitem[2], $mw_adminimize_submenu))
|
815 |
-
//if ('profile.php' === $subitem[2])
|
816 |
-
// unset($menu[70]);
|
817 |
unset($submenu[$item[2]][$subindex]);
|
818 |
}
|
819 |
}
|
@@ -844,14 +790,14 @@ function _mw_adminimize_set_global_option() {
|
|
844 |
if ( !isset($disabled_global_option_[$role]['0']) )
|
845 |
$disabled_global_option_[$role]['0'] = '';
|
846 |
}
|
847 |
-
|
848 |
-
// new 1.7.8
|
849 |
foreach ($user_roles as $role) {
|
850 |
-
$
|
851 |
-
|
852 |
-
|
853 |
-
$global_options = implode(', ', $disabled_global_option_[$role]);
|
854 |
}
|
|
|
|
|
855 |
}
|
856 |
}
|
857 |
$_mw_adminimize_admin_head .= '<!-- global options -->' . "\n";
|
@@ -879,14 +825,12 @@ function _mw_adminimize_set_metabox_post_option() {
|
|
879 |
if ( !isset($disabled_metaboxes_post_[$role]['0']) )
|
880 |
$disabled_metaboxes_post_[$role]['0'] = '';
|
881 |
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
if ( in_array($role, $user->roles) ) {
|
886 |
-
if ( current_user_can($role) && is_array($disabled_metaboxes_post_[$role]) ) {
|
887 |
-
$metaboxes = implode(',', $disabled_metaboxes_post_[$role]);
|
888 |
-
}
|
889 |
}
|
|
|
|
|
890 |
}
|
891 |
}
|
892 |
|
@@ -914,14 +858,12 @@ function _mw_adminimize_set_metabox_page_option() {
|
|
914 |
if ( !isset($disabled_metaboxes_page_[$role]['0']) )
|
915 |
$disabled_metaboxes_page_[$role]['0'] = '';
|
916 |
|
917 |
-
|
918 |
-
|
919 |
-
|
920 |
-
if ( in_array($role, $user->roles) ) {
|
921 |
-
if ( current_user_can($role) && is_array($disabled_metaboxes_page_[$role]) ) {
|
922 |
-
$metaboxes = implode(',', $disabled_metaboxes_page_[$role]);
|
923 |
-
}
|
924 |
}
|
|
|
|
|
925 |
}
|
926 |
}
|
927 |
|
@@ -952,15 +894,16 @@ function _mw_adminimize_set_link_option() {
|
|
952 |
$disabled_link_option_[$role]['0'] = '';
|
953 |
}
|
954 |
|
955 |
-
// new 1.7.8
|
956 |
foreach ($user_roles as $role) {
|
957 |
-
$
|
958 |
-
|
959 |
-
|
960 |
-
$link_options = implode(',', $disabled_link_option_[$role]);
|
961 |
}
|
|
|
|
|
962 |
}
|
963 |
}
|
|
|
964 |
$_mw_adminimize_admin_head .= '<style type="text/css">' . $link_options . ' {display: none !important;}</style>' . "\n";
|
965 |
|
966 |
if ($link_options)
|
@@ -997,7 +940,7 @@ function _mw_adminimize_admin_footer() {
|
|
997 |
$plugin_data['Title'] = '<a href="' . $plugin_data['PluginURI'] . '" title="'.__( 'Visit plugin homepage' ).'">' . $plugin_data['Name'] . '</a>';
|
998 |
|
999 |
if ( basename($_SERVER['REQUEST_URI']) == 'adminimize.php') {
|
1000 |
-
printf('%1$s ' . __('plugin') . ' | ' . __('Version') . ' <a href="http://
|
1001 |
}
|
1002 |
if ( _mw_adminimize_getOptionValue('_mw_adminimize_advice') == 1 && basename($_SERVER['REQUEST_URI']) != 'adminimize.php' ) {
|
1003 |
printf('%1$s ' . __('plugin activate', FB_ADMINIMIZE_TEXTDOMAIN ) . ' | ' . stripslashes( _mw_adminimize_getOptionValue('_mw_adminimize_advice_txt') ) . '<br />', $plugin_data['Title']);
|
@@ -1032,7 +975,7 @@ function _mw_adminimize_filter_plugin_meta($links, $file) {
|
|
1032 |
* Images/ Icons in base64-encoding
|
1033 |
* @use function _mw_adminimize_get_resource_url() for display
|
1034 |
*/
|
1035 |
-
if
|
1036 |
# base64 encoding performed by base64img.php from http://php.holtsmark.no
|
1037 |
$resources = array(
|
1038 |
'adminimize.gif' =>
|
@@ -1041,7 +984,7 @@ if ( isset($_GET['resource']) && !empty($_GET['resource']) ) {
|
|
1041 |
'OIzkAJqop64nWm7tULHu0+xLAgA7'.
|
1042 |
'');
|
1043 |
|
1044 |
-
if
|
1045 |
|
1046 |
$content = base64_decode($resources[ $_GET['resource'] ]);
|
1047 |
|
@@ -1092,7 +1035,7 @@ function _mw_adminimize_contextual_help() {
|
|
1092 |
function _mw_adminimize_add_settings_page() {
|
1093 |
global $wp_version;
|
1094 |
|
1095 |
-
if
|
1096 |
|
1097 |
$menutitle = '';
|
1098 |
if ( version_compare( $wp_version, '2.7alpha', '>' ) ) {
|
@@ -1147,8 +1090,7 @@ function _mw_adminimize_getOptionValue($key) {
|
|
1147 |
*/
|
1148 |
function _mw_adminimize_update() {
|
1149 |
global $menu, $submenu, $adminimizeoptions;
|
1150 |
-
|
1151 |
-
$user_roles = get_all_user_roles();
|
1152 |
|
1153 |
if (isset($_POST['_mw_adminimize_user_info'])) {
|
1154 |
$adminimizeoptions['_mw_adminimize_user_info'] = strip_tags(stripslashes($_POST['_mw_adminimize_user_info']));
|
@@ -1168,12 +1110,6 @@ function _mw_adminimize_update() {
|
|
1168 |
$adminimizeoptions['_mw_adminimize_footer'] = 0;
|
1169 |
}
|
1170 |
|
1171 |
-
if (isset($_POST['_mw_adminimize_header'])) {
|
1172 |
-
$adminimizeoptions['_mw_adminimize_header'] = strip_tags(stripslashes($_POST['_mw_adminimize_header']));
|
1173 |
-
} else {
|
1174 |
-
$adminimizeoptions['_mw_adminimize_header'] = 0;
|
1175 |
-
}
|
1176 |
-
|
1177 |
if (isset($_POST['_mw_adminimize_writescroll'])) {
|
1178 |
$adminimizeoptions['_mw_adminimize_writescroll'] = strip_tags(stripslashes($_POST['_mw_adminimize_writescroll']));
|
1179 |
} else {
|
@@ -1426,5 +1362,4 @@ function _mw_adminimize_import() {
|
|
1426 |
$myErrors = '<div id="message" class="updated fade"><p>' . $myErrors->get_error('_mw_adminimize_import') . '</p></div>';
|
1427 |
echo $myErrors;
|
1428 |
}
|
1429 |
-
|
1430 |
?>
|
2 |
/**
|
3 |
* @package Adminimize
|
4 |
* @author Frank Bültge
|
5 |
+
* @version 1.7.7
|
6 |
*/
|
7 |
|
8 |
/*
|
9 |
Plugin Name: Adminimize
|
10 |
Plugin URI: http://bueltge.de/wordpress-admin-theme-adminimize/674/
|
|
|
|
|
11 |
Description: Visually compresses the administratrive meta-boxes so that more admin page content can be initially seen. The plugin that lets you hide 'unnecessary' items from the WordPress administration menu, for alle roles of your install. You can also hide post meta controls on the edit-area to simplify the interface. It is possible to simplify the admin in different for all roles.
|
12 |
Author: Frank Bültge
|
13 |
Author URI: http://bueltge.de/
|
14 |
+
Version: 1.7.7
|
15 |
License: GNU
|
16 |
+
Last Update: 18.03.2010 09:59:41
|
17 |
*/
|
18 |
|
19 |
/**
|
117 |
global $wp_roles;
|
118 |
|
119 |
$user_roles = array();
|
120 |
+
|
121 |
+
foreach ($wp_roles->roles as $role => $data) {
|
122 |
+
array_push($user_roles, $role);
|
123 |
+
//$data contains caps, maybe for later use..
|
|
|
|
|
124 |
}
|
125 |
|
126 |
return $user_roles;
|
167 |
function _mw_adminimize_init() {
|
168 |
global $pagenow, $menu, $submenu, $adminimizeoptions, $wp_version;
|
169 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
170 |
$user_roles = get_all_user_roles();
|
171 |
|
172 |
$adminimizeoptions = get_option('mw_adminimize');
|
196 |
break;
|
197 |
}
|
198 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
199 |
//post-page options
|
200 |
$post_page_pages = array('post-new.php', 'post.php', 'page-new.php', 'page.php');
|
201 |
if ( in_array( $pagenow, $post_page_pages ) ) {
|
202 |
+
|
203 |
$_mw_adminimize_writescroll = _mw_adminimize_getOptionValue('_mw_adminimize_writescroll');
|
204 |
switch ($_mw_adminimize_writescroll) {
|
205 |
case 1:
|
260 |
) {
|
261 |
|
262 |
// only posts
|
263 |
+
if ( ('post-new.php' == $pagenow) || ('post.php' == $pagenow) ) {
|
|
|
|
|
|
|
|
|
264 |
if ( version_compare( substr($wp_version, 0, 3), '2.7', '<' ) )
|
265 |
add_action('admin_head', '_mw_adminimize_remove_box', 99);
|
266 |
|
278 |
}
|
279 |
|
280 |
// only pages
|
281 |
+
if ( ('page-new.php' == $pagenow) || ('page.php' == $pagenow) ) {
|
|
|
|
|
|
|
|
|
|
|
282 |
|
283 |
// check for array empty
|
284 |
if ( !isset($disabled_metaboxes_page_['editor']['0']) )
|
296 |
add_action('admin_head', '_mw_adminimize_set_global_option', 1);
|
297 |
|
298 |
// set metabox post option
|
299 |
+
$post_pages = array('post-new.php', 'post.php');
|
300 |
+
if ( in_array( $pagenow, $post_pages ) )
|
301 |
+
add_action('admin_head', '_mw_adminimize_set_metabox_post_option', 1);
|
|
|
|
|
302 |
|
303 |
// set metabox page option
|
304 |
+
$page_pages = array('page-new.php', 'page.php');
|
305 |
+
if ( in_array( $pagenow, $page_pages ) )
|
306 |
add_action('admin_head', '_mw_adminimize_set_metabox_page_option', 1);
|
307 |
|
308 |
// set link option
|
602 |
}
|
603 |
|
604 |
// remove dashboard
|
605 |
+
if ( $disabled_menu_all != '' || $disabled_submenu_all != '' ) {
|
606 |
|
607 |
+
$i = 0;
|
608 |
foreach ($user_roles as $role) {
|
609 |
+
|
610 |
+
if ( current_user_can($role) && $i == 0 ) {
|
611 |
+
if (
|
612 |
+
recursive_in_array('index.php', $disabled_menu_[$role]) ||
|
613 |
+
recursive_in_array('index.php', $disabled_submenu_[$role])
|
614 |
+
)
|
615 |
+
$redirect = 'true';
|
616 |
+
} elseif ( current_user_can($role) ) {
|
617 |
+
if (
|
618 |
+
recursive_in_array('index.php', $disabled_menu_[$role]) ||
|
619 |
+
recursive_in_array('index.php', $disabled_submenu_[$role])
|
620 |
+
)
|
621 |
+
$redirect = 'true';
|
622 |
}
|
623 |
+
$i++;
|
624 |
}
|
625 |
+
|
626 |
+
if ( isset($redirect) && $redirect == 'true' ) {
|
627 |
$_mw_adminimize_db_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_db_redirect');
|
628 |
switch ($_mw_adminimize_db_redirect) {
|
629 |
case 0:
|
645 |
$_mw_adminimize_db_redirect = 'edit-comments.php';
|
646 |
break;
|
647 |
case 6:
|
648 |
+
$_mw_adminimize_db_redirect = htmlspecialchars( stripslashes( _mw_adminimize_getOptionValue('_mw_adminimize_db_redirect_txt') ) );
|
649 |
break;
|
650 |
}
|
651 |
|
690 |
$disabled_menu_[$role] = _mw_adminimize_getOptionValue('mw_adminimize_disabled_menu_'. $role .'_items');
|
691 |
$disabled_submenu_[$role] = _mw_adminimize_getOptionValue('mw_adminimize_disabled_submenu_'. $role .'_items');
|
692 |
}
|
693 |
+
|
694 |
$_mw_adminimize_admin_head = "\n";
|
695 |
$_mw_adminimize_user_info = _mw_adminimize_getOptionValue('_mw_adminimize_user_info');
|
696 |
$_mw_adminimize_ui_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_ui_redirect');
|
697 |
+
|
698 |
switch ($_mw_adminimize_user_info) {
|
699 |
case 1:
|
700 |
$_mw_adminimize_admin_head .= '<script type="text/javascript">' . "\n";
|
702 |
$_mw_adminimize_admin_head .= '</script>' . "\n";
|
703 |
break;
|
704 |
case 2:
|
705 |
+
if ( version_compare(substr($wp_version, 0, 3), '2.7', '>=') ) {
|
|
|
|
|
706 |
$_mw_adminimize_admin_head .= '<link rel="stylesheet" href="' . WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/mw_small_user_info27.css" type="text/css" />' . "\n";
|
707 |
} else {
|
708 |
$_mw_adminimize_admin_head .= '<link rel="stylesheet" href="' . WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/mw_small_user_info.css" type="text/css" />' . "\n";
|
717 |
$_mw_adminimize_admin_head .= '</script>' . "\n";
|
718 |
break;
|
719 |
case 3:
|
720 |
+
if ( version_compare(substr($wp_version, 0, 3), '2.7', '>=') ) {
|
|
|
|
|
721 |
$_mw_adminimize_admin_head .= '<link rel="stylesheet" href="' . WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/mw_small_user_info27.css" type="text/css" />' . "\n";
|
722 |
} else {
|
723 |
$_mw_adminimize_admin_head .= '<link rel="stylesheet" href="' . WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/css/mw_small_user_info.css" type="text/css" />' . "\n";
|
738 |
|
739 |
// set admin-menu
|
740 |
foreach ($user_roles as $role) {
|
741 |
+
|
742 |
+
if($role == $role[0]){
|
743 |
if ( current_user_can($role) ) {
|
744 |
$mw_adminimize_menu = $disabled_menu_[$role];
|
745 |
$mw_adminimize_submenu = $disabled_submenu_[$role];
|
746 |
}
|
747 |
+
} elseif ( current_user_can($role) ) {
|
748 |
+
$mw_adminimize_menu = $disabled_menu_[$role];
|
749 |
+
$mw_adminimize_submenu = $disabled_submenu_[$role];
|
750 |
}
|
751 |
}
|
752 |
|
|
|
|
|
|
|
|
|
753 |
foreach ($menu as $index => $item) {
|
754 |
+
if ($item == 'index.php')
|
755 |
continue;
|
756 |
+
|
757 |
+
if ( isset($mw_adminimize_menu) && in_array($item[2], $mw_adminimize_menu) )
|
758 |
unset($menu[$index]);
|
759 |
+
|
|
|
760 |
if ( isset($submenu) && !empty($submenu[$item[2]]) ) {
|
761 |
foreach ($submenu[$item[2]] as $subindex => $subitem) {
|
762 |
if ( isset($mw_adminimize_submenu) && in_array($subitem[2], $mw_adminimize_submenu))
|
|
|
|
|
763 |
unset($submenu[$item[2]][$subindex]);
|
764 |
}
|
765 |
}
|
790 |
if ( !isset($disabled_global_option_[$role]['0']) )
|
791 |
$disabled_global_option_[$role]['0'] = '';
|
792 |
}
|
793 |
+
|
|
|
794 |
foreach ($user_roles as $role) {
|
795 |
+
if ($role == $role[0]) {
|
796 |
+
if ( current_user_can($role) ) {
|
797 |
+
$global_options = implode(', ', $disabled_global_option_[$role]);
|
|
|
798 |
}
|
799 |
+
} elseif ( current_user_can($role) ) {
|
800 |
+
$global_options = implode(', ', $disabled_global_option_[$role]);
|
801 |
}
|
802 |
}
|
803 |
$_mw_adminimize_admin_head .= '<!-- global options -->' . "\n";
|
825 |
if ( !isset($disabled_metaboxes_post_[$role]['0']) )
|
826 |
$disabled_metaboxes_post_[$role]['0'] = '';
|
827 |
|
828 |
+
if ($role == $role[0]) {
|
829 |
+
if ( current_user_can($role) ) {
|
830 |
+
$metaboxes = implode(',', $disabled_metaboxes_post_[$role]);
|
|
|
|
|
|
|
|
|
831 |
}
|
832 |
+
} elseif ( current_user_can($role) ) {
|
833 |
+
$metaboxes = implode(',', $disabled_metaboxes_post_[$role]);
|
834 |
}
|
835 |
}
|
836 |
|
858 |
if ( !isset($disabled_metaboxes_page_[$role]['0']) )
|
859 |
$disabled_metaboxes_page_[$role]['0'] = '';
|
860 |
|
861 |
+
if($role == $role[0]){
|
862 |
+
if ( current_user_can($role) ) {
|
863 |
+
$metaboxes = implode(',', $disabled_metaboxes_page_[$role]);
|
|
|
|
|
|
|
|
|
864 |
}
|
865 |
+
} elseif ( current_user_can($role) ) {
|
866 |
+
$metaboxes = implode(',', $disabled_metaboxes_page_[$role]);
|
867 |
}
|
868 |
}
|
869 |
|
894 |
$disabled_link_option_[$role]['0'] = '';
|
895 |
}
|
896 |
|
|
|
897 |
foreach ($user_roles as $role) {
|
898 |
+
if ($role == $role[0]) {
|
899 |
+
if ( current_user_can($role) ) {
|
900 |
+
$link_options = implode(', ', $disabled_link_option_[$role]);
|
|
|
901 |
}
|
902 |
+
} elseif ( current_user_can($role) ) {
|
903 |
+
$link_options = implode(', ', $disabled_link_option_[$role]);
|
904 |
}
|
905 |
}
|
906 |
+
|
907 |
$_mw_adminimize_admin_head .= '<style type="text/css">' . $link_options . ' {display: none !important;}</style>' . "\n";
|
908 |
|
909 |
if ($link_options)
|
940 |
$plugin_data['Title'] = '<a href="' . $plugin_data['PluginURI'] . '" title="'.__( 'Visit plugin homepage' ).'">' . $plugin_data['Name'] . '</a>';
|
941 |
|
942 |
if ( basename($_SERVER['REQUEST_URI']) == 'adminimize.php') {
|
943 |
+
printf('%1$s ' . __('plugin') . ' | ' . __('Version') . ' <a href="http://bueltge.de/wordpress-admin-theme-adminimize/674/#historie" title="' . __('History', FB_ADMINIMIZE_TEXTDOMAIN ) . '">%2$s</a> | ' . __('Author') . ' %3$s<br />', $plugin_data['Title'], $plugin_data['Version'], $plugin_data['Author']);
|
944 |
}
|
945 |
if ( _mw_adminimize_getOptionValue('_mw_adminimize_advice') == 1 && basename($_SERVER['REQUEST_URI']) != 'adminimize.php' ) {
|
946 |
printf('%1$s ' . __('plugin activate', FB_ADMINIMIZE_TEXTDOMAIN ) . ' | ' . stripslashes( _mw_adminimize_getOptionValue('_mw_adminimize_advice_txt') ) . '<br />', $plugin_data['Title']);
|
975 |
* Images/ Icons in base64-encoding
|
976 |
* @use function _mw_adminimize_get_resource_url() for display
|
977 |
*/
|
978 |
+
if( isset($_GET['resource']) && !empty($_GET['resource'])) {
|
979 |
# base64 encoding performed by base64img.php from http://php.holtsmark.no
|
980 |
$resources = array(
|
981 |
'adminimize.gif' =>
|
984 |
'OIzkAJqop64nWm7tULHu0+xLAgA7'.
|
985 |
'');
|
986 |
|
987 |
+
if(array_key_exists($_GET['resource'], $resources)) {
|
988 |
|
989 |
$content = base64_decode($resources[ $_GET['resource'] ]);
|
990 |
|
1035 |
function _mw_adminimize_add_settings_page() {
|
1036 |
global $wp_version;
|
1037 |
|
1038 |
+
if( current_user_can('switch_themes') && function_exists('add_submenu_page') ) {
|
1039 |
|
1040 |
$menutitle = '';
|
1041 |
if ( version_compare( $wp_version, '2.7alpha', '>' ) ) {
|
1090 |
*/
|
1091 |
function _mw_adminimize_update() {
|
1092 |
global $menu, $submenu, $adminimizeoptions;
|
1093 |
+
$user_roles = get_all_user_roles();
|
|
|
1094 |
|
1095 |
if (isset($_POST['_mw_adminimize_user_info'])) {
|
1096 |
$adminimizeoptions['_mw_adminimize_user_info'] = strip_tags(stripslashes($_POST['_mw_adminimize_user_info']));
|
1110 |
$adminimizeoptions['_mw_adminimize_footer'] = 0;
|
1111 |
}
|
1112 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1113 |
if (isset($_POST['_mw_adminimize_writescroll'])) {
|
1114 |
$adminimizeoptions['_mw_adminimize_writescroll'] = strip_tags(stripslashes($_POST['_mw_adminimize_writescroll']));
|
1115 |
} else {
|
1362 |
$myErrors = '<div id="message" class="updated fade"><p>' . $myErrors->get_error('_mw_adminimize_import') . '</p></div>';
|
1363 |
echo $myErrors;
|
1364 |
}
|
|
|
1365 |
?>
|
adminimize_page.php
CHANGED
@@ -10,7 +10,7 @@ if ( isset( $_GET['_mw_adminimize_export'] ) ) {
|
|
10 |
}
|
11 |
|
12 |
function _mw_adminimize_options() {
|
13 |
-
global $wpdb, $_wp_admin_css_colors, $wp_version, $wp_roles
|
14 |
|
15 |
$_mw_adminimize_user_info = '';
|
16 |
|
@@ -19,7 +19,7 @@ function _mw_adminimize_options() {
|
|
19 |
$user_roles_names = get_all_user_roles_names();
|
20 |
|
21 |
// update options
|
22 |
-
if ( (
|
23 |
|
24 |
if ( function_exists('current_user_can') && current_user_can('manage_options') ) {
|
25 |
check_admin_referer('mw_adminimize_nonce');
|
@@ -34,7 +34,7 @@ function _mw_adminimize_options() {
|
|
34 |
}
|
35 |
|
36 |
// import options
|
37 |
-
if ( (
|
38 |
|
39 |
if ( function_exists('current_user_can') && current_user_can('manage_options') ) {
|
40 |
check_admin_referer('mw_adminimize_nonce');
|
@@ -49,14 +49,14 @@ function _mw_adminimize_options() {
|
|
49 |
}
|
50 |
|
51 |
// deinstall options
|
52 |
-
if ( (
|
53 |
|
54 |
$myErrors = new _mw_adminimize_message_class();
|
55 |
$myErrors = '<div id="message" class="error"><p>' . $myErrors->get_error('_mw_adminimize_deinstall_yes') . '</p></div>';
|
56 |
wp_die($myErrors);
|
57 |
}
|
58 |
|
59 |
-
if ( (
|
60 |
|
61 |
if ( function_exists('current_user_can') && current_user_can('manage_options') ) {
|
62 |
check_admin_referer('mw_adminimize_nonce');
|
@@ -74,7 +74,7 @@ function _mw_adminimize_options() {
|
|
74 |
}
|
75 |
|
76 |
// load theme user data
|
77 |
-
if ( (
|
78 |
if ( function_exists('current_user_can') && current_user_can('edit_users') ) {
|
79 |
check_admin_referer('mw_adminimize_nonce');
|
80 |
|
@@ -88,7 +88,7 @@ function _mw_adminimize_options() {
|
|
88 |
}
|
89 |
}
|
90 |
|
91 |
-
if ( (
|
92 |
if ( function_exists('current_user_can') && current_user_can('edit_users') ) {
|
93 |
check_admin_referer('mw_adminimize_nonce');
|
94 |
|
@@ -209,7 +209,7 @@ function _mw_adminimize_options() {
|
|
209 |
<td><?php _e('Change User-Info, redirect to', FB_ADMINIMIZE_TEXTDOMAIN ); ?></td>
|
210 |
<td>
|
211 |
<?php $_mw_adminimize_ui_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_ui_redirect'); ?>
|
212 |
-
<select name="_mw_adminimize_ui_redirect" <?php
|
213 |
<option value="0"<?php if ($_mw_adminimize_ui_redirect == '0') { echo ' selected="selected"'; } ?>><?php _e('Default', FB_ADMINIMIZE_TEXTDOMAIN ); ?></option>
|
214 |
<option value="1"<?php if ($_mw_adminimize_ui_redirect == '1') { echo ' selected="selected"'; } ?>><?php _e('Frontpage of the Blog', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
|
215 |
</select> <?php _e('When the "User-Info-area" change it, then it is possible to change the redirect.', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
|
@@ -225,16 +225,6 @@ function _mw_adminimize_options() {
|
|
225 |
</select> <?php _e('The Footer-area can hide, include all links and details.', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
|
226 |
</td>
|
227 |
</tr>
|
228 |
-
<tr valign="top">
|
229 |
-
<td><?php _e('Header', FB_ADMINIMIZE_TEXTDOMAIN ); ?></td>
|
230 |
-
<td>
|
231 |
-
<?php $_mw_adminimize_header = _mw_adminimize_getOptionValue('_mw_adminimize_header'); ?>
|
232 |
-
<select name="_mw_adminimize_header">
|
233 |
-
<option value="0"<?php if ($_mw_adminimize_header == '0') { echo ' selected="selected"'; } ?>><?php _e('Default', FB_ADMINIMIZE_TEXTDOMAIN ); ?></option>
|
234 |
-
<option value="1"<?php if ($_mw_adminimize_header == '1') { echo ' selected="selected"'; } ?>><?php _e('Hide', FB_ADMINIMIZE_TEXTDOMAIN ); ?></option>
|
235 |
-
</select> <?php _e('The Header-area can hide, include all links and details.', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
|
236 |
-
</td>
|
237 |
-
</tr>
|
238 |
<tr valign="top">
|
239 |
<td><?php _e('WriteScroll', FB_ADMINIMIZE_TEXTDOMAIN ); ?></td>
|
240 |
<td>
|
@@ -318,7 +308,7 @@ function _mw_adminimize_options() {
|
|
318 |
<td><?php _e('Dashboard deactivate, redirect to', FB_ADMINIMIZE_TEXTDOMAIN ); ?></td>
|
319 |
<td>
|
320 |
<?php $_mw_adminimize_db_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_db_redirect'); ?>
|
321 |
-
<select name="_mw_adminimize_db_redirect"<?php
|
322 |
<option value="0"<?php if ($_mw_adminimize_db_redirect == '0') { echo ' selected="selected"'; } ?>><?php _e('Default', FB_ADMINIMIZE_TEXTDOMAIN ); ?> (profile.php)</option>
|
323 |
<option value="1"<?php if ($_mw_adminimize_db_redirect == '1') { echo ' selected="selected"'; } ?>><?php _e('Manage Posts', FB_ADMINIMIZE_TEXTDOMAIN ); ?> (edit.php)</option>
|
324 |
<option value="2"<?php if ($_mw_adminimize_db_redirect == '2') { echo ' selected="selected"'; } ?>><?php _e('Manage Pages', FB_ADMINIMIZE_TEXTDOMAIN ); ?> (edit-pages.php)</option>
|
@@ -491,7 +481,6 @@ function _mw_adminimize_options() {
|
|
491 |
$metaboxes = array(
|
492 |
'#contextual-help-link-wrap',
|
493 |
'#screen-options-link-wrap',
|
494 |
-
'#titlediv',
|
495 |
'#pageslugdiv',
|
496 |
'#tagsdiv,#tagsdivsb,#tagsdiv-post_tag',
|
497 |
'#categorydiv,#categorydivsb',
|
@@ -534,7 +523,6 @@ function _mw_adminimize_options() {
|
|
534 |
$metaboxes_names = array(
|
535 |
__('Help'),
|
536 |
__('Screen Options'),
|
537 |
-
__('Title', FB_ADMINIMIZE_TEXTDOMAIN),
|
538 |
__('Permalink', FB_ADMINIMIZE_TEXTDOMAIN ),
|
539 |
__('Tags', FB_ADMINIMIZE_TEXTDOMAIN ),
|
540 |
__('Categories', FB_ADMINIMIZE_TEXTDOMAIN ),
|
@@ -593,15 +581,14 @@ function _mw_adminimize_options() {
|
|
593 |
$metaboxes_page = array(
|
594 |
'#contextual-help-link-wrap',
|
595 |
'#screen-options-link-wrap',
|
596 |
-
'#titlediv',
|
597 |
'#pageslugdiv',
|
598 |
'#pagepostcustom, #pagecustomdiv, #postcustom',
|
599 |
-
'#pagecommentstatusdiv
|
600 |
'#pagepassworddiv',
|
601 |
'#pageparentdiv',
|
602 |
'#pagetemplatediv',
|
603 |
'#pageorderdiv',
|
604 |
-
'#pageauthordiv
|
605 |
'#revisionsdiv',
|
606 |
'.side-info',
|
607 |
'#notice',
|
@@ -630,7 +617,6 @@ function _mw_adminimize_options() {
|
|
630 |
$metaboxes_names_page = array(
|
631 |
__('Help'),
|
632 |
__('Screen Options'),
|
633 |
-
__('Title', FB_ADMINIMIZE_TEXTDOMAIN),
|
634 |
__('Permalink', FB_ADMINIMIZE_TEXTDOMAIN ),
|
635 |
__('Custom Fields'),
|
636 |
__('Comments & Pings', FB_ADMINIMIZE_TEXTDOMAIN ),
|
@@ -722,7 +708,7 @@ function _mw_adminimize_options() {
|
|
722 |
echo '</tr>';
|
723 |
|
724 |
// only for user smaller administrator, change user-Profile-File
|
725 |
-
if ( 'users.php'
|
726 |
$x++;
|
727 |
echo '<tr class="form-invalid">' . "\n";
|
728 |
echo "\t" . '<th>' . __('Profile') . ' <span style="color:#ccc; font-weight: 400;">(profile.php)</span> </th>';
|
@@ -1081,7 +1067,7 @@ function _mw_adminimize_options() {
|
|
1081 |
<div class="inside">
|
1082 |
<br class="clear" />
|
1083 |
|
1084 |
-
<?php if (
|
1085 |
<form name="set_theme" method="post" id="_mw_adminimize_set_theme" action="?page=<?php echo $_GET['page'];?>" >
|
1086 |
<?php wp_nonce_field('mw_adminimize_nonce'); ?>
|
1087 |
<p><?php _e('For better peformance with many users on your blog; load only userlist, when you will change the theme options for users.', FB_ADMINIMIZE_TEXTDOMAIN ); ?></p>
|
@@ -1091,7 +1077,7 @@ function _mw_adminimize_options() {
|
|
1091 |
</p>
|
1092 |
</form>
|
1093 |
<?php }
|
1094 |
-
if (
|
1095 |
<form name="set_theme" method="post" id="_mw_adminimize_set_theme" action="?page=<?php echo $_GET['page'];?>" >
|
1096 |
<?php wp_nonce_field('mw_adminimize_nonce'); ?>
|
1097 |
<table class="widefat">
|
10 |
}
|
11 |
|
12 |
function _mw_adminimize_options() {
|
13 |
+
global $wpdb, $_wp_admin_css_colors, $wp_version, $wp_roles;
|
14 |
|
15 |
$_mw_adminimize_user_info = '';
|
16 |
|
19 |
$user_roles_names = get_all_user_roles_names();
|
20 |
|
21 |
// update options
|
22 |
+
if ( ($_POST['_mw_adminimize_action'] == '_mw_adminimize_insert') && $_POST['_mw_adminimize_save'] ) {
|
23 |
|
24 |
if ( function_exists('current_user_can') && current_user_can('manage_options') ) {
|
25 |
check_admin_referer('mw_adminimize_nonce');
|
34 |
}
|
35 |
|
36 |
// import options
|
37 |
+
if ( ($_POST['_mw_adminimize_action'] == '_mw_adminimize_import') && $_POST['_mw_adminimize_save'] ) {
|
38 |
|
39 |
if ( function_exists('current_user_can') && current_user_can('manage_options') ) {
|
40 |
check_admin_referer('mw_adminimize_nonce');
|
49 |
}
|
50 |
|
51 |
// deinstall options
|
52 |
+
if ( ($_POST['_mw_adminimize_action'] == '_mw_adminimize_deinstall') && ($_POST['_mw_adminimize_deinstall_yes'] != '_mw_adminimize_deinstall') ) {
|
53 |
|
54 |
$myErrors = new _mw_adminimize_message_class();
|
55 |
$myErrors = '<div id="message" class="error"><p>' . $myErrors->get_error('_mw_adminimize_deinstall_yes') . '</p></div>';
|
56 |
wp_die($myErrors);
|
57 |
}
|
58 |
|
59 |
+
if ( ($_POST['_mw_adminimize_action'] == '_mw_adminimize_deinstall') && $_POST['_mw_adminimize_deinstall'] && ($_POST['_mw_adminimize_deinstall_yes'] == '_mw_adminimize_deinstall') ) {
|
60 |
|
61 |
if ( function_exists('current_user_can') && current_user_can('manage_options') ) {
|
62 |
check_admin_referer('mw_adminimize_nonce');
|
74 |
}
|
75 |
|
76 |
// load theme user data
|
77 |
+
if ( ($_POST['_mw_adminimize_action'] == '_mw_adminimize_load_theme') && $_POST['_mw_adminimize_load'] ) {
|
78 |
if ( function_exists('current_user_can') && current_user_can('edit_users') ) {
|
79 |
check_admin_referer('mw_adminimize_nonce');
|
80 |
|
88 |
}
|
89 |
}
|
90 |
|
91 |
+
if ( ($_POST['_mw_adminimize_action'] == '_mw_adminimize_set_theme') && $_POST['_mw_adminimize_save'] ) {
|
92 |
if ( function_exists('current_user_can') && current_user_can('edit_users') ) {
|
93 |
check_admin_referer('mw_adminimize_nonce');
|
94 |
|
209 |
<td><?php _e('Change User-Info, redirect to', FB_ADMINIMIZE_TEXTDOMAIN ); ?></td>
|
210 |
<td>
|
211 |
<?php $_mw_adminimize_ui_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_ui_redirect'); ?>
|
212 |
+
<select name="_mw_adminimize_ui_redirect" <?php echo $disabled_item ?>>
|
213 |
<option value="0"<?php if ($_mw_adminimize_ui_redirect == '0') { echo ' selected="selected"'; } ?>><?php _e('Default', FB_ADMINIMIZE_TEXTDOMAIN ); ?></option>
|
214 |
<option value="1"<?php if ($_mw_adminimize_ui_redirect == '1') { echo ' selected="selected"'; } ?>><?php _e('Frontpage of the Blog', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
|
215 |
</select> <?php _e('When the "User-Info-area" change it, then it is possible to change the redirect.', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
|
225 |
</select> <?php _e('The Footer-area can hide, include all links and details.', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
|
226 |
</td>
|
227 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
228 |
<tr valign="top">
|
229 |
<td><?php _e('WriteScroll', FB_ADMINIMIZE_TEXTDOMAIN ); ?></td>
|
230 |
<td>
|
308 |
<td><?php _e('Dashboard deactivate, redirect to', FB_ADMINIMIZE_TEXTDOMAIN ); ?></td>
|
309 |
<td>
|
310 |
<?php $_mw_adminimize_db_redirect = _mw_adminimize_getOptionValue('_mw_adminimize_db_redirect'); ?>
|
311 |
+
<select name="_mw_adminimize_db_redirect"<?php echo $disabled_item2; ?>>
|
312 |
<option value="0"<?php if ($_mw_adminimize_db_redirect == '0') { echo ' selected="selected"'; } ?>><?php _e('Default', FB_ADMINIMIZE_TEXTDOMAIN ); ?> (profile.php)</option>
|
313 |
<option value="1"<?php if ($_mw_adminimize_db_redirect == '1') { echo ' selected="selected"'; } ?>><?php _e('Manage Posts', FB_ADMINIMIZE_TEXTDOMAIN ); ?> (edit.php)</option>
|
314 |
<option value="2"<?php if ($_mw_adminimize_db_redirect == '2') { echo ' selected="selected"'; } ?>><?php _e('Manage Pages', FB_ADMINIMIZE_TEXTDOMAIN ); ?> (edit-pages.php)</option>
|
481 |
$metaboxes = array(
|
482 |
'#contextual-help-link-wrap',
|
483 |
'#screen-options-link-wrap',
|
|
|
484 |
'#pageslugdiv',
|
485 |
'#tagsdiv,#tagsdivsb,#tagsdiv-post_tag',
|
486 |
'#categorydiv,#categorydivsb',
|
523 |
$metaboxes_names = array(
|
524 |
__('Help'),
|
525 |
__('Screen Options'),
|
|
|
526 |
__('Permalink', FB_ADMINIMIZE_TEXTDOMAIN ),
|
527 |
__('Tags', FB_ADMINIMIZE_TEXTDOMAIN ),
|
528 |
__('Categories', FB_ADMINIMIZE_TEXTDOMAIN ),
|
581 |
$metaboxes_page = array(
|
582 |
'#contextual-help-link-wrap',
|
583 |
'#screen-options-link-wrap',
|
|
|
584 |
'#pageslugdiv',
|
585 |
'#pagepostcustom, #pagecustomdiv, #postcustom',
|
586 |
+
'#pagecommentstatusdiv',
|
587 |
'#pagepassworddiv',
|
588 |
'#pageparentdiv',
|
589 |
'#pagetemplatediv',
|
590 |
'#pageorderdiv',
|
591 |
+
'#pageauthordiv',
|
592 |
'#revisionsdiv',
|
593 |
'.side-info',
|
594 |
'#notice',
|
617 |
$metaboxes_names_page = array(
|
618 |
__('Help'),
|
619 |
__('Screen Options'),
|
|
|
620 |
__('Permalink', FB_ADMINIMIZE_TEXTDOMAIN ),
|
621 |
__('Custom Fields'),
|
622 |
__('Comments & Pings', FB_ADMINIMIZE_TEXTDOMAIN ),
|
708 |
echo '</tr>';
|
709 |
|
710 |
// only for user smaller administrator, change user-Profile-File
|
711 |
+
if ( $item[2] === 'users.php' ) {
|
712 |
$x++;
|
713 |
echo '<tr class="form-invalid">' . "\n";
|
714 |
echo "\t" . '<th>' . __('Profile') . ' <span style="color:#ccc; font-weight: 400;">(profile.php)</span> </th>';
|
1067 |
<div class="inside">
|
1068 |
<br class="clear" />
|
1069 |
|
1070 |
+
<?php if ( !($_POST['_mw_adminimize_action'] == '_mw_adminimize_load_theme') ) { ?>
|
1071 |
<form name="set_theme" method="post" id="_mw_adminimize_set_theme" action="?page=<?php echo $_GET['page'];?>" >
|
1072 |
<?php wp_nonce_field('mw_adminimize_nonce'); ?>
|
1073 |
<p><?php _e('For better peformance with many users on your blog; load only userlist, when you will change the theme options for users.', FB_ADMINIMIZE_TEXTDOMAIN ); ?></p>
|
1077 |
</p>
|
1078 |
</form>
|
1079 |
<?php }
|
1080 |
+
if ( ($_POST['_mw_adminimize_action'] == '_mw_adminimize_load_theme') ) { ?>
|
1081 |
<form name="set_theme" method="post" id="_mw_adminimize_set_theme" action="?page=<?php echo $_GET['page'];?>" >
|
1082 |
<?php wp_nonce_field('mw_adminimize_nonce'); ?>
|
1083 |
<table class="widefat">
|
css/mw_small_user_info30.css
DELETED
@@ -1,24 +0,0 @@
|
|
1 |
-
#small_user_info {
|
2 |
-
float: right;
|
3 |
-
font-size: 12px;
|
4 |
-
line-height: 46px;
|
5 |
-
height: 46px;
|
6 |
-
position:absolute;
|
7 |
-
right:15px;
|
8 |
-
top:0;
|
9 |
-
}
|
10 |
-
|
11 |
-
#small_user_info a, #small_user_info a:visited {
|
12 |
-
color: #000;
|
13 |
-
text-decoration: none;
|
14 |
-
}
|
15 |
-
|
16 |
-
#small_user_info p {
|
17 |
-
margin: 0;
|
18 |
-
padding: 0;
|
19 |
-
line-height: 46px;
|
20 |
-
}
|
21 |
-
|
22 |
-
#favorite-actions {
|
23 |
-
margin-right: 250px;
|
24 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
js/remove_header.js
DELETED
@@ -1,6 +0,0 @@
|
|
1 |
-
/**
|
2 |
-
* remove footer
|
3 |
-
*/
|
4 |
-
jQuery(document).ready(function() {
|
5 |
-
jQuery('#wphead').remove();
|
6 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
languages/adminimize-da_DK.mo
CHANGED
Binary file
|
languages/adminimize-da_DK.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Adminimize 1.7.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2010-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Team Blogos <wordpress@blogos.dk>\n"
|
8 |
"Language-Team: Team Blogos <wordpress@blogos.dk>\n"
|
@@ -53,171 +53,171 @@ msgstr "Kontrolpaneltema er aktiveret!"
|
|
53 |
msgid "Load user data to themes was successful."
|
54 |
msgstr "Indlæsning af brugerdata vedrørende temaerne lykkedes."
|
55 |
|
56 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
57 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
58 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
59 |
msgid "Categories"
|
60 |
msgstr "Kategorier"
|
61 |
|
62 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
63 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
64 |
msgid "+ Add New Category"
|
65 |
msgstr "+ Tilføj ny kategori"
|
66 |
|
67 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
68 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
69 |
msgid "New category name"
|
70 |
msgstr "Nyt kategorinavn"
|
71 |
|
72 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
73 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
74 |
msgid "Parent category"
|
75 |
msgstr "Forælder-kategori"
|
76 |
|
77 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
78 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
79 |
msgid "Add"
|
80 |
msgstr "Tilføj"
|
81 |
|
82 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
83 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
84 |
msgid "Add New Category"
|
85 |
msgstr "Tilføj ny kategori"
|
86 |
|
87 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
88 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
89 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
90 |
msgid "Tags"
|
91 |
msgstr "Tags"
|
92 |
|
93 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
94 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
95 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
96 |
msgid "Blue"
|
97 |
msgstr "Blå"
|
98 |
|
99 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
100 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
101 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
102 |
msgid "Gray"
|
103 |
msgstr "Grå"
|
104 |
|
105 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
106 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
107 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
108 |
msgid "Classic"
|
109 |
msgstr "Klassisk"
|
110 |
|
111 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
112 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
113 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
114 |
msgid "Fresh"
|
115 |
msgstr "Frisk"
|
116 |
|
117 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
118 |
msgid "WordPress 2.3"
|
119 |
msgstr "WordPress 2.3"
|
120 |
|
121 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
122 |
msgid "Maybe i'm colorblind"
|
123 |
msgstr "Måske er jeg farveblind"
|
124 |
|
125 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
126 |
msgid "Grey"
|
127 |
msgstr "Grå"
|
128 |
|
129 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
130 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
131 |
msgid "Dashboard"
|
132 |
msgstr "Kontrolpanel"
|
133 |
|
134 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
135 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
136 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
137 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
138 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
139 |
msgid "Log Out"
|
140 |
msgstr "Log ud"
|
141 |
|
142 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
143 |
msgid "Visit plugin homepage"
|
144 |
msgstr "Besøg plugin-hjemmesiden"
|
145 |
|
146 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
147 |
msgid "plugin"
|
148 |
msgstr "plugin"
|
149 |
|
150 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
151 |
msgid "Version"
|
152 |
msgstr "Version"
|
153 |
|
154 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
155 |
msgid "History"
|
156 |
msgstr "Historik"
|
157 |
|
158 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
159 |
msgid "Author"
|
160 |
msgstr "Forfatter"
|
161 |
|
162 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
163 |
msgid "plugin activate"
|
164 |
msgstr "aktivér plugin"
|
165 |
|
166 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
167 |
msgid "Settings"
|
168 |
msgstr "Indstillinger"
|
169 |
|
170 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
171 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
172 |
msgid "<a href=\"http://wordpress.org/extend/plugins/adminimize/\">Documentation</a>"
|
173 |
msgstr "<a href=\"http://wordpress.org/extend/plugins/adminimize/\">Dokumentation</a>"
|
174 |
|
175 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
176 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:109
|
177 |
msgid "Adminimize"
|
178 |
msgstr "Adminimere"
|
179 |
|
180 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
181 |
msgid "Adminimize Options"
|
182 |
msgstr "Adminimize-indstillinger"
|
183 |
|
184 |
-
#: d:\wordpress\plugins\adminimize/adminimize.php:
|
185 |
msgid "Cheatin’ uh?"
|
186 |
msgstr "Snyder du, hva'?"
|
187 |
|
188 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:115
|
189 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:140
|
190 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:186
|
191 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
192 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
193 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
194 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
195 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
196 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
197 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
198 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
199 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
200 |
msgid "Click to toggle"
|
201 |
msgstr "Klik for at invertere valg"
|
202 |
|
203 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:116
|
204 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:172
|
205 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
206 |
msgid "About the plugin"
|
207 |
msgstr "Om pluginnet"
|
208 |
|
209 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:118
|
210 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
211 |
msgid "Further information: Visit the <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
|
212 |
msgstr "Yderligere information: Besøg <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">plugin-hjemmesiden</a> for yderligere information eller for at hente den seneste udgave af pluginnet."
|
213 |
|
214 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:124
|
215 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
216 |
msgid "PayPal - The safer, easier way to pay online!"
|
217 |
msgstr "PayPal - Online-betalinger på den sikre og nemme måde!"
|
218 |
|
219 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:128
|
220 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
221 |
msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a> or donate."
|
222 |
msgstr "Ønsker du at takke mig? Besøg min <a href=\"http://bueltge.de/wunschliste/\">ønskeliste</a> eller send en donation."
|
223 |
|
@@ -231,45 +231,45 @@ msgid "Backend Options"
|
|
231 |
msgstr "Indstillinger for kontrolpanel"
|
232 |
|
233 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:148
|
234 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
235 |
msgid "Global options"
|
236 |
msgstr "Globale indstillinger"
|
237 |
|
238 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:151
|
239 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
240 |
msgid "Menu Options"
|
241 |
msgstr "Menu-indstillinger"
|
242 |
|
243 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:154
|
244 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
245 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
246 |
msgid "Write options - Post"
|
247 |
msgstr "Indstillinger for Nyt indlæg"
|
248 |
|
249 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:157
|
250 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
251 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
252 |
msgid "Write options - Page"
|
253 |
msgstr "Indstillinger for Ny side"
|
254 |
|
255 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:160
|
256 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
257 |
msgid "Links options"
|
258 |
msgstr "Links-indstillinger"
|
259 |
|
260 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:163
|
261 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
262 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
263 |
msgid "Set Theme"
|
264 |
msgstr "Aktivér tema"
|
265 |
|
266 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:166
|
267 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
268 |
msgid "Export/Import Options"
|
269 |
msgstr "Eksport/Import-indstillinger"
|
270 |
|
271 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:169
|
272 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
273 |
msgid "Deinstall Options"
|
274 |
msgstr "Indstillinger for afinstallation"
|
275 |
|
@@ -286,14 +286,12 @@ msgstr "Brugerinformation"
|
|
286 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:263
|
287 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:273
|
288 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:283
|
289 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
290 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:322
|
291 |
msgid "Default"
|
292 |
msgstr "Standard"
|
293 |
|
294 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:201
|
295 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:224
|
296 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:234
|
297 |
msgid "Hide"
|
298 |
msgstr "Skjul"
|
299 |
|
@@ -330,448 +328,440 @@ msgid "The Footer-area can hide, include all links and details."
|
|
330 |
msgstr "Footer-området kan skjules, inkl. alle links og detaljer."
|
331 |
|
332 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:229
|
333 |
-
msgid "Header"
|
334 |
-
msgstr "Header"
|
335 |
-
|
336 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:235
|
337 |
-
msgid "The Header-area can hide, include all links and details."
|
338 |
-
msgstr "Header-området kan skjules, inkl. alle links og detaljer."
|
339 |
-
|
340 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:239
|
341 |
msgid "WriteScroll"
|
342 |
msgstr "SkriveScroll"
|
343 |
|
|
|
344 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:244
|
345 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:254
|
346 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:264
|
347 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:274
|
348 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:284
|
349 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:294
|
350 |
msgid "Activate"
|
351 |
msgstr "Aktivér"
|
352 |
|
353 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
354 |
msgid "With the WriteScroll option active, these pages will automatically scroll to an optimal position for editing, when you visit Write Post or Write Page."
|
355 |
msgstr "Når SkriveScroll-indstillingen er aktv, vil disse sider automatisk scrolle til en position, der er optimal for redigering, når du redigerer indlæg eller sider."
|
356 |
|
357 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
358 |
msgid "Timestamp"
|
359 |
msgstr "Tidsstempel"
|
360 |
|
361 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
362 |
msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
|
363 |
msgstr "Åbner redigeringsfelterne for indlæggets tidsstempel, uden at du behøver at klikke på \"Redigér\"-linket hele tiden."
|
364 |
|
365 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
366 |
msgid "Thickbox FullScreen"
|
367 |
msgstr "Thickbox-fuldskærm"
|
368 |
|
369 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
370 |
msgid "All Thickbox-function use the full area of the browser. Thickbox is for example in upload media-files."
|
371 |
msgstr "Alle Thickbox-funktioner bruger hele browserens område. Thickbox bruges f.eks. til upload af mediefiler."
|
372 |
|
373 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
374 |
msgid "Flashuploader"
|
375 |
msgstr "Flash-uploader"
|
376 |
|
377 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
378 |
msgid "Disable the flashuploader and users use only the standard uploader."
|
379 |
msgstr "Deaktivér Flash-uploaderen, så brugerne kun kan bruge standard-uploaderen."
|
380 |
|
381 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
382 |
msgid "Category Height"
|
383 |
msgstr "Højde for kategorier"
|
384 |
|
385 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
386 |
msgid "View the Meta Box with Categories in the full height, no scrollbar or whitespace."
|
387 |
msgstr "Se Meta-boksen med kategorier i fuld højde, ingen scrollbar eller whitespace."
|
388 |
|
389 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
390 |
msgid "Advice in Footer"
|
391 |
msgstr "Henvisning i footer"
|
392 |
|
393 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
394 |
msgid "In the Footer you can display an advice for changing the Default-design, (x)HTML is possible."
|
395 |
msgstr "I footeren kan du vise et råd om at ændre standard-designet, (x)HTML kan bruges."
|
396 |
|
397 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
398 |
msgid "Dashboard deactivate, redirect to"
|
399 |
msgstr "Deaktivér kontrolpanel; viderestil til"
|
400 |
|
401 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
402 |
msgid "Manage Posts"
|
403 |
msgstr "Indlæg"
|
404 |
|
405 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
406 |
msgid "Manage Pages"
|
407 |
msgstr "Sider"
|
408 |
|
409 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
410 |
msgid "Write Post"
|
411 |
msgstr "Nyt indlæg"
|
412 |
|
413 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
414 |
msgid "Write Page"
|
415 |
msgstr "Ny side"
|
416 |
|
417 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
418 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
419 |
msgid "Comments"
|
420 |
msgstr "Kommentarer"
|
421 |
|
422 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
423 |
msgid "other Page"
|
424 |
msgstr "anden side"
|
425 |
|
426 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
427 |
msgid "You have deactivated the Dashboard, please select a page for redirection?"
|
428 |
msgstr "Du har deaktiveret kontrolpanelet; vælg en side, der skal viderestilles til?"
|
429 |
|
430 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
431 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
432 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
433 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
434 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
435 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
436 |
msgid "Update Options"
|
437 |
msgstr "Opdatér indstillinger"
|
438 |
|
439 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
440 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
441 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
442 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
443 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
444 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
445 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
446 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
447 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
448 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
449 |
msgid "scroll to top"
|
450 |
msgstr "scroll til top"
|
451 |
|
452 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
453 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
454 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
455 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
456 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
457 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
458 |
msgid "Option"
|
459 |
msgstr "Indstilling"
|
460 |
|
461 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
462 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
463 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
464 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
465 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
466 |
msgid "Deactivate for"
|
467 |
msgstr "Deaktivér for"
|
468 |
|
469 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
470 |
msgid "Favorite Actions"
|
471 |
msgstr "Favorithandlinger"
|
472 |
|
473 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
474 |
msgid "Screen-Meta"
|
475 |
msgstr "Skærm-meta"
|
476 |
|
477 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
478 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
479 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
480 |
msgid "Screen Options"
|
481 |
msgstr "Skærm-indstillinger"
|
482 |
|
483 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
484 |
msgid "Contextual Help"
|
485 |
msgstr "Konteksthjælp"
|
486 |
|
487 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
488 |
msgid "Admin Color Scheme"
|
489 |
msgstr "Admin-farveskema"
|
490 |
|
491 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
492 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
493 |
msgid "Your own options"
|
494 |
msgstr "Dine egne indstillinger"
|
495 |
|
496 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
497 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
498 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
499 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
500 |
msgid "ID or class"
|
501 |
msgstr "Id eller klasse"
|
502 |
|
503 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
504 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
505 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
506 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
507 |
msgid "It is possible to add your own IDs or classes from elements and tags. You can find IDs and classes with the FireBug Add-on for Firefox. Assign a value and the associate name per line."
|
508 |
msgstr "Det er muligt at tilføje dine egne id'er eller classes fra elementer og tags. Du kan finde disse id'er og classes med Firebug-udvidelsen til Firefox. Tildel en værdi og det tilhørende navn per linje."
|
509 |
|
510 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
511 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
512 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
513 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
514 |
msgid "Possible nomination for ID or class. Separate multiple nominations through a carriage return."
|
515 |
msgstr "Mulig benævnelse på id eller klasse. Adskil flere benævnelser med ny linje."
|
516 |
|
517 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
518 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
519 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
520 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
521 |
msgid "Possible IDs or classes. Separate multiple values through a carriage return."
|
522 |
msgstr "Mulige id'er eller classes. Adskil flere værdier med en ny linje."
|
523 |
|
524 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
525 |
msgid "Menu options - Menu, <span style=\\\"font-weight: 400;\\\">Submenu</span>"
|
526 |
msgstr "Menu-indstillinger - Menu, <span style=\\\"font-weight: 400;\\\">Undermenu</span>"
|
527 |
|
528 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
529 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
530 |
msgid "Help"
|
531 |
msgstr "Hjælp"
|
532 |
|
533 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
534 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
535 |
msgid "Permalink"
|
536 |
msgstr "Permalink"
|
537 |
|
538 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
539 |
msgid "Excerpt"
|
540 |
msgstr "Uddrag"
|
541 |
|
542 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
543 |
msgid "Trackbacks"
|
544 |
msgstr "Trackbacks"
|
545 |
|
546 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
547 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
548 |
msgid "Custom Fields"
|
549 |
msgstr "Egne felter"
|
550 |
|
551 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
552 |
msgid "Password Protect This Post"
|
553 |
msgstr "Kodeordsbeskyt dette indlæg"
|
554 |
|
555 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
556 |
msgid "Post Author"
|
557 |
msgstr "Indlægsforfatter"
|
558 |
|
559 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
560 |
msgid "Post Revisions"
|
561 |
msgstr "Indlægsrevisioner"
|
562 |
|
563 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
564 |
msgid "Related, Shortcuts"
|
565 |
msgstr "Se også: genveje"
|
566 |
|
567 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
568 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
569 |
msgid "Messenges"
|
570 |
msgstr "Beskder"
|
571 |
|
572 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
573 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
574 |
msgid "h2: Advanced Options"
|
575 |
msgstr "h2: Avancerede indstillinger"
|
576 |
|
577 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
578 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
579 |
msgid "Media Buttons (all)"
|
580 |
msgstr "Medieknapper (alle)"
|
581 |
|
582 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
583 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
584 |
msgid "Word count"
|
585 |
msgstr "Antal ord"
|
586 |
|
587 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
588 |
msgid "Post Slug"
|
589 |
msgstr "Kort <span title=\"post slug\">indlægstitel</span>"
|
590 |
|
591 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
592 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
593 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
594 |
msgid "Publish Actions"
|
595 |
msgstr "Udgiv-handlinger"
|
596 |
|
597 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
598 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
599 |
msgid "Discussion"
|
600 |
msgstr "Diskussion"
|
601 |
|
602 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
603 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
604 |
msgid "HTML Editor Button"
|
605 |
msgstr "Knap for HTML-editor"
|
606 |
|
607 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
608 |
msgid "Post Thumbnail"
|
609 |
msgstr "Indlægsminiature"
|
610 |
|
611 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
612 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
613 |
msgid "Suggested tags from"
|
614 |
msgstr "Foreslåede tags fra"
|
615 |
|
616 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
617 |
msgid "Text Control"
|
618 |
msgstr "Tekstkontrol"
|
619 |
|
620 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
621 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
622 |
msgid "HTML Special Characters"
|
623 |
msgstr "Specielle HTML-tegn"
|
624 |
|
625 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
626 |
msgid "All in One SEO Pack"
|
627 |
msgstr "All in One SEO Pack"
|
628 |
|
629 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
630 |
msgid "Comments & Pings"
|
631 |
msgstr "Kommentarer & Pings"
|
632 |
|
633 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
634 |
msgid "Password Protect This Page"
|
635 |
msgstr "Kodeordsbeskyt denne side"
|
636 |
|
637 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
638 |
msgid "Attributes"
|
639 |
msgstr "Egenskaber"
|
640 |
|
641 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
642 |
msgid "Page Template"
|
643 |
msgstr "Sideskabelon"
|
644 |
|
645 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
646 |
msgid "Page Order"
|
647 |
msgstr "Siderækkefølge"
|
648 |
|
649 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
650 |
msgid "Page Author"
|
651 |
msgstr "Sideforfatter"
|
652 |
|
653 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
654 |
msgid "Page Revisions"
|
655 |
msgstr "Siderevisioner"
|
656 |
|
657 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
658 |
msgid "Related"
|
659 |
msgstr "Se også"
|
660 |
|
661 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
662 |
msgid "Page Slug"
|
663 |
msgstr "Kort <span title=\"post slug\">sidetitel</span>"
|
664 |
|
665 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
666 |
msgid "Page Image"
|
667 |
msgstr "Side-billede"
|
668 |
|
669 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
670 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
671 |
msgid "After activate the check box it heavy attitudes will change."
|
672 |
msgstr "Når afkrydsningsfeltet er aktiveret, bliver det vanskeligere at ændre indstillinger."
|
673 |
|
674 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
675 |
msgid "Profile"
|
676 |
msgstr "Profil"
|
677 |
|
678 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
679 |
msgid "Your own post options"
|
680 |
msgstr "Dine egne indlægsindstillinger"
|
681 |
|
682 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
683 |
msgid "Your own page options"
|
684 |
msgstr "Dine egne sideindstillinger"
|
685 |
|
686 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
687 |
msgid "Name"
|
688 |
msgstr "Navn"
|
689 |
|
690 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
691 |
msgid "Web Address"
|
692 |
msgstr "webadresse"
|
693 |
|
694 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
695 |
msgid "Description"
|
696 |
msgstr "Beskrivelse"
|
697 |
|
698 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
699 |
msgid "Target"
|
700 |
msgstr "Target"
|
701 |
|
702 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
703 |
msgid "Link Relationship (XFN)"
|
704 |
msgstr "Linkrelationer (XFN)"
|
705 |
|
706 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
707 |
msgid "Advanced"
|
708 |
msgstr "Avanceret"
|
709 |
|
710 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
711 |
msgid "For better peformance with many users on your blog; load only userlist, when you will change the theme options for users."
|
712 |
msgstr "Hvis du mange brugere på din blog, kan du øge hastigheden ved kun at indlæse listen over brugere, når du vil ændre tema-indstillingerne for brugere."
|
713 |
|
714 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
715 |
msgid "Load User Data"
|
716 |
msgstr "Indlæser data på brugere"
|
717 |
|
718 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
719 |
msgid "User-ID"
|
720 |
msgstr "Bruger-id"
|
721 |
|
722 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
723 |
msgid "Username"
|
724 |
msgstr "Brugernavn"
|
725 |
|
726 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
727 |
msgid "Display name publicly as"
|
728 |
msgstr "Vis navn offentligt som"
|
729 |
|
730 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
731 |
msgid "Admin-Color Scheme"
|
732 |
msgstr "Admin-farveskema"
|
733 |
|
734 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
735 |
msgid "User Level"
|
736 |
msgstr "Brugerniveau"
|
737 |
|
738 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
739 |
msgid "Role"
|
740 |
msgstr "Rolle"
|
741 |
|
742 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
743 |
msgid "Export"
|
744 |
msgstr "Eksportér"
|
745 |
|
746 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
747 |
msgid "You can save a .seq file with your options."
|
748 |
msgstr "Du kan gemme en SEQ-fil med dine indstillinger."
|
749 |
|
750 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
751 |
msgid "Export »"
|
752 |
msgstr "Eksportér »"
|
753 |
|
754 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
755 |
msgid "Import"
|
756 |
msgstr "Importér"
|
757 |
|
758 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
759 |
msgid "Choose a Adminimize (<em>.seq</em>) file to upload, then click <em>Upload file and import</em>."
|
760 |
msgstr "Vælg en Adminimize (<em>.seq</em>) fil, du vil uploade; klik så <em>Upload fil og importér</em>."
|
761 |
|
762 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
763 |
msgid "Choose a file from your computer"
|
764 |
msgstr "Vælg en fil fra din computer"
|
765 |
|
766 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
767 |
msgid "Upload file and import »"
|
768 |
msgstr "Upload fil og importér »"
|
769 |
|
770 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
771 |
msgid "Use this option for clean your database from all entries of this plugin. When you deactivate the plugin, the deinstall of the plugin <strong>clean not</strong> all entries in the database."
|
772 |
msgstr "Brug denne indstilling for at rense din database for alle poster tilhørende dette plugin. Når du deaktiverer pluginet, <strong>fjerner</strong> pluginnet <strong>ikke</strong> alle sine poster i databasen."
|
773 |
|
774 |
-
#: d:\wordpress\plugins\adminimize/adminimize_page.php:
|
775 |
msgid "Delete Options"
|
776 |
msgstr "Slet indstillinger"
|
777 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Adminimize 1.7.7\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-03-19 14:13+0100\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Team Blogos <wordpress@blogos.dk>\n"
|
8 |
"Language-Team: Team Blogos <wordpress@blogos.dk>\n"
|
53 |
msgid "Load user data to themes was successful."
|
54 |
msgstr "Indlæsning af brugerdata vedrørende temaerne lykkedes."
|
55 |
|
56 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:372
|
57 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:528
|
58 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:980
|
59 |
msgid "Categories"
|
60 |
msgstr "Kategorier"
|
61 |
|
62 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:378
|
63 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:389
|
64 |
msgid "+ Add New Category"
|
65 |
msgstr "+ Tilføj ny kategori"
|
66 |
|
67 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:380
|
68 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:391
|
69 |
msgid "New category name"
|
70 |
msgstr "Nyt kategorinavn"
|
71 |
|
72 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:381
|
73 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:393
|
74 |
msgid "Parent category"
|
75 |
msgstr "Forælder-kategori"
|
76 |
|
77 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:382
|
78 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:394
|
79 |
msgid "Add"
|
80 |
msgstr "Tilføj"
|
81 |
|
82 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:391
|
83 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:529
|
84 |
msgid "Add New Category"
|
85 |
msgstr "Tilføj ny kategori"
|
86 |
|
87 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:415
|
88 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:416
|
89 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:527
|
90 |
msgid "Tags"
|
91 |
msgstr "Tags"
|
92 |
|
93 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:456
|
94 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:470
|
95 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:484
|
96 |
msgid "Blue"
|
97 |
msgstr "Blå"
|
98 |
|
99 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:463
|
100 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:477
|
101 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:491
|
102 |
msgid "Gray"
|
103 |
msgstr "Grå"
|
104 |
|
105 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:499
|
106 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:541
|
107 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:564
|
108 |
msgid "Classic"
|
109 |
msgstr "Klassisk"
|
110 |
|
111 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:506
|
112 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:548
|
113 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:571
|
114 |
msgid "Fresh"
|
115 |
msgstr "Frisk"
|
116 |
|
117 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:513
|
118 |
msgid "WordPress 2.3"
|
119 |
msgstr "WordPress 2.3"
|
120 |
|
121 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:520
|
122 |
msgid "Maybe i'm colorblind"
|
123 |
msgstr "Måske er jeg farveblind"
|
124 |
|
125 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:527
|
126 |
msgid "Grey"
|
127 |
msgstr "Grå"
|
128 |
|
129 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:655
|
130 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:658
|
131 |
msgid "Dashboard"
|
132 |
msgstr "Kontrolpanel"
|
133 |
|
134 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:713
|
135 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:715
|
136 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:728
|
137 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:730
|
138 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:921
|
139 |
msgid "Log Out"
|
140 |
msgstr "Log ud"
|
141 |
|
142 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:940
|
143 |
msgid "Visit plugin homepage"
|
144 |
msgstr "Besøg plugin-hjemmesiden"
|
145 |
|
146 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:943
|
147 |
msgid "plugin"
|
148 |
msgstr "plugin"
|
149 |
|
150 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:943
|
151 |
msgid "Version"
|
152 |
msgstr "Version"
|
153 |
|
154 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:943
|
155 |
msgid "History"
|
156 |
msgstr "Historik"
|
157 |
|
158 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:943
|
159 |
msgid "Author"
|
160 |
msgstr "Forfatter"
|
161 |
|
162 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:946
|
163 |
msgid "plugin activate"
|
164 |
msgstr "aktivér plugin"
|
165 |
|
166 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:966
|
167 |
msgid "Settings"
|
168 |
msgstr "Indstillinger"
|
169 |
|
170 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:1027
|
171 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:1048
|
172 |
msgid "<a href=\"http://wordpress.org/extend/plugins/adminimize/\">Documentation</a>"
|
173 |
msgstr "<a href=\"http://wordpress.org/extend/plugins/adminimize/\">Dokumentation</a>"
|
174 |
|
175 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:1044
|
176 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:109
|
177 |
msgid "Adminimize"
|
178 |
msgstr "Adminimere"
|
179 |
|
180 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:1046
|
181 |
msgid "Adminimize Options"
|
182 |
msgstr "Adminimize-indstillinger"
|
183 |
|
184 |
+
#: d:\wordpress\plugins\adminimize/adminimize.php:1063
|
185 |
msgid "Cheatin’ uh?"
|
186 |
msgstr "Snyder du, hva'?"
|
187 |
|
188 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:115
|
189 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:140
|
190 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:186
|
191 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:340
|
192 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:455
|
193 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:777
|
194 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:860
|
195 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:943
|
196 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1065
|
197 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1163
|
198 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1198
|
199 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1219
|
200 |
msgid "Click to toggle"
|
201 |
msgstr "Klik for at invertere valg"
|
202 |
|
203 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:116
|
204 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:172
|
205 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1220
|
206 |
msgid "About the plugin"
|
207 |
msgstr "Om pluginnet"
|
208 |
|
209 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:118
|
210 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1223
|
211 |
msgid "Further information: Visit the <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
|
212 |
msgstr "Yderligere information: Besøg <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">plugin-hjemmesiden</a> for yderligere information eller for at hente den seneste udgave af pluginnet."
|
213 |
|
214 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:124
|
215 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1229
|
216 |
msgid "PayPal - The safer, easier way to pay online!"
|
217 |
msgstr "PayPal - Online-betalinger på den sikre og nemme måde!"
|
218 |
|
219 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:128
|
220 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1233
|
221 |
msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a> or donate."
|
222 |
msgstr "Ønsker du at takke mig? Besøg min <a href=\"http://bueltge.de/wunschliste/\">ønskeliste</a> eller send en donation."
|
223 |
|
231 |
msgstr "Indstillinger for kontrolpanel"
|
232 |
|
233 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:148
|
234 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:341
|
235 |
msgid "Global options"
|
236 |
msgstr "Globale indstillinger"
|
237 |
|
238 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:151
|
239 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:456
|
240 |
msgid "Menu Options"
|
241 |
msgstr "Menu-indstillinger"
|
242 |
|
243 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:154
|
244 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:778
|
245 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:785
|
246 |
msgid "Write options - Post"
|
247 |
msgstr "Indstillinger for Nyt indlæg"
|
248 |
|
249 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:157
|
250 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:861
|
251 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:868
|
252 |
msgid "Write options - Page"
|
253 |
msgstr "Indstillinger for Ny side"
|
254 |
|
255 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:160
|
256 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:944
|
257 |
msgid "Links options"
|
258 |
msgstr "Links-indstillinger"
|
259 |
|
260 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:163
|
261 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1066
|
262 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1151
|
263 |
msgid "Set Theme"
|
264 |
msgstr "Aktivér tema"
|
265 |
|
266 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:166
|
267 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1164
|
268 |
msgid "Export/Import Options"
|
269 |
msgstr "Eksport/Import-indstillinger"
|
270 |
|
271 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:169
|
272 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1199
|
273 |
msgid "Deinstall Options"
|
274 |
msgstr "Indstillinger for afinstallation"
|
275 |
|
286 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:263
|
287 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:273
|
288 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:283
|
289 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:312
|
|
|
290 |
msgid "Default"
|
291 |
msgstr "Standard"
|
292 |
|
293 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:201
|
294 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:224
|
|
|
295 |
msgid "Hide"
|
296 |
msgstr "Skjul"
|
297 |
|
328 |
msgstr "Footer-området kan skjules, inkl. alle links og detaljer."
|
329 |
|
330 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:229
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
331 |
msgid "WriteScroll"
|
332 |
msgstr "SkriveScroll"
|
333 |
|
334 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:234
|
335 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:244
|
336 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:254
|
337 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:264
|
338 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:274
|
339 |
#: d:\wordpress\plugins\adminimize/adminimize_page.php:284
|
|
|
340 |
msgid "Activate"
|
341 |
msgstr "Aktivér"
|
342 |
|
343 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:235
|
344 |
msgid "With the WriteScroll option active, these pages will automatically scroll to an optimal position for editing, when you visit Write Post or Write Page."
|
345 |
msgstr "Når SkriveScroll-indstillingen er aktv, vil disse sider automatisk scrolle til en position, der er optimal for redigering, når du redigerer indlæg eller sider."
|
346 |
|
347 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:239
|
348 |
msgid "Timestamp"
|
349 |
msgstr "Tidsstempel"
|
350 |
|
351 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:245
|
352 |
msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
|
353 |
msgstr "Åbner redigeringsfelterne for indlæggets tidsstempel, uden at du behøver at klikke på \"Redigér\"-linket hele tiden."
|
354 |
|
355 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:249
|
356 |
msgid "Thickbox FullScreen"
|
357 |
msgstr "Thickbox-fuldskærm"
|
358 |
|
359 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:255
|
360 |
msgid "All Thickbox-function use the full area of the browser. Thickbox is for example in upload media-files."
|
361 |
msgstr "Alle Thickbox-funktioner bruger hele browserens område. Thickbox bruges f.eks. til upload af mediefiler."
|
362 |
|
363 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:259
|
364 |
msgid "Flashuploader"
|
365 |
msgstr "Flash-uploader"
|
366 |
|
367 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:265
|
368 |
msgid "Disable the flashuploader and users use only the standard uploader."
|
369 |
msgstr "Deaktivér Flash-uploaderen, så brugerne kun kan bruge standard-uploaderen."
|
370 |
|
371 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:269
|
372 |
msgid "Category Height"
|
373 |
msgstr "Højde for kategorier"
|
374 |
|
375 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:275
|
376 |
msgid "View the Meta Box with Categories in the full height, no scrollbar or whitespace."
|
377 |
msgstr "Se Meta-boksen med kategorier i fuld højde, ingen scrollbar eller whitespace."
|
378 |
|
379 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:279
|
380 |
msgid "Advice in Footer"
|
381 |
msgstr "Henvisning i footer"
|
382 |
|
383 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:286
|
384 |
msgid "In the Footer you can display an advice for changing the Default-design, (x)HTML is possible."
|
385 |
msgstr "I footeren kan du vise et råd om at ændre standard-designet, (x)HTML kan bruges."
|
386 |
|
387 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:308
|
388 |
msgid "Dashboard deactivate, redirect to"
|
389 |
msgstr "Deaktivér kontrolpanel; viderestil til"
|
390 |
|
391 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:313
|
392 |
msgid "Manage Posts"
|
393 |
msgstr "Indlæg"
|
394 |
|
395 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:314
|
396 |
msgid "Manage Pages"
|
397 |
msgstr "Sider"
|
398 |
|
399 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:315
|
400 |
msgid "Write Post"
|
401 |
msgstr "Nyt indlæg"
|
402 |
|
403 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:316
|
404 |
msgid "Write Page"
|
405 |
msgstr "Ny side"
|
406 |
|
407 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:317
|
408 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:533
|
409 |
msgid "Comments"
|
410 |
msgstr "Kommentarer"
|
411 |
|
412 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:318
|
413 |
msgid "other Page"
|
414 |
msgstr "anden side"
|
415 |
|
416 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:321
|
417 |
msgid "You have deactivated the Dashboard, please select a page for redirection?"
|
418 |
msgstr "Du har deaktiveret kontrolpanelet; vælg en side, der skal viderestilles til?"
|
419 |
|
420 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:330
|
421 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:445
|
422 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:767
|
423 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:850
|
424 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:933
|
425 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1054
|
426 |
msgid "Update Options"
|
427 |
msgstr "Opdatér indstillinger"
|
428 |
|
429 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:332
|
430 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:447
|
431 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:769
|
432 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:852
|
433 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:935
|
434 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1057
|
435 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1156
|
436 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1190
|
437 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1211
|
438 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1237
|
439 |
msgid "scroll to top"
|
440 |
msgstr "scroll til top"
|
441 |
|
442 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:348
|
443 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:420
|
444 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:825
|
445 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:908
|
446 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:951
|
447 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1029
|
448 |
msgid "Option"
|
449 |
msgstr "Indstilling"
|
450 |
|
451 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:351
|
452 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:466
|
453 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:788
|
454 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:871
|
455 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:954
|
456 |
msgid "Deactivate for"
|
457 |
msgstr "Deaktivér for"
|
458 |
|
459 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:371
|
460 |
msgid "Favorite Actions"
|
461 |
msgstr "Favorithandlinger"
|
462 |
|
463 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:372
|
464 |
msgid "Screen-Meta"
|
465 |
msgstr "Skærm-meta"
|
466 |
|
467 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:373
|
468 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:525
|
469 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:619
|
470 |
msgid "Screen Options"
|
471 |
msgstr "Skærm-indstillinger"
|
472 |
|
473 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:374
|
474 |
msgid "Contextual Help"
|
475 |
msgstr "Konteksthjælp"
|
476 |
|
477 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:375
|
478 |
msgid "Admin Color Scheme"
|
479 |
msgstr "Admin-farveskema"
|
480 |
|
481 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:419
|
482 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1028
|
483 |
msgid "Your own options"
|
484 |
msgstr "Dine egne indstillinger"
|
485 |
|
486 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:419
|
487 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:824
|
488 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:907
|
489 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1028
|
490 |
msgid "ID or class"
|
491 |
msgstr "Id eller klasse"
|
492 |
|
493 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:426
|
494 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:831
|
495 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:914
|
496 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1035
|
497 |
msgid "It is possible to add your own IDs or classes from elements and tags. You can find IDs and classes with the FireBug Add-on for Firefox. Assign a value and the associate name per line."
|
498 |
msgstr "Det er muligt at tilføje dine egne id'er eller classes fra elementer og tags. Du kan finde disse id'er og classes med Firebug-udvidelsen til Firefox. Tildel en værdi og det tilhørende navn per linje."
|
499 |
|
500 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:432
|
501 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:837
|
502 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:920
|
503 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1041
|
504 |
msgid "Possible nomination for ID or class. Separate multiple nominations through a carriage return."
|
505 |
msgstr "Mulig benævnelse på id eller klasse. Adskil flere benævnelser med ny linje."
|
506 |
|
507 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:437
|
508 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:842
|
509 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:925
|
510 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1046
|
511 |
msgid "Possible IDs or classes. Separate multiple values through a carriage return."
|
512 |
msgstr "Mulige id'er eller classes. Adskil flere værdier med en ny linje."
|
513 |
|
514 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:463
|
515 |
msgid "Menu options - Menu, <span style=\\\"font-weight: 400;\\\">Submenu</span>"
|
516 |
msgstr "Menu-indstillinger - Menu, <span style=\\\"font-weight: 400;\\\">Undermenu</span>"
|
517 |
|
518 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:524
|
519 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:618
|
520 |
msgid "Help"
|
521 |
msgstr "Hjælp"
|
522 |
|
523 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:526
|
524 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:620
|
525 |
msgid "Permalink"
|
526 |
msgstr "Permalink"
|
527 |
|
528 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:530
|
529 |
msgid "Excerpt"
|
530 |
msgstr "Uddrag"
|
531 |
|
532 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:531
|
533 |
msgid "Trackbacks"
|
534 |
msgstr "Trackbacks"
|
535 |
|
536 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:532
|
537 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:621
|
538 |
msgid "Custom Fields"
|
539 |
msgstr "Egne felter"
|
540 |
|
541 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:534
|
542 |
msgid "Password Protect This Post"
|
543 |
msgstr "Kodeordsbeskyt dette indlæg"
|
544 |
|
545 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:535
|
546 |
msgid "Post Author"
|
547 |
msgstr "Indlægsforfatter"
|
548 |
|
549 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:536
|
550 |
msgid "Post Revisions"
|
551 |
msgstr "Indlægsrevisioner"
|
552 |
|
553 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:537
|
554 |
msgid "Related, Shortcuts"
|
555 |
msgstr "Se også: genveje"
|
556 |
|
557 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:538
|
558 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:630
|
559 |
msgid "Messenges"
|
560 |
msgstr "Beskder"
|
561 |
|
562 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:539
|
563 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:631
|
564 |
msgid "h2: Advanced Options"
|
565 |
msgstr "h2: Avancerede indstillinger"
|
566 |
|
567 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:540
|
568 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:632
|
569 |
msgid "Media Buttons (all)"
|
570 |
msgstr "Medieknapper (alle)"
|
571 |
|
572 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:541
|
573 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:633
|
574 |
msgid "Word count"
|
575 |
msgstr "Antal ord"
|
576 |
|
577 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:542
|
578 |
msgid "Post Slug"
|
579 |
msgstr "Kort <span title=\"post slug\">indlægstitel</span>"
|
580 |
|
581 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:543
|
582 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:635
|
583 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:984
|
584 |
msgid "Publish Actions"
|
585 |
msgstr "Udgiv-handlinger"
|
586 |
|
587 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:544
|
588 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:636
|
589 |
msgid "Discussion"
|
590 |
msgstr "Diskussion"
|
591 |
|
592 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:545
|
593 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:637
|
594 |
msgid "HTML Editor Button"
|
595 |
msgstr "Knap for HTML-editor"
|
596 |
|
597 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:549
|
598 |
msgid "Post Thumbnail"
|
599 |
msgstr "Indlægsminiature"
|
600 |
|
601 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:551
|
602 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:643
|
603 |
msgid "Suggested tags from"
|
604 |
msgstr "Foreslåede tags fra"
|
605 |
|
606 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:553
|
607 |
msgid "Text Control"
|
608 |
msgstr "Tekstkontrol"
|
609 |
|
610 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:555
|
611 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:645
|
612 |
msgid "HTML Special Characters"
|
613 |
msgstr "Specielle HTML-tegn"
|
614 |
|
615 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:557
|
616 |
msgid "All in One SEO Pack"
|
617 |
msgstr "All in One SEO Pack"
|
618 |
|
619 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:622
|
620 |
msgid "Comments & Pings"
|
621 |
msgstr "Kommentarer & Pings"
|
622 |
|
623 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:623
|
624 |
msgid "Password Protect This Page"
|
625 |
msgstr "Kodeordsbeskyt denne side"
|
626 |
|
627 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:624
|
628 |
msgid "Attributes"
|
629 |
msgstr "Egenskaber"
|
630 |
|
631 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:625
|
632 |
msgid "Page Template"
|
633 |
msgstr "Sideskabelon"
|
634 |
|
635 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:626
|
636 |
msgid "Page Order"
|
637 |
msgstr "Siderækkefølge"
|
638 |
|
639 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:627
|
640 |
msgid "Page Author"
|
641 |
msgstr "Sideforfatter"
|
642 |
|
643 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:628
|
644 |
msgid "Page Revisions"
|
645 |
msgstr "Siderevisioner"
|
646 |
|
647 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:629
|
648 |
msgid "Related"
|
649 |
msgstr "Se også"
|
650 |
|
651 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:634
|
652 |
msgid "Page Slug"
|
653 |
msgstr "Kort <span title=\"post slug\">sidetitel</span>"
|
654 |
|
655 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:641
|
656 |
msgid "Page Image"
|
657 |
msgstr "Side-billede"
|
658 |
|
659 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:683
|
660 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:731
|
661 |
msgid "After activate the check box it heavy attitudes will change."
|
662 |
msgstr "Når afkrydsningsfeltet er aktiveret, bliver det vanskeligere at ændre indstillinger."
|
663 |
|
664 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:714
|
665 |
msgid "Profile"
|
666 |
msgstr "Profil"
|
667 |
|
668 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:824
|
669 |
msgid "Your own post options"
|
670 |
msgstr "Dine egne indlægsindstillinger"
|
671 |
|
672 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:907
|
673 |
msgid "Your own page options"
|
674 |
msgstr "Dine egne sideindstillinger"
|
675 |
|
676 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:977
|
677 |
msgid "Name"
|
678 |
msgstr "Navn"
|
679 |
|
680 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:978
|
681 |
msgid "Web Address"
|
682 |
msgstr "webadresse"
|
683 |
|
684 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:979
|
685 |
msgid "Description"
|
686 |
msgstr "Beskrivelse"
|
687 |
|
688 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:981
|
689 |
msgid "Target"
|
690 |
msgstr "Target"
|
691 |
|
692 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:982
|
693 |
msgid "Link Relationship (XFN)"
|
694 |
msgstr "Linkrelationer (XFN)"
|
695 |
|
696 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:983
|
697 |
msgid "Advanced"
|
698 |
msgstr "Avanceret"
|
699 |
|
700 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1073
|
701 |
msgid "For better peformance with many users on your blog; load only userlist, when you will change the theme options for users."
|
702 |
msgstr "Hvis du mange brugere på din blog, kan du øge hastigheden ved kun at indlæse listen over brugere, når du vil ændre tema-indstillingerne for brugere."
|
703 |
|
704 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1076
|
705 |
msgid "Load User Data"
|
706 |
msgstr "Indlæser data på brugere"
|
707 |
|
708 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1087
|
709 |
msgid "User-ID"
|
710 |
msgstr "Bruger-id"
|
711 |
|
712 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1088
|
713 |
msgid "Username"
|
714 |
msgstr "Brugernavn"
|
715 |
|
716 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1089
|
717 |
msgid "Display name publicly as"
|
718 |
msgstr "Vis navn offentligt som"
|
719 |
|
720 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1090
|
721 |
msgid "Admin-Color Scheme"
|
722 |
msgstr "Admin-farveskema"
|
723 |
|
724 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1091
|
725 |
msgid "User Level"
|
726 |
msgstr "Brugerniveau"
|
727 |
|
728 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1092
|
729 |
msgid "Role"
|
730 |
msgstr "Rolle"
|
731 |
|
732 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1168
|
733 |
msgid "Export"
|
734 |
msgstr "Eksportér"
|
735 |
|
736 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1170
|
737 |
msgid "You can save a .seq file with your options."
|
738 |
msgstr "Du kan gemme en SEQ-fil med dine indstillinger."
|
739 |
|
740 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1173
|
741 |
msgid "Export »"
|
742 |
msgstr "Eksportér »"
|
743 |
|
744 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1177
|
745 |
msgid "Import"
|
746 |
msgstr "Importér"
|
747 |
|
748 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1180
|
749 |
msgid "Choose a Adminimize (<em>.seq</em>) file to upload, then click <em>Upload file and import</em>."
|
750 |
msgstr "Vælg en Adminimize (<em>.seq</em>) fil, du vil uploade; klik så <em>Upload fil og importér</em>."
|
751 |
|
752 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1182
|
753 |
msgid "Choose a file from your computer"
|
754 |
msgstr "Vælg en fil fra din computer"
|
755 |
|
756 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1187
|
757 |
msgid "Upload file and import »"
|
758 |
msgstr "Upload fil og importér »"
|
759 |
|
760 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1202
|
761 |
msgid "Use this option for clean your database from all entries of this plugin. When you deactivate the plugin, the deinstall of the plugin <strong>clean not</strong> all entries in the database."
|
762 |
msgstr "Brug denne indstilling for at rense din database for alle poster tilhørende dette plugin. Når du deaktiverer pluginet, <strong>fjerner</strong> pluginnet <strong>ikke</strong> alle sine poster i databasen."
|
763 |
|
764 |
+
#: d:\wordpress\plugins\adminimize/adminimize_page.php:1206
|
765 |
msgid "Delete Options"
|
766 |
msgstr "Slet indstillinger"
|
767 |
|
languages/adminimize-de_DE.mo
CHANGED
Binary file
|
languages/adminimize-de_DE.po
CHANGED
@@ -13,229 +13,204 @@ msgstr ""
|
|
13 |
"X-Poedit-Language: \n"
|
14 |
"X-Poedit-Country: \n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;
|
17 |
"X-Poedit-Basepath: ../\n"
|
18 |
"X-Poedit-Bookmarks: \n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
-
#: adminimize.php:
|
23 |
#@ adminimize
|
24 |
msgid "Unknown error."
|
25 |
msgstr "Unbekannter Fehler."
|
26 |
|
27 |
-
#: adminimize.php:
|
28 |
#@ adminimize
|
29 |
msgid "The updates were saved."
|
30 |
msgstr "Die Einstellungen wurden gespeichert"
|
31 |
|
32 |
-
#: adminimize.php:
|
33 |
#@ adminimize
|
34 |
msgid "You have not enough rights to edit entries in the database."
|
35 |
msgstr "Du hast nicht ausreichend Rechte um diese Aktion durchzuführen!"
|
36 |
|
37 |
-
#: adminimize.php:
|
38 |
#@ adminimize
|
39 |
msgid "All entries in the database were deleted."
|
40 |
msgstr "Die Einstellungen wurde gelöscht!"
|
41 |
|
42 |
-
#: adminimize.php:
|
43 |
#@ adminimize
|
44 |
msgid "Set the checkbox on deinstall-button."
|
45 |
msgstr "Checkbox setzen, wenn wirklich deinstalliert werden soll!"
|
46 |
|
47 |
-
#: adminimize.php:
|
48 |
#@ adminimize
|
49 |
msgid "Can't load menu and submenu."
|
50 |
msgstr "Menu und Submenu können nicht geladen werden!"
|
51 |
|
52 |
-
#: adminimize.php:
|
53 |
#@ adminimize
|
54 |
msgid "Backend-Theme was activated!"
|
55 |
msgstr "Backend-Theme wurde zugewiesen!"
|
56 |
|
57 |
-
#: adminimize.php:
|
58 |
#@ adminimize
|
59 |
msgid "Load user data to themes was successful."
|
60 |
msgstr "Das Laden der User-Daten zum Theme war erfolgreich."
|
61 |
|
62 |
-
#: adminimize.php:
|
63 |
-
#: adminimize_page.php:
|
64 |
-
#: adminimize_page.php:
|
65 |
-
#@ default
|
66 |
#@ adminimize
|
67 |
msgid "Categories"
|
68 |
msgstr "Kategorien"
|
69 |
|
70 |
-
#: adminimize.php:
|
71 |
-
#: adminimize.php:
|
72 |
-
#@ default
|
73 |
msgid "+ Add New Category"
|
74 |
msgstr "+ Add New Category"
|
75 |
|
76 |
-
#: adminimize.php:
|
77 |
-
#: adminimize.php:
|
78 |
-
#@ default
|
79 |
msgid "New category name"
|
80 |
msgstr "New category name"
|
81 |
|
82 |
-
#: adminimize.php:
|
83 |
-
#: adminimize.php:
|
84 |
-
#@ default
|
85 |
msgid "Parent category"
|
86 |
msgstr "Parent category"
|
87 |
|
88 |
-
#: adminimize.php:
|
89 |
-
#: adminimize.php:
|
90 |
-
#@ default
|
91 |
msgid "Add"
|
92 |
msgstr "Add"
|
93 |
|
94 |
-
#: adminimize.php:
|
95 |
-
#: adminimize_page.php:
|
96 |
-
#@ default
|
97 |
#@ adminimize
|
98 |
msgid "Add New Category"
|
99 |
msgstr "Add New Category"
|
100 |
|
101 |
-
#: adminimize.php:
|
102 |
-
#: adminimize.php:
|
103 |
-
#: adminimize_page.php:
|
104 |
-
#@ default
|
105 |
#@ adminimize
|
106 |
msgid "Tags"
|
107 |
msgstr "Tags"
|
108 |
|
109 |
-
#: adminimize.php:
|
110 |
-
#: adminimize.php:
|
111 |
-
#: adminimize.php:
|
112 |
-
#@ default
|
113 |
msgid "Blue"
|
114 |
msgstr "Blau"
|
115 |
|
116 |
-
#: adminimize.php:
|
117 |
-
#: adminimize.php:
|
118 |
-
#: adminimize.php:
|
119 |
-
#@ default
|
120 |
msgid "Gray"
|
121 |
msgstr "Grau"
|
122 |
|
123 |
-
#: adminimize.php:
|
124 |
-
#: adminimize.php:
|
125 |
-
#: adminimize.php:
|
126 |
-
#@ default
|
127 |
msgid "Classic"
|
128 |
msgstr "Classic"
|
129 |
|
130 |
-
#: adminimize.php:
|
131 |
-
#: adminimize.php:
|
132 |
-
#: adminimize.php:
|
133 |
-
#@ default
|
134 |
msgid "Fresh"
|
135 |
msgstr "Fresh"
|
136 |
|
137 |
-
#: adminimize.php:
|
138 |
-
#@ default
|
139 |
msgid "WordPress 2.3"
|
140 |
msgstr "WordPress 2.3"
|
141 |
|
142 |
-
#: adminimize.php:
|
143 |
-
#@ default
|
144 |
msgid "Maybe i'm colorblind"
|
145 |
msgstr "Maybe i'm colorblind"
|
146 |
|
147 |
-
#: adminimize.php:
|
148 |
-
#@ default
|
149 |
msgid "Grey"
|
150 |
msgstr "Grey"
|
151 |
|
152 |
-
#: adminimize.php:
|
153 |
-
#: adminimize.php:
|
154 |
-
#@ default
|
155 |
msgid "Dashboard"
|
156 |
msgstr "Dashboard"
|
157 |
|
158 |
-
#: adminimize.php:
|
159 |
-
#: adminimize.php:
|
160 |
-
#: adminimize.php:
|
161 |
-
#: adminimize.php:
|
162 |
-
#: adminimize.php:
|
163 |
-
#@ default
|
164 |
msgid "Log Out"
|
165 |
msgstr "Log Out"
|
166 |
|
167 |
-
#: adminimize.php:
|
168 |
-
#@ default
|
169 |
msgid "Visit plugin homepage"
|
170 |
msgstr "Visit plugin homepage"
|
171 |
|
172 |
-
#: adminimize.php:
|
173 |
-
#@ default
|
174 |
msgid "plugin"
|
175 |
msgstr "plugin"
|
176 |
|
177 |
-
#: adminimize.php:
|
178 |
-
#@ default
|
179 |
msgid "Version"
|
180 |
msgstr "Version"
|
181 |
|
182 |
-
#: adminimize.php:
|
183 |
#@ adminimize
|
184 |
msgid "History"
|
185 |
msgstr "Historie"
|
186 |
|
187 |
-
#: adminimize.php:
|
188 |
-
#@ default
|
189 |
msgid "Author"
|
190 |
msgstr "Author"
|
191 |
|
192 |
-
#: adminimize.php:
|
193 |
#@ adminimize
|
194 |
msgid "plugin activate"
|
195 |
msgstr "plugin activate"
|
196 |
|
197 |
-
#: adminimize.php:
|
198 |
-
#@ default
|
199 |
msgid "Settings"
|
200 |
msgstr "Settings"
|
201 |
|
202 |
-
#: adminimize.php:
|
203 |
-
#: adminimize.php:
|
204 |
#@ adminimize
|
205 |
msgid "<a href=\"http://wordpress.org/extend/plugins/adminimize/\">Documentation</a>"
|
206 |
msgstr "<a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">Dokumentation</a> (<a href=\"http://wordpress.org/extend/plugins/adminimize/\">en</a>)"
|
207 |
|
208 |
-
|
209 |
-
#: adminimize.php:0
|
210 |
-
#: adminimize.php:1095
|
211 |
#: adminimize_page.php:109
|
212 |
#@ adminimize
|
213 |
msgid "Adminimize"
|
214 |
msgstr "Adminimize"
|
215 |
|
216 |
-
#: adminimize.php:
|
217 |
#@ adminimize
|
218 |
msgid "Adminimize Options"
|
219 |
msgstr "Adminimize Einstellungen"
|
220 |
|
221 |
-
#: adminimize.php:
|
222 |
-
#@ default
|
223 |
msgid "Cheatin’ uh?"
|
224 |
msgstr "Cheatin’ uh?"
|
225 |
|
226 |
#: adminimize_page.php:115
|
227 |
#: adminimize_page.php:140
|
228 |
#: adminimize_page.php:186
|
229 |
-
#: adminimize_page.php:
|
230 |
-
#: adminimize_page.php:
|
231 |
-
#: adminimize_page.php:
|
232 |
-
#: adminimize_page.php:
|
233 |
-
#: adminimize_page.php:
|
234 |
-
#: adminimize_page.php:
|
235 |
-
#: adminimize_page.php:
|
236 |
-
#: adminimize_page.php:
|
237 |
-
#: adminimize_page.php:
|
238 |
-
#@ default
|
239 |
msgid "Click to toggle"
|
240 |
msgstr "Zum Umschalten klicken"
|
241 |
|
@@ -259,15 +234,13 @@ msgstr "User-Info"
|
|
259 |
#: adminimize_page.php:263
|
260 |
#: adminimize_page.php:273
|
261 |
#: adminimize_page.php:283
|
262 |
-
#: adminimize_page.php:
|
263 |
-
#: adminimize_page.php:322
|
264 |
#@ adminimize
|
265 |
msgid "Default"
|
266 |
msgstr "Standard"
|
267 |
|
268 |
#: adminimize_page.php:201
|
269 |
#: adminimize_page.php:224
|
270 |
-
#: adminimize_page.php:234
|
271 |
#@ adminimize
|
272 |
msgid "Hide"
|
273 |
msgstr "Ausblenden"
|
@@ -312,558 +285,528 @@ msgstr "Footer"
|
|
312 |
msgid "The Footer-area can hide, include all links and details."
|
313 |
msgstr "Der Footer-Bereich kann deaktiviert werden, inklusive aller Links und Hinweise."
|
314 |
|
315 |
-
#: adminimize_page.php:
|
316 |
#@ adminimize
|
317 |
msgid "WriteScroll"
|
318 |
msgstr "WriteScroll"
|
319 |
|
|
|
320 |
#: adminimize_page.php:244
|
321 |
#: adminimize_page.php:254
|
322 |
#: adminimize_page.php:264
|
323 |
#: adminimize_page.php:274
|
324 |
#: adminimize_page.php:284
|
325 |
-
#: adminimize_page.php:294
|
326 |
#@ adminimize
|
327 |
msgid "Activate"
|
328 |
msgstr "Aktiv"
|
329 |
|
330 |
-
#: adminimize_page.php:
|
331 |
#@ adminimize
|
332 |
msgid "With the WriteScroll option active, these pages will automatically scroll to an optimal position for editing, when you visit Write Post or Write Page."
|
333 |
msgstr "Automatisches Scrollen zum Editor beim Aufruf der Seite Schreiben in Beiträge und Seite."
|
334 |
|
335 |
-
#: adminimize_page.php:
|
336 |
#@ adminimize
|
337 |
msgid "Timestamp"
|
338 |
msgstr "Timestamp"
|
339 |
|
340 |
-
#: adminimize_page.php:
|
341 |
#@ adminimize
|
342 |
msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
|
343 |
msgstr "Das Feld zum Ändern des Veröffentlichungsdatum ist immer geöffnet."
|
344 |
|
345 |
-
#: adminimize_page.php:
|
346 |
#@ adminimize
|
347 |
msgid "Thickbox FullScreen"
|
348 |
msgstr "Thickbox FullScreen"
|
349 |
|
350 |
-
#: adminimize_page.php:
|
351 |
#@ adminimize
|
352 |
msgid "Flashuploader"
|
353 |
msgstr "Flashuploader"
|
354 |
|
355 |
-
#: adminimize_page.php:
|
356 |
#@ adminimize
|
357 |
msgid "Disable the flashuploader and users use only the standard uploader."
|
358 |
msgstr "Deaktiviere den Flashuploader und Nutzer können nur den Standard-Uploader erreichen."
|
359 |
|
360 |
-
#: adminimize_page.php:
|
361 |
#@ adminimize
|
362 |
msgid "Advice in Footer"
|
363 |
msgstr "Hinweis im Footer"
|
364 |
|
365 |
-
#: adminimize_page.php:
|
366 |
#@ adminimize
|
367 |
msgid "Manage Posts"
|
368 |
msgstr "Verwalten Beiträge"
|
369 |
|
370 |
-
#: adminimize_page.php:
|
371 |
#@ adminimize
|
372 |
msgid "Manage Pages"
|
373 |
msgstr "Verwalten Seiten"
|
374 |
|
375 |
-
#: adminimize_page.php:
|
376 |
#@ adminimize
|
377 |
msgid "Write Post"
|
378 |
msgstr "Schreiben Beitrag"
|
379 |
|
380 |
-
#: adminimize_page.php:
|
381 |
#@ adminimize
|
382 |
msgid "Write Page"
|
383 |
msgstr "Schreiben Seite"
|
384 |
|
385 |
-
#: adminimize_page.php:
|
386 |
-
#: adminimize_page.php:
|
387 |
#@ adminimize
|
388 |
msgid "Comments"
|
389 |
msgstr "Kommentare"
|
390 |
|
391 |
-
#: adminimize_page.php:
|
392 |
#@ adminimize
|
393 |
msgid "other Page"
|
394 |
msgstr "andere Seite"
|
395 |
|
396 |
-
#: adminimize_page.php:
|
397 |
-
#: adminimize_page.php:
|
398 |
-
#: adminimize_page.php:
|
399 |
-
#: adminimize_page.php:
|
400 |
-
#: adminimize_page.php:
|
401 |
-
#: adminimize_page.php:
|
402 |
#@ adminimize
|
403 |
msgid "Update Options"
|
404 |
msgstr "Einstellungen aktualisieren"
|
405 |
|
406 |
#: adminimize_page.php:148
|
407 |
-
#: adminimize_page.php:
|
408 |
#@ adminimize
|
409 |
msgid "Global options"
|
410 |
msgstr "Globale Einstellungen"
|
411 |
|
412 |
-
#: adminimize_page.php:
|
413 |
-
#: adminimize_page.php:
|
414 |
-
#: adminimize_page.php:
|
415 |
-
#: adminimize_page.php:
|
416 |
-
#: adminimize_page.php:
|
417 |
-
#: adminimize_page.php:
|
418 |
#@ adminimize
|
419 |
msgid "Option"
|
420 |
msgstr "Einstellung"
|
421 |
|
422 |
-
#: adminimize_page.php:
|
423 |
-
#: adminimize_page.php:
|
424 |
-
#: adminimize_page.php:
|
425 |
-
#: adminimize_page.php:
|
426 |
-
#: adminimize_page.php:
|
427 |
#@ adminimize
|
428 |
msgid "Deactivate for"
|
429 |
msgstr "Deaktiviere für"
|
430 |
|
431 |
-
#: adminimize_page.php:
|
432 |
#@ adminimize
|
433 |
msgid "Favorite Actions"
|
434 |
msgstr "Favorisierte Aktionen"
|
435 |
|
436 |
-
#: adminimize_page.php:
|
437 |
#@ adminimize
|
438 |
msgid "Screen-Meta"
|
439 |
msgstr "Screen-Meta"
|
440 |
|
441 |
-
#: adminimize_page.php:
|
442 |
-
#: adminimize_page.php:
|
443 |
-
#: adminimize_page.php:
|
444 |
#@ adminimize
|
445 |
-
#@ default
|
446 |
msgid "Screen Options"
|
447 |
msgstr "kontextabhängige Optionen"
|
448 |
|
449 |
-
#: adminimize_page.php:
|
450 |
#@ adminimize
|
451 |
msgid "Contextual Help"
|
452 |
msgstr "kontextabhängig Hilfe"
|
453 |
|
454 |
-
#: adminimize_page.php:
|
455 |
#@ adminimize
|
456 |
msgid "Admin Color Scheme"
|
457 |
msgstr "Farbschema verwalten"
|
458 |
|
459 |
-
#: adminimize_page.php:
|
460 |
-
#: adminimize_page.php:
|
461 |
#@ adminimize
|
462 |
msgid "Your own options"
|
463 |
msgstr "Deine eigenen Einstellungen"
|
464 |
|
465 |
-
#: adminimize_page.php:
|
466 |
-
#: adminimize_page.php:
|
467 |
-
#: adminimize_page.php:
|
468 |
-
#: adminimize_page.php:
|
469 |
#@ adminimize
|
470 |
msgid "ID or class"
|
471 |
msgstr "ID oder Klasse"
|
472 |
|
473 |
-
#: adminimize_page.php:
|
474 |
-
#: adminimize_page.php:
|
475 |
-
#: adminimize_page.php:
|
476 |
-
#: adminimize_page.php:
|
477 |
#@ adminimize
|
478 |
msgid "It is possible to add your own IDs or classes from elements and tags. You can find IDs and classes with the FireBug Add-on for Firefox. Assign a value and the associate name per line."
|
479 |
msgstr "Es ist möglich, dass du eigene IDs und Klassen eines Elementes oder Tags hinzufügst. Du findest IDs und Klassen sehr einfach mit dem Firebug Add-on für den Firefox. Füge pro Zeile einen Wert und dazugehörigen Namen ein."
|
480 |
|
481 |
-
#: adminimize_page.php:
|
482 |
-
#: adminimize_page.php:
|
483 |
-
#: adminimize_page.php:
|
484 |
-
#: adminimize_page.php:
|
485 |
#@ adminimize
|
486 |
msgid "Possible nomination for ID or class. Separate multiple nominations through a carriage return."
|
487 |
msgstr "Mögliche Benennung der ID oder Klasse. Trenne Werte durch eine neue Zeile."
|
488 |
|
489 |
-
#: adminimize_page.php:
|
490 |
-
#: adminimize_page.php:
|
491 |
-
#: adminimize_page.php:
|
492 |
-
#: adminimize_page.php:
|
493 |
#@ adminimize
|
494 |
msgid "Possible IDs or classes. Separate multiple values through a carriage return."
|
495 |
msgstr "Mögliche IDs oder Klassen. Trenne Werte durch eine neue Zeile."
|
496 |
|
497 |
#: adminimize_page.php:151
|
498 |
-
#: adminimize_page.php:
|
499 |
#@ adminimize
|
500 |
msgid "Menu Options"
|
501 |
msgstr "Menu Einstellungen"
|
502 |
|
503 |
-
#: adminimize_page.php:
|
504 |
#@ adminimize
|
505 |
msgid "Menu options - Menu, <span style=\\\"font-weight: 400;\\\">Submenu</span>"
|
506 |
msgstr "Menu Einstellungen - Menu, <span style=\"font-weight: 400;\">Submenu</span>"
|
507 |
|
508 |
-
#: adminimize_page.php:
|
509 |
-
#: adminimize_page.php:
|
510 |
-
#@ default
|
511 |
msgid "Help"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: adminimize_page.php:
|
515 |
-
#: adminimize_page.php:
|
516 |
#@ adminimize
|
517 |
msgid "Permalink"
|
518 |
msgstr "Permalink"
|
519 |
|
520 |
-
#: adminimize_page.php:
|
521 |
#@ adminimize
|
522 |
msgid "Excerpt"
|
523 |
msgstr "Auszug"
|
524 |
|
525 |
-
#: adminimize_page.php:
|
526 |
#@ adminimize
|
527 |
msgid "Trackbacks"
|
528 |
msgstr "Trackbacks"
|
529 |
|
530 |
-
#: adminimize_page.php:
|
531 |
-
#: adminimize_page.php:
|
532 |
-
#@ default
|
533 |
msgid "Custom Fields"
|
534 |
msgstr "Benutzerdefinierte Felder"
|
535 |
|
536 |
-
#: adminimize_page.php:
|
537 |
#@ adminimize
|
538 |
msgid "Password Protect This Post"
|
539 |
msgstr "Diesen Artikel durch ein Passwort schützen"
|
540 |
|
541 |
-
#: adminimize_page.php:
|
542 |
-
#@ default
|
543 |
msgid "Post Author"
|
544 |
msgstr "Autor"
|
545 |
|
546 |
-
#: adminimize_page.php:
|
547 |
-
#@ default
|
548 |
msgid "Post Revisions"
|
549 |
msgstr "Post Revisions"
|
550 |
|
551 |
-
#: adminimize_page.php:
|
552 |
#@ adminimize
|
553 |
msgid "Related, Shortcuts"
|
554 |
msgstr "Siehe auch, Tastaturkürzel"
|
555 |
|
556 |
-
#: adminimize_page.php:
|
557 |
-
#: adminimize_page.php:
|
558 |
#@ adminimize
|
559 |
msgid "Messenges"
|
560 |
msgstr "Mitteilungen"
|
561 |
|
562 |
-
#: adminimize_page.php:
|
563 |
-
#: adminimize_page.php:
|
564 |
#@ adminimize
|
565 |
msgid "h2: Advanced Options"
|
566 |
msgstr "h2: Erweiterte Einstellungen"
|
567 |
|
568 |
-
#: adminimize_page.php:
|
569 |
-
#: adminimize_page.php:
|
570 |
#@ adminimize
|
571 |
msgid "Media Buttons (all)"
|
572 |
msgstr "Media Buttons (alle)"
|
573 |
|
574 |
-
#: adminimize_page.php:
|
575 |
-
#: adminimize_page.php:
|
576 |
#@ adminimize
|
577 |
msgid "Word count"
|
578 |
msgstr "Word count"
|
579 |
|
580 |
-
#: adminimize_page.php:
|
581 |
-
#@ default
|
582 |
msgid "Post Slug"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: adminimize_page.php:
|
586 |
-
#: adminimize_page.php:
|
587 |
-
#: adminimize_page.php:
|
588 |
#@ adminimize
|
589 |
msgid "Publish Actions"
|
590 |
msgstr "Publish Actions"
|
591 |
|
592 |
-
#: adminimize_page.php:
|
593 |
-
#: adminimize_page.php:
|
594 |
-
#@ default
|
595 |
msgid "Discussion"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: adminimize_page.php:
|
599 |
-
#@ default
|
600 |
msgid "Post Thumbnail"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: adminimize_page.php:
|
604 |
-
#: adminimize_page.php:
|
605 |
-
#@ default
|
606 |
#@ adminimize
|
607 |
msgid "Suggested tags from"
|
608 |
msgstr "Suggested tags from"
|
609 |
|
610 |
-
#: adminimize_page.php:
|
611 |
-
#@ default
|
612 |
msgid "Text Control"
|
613 |
msgstr "Text Control"
|
614 |
|
615 |
-
#: adminimize_page.php:
|
616 |
-
#: adminimize_page.php:
|
617 |
-
#@ default
|
618 |
msgid "HTML Special Characters"
|
619 |
msgstr "HTML Special Characters"
|
620 |
|
621 |
-
#: adminimize_page.php:
|
622 |
-
#@ default
|
623 |
msgid "All in One SEO Pack"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: adminimize_page.php:
|
627 |
#@ adminimize
|
628 |
msgid "Comments & Pings"
|
629 |
msgstr "Kommentare & Pings"
|
630 |
|
631 |
-
#: adminimize_page.php:
|
632 |
#@ adminimize
|
633 |
msgid "Password Protect This Page"
|
634 |
msgstr "Diese Seite mit einem Passwort versehen"
|
635 |
|
636 |
-
#: adminimize_page.php:
|
637 |
-
#@ default
|
638 |
msgid "Attributes"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: adminimize_page.php:
|
642 |
#@ adminimize
|
643 |
msgid "Page Template"
|
644 |
msgstr "Seiten Template"
|
645 |
|
646 |
-
#: adminimize_page.php:
|
647 |
#@ adminimize
|
648 |
msgid "Page Order"
|
649 |
msgstr "Reihenfolge"
|
650 |
|
651 |
-
#: adminimize_page.php:
|
652 |
-
#@ default
|
653 |
msgid "Page Author"
|
654 |
msgstr "Seitenautor"
|
655 |
|
656 |
-
#: adminimize_page.php:
|
657 |
-
#@ default
|
658 |
msgid "Page Revisions"
|
659 |
msgstr "Page Revisions"
|
660 |
|
661 |
-
#: adminimize_page.php:
|
662 |
#@ adminimize
|
663 |
msgid "Related"
|
664 |
msgstr "Siehe auch"
|
665 |
|
666 |
-
#: adminimize_page.php:
|
667 |
-
#@ default
|
668 |
msgid "Page Slug"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: adminimize_page.php:
|
672 |
-
#@ default
|
673 |
msgid "Page Image"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: adminimize_page.php:
|
677 |
-
#: adminimize_page.php:
|
678 |
#@ adminimize
|
679 |
msgid "After activate the check box it heavy attitudes will change."
|
680 |
msgstr "Wenn die Checkbox aktiv ist, dann wird das Ändern von Einstellungen erschwert."
|
681 |
|
682 |
-
#: adminimize_page.php:
|
683 |
-
#@ default
|
684 |
msgid "Profile"
|
685 |
msgstr "Profile"
|
686 |
|
687 |
#: adminimize_page.php:154
|
688 |
-
#: adminimize_page.php:
|
689 |
-
#: adminimize_page.php:
|
690 |
#@ adminimize
|
691 |
msgid "Write options - Post"
|
692 |
msgstr "Schreiben Einstellungen - Beiträge"
|
693 |
|
694 |
-
#: adminimize_page.php:
|
695 |
#@ adminimize
|
696 |
msgid "Your own post options"
|
697 |
msgstr "Deine eigenen Beitrags-Einstellungen"
|
698 |
|
699 |
#: adminimize_page.php:157
|
700 |
-
#: adminimize_page.php:
|
701 |
-
#: adminimize_page.php:
|
702 |
#@ adminimize
|
703 |
msgid "Write options - Page"
|
704 |
msgstr "Schreiben Einstellungen - Seiten"
|
705 |
|
706 |
-
#: adminimize_page.php:
|
707 |
#@ adminimize
|
708 |
msgid "Your own page options"
|
709 |
msgstr "Deine eigenen Seiten-Einstellungen"
|
710 |
|
711 |
#: adminimize_page.php:160
|
712 |
-
#: adminimize_page.php:
|
713 |
#@ adminimize
|
714 |
msgid "Links options"
|
715 |
msgstr "Link Einstellungen"
|
716 |
|
717 |
-
#: adminimize_page.php:
|
718 |
-
#@ default
|
719 |
msgid "Name"
|
720 |
msgstr "Name"
|
721 |
|
722 |
-
#: adminimize_page.php:
|
723 |
-
#@ default
|
724 |
msgid "Web Address"
|
725 |
msgstr "Web-Adresse"
|
726 |
|
727 |
-
#: adminimize_page.php:
|
728 |
-
#@ default
|
729 |
msgid "Description"
|
730 |
msgstr "Beschreibung"
|
731 |
|
732 |
-
#: adminimize_page.php:
|
733 |
-
#@ default
|
734 |
msgid "Target"
|
735 |
msgstr "Target"
|
736 |
|
737 |
-
#: adminimize_page.php:
|
738 |
-
#@ default
|
739 |
msgid "Link Relationship (XFN)"
|
740 |
msgstr "Link-Beziehungen (XFN)"
|
741 |
|
742 |
-
#: adminimize_page.php:
|
743 |
-
#@ default
|
744 |
msgid "Advanced"
|
745 |
msgstr "Erweitert"
|
746 |
|
747 |
#: adminimize_page.php:163
|
748 |
-
#: adminimize_page.php:
|
749 |
-
#: adminimize_page.php:
|
750 |
#@ adminimize
|
751 |
msgid "Set Theme"
|
752 |
msgstr "Theme zuweisen"
|
753 |
|
754 |
-
#: adminimize_page.php:
|
755 |
#@ adminimize
|
756 |
msgid "For better peformance with many users on your blog; load only userlist, when you will change the theme options for users."
|
757 |
msgstr "Für eine bessere Performance bei vielen Usern in deinem Blog werden die Userdaten nur nach Aufforderung geladen."
|
758 |
|
759 |
-
#: adminimize_page.php:
|
760 |
#@ adminimize
|
761 |
msgid "Load User Data"
|
762 |
msgstr "Lade User Daten"
|
763 |
|
764 |
-
#: adminimize_page.php:
|
765 |
-
#@ default
|
766 |
msgid "User-ID"
|
767 |
msgstr "User-ID"
|
768 |
|
769 |
-
#: adminimize_page.php:
|
770 |
-
#@ default
|
771 |
msgid "Username"
|
772 |
msgstr "Benutzername"
|
773 |
|
774 |
-
#: adminimize_page.php:
|
775 |
-
#@ default
|
776 |
msgid "Display name publicly as"
|
777 |
msgstr "Name im Blog"
|
778 |
|
779 |
-
#: adminimize_page.php:
|
780 |
-
#@ default
|
781 |
msgid "Admin-Color Scheme"
|
782 |
msgstr "Admin-Color Scheme"
|
783 |
|
784 |
-
#: adminimize_page.php:
|
785 |
-
#@ default
|
786 |
msgid "User Level"
|
787 |
msgstr "User Level"
|
788 |
|
789 |
-
#: adminimize_page.php:
|
790 |
-
#@ default
|
791 |
msgid "Role"
|
792 |
msgstr "Rolle"
|
793 |
|
794 |
#: adminimize_page.php:169
|
795 |
-
#: adminimize_page.php:
|
796 |
#@ adminimize
|
797 |
msgid "Deinstall Options"
|
798 |
msgstr "Einstellungen deinstallieren"
|
799 |
|
800 |
-
#: adminimize_page.php:
|
801 |
#@ adminimize
|
802 |
msgid "Use this option for clean your database from all entries of this plugin. When you deactivate the plugin, the deinstall of the plugin <strong>clean not</strong> all entries in the database."
|
803 |
msgstr "Nutze diese Option, um die Einstellungen für das Plugin in der Datenbank zu löschen. Das Plugin entfernt die Einträge <strong>nicht</strong>, wenn es deaktiviert wird!"
|
804 |
|
805 |
-
#: adminimize_page.php:
|
806 |
#@ adminimize
|
807 |
msgid "Delete Options"
|
808 |
msgstr "Einstellungen Löschen"
|
809 |
|
810 |
#: adminimize_page.php:116
|
811 |
#: adminimize_page.php:172
|
812 |
-
#: adminimize_page.php:
|
813 |
#@ adminimize
|
814 |
msgid "About the plugin"
|
815 |
msgstr "Über das Plugin"
|
816 |
|
817 |
#: adminimize_page.php:118
|
818 |
-
#: adminimize_page.php:
|
819 |
#@ adminimize
|
820 |
msgid "Further information: Visit the <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
|
821 |
msgstr "Weitere Information: Besuche die <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">Plugin Webseite</a> für weitere Informationen oder hole die aktuelle Version des Plugins."
|
822 |
|
823 |
#: adminimize_page.php:124
|
824 |
-
#: adminimize_page.php:
|
825 |
#@ adminimize
|
826 |
msgid "PayPal - The safer, easier way to pay online!"
|
827 |
msgstr "PayPal - Der sichere und einfache Weg zu zahlen!"
|
828 |
|
829 |
#: adminimize_page.php:128
|
830 |
-
#: adminimize_page.php:
|
831 |
#@ adminimize
|
832 |
msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a> or donate."
|
833 |
msgstr "Du willst Danke sagen? Besuche meine <a href=\"http://bueltge.de/wunschliste/\">Wunschliste</a> oder spende."
|
834 |
|
835 |
-
#: adminimize.php:
|
836 |
#@ adminimize
|
837 |
msgid "All entries in the database were imported."
|
838 |
msgstr "Alle Einträge wurden in die Datenbank geschrieben."
|
839 |
|
840 |
#: adminimize_page.php:166
|
841 |
-
#: adminimize_page.php:
|
842 |
#@ adminimize
|
843 |
msgid "Export/Import Options"
|
844 |
msgstr "Export/Import Einstellungen"
|
845 |
|
846 |
-
#: adminimize_page.php:
|
847 |
#@ adminimize
|
848 |
msgid "Export"
|
849 |
msgstr "Export"
|
850 |
|
851 |
-
#: adminimize_page.php:
|
852 |
#@ adminimize
|
853 |
msgid "Export »"
|
854 |
msgstr "Exportieren »"
|
855 |
|
856 |
-
#: adminimize_page.php:
|
857 |
#@ adminimize
|
858 |
msgid "Import"
|
859 |
msgstr "Import"
|
860 |
|
861 |
-
#: adminimize_page.php:
|
862 |
#@ adminimize
|
863 |
msgid "Choose a file from your computer"
|
864 |
msgstr "Wähle eine Datei vom Rechner"
|
865 |
|
866 |
-
#: adminimize_page.php:
|
867 |
#@ adminimize
|
868 |
msgid "Upload file and import »"
|
869 |
msgstr "Hochladen der Datei und importieren »"
|
@@ -873,109 +816,62 @@ msgstr "Hochladen der Datei und importieren »"
|
|
873 |
msgid "MiniMenu"
|
874 |
msgstr "MiniMenu"
|
875 |
|
876 |
-
#: adminimize_page.php:
|
877 |
-
#: adminimize_page.php:
|
878 |
-
#: adminimize_page.php:
|
879 |
-
#: adminimize_page.php:
|
880 |
-
#: adminimize_page.php:
|
881 |
-
#: adminimize_page.php:
|
882 |
-
#: adminimize_page.php:
|
883 |
-
#: adminimize_page.php:
|
884 |
-
#: adminimize_page.php:
|
885 |
-
#: adminimize_page.php:
|
886 |
#@ adminimize
|
887 |
msgid "scroll to top"
|
888 |
msgstr "Nach oben"
|
889 |
|
890 |
-
#: adminimize_page.php:
|
891 |
#@ adminimize
|
892 |
msgid "You can save a .seq file with your options."
|
893 |
msgstr "Du kannst deine Einstellungen in einer .seq Datei speichern."
|
894 |
|
895 |
-
#: adminimize_page.php:
|
896 |
#@ adminimize
|
897 |
msgid "Choose a Adminimize (<em>.seq</em>) file to upload, then click <em>Upload file and import</em>."
|
898 |
msgstr "Wähle eine Adminimize (<em>.seq</em>) Datei zum hoch laden und dann klick <em>Hochladen der Datei und importieren</em>"
|
899 |
|
900 |
-
#: adminimize_page.php:
|
901 |
#@ adminimize
|
902 |
msgid "Category Height"
|
903 |
msgstr "Kategorie-Höhe"
|
904 |
|
905 |
-
#: adminimize_page.php:
|
906 |
#@ adminimize
|
907 |
msgid "View the Meta Box with Categories in the full height, no scrollbar or whitespace."
|
908 |
msgstr "Stellt in die Meta Box der Kategorien in voller Höhe dar, kein Scrollbar und kein Leerraum."
|
909 |
|
910 |
-
#: adminimize_page.php:
|
911 |
#@ adminimize
|
912 |
msgid "In the Footer you can display an advice for changing the Default-design, (x)HTML is possible."
|
913 |
msgstr "Im Footer kann ein Hinweis auf die aktive Veränderung des Standard-Layout gesetzt werden, (x)HTML erlaubt."
|
914 |
|
915 |
-
#: adminimize_page.php:
|
916 |
#@ adminimize
|
917 |
msgid "Dashboard deactivate, redirect to"
|
918 |
msgstr "Dashboard inaktiv, Weiterleitung nach"
|
919 |
|
920 |
-
#: adminimize_page.php:
|
921 |
#@ adminimize
|
922 |
msgid "You have deactivated the Dashboard, please select a page for redirection?"
|
923 |
msgstr "Du hast das Dashboard deaktiviert, wohin soll der Nutzer weitergeleitet werden?"
|
924 |
|
925 |
-
#: adminimize_page.php:
|
926 |
-
#: adminimize_page.php:
|
927 |
-
#@ default
|
928 |
msgid "HTML Editor Button"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: adminimize_page.php:
|
932 |
#@ adminimize
|
933 |
msgid "All Thickbox-function use the full area of the browser. Thickbox is for example in upload media-files."
|
934 |
msgstr "Alle Thickbox-Funktion verwenden den vollständigen Bereich des Browsers. Thickbox ist beispielsweise in der Medien-Upload-Funktion."
|
935 |
|
936 |
-
#. translators: plugin header field 'PluginURI'
|
937 |
-
#: adminimize.php:0
|
938 |
-
#@ adminimize
|
939 |
-
msgid "http://bueltge.de/wordpress-admin-theme-adminimize/674/"
|
940 |
-
msgstr ""
|
941 |
-
|
942 |
-
#. translators: plugin header field 'Description'
|
943 |
-
#: adminimize.php:0
|
944 |
-
#@ adminimize
|
945 |
-
msgid "Visually compresses the administratrive meta-boxes so that more admin page content can be initially seen. The plugin that lets you hide 'unnecessary' items from the WordPress administration menu, for alle roles of your install. You can also hide post meta controls on the edit-area to simplify the interface. It is possible to simplify the admin in different for all roles."
|
946 |
-
msgstr "Visuelles Reduzieren der administrativen Meta-Boxen, so dass mehr Raum ist und nur dargestellt, was gebraucht wird. Das Plugin erlaubt das ausblenden von ungenutzten Bereich vom WordPress Administrations-Bereich und dem Menu für alle vorhandenen Rollen. Es ist ebenso möglich, dass man Bereiche in Teilbereichen ausblenden und eigene Bereiche ausblenden kann. Kurz: Reduzieren den Admin-Bereich für das, was die jeweilige Rolle benötigt."
|
947 |
-
|
948 |
-
#. translators: plugin header field 'Author'
|
949 |
-
#: adminimize.php:0
|
950 |
-
#@ adminimize
|
951 |
-
msgid "Frank Bültge"
|
952 |
-
msgstr ""
|
953 |
-
|
954 |
-
#. translators: plugin header field 'AuthorURI'
|
955 |
-
#: adminimize.php:0
|
956 |
-
#@ adminimize
|
957 |
-
msgid "http://bueltge.de/"
|
958 |
-
msgstr ""
|
959 |
-
|
960 |
-
#. translators: plugin header field 'Version'
|
961 |
-
#: adminimize.php:0
|
962 |
-
#@ adminimize
|
963 |
-
msgid "1.7.10"
|
964 |
-
msgstr ""
|
965 |
-
|
966 |
-
#: adminimize_page.php:229
|
967 |
-
#@ adminimize
|
968 |
-
msgid "Header"
|
969 |
-
msgstr "Header"
|
970 |
-
|
971 |
-
#: adminimize_page.php:235
|
972 |
-
#@ adminimize
|
973 |
-
msgid "The Header-area can hide, include all links and details."
|
974 |
-
msgstr "Der header-Bereich kann ausgeblendet werden, inkl. aller Links und Details."
|
975 |
-
|
976 |
-
#: adminimize_page.php:537
|
977 |
-
#: adminimize_page.php:633
|
978 |
-
#@ adminimize
|
979 |
-
msgid "Title"
|
980 |
-
msgstr ""
|
981 |
-
|
13 |
"X-Poedit-Language: \n"
|
14 |
"X-Poedit-Country: \n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
17 |
"X-Poedit-Basepath: ../\n"
|
18 |
"X-Poedit-Bookmarks: \n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: adminimize.php:91
|
23 |
#@ adminimize
|
24 |
msgid "Unknown error."
|
25 |
msgstr "Unbekannter Fehler."
|
26 |
|
27 |
+
#: adminimize.php:98
|
28 |
#@ adminimize
|
29 |
msgid "The updates were saved."
|
30 |
msgstr "Die Einstellungen wurden gespeichert"
|
31 |
|
32 |
+
#: adminimize.php:99
|
33 |
#@ adminimize
|
34 |
msgid "You have not enough rights to edit entries in the database."
|
35 |
msgstr "Du hast nicht ausreichend Rechte um diese Aktion durchzuführen!"
|
36 |
|
37 |
+
#: adminimize.php:101
|
38 |
#@ adminimize
|
39 |
msgid "All entries in the database were deleted."
|
40 |
msgstr "Die Einstellungen wurde gelöscht!"
|
41 |
|
42 |
+
#: adminimize.php:102
|
43 |
#@ adminimize
|
44 |
msgid "Set the checkbox on deinstall-button."
|
45 |
msgstr "Checkbox setzen, wenn wirklich deinstalliert werden soll!"
|
46 |
|
47 |
+
#: adminimize.php:103
|
48 |
#@ adminimize
|
49 |
msgid "Can't load menu and submenu."
|
50 |
msgstr "Menu und Submenu können nicht geladen werden!"
|
51 |
|
52 |
+
#: adminimize.php:104
|
53 |
#@ adminimize
|
54 |
msgid "Backend-Theme was activated!"
|
55 |
msgstr "Backend-Theme wurde zugewiesen!"
|
56 |
|
57 |
+
#: adminimize.php:105
|
58 |
#@ adminimize
|
59 |
msgid "Load user data to themes was successful."
|
60 |
msgstr "Das Laden der User-Daten zum Theme war erfolgreich."
|
61 |
|
62 |
+
#: adminimize.php:372
|
63 |
+
#: adminimize_page.php:528
|
64 |
+
#: adminimize_page.php:980
|
|
|
65 |
#@ adminimize
|
66 |
msgid "Categories"
|
67 |
msgstr "Kategorien"
|
68 |
|
69 |
+
#: adminimize.php:378
|
70 |
+
#: adminimize.php:389
|
|
|
71 |
msgid "+ Add New Category"
|
72 |
msgstr "+ Add New Category"
|
73 |
|
74 |
+
#: adminimize.php:380
|
75 |
+
#: adminimize.php:391
|
|
|
76 |
msgid "New category name"
|
77 |
msgstr "New category name"
|
78 |
|
79 |
+
#: adminimize.php:381
|
80 |
+
#: adminimize.php:393
|
|
|
81 |
msgid "Parent category"
|
82 |
msgstr "Parent category"
|
83 |
|
84 |
+
#: adminimize.php:382
|
85 |
+
#: adminimize.php:394
|
|
|
86 |
msgid "Add"
|
87 |
msgstr "Add"
|
88 |
|
89 |
+
#: adminimize.php:391
|
90 |
+
#: adminimize_page.php:529
|
|
|
91 |
#@ adminimize
|
92 |
msgid "Add New Category"
|
93 |
msgstr "Add New Category"
|
94 |
|
95 |
+
#: adminimize.php:415
|
96 |
+
#: adminimize.php:416
|
97 |
+
#: adminimize_page.php:527
|
|
|
98 |
#@ adminimize
|
99 |
msgid "Tags"
|
100 |
msgstr "Tags"
|
101 |
|
102 |
+
#: adminimize.php:456
|
103 |
+
#: adminimize.php:470
|
104 |
+
#: adminimize.php:484
|
|
|
105 |
msgid "Blue"
|
106 |
msgstr "Blau"
|
107 |
|
108 |
+
#: adminimize.php:463
|
109 |
+
#: adminimize.php:477
|
110 |
+
#: adminimize.php:491
|
|
|
111 |
msgid "Gray"
|
112 |
msgstr "Grau"
|
113 |
|
114 |
+
#: adminimize.php:499
|
115 |
+
#: adminimize.php:541
|
116 |
+
#: adminimize.php:564
|
|
|
117 |
msgid "Classic"
|
118 |
msgstr "Classic"
|
119 |
|
120 |
+
#: adminimize.php:506
|
121 |
+
#: adminimize.php:548
|
122 |
+
#: adminimize.php:571
|
|
|
123 |
msgid "Fresh"
|
124 |
msgstr "Fresh"
|
125 |
|
126 |
+
#: adminimize.php:513
|
|
|
127 |
msgid "WordPress 2.3"
|
128 |
msgstr "WordPress 2.3"
|
129 |
|
130 |
+
#: adminimize.php:520
|
|
|
131 |
msgid "Maybe i'm colorblind"
|
132 |
msgstr "Maybe i'm colorblind"
|
133 |
|
134 |
+
#: adminimize.php:527
|
|
|
135 |
msgid "Grey"
|
136 |
msgstr "Grey"
|
137 |
|
138 |
+
#: adminimize.php:655
|
139 |
+
#: adminimize.php:658
|
|
|
140 |
msgid "Dashboard"
|
141 |
msgstr "Dashboard"
|
142 |
|
143 |
+
#: adminimize.php:713
|
144 |
+
#: adminimize.php:715
|
145 |
+
#: adminimize.php:728
|
146 |
+
#: adminimize.php:730
|
147 |
+
#: adminimize.php:921
|
|
|
148 |
msgid "Log Out"
|
149 |
msgstr "Log Out"
|
150 |
|
151 |
+
#: adminimize.php:940
|
|
|
152 |
msgid "Visit plugin homepage"
|
153 |
msgstr "Visit plugin homepage"
|
154 |
|
155 |
+
#: adminimize.php:943
|
|
|
156 |
msgid "plugin"
|
157 |
msgstr "plugin"
|
158 |
|
159 |
+
#: adminimize.php:943
|
|
|
160 |
msgid "Version"
|
161 |
msgstr "Version"
|
162 |
|
163 |
+
#: adminimize.php:943
|
164 |
#@ adminimize
|
165 |
msgid "History"
|
166 |
msgstr "Historie"
|
167 |
|
168 |
+
#: adminimize.php:943
|
|
|
169 |
msgid "Author"
|
170 |
msgstr "Author"
|
171 |
|
172 |
+
#: adminimize.php:946
|
173 |
#@ adminimize
|
174 |
msgid "plugin activate"
|
175 |
msgstr "plugin activate"
|
176 |
|
177 |
+
#: adminimize.php:966
|
|
|
178 |
msgid "Settings"
|
179 |
msgstr "Settings"
|
180 |
|
181 |
+
#: adminimize.php:1027
|
182 |
+
#: adminimize.php:1048
|
183 |
#@ adminimize
|
184 |
msgid "<a href=\"http://wordpress.org/extend/plugins/adminimize/\">Documentation</a>"
|
185 |
msgstr "<a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">Dokumentation</a> (<a href=\"http://wordpress.org/extend/plugins/adminimize/\">en</a>)"
|
186 |
|
187 |
+
#: adminimize.php:1044
|
|
|
|
|
188 |
#: adminimize_page.php:109
|
189 |
#@ adminimize
|
190 |
msgid "Adminimize"
|
191 |
msgstr "Adminimize"
|
192 |
|
193 |
+
#: adminimize.php:1046
|
194 |
#@ adminimize
|
195 |
msgid "Adminimize Options"
|
196 |
msgstr "Adminimize Einstellungen"
|
197 |
|
198 |
+
#: adminimize.php:1063
|
|
|
199 |
msgid "Cheatin’ uh?"
|
200 |
msgstr "Cheatin’ uh?"
|
201 |
|
202 |
#: adminimize_page.php:115
|
203 |
#: adminimize_page.php:140
|
204 |
#: adminimize_page.php:186
|
205 |
+
#: adminimize_page.php:340
|
206 |
+
#: adminimize_page.php:455
|
207 |
+
#: adminimize_page.php:777
|
208 |
+
#: adminimize_page.php:860
|
209 |
+
#: adminimize_page.php:943
|
210 |
+
#: adminimize_page.php:1065
|
211 |
+
#: adminimize_page.php:1163
|
212 |
+
#: adminimize_page.php:1198
|
213 |
+
#: adminimize_page.php:1219
|
|
|
214 |
msgid "Click to toggle"
|
215 |
msgstr "Zum Umschalten klicken"
|
216 |
|
234 |
#: adminimize_page.php:263
|
235 |
#: adminimize_page.php:273
|
236 |
#: adminimize_page.php:283
|
237 |
+
#: adminimize_page.php:312
|
|
|
238 |
#@ adminimize
|
239 |
msgid "Default"
|
240 |
msgstr "Standard"
|
241 |
|
242 |
#: adminimize_page.php:201
|
243 |
#: adminimize_page.php:224
|
|
|
244 |
#@ adminimize
|
245 |
msgid "Hide"
|
246 |
msgstr "Ausblenden"
|
285 |
msgid "The Footer-area can hide, include all links and details."
|
286 |
msgstr "Der Footer-Bereich kann deaktiviert werden, inklusive aller Links und Hinweise."
|
287 |
|
288 |
+
#: adminimize_page.php:229
|
289 |
#@ adminimize
|
290 |
msgid "WriteScroll"
|
291 |
msgstr "WriteScroll"
|
292 |
|
293 |
+
#: adminimize_page.php:234
|
294 |
#: adminimize_page.php:244
|
295 |
#: adminimize_page.php:254
|
296 |
#: adminimize_page.php:264
|
297 |
#: adminimize_page.php:274
|
298 |
#: adminimize_page.php:284
|
|
|
299 |
#@ adminimize
|
300 |
msgid "Activate"
|
301 |
msgstr "Aktiv"
|
302 |
|
303 |
+
#: adminimize_page.php:235
|
304 |
#@ adminimize
|
305 |
msgid "With the WriteScroll option active, these pages will automatically scroll to an optimal position for editing, when you visit Write Post or Write Page."
|
306 |
msgstr "Automatisches Scrollen zum Editor beim Aufruf der Seite Schreiben in Beiträge und Seite."
|
307 |
|
308 |
+
#: adminimize_page.php:239
|
309 |
#@ adminimize
|
310 |
msgid "Timestamp"
|
311 |
msgstr "Timestamp"
|
312 |
|
313 |
+
#: adminimize_page.php:245
|
314 |
#@ adminimize
|
315 |
msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
|
316 |
msgstr "Das Feld zum Ändern des Veröffentlichungsdatum ist immer geöffnet."
|
317 |
|
318 |
+
#: adminimize_page.php:249
|
319 |
#@ adminimize
|
320 |
msgid "Thickbox FullScreen"
|
321 |
msgstr "Thickbox FullScreen"
|
322 |
|
323 |
+
#: adminimize_page.php:259
|
324 |
#@ adminimize
|
325 |
msgid "Flashuploader"
|
326 |
msgstr "Flashuploader"
|
327 |
|
328 |
+
#: adminimize_page.php:265
|
329 |
#@ adminimize
|
330 |
msgid "Disable the flashuploader and users use only the standard uploader."
|
331 |
msgstr "Deaktiviere den Flashuploader und Nutzer können nur den Standard-Uploader erreichen."
|
332 |
|
333 |
+
#: adminimize_page.php:279
|
334 |
#@ adminimize
|
335 |
msgid "Advice in Footer"
|
336 |
msgstr "Hinweis im Footer"
|
337 |
|
338 |
+
#: adminimize_page.php:313
|
339 |
#@ adminimize
|
340 |
msgid "Manage Posts"
|
341 |
msgstr "Verwalten Beiträge"
|
342 |
|
343 |
+
#: adminimize_page.php:314
|
344 |
#@ adminimize
|
345 |
msgid "Manage Pages"
|
346 |
msgstr "Verwalten Seiten"
|
347 |
|
348 |
+
#: adminimize_page.php:315
|
349 |
#@ adminimize
|
350 |
msgid "Write Post"
|
351 |
msgstr "Schreiben Beitrag"
|
352 |
|
353 |
+
#: adminimize_page.php:316
|
354 |
#@ adminimize
|
355 |
msgid "Write Page"
|
356 |
msgstr "Schreiben Seite"
|
357 |
|
358 |
+
#: adminimize_page.php:317
|
359 |
+
#: adminimize_page.php:533
|
360 |
#@ adminimize
|
361 |
msgid "Comments"
|
362 |
msgstr "Kommentare"
|
363 |
|
364 |
+
#: adminimize_page.php:318
|
365 |
#@ adminimize
|
366 |
msgid "other Page"
|
367 |
msgstr "andere Seite"
|
368 |
|
369 |
+
#: adminimize_page.php:330
|
370 |
+
#: adminimize_page.php:445
|
371 |
+
#: adminimize_page.php:767
|
372 |
+
#: adminimize_page.php:850
|
373 |
+
#: adminimize_page.php:933
|
374 |
+
#: adminimize_page.php:1054
|
375 |
#@ adminimize
|
376 |
msgid "Update Options"
|
377 |
msgstr "Einstellungen aktualisieren"
|
378 |
|
379 |
#: adminimize_page.php:148
|
380 |
+
#: adminimize_page.php:341
|
381 |
#@ adminimize
|
382 |
msgid "Global options"
|
383 |
msgstr "Globale Einstellungen"
|
384 |
|
385 |
+
#: adminimize_page.php:348
|
386 |
+
#: adminimize_page.php:420
|
387 |
+
#: adminimize_page.php:825
|
388 |
+
#: adminimize_page.php:908
|
389 |
+
#: adminimize_page.php:951
|
390 |
+
#: adminimize_page.php:1029
|
391 |
#@ adminimize
|
392 |
msgid "Option"
|
393 |
msgstr "Einstellung"
|
394 |
|
395 |
+
#: adminimize_page.php:351
|
396 |
+
#: adminimize_page.php:466
|
397 |
+
#: adminimize_page.php:788
|
398 |
+
#: adminimize_page.php:871
|
399 |
+
#: adminimize_page.php:954
|
400 |
#@ adminimize
|
401 |
msgid "Deactivate for"
|
402 |
msgstr "Deaktiviere für"
|
403 |
|
404 |
+
#: adminimize_page.php:371
|
405 |
#@ adminimize
|
406 |
msgid "Favorite Actions"
|
407 |
msgstr "Favorisierte Aktionen"
|
408 |
|
409 |
+
#: adminimize_page.php:372
|
410 |
#@ adminimize
|
411 |
msgid "Screen-Meta"
|
412 |
msgstr "Screen-Meta"
|
413 |
|
414 |
+
#: adminimize_page.php:373
|
415 |
+
#: adminimize_page.php:525
|
416 |
+
#: adminimize_page.php:619
|
417 |
#@ adminimize
|
|
|
418 |
msgid "Screen Options"
|
419 |
msgstr "kontextabhängige Optionen"
|
420 |
|
421 |
+
#: adminimize_page.php:374
|
422 |
#@ adminimize
|
423 |
msgid "Contextual Help"
|
424 |
msgstr "kontextabhängig Hilfe"
|
425 |
|
426 |
+
#: adminimize_page.php:375
|
427 |
#@ adminimize
|
428 |
msgid "Admin Color Scheme"
|
429 |
msgstr "Farbschema verwalten"
|
430 |
|
431 |
+
#: adminimize_page.php:419
|
432 |
+
#: adminimize_page.php:1028
|
433 |
#@ adminimize
|
434 |
msgid "Your own options"
|
435 |
msgstr "Deine eigenen Einstellungen"
|
436 |
|
437 |
+
#: adminimize_page.php:419
|
438 |
+
#: adminimize_page.php:824
|
439 |
+
#: adminimize_page.php:907
|
440 |
+
#: adminimize_page.php:1028
|
441 |
#@ adminimize
|
442 |
msgid "ID or class"
|
443 |
msgstr "ID oder Klasse"
|
444 |
|
445 |
+
#: adminimize_page.php:426
|
446 |
+
#: adminimize_page.php:831
|
447 |
+
#: adminimize_page.php:914
|
448 |
+
#: adminimize_page.php:1035
|
449 |
#@ adminimize
|
450 |
msgid "It is possible to add your own IDs or classes from elements and tags. You can find IDs and classes with the FireBug Add-on for Firefox. Assign a value and the associate name per line."
|
451 |
msgstr "Es ist möglich, dass du eigene IDs und Klassen eines Elementes oder Tags hinzufügst. Du findest IDs und Klassen sehr einfach mit dem Firebug Add-on für den Firefox. Füge pro Zeile einen Wert und dazugehörigen Namen ein."
|
452 |
|
453 |
+
#: adminimize_page.php:432
|
454 |
+
#: adminimize_page.php:837
|
455 |
+
#: adminimize_page.php:920
|
456 |
+
#: adminimize_page.php:1041
|
457 |
#@ adminimize
|
458 |
msgid "Possible nomination for ID or class. Separate multiple nominations through a carriage return."
|
459 |
msgstr "Mögliche Benennung der ID oder Klasse. Trenne Werte durch eine neue Zeile."
|
460 |
|
461 |
+
#: adminimize_page.php:437
|
462 |
+
#: adminimize_page.php:842
|
463 |
+
#: adminimize_page.php:925
|
464 |
+
#: adminimize_page.php:1046
|
465 |
#@ adminimize
|
466 |
msgid "Possible IDs or classes. Separate multiple values through a carriage return."
|
467 |
msgstr "Mögliche IDs oder Klassen. Trenne Werte durch eine neue Zeile."
|
468 |
|
469 |
#: adminimize_page.php:151
|
470 |
+
#: adminimize_page.php:456
|
471 |
#@ adminimize
|
472 |
msgid "Menu Options"
|
473 |
msgstr "Menu Einstellungen"
|
474 |
|
475 |
+
#: adminimize_page.php:463
|
476 |
#@ adminimize
|
477 |
msgid "Menu options - Menu, <span style=\\\"font-weight: 400;\\\">Submenu</span>"
|
478 |
msgstr "Menu Einstellungen - Menu, <span style=\"font-weight: 400;\">Submenu</span>"
|
479 |
|
480 |
+
#: adminimize_page.php:524
|
481 |
+
#: adminimize_page.php:618
|
|
|
482 |
msgid "Help"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: adminimize_page.php:526
|
486 |
+
#: adminimize_page.php:620
|
487 |
#@ adminimize
|
488 |
msgid "Permalink"
|
489 |
msgstr "Permalink"
|
490 |
|
491 |
+
#: adminimize_page.php:530
|
492 |
#@ adminimize
|
493 |
msgid "Excerpt"
|
494 |
msgstr "Auszug"
|
495 |
|
496 |
+
#: adminimize_page.php:531
|
497 |
#@ adminimize
|
498 |
msgid "Trackbacks"
|
499 |
msgstr "Trackbacks"
|
500 |
|
501 |
+
#: adminimize_page.php:532
|
502 |
+
#: adminimize_page.php:621
|
|
|
503 |
msgid "Custom Fields"
|
504 |
msgstr "Benutzerdefinierte Felder"
|
505 |
|
506 |
+
#: adminimize_page.php:534
|
507 |
#@ adminimize
|
508 |
msgid "Password Protect This Post"
|
509 |
msgstr "Diesen Artikel durch ein Passwort schützen"
|
510 |
|
511 |
+
#: adminimize_page.php:535
|
|
|
512 |
msgid "Post Author"
|
513 |
msgstr "Autor"
|
514 |
|
515 |
+
#: adminimize_page.php:536
|
|
|
516 |
msgid "Post Revisions"
|
517 |
msgstr "Post Revisions"
|
518 |
|
519 |
+
#: adminimize_page.php:537
|
520 |
#@ adminimize
|
521 |
msgid "Related, Shortcuts"
|
522 |
msgstr "Siehe auch, Tastaturkürzel"
|
523 |
|
524 |
+
#: adminimize_page.php:538
|
525 |
+
#: adminimize_page.php:630
|
526 |
#@ adminimize
|
527 |
msgid "Messenges"
|
528 |
msgstr "Mitteilungen"
|
529 |
|
530 |
+
#: adminimize_page.php:539
|
531 |
+
#: adminimize_page.php:631
|
532 |
#@ adminimize
|
533 |
msgid "h2: Advanced Options"
|
534 |
msgstr "h2: Erweiterte Einstellungen"
|
535 |
|
536 |
+
#: adminimize_page.php:540
|
537 |
+
#: adminimize_page.php:632
|
538 |
#@ adminimize
|
539 |
msgid "Media Buttons (all)"
|
540 |
msgstr "Media Buttons (alle)"
|
541 |
|
542 |
+
#: adminimize_page.php:541
|
543 |
+
#: adminimize_page.php:633
|
544 |
#@ adminimize
|
545 |
msgid "Word count"
|
546 |
msgstr "Word count"
|
547 |
|
548 |
+
#: adminimize_page.php:542
|
|
|
549 |
msgid "Post Slug"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: adminimize_page.php:543
|
553 |
+
#: adminimize_page.php:635
|
554 |
+
#: adminimize_page.php:984
|
555 |
#@ adminimize
|
556 |
msgid "Publish Actions"
|
557 |
msgstr "Publish Actions"
|
558 |
|
559 |
+
#: adminimize_page.php:544
|
560 |
+
#: adminimize_page.php:636
|
|
|
561 |
msgid "Discussion"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: adminimize_page.php:549
|
|
|
565 |
msgid "Post Thumbnail"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: adminimize_page.php:551
|
569 |
+
#: adminimize_page.php:643
|
|
|
570 |
#@ adminimize
|
571 |
msgid "Suggested tags from"
|
572 |
msgstr "Suggested tags from"
|
573 |
|
574 |
+
#: adminimize_page.php:553
|
|
|
575 |
msgid "Text Control"
|
576 |
msgstr "Text Control"
|
577 |
|
578 |
+
#: adminimize_page.php:555
|
579 |
+
#: adminimize_page.php:645
|
|
|
580 |
msgid "HTML Special Characters"
|
581 |
msgstr "HTML Special Characters"
|
582 |
|
583 |
+
#: adminimize_page.php:557
|
|
|
584 |
msgid "All in One SEO Pack"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: adminimize_page.php:622
|
588 |
#@ adminimize
|
589 |
msgid "Comments & Pings"
|
590 |
msgstr "Kommentare & Pings"
|
591 |
|
592 |
+
#: adminimize_page.php:623
|
593 |
#@ adminimize
|
594 |
msgid "Password Protect This Page"
|
595 |
msgstr "Diese Seite mit einem Passwort versehen"
|
596 |
|
597 |
+
#: adminimize_page.php:624
|
|
|
598 |
msgid "Attributes"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: adminimize_page.php:625
|
602 |
#@ adminimize
|
603 |
msgid "Page Template"
|
604 |
msgstr "Seiten Template"
|
605 |
|
606 |
+
#: adminimize_page.php:626
|
607 |
#@ adminimize
|
608 |
msgid "Page Order"
|
609 |
msgstr "Reihenfolge"
|
610 |
|
611 |
+
#: adminimize_page.php:627
|
|
|
612 |
msgid "Page Author"
|
613 |
msgstr "Seitenautor"
|
614 |
|
615 |
+
#: adminimize_page.php:628
|
|
|
616 |
msgid "Page Revisions"
|
617 |
msgstr "Page Revisions"
|
618 |
|
619 |
+
#: adminimize_page.php:629
|
620 |
#@ adminimize
|
621 |
msgid "Related"
|
622 |
msgstr "Siehe auch"
|
623 |
|
624 |
+
#: adminimize_page.php:634
|
|
|
625 |
msgid "Page Slug"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: adminimize_page.php:641
|
|
|
629 |
msgid "Page Image"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: adminimize_page.php:683
|
633 |
+
#: adminimize_page.php:731
|
634 |
#@ adminimize
|
635 |
msgid "After activate the check box it heavy attitudes will change."
|
636 |
msgstr "Wenn die Checkbox aktiv ist, dann wird das Ändern von Einstellungen erschwert."
|
637 |
|
638 |
+
#: adminimize_page.php:714
|
|
|
639 |
msgid "Profile"
|
640 |
msgstr "Profile"
|
641 |
|
642 |
#: adminimize_page.php:154
|
643 |
+
#: adminimize_page.php:778
|
644 |
+
#: adminimize_page.php:785
|
645 |
#@ adminimize
|
646 |
msgid "Write options - Post"
|
647 |
msgstr "Schreiben Einstellungen - Beiträge"
|
648 |
|
649 |
+
#: adminimize_page.php:824
|
650 |
#@ adminimize
|
651 |
msgid "Your own post options"
|
652 |
msgstr "Deine eigenen Beitrags-Einstellungen"
|
653 |
|
654 |
#: adminimize_page.php:157
|
655 |
+
#: adminimize_page.php:861
|
656 |
+
#: adminimize_page.php:868
|
657 |
#@ adminimize
|
658 |
msgid "Write options - Page"
|
659 |
msgstr "Schreiben Einstellungen - Seiten"
|
660 |
|
661 |
+
#: adminimize_page.php:907
|
662 |
#@ adminimize
|
663 |
msgid "Your own page options"
|
664 |
msgstr "Deine eigenen Seiten-Einstellungen"
|
665 |
|
666 |
#: adminimize_page.php:160
|
667 |
+
#: adminimize_page.php:944
|
668 |
#@ adminimize
|
669 |
msgid "Links options"
|
670 |
msgstr "Link Einstellungen"
|
671 |
|
672 |
+
#: adminimize_page.php:977
|
|
|
673 |
msgid "Name"
|
674 |
msgstr "Name"
|
675 |
|
676 |
+
#: adminimize_page.php:978
|
|
|
677 |
msgid "Web Address"
|
678 |
msgstr "Web-Adresse"
|
679 |
|
680 |
+
#: adminimize_page.php:979
|
|
|
681 |
msgid "Description"
|
682 |
msgstr "Beschreibung"
|
683 |
|
684 |
+
#: adminimize_page.php:981
|
|
|
685 |
msgid "Target"
|
686 |
msgstr "Target"
|
687 |
|
688 |
+
#: adminimize_page.php:982
|
|
|
689 |
msgid "Link Relationship (XFN)"
|
690 |
msgstr "Link-Beziehungen (XFN)"
|
691 |
|
692 |
+
#: adminimize_page.php:983
|
|
|
693 |
msgid "Advanced"
|
694 |
msgstr "Erweitert"
|
695 |
|
696 |
#: adminimize_page.php:163
|
697 |
+
#: adminimize_page.php:1066
|
698 |
+
#: adminimize_page.php:1151
|
699 |
#@ adminimize
|
700 |
msgid "Set Theme"
|
701 |
msgstr "Theme zuweisen"
|
702 |
|
703 |
+
#: adminimize_page.php:1073
|
704 |
#@ adminimize
|
705 |
msgid "For better peformance with many users on your blog; load only userlist, when you will change the theme options for users."
|
706 |
msgstr "Für eine bessere Performance bei vielen Usern in deinem Blog werden die Userdaten nur nach Aufforderung geladen."
|
707 |
|
708 |
+
#: adminimize_page.php:1076
|
709 |
#@ adminimize
|
710 |
msgid "Load User Data"
|
711 |
msgstr "Lade User Daten"
|
712 |
|
713 |
+
#: adminimize_page.php:1087
|
|
|
714 |
msgid "User-ID"
|
715 |
msgstr "User-ID"
|
716 |
|
717 |
+
#: adminimize_page.php:1088
|
|
|
718 |
msgid "Username"
|
719 |
msgstr "Benutzername"
|
720 |
|
721 |
+
#: adminimize_page.php:1089
|
|
|
722 |
msgid "Display name publicly as"
|
723 |
msgstr "Name im Blog"
|
724 |
|
725 |
+
#: adminimize_page.php:1090
|
|
|
726 |
msgid "Admin-Color Scheme"
|
727 |
msgstr "Admin-Color Scheme"
|
728 |
|
729 |
+
#: adminimize_page.php:1091
|
|
|
730 |
msgid "User Level"
|
731 |
msgstr "User Level"
|
732 |
|
733 |
+
#: adminimize_page.php:1092
|
|
|
734 |
msgid "Role"
|
735 |
msgstr "Rolle"
|
736 |
|
737 |
#: adminimize_page.php:169
|
738 |
+
#: adminimize_page.php:1199
|
739 |
#@ adminimize
|
740 |
msgid "Deinstall Options"
|
741 |
msgstr "Einstellungen deinstallieren"
|
742 |
|
743 |
+
#: adminimize_page.php:1202
|
744 |
#@ adminimize
|
745 |
msgid "Use this option for clean your database from all entries of this plugin. When you deactivate the plugin, the deinstall of the plugin <strong>clean not</strong> all entries in the database."
|
746 |
msgstr "Nutze diese Option, um die Einstellungen für das Plugin in der Datenbank zu löschen. Das Plugin entfernt die Einträge <strong>nicht</strong>, wenn es deaktiviert wird!"
|
747 |
|
748 |
+
#: adminimize_page.php:1206
|
749 |
#@ adminimize
|
750 |
msgid "Delete Options"
|
751 |
msgstr "Einstellungen Löschen"
|
752 |
|
753 |
#: adminimize_page.php:116
|
754 |
#: adminimize_page.php:172
|
755 |
+
#: adminimize_page.php:1220
|
756 |
#@ adminimize
|
757 |
msgid "About the plugin"
|
758 |
msgstr "Über das Plugin"
|
759 |
|
760 |
#: adminimize_page.php:118
|
761 |
+
#: adminimize_page.php:1223
|
762 |
#@ adminimize
|
763 |
msgid "Further information: Visit the <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
|
764 |
msgstr "Weitere Information: Besuche die <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">Plugin Webseite</a> für weitere Informationen oder hole die aktuelle Version des Plugins."
|
765 |
|
766 |
#: adminimize_page.php:124
|
767 |
+
#: adminimize_page.php:1229
|
768 |
#@ adminimize
|
769 |
msgid "PayPal - The safer, easier way to pay online!"
|
770 |
msgstr "PayPal - Der sichere und einfache Weg zu zahlen!"
|
771 |
|
772 |
#: adminimize_page.php:128
|
773 |
+
#: adminimize_page.php:1233
|
774 |
#@ adminimize
|
775 |
msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a> or donate."
|
776 |
msgstr "Du willst Danke sagen? Besuche meine <a href=\"http://bueltge.de/wunschliste/\">Wunschliste</a> oder spende."
|
777 |
|
778 |
+
#: adminimize.php:100
|
779 |
#@ adminimize
|
780 |
msgid "All entries in the database were imported."
|
781 |
msgstr "Alle Einträge wurden in die Datenbank geschrieben."
|
782 |
|
783 |
#: adminimize_page.php:166
|
784 |
+
#: adminimize_page.php:1164
|
785 |
#@ adminimize
|
786 |
msgid "Export/Import Options"
|
787 |
msgstr "Export/Import Einstellungen"
|
788 |
|
789 |
+
#: adminimize_page.php:1168
|
790 |
#@ adminimize
|
791 |
msgid "Export"
|
792 |
msgstr "Export"
|
793 |
|
794 |
+
#: adminimize_page.php:1173
|
795 |
#@ adminimize
|
796 |
msgid "Export »"
|
797 |
msgstr "Exportieren »"
|
798 |
|
799 |
+
#: adminimize_page.php:1177
|
800 |
#@ adminimize
|
801 |
msgid "Import"
|
802 |
msgstr "Import"
|
803 |
|
804 |
+
#: adminimize_page.php:1182
|
805 |
#@ adminimize
|
806 |
msgid "Choose a file from your computer"
|
807 |
msgstr "Wähle eine Datei vom Rechner"
|
808 |
|
809 |
+
#: adminimize_page.php:1187
|
810 |
#@ adminimize
|
811 |
msgid "Upload file and import »"
|
812 |
msgstr "Hochladen der Datei und importieren »"
|
816 |
msgid "MiniMenu"
|
817 |
msgstr "MiniMenu"
|
818 |
|
819 |
+
#: adminimize_page.php:332
|
820 |
+
#: adminimize_page.php:447
|
821 |
+
#: adminimize_page.php:769
|
822 |
+
#: adminimize_page.php:852
|
823 |
+
#: adminimize_page.php:935
|
824 |
+
#: adminimize_page.php:1057
|
825 |
+
#: adminimize_page.php:1156
|
826 |
+
#: adminimize_page.php:1190
|
827 |
+
#: adminimize_page.php:1211
|
828 |
+
#: adminimize_page.php:1237
|
829 |
#@ adminimize
|
830 |
msgid "scroll to top"
|
831 |
msgstr "Nach oben"
|
832 |
|
833 |
+
#: adminimize_page.php:1170
|
834 |
#@ adminimize
|
835 |
msgid "You can save a .seq file with your options."
|
836 |
msgstr "Du kannst deine Einstellungen in einer .seq Datei speichern."
|
837 |
|
838 |
+
#: adminimize_page.php:1180
|
839 |
#@ adminimize
|
840 |
msgid "Choose a Adminimize (<em>.seq</em>) file to upload, then click <em>Upload file and import</em>."
|
841 |
msgstr "Wähle eine Adminimize (<em>.seq</em>) Datei zum hoch laden und dann klick <em>Hochladen der Datei und importieren</em>"
|
842 |
|
843 |
+
#: adminimize_page.php:269
|
844 |
#@ adminimize
|
845 |
msgid "Category Height"
|
846 |
msgstr "Kategorie-Höhe"
|
847 |
|
848 |
+
#: adminimize_page.php:275
|
849 |
#@ adminimize
|
850 |
msgid "View the Meta Box with Categories in the full height, no scrollbar or whitespace."
|
851 |
msgstr "Stellt in die Meta Box der Kategorien in voller Höhe dar, kein Scrollbar und kein Leerraum."
|
852 |
|
853 |
+
#: adminimize_page.php:286
|
854 |
#@ adminimize
|
855 |
msgid "In the Footer you can display an advice for changing the Default-design, (x)HTML is possible."
|
856 |
msgstr "Im Footer kann ein Hinweis auf die aktive Veränderung des Standard-Layout gesetzt werden, (x)HTML erlaubt."
|
857 |
|
858 |
+
#: adminimize_page.php:308
|
859 |
#@ adminimize
|
860 |
msgid "Dashboard deactivate, redirect to"
|
861 |
msgstr "Dashboard inaktiv, Weiterleitung nach"
|
862 |
|
863 |
+
#: adminimize_page.php:321
|
864 |
#@ adminimize
|
865 |
msgid "You have deactivated the Dashboard, please select a page for redirection?"
|
866 |
msgstr "Du hast das Dashboard deaktiviert, wohin soll der Nutzer weitergeleitet werden?"
|
867 |
|
868 |
+
#: adminimize_page.php:545
|
869 |
+
#: adminimize_page.php:637
|
|
|
870 |
msgid "HTML Editor Button"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: adminimize_page.php:255
|
874 |
#@ adminimize
|
875 |
msgid "All Thickbox-function use the full area of the browser. Thickbox is for example in upload media-files."
|
876 |
msgstr "Alle Thickbox-Funktion verwenden den vollständigen Bereich des Browsers. Thickbox ist beispielsweise in der Medien-Upload-Funktion."
|
877 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/adminimize-xx_XX.pot
CHANGED
@@ -13,242 +13,217 @@ msgstr ""
|
|
13 |
"X-Poedit-Language: \n"
|
14 |
"X-Poedit-Country: \n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;
|
17 |
"X-Poedit-Basepath: ../\n"
|
18 |
"X-Poedit-Bookmarks: \n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
-
#: adminimize.php:
|
23 |
#@ adminimize
|
24 |
msgid "Unknown error."
|
25 |
-
msgstr "
|
26 |
|
27 |
-
#: adminimize.php:
|
28 |
#@ adminimize
|
29 |
msgid "The updates were saved."
|
30 |
-
msgstr "
|
31 |
|
32 |
-
#: adminimize.php:
|
33 |
#@ adminimize
|
34 |
msgid "You have not enough rights to edit entries in the database."
|
35 |
-
msgstr "
|
36 |
|
37 |
-
#: adminimize.php:
|
38 |
#@ adminimize
|
39 |
msgid "All entries in the database were deleted."
|
40 |
-
msgstr "
|
41 |
|
42 |
-
#: adminimize.php:
|
43 |
#@ adminimize
|
44 |
msgid "Set the checkbox on deinstall-button."
|
45 |
-
msgstr "
|
46 |
|
47 |
-
#: adminimize.php:
|
48 |
#@ adminimize
|
49 |
msgid "Can't load menu and submenu."
|
50 |
-
msgstr "
|
51 |
|
52 |
-
#: adminimize.php:
|
53 |
#@ adminimize
|
54 |
msgid "Backend-Theme was activated!"
|
55 |
-
msgstr "
|
56 |
|
57 |
-
#: adminimize.php:
|
58 |
#@ adminimize
|
59 |
msgid "Load user data to themes was successful."
|
60 |
-
msgstr "
|
61 |
|
62 |
-
#: adminimize.php:
|
63 |
-
#: adminimize_page.php:
|
64 |
-
#: adminimize_page.php:
|
65 |
-
#@ default
|
66 |
#@ adminimize
|
67 |
msgid "Categories"
|
68 |
-
msgstr "
|
69 |
|
70 |
-
#: adminimize.php:
|
71 |
-
#: adminimize.php:
|
72 |
-
#@ default
|
73 |
msgid "+ Add New Category"
|
74 |
-
msgstr "
|
75 |
|
76 |
-
#: adminimize.php:
|
77 |
-
#: adminimize.php:
|
78 |
-
#@ default
|
79 |
msgid "New category name"
|
80 |
-
msgstr "
|
81 |
|
82 |
-
#: adminimize.php:
|
83 |
-
#: adminimize.php:
|
84 |
-
#@ default
|
85 |
msgid "Parent category"
|
86 |
-
msgstr "
|
87 |
|
88 |
-
#: adminimize.php:
|
89 |
-
#: adminimize.php:
|
90 |
-
#@ default
|
91 |
msgid "Add"
|
92 |
-
msgstr "
|
93 |
|
94 |
-
#: adminimize.php:
|
95 |
-
#: adminimize_page.php:
|
96 |
-
#@ default
|
97 |
#@ adminimize
|
98 |
msgid "Add New Category"
|
99 |
-
msgstr "
|
100 |
|
101 |
-
#: adminimize.php:
|
102 |
-
#: adminimize.php:
|
103 |
-
#: adminimize_page.php:
|
104 |
-
#@ default
|
105 |
#@ adminimize
|
106 |
msgid "Tags"
|
107 |
-
msgstr "
|
108 |
|
109 |
-
#: adminimize.php:
|
110 |
-
#: adminimize.php:
|
111 |
-
#: adminimize.php:
|
112 |
-
#@ default
|
113 |
msgid "Blue"
|
114 |
-
msgstr "
|
115 |
|
116 |
-
#: adminimize.php:
|
117 |
-
#: adminimize.php:
|
118 |
-
#: adminimize.php:
|
119 |
-
#@ default
|
120 |
msgid "Gray"
|
121 |
-
msgstr "
|
122 |
|
123 |
-
#: adminimize.php:
|
124 |
-
#: adminimize.php:
|
125 |
-
#: adminimize.php:
|
126 |
-
#@ default
|
127 |
msgid "Classic"
|
128 |
-
msgstr "
|
129 |
|
130 |
-
#: adminimize.php:
|
131 |
-
#: adminimize.php:
|
132 |
-
#: adminimize.php:
|
133 |
-
#@ default
|
134 |
msgid "Fresh"
|
135 |
-
msgstr "
|
136 |
|
137 |
-
#: adminimize.php:
|
138 |
-
#@ default
|
139 |
msgid "WordPress 2.3"
|
140 |
-
msgstr "
|
141 |
|
142 |
-
#: adminimize.php:
|
143 |
-
#@ default
|
144 |
msgid "Maybe i'm colorblind"
|
145 |
-
msgstr "
|
146 |
|
147 |
-
#: adminimize.php:
|
148 |
-
#@ default
|
149 |
msgid "Grey"
|
150 |
-
msgstr "
|
151 |
|
152 |
-
#: adminimize.php:
|
153 |
-
#: adminimize.php:
|
154 |
-
#@ default
|
155 |
msgid "Dashboard"
|
156 |
-
msgstr "
|
157 |
-
|
158 |
-
#: adminimize.php:
|
159 |
-
#: adminimize.php:
|
160 |
-
#: adminimize.php:
|
161 |
-
#: adminimize.php:
|
162 |
-
#: adminimize.php:
|
163 |
-
#@ default
|
164 |
msgid "Log Out"
|
165 |
-
msgstr "
|
166 |
|
167 |
-
#: adminimize.php:
|
168 |
-
#@ default
|
169 |
msgid "Visit plugin homepage"
|
170 |
-
msgstr "
|
171 |
|
172 |
-
#: adminimize.php:
|
173 |
-
#@ default
|
174 |
msgid "plugin"
|
175 |
-
msgstr "
|
176 |
|
177 |
-
#: adminimize.php:
|
178 |
-
#@ default
|
179 |
msgid "Version"
|
180 |
-
msgstr "
|
181 |
|
182 |
-
#: adminimize.php:
|
183 |
#@ adminimize
|
184 |
msgid "History"
|
185 |
-
msgstr "
|
186 |
|
187 |
-
#: adminimize.php:
|
188 |
-
#@ default
|
189 |
msgid "Author"
|
190 |
-
msgstr "
|
191 |
|
192 |
-
#: adminimize.php:
|
193 |
#@ adminimize
|
194 |
msgid "plugin activate"
|
195 |
-
msgstr "
|
196 |
|
197 |
-
#: adminimize.php:
|
198 |
-
#@ default
|
199 |
msgid "Settings"
|
200 |
-
msgstr "
|
201 |
|
202 |
-
#: adminimize.php:
|
203 |
-
#: adminimize.php:
|
204 |
#@ adminimize
|
205 |
msgid "<a href=\"http://wordpress.org/extend/plugins/adminimize/\">Documentation</a>"
|
206 |
-
msgstr "
|
207 |
|
208 |
-
|
209 |
-
#: adminimize.php:0
|
210 |
-
#: adminimize.php:1095
|
211 |
#: adminimize_page.php:109
|
212 |
#@ adminimize
|
213 |
msgid "Adminimize"
|
214 |
-
msgstr "
|
215 |
|
216 |
-
#: adminimize.php:
|
217 |
#@ adminimize
|
218 |
msgid "Adminimize Options"
|
219 |
-
msgstr "
|
220 |
|
221 |
-
#: adminimize.php:
|
222 |
-
#@ default
|
223 |
msgid "Cheatin’ uh?"
|
224 |
-
msgstr "
|
225 |
|
226 |
#: adminimize_page.php:115
|
227 |
#: adminimize_page.php:140
|
228 |
#: adminimize_page.php:186
|
229 |
-
#: adminimize_page.php:
|
230 |
-
#: adminimize_page.php:
|
231 |
-
#: adminimize_page.php:
|
232 |
-
#: adminimize_page.php:
|
233 |
-
#: adminimize_page.php:
|
234 |
-
#: adminimize_page.php:
|
235 |
-
#: adminimize_page.php:
|
236 |
-
#: adminimize_page.php:
|
237 |
-
#: adminimize_page.php:
|
238 |
-
#@ default
|
239 |
msgid "Click to toggle"
|
240 |
-
msgstr "
|
241 |
|
242 |
#: adminimize_page.php:145
|
243 |
#: adminimize_page.php:187
|
244 |
#@ adminimize
|
245 |
msgid "Backend Options"
|
246 |
-
msgstr "
|
247 |
|
248 |
#: adminimize_page.php:196
|
249 |
#@ adminimize
|
250 |
msgid "User-Info"
|
251 |
-
msgstr "
|
252 |
|
253 |
#: adminimize_page.php:200
|
254 |
#: adminimize_page.php:213
|
@@ -259,723 +234,644 @@ msgstr "User-Info"
|
|
259 |
#: adminimize_page.php:263
|
260 |
#: adminimize_page.php:273
|
261 |
#: adminimize_page.php:283
|
262 |
-
#: adminimize_page.php:
|
263 |
-
#: adminimize_page.php:322
|
264 |
#@ adminimize
|
265 |
msgid "Default"
|
266 |
-
msgstr "
|
267 |
|
268 |
#: adminimize_page.php:201
|
269 |
#: adminimize_page.php:224
|
270 |
-
#: adminimize_page.php:234
|
271 |
#@ adminimize
|
272 |
msgid "Hide"
|
273 |
-
msgstr "
|
274 |
|
275 |
#: adminimize_page.php:202
|
276 |
#@ adminimize
|
277 |
msgid "Only logout"
|
278 |
-
msgstr "
|
279 |
|
280 |
#: adminimize_page.php:203
|
281 |
#@ adminimize
|
282 |
msgid "User & Logout"
|
283 |
-
msgstr "
|
284 |
|
285 |
#: adminimize_page.php:204
|
286 |
#@ adminimize
|
287 |
msgid "The "User-Info-area" is on the top right side of the backend. You can hide or reduced show."
|
288 |
-
msgstr "
|
289 |
|
290 |
#: adminimize_page.php:209
|
291 |
#@ adminimize
|
292 |
msgid "Change User-Info, redirect to"
|
293 |
-
msgstr "
|
294 |
|
295 |
#: adminimize_page.php:214
|
296 |
#@ adminimize
|
297 |
msgid "Frontpage of the Blog"
|
298 |
-
msgstr "
|
299 |
|
300 |
#: adminimize_page.php:215
|
301 |
#@ adminimize
|
302 |
msgid "When the "User-Info-area" change it, then it is possible to change the redirect."
|
303 |
-
msgstr "
|
304 |
|
305 |
#: adminimize_page.php:219
|
306 |
#@ adminimize
|
307 |
msgid "Footer"
|
308 |
-
msgstr "
|
309 |
|
310 |
#: adminimize_page.php:225
|
311 |
#@ adminimize
|
312 |
msgid "The Footer-area can hide, include all links and details."
|
313 |
-
msgstr "
|
314 |
|
315 |
-
#: adminimize_page.php:
|
316 |
#@ adminimize
|
317 |
msgid "WriteScroll"
|
318 |
-
msgstr "
|
319 |
|
|
|
320 |
#: adminimize_page.php:244
|
321 |
#: adminimize_page.php:254
|
322 |
#: adminimize_page.php:264
|
323 |
#: adminimize_page.php:274
|
324 |
#: adminimize_page.php:284
|
325 |
-
#: adminimize_page.php:294
|
326 |
#@ adminimize
|
327 |
msgid "Activate"
|
328 |
-
msgstr "
|
329 |
|
330 |
-
#: adminimize_page.php:
|
331 |
#@ adminimize
|
332 |
msgid "With the WriteScroll option active, these pages will automatically scroll to an optimal position for editing, when you visit Write Post or Write Page."
|
333 |
-
msgstr "
|
334 |
|
335 |
-
#: adminimize_page.php:
|
336 |
#@ adminimize
|
337 |
msgid "Timestamp"
|
338 |
-
msgstr "
|
339 |
|
340 |
-
#: adminimize_page.php:
|
341 |
#@ adminimize
|
342 |
msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
|
343 |
-
msgstr "
|
344 |
|
345 |
-
#: adminimize_page.php:
|
346 |
#@ adminimize
|
347 |
msgid "Thickbox FullScreen"
|
348 |
-
msgstr "
|
349 |
|
350 |
-
#: adminimize_page.php:
|
351 |
#@ adminimize
|
352 |
msgid "Flashuploader"
|
353 |
-
msgstr "
|
354 |
|
355 |
-
#: adminimize_page.php:
|
356 |
#@ adminimize
|
357 |
msgid "Disable the flashuploader and users use only the standard uploader."
|
358 |
-
msgstr "
|
359 |
|
360 |
-
#: adminimize_page.php:
|
361 |
#@ adminimize
|
362 |
msgid "Advice in Footer"
|
363 |
-
msgstr "
|
364 |
|
365 |
-
#: adminimize_page.php:
|
366 |
#@ adminimize
|
367 |
msgid "Manage Posts"
|
368 |
-
msgstr "
|
369 |
|
370 |
-
#: adminimize_page.php:
|
371 |
#@ adminimize
|
372 |
msgid "Manage Pages"
|
373 |
-
msgstr "
|
374 |
|
375 |
-
#: adminimize_page.php:
|
376 |
#@ adminimize
|
377 |
msgid "Write Post"
|
378 |
-
msgstr "
|
379 |
|
380 |
-
#: adminimize_page.php:
|
381 |
#@ adminimize
|
382 |
msgid "Write Page"
|
383 |
-
msgstr "
|
384 |
|
385 |
-
#: adminimize_page.php:
|
386 |
-
#: adminimize_page.php:
|
387 |
#@ adminimize
|
388 |
msgid "Comments"
|
389 |
-
msgstr "
|
390 |
|
391 |
-
#: adminimize_page.php:
|
392 |
#@ adminimize
|
393 |
msgid "other Page"
|
394 |
-
msgstr "
|
395 |
|
396 |
-
#: adminimize_page.php:
|
397 |
-
#: adminimize_page.php:
|
398 |
-
#: adminimize_page.php:
|
399 |
-
#: adminimize_page.php:
|
400 |
-
#: adminimize_page.php:
|
401 |
-
#: adminimize_page.php:
|
402 |
#@ adminimize
|
403 |
msgid "Update Options"
|
404 |
-
msgstr "
|
405 |
|
406 |
#: adminimize_page.php:148
|
407 |
-
#: adminimize_page.php:
|
408 |
#@ adminimize
|
409 |
msgid "Global options"
|
410 |
-
msgstr "
|
411 |
|
412 |
-
#: adminimize_page.php:
|
413 |
-
#: adminimize_page.php:
|
414 |
-
#: adminimize_page.php:
|
415 |
-
#: adminimize_page.php:
|
416 |
-
#: adminimize_page.php:
|
417 |
-
#: adminimize_page.php:
|
418 |
#@ adminimize
|
419 |
msgid "Option"
|
420 |
-
msgstr "
|
421 |
|
422 |
-
#: adminimize_page.php:
|
423 |
-
#: adminimize_page.php:
|
424 |
-
#: adminimize_page.php:
|
425 |
-
#: adminimize_page.php:
|
426 |
-
#: adminimize_page.php:
|
427 |
#@ adminimize
|
428 |
msgid "Deactivate for"
|
429 |
-
msgstr "
|
430 |
|
431 |
-
#: adminimize_page.php:
|
432 |
#@ adminimize
|
433 |
msgid "Favorite Actions"
|
434 |
-
msgstr "
|
435 |
|
436 |
-
#: adminimize_page.php:
|
437 |
#@ adminimize
|
438 |
msgid "Screen-Meta"
|
439 |
-
msgstr "
|
440 |
|
441 |
-
#: adminimize_page.php:
|
442 |
-
#: adminimize_page.php:
|
443 |
-
#: adminimize_page.php:
|
444 |
#@ adminimize
|
445 |
-
#@ default
|
446 |
msgid "Screen Options"
|
447 |
-
msgstr "
|
448 |
|
449 |
-
#: adminimize_page.php:
|
450 |
#@ adminimize
|
451 |
msgid "Contextual Help"
|
452 |
-
msgstr "
|
453 |
|
454 |
-
#: adminimize_page.php:
|
455 |
#@ adminimize
|
456 |
msgid "Admin Color Scheme"
|
457 |
-
msgstr "
|
458 |
|
459 |
-
#: adminimize_page.php:
|
460 |
-
#: adminimize_page.php:
|
461 |
#@ adminimize
|
462 |
msgid "Your own options"
|
463 |
-
msgstr "
|
464 |
|
465 |
-
#: adminimize_page.php:
|
466 |
-
#: adminimize_page.php:
|
467 |
-
#: adminimize_page.php:
|
468 |
-
#: adminimize_page.php:
|
469 |
#@ adminimize
|
470 |
msgid "ID or class"
|
471 |
-
msgstr "
|
472 |
|
473 |
-
#: adminimize_page.php:
|
474 |
-
#: adminimize_page.php:
|
475 |
-
#: adminimize_page.php:
|
476 |
-
#: adminimize_page.php:
|
477 |
#@ adminimize
|
478 |
msgid "It is possible to add your own IDs or classes from elements and tags. You can find IDs and classes with the FireBug Add-on for Firefox. Assign a value and the associate name per line."
|
479 |
-
msgstr "
|
480 |
|
481 |
-
#: adminimize_page.php:
|
482 |
-
#: adminimize_page.php:
|
483 |
-
#: adminimize_page.php:
|
484 |
-
#: adminimize_page.php:
|
485 |
#@ adminimize
|
486 |
msgid "Possible nomination for ID or class. Separate multiple nominations through a carriage return."
|
487 |
-
msgstr "
|
488 |
|
489 |
-
#: adminimize_page.php:
|
490 |
-
#: adminimize_page.php:
|
491 |
-
#: adminimize_page.php:
|
492 |
-
#: adminimize_page.php:
|
493 |
#@ adminimize
|
494 |
msgid "Possible IDs or classes. Separate multiple values through a carriage return."
|
495 |
-
msgstr "
|
496 |
|
497 |
#: adminimize_page.php:151
|
498 |
-
#: adminimize_page.php:
|
499 |
#@ adminimize
|
500 |
msgid "Menu Options"
|
501 |
-
msgstr "
|
502 |
|
503 |
-
#: adminimize_page.php:
|
504 |
#@ adminimize
|
505 |
msgid "Menu options - Menu, <span style=\\\"font-weight: 400;\\\">Submenu</span>"
|
506 |
-
msgstr "
|
507 |
|
508 |
-
#: adminimize_page.php:
|
509 |
-
#: adminimize_page.php:
|
510 |
-
#@ default
|
511 |
msgid "Help"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: adminimize_page.php:
|
515 |
-
#: adminimize_page.php:
|
516 |
#@ adminimize
|
517 |
msgid "Permalink"
|
518 |
-
msgstr "
|
519 |
|
520 |
-
#: adminimize_page.php:
|
521 |
#@ adminimize
|
522 |
msgid "Excerpt"
|
523 |
-
msgstr "
|
524 |
|
525 |
-
#: adminimize_page.php:
|
526 |
#@ adminimize
|
527 |
msgid "Trackbacks"
|
528 |
-
msgstr "
|
529 |
|
530 |
-
#: adminimize_page.php:
|
531 |
-
#: adminimize_page.php:
|
532 |
-
#@ default
|
533 |
msgid "Custom Fields"
|
534 |
-
msgstr "
|
535 |
|
536 |
-
#: adminimize_page.php:
|
537 |
#@ adminimize
|
538 |
msgid "Password Protect This Post"
|
539 |
-
msgstr "
|
540 |
|
541 |
-
#: adminimize_page.php:
|
542 |
-
#@ default
|
543 |
msgid "Post Author"
|
544 |
-
msgstr "
|
545 |
|
546 |
-
#: adminimize_page.php:
|
547 |
-
#@ default
|
548 |
msgid "Post Revisions"
|
549 |
-
msgstr "
|
550 |
|
551 |
-
#: adminimize_page.php:
|
552 |
#@ adminimize
|
553 |
msgid "Related, Shortcuts"
|
554 |
-
msgstr "
|
555 |
|
556 |
-
#: adminimize_page.php:
|
557 |
-
#: adminimize_page.php:
|
558 |
#@ adminimize
|
559 |
msgid "Messenges"
|
560 |
-
msgstr "
|
561 |
|
562 |
-
#: adminimize_page.php:
|
563 |
-
#: adminimize_page.php:
|
564 |
#@ adminimize
|
565 |
msgid "h2: Advanced Options"
|
566 |
-
msgstr "
|
567 |
|
568 |
-
#: adminimize_page.php:
|
569 |
-
#: adminimize_page.php:
|
570 |
#@ adminimize
|
571 |
msgid "Media Buttons (all)"
|
572 |
-
msgstr "
|
573 |
|
574 |
-
#: adminimize_page.php:
|
575 |
-
#: adminimize_page.php:
|
576 |
#@ adminimize
|
577 |
msgid "Word count"
|
578 |
-
msgstr "
|
579 |
|
580 |
-
#: adminimize_page.php:
|
581 |
-
#@ default
|
582 |
msgid "Post Slug"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: adminimize_page.php:
|
586 |
-
#: adminimize_page.php:
|
587 |
-
#: adminimize_page.php:
|
588 |
#@ adminimize
|
589 |
msgid "Publish Actions"
|
590 |
-
msgstr "
|
591 |
|
592 |
-
#: adminimize_page.php:
|
593 |
-
#: adminimize_page.php:
|
594 |
-
#@ default
|
595 |
msgid "Discussion"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: adminimize_page.php:
|
599 |
-
#@ default
|
600 |
msgid "Post Thumbnail"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: adminimize_page.php:
|
604 |
-
#: adminimize_page.php:
|
605 |
-
#@ default
|
606 |
#@ adminimize
|
607 |
msgid "Suggested tags from"
|
608 |
-
msgstr "
|
609 |
|
610 |
-
#: adminimize_page.php:
|
611 |
-
#@ default
|
612 |
msgid "Text Control"
|
613 |
-
msgstr "
|
614 |
|
615 |
-
#: adminimize_page.php:
|
616 |
-
#: adminimize_page.php:
|
617 |
-
#@ default
|
618 |
msgid "HTML Special Characters"
|
619 |
-
msgstr "
|
620 |
|
621 |
-
#: adminimize_page.php:
|
622 |
-
#@ default
|
623 |
msgid "All in One SEO Pack"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: adminimize_page.php:
|
627 |
#@ adminimize
|
628 |
msgid "Comments & Pings"
|
629 |
-
msgstr "
|
630 |
|
631 |
-
#: adminimize_page.php:
|
632 |
#@ adminimize
|
633 |
msgid "Password Protect This Page"
|
634 |
-
msgstr "
|
635 |
|
636 |
-
#: adminimize_page.php:
|
637 |
-
#@ default
|
638 |
msgid "Attributes"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: adminimize_page.php:
|
642 |
#@ adminimize
|
643 |
msgid "Page Template"
|
644 |
-
msgstr "
|
645 |
|
646 |
-
#: adminimize_page.php:
|
647 |
#@ adminimize
|
648 |
msgid "Page Order"
|
649 |
-
msgstr "
|
650 |
|
651 |
-
#: adminimize_page.php:
|
652 |
-
#@ default
|
653 |
msgid "Page Author"
|
654 |
-
msgstr "
|
655 |
|
656 |
-
#: adminimize_page.php:
|
657 |
-
#@ default
|
658 |
msgid "Page Revisions"
|
659 |
-
msgstr "
|
660 |
|
661 |
-
#: adminimize_page.php:
|
662 |
#@ adminimize
|
663 |
msgid "Related"
|
664 |
-
msgstr "
|
665 |
|
666 |
-
#: adminimize_page.php:
|
667 |
-
#@ default
|
668 |
msgid "Page Slug"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: adminimize_page.php:
|
672 |
-
#@ default
|
673 |
msgid "Page Image"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: adminimize_page.php:
|
677 |
-
#: adminimize_page.php:
|
678 |
#@ adminimize
|
679 |
msgid "After activate the check box it heavy attitudes will change."
|
680 |
-
msgstr "
|
681 |
|
682 |
-
#: adminimize_page.php:
|
683 |
-
#@ default
|
684 |
msgid "Profile"
|
685 |
-
msgstr "
|
686 |
|
687 |
#: adminimize_page.php:154
|
688 |
-
#: adminimize_page.php:
|
689 |
-
#: adminimize_page.php:
|
690 |
#@ adminimize
|
691 |
msgid "Write options - Post"
|
692 |
-
msgstr "
|
693 |
|
694 |
-
#: adminimize_page.php:
|
695 |
#@ adminimize
|
696 |
msgid "Your own post options"
|
697 |
-
msgstr "
|
698 |
|
699 |
#: adminimize_page.php:157
|
700 |
-
#: adminimize_page.php:
|
701 |
-
#: adminimize_page.php:
|
702 |
#@ adminimize
|
703 |
msgid "Write options - Page"
|
704 |
-
msgstr "
|
705 |
|
706 |
-
#: adminimize_page.php:
|
707 |
#@ adminimize
|
708 |
msgid "Your own page options"
|
709 |
-
msgstr "
|
710 |
|
711 |
#: adminimize_page.php:160
|
712 |
-
#: adminimize_page.php:
|
713 |
#@ adminimize
|
714 |
msgid "Links options"
|
715 |
-
msgstr "
|
716 |
|
717 |
-
#: adminimize_page.php:
|
718 |
-
#@ default
|
719 |
msgid "Name"
|
720 |
-
msgstr "
|
721 |
|
722 |
-
#: adminimize_page.php:
|
723 |
-
#@ default
|
724 |
msgid "Web Address"
|
725 |
-
msgstr "
|
726 |
|
727 |
-
#: adminimize_page.php:
|
728 |
-
#@ default
|
729 |
msgid "Description"
|
730 |
-
msgstr "
|
731 |
|
732 |
-
#: adminimize_page.php:
|
733 |
-
#@ default
|
734 |
msgid "Target"
|
735 |
-
msgstr "
|
736 |
|
737 |
-
#: adminimize_page.php:
|
738 |
-
#@ default
|
739 |
msgid "Link Relationship (XFN)"
|
740 |
-
msgstr "
|
741 |
|
742 |
-
#: adminimize_page.php:
|
743 |
-
#@ default
|
744 |
msgid "Advanced"
|
745 |
-
msgstr "
|
746 |
|
747 |
#: adminimize_page.php:163
|
748 |
-
#: adminimize_page.php:
|
749 |
-
#: adminimize_page.php:
|
750 |
#@ adminimize
|
751 |
msgid "Set Theme"
|
752 |
-
msgstr "
|
753 |
|
754 |
-
#: adminimize_page.php:
|
755 |
#@ adminimize
|
756 |
msgid "For better peformance with many users on your blog; load only userlist, when you will change the theme options for users."
|
757 |
-
msgstr "
|
758 |
|
759 |
-
#: adminimize_page.php:
|
760 |
#@ adminimize
|
761 |
msgid "Load User Data"
|
762 |
-
msgstr "
|
763 |
|
764 |
-
#: adminimize_page.php:
|
765 |
-
#@ default
|
766 |
msgid "User-ID"
|
767 |
-
msgstr "
|
768 |
|
769 |
-
#: adminimize_page.php:
|
770 |
-
#@ default
|
771 |
msgid "Username"
|
772 |
-
msgstr "
|
773 |
|
774 |
-
#: adminimize_page.php:
|
775 |
-
#@ default
|
776 |
msgid "Display name publicly as"
|
777 |
-
msgstr "
|
778 |
|
779 |
-
#: adminimize_page.php:
|
780 |
-
#@ default
|
781 |
msgid "Admin-Color Scheme"
|
782 |
-
msgstr "
|
783 |
|
784 |
-
#: adminimize_page.php:
|
785 |
-
#@ default
|
786 |
msgid "User Level"
|
787 |
-
msgstr "
|
788 |
|
789 |
-
#: adminimize_page.php:
|
790 |
-
#@ default
|
791 |
msgid "Role"
|
792 |
-
msgstr "
|
793 |
|
794 |
#: adminimize_page.php:169
|
795 |
-
#: adminimize_page.php:
|
796 |
#@ adminimize
|
797 |
msgid "Deinstall Options"
|
798 |
-
msgstr "
|
799 |
|
800 |
-
#: adminimize_page.php:
|
801 |
#@ adminimize
|
802 |
msgid "Use this option for clean your database from all entries of this plugin. When you deactivate the plugin, the deinstall of the plugin <strong>clean not</strong> all entries in the database."
|
803 |
-
msgstr "
|
804 |
|
805 |
-
#: adminimize_page.php:
|
806 |
#@ adminimize
|
807 |
msgid "Delete Options"
|
808 |
-
msgstr "
|
809 |
|
810 |
#: adminimize_page.php:116
|
811 |
#: adminimize_page.php:172
|
812 |
-
#: adminimize_page.php:
|
813 |
#@ adminimize
|
814 |
msgid "About the plugin"
|
815 |
-
msgstr "
|
816 |
|
817 |
#: adminimize_page.php:118
|
818 |
-
#: adminimize_page.php:
|
819 |
#@ adminimize
|
820 |
msgid "Further information: Visit the <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
|
821 |
-
msgstr "
|
822 |
|
823 |
#: adminimize_page.php:124
|
824 |
-
#: adminimize_page.php:
|
825 |
#@ adminimize
|
826 |
msgid "PayPal - The safer, easier way to pay online!"
|
827 |
-
msgstr "
|
828 |
|
829 |
#: adminimize_page.php:128
|
830 |
-
#: adminimize_page.php:
|
831 |
#@ adminimize
|
832 |
msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a> or donate."
|
833 |
-
msgstr "
|
834 |
|
835 |
-
#: adminimize.php:
|
836 |
#@ adminimize
|
837 |
msgid "All entries in the database were imported."
|
838 |
-
msgstr "
|
839 |
|
840 |
#: adminimize_page.php:166
|
841 |
-
#: adminimize_page.php:
|
842 |
#@ adminimize
|
843 |
msgid "Export/Import Options"
|
844 |
-
msgstr "
|
845 |
|
846 |
-
#: adminimize_page.php:
|
847 |
#@ adminimize
|
848 |
msgid "Export"
|
849 |
-
msgstr "
|
850 |
|
851 |
-
#: adminimize_page.php:
|
852 |
#@ adminimize
|
853 |
msgid "Export »"
|
854 |
-
msgstr "
|
855 |
|
856 |
-
#: adminimize_page.php:
|
857 |
#@ adminimize
|
858 |
msgid "Import"
|
859 |
-
msgstr "
|
860 |
|
861 |
-
#: adminimize_page.php:
|
862 |
#@ adminimize
|
863 |
msgid "Choose a file from your computer"
|
864 |
-
msgstr "
|
865 |
|
866 |
-
#: adminimize_page.php:
|
867 |
#@ adminimize
|
868 |
msgid "Upload file and import »"
|
869 |
-
msgstr "
|
870 |
|
871 |
#: adminimize_page.php:141
|
872 |
#@ adminimize
|
873 |
msgid "MiniMenu"
|
874 |
-
msgstr "
|
875 |
-
|
876 |
-
#: adminimize_page.php:
|
877 |
-
#: adminimize_page.php:
|
878 |
-
#: adminimize_page.php:
|
879 |
-
#: adminimize_page.php:
|
880 |
-
#: adminimize_page.php:
|
881 |
-
#: adminimize_page.php:
|
882 |
-
#: adminimize_page.php:
|
883 |
-
#: adminimize_page.php:
|
884 |
-
#: adminimize_page.php:
|
885 |
-
#: adminimize_page.php:
|
886 |
#@ adminimize
|
887 |
msgid "scroll to top"
|
888 |
-
msgstr "
|
889 |
|
890 |
-
#: adminimize_page.php:
|
891 |
#@ adminimize
|
892 |
msgid "You can save a .seq file with your options."
|
893 |
-
msgstr "
|
894 |
|
895 |
-
#: adminimize_page.php:
|
896 |
#@ adminimize
|
897 |
msgid "Choose a Adminimize (<em>.seq</em>) file to upload, then click <em>Upload file and import</em>."
|
898 |
-
msgstr "
|
899 |
|
900 |
-
#: adminimize_page.php:
|
901 |
#@ adminimize
|
902 |
msgid "Category Height"
|
903 |
-
msgstr "
|
904 |
|
905 |
-
#: adminimize_page.php:
|
906 |
#@ adminimize
|
907 |
msgid "View the Meta Box with Categories in the full height, no scrollbar or whitespace."
|
908 |
-
msgstr "
|
909 |
|
910 |
-
#: adminimize_page.php:
|
911 |
#@ adminimize
|
912 |
msgid "In the Footer you can display an advice for changing the Default-design, (x)HTML is possible."
|
913 |
-
msgstr "
|
914 |
|
915 |
-
#: adminimize_page.php:
|
916 |
#@ adminimize
|
917 |
msgid "Dashboard deactivate, redirect to"
|
918 |
-
msgstr "
|
919 |
|
920 |
-
#: adminimize_page.php:
|
921 |
#@ adminimize
|
922 |
msgid "You have deactivated the Dashboard, please select a page for redirection?"
|
923 |
-
msgstr "
|
924 |
|
925 |
-
#: adminimize_page.php:
|
926 |
-
#: adminimize_page.php:
|
927 |
-
#@ default
|
928 |
msgid "HTML Editor Button"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: adminimize_page.php:
|
932 |
#@ adminimize
|
933 |
msgid "All Thickbox-function use the full area of the browser. Thickbox is for example in upload media-files."
|
934 |
-
msgstr "Alle Thickbox-Funktion verwenden den vollständigen Bereich des Browsers. Thickbox ist beispielsweise in der Medien-Upload-Funktion."
|
935 |
-
|
936 |
-
#. translators: plugin header field 'PluginURI'
|
937 |
-
#: adminimize.php:0
|
938 |
-
#@ adminimize
|
939 |
-
msgid "http://bueltge.de/wordpress-admin-theme-adminimize/674/"
|
940 |
-
msgstr ""
|
941 |
-
|
942 |
-
#. translators: plugin header field 'Description'
|
943 |
-
#: adminimize.php:0
|
944 |
-
#@ adminimize
|
945 |
-
msgid "Visually compresses the administratrive meta-boxes so that more admin page content can be initially seen. The plugin that lets you hide 'unnecessary' items from the WordPress administration menu, for alle roles of your install. You can also hide post meta controls on the edit-area to simplify the interface. It is possible to simplify the admin in different for all roles."
|
946 |
-
msgstr "Visuelles Reduzieren der administrativen Meta-Boxen, so dass mehr Raum ist und nur dargestellt, was gebraucht wird. Das Plugin erlaubt das ausblenden von ungenutzten Bereich vom WordPress Administrations-Bereich und dem Menu für alle vorhandenen Rollen. Es ist ebenso möglich, dass man Bereiche in Teilbereichen ausblenden und eigene Bereiche ausblenden kann. Kurz: Reduzieren den Admin-Bereich für das, was die jeweilige Rolle benötigt."
|
947 |
-
|
948 |
-
#. translators: plugin header field 'Author'
|
949 |
-
#: adminimize.php:0
|
950 |
-
#@ adminimize
|
951 |
-
msgid "Frank Bültge"
|
952 |
-
msgstr ""
|
953 |
-
|
954 |
-
#. translators: plugin header field 'AuthorURI'
|
955 |
-
#: adminimize.php:0
|
956 |
-
#@ adminimize
|
957 |
-
msgid "http://bueltge.de/"
|
958 |
-
msgstr ""
|
959 |
-
|
960 |
-
#. translators: plugin header field 'Version'
|
961 |
-
#: adminimize.php:0
|
962 |
-
#@ adminimize
|
963 |
-
msgid "1.7.10"
|
964 |
-
msgstr ""
|
965 |
-
|
966 |
-
#: adminimize_page.php:229
|
967 |
-
#@ adminimize
|
968 |
-
msgid "Header"
|
969 |
-
msgstr "Header"
|
970 |
-
|
971 |
-
#: adminimize_page.php:235
|
972 |
-
#@ adminimize
|
973 |
-
msgid "The Header-area can hide, include all links and details."
|
974 |
-
msgstr "Der header-Bereich kann ausgeblendet werden, inkl. aller Links und Details."
|
975 |
-
|
976 |
-
#: adminimize_page.php:537
|
977 |
-
#: adminimize_page.php:633
|
978 |
-
#@ adminimize
|
979 |
-
msgid "Title"
|
980 |
msgstr ""
|
981 |
|
13 |
"X-Poedit-Language: \n"
|
14 |
"X-Poedit-Country: \n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
17 |
"X-Poedit-Basepath: ../\n"
|
18 |
"X-Poedit-Bookmarks: \n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: adminimize.php:91
|
23 |
#@ adminimize
|
24 |
msgid "Unknown error."
|
25 |
+
msgstr ""
|
26 |
|
27 |
+
#: adminimize.php:98
|
28 |
#@ adminimize
|
29 |
msgid "The updates were saved."
|
30 |
+
msgstr ""
|
31 |
|
32 |
+
#: adminimize.php:99
|
33 |
#@ adminimize
|
34 |
msgid "You have not enough rights to edit entries in the database."
|
35 |
+
msgstr ""
|
36 |
|
37 |
+
#: adminimize.php:101
|
38 |
#@ adminimize
|
39 |
msgid "All entries in the database were deleted."
|
40 |
+
msgstr ""
|
41 |
|
42 |
+
#: adminimize.php:102
|
43 |
#@ adminimize
|
44 |
msgid "Set the checkbox on deinstall-button."
|
45 |
+
msgstr ""
|
46 |
|
47 |
+
#: adminimize.php:103
|
48 |
#@ adminimize
|
49 |
msgid "Can't load menu and submenu."
|
50 |
+
msgstr ""
|
51 |
|
52 |
+
#: adminimize.php:104
|
53 |
#@ adminimize
|
54 |
msgid "Backend-Theme was activated!"
|
55 |
+
msgstr ""
|
56 |
|
57 |
+
#: adminimize.php:105
|
58 |
#@ adminimize
|
59 |
msgid "Load user data to themes was successful."
|
60 |
+
msgstr ""
|
61 |
|
62 |
+
#: adminimize.php:372
|
63 |
+
#: adminimize_page.php:528
|
64 |
+
#: adminimize_page.php:980
|
|
|
65 |
#@ adminimize
|
66 |
msgid "Categories"
|
67 |
+
msgstr ""
|
68 |
|
69 |
+
#: adminimize.php:378
|
70 |
+
#: adminimize.php:389
|
|
|
71 |
msgid "+ Add New Category"
|
72 |
+
msgstr ""
|
73 |
|
74 |
+
#: adminimize.php:380
|
75 |
+
#: adminimize.php:391
|
|
|
76 |
msgid "New category name"
|
77 |
+
msgstr ""
|
78 |
|
79 |
+
#: adminimize.php:381
|
80 |
+
#: adminimize.php:393
|
|
|
81 |
msgid "Parent category"
|
82 |
+
msgstr ""
|
83 |
|
84 |
+
#: adminimize.php:382
|
85 |
+
#: adminimize.php:394
|
|
|
86 |
msgid "Add"
|
87 |
+
msgstr ""
|
88 |
|
89 |
+
#: adminimize.php:391
|
90 |
+
#: adminimize_page.php:529
|
|
|
91 |
#@ adminimize
|
92 |
msgid "Add New Category"
|
93 |
+
msgstr ""
|
94 |
|
95 |
+
#: adminimize.php:415
|
96 |
+
#: adminimize.php:416
|
97 |
+
#: adminimize_page.php:527
|
|
|
98 |
#@ adminimize
|
99 |
msgid "Tags"
|
100 |
+
msgstr ""
|
101 |
|
102 |
+
#: adminimize.php:456
|
103 |
+
#: adminimize.php:470
|
104 |
+
#: adminimize.php:484
|
|
|
105 |
msgid "Blue"
|
106 |
+
msgstr ""
|
107 |
|
108 |
+
#: adminimize.php:463
|
109 |
+
#: adminimize.php:477
|
110 |
+
#: adminimize.php:491
|
|
|
111 |
msgid "Gray"
|
112 |
+
msgstr ""
|
113 |
|
114 |
+
#: adminimize.php:499
|
115 |
+
#: adminimize.php:541
|
116 |
+
#: adminimize.php:564
|
|
|
117 |
msgid "Classic"
|
118 |
+
msgstr ""
|
119 |
|
120 |
+
#: adminimize.php:506
|
121 |
+
#: adminimize.php:548
|
122 |
+
#: adminimize.php:571
|
|
|
123 |
msgid "Fresh"
|
124 |
+
msgstr ""
|
125 |
|
126 |
+
#: adminimize.php:513
|
|
|
127 |
msgid "WordPress 2.3"
|
128 |
+
msgstr ""
|
129 |
|
130 |
+
#: adminimize.php:520
|
|
|
131 |
msgid "Maybe i'm colorblind"
|
132 |
+
msgstr ""
|
133 |
|
134 |
+
#: adminimize.php:527
|
|
|
135 |
msgid "Grey"
|
136 |
+
msgstr ""
|
137 |
|
138 |
+
#: adminimize.php:655
|
139 |
+
#: adminimize.php:658
|
|
|
140 |
msgid "Dashboard"
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: adminimize.php:713
|
144 |
+
#: adminimize.php:715
|
145 |
+
#: adminimize.php:728
|
146 |
+
#: adminimize.php:730
|
147 |
+
#: adminimize.php:921
|
|
|
148 |
msgid "Log Out"
|
149 |
+
msgstr ""
|
150 |
|
151 |
+
#: adminimize.php:940
|
|
|
152 |
msgid "Visit plugin homepage"
|
153 |
+
msgstr ""
|
154 |
|
155 |
+
#: adminimize.php:943
|
|
|
156 |
msgid "plugin"
|
157 |
+
msgstr ""
|
158 |
|
159 |
+
#: adminimize.php:943
|
|
|
160 |
msgid "Version"
|
161 |
+
msgstr ""
|
162 |
|
163 |
+
#: adminimize.php:943
|
164 |
#@ adminimize
|
165 |
msgid "History"
|
166 |
+
msgstr ""
|
167 |
|
168 |
+
#: adminimize.php:943
|
|
|
169 |
msgid "Author"
|
170 |
+
msgstr ""
|
171 |
|
172 |
+
#: adminimize.php:946
|
173 |
#@ adminimize
|
174 |
msgid "plugin activate"
|
175 |
+
msgstr ""
|
176 |
|
177 |
+
#: adminimize.php:966
|
|
|
178 |
msgid "Settings"
|
179 |
+
msgstr ""
|
180 |
|
181 |
+
#: adminimize.php:1027
|
182 |
+
#: adminimize.php:1048
|
183 |
#@ adminimize
|
184 |
msgid "<a href=\"http://wordpress.org/extend/plugins/adminimize/\">Documentation</a>"
|
185 |
+
msgstr ""http://bueltge.de/wordpress-admin-theme-adminimize/674/\">Dokumentation</a> (<a href=\"http://wordpress.org/extend/plugins/adminimize/\">en</a>)"
|
186 |
|
187 |
+
#: adminimize.php:1044
|
|
|
|
|
188 |
#: adminimize_page.php:109
|
189 |
#@ adminimize
|
190 |
msgid "Adminimize"
|
191 |
+
msgstr ""
|
192 |
|
193 |
+
#: adminimize.php:1046
|
194 |
#@ adminimize
|
195 |
msgid "Adminimize Options"
|
196 |
+
msgstr ""
|
197 |
|
198 |
+
#: adminimize.php:1063
|
|
|
199 |
msgid "Cheatin’ uh?"
|
200 |
+
msgstr ""
|
201 |
|
202 |
#: adminimize_page.php:115
|
203 |
#: adminimize_page.php:140
|
204 |
#: adminimize_page.php:186
|
205 |
+
#: adminimize_page.php:340
|
206 |
+
#: adminimize_page.php:455
|
207 |
+
#: adminimize_page.php:777
|
208 |
+
#: adminimize_page.php:860
|
209 |
+
#: adminimize_page.php:943
|
210 |
+
#: adminimize_page.php:1065
|
211 |
+
#: adminimize_page.php:1163
|
212 |
+
#: adminimize_page.php:1198
|
213 |
+
#: adminimize_page.php:1219
|
|
|
214 |
msgid "Click to toggle"
|
215 |
+
msgstr ""
|
216 |
|
217 |
#: adminimize_page.php:145
|
218 |
#: adminimize_page.php:187
|
219 |
#@ adminimize
|
220 |
msgid "Backend Options"
|
221 |
+
msgstr ""
|
222 |
|
223 |
#: adminimize_page.php:196
|
224 |
#@ adminimize
|
225 |
msgid "User-Info"
|
226 |
+
msgstr ""
|
227 |
|
228 |
#: adminimize_page.php:200
|
229 |
#: adminimize_page.php:213
|
234 |
#: adminimize_page.php:263
|
235 |
#: adminimize_page.php:273
|
236 |
#: adminimize_page.php:283
|
237 |
+
#: adminimize_page.php:312
|
|
|
238 |
#@ adminimize
|
239 |
msgid "Default"
|
240 |
+
msgstr ""
|
241 |
|
242 |
#: adminimize_page.php:201
|
243 |
#: adminimize_page.php:224
|
|
|
244 |
#@ adminimize
|
245 |
msgid "Hide"
|
246 |
+
msgstr ""
|
247 |
|
248 |
#: adminimize_page.php:202
|
249 |
#@ adminimize
|
250 |
msgid "Only logout"
|
251 |
+
msgstr ""
|
252 |
|
253 |
#: adminimize_page.php:203
|
254 |
#@ adminimize
|
255 |
msgid "User & Logout"
|
256 |
+
msgstr ""
|
257 |
|
258 |
#: adminimize_page.php:204
|
259 |
#@ adminimize
|
260 |
msgid "The "User-Info-area" is on the top right side of the backend. You can hide or reduced show."
|
261 |
+
msgstr ""
|
262 |
|
263 |
#: adminimize_page.php:209
|
264 |
#@ adminimize
|
265 |
msgid "Change User-Info, redirect to"
|
266 |
+
msgstr ""
|
267 |
|
268 |
#: adminimize_page.php:214
|
269 |
#@ adminimize
|
270 |
msgid "Frontpage of the Blog"
|
271 |
+
msgstr ""
|
272 |
|
273 |
#: adminimize_page.php:215
|
274 |
#@ adminimize
|
275 |
msgid "When the "User-Info-area" change it, then it is possible to change the redirect."
|
276 |
+
msgstr ""
|
277 |
|
278 |
#: adminimize_page.php:219
|
279 |
#@ adminimize
|
280 |
msgid "Footer"
|
281 |
+
msgstr ""
|
282 |
|
283 |
#: adminimize_page.php:225
|
284 |
#@ adminimize
|
285 |
msgid "The Footer-area can hide, include all links and details."
|
286 |
+
msgstr ""
|
287 |
|
288 |
+
#: adminimize_page.php:229
|
289 |
#@ adminimize
|
290 |
msgid "WriteScroll"
|
291 |
+
msgstr ""
|
292 |
|
293 |
+
#: adminimize_page.php:234
|
294 |
#: adminimize_page.php:244
|
295 |
#: adminimize_page.php:254
|
296 |
#: adminimize_page.php:264
|
297 |
#: adminimize_page.php:274
|
298 |
#: adminimize_page.php:284
|
|
|
299 |
#@ adminimize
|
300 |
msgid "Activate"
|
301 |
+
msgstr ""
|
302 |
|
303 |
+
#: adminimize_page.php:235
|
304 |
#@ adminimize
|
305 |
msgid "With the WriteScroll option active, these pages will automatically scroll to an optimal position for editing, when you visit Write Post or Write Page."
|
306 |
+
msgstr ""
|
307 |
|
308 |
+
#: adminimize_page.php:239
|
309 |
#@ adminimize
|
310 |
msgid "Timestamp"
|
311 |
+
msgstr ""
|
312 |
|
313 |
+
#: adminimize_page.php:245
|
314 |
#@ adminimize
|
315 |
msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
|
316 |
+
msgstr ""
|
317 |
|
318 |
+
#: adminimize_page.php:249
|
319 |
#@ adminimize
|
320 |
msgid "Thickbox FullScreen"
|
321 |
+
msgstr ""
|
322 |
|
323 |
+
#: adminimize_page.php:259
|
324 |
#@ adminimize
|
325 |
msgid "Flashuploader"
|
326 |
+
msgstr ""
|
327 |
|
328 |
+
#: adminimize_page.php:265
|
329 |
#@ adminimize
|
330 |
msgid "Disable the flashuploader and users use only the standard uploader."
|
331 |
+
msgstr ""
|
332 |
|
333 |
+
#: adminimize_page.php:279
|
334 |
#@ adminimize
|
335 |
msgid "Advice in Footer"
|
336 |
+
msgstr ""
|
337 |
|
338 |
+
#: adminimize_page.php:313
|
339 |
#@ adminimize
|
340 |
msgid "Manage Posts"
|
341 |
+
msgstr ""
|
342 |
|
343 |
+
#: adminimize_page.php:314
|
344 |
#@ adminimize
|
345 |
msgid "Manage Pages"
|
346 |
+
msgstr ""
|
347 |
|
348 |
+
#: adminimize_page.php:315
|
349 |
#@ adminimize
|
350 |
msgid "Write Post"
|
351 |
+
msgstr ""
|
352 |
|
353 |
+
#: adminimize_page.php:316
|
354 |
#@ adminimize
|
355 |
msgid "Write Page"
|
356 |
+
msgstr ""
|
357 |
|
358 |
+
#: adminimize_page.php:317
|
359 |
+
#: adminimize_page.php:533
|
360 |
#@ adminimize
|
361 |
msgid "Comments"
|
362 |
+
msgstr ""
|
363 |
|
364 |
+
#: adminimize_page.php:318
|
365 |
#@ adminimize
|
366 |
msgid "other Page"
|
367 |
+
msgstr ""
|
368 |
|
369 |
+
#: adminimize_page.php:330
|
370 |
+
#: adminimize_page.php:445
|
371 |
+
#: adminimize_page.php:767
|
372 |
+
#: adminimize_page.php:850
|
373 |
+
#: adminimize_page.php:933
|
374 |
+
#: adminimize_page.php:1054
|
375 |
#@ adminimize
|
376 |
msgid "Update Options"
|
377 |
+
msgstr ""
|
378 |
|
379 |
#: adminimize_page.php:148
|
380 |
+
#: adminimize_page.php:341
|
381 |
#@ adminimize
|
382 |
msgid "Global options"
|
383 |
+
msgstr ""
|
384 |
|
385 |
+
#: adminimize_page.php:348
|
386 |
+
#: adminimize_page.php:420
|
387 |
+
#: adminimize_page.php:825
|
388 |
+
#: adminimize_page.php:908
|
389 |
+
#: adminimize_page.php:951
|
390 |
+
#: adminimize_page.php:1029
|
391 |
#@ adminimize
|
392 |
msgid "Option"
|
393 |
+
msgstr ""
|
394 |
|
395 |
+
#: adminimize_page.php:351
|
396 |
+
#: adminimize_page.php:466
|
397 |
+
#: adminimize_page.php:788
|
398 |
+
#: adminimize_page.php:871
|
399 |
+
#: adminimize_page.php:954
|
400 |
#@ adminimize
|
401 |
msgid "Deactivate for"
|
402 |
+
msgstr ""
|
403 |
|
404 |
+
#: adminimize_page.php:371
|
405 |
#@ adminimize
|
406 |
msgid "Favorite Actions"
|
407 |
+
msgstr ""
|
408 |
|
409 |
+
#: adminimize_page.php:372
|
410 |
#@ adminimize
|
411 |
msgid "Screen-Meta"
|
412 |
+
msgstr ""
|
413 |
|
414 |
+
#: adminimize_page.php:373
|
415 |
+
#: adminimize_page.php:525
|
416 |
+
#: adminimize_page.php:619
|
417 |
#@ adminimize
|
|
|
418 |
msgid "Screen Options"
|
419 |
+
msgstr ""
|
420 |
|
421 |
+
#: adminimize_page.php:374
|
422 |
#@ adminimize
|
423 |
msgid "Contextual Help"
|
424 |
+
msgstr ""
|
425 |
|
426 |
+
#: adminimize_page.php:375
|
427 |
#@ adminimize
|
428 |
msgid "Admin Color Scheme"
|
429 |
+
msgstr ""
|
430 |
|
431 |
+
#: adminimize_page.php:419
|
432 |
+
#: adminimize_page.php:1028
|
433 |
#@ adminimize
|
434 |
msgid "Your own options"
|
435 |
+
msgstr ""
|
436 |
|
437 |
+
#: adminimize_page.php:419
|
438 |
+
#: adminimize_page.php:824
|
439 |
+
#: adminimize_page.php:907
|
440 |
+
#: adminimize_page.php:1028
|
441 |
#@ adminimize
|
442 |
msgid "ID or class"
|
443 |
+
msgstr ""
|
444 |
|
445 |
+
#: adminimize_page.php:426
|
446 |
+
#: adminimize_page.php:831
|
447 |
+
#: adminimize_page.php:914
|
448 |
+
#: adminimize_page.php:1035
|
449 |
#@ adminimize
|
450 |
msgid "It is possible to add your own IDs or classes from elements and tags. You can find IDs and classes with the FireBug Add-on for Firefox. Assign a value and the associate name per line."
|
451 |
+
msgstr ""
|
452 |
|
453 |
+
#: adminimize_page.php:432
|
454 |
+
#: adminimize_page.php:837
|
455 |
+
#: adminimize_page.php:920
|
456 |
+
#: adminimize_page.php:1041
|
457 |
#@ adminimize
|
458 |
msgid "Possible nomination for ID or class. Separate multiple nominations through a carriage return."
|
459 |
+
msgstr ""
|
460 |
|
461 |
+
#: adminimize_page.php:437
|
462 |
+
#: adminimize_page.php:842
|
463 |
+
#: adminimize_page.php:925
|
464 |
+
#: adminimize_page.php:1046
|
465 |
#@ adminimize
|
466 |
msgid "Possible IDs or classes. Separate multiple values through a carriage return."
|
467 |
+
msgstr ""
|
468 |
|
469 |
#: adminimize_page.php:151
|
470 |
+
#: adminimize_page.php:456
|
471 |
#@ adminimize
|
472 |
msgid "Menu Options"
|
473 |
+
msgstr ""
|
474 |
|
475 |
+
#: adminimize_page.php:463
|
476 |
#@ adminimize
|
477 |
msgid "Menu options - Menu, <span style=\\\"font-weight: 400;\\\">Submenu</span>"
|
478 |
+
msgstr ""font-weight: 400;\">Submenu</span>"
|
479 |
|
480 |
+
#: adminimize_page.php:524
|
481 |
+
#: adminimize_page.php:618
|
|
|
482 |
msgid "Help"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: adminimize_page.php:526
|
486 |
+
#: adminimize_page.php:620
|
487 |
#@ adminimize
|
488 |
msgid "Permalink"
|
489 |
+
msgstr ""
|
490 |
|
491 |
+
#: adminimize_page.php:530
|
492 |
#@ adminimize
|
493 |
msgid "Excerpt"
|
494 |
+
msgstr ""
|
495 |
|
496 |
+
#: adminimize_page.php:531
|
497 |
#@ adminimize
|
498 |
msgid "Trackbacks"
|
499 |
+
msgstr ""
|
500 |
|
501 |
+
#: adminimize_page.php:532
|
502 |
+
#: adminimize_page.php:621
|
|
|
503 |
msgid "Custom Fields"
|
504 |
+
msgstr ""
|
505 |
|
506 |
+
#: adminimize_page.php:534
|
507 |
#@ adminimize
|
508 |
msgid "Password Protect This Post"
|
509 |
+
msgstr ""
|
510 |
|
511 |
+
#: adminimize_page.php:535
|
|
|
512 |
msgid "Post Author"
|
513 |
+
msgstr ""
|
514 |
|
515 |
+
#: adminimize_page.php:536
|
|
|
516 |
msgid "Post Revisions"
|
517 |
+
msgstr ""
|
518 |
|
519 |
+
#: adminimize_page.php:537
|
520 |
#@ adminimize
|
521 |
msgid "Related, Shortcuts"
|
522 |
+
msgstr ""
|
523 |
|
524 |
+
#: adminimize_page.php:538
|
525 |
+
#: adminimize_page.php:630
|
526 |
#@ adminimize
|
527 |
msgid "Messenges"
|
528 |
+
msgstr ""
|
529 |
|
530 |
+
#: adminimize_page.php:539
|
531 |
+
#: adminimize_page.php:631
|
532 |
#@ adminimize
|
533 |
msgid "h2: Advanced Options"
|
534 |
+
msgstr ""
|
535 |
|
536 |
+
#: adminimize_page.php:540
|
537 |
+
#: adminimize_page.php:632
|
538 |
#@ adminimize
|
539 |
msgid "Media Buttons (all)"
|
540 |
+
msgstr ""
|
541 |
|
542 |
+
#: adminimize_page.php:541
|
543 |
+
#: adminimize_page.php:633
|
544 |
#@ adminimize
|
545 |
msgid "Word count"
|
546 |
+
msgstr ""
|
547 |
|
548 |
+
#: adminimize_page.php:542
|
|
|
549 |
msgid "Post Slug"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: adminimize_page.php:543
|
553 |
+
#: adminimize_page.php:635
|
554 |
+
#: adminimize_page.php:984
|
555 |
#@ adminimize
|
556 |
msgid "Publish Actions"
|
557 |
+
msgstr ""
|
558 |
|
559 |
+
#: adminimize_page.php:544
|
560 |
+
#: adminimize_page.php:636
|
|
|
561 |
msgid "Discussion"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: adminimize_page.php:549
|
|
|
565 |
msgid "Post Thumbnail"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: adminimize_page.php:551
|
569 |
+
#: adminimize_page.php:643
|
|
|
570 |
#@ adminimize
|
571 |
msgid "Suggested tags from"
|
572 |
+
msgstr ""
|
573 |
|
574 |
+
#: adminimize_page.php:553
|
|
|
575 |
msgid "Text Control"
|
576 |
+
msgstr ""
|
577 |
|
578 |
+
#: adminimize_page.php:555
|
579 |
+
#: adminimize_page.php:645
|
|
|
580 |
msgid "HTML Special Characters"
|
581 |
+
msgstr ""
|
582 |
|
583 |
+
#: adminimize_page.php:557
|
|
|
584 |
msgid "All in One SEO Pack"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: adminimize_page.php:622
|
588 |
#@ adminimize
|
589 |
msgid "Comments & Pings"
|
590 |
+
msgstr ""
|
591 |
|
592 |
+
#: adminimize_page.php:623
|
593 |
#@ adminimize
|
594 |
msgid "Password Protect This Page"
|
595 |
+
msgstr ""
|
596 |
|
597 |
+
#: adminimize_page.php:624
|
|
|
598 |
msgid "Attributes"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: adminimize_page.php:625
|
602 |
#@ adminimize
|
603 |
msgid "Page Template"
|
604 |
+
msgstr ""
|
605 |
|
606 |
+
#: adminimize_page.php:626
|
607 |
#@ adminimize
|
608 |
msgid "Page Order"
|
609 |
+
msgstr ""
|
610 |
|
611 |
+
#: adminimize_page.php:627
|
|
|
612 |
msgid "Page Author"
|
613 |
+
msgstr ""
|
614 |
|
615 |
+
#: adminimize_page.php:628
|
|
|
616 |
msgid "Page Revisions"
|
617 |
+
msgstr ""
|
618 |
|
619 |
+
#: adminimize_page.php:629
|
620 |
#@ adminimize
|
621 |
msgid "Related"
|
622 |
+
msgstr ""
|
623 |
|
624 |
+
#: adminimize_page.php:634
|
|
|
625 |
msgid "Page Slug"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: adminimize_page.php:641
|
|
|
629 |
msgid "Page Image"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: adminimize_page.php:683
|
633 |
+
#: adminimize_page.php:731
|
634 |
#@ adminimize
|
635 |
msgid "After activate the check box it heavy attitudes will change."
|
636 |
+
msgstr ""
|
637 |
|
638 |
+
#: adminimize_page.php:714
|
|
|
639 |
msgid "Profile"
|
640 |
+
msgstr ""
|
641 |
|
642 |
#: adminimize_page.php:154
|
643 |
+
#: adminimize_page.php:778
|
644 |
+
#: adminimize_page.php:785
|
645 |
#@ adminimize
|
646 |
msgid "Write options - Post"
|
647 |
+
msgstr ""
|
648 |
|
649 |
+
#: adminimize_page.php:824
|
650 |
#@ adminimize
|
651 |
msgid "Your own post options"
|
652 |
+
msgstr ""
|
653 |
|
654 |
#: adminimize_page.php:157
|
655 |
+
#: adminimize_page.php:861
|
656 |
+
#: adminimize_page.php:868
|
657 |
#@ adminimize
|
658 |
msgid "Write options - Page"
|
659 |
+
msgstr ""
|
660 |
|
661 |
+
#: adminimize_page.php:907
|
662 |
#@ adminimize
|
663 |
msgid "Your own page options"
|
664 |
+
msgstr ""
|
665 |
|
666 |
#: adminimize_page.php:160
|
667 |
+
#: adminimize_page.php:944
|
668 |
#@ adminimize
|
669 |
msgid "Links options"
|
670 |
+
msgstr ""
|
671 |
|
672 |
+
#: adminimize_page.php:977
|
|
|
673 |
msgid "Name"
|
674 |
+
msgstr ""
|
675 |
|
676 |
+
#: adminimize_page.php:978
|
|
|
677 |
msgid "Web Address"
|
678 |
+
msgstr ""
|
679 |
|
680 |
+
#: adminimize_page.php:979
|
|
|
681 |
msgid "Description"
|
682 |
+
msgstr ""
|
683 |
|
684 |
+
#: adminimize_page.php:981
|
|
|
685 |
msgid "Target"
|
686 |
+
msgstr ""
|
687 |
|
688 |
+
#: adminimize_page.php:982
|
|
|
689 |
msgid "Link Relationship (XFN)"
|
690 |
+
msgstr ""
|
691 |
|
692 |
+
#: adminimize_page.php:983
|
|
|
693 |
msgid "Advanced"
|
694 |
+
msgstr ""
|
695 |
|
696 |
#: adminimize_page.php:163
|
697 |
+
#: adminimize_page.php:1066
|
698 |
+
#: adminimize_page.php:1151
|
699 |
#@ adminimize
|
700 |
msgid "Set Theme"
|
701 |
+
msgstr ""
|
702 |
|
703 |
+
#: adminimize_page.php:1073
|
704 |
#@ adminimize
|
705 |
msgid "For better peformance with many users on your blog; load only userlist, when you will change the theme options for users."
|
706 |
+
msgstr ""
|
707 |
|
708 |
+
#: adminimize_page.php:1076
|
709 |
#@ adminimize
|
710 |
msgid "Load User Data"
|
711 |
+
msgstr ""
|
712 |
|
713 |
+
#: adminimize_page.php:1087
|
|
|
714 |
msgid "User-ID"
|
715 |
+
msgstr ""
|
716 |
|
717 |
+
#: adminimize_page.php:1088
|
|
|
718 |
msgid "Username"
|
719 |
+
msgstr ""
|
720 |
|
721 |
+
#: adminimize_page.php:1089
|
|
|
722 |
msgid "Display name publicly as"
|
723 |
+
msgstr ""
|
724 |
|
725 |
+
#: adminimize_page.php:1090
|
|
|
726 |
msgid "Admin-Color Scheme"
|
727 |
+
msgstr ""
|
728 |
|
729 |
+
#: adminimize_page.php:1091
|
|
|
730 |
msgid "User Level"
|
731 |
+
msgstr ""
|
732 |
|
733 |
+
#: adminimize_page.php:1092
|
|
|
734 |
msgid "Role"
|
735 |
+
msgstr ""
|
736 |
|
737 |
#: adminimize_page.php:169
|
738 |
+
#: adminimize_page.php:1199
|
739 |
#@ adminimize
|
740 |
msgid "Deinstall Options"
|
741 |
+
msgstr ""
|
742 |
|
743 |
+
#: adminimize_page.php:1202
|
744 |
#@ adminimize
|
745 |
msgid "Use this option for clean your database from all entries of this plugin. When you deactivate the plugin, the deinstall of the plugin <strong>clean not</strong> all entries in the database."
|
746 |
+
msgstr ""
|
747 |
|
748 |
+
#: adminimize_page.php:1206
|
749 |
#@ adminimize
|
750 |
msgid "Delete Options"
|
751 |
+
msgstr ""
|
752 |
|
753 |
#: adminimize_page.php:116
|
754 |
#: adminimize_page.php:172
|
755 |
+
#: adminimize_page.php:1220
|
756 |
#@ adminimize
|
757 |
msgid "About the plugin"
|
758 |
+
msgstr ""
|
759 |
|
760 |
#: adminimize_page.php:118
|
761 |
+
#: adminimize_page.php:1223
|
762 |
#@ adminimize
|
763 |
msgid "Further information: Visit the <a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
|
764 |
+
msgstr ""http://bueltge.de/wordpress-admin-theme-adminimize/674/\">Plugin Webseite</a> für weitere Informationen oder hole die aktuelle Version des Plugins."
|
765 |
|
766 |
#: adminimize_page.php:124
|
767 |
+
#: adminimize_page.php:1229
|
768 |
#@ adminimize
|
769 |
msgid "PayPal - The safer, easier way to pay online!"
|
770 |
+
msgstr ""
|
771 |
|
772 |
#: adminimize_page.php:128
|
773 |
+
#: adminimize_page.php:1233
|
774 |
#@ adminimize
|
775 |
msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a> or donate."
|
776 |
+
msgstr ""http://bueltge.de/wunschliste/\">Wunschliste</a> oder spende."
|
777 |
|
778 |
+
#: adminimize.php:100
|
779 |
#@ adminimize
|
780 |
msgid "All entries in the database were imported."
|
781 |
+
msgstr ""
|
782 |
|
783 |
#: adminimize_page.php:166
|
784 |
+
#: adminimize_page.php:1164
|
785 |
#@ adminimize
|
786 |
msgid "Export/Import Options"
|
787 |
+
msgstr ""
|
788 |
|
789 |
+
#: adminimize_page.php:1168
|
790 |
#@ adminimize
|
791 |
msgid "Export"
|
792 |
+
msgstr ""
|
793 |
|
794 |
+
#: adminimize_page.php:1173
|
795 |
#@ adminimize
|
796 |
msgid "Export »"
|
797 |
+
msgstr ""
|
798 |
|
799 |
+
#: adminimize_page.php:1177
|
800 |
#@ adminimize
|
801 |
msgid "Import"
|
802 |
+
msgstr ""
|
803 |
|
804 |
+
#: adminimize_page.php:1182
|
805 |
#@ adminimize
|
806 |
msgid "Choose a file from your computer"
|
807 |
+
msgstr ""
|
808 |
|
809 |
+
#: adminimize_page.php:1187
|
810 |
#@ adminimize
|
811 |
msgid "Upload file and import »"
|
812 |
+
msgstr ""
|
813 |
|
814 |
#: adminimize_page.php:141
|
815 |
#@ adminimize
|
816 |
msgid "MiniMenu"
|
817 |
+
msgstr ""
|
818 |
+
|
819 |
+
#: adminimize_page.php:332
|
820 |
+
#: adminimize_page.php:447
|
821 |
+
#: adminimize_page.php:769
|
822 |
+
#: adminimize_page.php:852
|
823 |
+
#: adminimize_page.php:935
|
824 |
+
#: adminimize_page.php:1057
|
825 |
+
#: adminimize_page.php:1156
|
826 |
+
#: adminimize_page.php:1190
|
827 |
+
#: adminimize_page.php:1211
|
828 |
+
#: adminimize_page.php:1237
|
829 |
#@ adminimize
|
830 |
msgid "scroll to top"
|
831 |
+
msgstr ""
|
832 |
|
833 |
+
#: adminimize_page.php:1170
|
834 |
#@ adminimize
|
835 |
msgid "You can save a .seq file with your options."
|
836 |
+
msgstr ""
|
837 |
|
838 |
+
#: adminimize_page.php:1180
|
839 |
#@ adminimize
|
840 |
msgid "Choose a Adminimize (<em>.seq</em>) file to upload, then click <em>Upload file and import</em>."
|
841 |
+
msgstr ""
|
842 |
|
843 |
+
#: adminimize_page.php:269
|
844 |
#@ adminimize
|
845 |
msgid "Category Height"
|
846 |
+
msgstr ""
|
847 |
|
848 |
+
#: adminimize_page.php:275
|
849 |
#@ adminimize
|
850 |
msgid "View the Meta Box with Categories in the full height, no scrollbar or whitespace."
|
851 |
+
msgstr ""
|
852 |
|
853 |
+
#: adminimize_page.php:286
|
854 |
#@ adminimize
|
855 |
msgid "In the Footer you can display an advice for changing the Default-design, (x)HTML is possible."
|
856 |
+
msgstr ""
|
857 |
|
858 |
+
#: adminimize_page.php:308
|
859 |
#@ adminimize
|
860 |
msgid "Dashboard deactivate, redirect to"
|
861 |
+
msgstr ""
|
862 |
|
863 |
+
#: adminimize_page.php:321
|
864 |
#@ adminimize
|
865 |
msgid "You have deactivated the Dashboard, please select a page for redirection?"
|
866 |
+
msgstr ""
|
867 |
|
868 |
+
#: adminimize_page.php:545
|
869 |
+
#: adminimize_page.php:637
|
|
|
870 |
msgid "HTML Editor Button"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: adminimize_page.php:255
|
874 |
#@ adminimize
|
875 |
msgid "All Thickbox-function use the full area of the browser. Thickbox is for example in upload media-files."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
876 |
msgstr ""
|
877 |
|
readme.txt
CHANGED
@@ -74,6 +74,9 @@ The plugin changes the administration backend and gives you the power to assign
|
|
74 |
* Thanks to [GeorgWP](http://wordpress.blogos.dk/s%C3%B8g-efter-downloads/?did=208 "wordpress.blogos.dk/s%C3%B8g-efter-downloads/?did=208") for danish language files.
|
75 |
* Thanks to [Scavenger](http://www.photos-marseille.fr) for french language files.
|
76 |
|
|
|
|
|
|
|
77 |
= Interested in WordPress tips and tricks =
|
78 |
You may also be interested in WordPress tips and tricks at [WP Engineer](http://wpengineer.com/) or for german people [bueltge.de](http://bueltge.de/)
|
79 |
|
@@ -98,6 +101,9 @@ See on [the official website](http://bueltge.de/wordpress-admin-theme-adminimize
|
|
98 |
1. Adminimize Theme how in WordPress 2.3
|
99 |
|
100 |
== Changelog ==
|
|
|
|
|
|
|
101 |
= v1.7.12 (10/02/2010) =
|
102 |
* Bugfix: Fallback for deactivate profile.php on roles smaller administration
|
103 |
* Bugfix: Redirect from Dashboard on different roles
|
74 |
* Thanks to [GeorgWP](http://wordpress.blogos.dk/s%C3%B8g-efter-downloads/?did=208 "wordpress.blogos.dk/s%C3%B8g-efter-downloads/?did=208") for danish language files.
|
75 |
* Thanks to [Scavenger](http://www.photos-marseille.fr) for french language files.
|
76 |
|
77 |
+
= More Plugins =
|
78 |
+
Please see also my [Premium Plugins](http://wpplugins.com/author/malo.conny/). Maybe you find an solution for your requirement.
|
79 |
+
|
80 |
= Interested in WordPress tips and tricks =
|
81 |
You may also be interested in WordPress tips and tricks at [WP Engineer](http://wpengineer.com/) or for german people [bueltge.de](http://bueltge.de/)
|
82 |
|
101 |
1. Adminimize Theme how in WordPress 2.3
|
102 |
|
103 |
== Changelog ==
|
104 |
+
= v1.7.13 () =
|
105 |
+
* Maintenance: change edit-page redirect for WordPress 3.0 and higher
|
106 |
+
|
107 |
= v1.7.12 (10/02/2010) =
|
108 |
* Bugfix: Fallback for deactivate profile.php on roles smaller administration
|
109 |
* Bugfix: Redirect from Dashboard on different roles
|