update version 0.0.9
update version 0.0.9
This commit is contained in:
@@ -162,6 +162,14 @@ class acp_mchat_module
|
||||
$config->set('mchat_on_index', $request->variable('mchat_on_index', 0));
|
||||
// update setting in config table to allow new posts to display or not
|
||||
$config->set('mchat_new_posts', $request->variable('mchat_new_posts', 0));
|
||||
// update setting in config table to allow new posts to display or not
|
||||
$config->set('mchat_new_posts_topic', $request->variable('mchat_new_posts_topic', 0));
|
||||
// update setting in config table to allow new replies to display or not
|
||||
$config->set('mchat_new_posts_reply', $request->variable('mchat_new_posts_reply', 0));
|
||||
// update setting in config table to allow new edit posts to display or not
|
||||
$config->set('mchat_new_posts_edit', $request->variable('mchat_new_posts_edit', 0));
|
||||
// update setting in config table to allow quoted posts to display or not
|
||||
$config->set('mchat_new_posts_quote', $request->variable('mchat_new_posts_quote', 0));
|
||||
// update setting in config table for stats on index
|
||||
$config->set('mchat_stats_index', $request->variable('mchat_stats_index', 0));
|
||||
// and an entry into the log table
|
||||
@@ -191,6 +199,11 @@ class acp_mchat_module
|
||||
$mchat_on_index = isset($config['mchat_on_index']) ? $config['mchat_on_index'] : 0;
|
||||
$mchat_version = isset($config['mchat_version']) ? $config['mchat_version'] : '';
|
||||
$mchat_new_posts = isset($config['mchat_new_posts']) ? $config['mchat_new_posts'] : 0;
|
||||
$mchat_new_posts_topic = isset($config['mchat_new_posts_topic']) ? $config['mchat_new_posts_topic'] : 0;
|
||||
$mchat_new_posts_reply = isset($config['mchat_new_posts_reply']) ? $config['mchat_new_posts_reply'] : 0;
|
||||
$mchat_new_posts_edit = isset($config['mchat_new_posts_edit']) ? $config['mchat_new_posts_edit'] : 0;
|
||||
$mchat_new_posts_quote = isset($config['mchat_new_posts_quote']) ? $config['mchat_new_posts_quote'] : 0;
|
||||
|
||||
$mchat_stats_index = isset($config['mchat_stats_index']) ? $config['mchat_stats_index'] : 0;
|
||||
|
||||
$dateformat_options = '';
|
||||
@@ -240,6 +253,11 @@ class acp_mchat_module
|
||||
'MCHAT_OVERRIDE_MIN_POST_CHARS' => !empty($mchat_row['override_min_post_chars']) ? $mchat_row['override_min_post_chars'] : $mchat_config['override_min_post_chars'],
|
||||
'MCHAT_TIMEOUT' => !empty($mchat_row['timeout']) ? $mchat_row['timeout'] : $mchat_config['timeout'],
|
||||
'MCHAT_NEW_POSTS' => ($mchat_new_posts) ? true : false,
|
||||
'MCHAT_NEW_POSTS_TOPIC' => ($mchat_new_posts_topic) ? true : false,
|
||||
'MCHAT_NEW_POSTS_REPLY' => ($mchat_new_posts_reply) ? true : false,
|
||||
'MCHAT_NEW_POSTS_EDIT' => ($mchat_new_posts_edit) ? true : false,
|
||||
'MCHAT_NEW_POSTS_QUOTE' => ($mchat_new_posts_quote) ? true : false,
|
||||
|
||||
'MCHAT_PAUSE_ON_INPUT' => !empty($mchat_row['pause_on_input']) ? $mchat_row['pause_on_input'] : $mchat_config['pause_on_input'],
|
||||
|
||||
'L_MCHAT_BBCODES_DISALLOWED_EXPLAIN' => sprintf($user->lang['MCHAT_BBCODES_DISALLOWED_EXPLAIN'], '<a href="' . append_sid("{$phpbb_admin_path}index.$phpEx", 'i=bbcodes', true, $user->session_id) . '">', '</a>'),
|
||||
|
||||
@@ -23,6 +23,30 @@
|
||||
<dd><label><input type="radio" class="radio" name="mchat_new_posts" value="1"<!-- IF MCHAT_NEW_POSTS --> id="mchat_new_posts" checked="checked"<!-- ENDIF --> /> {L_YES}</label>
|
||||
<label><input type="radio" class="radio" name="mchat_new_posts" value="0"<!-- IF not MCHAT_NEW_POSTS --> id="mchat_new_posts" checked="checked"<!-- ENDIF --> /> {L_NO}</label></dd>
|
||||
</dl>
|
||||
<dl>
|
||||
<dt><label for="mchat_new_posts">{L_MCHAT_NEW_POSTS_TOPIC}{L_COLON}</label><br />
|
||||
<span>{L_MCHAT_NEW_POSTS_TOPIC_EXPLAIN}</span></dt>
|
||||
<dd><label><input type="radio" class="radio" name="mchat_new_posts_topic" value="1"<!-- IF MCHAT_NEW_POSTS_TOPIC --> id="mchat_new_posts_topic" checked="checked"<!-- ENDIF --> /> {L_YES}</label>
|
||||
<label><input type="radio" class="radio" name="mchat_new_posts_topic" value="0"<!-- IF not MCHAT_NEW_POSTS_TOPIC --> id="mchat_new_posts_topic" checked="checked"<!-- ENDIF --> /> {L_NO}</label></dd>
|
||||
</dl>
|
||||
<dl>
|
||||
<dt><label for="mchat_new_posts">{L_MCHAT_NEW_POSTS_REPLY}{L_COLON}</label><br />
|
||||
<span>{L_MCHAT_NEW_POSTS_REPLY_EXPLAIN}</span></dt>
|
||||
<dd><label><input type="radio" class="radio" name="mchat_new_posts_reply" value="1"<!-- IF MCHAT_NEW_POSTS_REPLY --> id="mchat_new_posts_reply" checked="checked"<!-- ENDIF --> /> {L_YES}</label>
|
||||
<label><input type="radio" class="radio" name="mchat_new_posts_reply" value="0"<!-- IF not MCHAT_NEW_POSTS_REPLY --> id="mchat_new_posts_reply" checked="checked"<!-- ENDIF --> /> {L_NO}</label></dd>
|
||||
</dl>
|
||||
<dl>
|
||||
<dt><label for="mchat_new_posts">{L_MCHAT_NEW_POSTS_EDIT}{L_COLON}</label><br />
|
||||
<span>{L_MCHAT_NEW_POSTS_EDIT_EXPLAIN}</span></dt>
|
||||
<dd><label><input type="radio" class="radio" name="mchat_new_posts_edit" value="1"<!-- IF MCHAT_NEW_POSTS_EDIT --> id="mchat_new_posts_edit" checked="checked"<!-- ENDIF --> /> {L_YES}</label>
|
||||
<label><input type="radio" class="radio" name="mchat_new_posts_edit" value="0"<!-- IF not MCHAT_NEW_POSTS_EDIT --> id="mchat_new_posts_edit" checked="checked"<!-- ENDIF --> /> {L_NO}</label></dd>
|
||||
</dl>
|
||||
<dl>
|
||||
<dt><label for="mchat_new_posts">{L_MCHAT_NEW_POSTS_QUOTE}{L_COLON}</label><br />
|
||||
<span>{L_MCHAT_NEW_POSTS_QUOTE_EXPLAIN}</span></dt>
|
||||
<dd><label><input type="radio" class="radio" name="mchat_new_posts_quote" value="1"<!-- IF MCHAT_NEW_POSTS_QUOTE --> id="mchat_new_posts_quote" checked="checked"<!-- ENDIF --> /> {L_YES}</label>
|
||||
<label><input type="radio" class="radio" name="mchat_new_posts_quote" value="0"<!-- IF not MCHAT_NEW_POSTS_QUOTE --> id="mchat_new_posts_quote" checked="checked"<!-- ENDIF --> /> {L_NO}</label></dd>
|
||||
</dl>
|
||||
<dl>
|
||||
<dt><label for="mchat_static_message">{L_MCHAT_STATIC_MESSAGE}{L_COLON}</label><br />
|
||||
<span>{L_MCHAT_STATIC_MESSAGE_EXPLAIN}</span></dt>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"type": "phpbb-extension",
|
||||
"description": "mChat Extension for phpbb 3.1.x",
|
||||
"homepage": "http://www.dmzx-web.net",
|
||||
"version": "0.0.8",
|
||||
"version": "0.0.9",
|
||||
"time": "2015-03-10",
|
||||
"keywords": ["phpbb", "extension", "mchat"],
|
||||
"license": "GPL-2.0",
|
||||
|
||||
@@ -41,5 +41,6 @@ services:
|
||||
- @dbal.conn
|
||||
- %core.root_path%
|
||||
- %core.php_ext%
|
||||
- %core.table_prefix%
|
||||
tags:
|
||||
- { name: event.listener }
|
||||
|
||||
@@ -19,23 +19,29 @@ class listener implements EventSubscriberInterface
|
||||
/** @var \phpbb\auth\auth */
|
||||
protected $auth;
|
||||
|
||||
/** @var \phpbb\config\config */
|
||||
protected $config;
|
||||
|
||||
/** @var \phpbb\template\template */
|
||||
protected $template;
|
||||
|
||||
/** @var \phpbb\user */
|
||||
protected $user;
|
||||
|
||||
/** @var \phpbb\db\driver\driver_interface */
|
||||
protected $db;
|
||||
|
||||
protected $root_path;
|
||||
protected $phpbb_root_path;
|
||||
|
||||
protected $php_ext;
|
||||
protected $phpEx;
|
||||
|
||||
/** @var string */
|
||||
protected $table_prefix;
|
||||
|
||||
/** @var \phpbb\controller\helper */
|
||||
protected $controller_helper;
|
||||
|
||||
public function __construct(\dmzx\mchat\core\render_helper $render_helper, \phpbb\auth\auth $auth, \phpbb\config\config $config, \phpbb\controller\helper $controller_helper, \phpbb\template\template $template, \phpbb\user $user, \phpbb\db\driver\driver_interface $db, $root_path, $php_ext)
|
||||
public function __construct(\dmzx\mchat\core\render_helper $render_helper, \phpbb\auth\auth $auth, \phpbb\config\config $config, \phpbb\controller\helper $controller_helper, \phpbb\template\template $template, \phpbb\user $user, \phpbb\db\driver\driver_interface $db, $root_path, $phpEx, $table_prefix)
|
||||
{
|
||||
$this->render_helper = $render_helper;
|
||||
$this->auth = $auth;
|
||||
@@ -45,7 +51,9 @@ class listener implements EventSubscriberInterface
|
||||
$this->user = $user;
|
||||
$this->db = $db;
|
||||
$this->root_path = $root_path;
|
||||
$this->php_ext = $php_ext;
|
||||
$this->phpEx = $phpEx;
|
||||
$this->table_prefix = $table_prefix;
|
||||
|
||||
}
|
||||
|
||||
static public function getSubscribedEvents()
|
||||
@@ -54,6 +62,7 @@ class listener implements EventSubscriberInterface
|
||||
'core.user_setup' => 'load_language_on_setup',
|
||||
'core.page_header' => 'add_page_header_link',
|
||||
'core.index_modify_page_title' => 'display_mchat_on_index',
|
||||
'core.posting_modify_submit_post_after' => 'posting_modify_submit_post_after',
|
||||
);
|
||||
}
|
||||
|
||||
@@ -100,4 +109,55 @@ class listener implements EventSubscriberInterface
|
||||
$this->render_helper->render_data_for_page(true);
|
||||
}
|
||||
}
|
||||
|
||||
public function posting_modify_submit_post_after($event)
|
||||
{
|
||||
// only trigger if mode is post
|
||||
$mchat_forums_allowed = array();
|
||||
if ($event['mode'] == 'post' || $event['mode'] == 'reply' || $event['mode'] == 'quote'|| $event['mode'] == 'edit' && (isset($this->config['mchat_enable']) && $this->config['mchat_enable']) && (isset($this->config['mchat_new_posts']) && $this->config['mchat_new_posts']))
|
||||
{
|
||||
|
||||
if ($event['mode'] == 'post' && (isset($this->config['mchat_new_posts_topic']) && $this->config['mchat_new_posts_topic']))
|
||||
{
|
||||
$mchat_new_data = $this->user->lang['MCHAT_NEW_TOPIC'];
|
||||
}
|
||||
else if ($event['mode'] == 'quote' && (isset($this->config['mchat_new_posts_quote']) && $this->config['mchat_new_posts_quote']))
|
||||
{
|
||||
$mchat_new_data = $this->user->lang['MCHAT_NEW_QUOTE'];
|
||||
}
|
||||
else if ($event['mode'] == 'edit' && (isset($this->config['mchat_new_posts_edit']) && $this->config['mchat_new_posts_edit']))
|
||||
{
|
||||
$mchat_new_data = $this->user->lang['MCHAT_NEW_EDIT'];
|
||||
}
|
||||
else if ($event['mode'] == 'reply'&& (isset($this->config['mchat_new_posts_reply']) && $this->config['mchat_new_posts_reply']))
|
||||
{
|
||||
$mchat_new_data = $this->user->lang['MCHAT_NEW_REPLY'];
|
||||
}
|
||||
else
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
// Data...
|
||||
$message = utf8_normalize_nfc($mchat_new_data . ': [url=' . generate_board_url() . '/viewtopic.' . $this->phpEx . '?p=' . $event['data']['post_id'] . '#p' . $event['data']['post_id'] . ']' . $event['post_data']['post_subject'] . '[/url] in [url=' . generate_board_url() . '/viewforum.' . $this->phpEx . '?f=' . $event['forum_id'] . ']' . $event['post_data']['forum_name'] . ' Section[/url] ');
|
||||
|
||||
$uid = $bitfield = $options = ''; // will be modified by generate_text_for_storage
|
||||
generate_text_for_storage($message, $uid, $bitfield, $options, true, false, false);
|
||||
$sql_ary = array(
|
||||
'forum_id' => ($topic_type == POST_GLOBAL) ? 0 : $event['forum_id'],
|
||||
'post_id' => $event['post_id'],
|
||||
'user_id' => $this->user->data['user_id'],
|
||||
'user_ip' => $this->user->data['session_ip'],
|
||||
'message' => $message,
|
||||
'bbcode_bitfield' => $bitfield,
|
||||
'bbcode_uid' => $uid,
|
||||
'bbcode_options' => $options,
|
||||
'message_time' => time()
|
||||
);
|
||||
$sql = 'INSERT INTO ' . $this->table_prefix . \dmzx\mchat\core\functions_mchat::MCHAT_TABLE . ' ' . $this->db->sql_build_array('INSERT', $sql_ary);
|
||||
$this->db->sql_query($sql);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -63,7 +63,6 @@ $lang = array_merge($lang, array(
|
||||
'MCHAT_HOUR' => 'Stunde ',
|
||||
'MCHAT_HOURS' => 'Stunden',
|
||||
'MCHAT_IP' => 'IP whois für',
|
||||
|
||||
'MCHAT_MINUTE' => 'Minute ',
|
||||
'MCHAT_MINUTES' => 'Minuten ',
|
||||
'MCHAT_MESS_LONG' => 'Deine Nachricht ist zu lang.\nBitte kürze deine Nachricht auf %s Zeichen',
|
||||
@@ -91,23 +90,20 @@ $lang = array_merge($lang, array(
|
||||
'MCHAT_SECONDS' => 'Sekunden ',
|
||||
'MCHAT_SESSION_ENDS' => 'Deine mChat-Sitzung endet in',
|
||||
'MCHAT_SMILES' => 'Smilies',
|
||||
|
||||
'MCHAT_TOTALMESSAGES' => 'Nachrichten insgesamt: <strong>%s</strong>',
|
||||
'MCHAT_USESOUND' => 'Sound aktivieren?',
|
||||
|
||||
'MCHAT_ONLINE_USERS_TOTAL' => 'Insgesamt sind <strong>%d</strong> Benutzer im mChat ',
|
||||
'MCHAT_ONLINE_USER_TOTAL' => 'Insgesamt ist <strong>%d</strong> Benutzer im mChat ',
|
||||
'MCHAT_NO_CHATTERS' => 'Derzeit sind keine Benutzer im mChat',
|
||||
'MCHAT_ONLINE_EXPLAIN' => '(basierend auf den aktiven Besuchern der letzten %s)',
|
||||
|
||||
'WHO_IS_CHATTING' => 'Wer ist im mChat',
|
||||
'WHO_IS_REFRESH_EXPLAIN' => 'Aktualisieren alle <strong>%d</strong> Sekunden',
|
||||
'MCHAT_NEW_TOPIC' => '<strong>Neues Thema</strong>',
|
||||
'MCHAT_NEW_REPLY' => '<strong>Neue Antwort</strong>',
|
||||
|
||||
'MCHAT_NEW_TOPIC' => 'Made A New Topic',
|
||||
'MCHAT_NEW_REPLY' => 'Made A New Reply',
|
||||
'MCHAT_NEW_QUOTE' => 'Replied with a Quote',
|
||||
'MCHAT_NEW_EDIT' => 'Made A Edit',
|
||||
// UCP
|
||||
'UCP_PROFILE_MCHAT' => 'mChat Einstellung',
|
||||
|
||||
'DISPLAY_MCHAT' => 'mChat auf der Indexseite anzeigen',
|
||||
'SOUND_MCHAT' => 'Aktiviere Sound für mChat',
|
||||
'DISPLAY_STATS_INDEX' => 'Zeige die "Wer ist im mChat" Statistik auf der Indexseite an',
|
||||
@@ -117,110 +113,16 @@ $lang = array_merge($lang, array(
|
||||
'CHAT_AREA_EXPLAIN' => 'Wähle welche Art von Umgebung für die Eingabe mit einem Chat: <br /> Ein Textbereich oder <br /> einem Eingangsbereich',
|
||||
'INPUT_AREA' => 'Eingangsbereich',
|
||||
'TEXT_AREA' => 'Textbereich',
|
||||
// ACP
|
||||
'ACP_MCHAT_RULES_EXPLAIN' => 'Geben Sie die Regeln des Forums hier ein. Jede Regel in einer neuen Zeile. <br /> Sie sind auf 255 Zeichen beschränkt. <br /> <Strong> Diese Mitteilung kann übersetzt werden. </ Strong> (Sie müssen die mchat_lang.php Datei und die Anleitung bearbeiten).',
|
||||
'LOG_MCHAT_CONFIG_UPDATE' => '<strong>Aktualisiert mChat Konfiguration </strong>',
|
||||
'MCHAT_CONFIG_SAVED' => 'Mini Chat Konfiguration ist aktuell',
|
||||
'MCHAT_TITLE' => 'Mini-Chat',
|
||||
'MCHAT_VERSION' => 'Version:',
|
||||
'MCHAT_ENABLE' => 'Aktiviere mChat Extension',
|
||||
'MCHAT_ENABLE_EXPLAIN' => 'Aktiviere oder deaktiviere die Extension global.',
|
||||
'MCHAT_AVATARS' => 'Avatare anzeigen',
|
||||
'MCHAT_AVATARS_EXPLAIN' => 'Wenn ja gesetzt ist, wird die veränderte Größe der Benutzeravatare angezeigt',
|
||||
'MCHAT_ON_INDEX' => 'mChat auf dem Index',
|
||||
'MCHAT_ON_INDEX_EXPLAIN' => 'Ermöglichen die Anzeige des MCHAT auf der Indexseite.',
|
||||
'MCHAT_INDEX_HEIGHT' => 'Index Seite Höhe',
|
||||
'MCHAT_INDEX_HEIGHT_EXPLAIN' => 'Die Höhe des Chatfenster in Pixel auf der Indexseite des Forums. <br /> <Em> Sie sind von 50 bis 1000 begrenzt </em>.',
|
||||
'MCHAT_LOCATION' => 'Position im Forum',
|
||||
'MCHAT_LOCATION_EXPLAIN' => 'Wähle den Speicherort des Mchat auf der Indexseite.',
|
||||
'MCHAT_TOP_OF_FORUM' => 'Oben im Forum',
|
||||
'MCHAT_BOTTOM_OF_FORUM' => 'Unterseite des Forums',
|
||||
'MCHAT_REFRESH' => 'Auffrischen',
|
||||
'MCHAT_REFRESH_EXPLAIN' => 'Anzahl der Sekunden, bevor der Chat automatisch aktualisiert wird. <br /> <Em> Sie werden von 5 bis 60 Sekunden begrenzt</em>.',
|
||||
'MCHAT_PRUNE' => 'Löschen aktivieren',
|
||||
'MCHAT_PRUNE_EXPLAIN' => 'Stelle auf Ja, um die Löschfunktion zu aktivieren. <br /> <Em> Nur tritt auf, wenn ein Benutzer die benutzerdefinierten oder Archivseiten</em>.',
|
||||
'MCHAT_PRUNE_NUM' => 'Lösch Nr.',
|
||||
'MCHAT_PRUNE_NUM_EXPLAIN' => 'Die Anzahl der Nachrichten, die im Chat verbleiben.',
|
||||
'MCHAT_MESSAGE_LIMIT' => 'Nachrichten Limit',
|
||||
'MCHAT_MESSAGE_LIMIT_EXPLAIN' => 'Die maximale Anzahl von Nachrichten im Chat-Bereich zeigen. <br /> <Em> Empfohlen von 10 bis 30</em>.',
|
||||
'MCHAT_MESSAGE_NUM' => 'Foren-Übersicht Nachrichtenlimit',
|
||||
'MCHAT_MESSAGE_NUM_EXPLAIN' => 'Die maximale Anzahl von Nachrichten im Chat-Bereich auf der Indexseite zeigen. <br /> <Em> Empfohlen von 10 bis 50</em>.',
|
||||
'MCHAT_ARCHIVE_LIMIT' => 'Archiv Limit',
|
||||
'MCHAT_ARCHIVE_LIMIT_EXPLAIN' => 'Die maximale Anzahl der Nachrichten, die pro Seite auf der Archivseite angezeigt werden.<br /> <em>Empfohlen von 25 to 50</em>.',
|
||||
'MCHAT_FLOOD_TIME' => 'Intervall Zeit',
|
||||
'MCHAT_FLOOD_TIME_EXPLAIN' => 'Die Anzahl der Sekunden die ein Benutzer muss vor der Veröffentlichung eine andere Nachricht im Chat warten muss.<br /><em>Empfohlen von 5 to 30, setze auf 0 um zu deaktivieren</em>.',
|
||||
'MCHAT_MAX_MESSAGE_LENGTH' => 'Max Nachrichten Länge',
|
||||
'MCHAT_MAX_MESSAGE_LENGTH_EXPLAIN' => 'Max Anzahl der Zeichen die pro Nachricht zulässig geschrieben werden können.<br /><em>Empfohlen von 100 bis 500, setze auf 0 um zu deaktivieren</em>.',
|
||||
'MCHAT_CUSTOM_PAGE' => 'Eigene Seite',
|
||||
'MCHAT_CUSTOM_PAGE_EXPLAIN' => 'Erlaube die Verwendung einer eigenen Seite',
|
||||
'MCHAT_CUSTOM_HEIGHT' => 'Benutzerdefinierte Seitenhöhe',
|
||||
'MCHAT_CUSTOM_HEIGHT_EXPLAIN' => 'Die Höhe des Chatfenster in Pixel auf der separaten Mchat Seite.<br /><em>Sie sind von 50 bis 1000 begrenzt</em>.',
|
||||
'MCHAT_DATE_FORMAT' => 'Datums Format',
|
||||
'MCHAT_DATE_FORMAT_EXPLAIN' => 'Der Syntax ist identisch mit der PHP <a href="http://www.php.net/date">Datum()</a> Funktion.',
|
||||
'MCHAT_CUSTOM_DATEFORMAT' => 'Eigene…',
|
||||
'MCHAT_WHOIS' => 'Wer ist hier',
|
||||
'MCHAT_WHOIS_EXPLAIN' => 'Erlaube die Anzeige der Benutzer, die im Chat sind',
|
||||
'MCHAT_WHOIS_REFRESH' => 'Wer ist hier auffrischen',
|
||||
'MCHAT_WHOIS_REFRESH_EXPLAIN' => 'Anzahl der Sek. bevor Wer ist hier aktualisiert wird.<br /><em>Es wird von 30 bis 300 Sekunden begrenzt</em>.',
|
||||
'MCHAT_BBCODES_DISALLOWED' => 'BBCodes nicht erlauben',
|
||||
'MCHAT_BBCODES_DISALLOWED_EXPLAIN' => 'Hier kannst du die BBCodes eingeben, die <strong>nicht</strong> in einer Nachricht verwendet werden<br />Separate BBCodes durch einen vertikalen Balken, zum Beispiel: <br />b|i|u|code|list|list=|flash|quote und/oder einen eigenen BBCode Tag Namen',
|
||||
'MCHAT_STATIC_MESSAGE' => 'Statistische Nachricht',
|
||||
'MCHAT_STATIC_MESSAGE_EXPLAIN' => 'Hier kannst du eine statische Meldung definieren, die Benutzern des Chats angezeigt wird. HTML Code ist erlaubt.<br />Set leeren um die Anzeige zu deaktivieren. Du bist auf 255 Zeichen beschränkt.<br /><strong>Diese Nachricht kann übersetzt werden.</strong> (Du musst die mchat_lang.php bearbeiten und lies die Instruktionen).',
|
||||
'MCHAT_USER_TIMEOUT' => 'User Timeout',
|
||||
'MCHAT_USER_TIMEOUT_EXPLAIN' => 'Stelle die Zeit in Sekunden, bis eine Benutzer-Session im Chat endet. Setze 0 für kein Timeout.<br /><em>Du bist mit der Forum Konfigurationseinstellung für Sitzungen, die derzeit auf Sekunden eingestellt ist begrenzt</em>',
|
||||
'MCHAT_OVERRIDE_SMILIE_LIMIT' => 'Überschreibe Limit an Smilies',
|
||||
'MCHAT_OVERRIDE_SMILIE_LIMIT_EXPLAIN' => 'Stelle auf Ja, um die Forensmilie Grenzwerteinstellung für Chat-Nachrichten zu überschreiben ',
|
||||
'MCHAT_OVERRIDE_MIN_POST_CHARS' => 'Überschreibe mindest Zeichen Grenze',
|
||||
'MCHAT_OVERRIDE_MIN_POST_CHARS_EXPLAIN' => 'Setze Ja um mindest Zeichen zu überschreiben und die Einstellungen für Chat-Nachrichten einstellen',
|
||||
'MCHAT_NEW_POSTS' => 'Anzeige neues Posting',
|
||||
'MCHAT_NEW_POSTS_EXPLAIN' => 'Auf Ja gesetzt, werden neuen Beiträge aus dem Forum in den Chat Nachricht veröffentlicht<br /><strong>Du musst das Add-on für neue Post-Benachrichtigungen installieren</ strong>(im contrib-Verzeichnis der Erweiterung herunterladen).',
|
||||
'MCHAT_MAIN' => 'Hauptkonfigurations',
|
||||
'MCHAT_STATS' => 'Wer ist im mChat',
|
||||
'MCHAT_STATS_INDEX' => 'Statistik im Index',
|
||||
'MCHAT_STATS_INDEX_EXPLAIN' => 'Zeige wer chattet im Statistik-Bereich des Forums',
|
||||
'MCHAT_MESSAGES' => 'Nachrichten Einstellung',
|
||||
'MCHAT_PAUSE_ON_INPUT' => 'Pause bei der Eingabe',
|
||||
'MCHAT_PAUSE_ON_INPUT_EXPLAIN' => 'Wenn Ja eingestellt ist, wird der Chat nicht für einen Benutzer während der Eingabe einer Nachricht im geupdatet',
|
||||
|
||||
// error reporting
|
||||
'MCHAT_NEEDS_UPDATING' => 'Der mChat Mod benötigt eine Aktualisierung. Bitte informiere einen Administrator das eine Aktualisierung nötig ist.',
|
||||
'MCHAT_WRONG_VERSION' => 'Die falsche Version des Mods ist installiert. Bitte starte den %sinstaller%s für die neue Version des Mods.',
|
||||
'WARNING' => 'Warnung',
|
||||
'TOO_LONG_DATE' => 'Das angegebene Datumsformat ist zu lang.',
|
||||
'TOO_SHORT_DATE' => 'Das angegebene Datumsformat ist zu kurz.',
|
||||
'TOO_SMALL_REFRESH' => 'Das Aktualisierungsintervall ist zu kurz.',
|
||||
'TOO_LARGE_REFRESH' => 'Das Aktualisierungsintervall ist zu lang.',
|
||||
'TOO_SMALL_MESSAGE_LIMIT' => 'Das Nachrichtenlimit ist zu klein.',
|
||||
'TOO_LARGE_MESSAGE_LIMIT' => 'Das Nachrichtenlimit ist zu groß.',
|
||||
'TOO_SMALL_ARCHIVE_LIMIT' => 'Der Wert des Archivlimits ist zu klein.',
|
||||
'TOO_LARGE_ARCHIVE_LIMIT' => 'Der Wert des Archivlimits ist zu groß.',
|
||||
'TOO_SMALL_FLOOD_TIME' => 'Das Flood-Intervall ist zu kurz.',
|
||||
'TOO_LARGE_FLOOD_TIME' => 'Das Flood-Intervall ist zu lang.',
|
||||
'TOO_SMALL_MAX_MESSAGE_LNGTH' => 'Der Wert der maximalen Nachrichtenlänge ist zu klein.',
|
||||
'TOO_LARGE_MAX_MESSAGE_LNGTH' => 'Der Wert der maximalen Nachrichtenlänge ist zu groß.',
|
||||
'TOO_SMALL_MAX_WORDS_LNGTH' => 'Der Wert der maximalen Wortlänge ist zu groß.',
|
||||
'TOO_LARGE_MAX_WORDS_LNGTH' => 'Der Wert für die maximale Wortlänge ist zu groß.',
|
||||
'TOO_SMALL_WHOIS_REFRESH' => 'Der Wert für die Whois-Aktualisierung ist zu klein.',
|
||||
'TOO_LARGE_WHOIS_REFRESH' => 'Der Wert für die Whois-Aktualisierung ist zu groß.',
|
||||
'TOO_SMALL_INDEX_HEIGHT' => 'Der Wert für die Höhe des Index ist zu klein.',
|
||||
'TOO_LARGE_INDEX_HEIGHT' => 'Der Wert für die Höhe des Index ist zu groß.',
|
||||
'TOO_SMALL_CUSTOM_HEIGHT' => 'Der Wert für die Höhe des Chats auf einer separaten Seite ist zu klein.',
|
||||
'TOO_LARGE_CUSTOM_HEIGHT' => 'Der Wert für die Höhe des Chats auf einer separaten Seite ist zu groß',
|
||||
'TOO_SHORT_STATIC_MESSAGE' => 'Der Wert für die Länge der permanenten Nachricht ist zu klein.',
|
||||
'TOO_LONG_STATIC_MESSAGE' => 'Der Wert für die Länge der permanenten Nachricht ist zu groß.',
|
||||
'TOO_SMALL_TIMEOUT' => 'Der Wert für die Zeitüberschreitung eines Benutzers ist zu klein.',
|
||||
'TOO_LARGE_TIMEOUT' => 'Der Wert für die Zeitüberschreitung eines Benutzers ist zu groß.',
|
||||
'UCP_CAT_MCHAT' => 'mChat',
|
||||
'UCP_MCHAT_CONFIG' => 'mChat',
|
||||
|
||||
'UCP_MCHAT_CONFIG' => 'mChat',
|
||||
//Preferences
|
||||
'LOG_MCHAT_TABLE_PRUNED' => 'mChat Tabelle löschen',
|
||||
'ACP_USER_MCHAT' => 'mChat Einstellung',
|
||||
'LOG_DELETED_MCHAT' => '<strong>Lösche mChat Nachricht</strong><br />» %1$en',
|
||||
'LOG_EDITED_MCHAT' => '<strong>Editiere mChat Nachricht</strong><br />» %1$en',
|
||||
'LOG_DELETED_MCHAT' => '<strong>Lösche mChat Nachricht</strong><br />» %1$en',
|
||||
'LOG_EDITED_MCHAT' => '<strong>Editiere mChat Nachricht</strong><br />» %1$en',
|
||||
'MCHAT_MESSAGE_LNGTH_EXPLAIN' => 'Characters remaining: <span class="charsLeft error"><strong>%d</strong></span>',
|
||||
'MCHAT_TOP_POSTERS' => 'Top Poster',
|
||||
'MCHAT_NEW_CHAT' => 'Neue mChat Nachricht!',
|
||||
'MCHAT_TOP_POSTERS' => 'Top Poster',
|
||||
'MCHAT_NEW_CHAT' => 'Neue mChat Nachricht!',
|
||||
'FONT_COLOR' => 'Schriftfarbe',
|
||||
'FONT_COLOR_HIDE' => 'Schriftfarbe ausblenden',
|
||||
'FONT_HUGE' => 'Riesig',
|
||||
@@ -229,7 +131,7 @@ $lang = array_merge($lang, array(
|
||||
'FONT_SIZE' => 'Schriftgröße',
|
||||
'FONT_SMALL' => 'Klein',
|
||||
'FONT_TINY' => 'Tiny',
|
||||
'MCHAT_SEND_PM' => 'Sende private Nachricht',
|
||||
'MCHAT_PM' => '(PN)',
|
||||
'MORE_SMILIES' => 'Mehr Smilies',
|
||||
'MCHAT_SEND_PM' => 'Sende private Nachricht',
|
||||
'MCHAT_PM' => '(PN)',
|
||||
'MORE_SMILIES' => 'Mehr Smilies',
|
||||
));
|
||||
@@ -55,7 +55,7 @@ $lang = array_merge($lang, array(
|
||||
'MCHAT_ENABLE' => 'mChat MOD aktivieren',
|
||||
'MCHAT_ENABLE_EXPLAIN' => 'Generelles Aktivieren oder Deaktivieren.',
|
||||
'MCHAT_AVATARS' => 'Avatare anzeigen',
|
||||
'MCHAT_AVATARS_EXPLAIN' => 'Wenn JA eingestellt ist, werden Avatare angezeigt',
|
||||
'MCHAT_AVATARS_EXPLAIN' => 'Wenn JA eingestellt ist, werden Avatare angezeigt',
|
||||
'MCHAT_ON_INDEX' => 'mChat im Index',
|
||||
'MCHAT_ON_INDEX_EXPLAIN' => 'Erlaube die mChat Anzeige auf der Startseite.',
|
||||
'MCHAT_INDEX_HEIGHT' => 'Seitenhöhe im Index',
|
||||
@@ -69,11 +69,11 @@ $lang = array_merge($lang, array(
|
||||
'MCHAT_PRUNE' => 'Automatisches Löschen erlauben',
|
||||
'MCHAT_PRUNE_EXPLAIN' => 'Stelle JA ein, um die automatische Löschfunktion zu aktivieren.<br /><em>Hat nur Auswirkung, wenn ein Benutzer die separate Seite oder das Archiv betrachtet.</em.',
|
||||
'MCHAT_PRUNE_NUM' => 'Anzahl verbleibender Nachrichten nach dem automatischem Löschen',
|
||||
'MCHAT_PRUNE_NUM_EXPLAIN' => 'Die Anzahl der Nachrichten, die nach dem Löschen im Chat verbleiben.',
|
||||
'MCHAT_PRUNE_NUM_EXPLAIN' => 'Die Anzahl der Nachrichten, die nach dem Löschen im Chat verbleiben.',
|
||||
'MCHAT_MESSAGE_LIMIT' => 'Nachrichtenlimit',
|
||||
'MCHAT_MESSAGE_LIMIT_EXPLAIN' => 'Die maximale Anzahl der Nachrichten, die auf der Hauptseite des Forums angezeigt werden soll.<br /><em>Empfohlen sind zwischen 10 und 20</em>.',
|
||||
'MCHAT_MESSAGE_NUM' => 'Nachrichtengrenze',
|
||||
'MCHAT_MESSAGE_NUM_EXPLAIN' => 'Die maximale Anzahl von Nachrichten im Chat-Bereich die auf der Indexseite angezeigt werden. <br /> <Em> Empfohlen von 10 bis 50 </ em>.',
|
||||
'MCHAT_MESSAGE_NUM_EXPLAIN' => 'Die maximale Anzahl von Nachrichten im Chat-Bereich die auf der Indexseite angezeigt werden. <br /> <Em> Empfohlen von 10 bis 50 </ em>.',
|
||||
'MCHAT_ARCHIVE_LIMIT' => 'Archivlimit',
|
||||
'MCHAT_ARCHIVE_LIMIT_EXPLAIN' => 'Die maximale Anzahl Nachrichten pro Seite im Archiv.<br /> <em>Empfohlen sind 25 bis 50</e.',
|
||||
'MCHAT_FLOOD_TIME' => 'Flood-Intervall',
|
||||
@@ -101,12 +101,20 @@ $lang = array_merge($lang, array(
|
||||
'MCHAT_OVERRIDE_SMILIE_LIMIT_EXPLAIN' => 'Falls JA eingestellt ist, wird das eingestellte Limit im Forum für Smilies im mChat aufgehoben.',
|
||||
'MCHAT_OVERRIDE_MIN_POST_CHARS' => 'Minimale Anzahl von Zeichen aufheben?',
|
||||
'MCHAT_OVERRIDE_MIN_POST_CHARS_EXPLAIN' => 'Falls ja eingestellt ist, wird das Limit für die minimale Anzahl an Zeichen für mChat-Nachrichten aufgehoben.',
|
||||
'MCHAT_NEW_POSTS' => 'Neue Beiträge anzeigen?',
|
||||
'MCHAT_NEW_POSTS_EXPLAIN' => 'Falls JA eingestellt ist, werden neue Beiträge im mChat angezeigt.<br /><strong>Hierfür mußt du aber das AddOn für neue Beiträge aus dem Contrib-Ordner installieren.</strong>',
|
||||
'MCHAT_NEW_POSTS' => 'Enable Posts Display',
|
||||
'MCHAT_NEW_POSTS_EXPLAIN' => 'Set to yes and you can set below the options what message to display in the chat message area.',
|
||||
'MCHAT_NEW_POSTS_TOPIC' => 'Display New Topic Posts',
|
||||
'MCHAT_NEW_POSTS_TOPIC_EXPLAIN' => 'Set to yes to allow new topic posts from the forum to be posted into the chat message area.',
|
||||
'MCHAT_NEW_POSTS_REPLY' => 'Display New Replied Posts',
|
||||
'MCHAT_NEW_POSTS_REPLY_EXPLAIN' => 'Set to yes to allow replied posts from the forum to be posted into the chat message area.',
|
||||
'MCHAT_NEW_POSTS_EDIT' => 'Display Edited Posts',
|
||||
'MCHAT_NEW_POSTS_EDIT_EXPLAIN' => 'Set to yes to allow edited posts from the forum to be posted into the chat message area.',
|
||||
'MCHAT_NEW_POSTS_QUOTE' => 'Display Quoted Posts',
|
||||
'MCHAT_NEW_POSTS_QUOTE_EXPLAIN' => 'Set to yes to allow quoted posts from the forum to be posted into the chat message area.',
|
||||
'MCHAT_MAIN' => 'Hauptkonfiguration',
|
||||
'MCHAT_STATS' => 'Wer ist im mChat?',
|
||||
'MCHAT_STATS_INDEX' => 'Anzeige auf dem Index',
|
||||
'MCHAT_STATS_INDEX_EXPLAIN' => 'Zeigt auf dem Index an wer im Mini-Chat ist.',
|
||||
'MCHAT_STATS_INDEX' => 'Anzeige auf dem Index',
|
||||
'MCHAT_STATS_INDEX_EXPLAIN' => 'Zeigt auf dem Index an wer im Mini-Chat ist.',
|
||||
'MCHAT_MESSAGES' => 'Nachrichten-Einstellungen',
|
||||
'MCHAT_PAUSE_ON_INPUT' => 'Den Chat während einer Nachrichteneingabe nicht aktualisieren',
|
||||
'MCHAT_PAUSE_ON_INPUT_EXPLAIN' => 'Falls JA eingestellt ist, ist das automatische Aktualisieren während der Eingabe einer Nachricht deaktiviert.',
|
||||
@@ -127,19 +135,19 @@ $lang = array_merge($lang, array(
|
||||
'TOO_LARGE_FLOOD_TIME' => 'Das Flood-Intervall ist zu lang.',
|
||||
'TOO_SMALL_MAX_MESSAGE_LNGTH' => 'Der Wert der maximalen Nachrichtenlänge ist zu klein.',
|
||||
'TOO_LARGE_MAX_MESSAGE_LNGTH' => 'Der Wert der maximalen Nachrichtenlänge ist zu groß.',
|
||||
'TOO_SMALL_MAX_WORDS_LNGTH' => 'Der Wert der maximalen Wortlänge ist zu groß.',
|
||||
'TOO_SMALL_MAX_WORDS_LNGTH' => 'Der Wert der maximalen Wortlänge ist zu groß.',
|
||||
'TOO_LARGE_MAX_WORDS_LNGTH' => 'Der Wert für die maximale Wortlänge ist zu groß.',
|
||||
'TOO_SMALL_WHOIS_REFRESH' => 'Der Wert für die Whois-Aktualisierung ist zu klein.',
|
||||
'TOO_LARGE_WHOIS_REFRESH' => 'Der Wert für die Whois-Aktualisierung ist zu groß.',
|
||||
'TOO_LARGE_WHOIS_REFRESH' => 'Der Wert für die Whois-Aktualisierung ist zu groß.',
|
||||
'TOO_SMALL_INDEX_HEIGHT' => 'Der Wert für die Höhe des Index ist zu klein.',
|
||||
'TOO_LARGE_INDEX_HEIGHT' => 'Der Wert für die Höhe des Index ist zu groß.',
|
||||
'TOO_SMALL_CUSTOM_HEIGHT' => 'Der Wert für die Höhe des Chats auf einer separaten Seite ist zu klein.',
|
||||
'TOO_LARGE_CUSTOM_HEIGHT' => 'Der Wert für die Höhe des Chats auf einer separaten Seite ist zu groß',
|
||||
'TOO_SHORT_STATIC_MESSAGE' => 'Der Wert für die Länge der permanenten Nachricht ist zu klein.',
|
||||
'TOO_LONG_STATIC_MESSAGE' => 'Der Wert für die Länge der permanenten Nachricht ist zu groß.',
|
||||
'TOO_LONG_STATIC_MESSAGE' => 'Der Wert für die Länge der permanenten Nachricht ist zu groß.',
|
||||
'TOO_SMALL_TIMEOUT' => 'Der Wert für die Zeitüberschreitung eines Benutzers ist zu klein.',
|
||||
'TOO_LARGE_TIMEOUT' => 'Der Wert für die Zeitüberschreitung eines Benutzers ist zu groß.',
|
||||
|
||||
|
||||
// User perms
|
||||
'ACL_U_MCHAT_USE' => 'Kann mChat benutzen',
|
||||
'ACL_U_MCHAT_VIEW' => 'Kann mChat sehen',
|
||||
|
||||
@@ -63,7 +63,6 @@ $lang = array_merge($lang, array(
|
||||
'MCHAT_HOUR' => 'hour ',
|
||||
'MCHAT_HOURS' => 'hours',
|
||||
'MCHAT_IP' => 'IP whois for',
|
||||
|
||||
'MCHAT_MINUTE' => 'minute ',
|
||||
'MCHAT_MINUTES' => 'minutes ',
|
||||
'MCHAT_MESS_LONG' => 'Your message is too long.\nPlease limit it to %s characters',
|
||||
@@ -91,23 +90,20 @@ $lang = array_merge($lang, array(
|
||||
'MCHAT_SECONDS' => 'seconds ',
|
||||
'MCHAT_SESSION_ENDS' => 'Chat session ends in',
|
||||
'MCHAT_SMILES' => 'Smilies',
|
||||
|
||||
'MCHAT_TOTALMESSAGES' => 'Total messages: <strong>%s</strong>',
|
||||
'MCHAT_USESOUND' => 'Use sound?',
|
||||
|
||||
'MCHAT_ONLINE_USERS_TOTAL' => 'In total there are <strong>%d</strong> users chatting ',
|
||||
'MCHAT_ONLINE_USER_TOTAL' => 'In total there is <strong>%d</strong> user chatting ',
|
||||
'MCHAT_NO_CHATTERS' => 'No one is chatting',
|
||||
'MCHAT_ONLINE_EXPLAIN' => 'based on users active over the past %s',
|
||||
|
||||
'WHO_IS_CHATTING' => 'Who is chatting',
|
||||
'WHO_IS_REFRESH_EXPLAIN' => 'Refreshes every <strong>%d</strong> seconds',
|
||||
'MCHAT_NEW_TOPIC' => '<strong>New Topic</strong>',
|
||||
'MCHAT_NEW_REPLY' => '<strong>New Reply</strong>',
|
||||
|
||||
'MCHAT_NEW_TOPIC' => 'Made A New Topic',
|
||||
'MCHAT_NEW_REPLY' => 'Made A New Reply',
|
||||
'MCHAT_NEW_QUOTE' => 'Replied with a Quote',
|
||||
'MCHAT_NEW_EDIT' => 'Made A Edit',
|
||||
// UCP
|
||||
'UCP_PROFILE_MCHAT' => 'mChat Preferences',
|
||||
|
||||
'DISPLAY_MCHAT' => 'Display mChat on Index',
|
||||
'SOUND_MCHAT' => 'Enable mChat sound',
|
||||
'DISPLAY_STATS_INDEX' => 'Display the Who is Chatting stats on index page',
|
||||
@@ -117,101 +113,9 @@ $lang = array_merge($lang, array(
|
||||
'CHAT_AREA_EXPLAIN' => 'Choose which type of area to use to input a chat:<br />A text area or<br />an input area',
|
||||
'INPUT_AREA' => 'Input area',
|
||||
'TEXT_AREA' => 'Text area',
|
||||
// ACP
|
||||
'ACP_MCHAT_RULES_EXPLAIN' => 'Enter the rules of the forum here. Each rule on a new line.<br />You are limited to 255 characters.<br /><strong>This message can be translated.</strong> (you must edit the mchat_lang.php file and read the instructions).',
|
||||
'LOG_MCHAT_CONFIG_UPDATE' => '<strong>Updated mChat config </strong>',
|
||||
'MCHAT_CONFIG_SAVED' => 'Mini Chat configuration has been updated',
|
||||
'MCHAT_TITLE' => 'Mini-Chat',
|
||||
'MCHAT_VERSION' => 'Version:',
|
||||
'MCHAT_ENABLE' => 'Enable mChat Extension',
|
||||
'MCHAT_ENABLE_EXPLAIN' => 'Enable or disable the extension globally.',
|
||||
'MCHAT_AVATARS' => 'Display avatars',
|
||||
'MCHAT_AVATARS_EXPLAIN' => 'If set yes, resized user avatars will be displayed',
|
||||
'MCHAT_ON_INDEX' => 'mChat On Index',
|
||||
'MCHAT_ON_INDEX_EXPLAIN' => 'Allow the display of the mChat on the index page.',
|
||||
'MCHAT_INDEX_HEIGHT' => 'Index Page Height',
|
||||
'MCHAT_INDEX_HEIGHT_EXPLAIN' => 'The height of the chat box in pixels on the index page of the forum.<br /><em>You are limited from 50 to 1000</em>.',
|
||||
'MCHAT_LOCATION' => 'Location on Forum',
|
||||
'MCHAT_LOCATION_EXPLAIN' => 'Choose the location of the mChat on the index page.',
|
||||
'MCHAT_TOP_OF_FORUM' => 'Top of Forum',
|
||||
'MCHAT_BOTTOM_OF_FORUM' => 'Bottom of Forum',
|
||||
'MCHAT_REFRESH' => 'Refresh',
|
||||
'MCHAT_REFRESH_EXPLAIN' => 'Number of seconds before chat automatically refreshes.<br /><em>You are limited from 5 to 60 seconds</em>.',
|
||||
'MCHAT_PRUNE' => 'Enable Prune',
|
||||
'MCHAT_PRUNE_EXPLAIN' => 'Set to yes to enable the prune feature.<br /><em>Only occurs if a user views the custom or archive pages</em>.',
|
||||
'MCHAT_PRUNE_NUM' => 'Prune Number',
|
||||
'MCHAT_PRUNE_NUM_EXPLAIN' => 'The number of messages to retain in the chat.',
|
||||
'MCHAT_MESSAGE_LIMIT' => 'Message limit',
|
||||
'MCHAT_MESSAGE_LIMIT_EXPLAIN' => 'The maximum number of messages to show in the chat area.<br /><em>Recommended from 10 to 30</em>.',
|
||||
'MCHAT_MESSAGE_NUM' => 'Index page message limit',
|
||||
'MCHAT_MESSAGE_NUM_EXPLAIN' => 'The maximum number of messages to show in the chat area on the index page.<br /><em>Recommended from 10 to 50</em>.',
|
||||
'MCHAT_ARCHIVE_LIMIT' => 'Archive limit',
|
||||
'MCHAT_ARCHIVE_LIMIT_EXPLAIN' => 'The maximum number of messages to show per page on the archive page.<br /> <em>Recommended from 25 to 50</em>.',
|
||||
'MCHAT_FLOOD_TIME' => 'Flood time',
|
||||
'MCHAT_FLOOD_TIME_EXPLAIN' => 'The number of seconds a user must wait before posting another message in the chat.<br /><em>Recommended 5 to 30, set to 0 to disable</em>.',
|
||||
'MCHAT_MAX_MESSAGE_LENGTH' => 'Max message length',
|
||||
'MCHAT_MAX_MESSAGE_LENGTH_EXPLAIN' => 'Max number of characters allowed per message posted.<br /><em>Recommended from 100 to 500, set to 0 to disable</em>.',
|
||||
'MCHAT_CUSTOM_PAGE' => 'Custom Page',
|
||||
'MCHAT_CUSTOM_PAGE_EXPLAIN' => 'Allow the use of the custom page',
|
||||
'MCHAT_CUSTOM_HEIGHT' => 'Custom Page Height',
|
||||
'MCHAT_CUSTOM_HEIGHT_EXPLAIN' => 'The height of the chat box in pixels on the seperate mChat page.<br /><em>You are limited from 50 to 1000</em>.',
|
||||
'MCHAT_DATE_FORMAT' => 'Date format',
|
||||
'MCHAT_DATE_FORMAT_EXPLAIN' => 'The syntax used is identical to the PHP <a href="http://www.php.net/date">date()</a> function.',
|
||||
'MCHAT_CUSTOM_DATEFORMAT' => 'Custom…',
|
||||
'MCHAT_WHOIS' => 'Whois',
|
||||
'MCHAT_WHOIS_EXPLAIN' => 'Allow a display of users who are chatting',
|
||||
'MCHAT_WHOIS_REFRESH' => 'Whois refresh',
|
||||
'MCHAT_WHOIS_REFRESH_EXPLAIN' => 'Number of seconds before whois stats refreshes.<br /><em>You are limited from 30 to 300 seconds</em>.',
|
||||
'MCHAT_BBCODES_DISALLOWED' => 'Disallowed bbcodes',
|
||||
'MCHAT_BBCODES_DISALLOWED_EXPLAIN' => 'Here you can input the bbcodes that are <strong>not</strong> to be used in a message.<br />Separate bbcodes with a vertical bar, for example: <br />b|i|u|code|list|list=|flash|quote and/or a %scustom bbcode tag name%s',
|
||||
'MCHAT_STATIC_MESSAGE' => 'Static Message',
|
||||
'MCHAT_STATIC_MESSAGE_EXPLAIN' => 'Here you can define a static message to display to users of the chat. HTML code is allowed.<br />Set to empty to disable the display. You are limited to 255 characters.<br /><strong>This message can be translated.</strong> (you must edit the mchat_lang.php file and read the instructions).',
|
||||
'MCHAT_USER_TIMEOUT' => 'User Timeout',
|
||||
'MCHAT_USER_TIMEOUT_EXPLAIN' => 'Set the amount of time, in seconds, until a users session in the chat ends. Set to 0 for no timeout.<br /><em>You are limited to the %sforum config setting for sessions%s which is currently set to %s seconds</em>',
|
||||
'MCHAT_OVERRIDE_SMILIE_LIMIT' => 'Override smilie limit',
|
||||
'MCHAT_OVERRIDE_SMILIE_LIMIT_EXPLAIN' => 'Set to yes to override the forums smilie limit setting for chat messages',
|
||||
'MCHAT_OVERRIDE_MIN_POST_CHARS' => 'Override minimum characters limit',
|
||||
'MCHAT_OVERRIDE_MIN_POST_CHARS_EXPLAIN' => 'Set to yes to override the forums minimum characters setting for chat messages',
|
||||
'MCHAT_NEW_POSTS' => 'Display New Posts',
|
||||
'MCHAT_NEW_POSTS_EXPLAIN' => 'Set to yes to allow new posts from the forum to be posted into the chat message area<br /><strong>You must have the add-on for new post notifications installed</strong> (within the contrib directory of the extension download).',
|
||||
'MCHAT_MAIN' => 'Main Configuration',
|
||||
'MCHAT_STATS' => 'Whois Chatting',
|
||||
'MCHAT_STATS_INDEX' => 'Stats on Index',
|
||||
'MCHAT_STATS_INDEX_EXPLAIN' => 'Show who is chatting with in the stats section of the forum',
|
||||
'MCHAT_MESSAGES' => 'Message Settings',
|
||||
'MCHAT_PAUSE_ON_INPUT' => 'Pause on input',
|
||||
'MCHAT_PAUSE_ON_INPUT_EXPLAIN' => 'If set Yes, then the chat will not autoupdate upon a user entering a message in the input area',
|
||||
|
||||
// error reporting
|
||||
'MCHAT_NEEDS_UPDATING' => 'The mChat extension needs updating. Please have a forum founder visit this section to run the installer.',
|
||||
'MCHAT_WRONG_VERSION' => 'The wrong version of the extension is installed. Please run the %sinstaller%s for the new version of the modification.',
|
||||
'WARNING' => 'Warning',
|
||||
'TOO_LONG_DATE' => 'The date format you entered is too long.',
|
||||
'TOO_SHORT_DATE' => 'The date format you entered is too short.',
|
||||
'TOO_SMALL_REFRESH' => 'The refresh value is too small.',
|
||||
'TOO_LARGE_REFRESH' => 'The refresh value is too large.',
|
||||
'TOO_SMALL_MESSAGE_LIMIT' => 'The message limit value is too small.',
|
||||
'TOO_LARGE_MESSAGE_LIMIT' => 'The message limit value is too large.',
|
||||
'TOO_SMALL_ARCHIVE_LIMIT' => 'The archive limit value is too small.',
|
||||
'TOO_LARGE_ARCHIVE_LIMIT' => 'The archive limit value is too large.',
|
||||
'TOO_SMALL_FLOOD_TIME' => 'The flood time value is too small.',
|
||||
'TOO_LARGE_FLOOD_TIME' => 'The flood time value is too large.',
|
||||
'TOO_SMALL_MAX_MESSAGE_LNGTH' => 'The max message length value is too small.',
|
||||
'TOO_LARGE_MAX_MESSAGE_LNGTH' => 'The max message length value is too large.',
|
||||
'TOO_SMALL_MAX_WORDS_LNGTH' => 'The max words length value is too small.',
|
||||
'TOO_LARGE_MAX_WORDS_LNGTH' => 'The max words length value is too large.',
|
||||
'TOO_SMALL_WHOIS_REFRESH' => 'The whois refresh value is too small.',
|
||||
'TOO_LARGE_WHOIS_REFRESH' => 'The whois refresh value is too large.',
|
||||
'TOO_SMALL_INDEX_HEIGHT' => 'The index height value is too small.',
|
||||
'TOO_LARGE_INDEX_HEIGHT' => 'The index height value is too large.',
|
||||
'TOO_SMALL_CUSTOM_HEIGHT' => 'The custom height value is too small.',
|
||||
'TOO_LARGE_CUSTOM_HEIGHT' => 'The custom height value is too large.',
|
||||
'TOO_SHORT_STATIC_MESSAGE' => 'The static message value is too short.',
|
||||
'TOO_LONG_STATIC_MESSAGE' => 'The static message value is too long.',
|
||||
'TOO_SMALL_TIMEOUT' => 'The user timeout value is too small.',
|
||||
'TOO_LARGE_TIMEOUT' => 'The user timeout value is too large.',
|
||||
'UCP_CAT_MCHAT' => 'mChat',
|
||||
'UCP_MCHAT_CONFIG' => 'mChat', //Preferences
|
||||
'UCP_MCHAT_CONFIG' => 'mChat',
|
||||
//Preferences
|
||||
'LOG_MCHAT_TABLE_PRUNED' => 'mChat Table was pruned',
|
||||
'ACP_USER_MCHAT' => 'mChat Settings',
|
||||
'LOG_DELETED_MCHAT' => '<strong>Deleted mChat message</strong><br />» %1$s',
|
||||
|
||||
@@ -101,8 +101,16 @@ $lang = array_merge($lang, array(
|
||||
'MCHAT_OVERRIDE_SMILIE_LIMIT_EXPLAIN' => 'Set to yes to override the forums smilie limit setting for chat messages',
|
||||
'MCHAT_OVERRIDE_MIN_POST_CHARS' => 'Override minimum characters limit',
|
||||
'MCHAT_OVERRIDE_MIN_POST_CHARS_EXPLAIN' => 'Set to yes to override the forums minimum characters setting for chat messages',
|
||||
'MCHAT_NEW_POSTS' => 'Display New Posts',
|
||||
'MCHAT_NEW_POSTS_EXPLAIN' => 'Set to yes to allow new posts from the forum to be posted into the chat message area<br /><strong>You must have the add-on for new post notifications installed</strong> (within the contrib directory of the extension download).',
|
||||
'MCHAT_NEW_POSTS' => 'Enable Posts Display',
|
||||
'MCHAT_NEW_POSTS_EXPLAIN' => 'Set to yes and you can set below the options what message to display in the chat message area.',
|
||||
'MCHAT_NEW_POSTS_TOPIC' => 'Display New Topic Posts',
|
||||
'MCHAT_NEW_POSTS_TOPIC_EXPLAIN' => 'Set to yes to allow new topic posts from the forum to be posted into the chat message area.',
|
||||
'MCHAT_NEW_POSTS_REPLY' => 'Display New Replied Posts',
|
||||
'MCHAT_NEW_POSTS_REPLY_EXPLAIN' => 'Set to yes to allow replied posts from the forum to be posted into the chat message area.',
|
||||
'MCHAT_NEW_POSTS_EDIT' => 'Display Edited Posts',
|
||||
'MCHAT_NEW_POSTS_EDIT_EXPLAIN' => 'Set to yes to allow edited posts from the forum to be posted into the chat message area.',
|
||||
'MCHAT_NEW_POSTS_QUOTE' => 'Display Quoted Posts',
|
||||
'MCHAT_NEW_POSTS_QUOTE_EXPLAIN' => 'Set to yes to allow quoted posts from the forum to be posted into the chat message area.',
|
||||
'MCHAT_MAIN' => 'Main Configuration',
|
||||
'MCHAT_STATS' => 'Whois Chatting',
|
||||
'MCHAT_STATS_INDEX' => 'Stats on Index',
|
||||
|
||||
@@ -63,7 +63,6 @@ $lang = array_merge($lang, array(
|
||||
'MCHAT_HOUR' => 'heure ',
|
||||
'MCHAT_HOURS' => 'heures',
|
||||
'MCHAT_IP' => 'Whois pour l’IP',
|
||||
|
||||
'MCHAT_MINUTE' => 'minute ',
|
||||
'MCHAT_MINUTES' => 'minutes ',
|
||||
'MCHAT_MESS_LONG' => 'Votre message est trop long.\nLimité à %s caractères',
|
||||
@@ -91,23 +90,20 @@ $lang = array_merge($lang, array(
|
||||
'MCHAT_SECONDS' => 'secondes ',
|
||||
'MCHAT_SESSION_ENDS' => 'La session de tchat se termine dans',
|
||||
'MCHAT_SMILES' => 'Smileys',
|
||||
|
||||
'MCHAT_TOTALMESSAGES' => 'Total des messages: <strong>%s</strong>',
|
||||
'MCHAT_USESOUND' => 'Utiliser le son?',
|
||||
|
||||
'MCHAT_ONLINE_USERS_TOTAL' => 'Au total, il y a <strong>%d</strong> utilisateurs qui discutent ',
|
||||
'MCHAT_ONLINE_USER_TOTAL' => 'Au total, il y a <strong>%d</strong> utilisateur qui discute ',
|
||||
'MCHAT_NO_CHATTERS' => 'Personne ne tchat',
|
||||
'MCHAT_ONLINE_EXPLAIN' => 'basé sur l’activité des utilisateurs depuis %s',
|
||||
|
||||
'WHO_IS_CHATTING' => 'Qui discute ?',
|
||||
'WHO_IS_REFRESH_EXPLAIN' => 'Actualisation toutes les <strong>%d</strong> secondes',
|
||||
'MCHAT_NEW_TOPIC' => '<strong>Nouveau Sujet</strong>',
|
||||
'MCHAT_NEW_REPLY' => '<strong>Nouvelle réponse</strong>',
|
||||
|
||||
'MCHAT_NEW_TOPIC' => 'Made A New Topic',
|
||||
'MCHAT_NEW_REPLY' => 'Made A New Reply',
|
||||
'MCHAT_NEW_QUOTE' => 'Replied with a Quote',
|
||||
'MCHAT_NEW_EDIT' => 'Made A Edit',
|
||||
// UCP
|
||||
'UCP_PROFILE_MCHAT' => 'Préférences du mini-chat',
|
||||
|
||||
'DISPLAY_MCHAT' => 'Afficher le mini-chat sur l’index.',
|
||||
'SOUND_MCHAT' => 'Activer le son du mini-chat.',
|
||||
'DISPLAY_STATS_INDEX' => 'Afficher les statistiques de « Qui discute ? » sur la page d’index.',
|
||||
@@ -117,99 +113,9 @@ $lang = array_merge($lang, array(
|
||||
'CHAT_AREA_EXPLAIN' => 'Choisissez le type de champ à utiliser pour saisir un message :<br />Une zone de zaisie ou<br />un champ de saisie',
|
||||
'INPUT_AREA' => 'Champ de saisie',
|
||||
'TEXT_AREA' => 'Zone de zaisie',
|
||||
// ACP
|
||||
'ACP_MCHAT_RULES_EXPLAIN' => 'Saisissez les règles du forum ici. Chaque règle sur une nouvelle ligne.<br/>Vous êtes limité à 255 caractères.<br/><strong>Ce message peut être traduit.</strong> (vous devez éditer le fichier mchat_lang.php et saisir les instructions).',
|
||||
'LOG_MCHAT_CONFIG_UPDATE' => '<strong>Configuration de mChat mise à jour</strong>',
|
||||
'MCHAT_CONFIG_SAVED' => 'La configuration du Mini-Chat a été mise à jour.',
|
||||
'MCHAT_TITLE' => 'Mini-Chat',
|
||||
'MCHAT_VERSION' => 'Version :',
|
||||
'MCHAT_ENABLE' => 'Activer le MOD mChat',
|
||||
'MCHAT_ENABLE_EXPLAIN' => 'Activer ou désactiver le MOD dans sa globalité.',
|
||||
'MCHAT_AVATARS' => 'Afficher les avatars',
|
||||
'MCHAT_AVATARS_EXPLAIN' => 'Si activée, les avatars redimensionnés des utilisateurs seront affichés.',
|
||||
'MCHAT_ON_INDEX' => 'mChat sur l’index',
|
||||
'MCHAT_ON_INDEX_EXPLAIN' => 'Permettre l’affichage de mChat sur la page d’index.',
|
||||
'MCHAT_INDEX_HEIGHT' => 'Hauteur sur la page d’index',
|
||||
'MCHAT_INDEX_HEIGHT_EXPLAIN' => 'La hauteur, en pixels, de mChat sur la page d’index de votre forum.<br/><em>Vous êtes limité de 50 à 1000 pixels</em>.',
|
||||
'MCHAT_LOCATION' => 'Emplacement sur le forum',
|
||||
'MCHAT_LOCATION_EXPLAIN' => 'Choisir l’emplacement de mChat sur la page d’index.',
|
||||
'MCHAT_TOP_OF_FORUM' => 'En haut du forum',
|
||||
'MCHAT_BOTTOM_OF_FORUM' => 'En bas du forum',
|
||||
'MCHAT_REFRESH' => 'Actualiser',
|
||||
'MCHAT_REFRESH_EXPLAIN' => 'Nombre de secondes avant que mChat ne soit automatiquement actualisé.<br/><em>Vous êtes limité de 5 à 60 secondes</em>.',
|
||||
'MCHAT_PRUNE' => 'Activer le délestage',
|
||||
'MCHAT_PRUNE_EXPLAIN' => 'Mettez Oui pour activer la fonction de délestage.<br/><em>Survient seulement si un utilisateur affiche les pages personnalisées ou d’archives</em>.',
|
||||
'MCHAT_PRUNE_NUM' => 'Nombre de messages',
|
||||
'MCHAT_PRUNE_NUM_EXPLAIN' => 'Le nombre de messages à retenir dans mChat.',
|
||||
'MCHAT_MESSAGE_LIMIT' => 'Limite de messages',
|
||||
'MCHAT_MESSAGE_LIMIT_EXPLAIN' => 'Le nombre maximum de messages à afficher dans la zone du mini-chat.<br/><em>Recommandation : de 10 à 30 messages</em>.',
|
||||
'MCHAT_MESSAGE_NUM' => 'Limite de messages sur la page d’index',
|
||||
'MCHAT_MESSAGE_NUM_EXPLAIN' => 'Le nombre maximum de messages à afficher dans la zone du mini-chat sur la page d’index.<br /><em>Recommandation : de 10 à 50 messages</em>.',
|
||||
'MCHAT_ARCHIVE_LIMIT' => 'Limite de l’archivage',
|
||||
'MCHAT_ARCHIVE_LIMIT_EXPLAIN' => 'Le nombre maximum de messages à afficher par page dans la page d’archives.<br/><em>Recommandation : de 25 à 50 messages</em>.',
|
||||
'MCHAT_FLOOD_TIME' => 'Intervalle de flood',
|
||||
'MCHAT_FLOOD_TIME_EXPLAIN' => 'Le nombre de secondes qu’un utilisateur doit attendre avant de poster un autre message dans le mini-chat.<br/><em>Recommandation : de 5 à 30 secondes. Mettez 0 pour désactiver cette fonction</em>.',
|
||||
'MCHAT_CUSTOM_PAGE' => 'Page personnalisée',
|
||||
'MCHAT_CUSTOM_PAGE_EXPLAIN' => 'Permettre l’utilisation de la page personnalisée.',
|
||||
'MCHAT_CUSTOM_HEIGHT' => 'Hauteur de la page personnalisée',
|
||||
'MCHAT_CUSTOM_HEIGHT_EXPLAIN' => 'La hauteur du mini-chat, en pixels, sur la page personnalisée de mChat.<br/><em>Vous êtes limité de 50 à 1000 pixels</em>.',
|
||||
'MCHAT_DATE_FORMAT' => 'Format de la date',
|
||||
'MCHAT_DATE_FORMAT_EXPLAIN' => 'La syntaxe utilisée est identique à la fonction <a href="http://www.php.net/date">date()</a> de PHP.',
|
||||
'MCHAT_CUSTOM_DATEFORMAT' => 'Personnaliser…',
|
||||
'MCHAT_WHOIS' => 'Qui est-ce?',
|
||||
'MCHAT_WHOIS_EXPLAIN' => 'Permettre l’affichage des utilisateurs qui discutent sur le mini-chat.',
|
||||
'MCHAT_WHOIS_REFRESH' => 'Actualisation du « Qui est-ce? »',
|
||||
'MCHAT_WHOIS_REFRESH_EXPLAIN' => 'Nombre de secondes avant que les statistiques du « Qui est-ce? » ne soient actualisées.<br/><em>Vous êtes limité de 30 à 300 secondes</em>.',
|
||||
'MCHAT_BBCODES_DISALLOWED' => 'Désactiver les BBcodes',
|
||||
'MCHAT_BBCODES_DISALLOWED_EXPLAIN' => 'Ici, vous pouvez saisir les BBCodes qui ne pourront <strong>pas</strong> être utilisés dans un message.<br/>Séparez les BBcodes par une barre verticale. Par exemple: <br/>b|i|u|code|list|list=|flash|quote et/ou des %sbbcodes personnalisés%s',
|
||||
'MCHAT_STATIC_MESSAGE' => 'Message statique',
|
||||
'MCHAT_STATIC_MESSAGE_EXPLAIN' => 'Ici, vous pouvez définir un message statique à afficher pour les utilisateurs du mini-chat. Le code HTML est autorisé.<br/>Mettez rien pour désactiver cet affichage. Vous êtes limité à 255 caractères.<br/><strong>Ce message peut-être traduit</strong> (vous devez éditer le fichier mchat_lang.php et saisir les instructions).',
|
||||
'MCHAT_USER_TIMEOUT' => 'Délai d’attente de l’utilisateur',
|
||||
'MCHAT_USER_TIMEOUT_EXPLAIN' => 'Configurez la durée, en secondes, jusqu’à ce qu’une session d’utilisateur se termine dans le mini-chat. Mettez 0 pour désactiver cette fonction.<br/><em>Vous êtes limité à l’%soption de configuration du forum pour les sessions%s, qui est actuellement fixée à %s secondes</em>.',
|
||||
'MCHAT_OVERRIDE_SMILIE_LIMIT' => 'Outre-passer la limite des smileys',
|
||||
'MCHAT_OVERRIDE_SMILIE_LIMIT_EXPLAIN' => 'Mettez sur Oui pour outre-passer les paramètres de limitation de smileys des forums pour les messages du mini-chat.',
|
||||
'MCHAT_OVERRIDE_MIN_POST_CHARS' => 'Outre-passer la limite du nombre de caractères minimal',
|
||||
'MCHAT_OVERRIDE_MIN_POST_CHARS_EXPLAIN' => 'Mettez sur Oui pour outre-passer la limite du nombre de caractères minimal des forums, pour les messsages du mini-chat.',
|
||||
'MCHAT_NEW_POSTS' => 'Afficher les nouveaux messages',
|
||||
'MCHAT_NEW_POSTS_EXPLAIN' => 'Mettez sur Oui pour permettre les nouveaux sujets d’être affichés dans le mini-chat.<br/><strong>Vous devez avoir installé l’add-on de notification des nouveaux messages</strong> (qui se trouve dans le répertoire « contrib » de l’archive du MOD).',
|
||||
'MCHAT_MAIN' => 'Configuration principale',
|
||||
'MCHAT_STATS' => 'Qui discute ?',
|
||||
'MCHAT_STATS_INDEX' => 'Statistiques sur l’index',
|
||||
'MCHAT_STATS_INDEX_EXPLAIN' => 'Affiche les membres qui discutent dans les statistiques du forum.',
|
||||
'MCHAT_MESSAGES' => 'Paramètres des messages',
|
||||
'MCHAT_PAUSE_ON_INPUT' => 'Pause sur la saisie',
|
||||
'MCHAT_PAUSE_ON_INPUT_EXPLAIN' => 'Si activée, le mini-chat ne sera pas mis à jour automatiquement lorsque l’utilisateur rédige un message dans la zone de saisie.',
|
||||
|
||||
// error reporting
|
||||
'MCHAT_NEEDS_UPDATING' => 'Le MOD mChat a besoin d’être mis à jour. Le fondateur du forum doit visiter cette section pour commencer l’installation.',
|
||||
'MCHAT_WRONG_VERSION' => 'La mauvaise version du MOD est installée. Démarrez l’%sinstallation%s pour une nouvelle version du MOD.',
|
||||
'WARNING' => 'Attention',
|
||||
'TOO_LONG_DATE' => 'Le format de la date saisi est trop long.',
|
||||
'TOO_SHORT_DATE' => 'Le format de la date saisi est trop court.',
|
||||
'TOO_SMALL_REFRESH' => 'La valeur de l’actualisation est trop petite.',
|
||||
'TOO_LARGE_REFRESH' => 'La valeur de l’actualisation est trop importante.',
|
||||
'TOO_SMALL_MESSAGE_LIMIT' => 'La limite de messages est trop petite.',
|
||||
'TOO_LARGE_MESSAGE_LIMIT' => 'La limite de messages est trop grande.',
|
||||
'TOO_SMALL_ARCHIVE_LIMIT' => 'La limite de l’archive est trop petite.',
|
||||
'TOO_LARGE_ARCHIVE_LIMIT' => 'La limite de l’archive est trop grande.',
|
||||
'TOO_SMALL_FLOOD_TIME' => 'Le temps de flood est trop petit.',
|
||||
'TOO_LARGE_FLOOD_TIME' => 'Le temps de flood est trop grand.',
|
||||
'TOO_SMALL_MAX_MESSAGE_LNGTH' => 'La longueur maximale des messages est trop petite.',
|
||||
'TOO_LARGE_MAX_MESSAGE_LNGTH' => 'La longueur maximale des messages est trop grande.',
|
||||
'TOO_SMALL_MAX_WORDS_LNGTH' => 'La longueur maximale des mots est trop petite.',
|
||||
'TOO_LARGE_MAX_WORDS_LNGTH' => 'La longueur maximale des mots est trop grande.',
|
||||
'TOO_SMALL_WHOIS_REFRESH' => 'L’actualisation du Qui est-ce? es trop petite.',
|
||||
'TOO_LARGE_WHOIS_REFRESH' => 'L’actualisation du Qui est-ce? est trop grande.',
|
||||
'TOO_SMALL_INDEX_HEIGHT' => 'La hauteur du mini-chat sur l’index est trop petite.',
|
||||
'TOO_LARGE_INDEX_HEIGHT' => 'La hauteur du mini-chat sur l’index est trop grande.',
|
||||
'TOO_SMALL_CUSTOM_HEIGHT' => 'La hauteur du mini-chat dans la page personnalisé est trop petite.',
|
||||
'TOO_LARGE_CUSTOM_HEIGHT' => 'La hauteur du mini-chat dans la page personnalisé est trop grande.',
|
||||
'TOO_SHORT_STATIC_MESSAGE' => 'Le message statique est trop court.',
|
||||
'TOO_LONG_STATIC_MESSAGE' => 'Le message statique est trop long.',
|
||||
'TOO_SMALL_TIMEOUT' => 'Le délai d’attente de l’utilisateur est trop petit.',
|
||||
'TOO_LARGE_TIMEOUT' => 'Le délai d’attente de l’utilisateur est trop grand.',
|
||||
'UCP_CAT_MCHAT' => 'mChat',
|
||||
'UCP_MCHAT_CONFIG' => 'mChat', //Preferences
|
||||
'UCP_MCHAT_CONFIG' => 'mChat',
|
||||
//Preferences
|
||||
'LOG_MCHAT_TABLE_PRUNED' => 'La table du mini-chat a été délestée',
|
||||
'ACP_USER_MCHAT' => 'Paramètres du mini-chat',
|
||||
'LOG_DELETED_MCHAT' => '<strong>Les messages de mchat ont été supprimés</strong><br />» %1$s',
|
||||
|
||||
@@ -101,8 +101,17 @@ $lang = array_merge($lang, array(
|
||||
'MCHAT_OVERRIDE_SMILIE_LIMIT_EXPLAIN' => 'Mettez sur Oui pour outre-passer les paramètres de limitation de smileys des forums pour les messages du mini-chat.',
|
||||
'MCHAT_OVERRIDE_MIN_POST_CHARS' => 'Outre-passer la limite du nombre de caractères minimal',
|
||||
'MCHAT_OVERRIDE_MIN_POST_CHARS_EXPLAIN' => 'Mettez sur Oui pour outre-passer la limite du nombre de caractères minimal des forums, pour les messsages du mini-chat.',
|
||||
'MCHAT_NEW_POSTS' => 'Afficher les nouveaux messages',
|
||||
'MCHAT_NEW_POSTS_EXPLAIN' => 'Mettez sur Oui pour permettre les nouveaux sujets d’être affichés dans le mini-chat.<br/><strong>Vous devez avoir installé l’add-on de notification des nouveaux messages</strong> (qui se trouve dans le répertoire « contrib » de l’archive du MOD).',
|
||||
'MCHAT_NEW_POSTS' => 'Enable Posts Display',
|
||||
'MCHAT_NEW_POSTS_EXPLAIN' => 'Set to yes and you can set below the options what message to display in the chat message area.',
|
||||
'MCHAT_NEW_POSTS_TOPIC' => 'Display New Topic Posts',
|
||||
'MCHAT_NEW_POSTS_TOPIC_EXPLAIN' => 'Set to yes to allow new topic posts from the forum to be posted into the chat message area.',
|
||||
'MCHAT_NEW_POSTS_REPLY' => 'Display New Replied Posts',
|
||||
'MCHAT_NEW_POSTS_REPLY_EXPLAIN' => 'Set to yes to allow replied posts from the forum to be posted into the chat message area.',
|
||||
'MCHAT_NEW_POSTS_EDIT' => 'Display Edited Posts',
|
||||
'MCHAT_NEW_POSTS_EDIT_EXPLAIN' => 'Set to yes to allow edited posts from the forum to be posted into the chat message area.',
|
||||
'MCHAT_NEW_POSTS_QUOTE' => 'Display Quoted Posts',
|
||||
'MCHAT_NEW_POSTS_QUOTE_EXPLAIN' => 'Set to yes to allow quoted posts from the forum to be posted into the chat message area.',
|
||||
|
||||
'MCHAT_MAIN' => 'Configuration principale',
|
||||
'MCHAT_STATS' => 'Qui discute ?',
|
||||
'MCHAT_STATS_INDEX' => 'Statistiques sur l’index',
|
||||
|
||||
@@ -63,7 +63,6 @@ $lang = array_merge($lang, array(
|
||||
'MCHAT_HOUR' => 'ora ',
|
||||
'MCHAT_HOURS' => 'ore',
|
||||
'MCHAT_IP' => 'IP whois per',
|
||||
|
||||
'MCHAT_MINUTE' => 'minuto ',
|
||||
'MCHAT_MINUTES' => 'minuti ',
|
||||
'MCHAT_MESS_LONG' => 'Il tuo messaggio è troppo lungo.\n Perfavore limita a %s caratteri',
|
||||
@@ -91,23 +90,20 @@ $lang = array_merge($lang, array(
|
||||
'MCHAT_SECONDS' => 'secondi ',
|
||||
'MCHAT_SESSION_ENDS' => 'Chat sessione termina in',
|
||||
'MCHAT_SMILES' => 'Smile',
|
||||
|
||||
'MCHAT_TOTALMESSAGES' => 'Totale messaggi: <strong>%s</strong>',
|
||||
'MCHAT_USESOUND' => 'Usa suono ?',
|
||||
|
||||
'MCHAT_ONLINE_USERS_TOTAL' => 'In totale ci sono <strong>%d</strong> utenti in chat ',
|
||||
'MCHAT_ONLINE_USER_TOTAL' => 'In totale un <strong>%d</strong> utente in chat ',
|
||||
'MCHAT_NO_CHATTERS' => 'Nessuno sta chattando',
|
||||
'MCHAT_ONLINE_EXPLAIN' => 'basato sugli utenti attivi negli ultimi %s',
|
||||
|
||||
'WHO_IS_CHATTING' => 'Chi è in chat',
|
||||
'WHO_IS_REFRESH_EXPLAIN' => 'Refresh ogni <strong>%d</strong> secondi',
|
||||
'MCHAT_NEW_TOPIC' => '<strong>Nuovo Topic</strong>',
|
||||
'MCHAT_NEW_REPLY' => '<strong>Nuova risposta</strong>',
|
||||
|
||||
'MCHAT_NEW_TOPIC' => 'Made A New Topic',
|
||||
'MCHAT_NEW_REPLY' => 'Made A New Reply',
|
||||
'MCHAT_NEW_QUOTE' => 'Replied with a Quote',
|
||||
'MCHAT_NEW_EDIT' => 'Made A Edit',
|
||||
// UCP
|
||||
'UCP_PROFILE_MCHAT' => 'mChat Preferenze',
|
||||
|
||||
'DISPLAY_MCHAT' => 'Visualizza mChat in Index',
|
||||
'SOUND_MCHAT' => 'Abilita suono mChat',
|
||||
'DISPLAY_STATS_INDEX' => 'Visualizzare le statistiche di chi sta chattando a pagina index',
|
||||
@@ -117,101 +113,9 @@ $lang = array_merge($lang, array(
|
||||
'CHAT_AREA_EXPLAIN' => 'Scegli il tipo di superficie da utilizzare per inserire la chat:<br />Area di testo o<br />area input',
|
||||
'INPUT_AREA' => 'Input area',
|
||||
'TEXT_AREA' => 'Testo area',
|
||||
// ACP
|
||||
'ACP_MCHAT_RULES_EXPLAIN' => 'Inserire le regole del forum qui. Ogni regola su una nuova linea.<br />Limite a 255 caratteri.<br /><strong>Questo messaggio può essere tradotto.</strong> (necessario modificare il file mchat_lang.php archiviare e leggere le istruzioni).',
|
||||
'LOG_MCHAT_CONFIG_UPDATE' => '<strong>Aggiornamento configurazione mChat </strong>',
|
||||
'MCHAT_CONFIG_SAVED' => 'Mini Chat configurazioni salvate',
|
||||
'MCHAT_TITLE' => 'Mini-Chat',
|
||||
'MCHAT_VERSION' => 'Versione:',
|
||||
'MCHAT_ENABLE' => 'Abilita Estensione mChat',
|
||||
'MCHAT_ENABLE_EXPLAIN' => 'Abilita o disabilita Mchat globalmente.',
|
||||
'MCHAT_AVATARS' => 'Visualizza avatars',
|
||||
'MCHAT_AVATARS_EXPLAIN' => 'Se impostato su Sì, verranno visualizzati gli avatar degli utenti ridimensionate',
|
||||
'MCHAT_ON_INDEX' => 'mChat in Indice',
|
||||
'MCHAT_ON_INDEX_EXPLAIN' => 'Consentire la visualizzazione di mChat nella pagina indice.',
|
||||
'MCHAT_INDEX_HEIGHT' => 'Indice Altezza Pagina',
|
||||
'MCHAT_INDEX_HEIGHT_EXPLAIN' => 'Altezza della casella della chat in pixel nella pagina indice del forum.<br /><em>You are limited from 50 to 1000</em>.',
|
||||
'MCHAT_LOCATION' => 'Posizione nel Forum',
|
||||
'MCHAT_LOCATION_EXPLAIN' => 'Scegliere la posizione della mChat nella pagina indice.',
|
||||
'MCHAT_TOP_OF_FORUM' => 'In alto al Forum',
|
||||
'MCHAT_BOTTOM_OF_FORUM' => 'In basso al Forum',
|
||||
'MCHAT_REFRESH' => 'Refresh',
|
||||
'MCHAT_REFRESH_EXPLAIN' => 'Numero di secondi prima di chat si aggiorna automaticamente.<br /><em>Limite da 5 a 60 secondi</em>.',
|
||||
'MCHAT_PRUNE' => 'Abilita Cancellazione',
|
||||
'MCHAT_PRUNE_EXPLAIN' => 'Impostare su SI per abilitare la funzione cancellazione automatica.<br /><em>Si verifica solo se un utente visualizza le pagine personalizzate o di archivio</em>.',
|
||||
'MCHAT_PRUNE_NUM' => 'Cancellazione numero',
|
||||
'MCHAT_PRUNE_NUM_EXPLAIN' => 'Il numero di messaggi da mantenere in chat.',
|
||||
'MCHAT_MESSAGE_LIMIT' => 'Messaggi limite',
|
||||
'MCHAT_MESSAGE_LIMIT_EXPLAIN' => 'Il numero massimo di messaggi da visualizzare nella chat.<br /><em>Recommandati da 10 a 30</em>.',
|
||||
'MCHAT_MESSAGE_NUM' => 'Limite messaggi di pagina in Indice',
|
||||
'MCHAT_MESSAGE_NUM_EXPLAIN' => 'Il numero massimo di messaggi da visualizzare nella chat sulla pagina indice.<br /><em>Recommandati da 10 a 50</em>.',
|
||||
'MCHAT_ARCHIVE_LIMIT' => 'Limite Archivio',
|
||||
'MCHAT_ARCHIVE_LIMIT_EXPLAIN' => 'Il numero massimo di messaggi da visualizzare per pagina nelle pagine archivio.<br /> <em>Raccomandati da 25 a 50</em>.',
|
||||
'MCHAT_FLOOD_TIME' => 'Tempo',
|
||||
'MCHAT_FLOOD_TIME_EXPLAIN' => 'Il numero di secondi che un utente deve attendere prima di inviare un altro messaggio in chat.<br /><em>Raccomandati da 5 a 30, imposta 0 per disabilitare</em>.',
|
||||
'MCHAT_MAX_MESSAGE_LENGTH' => 'Lunghezza massima messaggi',
|
||||
'MCHAT_MAX_MESSAGE_LENGTH_EXPLAIN' => 'Il numero massimo di caratteri consentiti per messaggio inviato.<br /><em>Raccomandato da 100 a 500, imposta 0 per disabilitare</em>.',
|
||||
'MCHAT_CUSTOM_PAGE' => 'Pagina personalizzata',
|
||||
'MCHAT_CUSTOM_PAGE_EXPLAIN' => 'Consentire utilizzo della pagina personalizzata',
|
||||
'MCHAT_CUSTOM_HEIGHT' => 'Pagina personalizzata altezza',
|
||||
'MCHAT_CUSTOM_HEIGHT_EXPLAIN' => 'Altezza della casella di chat in pixel della pagina mChat separata.<br /><em>Limite da 50 a 1000</em>.',
|
||||
'MCHAT_DATE_FORMAT' => 'Formato Data',
|
||||
'MCHAT_DATE_FORMAT_EXPLAIN' => 'La sintassi usata è identica al PHP <a href="http://www.php.net/date">date()</a>',
|
||||
'MCHAT_CUSTOM_DATEFORMAT' => 'Uso…',
|
||||
'MCHAT_WHOIS' => 'Whois',
|
||||
'MCHAT_WHOIS_EXPLAIN' => 'Lasciare visualizzazione utenti che sono in chat',
|
||||
'MCHAT_WHOIS_REFRESH' => 'Whois refresh',
|
||||
'MCHAT_WHOIS_REFRESH_EXPLAIN' => 'Numero di secondi prima del refresh del whois.<br /><em>Limite da 30 a 300 secondi</em>.',
|
||||
'MCHAT_BBCODES_DISALLOWED' => 'Disabilita bbcodes',
|
||||
'MCHAT_BBCODES_DISALLOWED_EXPLAIN' => 'Qui è possibile inserire i BBCodes da <strong>non</strong> utilizzare.<br />Separare i bbcodes da una barra verticale, ad esempio: <br />b|i|u|code|list|list=|flash|quote e/o %scustom bbcode tag name%s',
|
||||
'MCHAT_STATIC_MESSAGE' => 'Messaggi Statici',
|
||||
'MCHAT_STATIC_MESSAGE_EXPLAIN' => 'Qui è possibile definire un messaggio statico da visualizzare agli utenti della chat. HTML permesso.<br />Set per disattivare la visualizzazione. Limite a 255 caratteri.<br /><strong>Questo messaggio può essere tradotto.</strong> (modificando il file mchat_lang.php e seguendo le istruzioni).',
|
||||
'MCHAT_USER_TIMEOUT' => 'Timeout utente',
|
||||
'MCHAT_USER_TIMEOUT_EXPLAIN' => 'Impostare la quantità di tempo, in secondi, fino una sessione utenti nella chat termina. Impostare a 0 per nessun timeout.<br /><em>Limite di %sforum config settato a sessions%s che è attualmente impostato a %s secondi</em>',
|
||||
'MCHAT_OVERRIDE_SMILIE_LIMIT' => 'Limite smilie',
|
||||
'MCHAT_OVERRIDE_SMILIE_LIMIT_EXPLAIN' => 'Impostare su SI per ignorare i forum con smilie impostazione messaggi di limete in chat',
|
||||
'MCHAT_OVERRIDE_MIN_POST_CHARS' => 'Ignora limite minimo caratteri',
|
||||
'MCHAT_OVERRIDE_MIN_POST_CHARS_EXPLAIN' => 'Impostare su SI per ignorare i forum con caratteri minimi con impostazione per i messaggi della chat',
|
||||
'MCHAT_NEW_POSTS' => 'Visualizza nuovi post',
|
||||
'MCHAT_NEW_POSTS_EXPLAIN' => 'Impostare su SI per consentire ai nuovi messaggi del forum di essere pubblicati in area messaggio della chat<br /><strong>È necessario che questo add-on per postare sia installato</strong> (nella directory contrib estensione di download).',
|
||||
'MCHAT_MAIN' => 'Configurazione principale',
|
||||
'MCHAT_STATS' => 'Whois Chat',
|
||||
'MCHAT_STATS_INDEX' => 'Statistiche su Indice',
|
||||
'MCHAT_STATS_INDEX_EXPLAIN' => 'Mostra chi sta chattando nella sezione statistiche del forum',
|
||||
'MCHAT_MESSAGES' => 'Impostazioni messaggi',
|
||||
'MCHAT_PAUSE_ON_INPUT' => 'Pausa ingresso',
|
||||
'MCHAT_PAUSE_ON_INPUT_EXPLAIN' => 'Se impostato Sì, la chat non verrà aggiornata automaticamente se un utente posta in un messaggio in area di immissione',
|
||||
|
||||
// error reporting
|
||||
'MCHAT_NEEDS_UPDATING' => 'Questa estensione necessita di un aggiornamento. Si prega di visitare il sito fondatore per eseguire il programma di installazione.',
|
||||
'MCHAT_WRONG_VERSION' => 'È installata una versione errata di questa estensione. Perfavore vai al sito %sinstaller%s per la nuova versione.',
|
||||
'WARNING' => 'Attenzione',
|
||||
'TOO_LONG_DATE' => 'Il formato della data immessa è troppo lunga.',
|
||||
'TOO_SHORT_DATE' => 'Il formato della data immessa è troppo corta.',
|
||||
'TOO_SMALL_REFRESH' => 'Il valore di aggiornamento è troppo piccolo.',
|
||||
'TOO_LARGE_REFRESH' => 'Il valore di aggiornamento è troppo grande.',
|
||||
'TOO_SMALL_MESSAGE_LIMIT' => 'Il valore limite messaggio è troppo corto.',
|
||||
'TOO_LARGE_MESSAGE_LIMIT' => 'Il valore limite messaggio è troppo grande.',
|
||||
'TOO_SMALL_ARCHIVE_LIMIT' => 'Il valore limite archivio è troppo piccolo.',
|
||||
'TOO_LARGE_ARCHIVE_LIMIT' => 'Il valore limite archivio è troppo grande.',
|
||||
'TOO_SMALL_FLOOD_TIME' => 'Il valore di limite di tempo è troppo breve.',
|
||||
'TOO_LARGE_FLOOD_TIME' => 'Il valore di limite di tempo è troppo alto.',
|
||||
'TOO_SMALL_MAX_MESSAGE_LNGTH' => 'Il valore massimo della lunghezza del messaggio è troppo breve.',
|
||||
'TOO_LARGE_MAX_MESSAGE_LNGTH' => 'Il valore massimo della lunghezza del messaggio è troppo alto.',
|
||||
'TOO_SMALL_MAX_WORDS_LNGTH' => 'Il valore della lunghezza massima delle parole è troppo piccolo.',
|
||||
'TOO_LARGE_MAX_WORDS_LNGTH' => 'Il valore della lunghezza massima delle parole è troppo alto.',
|
||||
'TOO_SMALL_WHOIS_REFRESH' => 'Il valore di aggiornamento whois è troppo piccolo.',
|
||||
'TOO_LARGE_WHOIS_REFRESH' => 'Il valore di aggiornamento whois è troppo alto.',
|
||||
'TOO_SMALL_INDEX_HEIGHT' => 'Il valore di altezza indice è troppo piccolo.',
|
||||
'TOO_LARGE_INDEX_HEIGHT' => 'Il valore di altezza indice è troppo alto.',
|
||||
'TOO_SMALL_CUSTOM_HEIGHT' => 'Il valore di altezza personalizzato è troppo piccolo.',
|
||||
'TOO_LARGE_CUSTOM_HEIGHT' => 'Il valore di altezza personalizzato è troppo alto.',
|
||||
'TOO_SHORT_STATIC_MESSAGE' => 'Il valore di messaggio statico è troppo corto.',
|
||||
'TOO_LONG_STATIC_MESSAGE' => 'Il valore di messaggio statico è troppo lungo.',
|
||||
'TOO_SMALL_TIMEOUT' => 'Il valore di timeout utente è troppo piccolo.',
|
||||
'TOO_LARGE_TIMEOUT' => 'Il valore di timeout utente è troppo alto.',
|
||||
'UCP_CAT_MCHAT' => 'mChat',
|
||||
'UCP_MCHAT_CONFIG' => 'mChat', //Preferences
|
||||
'UCP_MCHAT_CONFIG' => 'mChat',
|
||||
//Preferences
|
||||
'LOG_MCHAT_TABLE_PRUNED' => 'mChat tabelle cancellate',
|
||||
'ACP_USER_MCHAT' => 'mChat Opzioni',
|
||||
'LOG_DELETED_MCHAT' => '<strong>Cancella messaggi mChat</strong><br />» %1$s',
|
||||
|
||||
@@ -101,8 +101,16 @@ $lang = array_merge($lang, array(
|
||||
'MCHAT_OVERRIDE_SMILIE_LIMIT_EXPLAIN' => 'Impostare su Si per ignorare le smile impostazione messaggi di limite in chat',
|
||||
'MCHAT_OVERRIDE_MIN_POST_CHARS' => 'Ignora limite minimo caratteri',
|
||||
'MCHAT_OVERRIDE_MIN_POST_CHARS_EXPLAIN' => 'Impostare su SI per ignorare i caratteri minimi impostazione per i messaggi di chat',
|
||||
'MCHAT_NEW_POSTS' => 'Visualizza nuovi post',
|
||||
'MCHAT_NEW_POSTS_EXPLAIN' => 'Impostare su SI per consentire ai nuovi messaggi del forum di esser pubblicati in area messaggio chat<br /><strong>È necessario che questo add-on per le nuove notifiche sia installato</strong> (nella directory contrib estensione di download).',
|
||||
'MCHAT_NEW_POSTS' => 'Enable Posts Display',
|
||||
'MCHAT_NEW_POSTS_EXPLAIN' => 'Set to yes and you can set below the options what message to display in the chat message area.',
|
||||
'MCHAT_NEW_POSTS_TOPIC' => 'Display New Topic Posts',
|
||||
'MCHAT_NEW_POSTS_TOPIC_EXPLAIN' => 'Set to yes to allow new topic posts from the forum to be posted into the chat message area.',
|
||||
'MCHAT_NEW_POSTS_REPLY' => 'Display New Replied Posts',
|
||||
'MCHAT_NEW_POSTS_REPLY_EXPLAIN' => 'Set to yes to allow replied posts from the forum to be posted into the chat message area.',
|
||||
'MCHAT_NEW_POSTS_EDIT' => 'Display Edited Posts',
|
||||
'MCHAT_NEW_POSTS_EDIT_EXPLAIN' => 'Set to yes to allow edited posts from the forum to be posted into the chat message area.',
|
||||
'MCHAT_NEW_POSTS_QUOTE' => 'Display Quoted Posts',
|
||||
'MCHAT_NEW_POSTS_QUOTE_EXPLAIN' => 'Set to yes to allow quoted posts from the forum to be posted into the chat message area.',
|
||||
'MCHAT_MAIN' => 'Configurazione principale',
|
||||
'MCHAT_STATS' => 'Chat Whois',
|
||||
'MCHAT_STATS_INDEX' => 'Statistiche Index',
|
||||
|
||||
@@ -63,7 +63,6 @@ $lang = array_merge($lang, array(
|
||||
'MCHAT_HOUR' => 'uur ',
|
||||
'MCHAT_HOURS' => 'uren',
|
||||
'MCHAT_IP' => 'IP whois voor',
|
||||
|
||||
'MCHAT_MINUTE' => 'minuut ',
|
||||
'MCHAT_MINUTES' => 'minuten ',
|
||||
'MCHAT_MESS_LONG' => 'Jou bericht is te lang.Beperk dit a.u.b. tot %s karakters',
|
||||
@@ -91,23 +90,20 @@ $lang = array_merge($lang, array(
|
||||
'MCHAT_SECONDS' => 'seconden ',
|
||||
'MCHAT_SESSION_ENDS' => 'Chat sessie eindigdt in',
|
||||
'MCHAT_SMILES' => 'Smilies',
|
||||
|
||||
'MCHAT_TOTALMESSAGES' => 'Totaal aantal berichten: <strong>%s</strong>',
|
||||
'MCHAT_USESOUND' => 'Gebruik geluid?',
|
||||
|
||||
'MCHAT_ONLINE_USERS_TOTAL' => 'In totaal zijn er <strong>%d</strong> gebruikers aan het chatten ',
|
||||
'MCHAT_ONLINE_USER_TOTAL' => 'In total is er <strong>%d</strong> gebruiker aan het chatten ',
|
||||
'MCHAT_NO_CHATTERS' => 'Niemand is aan het chatten',
|
||||
'MCHAT_ONLINE_EXPLAIN' => 'gebaseerd op actieve gebruikers over de afgelopen %s',
|
||||
|
||||
'WHO_IS_CHATTING' => 'Wie is aan het chatten',
|
||||
'WHO_IS_REFRESH_EXPLAIN' => 'ververst iedere <strong>%d</strong> seconden',
|
||||
'MCHAT_NEW_TOPIC' => '<strong>Nieuw Topic</strong>',
|
||||
'MCHAT_NEW_REPLY' => '<strong>Nieuw antwoord</strong>',
|
||||
|
||||
'MCHAT_NEW_TOPIC' => 'Made A New Topic',
|
||||
'MCHAT_NEW_REPLY' => 'Made A New Reply',
|
||||
'MCHAT_NEW_QUOTE' => 'Replied with a Quote',
|
||||
'MCHAT_NEW_EDIT' => 'Made A Edit',
|
||||
// UCP
|
||||
'UCP_PROFILE_MCHAT' => 'mChat voorkeuren',
|
||||
|
||||
'DISPLAY_MCHAT' => 'Toon mChat op de index pagina',
|
||||
'SOUND_MCHAT' => 'Inschakelen geluid mChat',
|
||||
'DISPLAY_STATS_INDEX' => 'Toon de wie is er aan het chatten op de index pagina',
|
||||
@@ -117,101 +113,9 @@ $lang = array_merge($lang, array(
|
||||
'CHAT_AREA_EXPLAIN' => 'Kies welke type te gebruiken om een chat in te voeren:<br />een tekst gebied of<br />een invoerveld',
|
||||
'INPUT_AREA' => 'Invoerveld',
|
||||
'TEXT_AREA' => 'Tekst gebied',
|
||||
// ACP
|
||||
'ACP_MCHAT_RULES_EXPLAIN' => 'Verander hier de regels van het forum. Elke regel op een nieuwe lijn.<br />Je kunt maximaal 255 karakters gebruiken.<br /><strong>Deze boodschap kan worden vertaald..</strong> (Je moet de mchat_lang.php file aanpassen en lees de instructies).',
|
||||
'LOG_MCHAT_CONFIG_UPDATE' => '<strong>Update mChat configuratie </strong>',
|
||||
'MCHAT_CONFIG_SAVED' => 'Mini Chat configuratie is bijgewerkt',
|
||||
'MCHAT_TITLE' => 'Mini-Chat',
|
||||
'MCHAT_VERSION' => 'Versie:',
|
||||
'MCHAT_ENABLE' => 'Inschakelen mChat Extensie',
|
||||
'MCHAT_ENABLE_EXPLAIN' => 'In of Uitschakelen van deze extensie.',
|
||||
'MCHAT_AVATARS' => 'Toon avatars',
|
||||
'MCHAT_AVATARS_EXPLAIN' => 'Als je ja hebt aangevinkt, verkleinde gebruikers avatars zullen worden getoond',
|
||||
'MCHAT_ON_INDEX' => 'mChat Op de Index pagina',
|
||||
'MCHAT_ON_INDEX_EXPLAIN' => 'Toestaan om de mChat te tonen op de Index pagina.',
|
||||
'MCHAT_INDEX_HEIGHT' => 'Index pagina hoogte',
|
||||
'MCHAT_INDEX_HEIGHT_EXPLAIN' => 'De hoogte van de mChat box op de Index pagina uitgedrukt in pixels, kun je hier aanpassen.<br /><em>Je bent gelimiteerd tussen de 50 en 1000</em>.',
|
||||
'MCHAT_LOCATION' => 'Locatie op het Forum',
|
||||
'MCHAT_LOCATION_EXPLAIN' => 'Kies de locatie van de mChat op de Index pagina.',
|
||||
'MCHAT_TOP_OF_FORUM' => 'Bovenaan op het Forum',
|
||||
'MCHAT_BOTTOM_OF_FORUM' => 'Onderaan op het Forum',
|
||||
'MCHAT_REFRESH' => 'Vernieuwen',
|
||||
'MCHAT_REFRESH_EXPLAIN' => 'Aantal seconden dat de mChat automatische ververst wordt.<br /><em>Je bent gelimiteerd tussen 5 en 60 seconden</em>.',
|
||||
'MCHAT_PRUNE' => 'Inschakelen opschonen van berichten',
|
||||
'MCHAT_PRUNE_EXPLAIN' => 'Vink Ja aan als je het opschonen van berichten wilt inschakelen.<br /><em>Werkt alleen als een gebruiker de gemaakte of archief pagina bekijkt</em>.',
|
||||
'MCHAT_PRUNE_NUM' => 'Het aantal berichten welke bewaard moeten worden in de mChat',
|
||||
'MCHAT_PRUNE_NUM_EXPLAIN' => 'Geef hier het aantal in, van de berichten welke je bewaard wilt houden in de mChat.',
|
||||
'MCHAT_MESSAGE_LIMIT' => 'Berichten limiet',
|
||||
'MCHAT_MESSAGE_LIMIT_EXPLAIN' => 'Maximaal aantal berichten, welke getoond worden in de mChat.<br /><em>Aanbevolen is tussen de 10 en 30 berichten</em>.',
|
||||
'MCHAT_MESSAGE_NUM' => 'Index pagina berichten limiet',
|
||||
'MCHAT_MESSAGE_NUM_EXPLAIN' => 'Het maximale aantal berichten, welke getoond worden in de mChat op de Index pagina.<br /><em>Aanbevolen is tussen de 10 en 50 berichten</em>.',
|
||||
'MCHAT_ARCHIVE_LIMIT' => 'Archief limiet',
|
||||
'MCHAT_ARCHIVE_LIMIT_EXPLAIN' => 'Het maximale aantal berichten, welke getoond worden in de mChat op de Archief pagina.<br /><em>Aanbevolen is tussen de 25 en 50 berichten</em>.',
|
||||
'MCHAT_FLOOD_TIME' => 'Wachttijd plaatsen volgende bericht, na reeds geplaatst bericht',
|
||||
'MCHAT_FLOOD_TIME_EXPLAIN' => 'Het aantal seconden dat een gebruiker moet wachten om een volgend bericht te plaatsen in de mChat.<br /><em>Aanbevolen is tussen de 5 en 30 seconden, 0 is uitschakelen van deze functie</em>.',
|
||||
'MCHAT_MAX_MESSAGE_LENGTH' => 'Maximale berichten lengte',
|
||||
'MCHAT_MAX_MESSAGE_LENGTH_EXPLAIN' => 'Maximaal toegestane aantal karakters per gepost bericht.<br /><em>aanbevolen is tussen de 100 en 500 karakters, 0 is uitschakelen van deze functie</em>.',
|
||||
'MCHAT_CUSTOM_PAGE' => 'Aangepaste pagina',
|
||||
'MCHAT_CUSTOM_PAGE_EXPLAIN' => 'Toestaan om gebruik te maken van de mChat op de aangepaste pagina',
|
||||
'MCHAT_CUSTOM_HEIGHT' => 'Aangepaste pagina hoogte',
|
||||
'MCHAT_CUSTOM_HEIGHT_EXPLAIN' => 'De hoogte van de mChat box in pixels op de aangepaste mChat pagina.<br /><em>Je bent gelimiteerd tussen de 50 en 1000 pixels</em>.',
|
||||
'MCHAT_DATE_FORMAT' => 'Datum weergave',
|
||||
'MCHAT_DATE_FORMAT_EXPLAIN' => 'De gebruikte syntax is identiek aan de PHP <a href="http://www.php.net/date">date()</a> functie.',
|
||||
'MCHAT_CUSTOM_DATEFORMAT' => 'Aangepast…',
|
||||
'MCHAT_WHOIS' => 'Whois',
|
||||
'MCHAT_WHOIS_EXPLAIN' => 'Toestaan om gebruikers te laten zien die gebruik maken van de mChat',
|
||||
'MCHAT_WHOIS_REFRESH' => 'Whois vernieuwen',
|
||||
'MCHAT_WHOIS_REFRESH_EXPLAIN' => 'Aantal seconden voordat whois statistieken worden vernieuwd.<br /><em>Je bent gelimiteerd tussen de 30 en 300 seconden</em>.',
|
||||
'MCHAT_BBCODES_DISALLOWED' => 'Niet toegestane bbcodes',
|
||||
'MCHAT_BBCODES_DISALLOWED_EXPLAIN' => 'Hier kun je de bbcodes plaatsen, die <strong>niet</strong>zijn toegstaan<strong>not</strong> om te gebruiken in een bericht.<br />Aparte BBCodes met een verticale balk , bijvoorbeeld: <br />b|i|u|code|list|list=|flash|quote and/or a %scustom bbcode tag name%s',
|
||||
'MCHAT_STATIC_MESSAGE' => 'Statisch bericht',
|
||||
'MCHAT_STATIC_MESSAGE_EXPLAIN' => 'Hier kan je een statisch bericht definieren, welke getoond wordt aan de gebruikers van de mChat.<br />Stel 0 in om de vertoning uit te schakelen. Je bent gelimiteerd tot 255 karakters.<br /><strong>Deze boodschap kan worden vertaald..</strong> (Je moet de mchat_lang.php file aanpassen en lees de instructies).',
|
||||
'MCHAT_USER_TIMEOUT' => 'Gebruiker timeout',
|
||||
'MCHAT_USER_TIMEOUT_EXPLAIN' => 'Stel hier de seconden in, wanneer de sessie van een gebruiker eindigd. Stel 0 om de timeout uit te schakelen.<br /><em>Je bent gelimiteerd tot de %sforum instellingen voor de chat sessie, welke momenteel is ingesteld op %s seconden</em>',
|
||||
'MCHAT_OVERRIDE_SMILIE_LIMIT' => 'Aantal smilie limiet',
|
||||
'MCHAT_OVERRIDE_SMILIE_LIMIT_EXPLAIN' => 'Stel hier het aantal smilie limiet in voor de chat berichten',
|
||||
'MCHAT_OVERRIDE_MIN_POST_CHARS' => 'Minimum karakters limit',
|
||||
'MCHAT_OVERRIDE_MIN_POST_CHARS_EXPLAIN' => 'Stel ja in om het aantal minimum karakters in te stellen voor een chat bericht',
|
||||
'MCHAT_NEW_POSTS' => 'Toon nieuwe berichten',
|
||||
'MCHAT_NEW_POSTS_EXPLAIN' => 'Stel ja in om nieuwe berichten te plaatsen in een chat bericht<br /><strong>U moet de add-on voor de nieuwe post meldingen geïnstalleerd hebben</strong> (within the contrib directory of the extension download).',
|
||||
'MCHAT_MAIN' => 'Hoofd Configuratie',
|
||||
'MCHAT_STATS' => 'Wie is aan het chatten',
|
||||
'MCHAT_STATS_INDEX' => 'Statistieken op de Index pagina',
|
||||
'MCHAT_STATS_INDEX_EXPLAIN' => 'Laat zien wie aan het chatten is in de statistieken sectie op het forum',
|
||||
'MCHAT_MESSAGES' => 'Berichten instellingen',
|
||||
'MCHAT_PAUSE_ON_INPUT' => 'Pauze op eventuele inactiviteit van mChat',
|
||||
'MCHAT_PAUSE_ON_INPUT_EXPLAIN' => 'Stel je ja in, dan wordt mChat niet automatisch vernieuwd, todat een gebruiker een bericht plaatst in mChat',
|
||||
|
||||
// error reporting
|
||||
'MCHAT_NEEDS_UPDATING' => 'De mChat extensie moet worden bijgewerkt. Neem contact op met de forum beheerder om de mChat bij te laten werken.',
|
||||
'MCHAT_WRONG_VERSION' => 'De verkeerde versie van de extensie is geinstalleerd. Gebruik a.u.b. de %sinstaller%s van de nieuwe versie voor eventuele wijzigingen.',
|
||||
'WARNING' => 'Waarschuwing',
|
||||
'TOO_LONG_DATE' => 'De datum weergave die je hebt ingegeven is te lang.',
|
||||
'TOO_SHORT_DATE' => 'De datum weergave die je hebt ingegeven is te kort.',
|
||||
'TOO_SMALL_REFRESH' => 'De waarde voor het vernieuwen van de pagina is te klein.',
|
||||
'TOO_LARGE_REFRESH' => 'De waarde voor het vernieuwen van de pagina is te groot.',
|
||||
'TOO_SMALL_MESSAGE_LIMIT' => 'De waarde van de berichten limiet is te klein.',
|
||||
'TOO_LARGE_MESSAGE_LIMIT' => 'De waarde van de berichten limiet is te groot.',
|
||||
'TOO_SMALL_ARCHIVE_LIMIT' => 'De waarde van het archief limiet is te klein.',
|
||||
'TOO_LARGE_ARCHIVE_LIMIT' => 'De waarde van het archief limiet is te groot.',
|
||||
'TOO_SMALL_FLOOD_TIME' => 'De waarde van de hoeveelheid aan data in een bepaalde tijd is te klein.',
|
||||
'TOO_LARGE_FLOOD_TIME' => 'De waarde van de hoeveelheid aan data in een bepaalde tijd is te groot.',
|
||||
'TOO_SMALL_MAX_MESSAGE_LNGTH' => 'De waarde van de maximale lengte van berichten is te klein.',
|
||||
'TOO_LARGE_MAX_MESSAGE_LNGTH' => 'De waarde van de maximale lengte van berichten is te groot.',
|
||||
'TOO_SMALL_MAX_WORDS_LNGTH' => 'De waarde van de maximale lengte van het aantal woorden is te klein.',
|
||||
'TOO_LARGE_MAX_WORDS_LNGTH' => 'De waarde van de maximale lengte van het aantal woorden is te groot.',
|
||||
'TOO_SMALL_WHOIS_REFRESH' => 'De verversing van de whois waarde is te klein.',
|
||||
'TOO_LARGE_WHOIS_REFRESH' => 'De verversing van de whois waarde is te groot.',
|
||||
'TOO_SMALL_INDEX_HEIGHT' => 'De waarde van de index hoogte is te klein.',
|
||||
'TOO_LARGE_INDEX_HEIGHT' => 'De waarde van de index hoogte is te groot.',
|
||||
'TOO_SMALL_CUSTOM_HEIGHT' => 'De waarde van de gemaakte hoogte is te klein.',
|
||||
'TOO_LARGE_CUSTOM_HEIGHT' => 'De waarde van de gemaakte hoogte is te groot.',
|
||||
'TOO_SHORT_STATIC_MESSAGE' => 'De waarde van de statische berichten is te kort.',
|
||||
'TOO_LONG_STATIC_MESSAGE' => 'De waarde van de statische berichten is te lang.',
|
||||
'TOO_SMALL_TIMEOUT' => 'De waarde van de timeout voor gebruikers is te klein.',
|
||||
'TOO_LARGE_TIMEOUT' => 'De waarde van de timeout voor gebruikers is te groot.',
|
||||
'UCP_CAT_MCHAT' => 'mChat',
|
||||
'UCP_MCHAT_CONFIG' => 'mChat', //Preferences
|
||||
'UCP_CAT_MCHAT' => 'mChat',
|
||||
'UCP_MCHAT_CONFIG' => 'mChat',
|
||||
//Preferences
|
||||
'LOG_MCHAT_TABLE_PRUNED' => 'mChat tabel is ingekort',
|
||||
'ACP_USER_MCHAT' => 'mChat Instellingen',
|
||||
'LOG_DELETED_MCHAT' => '<strong>Verwijder mChat berichten</strong><br />» %1$s',
|
||||
@@ -230,4 +134,4 @@ $lang = array_merge($lang, array(
|
||||
'MCHAT_SEND_PM' => 'Stuur prive bericht',
|
||||
'MCHAT_PM' => '(PM)',
|
||||
'MORE_SMILIES' => 'Meer Smilies',
|
||||
));
|
||||
));
|
||||
@@ -101,8 +101,16 @@ $lang = array_merge($lang, array(
|
||||
'MCHAT_OVERRIDE_SMILIE_LIMIT_EXPLAIN' => 'Stel hier het aantal smilie limiet in voor de chat berichten',
|
||||
'MCHAT_OVERRIDE_MIN_POST_CHARS' => 'Minimum karakters limit',
|
||||
'MCHAT_OVERRIDE_MIN_POST_CHARS_EXPLAIN' => 'Stel ja in om het aantal minimum karakters in te stellen voor een chat bericht',
|
||||
'MCHAT_NEW_POSTS' => 'Toon nieuwe berichten',
|
||||
'MCHAT_NEW_POSTS_EXPLAIN' => 'Stel ja in om nieuwe berichten te plaatsen in een chat bericht<br /><strong>Je moet de add-on voor de nieuwe post meldingen geïnstalleerd hebben</strong> (binnen de directory van de download voor deze extensie).',
|
||||
'MCHAT_NEW_POSTS' => 'Enable Posts Display',
|
||||
'MCHAT_NEW_POSTS_EXPLAIN' => 'Set to yes and you can set below the options what message to display in the chat message area.',
|
||||
'MCHAT_NEW_POSTS_TOPIC' => 'Display New Topic Posts',
|
||||
'MCHAT_NEW_POSTS_TOPIC_EXPLAIN' => 'Set to yes to allow new topic posts from the forum to be posted into the chat message area.',
|
||||
'MCHAT_NEW_POSTS_REPLY' => 'Display New Replied Posts',
|
||||
'MCHAT_NEW_POSTS_REPLY_EXPLAIN' => 'Set to yes to allow replied posts from the forum to be posted into the chat message area.',
|
||||
'MCHAT_NEW_POSTS_EDIT' => 'Display Edited Posts',
|
||||
'MCHAT_NEW_POSTS_EDIT_EXPLAIN' => 'Set to yes to allow edited posts from the forum to be posted into the chat message area.',
|
||||
'MCHAT_NEW_POSTS_QUOTE' => 'Display Quoted Posts',
|
||||
'MCHAT_NEW_POSTS_QUOTE_EXPLAIN' => 'Set to yes to allow quoted posts from the forum to be posted into the chat message area.',
|
||||
'MCHAT_MAIN' => 'Hoofd Configuratie',
|
||||
'MCHAT_STATS' => 'Wie is aan het chatten',
|
||||
'MCHAT_STATS_INDEX' => 'Statistieken op de Index pagina',
|
||||
|
||||
@@ -63,7 +63,6 @@ $lang = array_merge($lang, array(
|
||||
'MCHAT_HOUR' => 'godzina ',
|
||||
'MCHAT_HOURS' => 'godziny',
|
||||
'MCHAT_IP' => 'IP',
|
||||
|
||||
'MCHAT_MINUTE' => 'minut ',
|
||||
'MCHAT_MINUTES' => 'minut ',
|
||||
'MCHAT_MESS_LONG' => 'Twoja wiadomość jest za długa.\Proszę ogranicz ją do %s znaków',
|
||||
@@ -91,23 +90,20 @@ $lang = array_merge($lang, array(
|
||||
'MCHAT_SECONDS' => 'sekundy ',
|
||||
'MCHAT_SESSION_ENDS' => 'Sesja mChat zakończona w',
|
||||
'MCHAT_SMILES' => 'Emotikony',
|
||||
|
||||
'MCHAT_TOTALMESSAGES' => 'Wszystkie wiadomości <strong>%s</strong>',
|
||||
'MCHAT_USESOUND' => 'Włączyć dźwięk ?',
|
||||
|
||||
'MCHAT_ONLINE_USERS_TOTAL' => 'Aktualnie jest tutaj <strong>%d</strong> czatujących użytkowników ',
|
||||
'MCHAT_ONLINE_USER_TOTAL' => 'Aktualnie <strong>%d</strong> osoba korzysta z mChatu ',
|
||||
'MCHAT_NO_CHATTERS' => 'Nikt nie czatuje',
|
||||
'MCHAT_ONLINE_EXPLAIN' => 'Bazuje na użytkownikach aktywnych w ciągu ostatnich %s',
|
||||
|
||||
'WHO_IS_CHATTING' => 'Kto czatuje',
|
||||
'WHO_IS_REFRESH_EXPLAIN' => 'Odświeżaj co <strong>%d</strong> sekund',
|
||||
'MCHAT_NEW_TOPIC' => '<strong>Nowy Temat</strong>',
|
||||
'MCHAT_NEW_REPLY' => '<strong>Nowa Odpowiedź</strong>',
|
||||
|
||||
'MCHAT_NEW_TOPIC' => 'Made A New Topic',
|
||||
'MCHAT_NEW_REPLY' => 'Made A New Reply',
|
||||
'MCHAT_NEW_QUOTE' => 'Replied with a Quote',
|
||||
'MCHAT_NEW_EDIT' => 'Made A Edit',
|
||||
// UCP
|
||||
'UCP_PROFILE_MCHAT' => 'mChat Preferences',
|
||||
|
||||
'DISPLAY_MCHAT' => 'Wyświetlaj mChat na stronie głównej',
|
||||
'SOUND_MCHAT' => 'Włącz dźwięk mChatu',
|
||||
'DISPLAY_STATS_INDEX' => 'Wyświetlaj kto czatuje w statystykach strony głównej',
|
||||
@@ -117,101 +113,9 @@ $lang = array_merge($lang, array(
|
||||
'CHAT_AREA_EXPLAIN' => 'Wybierz jaki typ obszaru wybrać do wprowadzania tekstu:<br />A text area or<br />an input area',
|
||||
'INPUT_AREA' => 'Pasek',
|
||||
'TEXT_AREA' => 'Okno',
|
||||
// ACP
|
||||
'ACP_MCHAT_RULES_EXPLAIN' => 'Tutaj wprowadź regulamin mChat. Każdy podpunkt w oddzielnej lini.<br />Limit znaków wynosi 255.<br />',
|
||||
'LOG_MCHAT_CONFIG_UPDATE' => '<strong>Aktualizuj konfigurację mChat </strong>',
|
||||
'MCHAT_CONFIG_SAVED' => 'Zaktualizowano konfigurację mChat',
|
||||
'MCHAT_TITLE' => 'Mini-Chat',
|
||||
'MCHAT_VERSION' => 'Wersja:',
|
||||
'MCHAT_ENABLE' => 'Włącz rozszerzenie mChat',
|
||||
'MCHAT_ENABLE_EXPLAIN' => 'Włącz lub wyłącz rozszerzenie globalnie.',
|
||||
'MCHAT_AVATARS' => 'Wyświetlaj avatary',
|
||||
'MCHAT_AVATARS_EXPLAIN' => 'Zaznacz TAK aby wyświetlać miniaturki avatarów',
|
||||
'MCHAT_ON_INDEX' => 'mChat na stronie głównej',
|
||||
'MCHAT_ON_INDEX_EXPLAIN' => 'Zezwól na wyświetlanie mChat na stronie głównej.',
|
||||
'MCHAT_INDEX_HEIGHT' => 'Wysokość na stronie głównej',
|
||||
'MCHAT_INDEX_HEIGHT_EXPLAIN' => 'Wysokość okna rozmowy w pikselach na stronie głównej.<br /><em>Limit wynosi od 50 do 1000</em>.',
|
||||
'MCHAT_LOCATION' => 'Lokalizacja na forum',
|
||||
'MCHAT_LOCATION_EXPLAIN' => 'Wybierz lokalizację mChat na stronie głównej.',
|
||||
'MCHAT_TOP_OF_FORUM' => 'Góra',
|
||||
'MCHAT_BOTTOM_OF_FORUM' => 'Dół',
|
||||
'MCHAT_REFRESH' => 'Odśwież',
|
||||
'MCHAT_REFRESH_EXPLAIN' => 'Po ilu sekundach nastąpi automatyczne odświeżanie.<br /><em>Limit wynosi od 5 do 60 sekund</em>.',
|
||||
'MCHAT_PRUNE' => 'Włącz opcję wyczyszczenia wiadomości',
|
||||
'MCHAT_PRUNE_EXPLAIN' => 'Jeśli zaznaczono tak, opcja wyczyszczenia wiadomości będzie dostępna.<br /><em>Tylko wtedy, jeśli użytkownik wyświetli stronę niestandardową lub archiwum</em>.',
|
||||
'MCHAT_PRUNE_NUM' => 'Ilość wyczyszczonych wiadomości',
|
||||
'MCHAT_PRUNE_NUM_EXPLAIN' => 'Wpisz liczbę.',
|
||||
'MCHAT_MESSAGE_LIMIT' => 'Limit wiadomości',
|
||||
'MCHAT_MESSAGE_LIMIT_EXPLAIN' => 'Ilość wiadomości wyświetlana w oknie mChat.<br /><em>Rekomendowane od 10 do 30</em>.',
|
||||
'MCHAT_MESSAGE_NUM' => 'Limit wiadomości na stronie głównej',
|
||||
'MCHAT_MESSAGE_NUM_EXPLAIN' => 'Maksymalna ilość wiadomości wyświetlana w mChat na stronie głównej.<br /><em>Rekomendowane od 10 do 30</em>.',
|
||||
'MCHAT_ARCHIVE_LIMIT' => 'Limit Archiwum',
|
||||
'MCHAT_ARCHIVE_LIMIT_EXPLAIN' => 'Maksymalna ilość wiadomości wyświetlana na jednej stronie archiwum.<br /> <em>Rekomendowane od 25 do 50</em>.',
|
||||
'MCHAT_FLOOD_TIME' => 'Czas blokady antyspamowej',
|
||||
'MCHAT_FLOOD_TIME_EXPLAIN' => 'Ilość sekund jaką musi odczekać użytkownik, aby wysłać następną wiadomość.<br /><em>Rekomendowane od 5 do 30, ustaw 0 aby wyłączyć limit</em>.',
|
||||
'MCHAT_MAX_MESSAGE_LENGTH' => 'Maksymalna długośc wiadomości',
|
||||
'MCHAT_MAX_MESSAGE_LENGTH_EXPLAIN' => 'Maksymalna ilość znaków jaką można użyć w jednej wiadomości.<br /><em>Rekomendowane od 100 do 500, ustaw 0 aby wyłączyć limit</em>.',
|
||||
'MCHAT_CUSTOM_PAGE' => 'Strona niestandardowa',
|
||||
'MCHAT_CUSTOM_PAGE_EXPLAIN' => 'Zewól na używanie strony niestandardowej',
|
||||
'MCHAT_CUSTOM_HEIGHT' => 'Wysokość strony niestandardowej',
|
||||
'MCHAT_CUSTOM_HEIGHT_EXPLAIN' => 'Wysokość okna rozmowy w pikselach na osobnej stronie mChat.<br /><em>Limit wynosi od 50 do 1000</em>.',
|
||||
'MCHAT_DATE_FORMAT' => 'Format Daty',
|
||||
'MCHAT_DATE_FORMAT_EXPLAIN' => 'Użyta składnia jest taka sama jak w <a href="http://www.php.net/date">PHP</a>',
|
||||
'MCHAT_CUSTOM_DATEFORMAT' => 'Niestandardowa…',
|
||||
'MCHAT_WHOIS' => 'Kto aktualnie czatuje',
|
||||
'MCHAT_WHOIS_EXPLAIN' => 'Pozwala na wyświetlanie użytkowników, którzy aktualnie korzystają z mChat',
|
||||
'MCHAT_WHOIS_REFRESH' => 'Odświeżanie czatujących użytkowników',
|
||||
'MCHAT_WHOIS_REFRESH_EXPLAIN' => 'Po ilu sekundach nastąpi automatyczne odświeżanie czatujących użytkowników.<br /><em>Limit wynosi od 30 do 300 sekund</em>.',
|
||||
'MCHAT_BBCODES_DISALLOWED' => 'Niedozwolone bbcodes',
|
||||
'MCHAT_BBCODES_DISALLOWED_EXPLAIN' => 'Tutaj umieść bbcodes których nie będzie można używać w wiadomościach.<br />Oddziel bbcodes pionową kreską, na przykład: <br />b|i|u|code|list|list=|flash|quote i/lub %wybierz z tych%s',
|
||||
'MCHAT_STATIC_MESSAGE' => 'Ogłoszenie',
|
||||
'MCHAT_STATIC_MESSAGE_EXPLAIN' => 'Tutaj możesz umieścić ogłoszenie które wyświetli się osobą korzystającym z mChat. kod HTML jest dozwolony.<br />Zostaw puste aby wyłączyć wyświetlanie. Limit wynosi max 255 znaków.<br /></strong>',
|
||||
'MCHAT_USER_TIMEOUT' => 'Limit czasu dla użytkownika',
|
||||
'MCHAT_USER_TIMEOUT_EXPLAIN' => 'Ustaw czas w sekundach do zakończenia sesji użytkownika. Ustaw 0 aby wyłączyć.<br /><em>Limit znajdziesz %stutaj%s aktualnie jest ustawione na %s sekund</em>',
|
||||
'MCHAT_OVERRIDE_SMILIE_LIMIT' => 'Limit emotikon',
|
||||
'MCHAT_OVERRIDE_SMILIE_LIMIT_EXPLAIN' => 'Zaznacz TAK aby włączyć limit emotikon używanych w wiadmościach mChat',
|
||||
'MCHAT_OVERRIDE_MIN_POST_CHARS' => 'Limit znaków',
|
||||
'MCHAT_OVERRIDE_MIN_POST_CHARS_EXPLAIN' => 'Zaznacz TAK aby włączyć limit znaków używanych w wiadomościach mChat',
|
||||
'MCHAT_NEW_POSTS' => 'Wyświetlaj nowe posty',
|
||||
'MCHAT_NEW_POSTS_EXPLAIN' => 'Zaznacz TAK aby powiadamiać na mChacie o nowych postach na forum<br /><strong>Wymaga zainstalowania dodatkowego rozszerzenia, powiadamiającego o nowych postach</strong>',
|
||||
'MCHAT_MAIN' => 'Główne ustawienia',
|
||||
'MCHAT_STATS' => 'Kto czatuje ?',
|
||||
'MCHAT_STATS_INDEX' => 'Statystyki na stronie głównej',
|
||||
'MCHAT_STATS_INDEX_EXPLAIN' => 'Pokaż kto korzysta z mChat w dziale statystyki na stronie głównej',
|
||||
'MCHAT_MESSAGES' => 'Ustawienia wiadomości',
|
||||
'MCHAT_PAUSE_ON_INPUT' => 'Auto-aktuaizacja podczas pisania wiadomości',
|
||||
'MCHAT_PAUSE_ON_INPUT_EXPLAIN' => 'Zaznacz TAK aby nie auto-aktualizować mChatu gdy użytkownik pisze wiadomość',
|
||||
|
||||
// error reporting
|
||||
'MCHAT_NEEDS_UPDATING' => 'Rozszerzenie mChat musi zostać zaktualizowane. Proszę skontaktuj się z administratorem.',
|
||||
'MCHAT_WRONG_VERSION' => 'Zainstalowano złą wersję rozszerzenia. Proszę uruchom %instalator%s aby zainstalować nową wersję rozszerzenia.',
|
||||
'WARNING' => 'Warning',
|
||||
'TOO_LONG_DATE' => 'Format day który wpisałeś jest za długi.',
|
||||
'TOO_SHORT_DATE' => 'Format day który wpisałeś jest za krótki.',
|
||||
'TOO_SMALL_REFRESH' => 'Ustawiona wartość odświeżania jest za mała.',
|
||||
'TOO_LARGE_REFRESH' => 'Ustawiona wartość odświeżania jest za duża.',
|
||||
'TOO_SMALL_MESSAGE_LIMIT' => 'Ustawiona wartośc limitu wiadomości jest za mała.',
|
||||
'TOO_LARGE_MESSAGE_LIMIT' => 'Ustawiona wartośc limitu wiadomości jest za duża.',
|
||||
'TOO_SMALL_ARCHIVE_LIMIT' => 'Ustawiona wartość limitu archiwum jest za mała.',
|
||||
'TOO_LARGE_ARCHIVE_LIMIT' => 'Ustawiona wartość limitu archiwum jest za duża.',
|
||||
'TOO_SMALL_FLOOD_TIME' => 'Ustawiona wartośc limitu antyspamowego jest za mała.',
|
||||
'TOO_LARGE_FLOOD_TIME' => 'Ustawiona wartośc limitu antyspamowego jest za duża.',
|
||||
'TOO_SMALL_MAX_MESSAGE_LNGTH' => 'Ustawiona wartość długości wiadomości jest za mała.',
|
||||
'TOO_LARGE_MAX_MESSAGE_LNGTH' => 'Ustawiona wartość długości wiadomości jest za duża.',
|
||||
'TOO_SMALL_MAX_WORDS_LNGTH' => 'Ustawiona wartość długości słowa jest za mała.',
|
||||
'TOO_LARGE_MAX_WORDS_LNGTH' => 'Ustawiona wartość długości słowa jest za duża.',
|
||||
'TOO_SMALL_WHOIS_REFRESH' => 'Ustawiona wartość odświeżania osób czatujących jest za mała.',
|
||||
'TOO_LARGE_WHOIS_REFRESH' => 'Ustawiona wartość odświeżania osób czatujących jest za duża.',
|
||||
'TOO_SMALL_INDEX_HEIGHT' => 'Ustawiona wartość wysokości mChat na stronie głównej jest za mała.',
|
||||
'TOO_LARGE_INDEX_HEIGHT' => 'Ustawiona wartość wysokości mChat na stronie głównej jest za duża.',
|
||||
'TOO_SMALL_CUSTOM_HEIGHT' => 'Ustawiona wartość wysokości strony niestandardowej mChat jest za mała.',
|
||||
'TOO_LARGE_CUSTOM_HEIGHT' => 'Ustawiona wartość wysokości strony niestandardowej mChat jest za duża.',
|
||||
'TOO_SHORT_STATIC_MESSAGE' => 'Ustawiona wartość limitu czasu dla użytkownika jest za mała.',
|
||||
'TOO_LONG_STATIC_MESSAGE' => 'Ustawiona wartość limitu czasu dla użytkownika jest za duża.',
|
||||
'TOO_SMALL_TIMEOUT' => 'Ustawiona wartość ogłoszenia jest za mała.',
|
||||
'TOO_LARGE_TIMEOUT' => 'Ustawiona wartość ogłoszenia jest za duża.',
|
||||
'UCP_CAT_MCHAT' => 'mChat',
|
||||
'UCP_MCHAT_CONFIG' => 'mChat', //Preferences
|
||||
'UCP_MCHAT_CONFIG' => 'mChat',
|
||||
//Preferences
|
||||
'LOG_MCHAT_TABLE_PRUNED' => 'Tabela mChat została wyczyszczona',
|
||||
'ACP_USER_MCHAT' => 'mChat Ustawienia',
|
||||
'LOG_DELETED_MCHAT' => '<strong>Usuń wiadomości mChat</strong><br />» %1$s',
|
||||
|
||||
@@ -101,8 +101,16 @@ $lang = array_merge($lang, array(
|
||||
'MCHAT_OVERRIDE_SMILIE_LIMIT_EXPLAIN' => 'Zaznacz TAK aby włączyć limit emotikon używanych w wiadmościach mChat',
|
||||
'MCHAT_OVERRIDE_MIN_POST_CHARS' => 'Limit znaków',
|
||||
'MCHAT_OVERRIDE_MIN_POST_CHARS_EXPLAIN' => 'Zaznacz TAK aby włączyć limit znaków używanych w wiadomościach mChat',
|
||||
'MCHAT_NEW_POSTS' => 'Wyświetlaj nowe posty',
|
||||
'MCHAT_NEW_POSTS_EXPLAIN' => 'Zaznacz TAK aby powiadamiać na mChacie o nowych postach na forum<br /><strong>Wymaga zainstalowania dodatkowego rozszerzenia, powiadamiającego o nowych postach</strong>',
|
||||
'MCHAT_NEW_POSTS' => 'Enable Posts Display',
|
||||
'MCHAT_NEW_POSTS_EXPLAIN' => 'Set to yes and you can set below the options what message to display in the chat message area.',
|
||||
'MCHAT_NEW_POSTS_TOPIC' => 'Display New Topic Posts',
|
||||
'MCHAT_NEW_POSTS_TOPIC_EXPLAIN' => 'Set to yes to allow new topic posts from the forum to be posted into the chat message area.',
|
||||
'MCHAT_NEW_POSTS_REPLY' => 'Display New Replied Posts',
|
||||
'MCHAT_NEW_POSTS_REPLY_EXPLAIN' => 'Set to yes to allow replied posts from the forum to be posted into the chat message area.',
|
||||
'MCHAT_NEW_POSTS_EDIT' => 'Display Edited Posts',
|
||||
'MCHAT_NEW_POSTS_EDIT_EXPLAIN' => 'Set to yes to allow edited posts from the forum to be posted into the chat message area.',
|
||||
'MCHAT_NEW_POSTS_QUOTE' => 'Display Quoted Posts',
|
||||
'MCHAT_NEW_POSTS_QUOTE_EXPLAIN' => 'Set to yes to allow quoted posts from the forum to be posted into the chat message area.',
|
||||
'MCHAT_MAIN' => 'Główne ustawienia',
|
||||
'MCHAT_STATS' => 'Kto czatuje ?',
|
||||
'MCHAT_STATS_INDEX' => 'Statystyki na stronie głównej',
|
||||
|
||||
@@ -19,8 +19,12 @@ class mchat_schema extends \phpbb\db\migration\migration
|
||||
array('config.add', array('mchat_enable', true)),
|
||||
array('config.add', array('mchat_on_index', true)),
|
||||
array('config.add', array('mchat_new_posts', false)),
|
||||
array('config.add', array('mchat_new_posts_topic', false)),
|
||||
array('config.add', array('mchat_new_posts_reply', false)),
|
||||
array('config.add', array('mchat_new_posts_edit', false)),
|
||||
array('config.add', array('mchat_new_posts_quote', false)),
|
||||
array('config.add', array('mchat_stats_index', false)),
|
||||
array('config.add', array('mchat_version','0.0.8')),
|
||||
array('config.add', array('mchat_version','0.0.9')),
|
||||
|
||||
array('permission.add', array('u_mchat_use')),
|
||||
array('permission.add', array('u_mchat_view')),
|
||||
|
||||
@@ -44,7 +44,7 @@ class mchat_schema_3 extends \phpbb\db\migration\migration
|
||||
),
|
||||
array(
|
||||
'config_name' => 'flood_time',
|
||||
'config_value' => '20',
|
||||
'config_value' => '0',
|
||||
),
|
||||
array(
|
||||
'config_name' => 'max_message_lngth',
|
||||
@@ -116,7 +116,7 @@ class mchat_schema_3 extends \phpbb\db\migration\migration
|
||||
),
|
||||
array(
|
||||
'config_name' => 'avatars',
|
||||
'config_value' => '0',
|
||||
'config_value' => '1',
|
||||
),
|
||||
array(
|
||||
'config_name' => 'message_num',
|
||||
|
||||
@@ -1 +1 @@
|
||||
<!-- IF U_MCHAT --><li class="small-icon icon-bump"><a href="{U_MCHAT}" title="{L_MCHAT_TITLE}">{L_MCHAT_TITLE}</a></li><!-- ENDIF -->
|
||||
<!-- IF MCHAT_ENABLE and U_MCHAT --><li class="small-icon icon-bump"><a href="{U_MCHAT}" title="{L_MCHAT_TITLE}">{L_MCHAT_TITLE}</a></li><!-- ENDIF -->
|
||||
|
||||
Reference in New Issue
Block a user