| 1 | # Movable Type (r) Open Source (C) 2005-2008 Six Apart, Ltd. |
|---|
| 2 | # This program is distributed under the terms of the |
|---|
| 3 | # GNU General Public License, version 2. |
|---|
| 4 | # |
|---|
| 5 | # $Id$ |
|---|
| 6 | |
|---|
| 7 | package StyleCatcher::L10N::de; |
|---|
| 8 | |
|---|
| 9 | use strict; |
|---|
| 10 | use base 'StyleCatcher::L10N::en_us'; |
|---|
| 11 | use vars qw( %Lexicon ); |
|---|
| 12 | |
|---|
| 13 | ## The following is the translation table. |
|---|
| 14 | |
|---|
| 15 | %Lexicon = ( |
|---|
| 16 | ## plugins/StyleCatcher/lib/StyleCatcher/CMS.pm |
|---|
| 17 | 'Your mt-static directory could not be found. Please configure \'StaticFilePath\' to continue.' => 'Ihr mt-static-Ordner konnte nicht gefunden werden. Bitte konfigurieren Sie \'StaticFilePath\' um fortzufahren.', |
|---|
| 18 | 'Could not create [_1] folder - Check that your \'themes\' folder is webserver-writable.' => 'Konnte den Ordner [_1] nicht anlegen. Stellen Sie sicher, daà der Webserver Schreibrechte auf dem \'themes\'-Ordner hat.', |
|---|
| 19 | 'Error downloading image: [_1]' => 'Fehler beim Herunterladen einer Bilddatei: [_1]', |
|---|
| 20 | 'Successfully applied new theme selection.' => 'Neue Themenauswahl erfolgreich angewendet.', |
|---|
| 21 | 'Invalid URL: [_1]' => 'UngÃŒltige URL: [_1]', |
|---|
| 22 | |
|---|
| 23 | ## plugins/StyleCatcher/tmpl/view.tmpl |
|---|
| 24 | 'Select a Style' => 'Design wÀhlen', |
|---|
| 25 | '3-Columns, Wide, Thin, Thin' => 'Dreispaltig: breit - schmal - schmal', |
|---|
| 26 | '3-Columns, Thin, Wide, Thin' => 'Dreispaltig: schmal - breit - schmal', |
|---|
| 27 | '2-Columns, Thin, Wide' => 'Zweispaltig: schmal - breit', |
|---|
| 28 | '2-Columns, Wide, Thin' => 'Zweispaltig: breit - schmal', |
|---|
| 29 | 'None available' => 'Keine verfÃŒgbar', |
|---|
| 30 | 'Applying...' => 'Wende an...', |
|---|
| 31 | 'Apply Design' => 'Design ÃŒbernehmen', |
|---|
| 32 | 'Error applying theme: ' => 'Fehler bei der Ãbernahme des Themas:', |
|---|
| 33 | 'The selected theme has been applied, but as you have changed the layout, you will need to republish your blog to apply the new layout.' => 'Das gewÀhlte Thema wurde ÃŒbernommen. Da das Layout geÀndert wurde, veröffentlichen Sie das Blog bitte erneut, um die Ãnderungen wirksam werden zu lassen.', |
|---|
| 34 | 'The selected theme has been applied!' => 'Das Thema wurde ÃŒbernommen!', |
|---|
| 35 | 'Error loading themes! -- [_1]' => 'Fehler beim Laden der Themen -- [_1]', |
|---|
| 36 | 'Stylesheet or Repository URL' => 'URL des Stylesheets oder der Sammlung', |
|---|
| 37 | 'Stylesheet or Repository URL:' => 'URL des Stylesheets oder der Sammlung:', |
|---|
| 38 | 'Download Styles' => 'Designs herunterladen', |
|---|
| 39 | 'Current theme for your weblog' => 'Aktuelles Theme Ihres Weblogs', |
|---|
| 40 | 'Current Style' => 'Derzeitige Design', |
|---|
| 41 | 'Locally saved themes' => 'Lokal gespeicherte Themes', |
|---|
| 42 | 'Saved Styles' => 'Gespeicherte Designs', |
|---|
| 43 | 'Default Styles' => 'Standarddesigns', |
|---|
| 44 | 'Single themes from the web' => 'Einzelne Themes aus dem Web', |
|---|
| 45 | 'More Styles' => 'Weitere Designs', |
|---|
| 46 | 'Selected Design' => 'GewÀhltes Design', |
|---|
| 47 | 'Layout' => 'Layout', |
|---|
| 48 | |
|---|
| 49 | ## plugins/StyleCatcher/stylecatcher.pl |
|---|
| 50 | 'StyleCatcher lets you easily browse through styles and then apply them to your blog in just a few clicks. To find out more about Movable Type styles, or for new sources for styles, visit the <a href=\'http://www.sixapart.com/movabletype/styles\'>Movable Type styles</a> page.' => 'Mit StyleCatchter können Sie spielend leicht neue Designvorlagen fÌr Ihre Blogs finden und mit wenigen Klicks direkt aus dem Internet installieren. Mehr dazu auf der <a href=\'http://www.sixapart.com/movabletype/styles\'>Movable Type Styles</a>-Seite.', |
|---|
| 51 | 'MT 4 Style Library' => 'MT 4-Designs', |
|---|
| 52 | 'A collection of styles compatible with Movable Type 4 default templates.' => 'Mit den Standardvorlagen von MT 3.3+ kompatible Designvorlagen', |
|---|
| 53 | 'MT 3 Style Library' => 'MT 3-Design', |
|---|
| 54 | 'A collection of styles compatible with Movable Type 3.3+ default templates.' => 'Mit den Standardvorlagen von MT 3.3+ kompatible Designvorlagen', |
|---|
| 55 | 'Styles' => 'Designs', |
|---|
| 56 | '2-Columns, Wide, Medium' => 'Zweispaltig: breit - mittel', # Translate - New # OK |
|---|
| 57 | ); |
|---|
| 58 | |
|---|
| 59 | 1; |
|---|
| 60 | |
|---|