Archived
1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
Files
smf-shoutbox/sbox.german.php
mbirth 9763831f11 + added "Please login or register to shout."-message for guests if they are not allowed to shout
x hopefully fixed bug with smileys-insertion into sbox instead of posts if sbox was included into all pages in SMF
x hopefully fixed bug with "ANSI_X3.4-1968"-charset, which is just ASCII and seems to be used for UTF-8, also suppressed error messages from htmlentities()
+ added is_not_banned() before a post is inserted
2006-09-24 15:49:36 +00:00

42 lines
2.0 KiB
PHP

<?php
//SMF Shoutbox
$txt['sbox_ModTitle'] = 'SMF Shoutbox';
$txt['sbox_KillShout'] = 'Diesen Shout löschen?';
$txt['sbox_Refresh'] = 'Neu laden';
$txt['sbox_RefreshBlocked'] = '[<span class="Kill">Automatische Aktualisierung wegen Inaktivit&auml;t ausgeschaltet</span>]';
$txt['sbox_History'] = 'Verlauf';
$txt['sbox_HistoryClear'] = 'Verlauf l&ouml;schen';
$txt['sbox_HistoryNotFound'] = 'Kein Verlauf gefunden.';
$txt['sbox_Guest'] = 'Gast';
$txt['sbox_TypeShout'] = '<Geben Sie Ihre Nachricht ein und drücken Sie ENTER>';
$txt['sbox_Login'] = 'Bitte <a href="' . $scripturl . '?action=login">einloggen</a> oder <a href="' . $scripturl . '?action=register">registrieren</a> zum Teilnehmen.';
// Einstellungen
$txt['sbox_Visible'] = 'Shoutbox ist sichtbar';
$txt['sbox_ModsRule'] = 'Moderatoren k&ouml;nnen Shouts l&ouml;schen';
$txt['sbox_DoHistory'] = 'Shout-Verlauf anlegen';
$txt['sbox_GuestVisible'] = 'Shoutbox ist f&uuml;r G&auml;ste sichtbar';
$txt['sbox_GuestAllowed'] = 'G&auml;ste d&uuml;rfen shouten';
$txt['sbox_GuestBBC'] = 'BBCode f&uuml;r G&auml;ste erlauben*';
$txt['sbox_SmiliesVisible'] = 'Smiley-Zeile ist sichtbar';
$txt['sbox_UserLinksVisible'] = 'Shouter-Namen mit Profil verlinken';
$txt['sbox_AllowBBC'] = 'BBCode erlauben';
$txt['sbox_NewShoutsBar'] = 'Zeilenmarkierung anzeigen';
$txt['sbox_MaxLines'] = 'Anzahl der angezeigten Zeilen';
$txt['sbox_Height'] = 'Shoutbox-H&ouml;he (px)';
$txt['sbox_RefreshTime'] = 'Aktualisierungsintervall (sec)';
$txt['sbox_BlockRefresh'] = 'Aktualisierung nach Inaktivit&auml;t stoppen (' . $modSettings['lastActive'] . ' min)';
$txt['sbox_EnableSounds'] = 'Kl&auml;nge abspielen';
$txt['sbox_FontFamily'] = 'Schriftart';
$txt['sbox_TextSize'] = 'Schriftgr&ouml;&szlig;e';
$txt['sbox_TextColor1'] = '2. Schriftfarbe f&uuml;r helle Themes';
$txt['sbox_DarkThemes'] = 'Liste dunkler Themes<div class="smalltext">(Verzeichnisnamen getrennt durch "|", z.B. "BlackDaySMF1|blood_and_black")</div>';
$txt['sbox_TextColor2'] = '2. Schriftfarbe f&uuml;r dunkle Themes';
?>