1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
|
<?php
# Movable Type (r) Open Source (C) 2001-2008 Six Apart, Ltd.
# This program is distributed under the terms of the
# GNU General Public License, version 2.
#
# $Id$
global $Lexicon_de;
$Lexicon_de = array(
## php/lib/function.mtassettype.php
'image' => 'Bild',
'Image' => 'Bild',
'file' => 'Datei',
'File' => 'Datei',
'audio' => 'Töne',
'Audio' => 'Töne',
'video' => 'Video',
'Video' => 'Video',
## php/lib/function.mtvar.php
'You used a [_1] tag without a valid name attribute.' => '\'[_1]\'-Befehl ohne gültiges Namensattribut verwendet.',
'\'[_1]\' is not a valid function for a hash.' => '\'[_1]\' ist keine gültige Hash-Funktion.',
'\'[_1]\' is not a valid function for an array.' => '\'[_1]\' ist keine gültige Array-Funktion.',
'[_1] [_2] [_3] is illegal.' => '[_1] [_2] [_3] ist ungültig.',
## php/lib/function.mtwidgetmanager.php
'Error: widgetset [_1] is empty.' => 'Fehler: Die Widgetgruppe \'[_1]\' ist leer.',
'Error compiling widgetset [_1]' => 'Fehler bei Kompilierung der Widgetgruppe \'[_1]\'',
## php/lib/thumbnail_lib.php
'GD support has not been available. Please install GD support.' => 'Keine GD-Unterstützung vorhanden. Bitte installieren Sie die GD-Bibliothek.', # Translate - New # OK
## php/lib/function.mtcommentauthor.php
'Anonymous' => 'Anonym',
## php/lib/archive_lib.php
'Page' => 'Seite',
'Individual' => 'Individuell',
'Yearly' => 'Jährlich',
'Monthly' => 'Monatlich',
'Daily' => 'Täglich',
'Weekly' => 'Wöchentlich',
'Author' => 'Autor',
'(Display Name not set)' => '(Kein Anzeigename gewählt)',
'Author Yearly' => 'Autor jährlich',
'Author Monthly' => 'Autor monatlich',
'Author Daily' => 'Autor täglich',
'Author Weekly' => 'Autor wöchentlich',
'Category Yearly' => 'Kategorie jährlich',
'Category Monthly' => 'Kategorie monatlich',
'Category Daily' => 'Kategorie täglich',
'Category Weekly' => 'Kategorie wöchentlich',
## php/lib/block.mtsethashvar.php
## php/lib/block.mtif.php
## php/lib/function.mtremotesigninlink.php
'TypeKey authentication is not enabled in this blog. MTRemoteSignInLink can\'t be used.' => 'TypeKey-Authentifizierung ist in diesem Blog nicht aktiviert. MTRemoteSignInLink kann daher nicht verwendet werden.',
## php/lib/block.mtauthorhaspage.php
'No author available' => 'Kein Autor verfügbar',
## php/lib/block.mtauthorhasentry.php
## php/lib/function.mtproductname.php
'[_1] [_2]' => '[_1] [_2]',
## php/lib/captcha_lib.php
'Captcha' => 'Captcha',
'Type the characters you see in the picture above.' => 'Geben Sie die Buchstaben ein, die Sie in obigem Bild sehen.',
## php/lib/function.mtcommentauthorlink.php
## php/lib/MTUtil.php
'userpic-[_1]-%wx%h%x' => 'userpic-[_1]-%wx%h%x',
## php/lib/function.mtsetvar.php
'\'[_1]\' is not a hash.' => '\'[_1]\' ist kein Hash-Wert.',
'Invalid index.' => 'Index ungültig.',
'\'[_1]\' is not an array.' => '\'[_1]\' ist kein Array.',
'\'[_1]\' is not a valid function.' => '\'[_1]\' ist keine gültige Funktion.',
## php/lib/block.mtassets.php
'sort_by="score" must be used in combination with namespace.' => 'Sort_by="score" erfordert einen Namespace.',
## php/lib/block.mtsetvarblock.php
## php/lib/block.mtentries.php
## php/lib/function.mtauthordisplayname.php
## php/lib/function.mtcommentreplytolink.php
'Reply' => 'Antworten',
## php/lib/function.mtentryclasslabel.php
'page' => 'Seite',
'entry' => 'Eintrag',
'Entry' => 'Eintrag',
## php/mt.php.pre
'Page not found - [_1]' => 'Seite nicht gefunden - [_1]',
);
function translate_phrase($str, $params = null) {
global $Lexicon, $Lexicon_de;
$l10n_str = isset($Lexicon_de[$str]) ? $Lexicon_de[$str] : (isset($Lexicon[$str]) ? $Lexicon[$str] : $str);
if (extension_loaded('mbstring')) {
$str = mb_convert_encoding($l10n_str,mb_internal_encoding(),"UTF-8");
} else {
$str = $l10n_str;
}
return translate_phrase_param($str, $params);
}
?>
|