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
1.9 KiB
PHP
42 lines
1.9 KiB
PHP
<?php
|
|
|
|
//SMF Shoutbox
|
|
$txt['sbox_ModTitle'] = 'SMF Shoutbox';
|
|
$txt['sbox_KillShout'] = 'Do you want to kill this shout?';
|
|
$txt['sbox_Refresh'] = 'Refresh';
|
|
$txt['sbox_RefreshBlocked'] = '[<span class="Kill">Automatic refresh disabled due to inactivity</span>]';
|
|
$txt['sbox_History'] = 'History';
|
|
$txt['sbox_HistoryClear'] = 'Clear history';
|
|
$txt['sbox_HistoryNotFound'] = 'No history found.';
|
|
$txt['sbox_Guest'] = 'Guest';
|
|
$txt['sbox_TypeShout'] = '<Type your message and press ENTER>';
|
|
$txt['sbox_Login'] = 'Please <a href="' . $scripturl . '?action=login">login</a> or <a href="' . $scripturl . '?action=register">register</a> to participate.';
|
|
|
|
// Settings
|
|
$txt['sbox_Visible'] = 'Shoutbox is visible';
|
|
$txt['sbox_ModsRule'] = 'Moderators can delete shouts';
|
|
$txt['sbox_DoHistory'] = 'Create history of shouts';
|
|
|
|
$txt['sbox_GuestVisible'] = 'Make Shoutbox visible to Guests';
|
|
$txt['sbox_GuestAllowed'] = 'Guests are allowed to shout';
|
|
$txt['sbox_GuestBBC'] = 'Allow BBCode for Guest-shouts*';
|
|
|
|
$txt['sbox_SmiliesVisible'] = 'Smiley row is visible';
|
|
$txt['sbox_UserLinksVisible'] = 'Show profile links';
|
|
$txt['sbox_AllowBBC'] = 'Allow BBCode';
|
|
$txt['sbox_NewShoutsBar'] = 'Show line marker';
|
|
$txt['sbox_MaxLines'] = 'Maximum number of displayed shouts';
|
|
$txt['sbox_Height'] = 'Shoutbox height (px)';
|
|
|
|
$txt['sbox_RefreshTime'] = 'Refresh time (secs)';
|
|
$txt['sbox_BlockRefresh'] = 'Block Refresh after inactivity (' . $modSettings['lastActive'] . ' mins)';
|
|
$txt['sbox_EnableSounds'] = 'Enable sounds';
|
|
|
|
$txt['sbox_FontFamily'] = 'Font family';
|
|
$txt['sbox_TextSize'] = 'Font size';
|
|
$txt['sbox_TextColor1'] = '2. Font color for light themes';
|
|
$txt['sbox_DarkThemes'] = 'List of dark themes<div class="smalltext">(Directory names separated by vertical line, e.g. "BlackDaySMF1|blood_and_black")</div>';
|
|
$txt['sbox_TextColor2'] = '2. Font color for dark themes';
|
|
|
|
?>
|