Version Description
Download this release
Release Info
Developer | Bueltge |
Plugin | Adminimize |
Version | 1.7.16 |
Comparing to | |
See all releases |
Code changes from version 1.7.15 to 1.7.16
- Adminimize-da_DK.txt +21 -0
- adminimize.php +6 -7
- inc-options/menu_options.php +4 -2
- languages/adminimize-de_DE.mo +0 -0
- languages/adminimize-de_DE.po +115 -110
- languages/adminimize-xx_XX.pot +362 -297
- readme.txt +8 -1
Adminimize-da_DK.txt
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Adminimize 1.7.9
|
2 |
+
|
3 |
+
Filerne skal ligge i mappen adminimize/languages
|
4 |
+
|
5 |
+
Anvender du de gemte stier, skal du unzippe til wp-content/plugins.
|
6 |
+
S� pakkes sprogfilerne automatisk ud til wp-content/plugins/adminimize
|
7 |
+
|
8 |
+
Du kan tjekke for opdateringer til sprogfilerne p� http://wordpress.blogos.dk/wpdadkdownloads/
|
9 |
+
eller via http://wordpress.blogos.dk/s%C3%B8g-efter-downloads/?did=208
|
10 |
+
Se evt. ogs� http://wordpress.blogos.dk/tag/adminimize
|
11 |
+
|
12 |
+
|
13 |
+
|
14 |
+
FOR THE DEVELOPER
|
15 |
+
You are very welcome to check for updated language files in one of the following ways:
|
16 |
+
|
17 |
+
1. On my downloads page that list all files available for download: http://wordpress.blogos.dk/wpdadkdownloads/
|
18 |
+
|
19 |
+
2. Directly on my Download Monitor download page: http://wordpress.blogos.dk/s%C3%B8g-efter-downloads/?did=208
|
20 |
+
|
21 |
+
If I have blogged about your plugin, theme or other resource, you will be able to find it via this tag: http://wordpress.blogos.dk/tag/adminimize
|
adminimize.php
CHANGED
@@ -12,7 +12,7 @@ Domain Path: /languages
|
|
12 |
Description: Visually compresses the administratrive meta-boxes so that more admin page content can be initially seen. The plugin that lets you hide 'unnecessary' items from the WordPress administration menu, for alle roles of your install. You can also hide post meta controls on the edit-area to simplify the interface. It is possible to simplify the admin in different for all roles.
|
13 |
Author: Frank Bültge
|
14 |
Author URI: http://bueltge.de/
|
15 |
-
Version: 1.7.
|
16 |
License: GPL
|
17 |
*/
|
18 |
|
@@ -200,7 +200,7 @@ function _mw_adminimize_control_flashloader() {
|
|
200 |
* check user-option and add new style
|
201 |
* @uses $pagenow
|
202 |
*/
|
203 |
-
function
|
204 |
global $pagenow, $menu, $submenu, $adminimizeoptions, $wp_version;
|
205 |
|
206 |
if ( function_exists('get_post_type_object') ) {
|
@@ -384,9 +384,6 @@ function _mw_adminimize_init() {
|
|
384 |
// global_options
|
385 |
add_action('admin_head', '_mw_adminimize_set_global_option', 1);
|
386 |
|
387 |
-
// admin bar
|
388 |
-
_mw_adminimize_remove_admin_bar();
|
389 |
-
|
390 |
// set metabox post option
|
391 |
$post_pages = array('post-new.php', 'post.php', 'post');
|
392 |
if ( in_array( $pagenow, $post_pages ) || in_array($post_type, $post_pages) ) {
|
@@ -418,9 +415,10 @@ function _mw_adminimize_init() {
|
|
418 |
// on init of WordPress
|
419 |
add_action( 'init', '_mw_adminimize_textdomain' );
|
420 |
add_action( 'init', '_mw_adminimize_register_styles' );
|
421 |
-
add_action( 'init', '
|
422 |
|
423 |
// on admin init
|
|
|
424 |
add_action( 'admin_menu', '_mw_adminimize_add_settings_page' );
|
425 |
add_action( 'admin_menu', '_mw_adminimize_remove_dashboard' );
|
426 |
add_action( 'admin_init', '_mw_adminimize_admin_styles', 1 );
|
@@ -942,7 +940,7 @@ function _mw_adminimize_remove_admin_bar() {
|
|
942 |
foreach ($user_roles as $role) {
|
943 |
$disabled_global_option_[$role] = _mw_adminimize_getOptionValue('mw_adminimize_disabled_global_option_'. $role .'_items');
|
944 |
}
|
945 |
-
|
946 |
foreach ($user_roles as $role) {
|
947 |
if ( !isset($disabled_global_option_[$role]['0']) )
|
948 |
$disabled_global_option_[$role]['0'] = '';
|
@@ -967,6 +965,7 @@ function _mw_adminimize_remove_admin_bar() {
|
|
967 |
wp_deregister_script( 'admin-bar' );
|
968 |
wp_deregister_style( 'admin-bar' );
|
969 |
remove_action( 'wp_footer', 'wp_admin_bar_render', 1000 );
|
|
|
970 |
}
|
971 |
}
|
972 |
|
12 |
Description: Visually compresses the administratrive meta-boxes so that more admin page content can be initially seen. The plugin that lets you hide 'unnecessary' items from the WordPress administration menu, for alle roles of your install. You can also hide post meta controls on the edit-area to simplify the interface. It is possible to simplify the admin in different for all roles.
|
13 |
Author: Frank Bültge
|
14 |
Author URI: http://bueltge.de/
|
15 |
+
Version: 1.7.16
|
16 |
License: GPL
|
17 |
*/
|
18 |
|
200 |
* check user-option and add new style
|
201 |
* @uses $pagenow
|
202 |
*/
|
203 |
+
function _mw_adminimize_admin_init() {
|
204 |
global $pagenow, $menu, $submenu, $adminimizeoptions, $wp_version;
|
205 |
|
206 |
if ( function_exists('get_post_type_object') ) {
|
384 |
// global_options
|
385 |
add_action('admin_head', '_mw_adminimize_set_global_option', 1);
|
386 |
|
|
|
|
|
|
|
387 |
// set metabox post option
|
388 |
$post_pages = array('post-new.php', 'post.php', 'post');
|
389 |
if ( in_array( $pagenow, $post_pages ) || in_array($post_type, $post_pages) ) {
|
415 |
// on init of WordPress
|
416 |
add_action( 'init', '_mw_adminimize_textdomain' );
|
417 |
add_action( 'init', '_mw_adminimize_register_styles' );
|
418 |
+
add_action( 'init', '_mw_adminimize_remove_admin_bar' );
|
419 |
|
420 |
// on admin init
|
421 |
+
add_action( 'admin_init', '_mw_adminimize_admin_init', 1 );
|
422 |
add_action( 'admin_menu', '_mw_adminimize_add_settings_page' );
|
423 |
add_action( 'admin_menu', '_mw_adminimize_remove_dashboard' );
|
424 |
add_action( 'admin_init', '_mw_adminimize_admin_styles', 1 );
|
940 |
foreach ($user_roles as $role) {
|
941 |
$disabled_global_option_[$role] = _mw_adminimize_getOptionValue('mw_adminimize_disabled_global_option_'. $role .'_items');
|
942 |
}
|
943 |
+
|
944 |
foreach ($user_roles as $role) {
|
945 |
if ( !isset($disabled_global_option_[$role]['0']) )
|
946 |
$disabled_global_option_[$role]['0'] = '';
|
965 |
wp_deregister_script( 'admin-bar' );
|
966 |
wp_deregister_style( 'admin-bar' );
|
967 |
remove_action( 'wp_footer', 'wp_admin_bar_render', 1000 );
|
968 |
+
remove_action( 'wp_head', '_admin_bar_bump_cb' );
|
969 |
}
|
970 |
}
|
971 |
|
inc-options/menu_options.php
CHANGED
@@ -47,6 +47,7 @@
|
|
47 |
'#titlediv',
|
48 |
'#pageslugdiv',
|
49 |
'#tagsdiv,#tagsdivsb,#tagsdiv-post_tag',
|
|
|
50 |
'#categorydiv,#categorydivsb',
|
51 |
'#category-add-toggle',
|
52 |
'#postexcerpt',
|
@@ -90,6 +91,7 @@
|
|
90 |
__('Title', FB_ADMINIMIZE_TEXTDOMAIN),
|
91 |
__('Permalink', FB_ADMINIMIZE_TEXTDOMAIN ),
|
92 |
__('Tags', FB_ADMINIMIZE_TEXTDOMAIN ),
|
|
|
93 |
__('Categories', FB_ADMINIMIZE_TEXTDOMAIN ),
|
94 |
__('Add New Category', FB_ADMINIMIZE_TEXTDOMAIN ),
|
95 |
__('Excerpt', FB_ADMINIMIZE_TEXTDOMAIN ),
|
@@ -100,7 +102,7 @@
|
|
100 |
__('Post Author'),
|
101 |
__('Post Revisions'),
|
102 |
__('Related, Shortcuts', FB_ADMINIMIZE_TEXTDOMAIN ),
|
103 |
-
__('
|
104 |
__('h2: Advanced Options', FB_ADMINIMIZE_TEXTDOMAIN ),
|
105 |
__('Media Buttons (all)', FB_ADMINIMIZE_TEXTDOMAIN ),
|
106 |
__('Word count', FB_ADMINIMIZE_TEXTDOMAIN ),
|
@@ -194,7 +196,7 @@
|
|
194 |
__('Page Author'),
|
195 |
__('Page Revisions'),
|
196 |
__('Related', FB_ADMINIMIZE_TEXTDOMAIN ),
|
197 |
-
__('
|
198 |
__('h2: Advanced Options', FB_ADMINIMIZE_TEXTDOMAIN ),
|
199 |
__('Media Buttons (all)', FB_ADMINIMIZE_TEXTDOMAIN ),
|
200 |
__('Word count', FB_ADMINIMIZE_TEXTDOMAIN ),
|
47 |
'#titlediv',
|
48 |
'#pageslugdiv',
|
49 |
'#tagsdiv,#tagsdivsb,#tagsdiv-post_tag',
|
50 |
+
'#formatdiv',
|
51 |
'#categorydiv,#categorydivsb',
|
52 |
'#category-add-toggle',
|
53 |
'#postexcerpt',
|
91 |
__('Title', FB_ADMINIMIZE_TEXTDOMAIN),
|
92 |
__('Permalink', FB_ADMINIMIZE_TEXTDOMAIN ),
|
93 |
__('Tags', FB_ADMINIMIZE_TEXTDOMAIN ),
|
94 |
+
__('Format'),
|
95 |
__('Categories', FB_ADMINIMIZE_TEXTDOMAIN ),
|
96 |
__('Add New Category', FB_ADMINIMIZE_TEXTDOMAIN ),
|
97 |
__('Excerpt', FB_ADMINIMIZE_TEXTDOMAIN ),
|
102 |
__('Post Author'),
|
103 |
__('Post Revisions'),
|
104 |
__('Related, Shortcuts', FB_ADMINIMIZE_TEXTDOMAIN ),
|
105 |
+
__('Messages', FB_ADMINIMIZE_TEXTDOMAIN ),
|
106 |
__('h2: Advanced Options', FB_ADMINIMIZE_TEXTDOMAIN ),
|
107 |
__('Media Buttons (all)', FB_ADMINIMIZE_TEXTDOMAIN ),
|
108 |
__('Word count', FB_ADMINIMIZE_TEXTDOMAIN ),
|
196 |
__('Page Author'),
|
197 |
__('Page Revisions'),
|
198 |
__('Related', FB_ADMINIMIZE_TEXTDOMAIN ),
|
199 |
+
__('Messages', FB_ADMINIMIZE_TEXTDOMAIN ),
|
200 |
__('h2: Advanced Options', FB_ADMINIMIZE_TEXTDOMAIN ),
|
201 |
__('Media Buttons (all)', FB_ADMINIMIZE_TEXTDOMAIN ),
|
202 |
__('Word count', FB_ADMINIMIZE_TEXTDOMAIN ),
|
languages/adminimize-de_DE.mo
CHANGED
Binary file
|
languages/adminimize-de_DE.po
CHANGED
@@ -59,165 +59,165 @@ msgstr "Backend-Theme wurde zugewiesen!"
|
|
59 |
msgid "Load user data to themes was successful."
|
60 |
msgstr "Das Laden der User-Daten zum Theme war erfolgreich."
|
61 |
|
62 |
-
#: adminimize.php:
|
63 |
#: inc-options/links_options.php:44
|
64 |
-
#: inc-options/menu_options.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 |
-
#: inc-options/menu_options.php:
|
96 |
#@ default
|
97 |
#@ adminimize
|
98 |
msgid "Add New Category"
|
99 |
msgstr "Add New Category"
|
100 |
|
101 |
-
#: adminimize.php:
|
102 |
-
#: adminimize.php:
|
103 |
-
#: inc-options/menu_options.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:818
|
159 |
-
#: adminimize.php:
|
160 |
#: adminimize.php:835
|
161 |
-
#: adminimize.php:
|
162 |
-
#: adminimize.php:1139
|
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
|
204 |
msgid "<a href=\"http://wordpress.org/extend/plugins/adminimize/\">Documentation</a>"
|
205 |
msgstr "<a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">Dokumentation</a> (<a href=\"http://wordpress.org/extend/plugins/adminimize/\">en</a>)"
|
206 |
|
207 |
#. translators: plugin header field 'Name'
|
208 |
#: adminimize.php:0
|
209 |
-
#: adminimize.php:
|
210 |
#: inc-options/minimenu.php:6
|
211 |
#@ adminimize
|
212 |
msgid "Adminimize"
|
213 |
msgstr "Adminimize"
|
214 |
|
215 |
-
#: adminimize.php:
|
216 |
#@ adminimize
|
217 |
msgid "Adminimize Options"
|
218 |
msgstr "Adminimize Einstellungen"
|
219 |
|
220 |
-
#: adminimize.php:
|
221 |
#@ default
|
222 |
msgid "Cheatin’ uh?"
|
223 |
msgstr "Cheatin’ uh?"
|
@@ -385,7 +385,7 @@ msgid "Write Page"
|
|
385 |
msgstr "Schreiben Seite"
|
386 |
|
387 |
#: inc-options/backend_options.php:160
|
388 |
-
#: inc-options/menu_options.php:
|
389 |
#@ adminimize
|
390 |
msgid "Comments"
|
391 |
msgstr "Kommentare"
|
@@ -398,7 +398,7 @@ msgstr "andere Seite"
|
|
398 |
#: inc-options/backend_options.php:173
|
399 |
#: inc-options/global_options.php:114
|
400 |
#: inc-options/links_options.php:118
|
401 |
-
#: inc-options/menu_options.php:
|
402 |
#: inc-options/wp_nav_menu_options.php:139
|
403 |
#: inc-options/write_page_options.php:79
|
404 |
#: inc-options/write_post_options.php:80
|
@@ -445,8 +445,8 @@ msgid "Screen-Meta"
|
|
445 |
msgstr "Screen-Meta"
|
446 |
|
447 |
#: inc-options/global_options.php:42
|
448 |
-
#: inc-options/menu_options.php:
|
449 |
-
#: inc-options/menu_options.php:
|
450 |
#: inc-options/wp_nav_menu_options.php:41
|
451 |
#@ adminimize
|
452 |
#@ default
|
@@ -517,182 +517,176 @@ msgstr "Menu Einstellungen"
|
|
517 |
msgid "Menu options - Menu, <span style=\\\"font-weight: 400;\\\">Submenu</span>"
|
518 |
msgstr "Menu Einstellungen - Menu, <span style=\"font-weight: 400;\">Submenu</span>"
|
519 |
|
520 |
-
#: inc-options/menu_options.php:
|
521 |
-
#: inc-options/menu_options.php:
|
522 |
#: inc-options/wp_nav_menu_options.php:40
|
523 |
#@ default
|
524 |
msgid "Help"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: inc-options/menu_options.php:
|
528 |
-
#: inc-options/menu_options.php:
|
529 |
#@ adminimize
|
530 |
msgid "Permalink"
|
531 |
msgstr "Permalink"
|
532 |
|
533 |
-
#: inc-options/menu_options.php:
|
534 |
#@ adminimize
|
535 |
msgid "Excerpt"
|
536 |
msgstr "Auszug"
|
537 |
|
538 |
-
#: inc-options/menu_options.php:
|
539 |
#@ adminimize
|
540 |
msgid "Trackbacks"
|
541 |
msgstr "Trackbacks"
|
542 |
|
543 |
-
#: inc-options/menu_options.php:
|
544 |
-
#: inc-options/menu_options.php:
|
545 |
#@ default
|
546 |
msgid "Custom Fields"
|
547 |
msgstr "Benutzerdefinierte Felder"
|
548 |
|
549 |
-
#: inc-options/menu_options.php:
|
550 |
#@ adminimize
|
551 |
msgid "Password Protect This Post"
|
552 |
msgstr "Diesen Artikel durch ein Passwort schützen"
|
553 |
|
554 |
-
#: inc-options/menu_options.php:
|
555 |
#@ default
|
556 |
msgid "Post Author"
|
557 |
msgstr "Autor"
|
558 |
|
559 |
-
#: inc-options/menu_options.php:
|
560 |
#@ default
|
561 |
msgid "Post Revisions"
|
562 |
msgstr "Post Revisions"
|
563 |
|
564 |
-
#: inc-options/menu_options.php:
|
565 |
#@ adminimize
|
566 |
msgid "Related, Shortcuts"
|
567 |
msgstr "Siehe auch, Tastaturkürzel"
|
568 |
|
569 |
-
#: inc-options/menu_options.php:
|
570 |
-
#: inc-options/menu_options.php:
|
571 |
-
#@ adminimize
|
572 |
-
msgid "Messenges"
|
573 |
-
msgstr "Mitteilungen"
|
574 |
-
|
575 |
-
#: inc-options/menu_options.php:104
|
576 |
-
#: inc-options/menu_options.php:198
|
577 |
#@ adminimize
|
578 |
msgid "h2: Advanced Options"
|
579 |
msgstr "h2: Erweiterte Einstellungen"
|
580 |
|
581 |
-
#: inc-options/menu_options.php:
|
582 |
-
#: inc-options/menu_options.php:
|
583 |
#@ adminimize
|
584 |
msgid "Media Buttons (all)"
|
585 |
msgstr "Media Buttons (alle)"
|
586 |
|
587 |
-
#: inc-options/menu_options.php:
|
588 |
-
#: inc-options/menu_options.php:
|
589 |
#@ adminimize
|
590 |
msgid "Word count"
|
591 |
msgstr "Word count"
|
592 |
|
593 |
-
#: inc-options/menu_options.php:
|
594 |
#@ default
|
595 |
msgid "Post Slug"
|
596 |
msgstr ""
|
597 |
|
598 |
#: inc-options/links_options.php:48
|
599 |
-
#: inc-options/menu_options.php:
|
600 |
-
#: inc-options/menu_options.php:
|
601 |
#@ adminimize
|
602 |
msgid "Publish Actions"
|
603 |
msgstr "Publish Actions"
|
604 |
|
605 |
-
#: inc-options/menu_options.php:
|
606 |
-
#: inc-options/menu_options.php:
|
607 |
#@ default
|
608 |
msgid "Discussion"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: inc-options/menu_options.php:
|
612 |
#@ default
|
613 |
msgid "Post Thumbnail"
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: inc-options/menu_options.php:
|
617 |
-
#: inc-options/menu_options.php:
|
618 |
#@ default
|
619 |
#@ adminimize
|
620 |
msgid "Suggested tags from"
|
621 |
msgstr "Suggested tags from"
|
622 |
|
623 |
-
#: inc-options/menu_options.php:
|
624 |
#@ default
|
625 |
msgid "Text Control"
|
626 |
msgstr "Text Control"
|
627 |
|
628 |
-
#: inc-options/menu_options.php:
|
629 |
-
#: inc-options/menu_options.php:
|
630 |
#@ default
|
631 |
msgid "HTML Special Characters"
|
632 |
msgstr "HTML Special Characters"
|
633 |
|
634 |
-
#: inc-options/menu_options.php:
|
635 |
#@ default
|
636 |
msgid "All in One SEO Pack"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: inc-options/menu_options.php:
|
640 |
#@ adminimize
|
641 |
msgid "Comments & Pings"
|
642 |
msgstr "Kommentare & Pings"
|
643 |
|
644 |
-
#: inc-options/menu_options.php:
|
645 |
#@ adminimize
|
646 |
msgid "Password Protect This Page"
|
647 |
msgstr "Diese Seite mit einem Passwort versehen"
|
648 |
|
649 |
-
#: inc-options/menu_options.php:
|
650 |
#@ default
|
651 |
msgid "Attributes"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: inc-options/menu_options.php:
|
655 |
#@ adminimize
|
656 |
msgid "Page Template"
|
657 |
msgstr "Seiten Template"
|
658 |
|
659 |
-
#: inc-options/menu_options.php:
|
660 |
#@ adminimize
|
661 |
msgid "Page Order"
|
662 |
msgstr "Reihenfolge"
|
663 |
|
664 |
-
#: inc-options/menu_options.php:
|
665 |
#@ default
|
666 |
msgid "Page Author"
|
667 |
msgstr "Seitenautor"
|
668 |
|
669 |
-
#: inc-options/menu_options.php:
|
670 |
#@ default
|
671 |
msgid "Page Revisions"
|
672 |
msgstr "Page Revisions"
|
673 |
|
674 |
-
#: inc-options/menu_options.php:
|
675 |
#@ adminimize
|
676 |
msgid "Related"
|
677 |
msgstr "Siehe auch"
|
678 |
|
679 |
-
#: inc-options/menu_options.php:
|
680 |
#@ default
|
681 |
msgid "Page Slug"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: inc-options/menu_options.php:
|
685 |
#@ default
|
686 |
msgid "Page Image"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: inc-options/menu_options.php:
|
690 |
-
#: inc-options/menu_options.php:
|
691 |
#@ adminimize
|
692 |
msgid "After activate the check box it heavy attitudes will change."
|
693 |
msgstr "Wenn die Checkbox aktiv ist, dann wird das Ändern von Einstellungen erschwert."
|
694 |
|
695 |
-
#: inc-options/menu_options.php:
|
696 |
#@ default
|
697 |
msgid "Profile"
|
698 |
msgstr "Profile"
|
@@ -893,7 +887,7 @@ msgstr "MiniMenu"
|
|
893 |
#: inc-options/backend_options.php:175
|
894 |
#: inc-options/global_options.php:116
|
895 |
#: inc-options/links_options.php:121
|
896 |
-
#: inc-options/menu_options.php:
|
897 |
#: inc-options/wp_nav_menu_options.php:141
|
898 |
#: inc-options/write_page_options.php:81
|
899 |
#: inc-options/write_post_options.php:82
|
@@ -931,8 +925,8 @@ msgstr "Im Footer kann ein Hinweis auf die aktive Veränderung des Standard-
|
|
931 |
msgid "Dashboard deactivate, redirect to"
|
932 |
msgstr "Dashboard inaktiv, Weiterleitung nach"
|
933 |
|
934 |
-
#: inc-options/menu_options.php:
|
935 |
-
#: inc-options/menu_options.php:
|
936 |
#@ default
|
937 |
msgid "HTML Editor Button"
|
938 |
msgstr ""
|
@@ -976,18 +970,12 @@ msgstr "Header"
|
|
976 |
msgid "The Header-area can hide, include all links and details."
|
977 |
msgstr "Der header-Bereich kann ausgeblendet werden, inkl. aller Links und Details."
|
978 |
|
979 |
-
#: inc-options/menu_options.php:
|
980 |
-
#: inc-options/menu_options.php:
|
981 |
#@ adminimize
|
982 |
msgid "Title"
|
983 |
msgstr "Title"
|
984 |
|
985 |
-
#. translators: plugin header field 'Version'
|
986 |
-
#: adminimize.php:0
|
987 |
-
#@ adminimize
|
988 |
-
msgid "1.7.15"
|
989 |
-
msgstr ""
|
990 |
-
|
991 |
#: inc-options/backend_options.php:18
|
992 |
#@ adminimize
|
993 |
msgid "Exclude Super Admin"
|
@@ -1039,3 +1027,20 @@ msgstr ""
|
|
1039 |
msgid "Add menu"
|
1040 |
msgstr ""
|
1041 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
msgid "Load user data to themes was successful."
|
60 |
msgstr "Das Laden der User-Daten zum Theme war erfolgreich."
|
61 |
|
62 |
+
#: adminimize.php:470
|
63 |
#: inc-options/links_options.php:44
|
64 |
+
#: inc-options/menu_options.php:95
|
65 |
#@ default
|
66 |
#@ adminimize
|
67 |
msgid "Categories"
|
68 |
msgstr "Kategorien"
|
69 |
|
70 |
+
#: adminimize.php:476
|
71 |
+
#: adminimize.php:487
|
72 |
#@ default
|
73 |
msgid "+ Add New Category"
|
74 |
msgstr "+ Add New Category"
|
75 |
|
76 |
+
#: adminimize.php:478
|
77 |
+
#: adminimize.php:489
|
78 |
#@ default
|
79 |
msgid "New category name"
|
80 |
msgstr "New category name"
|
81 |
|
82 |
+
#: adminimize.php:479
|
83 |
+
#: adminimize.php:491
|
84 |
#@ default
|
85 |
msgid "Parent category"
|
86 |
msgstr "Parent category"
|
87 |
|
88 |
+
#: adminimize.php:480
|
89 |
+
#: adminimize.php:492
|
90 |
#@ default
|
91 |
msgid "Add"
|
92 |
msgstr "Add"
|
93 |
|
94 |
+
#: adminimize.php:489
|
95 |
+
#: inc-options/menu_options.php:96
|
96 |
#@ default
|
97 |
#@ adminimize
|
98 |
msgid "Add New Category"
|
99 |
msgstr "Add New Category"
|
100 |
|
101 |
+
#: adminimize.php:513
|
102 |
+
#: adminimize.php:514
|
103 |
+
#: inc-options/menu_options.php:93
|
104 |
#@ default
|
105 |
#@ adminimize
|
106 |
msgid "Tags"
|
107 |
msgstr "Tags"
|
108 |
|
109 |
+
#: adminimize.php:555
|
110 |
+
#: adminimize.php:569
|
111 |
+
#: adminimize.php:583
|
112 |
#@ default
|
113 |
msgid "Blue"
|
114 |
msgstr "Blau"
|
115 |
|
116 |
+
#: adminimize.php:562
|
117 |
+
#: adminimize.php:576
|
118 |
+
#: adminimize.php:590
|
119 |
#@ default
|
120 |
msgid "Gray"
|
121 |
msgstr "Grau"
|
122 |
|
123 |
+
#: adminimize.php:598
|
124 |
+
#: adminimize.php:640
|
125 |
+
#: adminimize.php:663
|
126 |
#@ default
|
127 |
msgid "Classic"
|
128 |
msgstr "Classic"
|
129 |
|
130 |
+
#: adminimize.php:605
|
131 |
+
#: adminimize.php:647
|
132 |
+
#: adminimize.php:670
|
133 |
#@ default
|
134 |
msgid "Fresh"
|
135 |
msgstr "Fresh"
|
136 |
|
137 |
+
#: adminimize.php:612
|
138 |
#@ default
|
139 |
msgid "WordPress 2.3"
|
140 |
msgstr "WordPress 2.3"
|
141 |
|
142 |
+
#: adminimize.php:619
|
143 |
#@ default
|
144 |
msgid "Maybe i'm colorblind"
|
145 |
msgstr "Maybe i'm colorblind"
|
146 |
|
147 |
+
#: adminimize.php:626
|
148 |
#@ default
|
149 |
msgid "Grey"
|
150 |
msgstr "Grey"
|
151 |
|
152 |
+
#: adminimize.php:751
|
153 |
+
#: adminimize.php:754
|
154 |
#@ default
|
155 |
msgid "Dashboard"
|
156 |
msgstr "Dashboard"
|
157 |
|
158 |
+
#: adminimize.php:816
|
159 |
#: adminimize.php:818
|
160 |
+
#: adminimize.php:833
|
161 |
#: adminimize.php:835
|
162 |
+
#: adminimize.php:1138
|
|
|
163 |
#@ default
|
164 |
msgid "Log Out"
|
165 |
msgstr "Log Out"
|
166 |
|
167 |
+
#: adminimize.php:1159
|
168 |
#@ default
|
169 |
msgid "Visit plugin homepage"
|
170 |
msgstr "Visit plugin homepage"
|
171 |
|
172 |
+
#: adminimize.php:1162
|
173 |
#@ default
|
174 |
msgid "plugin"
|
175 |
msgstr "plugin"
|
176 |
|
177 |
+
#: adminimize.php:1162
|
178 |
#@ default
|
179 |
msgid "Version"
|
180 |
msgstr "Version"
|
181 |
|
182 |
+
#: adminimize.php:1162
|
183 |
#@ adminimize
|
184 |
msgid "History"
|
185 |
msgstr "Historie"
|
186 |
|
187 |
+
#: adminimize.php:1162
|
188 |
#@ default
|
189 |
msgid "Author"
|
190 |
msgstr "Author"
|
191 |
|
192 |
+
#: adminimize.php:1166
|
193 |
#@ adminimize
|
194 |
msgid "plugin activate"
|
195 |
msgstr "plugin activate"
|
196 |
|
197 |
+
#: adminimize.php:1187
|
198 |
#@ default
|
199 |
msgid "Settings"
|
200 |
msgstr "Settings"
|
201 |
|
202 |
+
#: adminimize.php:1250
|
203 |
#@ adminimize
|
204 |
msgid "<a href=\"http://wordpress.org/extend/plugins/adminimize/\">Documentation</a>"
|
205 |
msgstr "<a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">Dokumentation</a> (<a href=\"http://wordpress.org/extend/plugins/adminimize/\">en</a>)"
|
206 |
|
207 |
#. translators: plugin header field 'Name'
|
208 |
#: adminimize.php:0
|
209 |
+
#: adminimize.php:1268
|
210 |
#: inc-options/minimenu.php:6
|
211 |
#@ adminimize
|
212 |
msgid "Adminimize"
|
213 |
msgstr "Adminimize"
|
214 |
|
215 |
+
#: adminimize.php:1270
|
216 |
#@ adminimize
|
217 |
msgid "Adminimize Options"
|
218 |
msgstr "Adminimize Einstellungen"
|
219 |
|
220 |
+
#: adminimize.php:1292
|
221 |
#@ default
|
222 |
msgid "Cheatin’ uh?"
|
223 |
msgstr "Cheatin’ uh?"
|
385 |
msgstr "Schreiben Seite"
|
386 |
|
387 |
#: inc-options/backend_options.php:160
|
388 |
+
#: inc-options/menu_options.php:100
|
389 |
#@ adminimize
|
390 |
msgid "Comments"
|
391 |
msgstr "Kommentare"
|
398 |
#: inc-options/backend_options.php:173
|
399 |
#: inc-options/global_options.php:114
|
400 |
#: inc-options/links_options.php:118
|
401 |
+
#: inc-options/menu_options.php:336
|
402 |
#: inc-options/wp_nav_menu_options.php:139
|
403 |
#: inc-options/write_page_options.php:79
|
404 |
#: inc-options/write_post_options.php:80
|
445 |
msgstr "Screen-Meta"
|
446 |
|
447 |
#: inc-options/global_options.php:42
|
448 |
+
#: inc-options/menu_options.php:90
|
449 |
+
#: inc-options/menu_options.php:187
|
450 |
#: inc-options/wp_nav_menu_options.php:41
|
451 |
#@ adminimize
|
452 |
#@ default
|
517 |
msgid "Menu options - Menu, <span style=\\\"font-weight: 400;\\\">Submenu</span>"
|
518 |
msgstr "Menu Einstellungen - Menu, <span style=\"font-weight: 400;\">Submenu</span>"
|
519 |
|
520 |
+
#: inc-options/menu_options.php:89
|
521 |
+
#: inc-options/menu_options.php:186
|
522 |
#: inc-options/wp_nav_menu_options.php:40
|
523 |
#@ default
|
524 |
msgid "Help"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: inc-options/menu_options.php:92
|
528 |
+
#: inc-options/menu_options.php:189
|
529 |
#@ adminimize
|
530 |
msgid "Permalink"
|
531 |
msgstr "Permalink"
|
532 |
|
533 |
+
#: inc-options/menu_options.php:97
|
534 |
#@ adminimize
|
535 |
msgid "Excerpt"
|
536 |
msgstr "Auszug"
|
537 |
|
538 |
+
#: inc-options/menu_options.php:98
|
539 |
#@ adminimize
|
540 |
msgid "Trackbacks"
|
541 |
msgstr "Trackbacks"
|
542 |
|
543 |
+
#: inc-options/menu_options.php:99
|
544 |
+
#: inc-options/menu_options.php:190
|
545 |
#@ default
|
546 |
msgid "Custom Fields"
|
547 |
msgstr "Benutzerdefinierte Felder"
|
548 |
|
549 |
+
#: inc-options/menu_options.php:101
|
550 |
#@ adminimize
|
551 |
msgid "Password Protect This Post"
|
552 |
msgstr "Diesen Artikel durch ein Passwort schützen"
|
553 |
|
554 |
+
#: inc-options/menu_options.php:102
|
555 |
#@ default
|
556 |
msgid "Post Author"
|
557 |
msgstr "Autor"
|
558 |
|
559 |
+
#: inc-options/menu_options.php:103
|
560 |
#@ default
|
561 |
msgid "Post Revisions"
|
562 |
msgstr "Post Revisions"
|
563 |
|
564 |
+
#: inc-options/menu_options.php:104
|
565 |
#@ adminimize
|
566 |
msgid "Related, Shortcuts"
|
567 |
msgstr "Siehe auch, Tastaturkürzel"
|
568 |
|
569 |
+
#: inc-options/menu_options.php:106
|
570 |
+
#: inc-options/menu_options.php:200
|
|
|
|
|
|
|
|
|
|
|
|
|
571 |
#@ adminimize
|
572 |
msgid "h2: Advanced Options"
|
573 |
msgstr "h2: Erweiterte Einstellungen"
|
574 |
|
575 |
+
#: inc-options/menu_options.php:107
|
576 |
+
#: inc-options/menu_options.php:201
|
577 |
#@ adminimize
|
578 |
msgid "Media Buttons (all)"
|
579 |
msgstr "Media Buttons (alle)"
|
580 |
|
581 |
+
#: inc-options/menu_options.php:108
|
582 |
+
#: inc-options/menu_options.php:202
|
583 |
#@ adminimize
|
584 |
msgid "Word count"
|
585 |
msgstr "Word count"
|
586 |
|
587 |
+
#: inc-options/menu_options.php:109
|
588 |
#@ default
|
589 |
msgid "Post Slug"
|
590 |
msgstr ""
|
591 |
|
592 |
#: inc-options/links_options.php:48
|
593 |
+
#: inc-options/menu_options.php:110
|
594 |
+
#: inc-options/menu_options.php:204
|
595 |
#@ adminimize
|
596 |
msgid "Publish Actions"
|
597 |
msgstr "Publish Actions"
|
598 |
|
599 |
+
#: inc-options/menu_options.php:111
|
600 |
+
#: inc-options/menu_options.php:205
|
601 |
#@ default
|
602 |
msgid "Discussion"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: inc-options/menu_options.php:116
|
606 |
#@ default
|
607 |
msgid "Post Thumbnail"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: inc-options/menu_options.php:118
|
611 |
+
#: inc-options/menu_options.php:212
|
612 |
#@ default
|
613 |
#@ adminimize
|
614 |
msgid "Suggested tags from"
|
615 |
msgstr "Suggested tags from"
|
616 |
|
617 |
+
#: inc-options/menu_options.php:120
|
618 |
#@ default
|
619 |
msgid "Text Control"
|
620 |
msgstr "Text Control"
|
621 |
|
622 |
+
#: inc-options/menu_options.php:122
|
623 |
+
#: inc-options/menu_options.php:214
|
624 |
#@ default
|
625 |
msgid "HTML Special Characters"
|
626 |
msgstr "HTML Special Characters"
|
627 |
|
628 |
+
#: inc-options/menu_options.php:124
|
629 |
#@ default
|
630 |
msgid "All in One SEO Pack"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: inc-options/menu_options.php:191
|
634 |
#@ adminimize
|
635 |
msgid "Comments & Pings"
|
636 |
msgstr "Kommentare & Pings"
|
637 |
|
638 |
+
#: inc-options/menu_options.php:192
|
639 |
#@ adminimize
|
640 |
msgid "Password Protect This Page"
|
641 |
msgstr "Diese Seite mit einem Passwort versehen"
|
642 |
|
643 |
+
#: inc-options/menu_options.php:193
|
644 |
#@ default
|
645 |
msgid "Attributes"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: inc-options/menu_options.php:194
|
649 |
#@ adminimize
|
650 |
msgid "Page Template"
|
651 |
msgstr "Seiten Template"
|
652 |
|
653 |
+
#: inc-options/menu_options.php:195
|
654 |
#@ adminimize
|
655 |
msgid "Page Order"
|
656 |
msgstr "Reihenfolge"
|
657 |
|
658 |
+
#: inc-options/menu_options.php:196
|
659 |
#@ default
|
660 |
msgid "Page Author"
|
661 |
msgstr "Seitenautor"
|
662 |
|
663 |
+
#: inc-options/menu_options.php:197
|
664 |
#@ default
|
665 |
msgid "Page Revisions"
|
666 |
msgstr "Page Revisions"
|
667 |
|
668 |
+
#: inc-options/menu_options.php:198
|
669 |
#@ adminimize
|
670 |
msgid "Related"
|
671 |
msgstr "Siehe auch"
|
672 |
|
673 |
+
#: inc-options/menu_options.php:203
|
674 |
#@ default
|
675 |
msgid "Page Slug"
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: inc-options/menu_options.php:210
|
679 |
#@ default
|
680 |
msgid "Page Image"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: inc-options/menu_options.php:252
|
684 |
+
#: inc-options/menu_options.php:300
|
685 |
#@ adminimize
|
686 |
msgid "After activate the check box it heavy attitudes will change."
|
687 |
msgstr "Wenn die Checkbox aktiv ist, dann wird das Ändern von Einstellungen erschwert."
|
688 |
|
689 |
+
#: inc-options/menu_options.php:283
|
690 |
#@ default
|
691 |
msgid "Profile"
|
692 |
msgstr "Profile"
|
887 |
#: inc-options/backend_options.php:175
|
888 |
#: inc-options/global_options.php:116
|
889 |
#: inc-options/links_options.php:121
|
890 |
+
#: inc-options/menu_options.php:338
|
891 |
#: inc-options/wp_nav_menu_options.php:141
|
892 |
#: inc-options/write_page_options.php:81
|
893 |
#: inc-options/write_post_options.php:82
|
925 |
msgid "Dashboard deactivate, redirect to"
|
926 |
msgstr "Dashboard inaktiv, Weiterleitung nach"
|
927 |
|
928 |
+
#: inc-options/menu_options.php:112
|
929 |
+
#: inc-options/menu_options.php:206
|
930 |
#@ default
|
931 |
msgid "HTML Editor Button"
|
932 |
msgstr ""
|
970 |
msgid "The Header-area can hide, include all links and details."
|
971 |
msgstr "Der header-Bereich kann ausgeblendet werden, inkl. aller Links und Details."
|
972 |
|
973 |
+
#: inc-options/menu_options.php:91
|
974 |
+
#: inc-options/menu_options.php:188
|
975 |
#@ adminimize
|
976 |
msgid "Title"
|
977 |
msgstr "Title"
|
978 |
|
|
|
|
|
|
|
|
|
|
|
|
|
979 |
#: inc-options/backend_options.php:18
|
980 |
#@ adminimize
|
981 |
msgid "Exclude Super Admin"
|
1027 |
msgid "Add menu"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
+
#. translators: plugin header field 'Version'
|
1031 |
+
#: adminimize.php:0
|
1032 |
+
#@ adminimize
|
1033 |
+
msgid "1.7.16"
|
1034 |
+
msgstr ""
|
1035 |
+
|
1036 |
+
#: inc-options/menu_options.php:94
|
1037 |
+
#@ default
|
1038 |
+
msgid "Format"
|
1039 |
+
msgstr ""
|
1040 |
+
|
1041 |
+
#: inc-options/menu_options.php:105
|
1042 |
+
#: inc-options/menu_options.php:199
|
1043 |
+
#@ adminimize
|
1044 |
+
msgid "Messages"
|
1045 |
+
msgstr "Mitteilungen"
|
1046 |
+
|
languages/adminimize-xx_XX.pot
CHANGED
@@ -19,916 +19,919 @@ msgstr ""
|
|
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 |
-
#:
|
64 |
-
#:
|
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 |
-
#:
|
96 |
#@ default
|
97 |
#@ adminimize
|
98 |
msgid "Add New Category"
|
99 |
msgstr "Add New Category"
|
100 |
|
101 |
-
#: adminimize.php:
|
102 |
-
#: adminimize.php:
|
103 |
-
#:
|
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:1099
|
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 |
#. translators: plugin header field 'Name'
|
209 |
#: adminimize.php:0
|
210 |
-
#: adminimize.php:
|
211 |
-
#:
|
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:
|
227 |
-
#: adminimize_page.php:
|
228 |
-
#: adminimize_page.php:
|
229 |
-
#: adminimize_page.php:
|
230 |
-
#:
|
231 |
-
#:
|
232 |
-
#:
|
233 |
-
#:
|
234 |
-
#:
|
235 |
-
#:
|
236 |
-
#:
|
237 |
-
#:
|
|
|
238 |
#@ default
|
239 |
msgid "Click to toggle"
|
240 |
msgstr "Zum Umschalten klicken"
|
241 |
|
242 |
-
#:
|
243 |
-
#:
|
244 |
#@ adminimize
|
245 |
msgid "Backend Options"
|
246 |
msgstr "Einstellungen Backend"
|
247 |
|
248 |
-
#:
|
249 |
#@ adminimize
|
250 |
msgid "User-Info"
|
251 |
msgstr "User-Info"
|
252 |
|
253 |
-
#:
|
254 |
-
#:
|
255 |
-
#:
|
256 |
-
#:
|
257 |
-
#:
|
258 |
-
#:
|
259 |
-
#:
|
260 |
-
#:
|
261 |
-
#:
|
262 |
-
#:
|
263 |
-
#:
|
|
|
264 |
#@ adminimize
|
265 |
msgid "Default"
|
266 |
msgstr "Standard"
|
267 |
|
268 |
-
#:
|
269 |
-
#:
|
270 |
-
#:
|
271 |
#@ adminimize
|
272 |
msgid "Hide"
|
273 |
msgstr "Ausblenden"
|
274 |
|
275 |
-
#:
|
276 |
#@ adminimize
|
277 |
msgid "Only logout"
|
278 |
msgstr "nur Abmelden"
|
279 |
|
280 |
-
#:
|
281 |
#@ adminimize
|
282 |
msgid "User & Logout"
|
283 |
msgstr "User & Abmelden"
|
284 |
|
285 |
-
#:
|
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 "Der "User-Info-Bereich" ist im oberen rechten Bereich zu finden und kann ausgeblendet oder reduziert dargestellt werden."
|
289 |
|
290 |
-
#:
|
291 |
#@ adminimize
|
292 |
msgid "Change User-Info, redirect to"
|
293 |
msgstr "User Info geändert, Weiterleitung nach"
|
294 |
|
295 |
-
#:
|
296 |
#@ adminimize
|
297 |
msgid "Frontpage of the Blog"
|
298 |
msgstr "Startseite des Blog"
|
299 |
|
300 |
-
#:
|
301 |
#@ adminimize
|
302 |
msgid "When the "User-Info-area" change it, then it is possible to change the redirect."
|
303 |
msgstr "Wenn der "User-Info-Bereich" geändert wird, dann kann die die Weiterleitung nach einem Logout geändert werden."
|
304 |
|
305 |
-
#:
|
306 |
#@ adminimize
|
307 |
msgid "Footer"
|
308 |
msgstr "Footer"
|
309 |
|
310 |
-
#:
|
311 |
#@ adminimize
|
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 |
-
#:
|
316 |
#@ adminimize
|
317 |
msgid "WriteScroll"
|
318 |
msgstr "WriteScroll"
|
319 |
|
320 |
-
#:
|
321 |
-
#:
|
322 |
-
#:
|
323 |
-
#:
|
324 |
-
#:
|
325 |
-
#:
|
|
|
326 |
#@ adminimize
|
327 |
msgid "Activate"
|
328 |
msgstr "Aktiv"
|
329 |
|
330 |
-
#:
|
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 |
-
#:
|
336 |
#@ adminimize
|
337 |
msgid "Timestamp"
|
338 |
msgstr "Timestamp"
|
339 |
|
340 |
-
#:
|
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 |
-
#:
|
346 |
#@ adminimize
|
347 |
msgid "Thickbox FullScreen"
|
348 |
msgstr "Thickbox FullScreen"
|
349 |
|
350 |
-
#:
|
351 |
#@ adminimize
|
352 |
msgid "Flashuploader"
|
353 |
msgstr "Flashuploader"
|
354 |
|
355 |
-
#:
|
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 |
-
#:
|
361 |
#@ adminimize
|
362 |
msgid "Advice in Footer"
|
363 |
msgstr "Hinweis im Footer"
|
364 |
|
365 |
-
#:
|
366 |
#@ adminimize
|
367 |
msgid "Manage Posts"
|
368 |
msgstr "Verwalten Beiträge"
|
369 |
|
370 |
-
#:
|
371 |
#@ adminimize
|
372 |
msgid "Manage Pages"
|
373 |
msgstr "Verwalten Seiten"
|
374 |
|
375 |
-
#:
|
376 |
#@ adminimize
|
377 |
msgid "Write Post"
|
378 |
msgstr "Schreiben Beitrag"
|
379 |
|
380 |
-
#:
|
381 |
#@ adminimize
|
382 |
msgid "Write Page"
|
383 |
msgstr "Schreiben Seite"
|
384 |
|
385 |
-
#:
|
386 |
-
#:
|
387 |
#@ adminimize
|
388 |
msgid "Comments"
|
389 |
msgstr "Kommentare"
|
390 |
|
391 |
-
#:
|
392 |
#@ adminimize
|
393 |
msgid "other Page"
|
394 |
msgstr "andere Seite"
|
395 |
|
396 |
-
#:
|
397 |
-
#:
|
398 |
-
#:
|
399 |
-
#:
|
400 |
-
#:
|
401 |
-
#:
|
|
|
402 |
#@ adminimize
|
403 |
msgid "Update Options"
|
404 |
msgstr "Einstellungen aktualisieren"
|
405 |
|
406 |
-
#:
|
407 |
-
#:
|
408 |
#@ adminimize
|
409 |
msgid "Global options"
|
410 |
msgstr "Globale Einstellungen"
|
411 |
|
412 |
-
#:
|
413 |
-
#:
|
414 |
-
#:
|
415 |
-
#:
|
416 |
-
#:
|
417 |
-
#:
|
|
|
|
|
418 |
#@ adminimize
|
419 |
msgid "Option"
|
420 |
msgstr "Einstellung"
|
421 |
|
422 |
-
#:
|
423 |
-
#:
|
424 |
-
#:
|
425 |
-
#:
|
426 |
-
#:
|
|
|
427 |
#@ adminimize
|
428 |
msgid "Deactivate for"
|
429 |
msgstr "Deaktiviere für"
|
430 |
|
431 |
-
#:
|
432 |
#@ adminimize
|
433 |
msgid "Favorite Actions"
|
434 |
msgstr "Favorisierte Aktionen"
|
435 |
|
436 |
-
#:
|
437 |
#@ adminimize
|
438 |
msgid "Screen-Meta"
|
439 |
msgstr "Screen-Meta"
|
440 |
|
441 |
-
#:
|
442 |
-
#:
|
443 |
-
#:
|
|
|
444 |
#@ adminimize
|
445 |
#@ default
|
446 |
msgid "Screen Options"
|
447 |
msgstr "kontextabhängige Optionen"
|
448 |
|
449 |
-
#:
|
450 |
#@ adminimize
|
451 |
msgid "Contextual Help"
|
452 |
msgstr "kontextabhängig Hilfe"
|
453 |
|
454 |
-
#:
|
455 |
#@ adminimize
|
456 |
msgid "Admin Color Scheme"
|
457 |
msgstr "Farbschema verwalten"
|
458 |
|
459 |
-
#:
|
460 |
-
#:
|
|
|
461 |
#@ adminimize
|
462 |
msgid "Your own options"
|
463 |
msgstr "Deine eigenen Einstellungen"
|
464 |
|
465 |
-
#:
|
466 |
-
#:
|
467 |
-
#:
|
468 |
-
#:
|
|
|
469 |
#@ adminimize
|
470 |
msgid "ID or class"
|
471 |
msgstr "ID oder Klasse"
|
472 |
|
473 |
-
#:
|
474 |
-
#:
|
475 |
-
#:
|
476 |
-
#:
|
|
|
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 |
-
#:
|
482 |
-
#:
|
483 |
-
#:
|
484 |
-
#:
|
|
|
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 |
-
#:
|
490 |
-
#:
|
491 |
-
#:
|
492 |
-
#:
|
|
|
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 |
-
#:
|
498 |
-
#:
|
499 |
#@ adminimize
|
500 |
msgid "Menu Options"
|
501 |
msgstr "Menu Einstellungen"
|
502 |
|
503 |
-
#:
|
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 |
-
#:
|
509 |
-
#:
|
|
|
510 |
#@ default
|
511 |
msgid "Help"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#:
|
515 |
-
#:
|
516 |
#@ adminimize
|
517 |
msgid "Permalink"
|
518 |
msgstr "Permalink"
|
519 |
|
520 |
-
#:
|
521 |
#@ adminimize
|
522 |
msgid "Excerpt"
|
523 |
msgstr "Auszug"
|
524 |
|
525 |
-
#:
|
526 |
#@ adminimize
|
527 |
msgid "Trackbacks"
|
528 |
msgstr "Trackbacks"
|
529 |
|
530 |
-
#:
|
531 |
-
#:
|
532 |
#@ default
|
533 |
msgid "Custom Fields"
|
534 |
msgstr "Benutzerdefinierte Felder"
|
535 |
|
536 |
-
#:
|
537 |
#@ adminimize
|
538 |
msgid "Password Protect This Post"
|
539 |
msgstr "Diesen Artikel durch ein Passwort schützen"
|
540 |
|
541 |
-
#:
|
542 |
#@ default
|
543 |
msgid "Post Author"
|
544 |
msgstr "Autor"
|
545 |
|
546 |
-
#:
|
547 |
#@ default
|
548 |
msgid "Post Revisions"
|
549 |
msgstr "Post Revisions"
|
550 |
|
551 |
-
#:
|
552 |
#@ adminimize
|
553 |
msgid "Related, Shortcuts"
|
554 |
msgstr "Siehe auch, Tastaturkürzel"
|
555 |
|
556 |
-
#:
|
557 |
-
#:
|
558 |
-
#@ adminimize
|
559 |
-
msgid "Messenges"
|
560 |
-
msgstr "Mitteilungen"
|
561 |
-
|
562 |
-
#: adminimize_page.php:551
|
563 |
-
#: adminimize_page.php:645
|
564 |
#@ adminimize
|
565 |
msgid "h2: Advanced Options"
|
566 |
msgstr "h2: Erweiterte Einstellungen"
|
567 |
|
568 |
-
#:
|
569 |
-
#:
|
570 |
#@ adminimize
|
571 |
msgid "Media Buttons (all)"
|
572 |
msgstr "Media Buttons (alle)"
|
573 |
|
574 |
-
#:
|
575 |
-
#:
|
576 |
#@ adminimize
|
577 |
msgid "Word count"
|
578 |
msgstr "Word count"
|
579 |
|
580 |
-
#:
|
581 |
#@ default
|
582 |
msgid "Post Slug"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#:
|
586 |
-
#:
|
587 |
-
#:
|
588 |
#@ adminimize
|
589 |
msgid "Publish Actions"
|
590 |
msgstr "Publish Actions"
|
591 |
|
592 |
-
#:
|
593 |
-
#:
|
594 |
#@ default
|
595 |
msgid "Discussion"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#:
|
599 |
#@ default
|
600 |
msgid "Post Thumbnail"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#:
|
604 |
-
#:
|
605 |
#@ default
|
606 |
#@ adminimize
|
607 |
msgid "Suggested tags from"
|
608 |
msgstr "Suggested tags from"
|
609 |
|
610 |
-
#:
|
611 |
#@ default
|
612 |
msgid "Text Control"
|
613 |
msgstr "Text Control"
|
614 |
|
615 |
-
#:
|
616 |
-
#:
|
617 |
#@ default
|
618 |
msgid "HTML Special Characters"
|
619 |
msgstr "HTML Special Characters"
|
620 |
|
621 |
-
#:
|
622 |
#@ default
|
623 |
msgid "All in One SEO Pack"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#:
|
627 |
#@ adminimize
|
628 |
msgid "Comments & Pings"
|
629 |
msgstr "Kommentare & Pings"
|
630 |
|
631 |
-
#:
|
632 |
#@ adminimize
|
633 |
msgid "Password Protect This Page"
|
634 |
msgstr "Diese Seite mit einem Passwort versehen"
|
635 |
|
636 |
-
#:
|
637 |
#@ default
|
638 |
msgid "Attributes"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#:
|
642 |
#@ adminimize
|
643 |
msgid "Page Template"
|
644 |
msgstr "Seiten Template"
|
645 |
|
646 |
-
#:
|
647 |
#@ adminimize
|
648 |
msgid "Page Order"
|
649 |
msgstr "Reihenfolge"
|
650 |
|
651 |
-
#:
|
652 |
#@ default
|
653 |
msgid "Page Author"
|
654 |
msgstr "Seitenautor"
|
655 |
|
656 |
-
#:
|
657 |
#@ default
|
658 |
msgid "Page Revisions"
|
659 |
msgstr "Page Revisions"
|
660 |
|
661 |
-
#:
|
662 |
#@ adminimize
|
663 |
msgid "Related"
|
664 |
msgstr "Siehe auch"
|
665 |
|
666 |
-
#:
|
667 |
#@ default
|
668 |
msgid "Page Slug"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#:
|
672 |
#@ default
|
673 |
msgid "Page Image"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#:
|
677 |
-
#:
|
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 |
-
#:
|
683 |
#@ default
|
684 |
msgid "Profile"
|
685 |
msgstr "Profile"
|
686 |
|
687 |
-
#:
|
688 |
-
#:
|
689 |
-
#:
|
690 |
#@ adminimize
|
691 |
msgid "Write options - Post"
|
692 |
msgstr "Schreiben Einstellungen - Beiträge"
|
693 |
|
694 |
-
#:
|
695 |
#@ adminimize
|
696 |
msgid "Your own post options"
|
697 |
msgstr "Deine eigenen Beitrags-Einstellungen"
|
698 |
|
699 |
-
#:
|
700 |
-
#:
|
701 |
-
#:
|
702 |
#@ adminimize
|
703 |
msgid "Write options - Page"
|
704 |
msgstr "Schreiben Einstellungen - Seiten"
|
705 |
|
706 |
-
#:
|
707 |
#@ adminimize
|
708 |
msgid "Your own page options"
|
709 |
msgstr "Deine eigenen Seiten-Einstellungen"
|
710 |
|
711 |
-
#:
|
712 |
-
#:
|
713 |
#@ adminimize
|
714 |
msgid "Links options"
|
715 |
msgstr "Link Einstellungen"
|
716 |
|
717 |
-
#:
|
718 |
#@ default
|
719 |
msgid "Name"
|
720 |
msgstr "Name"
|
721 |
|
722 |
-
#:
|
723 |
#@ default
|
724 |
msgid "Web Address"
|
725 |
msgstr "Web-Adresse"
|
726 |
|
727 |
-
#:
|
728 |
#@ default
|
729 |
msgid "Description"
|
730 |
msgstr "Beschreibung"
|
731 |
|
732 |
-
#:
|
733 |
#@ default
|
734 |
msgid "Target"
|
735 |
msgstr "Target"
|
736 |
|
737 |
-
#:
|
738 |
#@ default
|
739 |
msgid "Link Relationship (XFN)"
|
740 |
msgstr "Link-Beziehungen (XFN)"
|
741 |
|
742 |
-
#:
|
743 |
#@ default
|
744 |
msgid "Advanced"
|
745 |
msgstr "Erweitert"
|
746 |
|
747 |
-
#: adminimize_page.php:
|
748 |
-
#: adminimize_page.php:
|
749 |
-
#:
|
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:
|
795 |
-
#:
|
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:
|
811 |
-
#:
|
812 |
-
#:
|
813 |
#@ adminimize
|
814 |
msgid "About the plugin"
|
815 |
msgstr "Über das Plugin"
|
816 |
|
817 |
-
#: adminimize_page.php:
|
818 |
-
#:
|
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:
|
824 |
-
#:
|
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:
|
830 |
-
#:
|
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:
|
841 |
-
#:
|
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 »"
|
870 |
|
871 |
-
#:
|
872 |
#@ adminimize
|
873 |
msgid "MiniMenu"
|
874 |
msgstr "MiniMenu"
|
875 |
|
876 |
-
#: adminimize_page.php:
|
877 |
-
#: adminimize_page.php:
|
878 |
-
#: adminimize_page.php:
|
879 |
-
#: adminimize_page.php:
|
880 |
-
#:
|
881 |
-
#:
|
882 |
-
#:
|
883 |
-
#:
|
884 |
-
#:
|
885 |
-
#:
|
|
|
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 |
-
#:
|
901 |
#@ adminimize
|
902 |
msgid "Category Height"
|
903 |
msgstr "Kategorie-Höhe"
|
904 |
|
905 |
-
#:
|
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 |
-
#:
|
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 |
-
#:
|
916 |
#@ adminimize
|
917 |
msgid "Dashboard deactivate, redirect to"
|
918 |
msgstr "Dashboard inaktiv, Weiterleitung nach"
|
919 |
|
920 |
-
#:
|
921 |
-
|
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:557
|
926 |
-
#: adminimize_page.php:651
|
927 |
#@ default
|
928 |
msgid "HTML Editor Button"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#:
|
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."
|
@@ -957,25 +960,87 @@ msgstr ""
|
|
957 |
msgid "http://bueltge.de/"
|
958 |
msgstr ""
|
959 |
|
960 |
-
|
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 |
-
#:
|
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 |
-
#:
|
977 |
-
#:
|
978 |
#@ adminimize
|
979 |
msgid "Title"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
980 |
msgstr ""
|
981 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: adminimize.php:103
|
23 |
#@ adminimize
|
24 |
msgid "Unknown error."
|
25 |
msgstr "Unbekannter Fehler."
|
26 |
|
27 |
+
#: adminimize.php:112
|
28 |
#@ adminimize
|
29 |
msgid "The updates were saved."
|
30 |
msgstr "Die Einstellungen wurden gespeichert"
|
31 |
|
32 |
+
#: adminimize.php:113
|
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:115
|
38 |
#@ adminimize
|
39 |
msgid "All entries in the database were deleted."
|
40 |
msgstr "Die Einstellungen wurde gelöscht!"
|
41 |
|
42 |
+
#: adminimize.php:116
|
43 |
#@ adminimize
|
44 |
msgid "Set the checkbox on deinstall-button."
|
45 |
msgstr "Checkbox setzen, wenn wirklich deinstalliert werden soll!"
|
46 |
|
47 |
+
#: adminimize.php:117
|
48 |
#@ adminimize
|
49 |
msgid "Can't load menu and submenu."
|
50 |
msgstr "Menu und Submenu können nicht geladen werden!"
|
51 |
|
52 |
+
#: adminimize.php:118
|
53 |
#@ adminimize
|
54 |
msgid "Backend-Theme was activated!"
|
55 |
msgstr "Backend-Theme wurde zugewiesen!"
|
56 |
|
57 |
+
#: adminimize.php:119
|
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:470
|
63 |
+
#: inc-options/links_options.php:44
|
64 |
+
#: inc-options/menu_options.php:95
|
65 |
#@ default
|
66 |
#@ adminimize
|
67 |
msgid "Categories"
|
68 |
msgstr "Kategorien"
|
69 |
|
70 |
+
#: adminimize.php:476
|
71 |
+
#: adminimize.php:487
|
72 |
#@ default
|
73 |
msgid "+ Add New Category"
|
74 |
msgstr "+ Add New Category"
|
75 |
|
76 |
+
#: adminimize.php:478
|
77 |
+
#: adminimize.php:489
|
78 |
#@ default
|
79 |
msgid "New category name"
|
80 |
msgstr "New category name"
|
81 |
|
82 |
+
#: adminimize.php:479
|
83 |
+
#: adminimize.php:491
|
84 |
#@ default
|
85 |
msgid "Parent category"
|
86 |
msgstr "Parent category"
|
87 |
|
88 |
+
#: adminimize.php:480
|
89 |
+
#: adminimize.php:492
|
90 |
#@ default
|
91 |
msgid "Add"
|
92 |
msgstr "Add"
|
93 |
|
94 |
+
#: adminimize.php:489
|
95 |
+
#: inc-options/menu_options.php:96
|
96 |
#@ default
|
97 |
#@ adminimize
|
98 |
msgid "Add New Category"
|
99 |
msgstr "Add New Category"
|
100 |
|
101 |
+
#: adminimize.php:513
|
102 |
+
#: adminimize.php:514
|
103 |
+
#: inc-options/menu_options.php:93
|
104 |
#@ default
|
105 |
#@ adminimize
|
106 |
msgid "Tags"
|
107 |
msgstr "Tags"
|
108 |
|
109 |
+
#: adminimize.php:555
|
110 |
+
#: adminimize.php:569
|
111 |
+
#: adminimize.php:583
|
112 |
#@ default
|
113 |
msgid "Blue"
|
114 |
msgstr "Blau"
|
115 |
|
116 |
+
#: adminimize.php:562
|
117 |
+
#: adminimize.php:576
|
118 |
+
#: adminimize.php:590
|
119 |
#@ default
|
120 |
msgid "Gray"
|
121 |
msgstr "Grau"
|
122 |
|
123 |
+
#: adminimize.php:598
|
124 |
+
#: adminimize.php:640
|
125 |
+
#: adminimize.php:663
|
126 |
#@ default
|
127 |
msgid "Classic"
|
128 |
msgstr "Classic"
|
129 |
|
130 |
+
#: adminimize.php:605
|
131 |
+
#: adminimize.php:647
|
132 |
+
#: adminimize.php:670
|
133 |
#@ default
|
134 |
msgid "Fresh"
|
135 |
msgstr "Fresh"
|
136 |
|
137 |
+
#: adminimize.php:612
|
138 |
#@ default
|
139 |
msgid "WordPress 2.3"
|
140 |
msgstr "WordPress 2.3"
|
141 |
|
142 |
+
#: adminimize.php:619
|
143 |
#@ default
|
144 |
msgid "Maybe i'm colorblind"
|
145 |
msgstr "Maybe i'm colorblind"
|
146 |
|
147 |
+
#: adminimize.php:626
|
148 |
#@ default
|
149 |
msgid "Grey"
|
150 |
msgstr "Grey"
|
151 |
|
152 |
+
#: adminimize.php:751
|
153 |
+
#: adminimize.php:754
|
154 |
#@ default
|
155 |
msgid "Dashboard"
|
156 |
msgstr "Dashboard"
|
157 |
|
158 |
+
#: adminimize.php:816
|
159 |
+
#: adminimize.php:818
|
160 |
+
#: adminimize.php:833
|
161 |
+
#: adminimize.php:835
|
162 |
+
#: adminimize.php:1138
|
163 |
#@ default
|
164 |
msgid "Log Out"
|
165 |
msgstr "Log Out"
|
166 |
|
167 |
+
#: adminimize.php:1159
|
168 |
#@ default
|
169 |
msgid "Visit plugin homepage"
|
170 |
msgstr "Visit plugin homepage"
|
171 |
|
172 |
+
#: adminimize.php:1162
|
173 |
#@ default
|
174 |
msgid "plugin"
|
175 |
msgstr "plugin"
|
176 |
|
177 |
+
#: adminimize.php:1162
|
178 |
#@ default
|
179 |
msgid "Version"
|
180 |
msgstr "Version"
|
181 |
|
182 |
+
#: adminimize.php:1162
|
183 |
#@ adminimize
|
184 |
msgid "History"
|
185 |
msgstr "Historie"
|
186 |
|
187 |
+
#: adminimize.php:1162
|
188 |
#@ default
|
189 |
msgid "Author"
|
190 |
msgstr "Author"
|
191 |
|
192 |
+
#: adminimize.php:1166
|
193 |
#@ adminimize
|
194 |
msgid "plugin activate"
|
195 |
msgstr "plugin activate"
|
196 |
|
197 |
+
#: adminimize.php:1187
|
198 |
#@ default
|
199 |
msgid "Settings"
|
200 |
msgstr "Settings"
|
201 |
|
202 |
+
#: adminimize.php:1250
|
|
|
203 |
#@ adminimize
|
204 |
msgid "<a href=\"http://wordpress.org/extend/plugins/adminimize/\">Documentation</a>"
|
205 |
msgstr "<a href=\"http://bueltge.de/wordpress-admin-theme-adminimize/674/\">Dokumentation</a> (<a href=\"http://wordpress.org/extend/plugins/adminimize/\">en</a>)"
|
206 |
|
207 |
#. translators: plugin header field 'Name'
|
208 |
#: adminimize.php:0
|
209 |
+
#: adminimize.php:1268
|
210 |
+
#: inc-options/minimenu.php:6
|
211 |
#@ adminimize
|
212 |
msgid "Adminimize"
|
213 |
msgstr "Adminimize"
|
214 |
|
215 |
+
#: adminimize.php:1270
|
216 |
#@ adminimize
|
217 |
msgid "Adminimize Options"
|
218 |
msgstr "Adminimize Einstellungen"
|
219 |
|
220 |
+
#: adminimize.php:1292
|
221 |
#@ default
|
222 |
msgid "Cheatin’ uh?"
|
223 |
msgstr "Cheatin’ uh?"
|
224 |
|
225 |
+
#: adminimize_page.php:142
|
226 |
+
#: adminimize_page.php:240
|
227 |
+
#: adminimize_page.php:275
|
228 |
+
#: adminimize_page.php:296
|
229 |
+
#: inc-options/backend_options.php:7
|
230 |
+
#: inc-options/global_options.php:7
|
231 |
+
#: inc-options/links_options.php:7
|
232 |
+
#: inc-options/menu_options.php:7
|
233 |
+
#: inc-options/minimenu.php:12
|
234 |
+
#: inc-options/minimenu.php:37
|
235 |
+
#: inc-options/wp_nav_menu_options.php:6
|
236 |
+
#: inc-options/write_page_options.php:6
|
237 |
+
#: inc-options/write_post_options.php:7
|
238 |
#@ default
|
239 |
msgid "Click to toggle"
|
240 |
msgstr "Zum Umschalten klicken"
|
241 |
|
242 |
+
#: inc-options/backend_options.php:8
|
243 |
+
#: inc-options/minimenu.php:42
|
244 |
#@ adminimize
|
245 |
msgid "Backend Options"
|
246 |
msgstr "Einstellungen Backend"
|
247 |
|
248 |
+
#: inc-options/backend_options.php:29
|
249 |
#@ adminimize
|
250 |
msgid "User-Info"
|
251 |
msgstr "User-Info"
|
252 |
|
253 |
+
#: inc-options/backend_options.php:22
|
254 |
+
#: inc-options/backend_options.php:33
|
255 |
+
#: inc-options/backend_options.php:46
|
256 |
+
#: inc-options/backend_options.php:56
|
257 |
+
#: inc-options/backend_options.php:66
|
258 |
+
#: inc-options/backend_options.php:76
|
259 |
+
#: inc-options/backend_options.php:86
|
260 |
+
#: inc-options/backend_options.php:96
|
261 |
+
#: inc-options/backend_options.php:106
|
262 |
+
#: inc-options/backend_options.php:116
|
263 |
+
#: inc-options/backend_options.php:126
|
264 |
+
#: inc-options/backend_options.php:155
|
265 |
#@ adminimize
|
266 |
msgid "Default"
|
267 |
msgstr "Standard"
|
268 |
|
269 |
+
#: inc-options/backend_options.php:34
|
270 |
+
#: inc-options/backend_options.php:57
|
271 |
+
#: inc-options/backend_options.php:67
|
272 |
#@ adminimize
|
273 |
msgid "Hide"
|
274 |
msgstr "Ausblenden"
|
275 |
|
276 |
+
#: inc-options/backend_options.php:35
|
277 |
#@ adminimize
|
278 |
msgid "Only logout"
|
279 |
msgstr "nur Abmelden"
|
280 |
|
281 |
+
#: inc-options/backend_options.php:36
|
282 |
#@ adminimize
|
283 |
msgid "User & Logout"
|
284 |
msgstr "User & Abmelden"
|
285 |
|
286 |
+
#: inc-options/backend_options.php:37
|
287 |
#@ adminimize
|
288 |
msgid "The "User-Info-area" is on the top right side of the backend. You can hide or reduced show."
|
289 |
msgstr "Der "User-Info-Bereich" ist im oberen rechten Bereich zu finden und kann ausgeblendet oder reduziert dargestellt werden."
|
290 |
|
291 |
+
#: inc-options/backend_options.php:42
|
292 |
#@ adminimize
|
293 |
msgid "Change User-Info, redirect to"
|
294 |
msgstr "User Info geändert, Weiterleitung nach"
|
295 |
|
296 |
+
#: inc-options/backend_options.php:47
|
297 |
#@ adminimize
|
298 |
msgid "Frontpage of the Blog"
|
299 |
msgstr "Startseite des Blog"
|
300 |
|
301 |
+
#: inc-options/backend_options.php:48
|
302 |
#@ adminimize
|
303 |
msgid "When the "User-Info-area" change it, then it is possible to change the redirect."
|
304 |
msgstr "Wenn der "User-Info-Bereich" geändert wird, dann kann die die Weiterleitung nach einem Logout geändert werden."
|
305 |
|
306 |
+
#: inc-options/backend_options.php:52
|
307 |
#@ adminimize
|
308 |
msgid "Footer"
|
309 |
msgstr "Footer"
|
310 |
|
311 |
+
#: inc-options/backend_options.php:58
|
312 |
#@ adminimize
|
313 |
msgid "The Footer-area can hide, include all links and details."
|
314 |
msgstr "Der Footer-Bereich kann deaktiviert werden, inklusive aller Links und Hinweise."
|
315 |
|
316 |
+
#: inc-options/backend_options.php:72
|
317 |
#@ adminimize
|
318 |
msgid "WriteScroll"
|
319 |
msgstr "WriteScroll"
|
320 |
|
321 |
+
#: inc-options/backend_options.php:23
|
322 |
+
#: inc-options/backend_options.php:77
|
323 |
+
#: inc-options/backend_options.php:87
|
324 |
+
#: inc-options/backend_options.php:97
|
325 |
+
#: inc-options/backend_options.php:107
|
326 |
+
#: inc-options/backend_options.php:117
|
327 |
+
#: inc-options/backend_options.php:127
|
328 |
#@ adminimize
|
329 |
msgid "Activate"
|
330 |
msgstr "Aktiv"
|
331 |
|
332 |
+
#: inc-options/backend_options.php:78
|
333 |
#@ adminimize
|
334 |
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."
|
335 |
msgstr "Automatisches Scrollen zum Editor beim Aufruf der Seite Schreiben in Beiträge und Seite."
|
336 |
|
337 |
+
#: inc-options/backend_options.php:82
|
338 |
#@ adminimize
|
339 |
msgid "Timestamp"
|
340 |
msgstr "Timestamp"
|
341 |
|
342 |
+
#: inc-options/backend_options.php:88
|
343 |
#@ adminimize
|
344 |
msgid "Opens the post timestamp editing fields without you having to click the \"Edit\" link every time."
|
345 |
msgstr "Das Feld zum Ändern des Veröffentlichungsdatum ist immer geöffnet."
|
346 |
|
347 |
+
#: inc-options/backend_options.php:92
|
348 |
#@ adminimize
|
349 |
msgid "Thickbox FullScreen"
|
350 |
msgstr "Thickbox FullScreen"
|
351 |
|
352 |
+
#: inc-options/backend_options.php:102
|
353 |
#@ adminimize
|
354 |
msgid "Flashuploader"
|
355 |
msgstr "Flashuploader"
|
356 |
|
357 |
+
#: inc-options/backend_options.php:108
|
358 |
#@ adminimize
|
359 |
msgid "Disable the flashuploader and users use only the standard uploader."
|
360 |
msgstr "Deaktiviere den Flashuploader und Nutzer können nur den Standard-Uploader erreichen."
|
361 |
|
362 |
+
#: inc-options/backend_options.php:122
|
363 |
#@ adminimize
|
364 |
msgid "Advice in Footer"
|
365 |
msgstr "Hinweis im Footer"
|
366 |
|
367 |
+
#: inc-options/backend_options.php:156
|
368 |
#@ adminimize
|
369 |
msgid "Manage Posts"
|
370 |
msgstr "Verwalten Beiträge"
|
371 |
|
372 |
+
#: inc-options/backend_options.php:157
|
373 |
#@ adminimize
|
374 |
msgid "Manage Pages"
|
375 |
msgstr "Verwalten Seiten"
|
376 |
|
377 |
+
#: inc-options/backend_options.php:158
|
378 |
#@ adminimize
|
379 |
msgid "Write Post"
|
380 |
msgstr "Schreiben Beitrag"
|
381 |
|
382 |
+
#: inc-options/backend_options.php:159
|
383 |
#@ adminimize
|
384 |
msgid "Write Page"
|
385 |
msgstr "Schreiben Seite"
|
386 |
|
387 |
+
#: inc-options/backend_options.php:160
|
388 |
+
#: inc-options/menu_options.php:100
|
389 |
#@ adminimize
|
390 |
msgid "Comments"
|
391 |
msgstr "Kommentare"
|
392 |
|
393 |
+
#: inc-options/backend_options.php:161
|
394 |
#@ adminimize
|
395 |
msgid "other Page"
|
396 |
msgstr "andere Seite"
|
397 |
|
398 |
+
#: inc-options/backend_options.php:173
|
399 |
+
#: inc-options/global_options.php:114
|
400 |
+
#: inc-options/links_options.php:118
|
401 |
+
#: inc-options/menu_options.php:336
|
402 |
+
#: inc-options/wp_nav_menu_options.php:139
|
403 |
+
#: inc-options/write_page_options.php:79
|
404 |
+
#: inc-options/write_post_options.php:80
|
405 |
#@ adminimize
|
406 |
msgid "Update Options"
|
407 |
msgstr "Einstellungen aktualisieren"
|
408 |
|
409 |
+
#: inc-options/global_options.php:8
|
410 |
+
#: inc-options/minimenu.php:45
|
411 |
#@ adminimize
|
412 |
msgid "Global options"
|
413 |
msgstr "Globale Einstellungen"
|
414 |
|
415 |
+
#: inc-options/global_options.php:15
|
416 |
+
#: inc-options/global_options.php:89
|
417 |
+
#: inc-options/links_options.php:15
|
418 |
+
#: inc-options/links_options.php:93
|
419 |
+
#: inc-options/wp_nav_menu_options.php:14
|
420 |
+
#: inc-options/wp_nav_menu_options.php:114
|
421 |
+
#: inc-options/write_page_options.php:54
|
422 |
+
#: inc-options/write_post_options.php:55
|
423 |
#@ adminimize
|
424 |
msgid "Option"
|
425 |
msgstr "Einstellung"
|
426 |
|
427 |
+
#: inc-options/global_options.php:18
|
428 |
+
#: inc-options/links_options.php:18
|
429 |
+
#: inc-options/menu_options.php:18
|
430 |
+
#: inc-options/wp_nav_menu_options.php:17
|
431 |
+
#: inc-options/write_page_options.php:17
|
432 |
+
#: inc-options/write_post_options.php:18
|
433 |
#@ adminimize
|
434 |
msgid "Deactivate for"
|
435 |
msgstr "Deaktiviere für"
|
436 |
|
437 |
+
#: inc-options/global_options.php:40
|
438 |
#@ adminimize
|
439 |
msgid "Favorite Actions"
|
440 |
msgstr "Favorisierte Aktionen"
|
441 |
|
442 |
+
#: inc-options/global_options.php:41
|
443 |
#@ adminimize
|
444 |
msgid "Screen-Meta"
|
445 |
msgstr "Screen-Meta"
|
446 |
|
447 |
+
#: inc-options/global_options.php:42
|
448 |
+
#: inc-options/menu_options.php:90
|
449 |
+
#: inc-options/menu_options.php:187
|
450 |
+
#: inc-options/wp_nav_menu_options.php:41
|
451 |
#@ adminimize
|
452 |
#@ default
|
453 |
msgid "Screen Options"
|
454 |
msgstr "kontextabhängige Optionen"
|
455 |
|
456 |
+
#: inc-options/global_options.php:43
|
457 |
#@ adminimize
|
458 |
msgid "Contextual Help"
|
459 |
msgstr "kontextabhängig Hilfe"
|
460 |
|
461 |
+
#: inc-options/global_options.php:44
|
462 |
#@ adminimize
|
463 |
msgid "Admin Color Scheme"
|
464 |
msgstr "Farbschema verwalten"
|
465 |
|
466 |
+
#: inc-options/global_options.php:88
|
467 |
+
#: inc-options/links_options.php:92
|
468 |
+
#: inc-options/wp_nav_menu_options.php:113
|
469 |
#@ adminimize
|
470 |
msgid "Your own options"
|
471 |
msgstr "Deine eigenen Einstellungen"
|
472 |
|
473 |
+
#: inc-options/global_options.php:88
|
474 |
+
#: inc-options/links_options.php:92
|
475 |
+
#: inc-options/wp_nav_menu_options.php:113
|
476 |
+
#: inc-options/write_page_options.php:53
|
477 |
+
#: inc-options/write_post_options.php:54
|
478 |
#@ adminimize
|
479 |
msgid "ID or class"
|
480 |
msgstr "ID oder Klasse"
|
481 |
|
482 |
+
#: inc-options/global_options.php:95
|
483 |
+
#: inc-options/links_options.php:99
|
484 |
+
#: inc-options/wp_nav_menu_options.php:120
|
485 |
+
#: inc-options/write_page_options.php:60
|
486 |
+
#: inc-options/write_post_options.php:61
|
487 |
#@ adminimize
|
488 |
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."
|
489 |
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."
|
490 |
|
491 |
+
#: inc-options/global_options.php:101
|
492 |
+
#: inc-options/links_options.php:105
|
493 |
+
#: inc-options/wp_nav_menu_options.php:126
|
494 |
+
#: inc-options/write_page_options.php:66
|
495 |
+
#: inc-options/write_post_options.php:67
|
496 |
#@ adminimize
|
497 |
msgid "Possible nomination for ID or class. Separate multiple nominations through a carriage return."
|
498 |
msgstr "Mögliche Benennung der ID oder Klasse. Trenne Werte durch eine neue Zeile."
|
499 |
|
500 |
+
#: inc-options/global_options.php:106
|
501 |
+
#: inc-options/links_options.php:110
|
502 |
+
#: inc-options/wp_nav_menu_options.php:131
|
503 |
+
#: inc-options/write_page_options.php:71
|
504 |
+
#: inc-options/write_post_options.php:72
|
505 |
#@ adminimize
|
506 |
msgid "Possible IDs or classes. Separate multiple values through a carriage return."
|
507 |
msgstr "Mögliche IDs oder Klassen. Trenne Werte durch eine neue Zeile."
|
508 |
|
509 |
+
#: inc-options/menu_options.php:8
|
510 |
+
#: inc-options/minimenu.php:48
|
511 |
#@ adminimize
|
512 |
msgid "Menu Options"
|
513 |
msgstr "Menu Einstellungen"
|
514 |
|
515 |
+
#: inc-options/menu_options.php:15
|
516 |
#@ adminimize
|
517 |
msgid "Menu options - Menu, <span style=\\\"font-weight: 400;\\\">Submenu</span>"
|
518 |
msgstr "Menu Einstellungen - Menu, <span style=\"font-weight: 400;\">Submenu</span>"
|
519 |
|
520 |
+
#: inc-options/menu_options.php:89
|
521 |
+
#: inc-options/menu_options.php:186
|
522 |
+
#: inc-options/wp_nav_menu_options.php:40
|
523 |
#@ default
|
524 |
msgid "Help"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: inc-options/menu_options.php:92
|
528 |
+
#: inc-options/menu_options.php:189
|
529 |
#@ adminimize
|
530 |
msgid "Permalink"
|
531 |
msgstr "Permalink"
|
532 |
|
533 |
+
#: inc-options/menu_options.php:97
|
534 |
#@ adminimize
|
535 |
msgid "Excerpt"
|
536 |
msgstr "Auszug"
|
537 |
|
538 |
+
#: inc-options/menu_options.php:98
|
539 |
#@ adminimize
|
540 |
msgid "Trackbacks"
|
541 |
msgstr "Trackbacks"
|
542 |
|
543 |
+
#: inc-options/menu_options.php:99
|
544 |
+
#: inc-options/menu_options.php:190
|
545 |
#@ default
|
546 |
msgid "Custom Fields"
|
547 |
msgstr "Benutzerdefinierte Felder"
|
548 |
|
549 |
+
#: inc-options/menu_options.php:101
|
550 |
#@ adminimize
|
551 |
msgid "Password Protect This Post"
|
552 |
msgstr "Diesen Artikel durch ein Passwort schützen"
|
553 |
|
554 |
+
#: inc-options/menu_options.php:102
|
555 |
#@ default
|
556 |
msgid "Post Author"
|
557 |
msgstr "Autor"
|
558 |
|
559 |
+
#: inc-options/menu_options.php:103
|
560 |
#@ default
|
561 |
msgid "Post Revisions"
|
562 |
msgstr "Post Revisions"
|
563 |
|
564 |
+
#: inc-options/menu_options.php:104
|
565 |
#@ adminimize
|
566 |
msgid "Related, Shortcuts"
|
567 |
msgstr "Siehe auch, Tastaturkürzel"
|
568 |
|
569 |
+
#: inc-options/menu_options.php:106
|
570 |
+
#: inc-options/menu_options.php:200
|
|
|
|
|
|
|
|
|
|
|
|
|
571 |
#@ adminimize
|
572 |
msgid "h2: Advanced Options"
|
573 |
msgstr "h2: Erweiterte Einstellungen"
|
574 |
|
575 |
+
#: inc-options/menu_options.php:107
|
576 |
+
#: inc-options/menu_options.php:201
|
577 |
#@ adminimize
|
578 |
msgid "Media Buttons (all)"
|
579 |
msgstr "Media Buttons (alle)"
|
580 |
|
581 |
+
#: inc-options/menu_options.php:108
|
582 |
+
#: inc-options/menu_options.php:202
|
583 |
#@ adminimize
|
584 |
msgid "Word count"
|
585 |
msgstr "Word count"
|
586 |
|
587 |
+
#: inc-options/menu_options.php:109
|
588 |
#@ default
|
589 |
msgid "Post Slug"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: inc-options/links_options.php:48
|
593 |
+
#: inc-options/menu_options.php:110
|
594 |
+
#: inc-options/menu_options.php:204
|
595 |
#@ adminimize
|
596 |
msgid "Publish Actions"
|
597 |
msgstr "Publish Actions"
|
598 |
|
599 |
+
#: inc-options/menu_options.php:111
|
600 |
+
#: inc-options/menu_options.php:205
|
601 |
#@ default
|
602 |
msgid "Discussion"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: inc-options/menu_options.php:116
|
606 |
#@ default
|
607 |
msgid "Post Thumbnail"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: inc-options/menu_options.php:118
|
611 |
+
#: inc-options/menu_options.php:212
|
612 |
#@ default
|
613 |
#@ adminimize
|
614 |
msgid "Suggested tags from"
|
615 |
msgstr "Suggested tags from"
|
616 |
|
617 |
+
#: inc-options/menu_options.php:120
|
618 |
#@ default
|
619 |
msgid "Text Control"
|
620 |
msgstr "Text Control"
|
621 |
|
622 |
+
#: inc-options/menu_options.php:122
|
623 |
+
#: inc-options/menu_options.php:214
|
624 |
#@ default
|
625 |
msgid "HTML Special Characters"
|
626 |
msgstr "HTML Special Characters"
|
627 |
|
628 |
+
#: inc-options/menu_options.php:124
|
629 |
#@ default
|
630 |
msgid "All in One SEO Pack"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: inc-options/menu_options.php:191
|
634 |
#@ adminimize
|
635 |
msgid "Comments & Pings"
|
636 |
msgstr "Kommentare & Pings"
|
637 |
|
638 |
+
#: inc-options/menu_options.php:192
|
639 |
#@ adminimize
|
640 |
msgid "Password Protect This Page"
|
641 |
msgstr "Diese Seite mit einem Passwort versehen"
|
642 |
|
643 |
+
#: inc-options/menu_options.php:193
|
644 |
#@ default
|
645 |
msgid "Attributes"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: inc-options/menu_options.php:194
|
649 |
#@ adminimize
|
650 |
msgid "Page Template"
|
651 |
msgstr "Seiten Template"
|
652 |
|
653 |
+
#: inc-options/menu_options.php:195
|
654 |
#@ adminimize
|
655 |
msgid "Page Order"
|
656 |
msgstr "Reihenfolge"
|
657 |
|
658 |
+
#: inc-options/menu_options.php:196
|
659 |
#@ default
|
660 |
msgid "Page Author"
|
661 |
msgstr "Seitenautor"
|
662 |
|
663 |
+
#: inc-options/menu_options.php:197
|
664 |
#@ default
|
665 |
msgid "Page Revisions"
|
666 |
msgstr "Page Revisions"
|
667 |
|
668 |
+
#: inc-options/menu_options.php:198
|
669 |
#@ adminimize
|
670 |
msgid "Related"
|
671 |
msgstr "Siehe auch"
|
672 |
|
673 |
+
#: inc-options/menu_options.php:203
|
674 |
#@ default
|
675 |
msgid "Page Slug"
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: inc-options/menu_options.php:210
|
679 |
#@ default
|
680 |
msgid "Page Image"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: inc-options/menu_options.php:252
|
684 |
+
#: inc-options/menu_options.php:300
|
685 |
#@ adminimize
|
686 |
msgid "After activate the check box it heavy attitudes will change."
|
687 |
msgstr "Wenn die Checkbox aktiv ist, dann wird das Ändern von Einstellungen erschwert."
|
688 |
|
689 |
+
#: inc-options/menu_options.php:283
|
690 |
#@ default
|
691 |
msgid "Profile"
|
692 |
msgstr "Profile"
|
693 |
|
694 |
+
#: inc-options/minimenu.php:51
|
695 |
+
#: inc-options/write_post_options.php:8
|
696 |
+
#: inc-options/write_post_options.php:15
|
697 |
#@ adminimize
|
698 |
msgid "Write options - Post"
|
699 |
msgstr "Schreiben Einstellungen - Beiträge"
|
700 |
|
701 |
+
#: inc-options/write_post_options.php:54
|
702 |
#@ adminimize
|
703 |
msgid "Your own post options"
|
704 |
msgstr "Deine eigenen Beitrags-Einstellungen"
|
705 |
|
706 |
+
#: inc-options/minimenu.php:54
|
707 |
+
#: inc-options/write_page_options.php:7
|
708 |
+
#: inc-options/write_page_options.php:14
|
709 |
#@ adminimize
|
710 |
msgid "Write options - Page"
|
711 |
msgstr "Schreiben Einstellungen - Seiten"
|
712 |
|
713 |
+
#: inc-options/write_page_options.php:53
|
714 |
#@ adminimize
|
715 |
msgid "Your own page options"
|
716 |
msgstr "Deine eigenen Seiten-Einstellungen"
|
717 |
|
718 |
+
#: inc-options/links_options.php:8
|
719 |
+
#: inc-options/minimenu.php:57
|
720 |
#@ adminimize
|
721 |
msgid "Links options"
|
722 |
msgstr "Link Einstellungen"
|
723 |
|
724 |
+
#: inc-options/links_options.php:41
|
725 |
#@ default
|
726 |
msgid "Name"
|
727 |
msgstr "Name"
|
728 |
|
729 |
+
#: inc-options/links_options.php:42
|
730 |
#@ default
|
731 |
msgid "Web Address"
|
732 |
msgstr "Web-Adresse"
|
733 |
|
734 |
+
#: inc-options/links_options.php:43
|
735 |
#@ default
|
736 |
msgid "Description"
|
737 |
msgstr "Beschreibung"
|
738 |
|
739 |
+
#: inc-options/links_options.php:45
|
740 |
#@ default
|
741 |
msgid "Target"
|
742 |
msgstr "Target"
|
743 |
|
744 |
+
#: inc-options/links_options.php:46
|
745 |
#@ default
|
746 |
msgid "Link Relationship (XFN)"
|
747 |
msgstr "Link-Beziehungen (XFN)"
|
748 |
|
749 |
+
#: inc-options/links_options.php:47
|
750 |
#@ default
|
751 |
msgid "Advanced"
|
752 |
msgstr "Erweitert"
|
753 |
|
754 |
+
#: adminimize_page.php:143
|
755 |
+
#: adminimize_page.php:228
|
756 |
+
#: inc-options/minimenu.php:63
|
757 |
#@ adminimize
|
758 |
msgid "Set Theme"
|
759 |
msgstr "Theme zuweisen"
|
760 |
|
761 |
+
#: adminimize_page.php:150
|
762 |
#@ adminimize
|
763 |
msgid "For better peformance with many users on your blog; load only userlist, when you will change the theme options for users."
|
764 |
msgstr "Für eine bessere Performance bei vielen Usern in deinem Blog werden die Userdaten nur nach Aufforderung geladen."
|
765 |
|
766 |
+
#: adminimize_page.php:153
|
767 |
#@ adminimize
|
768 |
msgid "Load User Data"
|
769 |
msgstr "Lade User Daten"
|
770 |
|
771 |
+
#: adminimize_page.php:164
|
772 |
#@ default
|
773 |
msgid "User-ID"
|
774 |
msgstr "User-ID"
|
775 |
|
776 |
+
#: adminimize_page.php:165
|
777 |
#@ default
|
778 |
msgid "Username"
|
779 |
msgstr "Benutzername"
|
780 |
|
781 |
+
#: adminimize_page.php:166
|
782 |
#@ default
|
783 |
msgid "Display name publicly as"
|
784 |
msgstr "Name im Blog"
|
785 |
|
786 |
+
#: adminimize_page.php:167
|
787 |
#@ default
|
788 |
msgid "Admin-Color Scheme"
|
789 |
msgstr "Admin-Color Scheme"
|
790 |
|
791 |
+
#: adminimize_page.php:168
|
792 |
#@ default
|
793 |
msgid "User Level"
|
794 |
msgstr "User Level"
|
795 |
|
796 |
+
#: adminimize_page.php:169
|
797 |
#@ default
|
798 |
msgid "Role"
|
799 |
msgstr "Rolle"
|
800 |
|
801 |
+
#: adminimize_page.php:276
|
802 |
+
#: inc-options/minimenu.php:69
|
803 |
#@ adminimize
|
804 |
msgid "Deinstall Options"
|
805 |
msgstr "Einstellungen deinstallieren"
|
806 |
|
807 |
+
#: adminimize_page.php:279
|
808 |
#@ adminimize
|
809 |
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."
|
810 |
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!"
|
811 |
|
812 |
+
#: adminimize_page.php:283
|
813 |
#@ adminimize
|
814 |
msgid "Delete Options"
|
815 |
msgstr "Einstellungen Löschen"
|
816 |
|
817 |
+
#: adminimize_page.php:297
|
818 |
+
#: inc-options/minimenu.php:13
|
819 |
+
#: inc-options/minimenu.php:72
|
820 |
#@ adminimize
|
821 |
msgid "About the plugin"
|
822 |
msgstr "Über das Plugin"
|
823 |
|
824 |
+
#: adminimize_page.php:300
|
825 |
+
#: inc-options/minimenu.php:15
|
826 |
#@ adminimize
|
827 |
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."
|
828 |
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."
|
829 |
|
830 |
+
#: adminimize_page.php:306
|
831 |
+
#: inc-options/minimenu.php:21
|
832 |
#@ adminimize
|
833 |
msgid "PayPal - The safer, easier way to pay online!"
|
834 |
msgstr "PayPal - Der sichere und einfache Weg zu zahlen!"
|
835 |
|
836 |
+
#: adminimize_page.php:310
|
837 |
+
#: inc-options/minimenu.php:25
|
838 |
#@ adminimize
|
839 |
msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a> or donate."
|
840 |
msgstr "Du willst Danke sagen? Besuche meine <a href=\"http://bueltge.de/wunschliste/\">Wunschliste</a> oder spende."
|
841 |
|
842 |
+
#: adminimize.php:114
|
843 |
#@ adminimize
|
844 |
msgid "All entries in the database were imported."
|
845 |
msgstr "Alle Einträge wurden in die Datenbank geschrieben."
|
846 |
|
847 |
+
#: adminimize_page.php:241
|
848 |
+
#: inc-options/minimenu.php:66
|
849 |
#@ adminimize
|
850 |
msgid "Export/Import Options"
|
851 |
msgstr "Export/Import Einstellungen"
|
852 |
|
853 |
+
#: adminimize_page.php:245
|
854 |
#@ adminimize
|
855 |
msgid "Export"
|
856 |
msgstr "Export"
|
857 |
|
858 |
+
#: adminimize_page.php:250
|
859 |
#@ adminimize
|
860 |
msgid "Export »"
|
861 |
msgstr "Exportieren »"
|
862 |
|
863 |
+
#: adminimize_page.php:254
|
864 |
#@ adminimize
|
865 |
msgid "Import"
|
866 |
msgstr "Import"
|
867 |
|
868 |
+
#: adminimize_page.php:259
|
869 |
#@ adminimize
|
870 |
msgid "Choose a file from your computer"
|
871 |
msgstr "Wähle eine Datei vom Rechner"
|
872 |
|
873 |
+
#: adminimize_page.php:264
|
874 |
#@ adminimize
|
875 |
msgid "Upload file and import »"
|
876 |
msgstr "Hochladen der Datei und importieren »"
|
877 |
|
878 |
+
#: inc-options/minimenu.php:38
|
879 |
#@ adminimize
|
880 |
msgid "MiniMenu"
|
881 |
msgstr "MiniMenu"
|
882 |
|
883 |
+
#: adminimize_page.php:233
|
884 |
+
#: adminimize_page.php:267
|
885 |
+
#: adminimize_page.php:288
|
886 |
+
#: adminimize_page.php:314
|
887 |
+
#: inc-options/backend_options.php:175
|
888 |
+
#: inc-options/global_options.php:116
|
889 |
+
#: inc-options/links_options.php:121
|
890 |
+
#: inc-options/menu_options.php:338
|
891 |
+
#: inc-options/wp_nav_menu_options.php:141
|
892 |
+
#: inc-options/write_page_options.php:81
|
893 |
+
#: inc-options/write_post_options.php:82
|
894 |
#@ adminimize
|
895 |
msgid "scroll to top"
|
896 |
msgstr "Nach oben"
|
897 |
|
898 |
+
#: adminimize_page.php:247
|
899 |
#@ adminimize
|
900 |
msgid "You can save a .seq file with your options."
|
901 |
msgstr "Du kannst deine Einstellungen in einer .seq Datei speichern."
|
902 |
|
903 |
+
#: adminimize_page.php:257
|
904 |
#@ adminimize
|
905 |
msgid "Choose a Adminimize (<em>.seq</em>) file to upload, then click <em>Upload file and import</em>."
|
906 |
msgstr "Wähle eine Adminimize (<em>.seq</em>) Datei zum hoch laden und dann klick <em>Hochladen der Datei und importieren</em>"
|
907 |
|
908 |
+
#: inc-options/backend_options.php:112
|
909 |
#@ adminimize
|
910 |
msgid "Category Height"
|
911 |
msgstr "Kategorie-Höhe"
|
912 |
|
913 |
+
#: inc-options/backend_options.php:118
|
914 |
#@ adminimize
|
915 |
msgid "View the Meta Box with Categories in the full height, no scrollbar or whitespace."
|
916 |
msgstr "Stellt in die Meta Box der Kategorien in voller Höhe dar, kein Scrollbar und kein Leerraum."
|
917 |
|
918 |
+
#: inc-options/backend_options.php:129
|
919 |
#@ adminimize
|
920 |
msgid "In the Footer you can display an advice for changing the Default-design, (x)HTML is possible."
|
921 |
msgstr "Im Footer kann ein Hinweis auf die aktive Veränderung des Standard-Layout gesetzt werden, (x)HTML erlaubt."
|
922 |
|
923 |
+
#: inc-options/backend_options.php:151
|
924 |
#@ adminimize
|
925 |
msgid "Dashboard deactivate, redirect to"
|
926 |
msgstr "Dashboard inaktiv, Weiterleitung nach"
|
927 |
|
928 |
+
#: inc-options/menu_options.php:112
|
929 |
+
#: inc-options/menu_options.php:206
|
|
|
|
|
|
|
|
|
|
|
930 |
#@ default
|
931 |
msgid "HTML Editor Button"
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: inc-options/backend_options.php:98
|
935 |
#@ adminimize
|
936 |
msgid "All Thickbox-function use the full area of the browser. Thickbox is for example in upload media-files."
|
937 |
msgstr "Alle Thickbox-Funktion verwenden den vollständigen Bereich des Browsers. Thickbox ist beispielsweise in der Medien-Upload-Funktion."
|
960 |
msgid "http://bueltge.de/"
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: inc-options/backend_options.php:62
|
|
|
|
|
|
|
|
|
|
|
|
|
964 |
#@ adminimize
|
965 |
msgid "Header"
|
966 |
msgstr "Header"
|
967 |
|
968 |
+
#: inc-options/backend_options.php:68
|
969 |
#@ adminimize
|
970 |
msgid "The Header-area can hide, include all links and details."
|
971 |
msgstr "Der header-Bereich kann ausgeblendet werden, inkl. aller Links und Details."
|
972 |
|
973 |
+
#: inc-options/menu_options.php:91
|
974 |
+
#: inc-options/menu_options.php:188
|
975 |
#@ adminimize
|
976 |
msgid "Title"
|
977 |
+
msgstr "Title"
|
978 |
+
|
979 |
+
#: inc-options/backend_options.php:18
|
980 |
+
#@ adminimize
|
981 |
+
msgid "Exclude Super Admin"
|
982 |
+
msgstr "Ausschließen des Super Admin"
|
983 |
+
|
984 |
+
#: inc-options/backend_options.php:24
|
985 |
+
#@ adminimize
|
986 |
+
msgid "Exclude the Super Admin on a WP Multisite Install from all limitations of this plugin."
|
987 |
+
msgstr "Schließe den Super Admin in einer WordPress Multisite Installation von allen Restriktionen dieses Plugins aus."
|
988 |
+
|
989 |
+
#: inc-options/backend_options.php:164
|
990 |
+
#@ adminimize
|
991 |
+
msgid "You have deactivated the Dashboard, please select a page for redirection or define custom url, include http://?"
|
992 |
+
msgstr "Du hast das Dashboard deaktiviert; bitte wähle eine Seite für die Weiterleitung oder definiere eine eigene URL, inklusive http://"
|
993 |
+
|
994 |
+
#: inc-options/global_options.php:39
|
995 |
+
#@ adminimize
|
996 |
+
msgid "Admin Bar"
|
997 |
+
msgstr "Admin Bar"
|
998 |
+
|
999 |
+
#: inc-options/minimenu.php:60
|
1000 |
+
#@ adminimize
|
1001 |
+
msgid "WP Nav Menu"
|
1002 |
+
msgstr "WP Nav Menü"
|
1003 |
+
|
1004 |
+
#: inc-options/wp_nav_menu_options.php:7
|
1005 |
+
#@ adminimize
|
1006 |
+
msgid "WP Nav Menu options"
|
1007 |
+
msgstr "WP Nav Menü Einstellungen"
|
1008 |
+
|
1009 |
+
#: inc-options/wp_nav_menu_options.php:42
|
1010 |
+
#: inc-options/wp_nav_menu_options.php:48
|
1011 |
+
#@ default
|
1012 |
+
msgid "Theme Locations"
|
1013 |
+
msgstr ""
|
1014 |
+
|
1015 |
+
#: inc-options/wp_nav_menu_options.php:43
|
1016 |
+
#@ default
|
1017 |
+
msgid "Custom Links"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: inc-options/wp_nav_menu_options.php:44
|
1021 |
+
#@ default
|
1022 |
+
msgid "#"
|
1023 |
+
msgstr ""
|
1024 |
+
|
1025 |
+
#: inc-options/wp_nav_menu_options.php:44
|
1026 |
+
#@ default
|
1027 |
+
msgid "Add menu"
|
1028 |
+
msgstr ""
|
1029 |
+
|
1030 |
+
#. translators: plugin header field 'Version'
|
1031 |
+
#: adminimize.php:0
|
1032 |
+
#@ adminimize
|
1033 |
+
msgid "1.7.16"
|
1034 |
+
msgstr ""
|
1035 |
+
|
1036 |
+
#: inc-options/menu_options.php:94
|
1037 |
+
#@ default
|
1038 |
+
msgid "Format"
|
1039 |
+
msgstr ""
|
1040 |
+
|
1041 |
+
#: inc-options/menu_options.php:105
|
1042 |
+
#: inc-options/menu_options.php:199
|
1043 |
+
#@ adminimize
|
1044 |
+
msgid "Messages"
|
1045 |
+
msgstr "Mitteilungen"
|
1046 |
+
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://bueltge.de/wunschliste/
|
|
4 |
Tags: color, scheme, theme, admin, dashboard, color scheme, plugin, interface, ui, metabox, hide, editor, minimal, menu, customization, interface, administration, lite, light, usability, lightweight, layout, zen
|
5 |
Requires at least: 2.5
|
6 |
Tested up to: 3.1
|
7 |
-
Stable tag: 1.7.
|
8 |
|
9 |
Adminimize is a WordPress plugin that lets you hide 'unnecessary' items from the WordPress backend and many many more ...
|
10 |
|
@@ -98,6 +98,13 @@ 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.15 (03/30/2011) =
|
102 |
* Change functions for reduce WP Nav Menu
|
103 |
* change to check for super admin; add new function and option on Global Options to set this
|
4 |
Tags: color, scheme, theme, admin, dashboard, color scheme, plugin, interface, ui, metabox, hide, editor, minimal, menu, customization, interface, administration, lite, light, usability, lightweight, layout, zen
|
5 |
Requires at least: 2.5
|
6 |
Tested up to: 3.1
|
7 |
+
Stable tag: 1.7.16
|
8 |
|
9 |
Adminimize is a WordPress plugin that lets you hide 'unnecessary' items from the WordPress backend and many many more ...
|
10 |
|
98 |
1. Adminimize Theme how in WordPress 2.3
|
99 |
|
100 |
== Changelog ==
|
101 |
+
= v1.7.16 (04/01/2011) =
|
102 |
+
* Bugfix: chnage init-function; admin bar also on frontend and backend and all other options of global only on backend
|
103 |
+
* Remove new hoock on wp admin bar; incoe inline styles; only on deactivate admin bar
|
104 |
+
* Fix language errors
|
105 |
+
* Add meta box post formats
|
106 |
+
* Update de_DE language files
|
107 |
+
|
108 |
= v1.7.15 (03/30/2011) =
|
109 |
* Change functions for reduce WP Nav Menu
|
110 |
* change to check for super admin; add new function and option on Global Options to set this
|