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
42 lines
2.0 KiB
PHP
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ät ausgeschaltet</span>]';
|
|
$txt['sbox_History'] = 'Verlauf';
|
|
$txt['sbox_HistoryClear'] = 'Verlauf lö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önnen Shouts löschen';
|
|
$txt['sbox_DoHistory'] = 'Shout-Verlauf anlegen';
|
|
|
|
$txt['sbox_GuestVisible'] = 'Shoutbox ist für Gäste sichtbar';
|
|
$txt['sbox_GuestAllowed'] = 'Gäste dürfen shouten';
|
|
$txt['sbox_GuestBBC'] = 'BBCode für Gä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öhe (px)';
|
|
|
|
$txt['sbox_RefreshTime'] = 'Aktualisierungsintervall (sec)';
|
|
$txt['sbox_BlockRefresh'] = 'Aktualisierung nach Inaktivität stoppen (' . $modSettings['lastActive'] . ' min)';
|
|
$txt['sbox_EnableSounds'] = 'Klänge abspielen';
|
|
|
|
$txt['sbox_FontFamily'] = 'Schriftart';
|
|
$txt['sbox_TextSize'] = 'Schriftgröße';
|
|
$txt['sbox_TextColor1'] = '2. Schriftfarbe fü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ür dunkle Themes';
|
|
|
|
?>
|