diff --git a/acp/acp_mchat_module.php b/acp/acp_mchat_module.php
index 0cc9706..cd9266c 100644
--- a/acp/acp_mchat_module.php
+++ b/acp/acp_mchat_module.php
@@ -13,7 +13,7 @@ class acp_mchat_module
{
/** @var \dmzx\mchat\core\functions_mchat */
protected $functions_mchat;
-
+
/** @var \phpbb\config\config */
protected $config;
@@ -71,7 +71,6 @@ class acp_mchat_module
$this->php_ext = $phpEx;
$this->table_prefix = $phpbb_container->getParameter('core.table_prefix');
-
// Add the wpm ACP lang file
$user->add_lang_ext('dmzx/mchat', 'info_acp_mchat');
@@ -84,10 +83,10 @@ class acp_mchat_module
// Define the name of the form for use as a form key
$form_name = 'acp_mchat';
add_form_key($form_name);
-
+
// something was submitted
$submit = (isset($_POST['submit'])) ? true : false;
-
+
$mchat_row = array(
'location' => $request->variable('mchat_location', 0),
'refresh' => $request->variable('mchat_refresh', 0),
@@ -112,21 +111,21 @@ class acp_mchat_module
'pause_on_input' => $request->variable('mchat_pause_on_input', 0),
'rules' => utf8_normalize_nfc($request->variable('mchat_rules', '', true)),
'avatars' => $request->variable('mchat_avatars', 0),
- );
-
+ );
+
if ($submit)
{
if (!function_exists('validate_data'))
{
include($phpbb_root_path . 'includes/functions_user.' . $phpEx);
}
-
+
// validate the entries...most of them anyway
$mchat_array = array(
'static_message' => array('string', false, 0, 255),
'index_height' => array('num', false, 50, 1000),
'custom_height' => array('num', false, 50, 1000),
- 'whois_refresh' => array('num', false, 30, 300),
+ 'whois_refresh' => array('num', false, 30, 300),
'refresh' => array('num', false, 5, 60),
'message_limit' => array('num', false, 10, 30),
'message_num' => array('num', false, 10, 50),
@@ -135,8 +134,8 @@ class acp_mchat_module
'max_message_lngth' => array('num', false, 0, 500),
'timeout' => array('num', false, 0, (int) $config['session_length']),
'rules' => array('string', false, 0, 255),
- );
-
+ );
+
$error = validate_data($mchat_row, $mchat_array);
if (!check_form_key('acp_mchat'))
@@ -145,8 +144,7 @@ class acp_mchat_module
}
// Replace "error" strings with their real, localised form
- $error = preg_replace('#^([A-Z_]+)$#e', "(!empty(\$user->lang['\\1'])) ? \$user->lang['\\1'] : '\\1'", $error);
-
+ $error = preg_replace('#^([A-Z_]+)$#e', "(!empty(\$user->lang['\\1'])) ? \$user->lang['\\1'] : '\\1'", $error);
if (!sizeof($error))
{
@@ -157,7 +155,7 @@ class acp_mchat_module
WHERE config_name = '" . $db->sql_escape($config_name) . "'";
$db->sql_query($sql);
}
-
+
//update setting in config table for mod enabled or not
$config->set('mchat_enable', $request->variable('mchat_enable', 0));
// update setting in config table for allowing on index or not
@@ -168,33 +166,32 @@ class acp_mchat_module
$config->set('mchat_stats_index', $request->variable('mchat_stats_index', 0));
// and an entry into the log table
add_log('admin', 'LOG_MCHAT_CONFIG_UPDATE');
-
+
// purge the cache
$this->cache->destroy('_mchat_config');
// rebuild the cache
$this->functions_mchat->mchat_cache();
-
+
trigger_error($user->lang['MCHAT_CONFIG_SAVED'] . adm_back_link($this->u_action));
}
}
-
+
// let's get it on
$sql = 'SELECT * FROM ' . $this->table_prefix . \dmzx\mchat\core\functions_mchat::MCHAT_CONFIG_TABLE;
$result = $db->sql_query($sql);
$mchat_config = array();
- while ($row = $db->sql_fetchrow($result))
+ while ($row = $db->sql_fetchrow($result))
{
$mchat_config[$row['config_name']] = $row['config_value'];
}
$db->sql_freeresult($result);
-
+
$mchat_enable = isset($config['mchat_enable']) ? $config['mchat_enable'] : 0;
$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_stats_index = isset($config['mchat_stats_index']) ? $config['mchat_stats_index'] : 0;
-
$dateformat_options = '';
foreach ($user->lang['dateformats'] as $format => $null)
@@ -226,12 +223,12 @@ class acp_mchat_module
'MCHAT_MESSAGE_LIMIT' => !empty($mchat_row['message_limit']) ? $mchat_row['message_limit'] : $mchat_config['message_limit'],
'MCHAT_MESSAGE_NUM' => !empty($mchat_row['message_num']) ? $mchat_row['message_num'] : $mchat_config['message_num'],
'MCHAT_ARCHIVE_LIMIT' => !empty($mchat_row['archive_limit']) ? $mchat_row['archive_limit'] : $mchat_config['archive_limit'],
- 'MCHAT_AVATARS' => !empty($mchat_row['avatars']) ? $mchat_row['avatars'] : $mchat_config['avatars'],
+ 'MCHAT_AVATARS' => !empty($mchat_row['avatars']) ? $mchat_row['avatars'] : $mchat_config['avatars'],
'MCHAT_FLOOD_TIME' => !empty($mchat_row['flood_time']) ? $mchat_row['flood_time'] : $mchat_config['flood_time'],
'MCHAT_MAX_MESSAGE_LNGTH' => !empty($mchat_row['max_message_lngth']) ? $mchat_row['max_message_lngth'] : $mchat_config['max_message_lngth'],
'MCHAT_CUSTOM_PAGE' => !empty($mchat_row['custom_page']) ? $mchat_row['custom_page'] : $mchat_config['custom_page'],
'MCHAT_DATE' => !empty($mchat_row['date']) ? $mchat_row['date'] : $mchat_config['date'],
- 'MCHAT_DEFAULT_DATEFORMAT' => $config['default_dateformat'],
+ 'MCHAT_DEFAULT_DATEFORMAT' => $config['default_dateformat'],
'MCHAT_RULES' => !empty($mchat_row['rules']) ? $mchat_row['rules'] : $mchat_config['rules'],
'MCHAT_WHOIS' => !empty($mchat_row['whois']) ? $mchat_row['whois'] : $mchat_config['whois'],
'MCHAT_STATS_INDEX' => ($mchat_stats_index) ? true : false,
@@ -244,15 +241,15 @@ class acp_mchat_module
'MCHAT_TIMEOUT' => !empty($mchat_row['timeout']) ? $mchat_row['timeout'] : $mchat_config['timeout'],
'MCHAT_NEW_POSTS' => ($mchat_new_posts) ? 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'], 'session_id) . '">', ' '),
'L_MCHAT_TIMEOUT_EXPLAIN' => sprintf($user->lang['MCHAT_USER_TIMEOUT_EXPLAIN'],'session_id) . '">', ' ', $config['session_length']),
-
+
'S_MCHAT_DATEFORMAT_OPTIONS' => $dateformat_options,
'S_CUSTOM_DATEFORMAT' => $s_custom,
-
+
'U_ACTION' => $this->u_action)
);
-
+
}
}
\ No newline at end of file
diff --git a/adm/style/acp_mchat.html b/adm/style/acp_mchat.html
index e0e450d..08b58c7 100644
--- a/adm/style/acp_mchat.html
+++ b/adm/style/acp_mchat.html
@@ -22,7 +22,7 @@
{L_MCHAT_NEW_POSTS_EXPLAIN}
id="mchat_new_posts" checked="checked" /> {L_YES}
id="mchat_new_posts" checked="checked" /> {L_NO}
-
+
{L_MCHAT_STATIC_MESSAGE}{L_COLON}
{L_MCHAT_STATIC_MESSAGE_EXPLAIN}
@@ -32,18 +32,18 @@
{L_MCHAT_REFRESH}{L_COLON}
{L_MCHAT_REFRESH_EXPLAIN}
-
+
{L_MCHAT_USER_TIMEOUT}{L_COLON}
{L_MCHAT_TIMEOUT_EXPLAIN}
-
+
{L_MCHAT_ON_INDEX}{L_COLON}
{L_MCHAT_ON_INDEX_EXPLAIN}
id="mchat_on_index" checked="checked" /> {L_YES}
id="mchat_on_index" checked="checked" /> {L_NO}
-
+
{L_MCHAT_INDEX_HEIGHT}{L_COLON}
{L_MCHAT_INDEX_HEIGHT_EXPLAIN}
@@ -59,7 +59,7 @@
{L_MCHAT_LOCATION_EXPLAIN}
id="mchat_location" checked="checked" /> {L_MCHAT_TOP_OF_FORUM}
id="mchat_location" checked="checked" /> {L_MCHAT_BOTTOM_OF_FORUM}
-
+
{L_MCHAT_CUSTOM_PAGE}{L_COLON}
{L_MCHAT_CUSTOM_PAGE_EXPLAIN}
@@ -81,15 +81,15 @@
{L_MCHAT_PRUNE_NUM}{L_COLON}
{L_MCHAT_PRUNE_NUM_EXPLAIN}
-
+
- {L_MCHAT_MESSAGES}
+ {L_MCHAT_MESSAGES}
{L_MCHAT_FLOOD_TIME}{L_COLON}
{L_MCHAT_FLOOD_TIME_EXPLAIN}
-
+
{L_MCHAT_MESSAGE_LIMIT}{L_COLON}
{L_MCHAT_MESSAGE_LIMIT_EXPLAIN}
@@ -105,13 +105,13 @@
{L_MCHAT_AVATARS_EXPLAIN}
id="mchat_avatars" checked="checked" /> {L_YES}
id="mchat_avatars" checked="checked" /> {L_NO}
-
+
{L_MCHAT_PAUSE_ON_INPUT}{L_COLON}
{L_MCHAT_PAUSE_ON_INPUT_EXPLAIN}
id="mchat_pause_on_input" checked="checked" /> {L_YES}
id="mchat_pause_on_input" checked="checked" /> {L_NO}
-
+
{L_MCHAT_OVERRIDE_MIN_POST_CHARS}{L_COLON}
{L_MCHAT_OVERRIDE_MIN_POST_CHARS_EXPLAIN}
@@ -123,7 +123,7 @@
{L_MCHAT_OVERRIDE_SMILIE_LIMIT_EXPLAIN}
id="mchat_override_smilie_limit" checked="checked" /> {L_YES}
id="mchat_override_smilie_limit" checked="checked" /> {L_NO}
-
+
{L_MCHAT_MAX_MESSAGE_LENGTH}{L_COLON}
{L_MCHAT_MAX_MESSAGE_LENGTH_EXPLAIN}
@@ -147,10 +147,10 @@
{L_ACP_MCHAT_RULES}{L_COLON}
{L_ACP_MCHAT_RULES_EXPLAIN}
-
-
+
+
- {L_MCHAT_STATS}
+ {L_MCHAT_STATS}
{L_MCHAT_WHOIS}{L_COLON}
{L_MCHAT_WHOIS_EXPLAIN}
@@ -161,19 +161,19 @@
{L_MCHAT_STATS_INDEX}{L_COLON}
{L_MCHAT_STATS_INDEX_EXPLAIN}
id="mchat_stats_index" checked="checked" /> {L_YES}
- id="mchat_stats_index" checked="checked" /> {L_NO}
-
+ id="mchat_stats_index" checked="checked" /> {L_NO}
+
{L_MCHAT_WHOIS_REFRESH}{L_COLON}
{L_MCHAT_WHOIS_REFRESH_EXPLAIN}
-
+
{S_FORM_TOKEN}
-
+
\ No newline at end of file
diff --git a/adm/style/acp_users_mchat.html b/adm/style/acp_users_mchat.html
index 875d8cb..b6421ce 100644
--- a/adm/style/acp_users_mchat.html
+++ b/adm/style/acp_users_mchat.html
@@ -4,48 +4,48 @@
{L_DISPLAY_MCHAT}{L_COLON}
- id="mchat_index" checked="checked" /> {L_YES}
+ id="mchat_index" checked="checked" /> {L_YES}
id="mchat_index" checked="checked" /> {L_NO}
{L_SOUND_MCHAT}{L_COLON}
- id="mchat_sound" checked="checked" /> {L_YES}
+ id="mchat_sound" checked="checked" /> {L_YES}
id="mchat_sound" checked="checked" /> {L_NO}
{L_DISPLAY_STATS_INDEX}{L_COLON}
- id="mchat_statsindex" checked="checked" /> {L_YES}
+ id="mchat_statsindex" checked="checked" /> {L_YES}
id="mchat_statsindex" checked="checked" /> {L_NO}
{L_DISPLAY_NEW_TOPICS}{L_COLON}
- id="mchat_topics" checked="checked" /> {L_YES}
+ id="mchat_topics" checked="checked" /> {L_YES}
id="mchat_topics" checked="checked" /> {L_NO}
{L_DISPLAY_AVATARS}{L_COLON}
- id="mchat_avatars" checked="checked" /> {L_YES}
+ id="mchat_avatars" checked="checked" /> {L_YES}
id="mchat_avatars" checked="checked" /> {L_NO}
-
+
{L_CHAT_AREA}{L_COLON}
- id="mchat_input_type" checked="checked" /> {L_INPUT_AREA}
+ id="mchat_input_type" checked="checked" /> {L_INPUT_AREA}
id=""mchat_input_type" checked="checked" /> {L_TEXT_AREA}
-
+
{S_FORM_TOKEN}
-
+
\ No newline at end of file
diff --git a/composer.json b/composer.json
index 6aa48b9..37cad17 100644
--- a/composer.json
+++ b/composer.json
@@ -1,32 +1,32 @@
{
- "name": "dmzx/mchat",
- "type": "phpbb-extension",
- "description": "mChat Extension for phpbb 3.1.x",
- "homepage": "http://www.dmzx-web.net",
- "version": "0.0.3",
- "time": "2015-03-10",
+ "name": "dmzx/mchat",
+ "type": "phpbb-extension",
+ "description": "mChat Extension for phpbb 3.1.x",
+ "homepage": "http://www.dmzx-web.net",
+ "version": "0.0.4",
+ "time": "2015-03-10",
"keywords": ["phpbb", "extension", "mchat"],
- "license": "GPL-2.0",
- "authors": [
- {
- "name": "dmzx",
- "homepage": "http://www.dmzx-web.net",
+ "license": "GPL-2.0",
+ "authors": [
+ {
+ "name": "dmzx",
+ "homepage": "http://www.dmzx-web.net",
"email": "info@dmzx-web.net",
- "role": "Extension Developer"
- },
+ "role": "Extension Developer"
+ },
{
"name": "Rich McGirr",
"homepage": "http://rmcgirr83.org",
"role": "Author"
}
- ],
- "require": {
- "php": ">=5.3.3"
- },
- "extra": {
- "display-name": "mChat Extension",
- "soft-require": {
- "phpbb/phpbb": "3.1.*"
- }
- }
+ ],
+ "require": {
+ "php": ">=5.3.3"
+ },
+ "extra": {
+ "display-name": "mChat Extension",
+ "soft-require": {
+ "phpbb/phpbb": "3.1.*"
+ }
+ }
}
\ No newline at end of file
diff --git a/core/functions_mchat.php b/core/functions_mchat.php
index 15816cc..60d14b8 100644
--- a/core/functions_mchat.php
+++ b/core/functions_mchat.php
@@ -13,9 +13,9 @@ class functions_mchat
{
/**
* CONSTANTS SECTION
- *
+ *
* To access them, you need to use the class.
- *
+ *
*/
const MCHAT_CONFIG_TABLE = 'mchat_config';
const MCHAT_TABLE = 'mchat';
@@ -74,7 +74,7 @@ class functions_mchat
$sql = 'SELECT * FROM ' . $this->table_prefix . self::MCHAT_CONFIG_TABLE;
$result = $this->db->sql_query($sql);
$config_mchat = array();
- while ($row = $this->db->sql_fetchrow($result))
+ while ($row = $this->db->sql_fetchrow($result))
{
$config_mchat[$row['config_name']] = $row['config_value'];
}
@@ -109,9 +109,9 @@ class functions_mchat
// fix the display of the time limit
// hours, minutes, seconds
$chat_session = '';
- $chat_timeout = (int) $time;
+ $chat_timeout = (int) $time;
$hours = $minutes = $seconds = 0;
-
+
if ($chat_timeout >= 3600)
{
$hours = floor($chat_timeout / 3600);
@@ -130,8 +130,8 @@ class functions_mchat
{
$seconds = $seconds > 1 ? ($seconds . ' ' . $this->user->lang['MCHAT_SECONDS']) : ($seconds . ' ' . $this->user->lang['MCHAT_SECOND']);
$chat_session .= $seconds;
- }
- return sprintf($this->user->lang['MCHAT_ONLINE_EXPLAIN'], $chat_session);
+ }
+ return sprintf($this->user->lang['MCHAT_ONLINE_EXPLAIN'], $chat_session);
}
// mchat_users
@@ -141,19 +141,19 @@ class functions_mchat
function mchat_users($session_time, $on_page = false)
{
$check_time = time() - (int) $session_time;
-
+
$sql = 'DELETE FROM ' . $this->table_prefix . self::MCHAT_SESSIONS_TABLE . ' WHERE user_lastupdate < ' . $check_time;
- $this->db->sql_query($sql);
-
+ $this->db->sql_query($sql);
+
// add the user into the sessions upon first visit
if($on_page && ($this->user->data['user_id'] != ANONYMOUS && !$this->user->data['is_bot']))
{
$this->mchat_sessions($session_time);
}
-
+
$mchat_user_count = 0;
$mchat_user_list = '';
-
+
$sql = 'SELECT m.user_id, u.username, u.user_type, u.user_allow_viewonline, u.user_colour
FROM ' . $this->table_prefix . self::MCHAT_SESSIONS_TABLE . ' m
LEFT JOIN ' . USERS_TABLE . ' u ON m.user_id = u.user_id
@@ -180,7 +180,7 @@ class functions_mchat
}
$this->db->sql_freeresult($result);
- $refresh_message = $this->mchat_session_time($session_time);
+ $refresh_message = $this->mchat_session_time($session_time);
if (!$mchat_user_count)
{
return array(
@@ -208,7 +208,7 @@ class functions_mchat
$check_time = time() - (int) $session_time;
$sql = 'DELETE FROM ' . $this->table_prefix . self::MCHAT_SESSIONS_TABLE . ' WHERE user_lastupdate <' . $check_time;
$this->db->sql_query($sql);
-
+
// insert user into the mChat sessions table
if ($this->user->data['user_type'] == USER_FOUNDER || $this->user->data['user_type'] == USER_NORMAL)
{
@@ -234,7 +234,7 @@ class functions_mchat
$sql = 'UPDATE ' . $this->table_prefix . self::MCHAT_SESSIONS_TABLE . ' SET ' . $this->db->sql_build_array('UPDATE', $sql_ary) . ' WHERE user_id =' . (int) $this->user->data['user_id'];
$this->db->sql_query($sql);
}
- }
+ }
return;
}
@@ -282,41 +282,41 @@ class functions_mchat
$result = $this->db->sql_query_limit('SELECT * FROM '. $this->table_prefix . self::MCHAT_TABLE . ' ORDER BY message_id ASC', 1);
$row = $this->db->sql_fetchrow($result);
$first_id = (int) $row['message_id'];
-
+
$this->db->sql_freeresult($result);
-
- // compute the delete id
+
+ // compute the delete id
$delete_id = $mchat_total_messages - $mchat_prune_amount + $first_id;
// let's go delete them...if the message id is less than the delete id
$sql = 'DELETE FROM ' . $this->table_prefix . self::MCHAT_TABLE . '
WHERE message_id < ' . (int) $delete_id;
$this->db->sql_query($sql);
-
+
add_log('admin', 'LOG_MCHAT_TABLE_PRUNED');
}
// free up some memory...variable(s) are no longer needed.
unset($mchat_total_messages);
-
+
// return to what we were doing
return;
-
+
}
// display_mchat_bbcodes
- // can't use the default phpBB one but
+ // can't use the default phpBB one but
// most of code is from similar function
/**
* @param mixed $mchat_prune_amount set from mchat config entry
*/
function display_mchat_bbcodes()
{
- // grab the bbcodes that aren't allowed
+ // grab the bbcodes that aren't allowed
$config_mchat = $this->cache->get('_mchat_config');
-
+
$disallowed_bbcode_array = explode('|', strtoupper($config_mchat['bbcode_disallowed']));
preg_replace('#^(.*?)=#si','$1',$disallowed_bbcode_array);
$default_bbcodes = array('b','i','u','quote','code','list','img','url','size','color','email','flash');
-
+
// let's remove the default bbcodes
if (sizeof($disallowed_bbcode_array))
{
@@ -347,7 +347,7 @@ class functions_mchat
{
$bbcode_tag_name = strtoupper($row['bbcode_tag']);
if (sizeof($disallowed_bbcode_array))
- {
+ {
if (in_array($bbcode_tag_name, $disallowed_bbcode_array))
{
continue;
diff --git a/event/listener.php b/event/listener.php
index de86876..dbd610d 100644
--- a/event/listener.php
+++ b/event/listener.php
@@ -19,16 +19,16 @@ class listener implements EventSubscriberInterface
protected $template;
protected $user;
-
+
protected $db;
-
+
protected $root_path;
-
+
protected $php_ext;
-
+
/** @var \phpbb\controller\helper */
protected $controller_helper;
-
+
public function __construct(\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, $auth)
{
$this->config = $config;
@@ -40,7 +40,7 @@ class listener implements EventSubscriberInterface
$this->php_ext = $php_ext;
$this->auth = $auth;
}
-
+
static public function getSubscribedEvents()
{
return array(
diff --git a/language/en/common.php b/language/en/common.php
index 8b56379..7d461a1 100644
--- a/language/en/common.php
+++ b/language/en/common.php
@@ -7,7 +7,6 @@
*
*/
-
/**
* DO NOT CHANGE!
*/
@@ -42,8 +41,8 @@ $lang = array_merge($lang, array(
'MCHAT_TITLE' => 'Mini-Chat',
'MCHAT_ADD' => 'Send',
'MCHAT_ANNOUNCEMENT' => 'Announcement',
- 'MCHAT_ARCHIVE' => 'Archive',
- 'MCHAT_ARCHIVE_PAGE' => 'Mini-Chat Archive',
+ 'MCHAT_ARCHIVE' => 'Archive',
+ 'MCHAT_ARCHIVE_PAGE' => 'Mini-Chat Archive',
'MCHAT_BBCODES' => 'BBCodes',
'MCHAT_CLEAN' => 'Purge',
'MCHAT_CLEANED' => 'All messages have been successfully removed',
@@ -55,23 +54,23 @@ $lang = array_merge($lang, array(
'MCHAT_DELITE' => 'Delete',
'MCHAT_EDIT' => 'Edit',
'MCHAT_EDITINFO' => 'Edit the message and click OK',
- 'MCHAT_ENABLE' => 'Sorry, the Mini-Chat is currently unavailable',
- 'MCHAT_ERROR' => 'Error',
- 'MCHAT_FLOOD' => 'You can not post another message so soon after your last',
+ 'MCHAT_ENABLE' => 'Sorry, the Mini-Chat is currently unavailable',
+ 'MCHAT_ERROR' => 'Error',
+ 'MCHAT_FLOOD' => 'You can not post another message so soon after your last',
'MCHAT_FOE' => 'This message was made by %1$s who is currently on your ignore list.',
'MCHAT_HELP' => 'mChat Rules',
- 'MCHAT_HIDE_LIST' => 'Hide List',
+ 'MCHAT_HIDE_LIST' => 'Hide List',
'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',
- 'MCHAT_NO_CUSTOM_PAGE' => 'The mChat custom page is not activated at this time!',
+ 'MCHAT_MESS_LONG' => 'Your message is too long.\nPlease limit it to %s characters',
+ 'MCHAT_NO_CUSTOM_PAGE' => 'The mChat custom page is not activated at this time!',
'MCHAT_NOACCESS' => 'You don’t have permission to post in the mChat',
- 'MCHAT_NOACCESS_ARCHIVE' => 'You don’t have permission to view the archive',
- 'MCHAT_NOJAVASCRIPT' => 'Your browser does not support JavaScript or JavaScript is disabled',
+ 'MCHAT_NOACCESS_ARCHIVE' => 'You don’t have permission to view the archive',
+ 'MCHAT_NOJAVASCRIPT' => 'Your browser does not support JavaScript or JavaScript is disabled',
'MCHAT_NOMESSAGE' => 'No messages',
'MCHAT_NOMESSAGEINPUT' => 'You have not entered a message',
'MCHAT_NOSMILE' => 'Smilies not found',
@@ -79,14 +78,14 @@ $lang = array_merge($lang, array(
'MCHAT_NOT_INSTALLED' => 'mChat database entries are missing. Please run the %sinstaller%s to make the database changes for the modification.',
'MCHAT_OK' => 'OK',
'MCHAT_PAUSE' => 'Paused',
- 'MCHAT_LOAD' => 'Loading',
+ 'MCHAT_LOAD' => 'Loading',
'MCHAT_PERMISSIONS' => 'Change users permissions',
'MCHAT_REFRESHING' => 'Refreshing...',
'MCHAT_REFRESH_NO' => 'Autoupdate is off',
'MCHAT_REFRESH_YES' => 'Autoupdate every %d seconds',
'MCHAT_RESPOND' => 'Respond to user',
'MCHAT_RESET_QUESTION' => 'Clear the input area?',
- 'MCHAT_SESSION_OUT' => 'Chat session has expired',
+ 'MCHAT_SESSION_OUT' => 'Chat session has expired',
'MCHAT_SHOW_LIST' => 'Show List',
'MCHAT_SECOND' => 'second ',
'MCHAT_SECONDS' => 'seconds ',
@@ -95,21 +94,20 @@ $lang = array_merge($lang, array(
'MCHAT_TOTALMESSAGES' => 'Total messages: %s ',
'MCHAT_USESOUND' => 'Use sound?',
-
'MCHAT_ONLINE_USERS_TOTAL' => 'In total there are %d users chatting ',
'MCHAT_ONLINE_USER_TOTAL' => 'In total there is %d 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 %d seconds',
- 'MCHAT_NEW_TOPIC' => 'New Topic ',
- 'MCHAT_NEW_REPLY' => 'New Reply ',
-
+ 'MCHAT_NEW_TOPIC' => 'New Topic ',
+ 'MCHAT_NEW_REPLY' => 'New Reply ',
+
// 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',
@@ -118,7 +116,7 @@ $lang = array_merge($lang, array(
'CHAT_AREA' => 'Input type',
'CHAT_AREA_EXPLAIN' => 'Choose which type of area to use to input a chat: A text area or an input area',
'INPUT_AREA' => 'Input area',
- 'TEXT_AREA' => 'Text area',
+ 'TEXT_AREA' => 'Text area',
// ACP
'ACP_MCHAT_RULES_EXPLAIN' => 'Enter the rules of the forum here. Each rule on a new line. You are limited to 255 characters.This message can be translated. (you must edit the mchat_lang.php file and read the instructions).',
'LOG_MCHAT_CONFIG_UPDATE' => 'Updated mChat config ',
@@ -128,7 +126,7 @@ $lang = array_merge($lang, array(
'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_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',
@@ -142,7 +140,7 @@ $lang = array_merge($lang, array(
'MCHAT_PRUNE' => 'Enable Prune',
'MCHAT_PRUNE_EXPLAIN' => 'Set to yes to enable the prune feature.Only occurs if a user views the custom or archive pages .',
'MCHAT_PRUNE_NUM' => 'Prune Number',
- 'MCHAT_PRUNE_NUM_EXPLAIN' => 'The number of messages to retain in the chat.',
+ '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.Recommended from 10 to 30 .',
'MCHAT_MESSAGE_NUM' => 'Index page message limit',
@@ -183,7 +181,7 @@ $lang = array_merge($lang, array(
'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.',
@@ -203,24 +201,24 @@ $lang = array_merge($lang, array(
'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_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_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
'LOG_MCHAT_TABLE_PRUNED' => 'mChat Table was pruned',
'ACP_USER_MCHAT' => 'mChat Settings',
- 'LOG_DELETED_MCHAT' => 'Deleted mChat message » %1$s',
- 'LOG_EDITED_MCHAT' => 'Edited mChat message » %1$s',
+ 'LOG_DELETED_MCHAT' => 'Deleted mChat message » %1$s',
+ 'LOG_EDITED_MCHAT' => 'Edited mChat message » %1$s',
'MCHAT_MESSAGE_LNGTH_EXPLAIN' => 'Characters remaining: %d ',
- 'MCHAT_TOP_POSTERS' => 'Top Spammers',
- 'MCHAT_NEW_CHAT' => 'New Chat Message!',
+ 'MCHAT_TOP_POSTERS' => 'Top Spammers',
+ 'MCHAT_NEW_CHAT' => 'New Chat Message!',
'FONT_COLOR' => 'Font colour',
'FONT_COLOR_HIDE' => 'Hide font colour',
'FONT_HUGE' => 'Huge',
@@ -229,7 +227,7 @@ $lang = array_merge($lang, array(
'FONT_SIZE' => 'Font size',
'FONT_SMALL' => 'Small',
'FONT_TINY' => 'Tiny',
- 'MCHAT_SEND_PM' => 'Send Private Message',
- 'MCHAT_PM' => '(PM)',
- 'MORE_SMILIES' => 'More Smilies',
+ 'MCHAT_SEND_PM' => 'Send Private Message',
+ 'MCHAT_PM' => '(PM)',
+ 'MORE_SMILIES' => 'More Smilies',
));
\ No newline at end of file
diff --git a/language/en/info_acp_mchat.php b/language/en/info_acp_mchat.php
index b0ee155..12594d1 100644
--- a/language/en/info_acp_mchat.php
+++ b/language/en/info_acp_mchat.php
@@ -31,7 +31,6 @@ if (empty($lang) || !is_array($lang))
// Some characters for use
// ’ » “ ” …
-
$lang = array_merge($lang, array(
// UMIL stuff
@@ -56,7 +55,7 @@ $lang = array_merge($lang, array(
'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_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',
@@ -70,7 +69,7 @@ $lang = array_merge($lang, array(
'MCHAT_PRUNE' => 'Enable Prune',
'MCHAT_PRUNE_EXPLAIN' => 'Set to yes to enable the prune feature.Only occurs if a user views the custom or archive pages .',
'MCHAT_PRUNE_NUM' => 'Prune Number',
- 'MCHAT_PRUNE_NUM_EXPLAIN' => 'The number of messages to retain in the chat.',
+ '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.Recommended from 10 to 30 .',
'MCHAT_MESSAGE_NUM' => 'Index page message limit',
@@ -111,7 +110,7 @@ $lang = array_merge($lang, array(
'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.',
@@ -131,16 +130,16 @@ $lang = array_merge($lang, array(
'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_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_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.',
-
+
// User perms
'ACL_U_MCHAT_USE' => 'Can use mChat mchat',
'ACL_U_MCHAT_VIEW' => 'Can view mChat mchat',
@@ -155,5 +154,5 @@ $lang = array_merge($lang, array(
// Admin perms
'ACL_A_MCHAT' => array('lang' => 'Can manage mChat settings', 'cat' => 'permissions'), // Using a phpBB category here
-
+
));
diff --git a/language/fr/common.php b/language/fr/common.php
index 5a1678a..4cf25ba 100644
--- a/language/fr/common.php
+++ b/language/fr/common.php
@@ -7,7 +7,6 @@
*
*/
-
/**
* DO NOT CHANGE!
*/
@@ -42,8 +41,8 @@ $lang = array_merge($lang, array(
'MCHAT_TITLE' => 'Mini-Chat',
'MCHAT_ADD' => 'Envoyer',
'MCHAT_ANNOUNCEMENT' => 'Annonce',
- 'MCHAT_ARCHIVE' => 'Archives',
- 'MCHAT_ARCHIVE_PAGE' => 'Archives du mini-chat',
+ 'MCHAT_ARCHIVE' => 'Archives',
+ 'MCHAT_ARCHIVE_PAGE' => 'Archives du mini-chat',
'MCHAT_BBCODES' => 'BBCodes',
'MCHAT_CLEAN' => 'Vider le mini-chat',
'MCHAT_CLEANED' => 'Tous les messages ont été supprimés avec succès.',
@@ -55,23 +54,23 @@ $lang = array_merge($lang, array(
'MCHAT_DELITE' => 'Supprimer',
'MCHAT_EDIT' => 'Éditer',
'MCHAT_EDITINFO' => 'Éditez le message et cliquez sur OK.',
- 'MCHAT_ENABLE' => 'Désolé, le mini-chat est actuellement indisponible.',
- 'MCHAT_ERROR' => 'Erreur',
+ 'MCHAT_ENABLE' => 'Désolé, le mini-chat est actuellement indisponible.',
+ 'MCHAT_ERROR' => 'Erreur',
'MCHAT_FLOOD' => 'Vous ne pouvez pas poster un autre message si peu de temps après votre dernier message.',
- 'MCHAT_FOE' => 'Ce message a été écrit par %1$s qui est actuellement dans votre liste des ignorés.',
+ 'MCHAT_FOE' => 'Ce message a été écrit par %1$s qui est actuellement dans votre liste des ignorés.',
'MCHAT_HELP' => 'Règles du mChat',
- 'MCHAT_HIDE_LIST' => 'Masquer la liste',
+ 'MCHAT_HIDE_LIST' => 'Masquer la liste',
'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',
- 'MCHAT_NO_CUSTOM_PAGE' => 'La page personnalisée du mChat n’est pas activée en ce moment!',
+ 'MCHAT_MESS_LONG' => 'Votre message est trop long.\nLimité à %s caractères',
+ 'MCHAT_NO_CUSTOM_PAGE' => 'La page personnalisée du mChat n’est pas activée en ce moment!',
'MCHAT_NOACCESS' => 'Vous n’avez pas les permissions pour poster dans le mini-chat.',
- 'MCHAT_NOACCESS_ARCHIVE' => 'Vous n’avez pas les permissions pour voir les archives.',
- 'MCHAT_NOJAVASCRIPT' => 'Votre navigateur ne supporte pas JavaScript ou JavaScript est désactivé.',
+ 'MCHAT_NOACCESS_ARCHIVE' => 'Vous n’avez pas les permissions pour voir les archives.',
+ 'MCHAT_NOJAVASCRIPT' => 'Votre navigateur ne supporte pas JavaScript ou JavaScript est désactivé.',
'MCHAT_NOMESSAGE' => 'Aucun message',
'MCHAT_NOMESSAGEINPUT' => 'Vous n’avez pas saisi de message.',
'MCHAT_NOSMILE' => 'Aucun smiley n’a été trouvé.',
@@ -79,14 +78,14 @@ $lang = array_merge($lang, array(
'MCHAT_NOT_INSTALLED' => 'La base de données de mChat saisie est introuvable. Démarrez l’%sinstallation%s pour modifier la base de données du MOD.',
'MCHAT_OK' => 'OK',
'MCHAT_PAUSE' => 'En pause',
- 'MCHAT_LOAD' => 'Chargement',
+ 'MCHAT_LOAD' => 'Chargement',
'MCHAT_PERMISSIONS' => 'Modifier les permissions des utilisateurs',
'MCHAT_REFRESHING' => 'Actualisation...',
'MCHAT_REFRESH_NO' => 'La mise à jour automatique est désactivée',
'MCHAT_REFRESH_YES' => 'Actualisation toutes les %d secondes',
'MCHAT_RESPOND' => 'Répondez à l’utilisateur',
'MCHAT_RESET_QUESTION' => 'Effacer la zone de saisie?',
- 'MCHAT_SESSION_OUT' => 'La session de tchat a expirée',
+ 'MCHAT_SESSION_OUT' => 'La session de tchat a expirée',
'MCHAT_SHOW_LIST' => 'Afficher la liste',
'MCHAT_SECOND' => 'seconde ',
'MCHAT_SECONDS' => 'secondes ',
@@ -95,21 +94,20 @@ $lang = array_merge($lang, array(
'MCHAT_TOTALMESSAGES' => 'Total des messages: %s ',
'MCHAT_USESOUND' => 'Utiliser le son?',
-
'MCHAT_ONLINE_USERS_TOTAL' => 'Au total, il y a %d utilisateurs qui discutent ',
'MCHAT_ONLINE_USER_TOTAL' => 'Au total, il y a %d 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 %d secondes',
- 'MCHAT_NEW_TOPIC' => 'Nouveau Sujet ',
- 'MCHAT_NEW_REPLY' => 'Nouvelle réponse ',
-
+ 'MCHAT_NEW_TOPIC' => 'Nouveau Sujet ',
+ 'MCHAT_NEW_REPLY' => 'Nouvelle réponse ',
+
// 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.',
@@ -118,7 +116,7 @@ $lang = array_merge($lang, array(
'CHAT_AREA' => 'Type de saisie',
'CHAT_AREA_EXPLAIN' => 'Choisissez le type de champ à utiliser pour saisir un message : Une zone de zaisie ou un champ de saisie',
'INPUT_AREA' => 'Champ de saisie',
- 'TEXT_AREA' => 'Zone de zaisie',
+ 'TEXT_AREA' => 'Zone de zaisie',
// ACP
'ACP_MCHAT_RULES_EXPLAIN' => 'Saisissez les règles du forum ici. Chaque règle sur une nouvelle ligne. Vous êtes limité à 255 caractères.Ce message peut être traduit. (vous devez éditer le fichier mchat_lang.php et saisir les instructions).',
'LOG_MCHAT_CONFIG_UPDATE' => 'Configuration de mChat mise à jour ',
@@ -128,7 +126,7 @@ $lang = array_merge($lang, array(
'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_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',
@@ -142,7 +140,7 @@ $lang = array_merge($lang, array(
'MCHAT_PRUNE' => 'Activer le délestage',
'MCHAT_PRUNE_EXPLAIN' => 'Mettez Oui pour activer la fonction de délestage.Survient seulement si un utilisateur affiche les pages personnalisées ou d’archives .',
'MCHAT_PRUNE_NUM' => 'Nombre de messages',
- 'MCHAT_PRUNE_NUM_EXPLAIN' => 'Le nombre de messages à retenir dans mChat.',
+ '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.Recommandation : de 10 à 30 messages .',
'MCHAT_MESSAGE_NUM' => 'Limite de messages sur la page d’index',
@@ -181,7 +179,7 @@ $lang = array_merge($lang, array(
'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.',
@@ -201,24 +199,24 @@ $lang = array_merge($lang, array(
'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_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_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
'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' => 'Les messages de mchat ont été supprimés » %1$s',
- 'LOG_EDITED_MCHAT' => 'Les messages de mchat ont été édités » %1$s',
+ 'LOG_DELETED_MCHAT' => 'Les messages de mchat ont été supprimés » %1$s',
+ 'LOG_EDITED_MCHAT' => 'Les messages de mchat ont été édités » %1$s',
'MCHAT_MESSAGE_LNGTH_EXPLAIN' => 'Caractères restants: %d ',
- 'MCHAT_TOP_POSTERS' => 'Top Spammers',
- 'MCHAT_NEW_CHAT' => 'Nouveau Message Dans Mchat!',
+ 'MCHAT_TOP_POSTERS' => 'Top Spammers',
+ 'MCHAT_NEW_CHAT' => 'Nouveau Message Dans Mchat!',
'FONT_COLOR' => 'Couleur de fond',
'FONT_COLOR_HIDE' => 'Cacher la couleur de fond',
'FONT_HUGE' => 'Énorme',
@@ -227,7 +225,7 @@ $lang = array_merge($lang, array(
'FONT_SIZE' => 'Taille de la police',
'FONT_SMALL' => 'Petite',
'FONT_TINY' => 'Minuscule',
- 'MCHAT_SEND_PM' => 'Envoyer un message privé',
- 'MCHAT_PM' => '(MP)',
- 'MORE_SMILIES' => 'Plus de smileys',
+ 'MCHAT_SEND_PM' => 'Envoyer un message privé',
+ 'MCHAT_PM' => '(MP)',
+ 'MORE_SMILIES' => 'Plus de smileys',
));
\ No newline at end of file
diff --git a/language/fr/info_acp_mchat.php b/language/fr/info_acp_mchat.php
index 23a7af6..406a6ef 100644
--- a/language/fr/info_acp_mchat.php
+++ b/language/fr/info_acp_mchat.php
@@ -31,7 +31,6 @@ if (empty($lang) || !is_array($lang))
// Some characters for use
// ’ » “ ” …
-
$lang = array_merge($lang, array(
// UMIL stuff
@@ -56,7 +55,7 @@ $lang = array_merge($lang, array(
'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_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',
@@ -70,7 +69,7 @@ $lang = array_merge($lang, array(
'MCHAT_PRUNE' => 'Activer le délestage',
'MCHAT_PRUNE_EXPLAIN' => 'Mettez Oui pour activer la fonction de délestage.Survient seulement si un utilisateur affiche les pages personnalisées ou d’archives .',
'MCHAT_PRUNE_NUM' => 'Nombre de messages',
- 'MCHAT_PRUNE_NUM_EXPLAIN' => 'Le nombre de messages à retenir dans mChat.',
+ '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.Recommandation : de 10 à 30 messages .',
'MCHAT_MESSAGE_NUM' => 'Limite de messages sur la page d’index',
@@ -111,7 +110,7 @@ $lang = array_merge($lang, array(
'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.',
@@ -131,16 +130,16 @@ $lang = array_merge($lang, array(
'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_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_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.',
-
+
// User perms
'ACL_U_MCHAT_USE' => 'Peut utiliser mChat',
'ACL_U_MCHAT_VIEW' => 'Peut voir mChat',
@@ -155,5 +154,5 @@ $lang = array_merge($lang, array(
// Admin perms
'ACL_A_MCHAT' => array('lang' => 'Peut gérer les paramètres de mChat', 'cat' => 'permissions'), // Using a phpBB category here
-
+
));
diff --git a/language/it/common.php b/language/it/common.php
index 045201e..12a696c 100644
--- a/language/it/common.php
+++ b/language/it/common.php
@@ -7,7 +7,6 @@
*
*/
-
/**
* DO NOT CHANGE!
*/
@@ -42,8 +41,8 @@ $lang = array_merge($lang, array(
'MCHAT_TITLE' => 'Mini-Chat',
'MCHAT_ADD' => 'Invia',
'MCHAT_ANNOUNCEMENT' => 'Announcio',
- 'MCHAT_ARCHIVE' => 'Archivio',
- 'MCHAT_ARCHIVE_PAGE' => 'Mini-Chat Archivio',
+ 'MCHAT_ARCHIVE' => 'Archivio',
+ 'MCHAT_ARCHIVE_PAGE' => 'Mini-Chat Archivio',
'MCHAT_BBCODES' => 'BBCodes',
'MCHAT_CLEAN' => 'Cancella',
'MCHAT_CLEANED' => 'Tutti i messaggi sono stati rimossi',
@@ -55,23 +54,23 @@ $lang = array_merge($lang, array(
'MCHAT_DELITE' => 'Cancella',
'MCHAT_EDIT' => 'Modifica',
'MCHAT_EDITINFO' => 'Modifica il messaggio e clicca OK',
- 'MCHAT_ENABLE' => 'Spiacente, la Mini-Chat non è al momento disponibile',
- 'MCHAT_ERROR' => 'Errore',
- 'MCHAT_FLOOD' => 'Non puoi inviare un altro messaggio così presto dopo ultimo',
+ 'MCHAT_ENABLE' => 'Spiacente, la Mini-Chat non è al momento disponibile',
+ 'MCHAT_ERROR' => 'Errore',
+ 'MCHAT_FLOOD' => 'Non puoi inviare un altro messaggio così presto dopo ultimo',
'MCHAT_FOE' => 'Questo messaggio è stato inviato da %1$s che è attualmente sulla tua lista da ignorare.',
'MCHAT_HELP' => 'Regole mChat',
- 'MCHAT_HIDE_LIST' => 'Nascondi Lista',
+ 'MCHAT_HIDE_LIST' => 'Nascondi Lista',
'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',
- 'MCHAT_NO_CUSTOM_PAGE' => 'La pagina mChat personalizzata non si attiva in questo momento!',
+ 'MCHAT_MESS_LONG' => 'Il tuo messaggio è troppo lungo.\n Perfavore limita a %s caratteri',
+ 'MCHAT_NO_CUSTOM_PAGE' => 'La pagina mChat personalizzata non si attiva in questo momento!',
'MCHAT_NOACCESS' => 'Non hai il permesso di postare in mChat',
- 'MCHAT_NOACCESS_ARCHIVE' => 'Non hai il permesso di visualizzare questo archivio',
- 'MCHAT_NOJAVASCRIPT' => 'Il tuo browser non supporta JavaScript oppure JavaScript è disabilitato',
+ 'MCHAT_NOACCESS_ARCHIVE' => 'Non hai il permesso di visualizzare questo archivio',
+ 'MCHAT_NOJAVASCRIPT' => 'Il tuo browser non supporta JavaScript oppure JavaScript è disabilitato',
'MCHAT_NOMESSAGE' => 'Nessun messaggio',
'MCHAT_NOMESSAGEINPUT' => 'Non hai inserito un messaggio',
'MCHAT_NOSMILE' => 'Smile non trovato',
@@ -79,14 +78,14 @@ $lang = array_merge($lang, array(
'MCHAT_NOT_INSTALLED' => 'mChat database voci mancanti. Eseguire il %sinstaller%s per apportare le modifiche del database.',
'MCHAT_OK' => 'OK',
'MCHAT_PAUSE' => 'Pausa',
- 'MCHAT_LOAD' => 'Loading',
+ 'MCHAT_LOAD' => 'Loading',
'MCHAT_PERMISSIONS' => 'Cambia permessi utente',
'MCHAT_REFRESHING' => 'Refresh...',
'MCHAT_REFRESH_NO' => 'Autoupdate è off',
'MCHAT_REFRESH_YES' => 'Autoupdate ogni %d secondi',
'MCHAT_RESPOND' => 'Rispondere',
'MCHAT_RESET_QUESTION' => 'Cancellare area ingresso ?',
- 'MCHAT_SESSION_OUT' => 'Chat sessione scaduta',
+ 'MCHAT_SESSION_OUT' => 'Chat sessione scaduta',
'MCHAT_SHOW_LIST' => 'Mostra lista',
'MCHAT_SECOND' => 'secondo ',
'MCHAT_SECONDS' => 'secondi ',
@@ -95,21 +94,20 @@ $lang = array_merge($lang, array(
'MCHAT_TOTALMESSAGES' => 'Totale messaggi: %s ',
'MCHAT_USESOUND' => 'Usa suono ?',
-
'MCHAT_ONLINE_USERS_TOTAL' => 'In totale ci sono %d utenti in chat ',
'MCHAT_ONLINE_USER_TOTAL' => 'In totale un %d 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 %d secondi',
- 'MCHAT_NEW_TOPIC' => 'Nuovo Topic ',
- 'MCHAT_NEW_REPLY' => 'Nuova risposta ',
-
+ 'MCHAT_NEW_TOPIC' => 'Nuovo Topic ',
+ 'MCHAT_NEW_REPLY' => 'Nuova risposta ',
+
// 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',
@@ -118,7 +116,7 @@ $lang = array_merge($lang, array(
'CHAT_AREA' => 'Tipo di ingresso',
'CHAT_AREA_EXPLAIN' => 'Scegli il tipo di superficie da utilizzare per inserire la chat: Area di testo o area input',
'INPUT_AREA' => 'Input area',
- 'TEXT_AREA' => 'Testo area',
+ 'TEXT_AREA' => 'Testo area',
// ACP
'ACP_MCHAT_RULES_EXPLAIN' => 'Inserire le regole del forum qui. Ogni regola su una nuova linea. Limite a 255 caratteri.Questo messaggio può essere tradotto. (necessario modificare il file mchat_lang.php archiviare e leggere le istruzioni).',
'LOG_MCHAT_CONFIG_UPDATE' => 'Aggiornamento configurazione mChat ',
@@ -128,7 +126,7 @@ $lang = array_merge($lang, array(
'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_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',
@@ -142,7 +140,7 @@ $lang = array_merge($lang, array(
'MCHAT_PRUNE' => 'Abilita Cancellazione',
'MCHAT_PRUNE_EXPLAIN' => 'Impostare su SI per abilitare la funzione cancellazione automatica.Si verifica solo se un utente visualizza le pagine personalizzate o di archivio .',
'MCHAT_PRUNE_NUM' => 'Cancellazione numero',
- 'MCHAT_PRUNE_NUM_EXPLAIN' => 'Il numero di messaggi da mantenere in chat.',
+ '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.Recommandati da 10 a 30 .',
'MCHAT_MESSAGE_NUM' => 'Limite messaggi di pagina in Indice',
@@ -183,7 +181,7 @@ $lang = array_merge($lang, array(
'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.',
@@ -203,24 +201,24 @@ $lang = array_merge($lang, array(
'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_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_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
'LOG_MCHAT_TABLE_PRUNED' => 'mChat tabelle cancellate',
'ACP_USER_MCHAT' => 'mChat Opzioni',
- 'LOG_DELETED_MCHAT' => 'Cancella messaggi mChat » %1$s',
- 'LOG_EDITED_MCHAT' => 'Modifica messaggi mChat » %1$s',
+ 'LOG_DELETED_MCHAT' => 'Cancella messaggi mChat » %1$s',
+ 'LOG_EDITED_MCHAT' => 'Modifica messaggi mChat » %1$s',
'MCHAT_MESSAGE_LNGTH_EXPLAIN' => 'Caratteri: %d ',
- 'MCHAT_TOP_POSTERS' => 'Miglior Spammer',
- 'MCHAT_NEW_CHAT' => 'Nuovo messaggio in Chat !',
+ 'MCHAT_TOP_POSTERS' => 'Miglior Spammer',
+ 'MCHAT_NEW_CHAT' => 'Nuovo messaggio in Chat !',
'FONT_COLOR' => 'Font colore',
'FONT_COLOR_HIDE' => 'Nascondi colore font',
'FONT_HUGE' => 'Enorme',
@@ -229,7 +227,7 @@ $lang = array_merge($lang, array(
'FONT_SIZE' => 'Grandezza Font',
'FONT_SMALL' => 'Piccolo',
'FONT_TINY' => 'Molto Piccolo',
- 'MCHAT_SEND_PM' => 'Invia messaggio privato',
- 'MCHAT_PM' => '(PM)',
- 'MORE_SMILIES' => 'Altre Smile',
+ 'MCHAT_SEND_PM' => 'Invia messaggio privato',
+ 'MCHAT_PM' => '(PM)',
+ 'MORE_SMILIES' => 'Altre Smile',
));
\ No newline at end of file
diff --git a/language/it/info_acp_mchat.php b/language/it/info_acp_mchat.php
index 246bf97..852b92c 100644
--- a/language/it/info_acp_mchat.php
+++ b/language/it/info_acp_mchat.php
@@ -31,7 +31,6 @@ if (empty($lang) || !is_array($lang))
// Some characters for use
// ’ » “ ” …
-
$lang = array_merge($lang, array(
// UMIL stuff
@@ -56,7 +55,7 @@ $lang = array_merge($lang, array(
'MCHAT_ENABLE' => 'Abilita mChat Estensione',
'MCHAT_ENABLE_EXPLAIN' => 'Abilita o disabilita questa estensione globalmente.',
'MCHAT_AVATARS' => 'Visualizza avatar',
- 'MCHAT_AVATARS_EXPLAIN' => 'Se impostato su Sì, verranno visualizzati gli avatar degli utenti ridimensionate',
+ '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 Pagina Altezza',
@@ -70,7 +69,7 @@ $lang = array_merge($lang, array(
'MCHAT_PRUNE' => 'Abilita cancellazione automatica',
'MCHAT_PRUNE_EXPLAIN' => 'Impostare su SI per abilitare la funzione di cancellazione automatica.Si verifica solo se un utente visualizza le pagine personalizzate o di archivio .',
'MCHAT_PRUNE_NUM' => 'Numero cancellazione automatica',
- 'MCHAT_PRUNE_NUM_EXPLAIN' => 'Il numero di messaggi da mantenere in chat.',
+ '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 in chat.Recommandato da 10 a 30 .',
'MCHAT_MESSAGE_NUM' => 'Limite messaggio di pagina Indice',
@@ -111,7 +110,7 @@ $lang = array_merge($lang, array(
'MCHAT_MESSAGES' => 'Opzioni Messaggi',
'MCHAT_PAUSE_ON_INPUT' => 'Pausa in ingresso',
'MCHAT_PAUSE_ON_INPUT_EXPLAIN' => 'Se impostato Sì, allora la chat non verrà aggiornata automaticamente se un utente inserisce un messaggio in area di immissione',
-
+
// error reporting
'MCHAT_NEEDS_UPDATING' => 'Questa estensione mChat necessita di un aggiornamento. Si prega di visitare il fondatore per eseguire il programma di installazione.',
'MCHAT_WRONG_VERSION' => 'È installata una versione errata di questa estensione. Eseguire il %sinstaller%s per la nuova versione.',
@@ -131,16 +130,16 @@ $lang = array_merge($lang, array(
'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 grande.',
'TOO_SMALL_WHOIS_REFRESH' => 'Il valore di aggiornamento whois è troppo piccolo.',
- 'TOO_LARGE_WHOIS_REFRESH' => 'Il valore di aggiornamento whois è troppo grande.',
+ 'TOO_LARGE_WHOIS_REFRESH' => 'Il valore di aggiornamento whois è troppo grande.',
'TOO_SMALL_INDEX_HEIGHT' => 'Il valore di altezza indice è troppo piccolo.',
'TOO_LARGE_INDEX_HEIGHT' => 'Il valore di altezza indice è troppo grande.',
'TOO_SMALL_CUSTOM_HEIGHT' => 'Il valore di altezza personalizzato è troppo piccolo.',
'TOO_LARGE_CUSTOM_HEIGHT' => 'Il valore di altezza personalizzato è troppo grande.',
'TOO_SHORT_STATIC_MESSAGE' => 'Il valore di messaggio statico è troppo corto.',
- 'TOO_LONG_STATIC_MESSAGE' => 'Il valore di messaggio statico è troppo grande.',
+ 'TOO_LONG_STATIC_MESSAGE' => 'Il valore di messaggio statico è troppo grande.',
'TOO_SMALL_TIMEOUT' => 'Il valore di timeout utente è troppo piccolo.',
'TOO_LARGE_TIMEOUT' => 'Il valore di timeout utente è troppo grande.',
-
+
// User perms
'ACL_U_MCHAT_USE' => 'Puoi usare mchat',
'ACL_U_MCHAT_VIEW' => 'Puoi vedere mChat mchat',
@@ -155,5 +154,5 @@ $lang = array_merge($lang, array(
// Admin perms
'ACL_A_MCHAT' => array('lang' => 'Puoi modificare impostazioni mChat', 'cat' => 'permessi'), // Using a phpBB category here
-
+
));
diff --git a/language/nl/common.php b/language/nl/common.php
deleted file mode 100644
index d7bc350..0000000
--- a/language/nl/common.php
+++ /dev/null
@@ -1,235 +0,0 @@
- 'Mini-Chat',
- 'MCHAT_ADD' => 'Versturen',
- 'MCHAT_ANNOUNCEMENT' => 'Aankondiging',
- 'MCHAT_ARCHIVE' => 'Archief',
- 'MCHAT_ARCHIVE_PAGE' => 'Mini-Chat Archief',
- 'MCHAT_BBCODES' => 'BBCodes',
- 'MCHAT_CLEAN' => 'Opschonen',
- 'MCHAT_CLEANED' => 'Alle berichten zijn succesvol verwijderd',
- 'MCHAT_CLEAR_INPUT' => 'Reset',
- 'MCHAT_COPYRIGHT' => 'RMcGirr83 © dmzx ',
- 'MCHAT_CUSTOM_BBCODES' => 'gebruik BBCodes',
- 'MCHAT_DELALLMESS' => 'Verwijder alle berichten?',
- 'MCHAT_DELCONFIRM' => 'Ben je akkoord om te verwijderen?',
- 'MCHAT_DELITE' => 'Verwijder',
- 'MCHAT_EDIT' => 'Bewerk',
- 'MCHAT_EDITINFO' => 'Bewerk het bericht en klik op OKE',
- 'MCHAT_ENABLE' => 'Sorry, de Mini-Chat is momenteel niet beschikbaar',
- 'MCHAT_ERROR' => 'Fout',
- 'MCHAT_FLOOD' => 'Je kunt niet zo snel een bericht plaatsen, na jouw laatste bericht !!',
- 'MCHAT_FOE' => 'Dit bericht was gemaakt door %1$s die momenteel op jouw negeerlijst staat.',
- 'MCHAT_HELP' => 'mChat Regels',
- 'MCHAT_HIDE_LIST' => 'Lijst verbergen',
- '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',
- 'MCHAT_NO_CUSTOM_PAGE' => 'De gebruikte mChat pagina is niet actief op dit moment!',
- 'MCHAT_NOACCESS' => 'Je hebt geen permissie om een bericht in mChat te plaatsen',
- 'MCHAT_NOACCESS_ARCHIVE' => 'Je hebt geen permissie om het archief te bekijken',
- 'MCHAT_NOJAVASCRIPT' => 'Je browser ondersteunt geen JavaScript of JavaScript is uitgeschakeld',
- 'MCHAT_NOMESSAGE' => 'Geen berichten',
- 'MCHAT_NOMESSAGEINPUT' => 'Je hebt geen bericht ingevoerd',
- 'MCHAT_NOSMILE' => 'Smilies zijn niet gevonden',
- 'MCHAT_NOTINSTALLED_USER' => 'mChat is niet geinstalleerd. Neem contact op met de beheerder van het forum.',
- 'MCHAT_NOT_INSTALLED' => 'mChat database invoeringen ontbreken. voer a.u.b. de %sinstaller%s om de database veranderingen te maken voor deze modificatie.',
- 'MCHAT_OK' => 'OK',
- 'MCHAT_PAUSE' => 'Pauze',
- 'MCHAT_LOAD' => 'Laden',
- 'MCHAT_PERMISSIONS' => 'Verander gebruikers permissie',
- 'MCHAT_REFRESHING' => 'Verversen...',
- 'MCHAT_REFRESH_NO' => 'Verversen is uit',
- 'MCHAT_REFRESH_YES' => 'Ververs iedere %d seconden',
- 'MCHAT_RESPOND' => 'Reageer naar gebruiker',
- 'MCHAT_RESET_QUESTION' => 'Schoon het ingave veld op?',
- 'MCHAT_SESSION_OUT' => 'Chat sessie is verlopen',
- 'MCHAT_SHOW_LIST' => 'Toon lijst',
- 'MCHAT_SECOND' => 'seconde ',
- 'MCHAT_SECONDS' => 'seconden ',
- 'MCHAT_SESSION_ENDS' => 'Chat sessie eindigdt in',
- 'MCHAT_SMILES' => 'Smilies',
-
- 'MCHAT_TOTALMESSAGES' => 'Total berichten: %s ',
- 'MCHAT_USESOUND' => 'Gebruik geluid?',
-
-
- 'MCHAT_ONLINE_USERS_TOTAL' => 'In totaal zijn er %d gebruikers aan het chatten ',
- 'MCHAT_ONLINE_USER_TOTAL' => 'In total is er %d gebruiker aan het chatten ',
- 'MCHAT_NO_CHATTERS' => 'NNiemand is aan het chatten',
- 'MCHAT_ONLINE_EXPLAIN' => 'gebasserd op actieve gebruikers over de afgelopen %s',
-
- 'WHO_IS_CHATTING' => 'Wie is aan het chatten',
- 'WHO_IS_REFRESH_EXPLAIN' => 'ververst iedere %d seconden',
- 'MCHAT_NEW_TOPIC' => 'Nieuw Topic ',
- 'MCHAT_NEW_REPLY' => 'Nieuw antwoord ',
-
- // 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',
- 'DISPLAY_NEW_TOPICS' => 'Toon nieuwe topics in de chat',
- 'DISPLAY_AVATARS' => 'Toon avatars in de chat',
- 'CHAT_AREA' => 'Invoer type',
- 'CHAT_AREA_EXPLAIN' => 'Kies welke type te gebruiken om een chat in te voeren: een tekst gebied of 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. Je kunt maximaal 255 karakters gebruiken.Deze boodschap kan worden vertaald.. (Je moet de mchat_lang.php file aanpassen en lees de instructies).',
- 'LOG_MCHAT_CONFIG_UPDATE' => 'Update mChat configuratie ',
- '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.Je bent gelimiteerd tussen de 50 en 1000 .',
- '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.Je bent gelimiteerd tussen 5 en 60 seconden .',
- 'MCHAT_PRUNE' => 'Inschakelen opschonen van berichten',
- 'MCHAT_PRUNE_EXPLAIN' => 'Vink Ja aan als je het opschonen van berichten wilt inschakelen.Werkt alleen als een gebruiker de gemaakte of archief pagina bekijkt .',
- '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.Aanbevolen is tussen de 10 en 30 berichten .',
- '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.Aanbevolen is tussen de 10 en 50 berichten .',
- 'MCHAT_ARCHIVE_LIMIT' => 'Archief limiet',
- 'MCHAT_ARCHIVE_LIMIT_EXPLAIN' => 'Het maximale aantal berichten, welke getoond worden in de mChat op de Archief pagina.Aanbevolen is tussen de 25 en 50 berichten .',
- 'MCHAT_FLOOD_TIME' => 'Wachttijd plaatsen volgende bericht, na reeds geplaatst bericht',
- 'MCHAT_FLOOD_TIME_EXPLAIN' => 'et aantal seconden dat een gebruiker moet wachten om een volgend bericht te plaatsen in de mChat.Aanbevolen is tussen de 5 en 30 seconden, 0 is uitschakelen van deze functie .',
- 'MCHAT_MAX_MESSAGE_LENGTH' => 'Maximale berichten lengte',
- 'MCHAT_MAX_MESSAGE_LENGTH_EXPLAIN' => 'aximaal toegestane aantal karakters per gepost bericht.aanbevolen is tussen de 100 en 500 karakters, 0 is uitschakelen van deze functie .',
- '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.Je bent gelimiteerd tussen de 50 en 1000 pixels .',
- 'MCHAT_DATE_FORMAT' => 'Datum weergave',
- 'MCHAT_DATE_FORMAT_EXPLAIN' => 'De gebruikte syntax is identiek aan de PHP date() 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.Je bent gelimiteerd tussen de 30 en 300 seconden .',
- 'MCHAT_BBCODES_DISALLOWED' => 'Niet toegestane bbcodes',
- 'MCHAT_BBCODES_DISALLOWED_EXPLAIN' => 'Hier kun je de bbcodes plaatsen, die niet zijn toegstaannot om te gebruiken in een bericht. Aparte BBCodes met een verticale balk , bijvoorbeeld: 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. Stel 0 in om de vertoning uit te schakelen. Je bent gelimiteerd tot 255 karakters.Deze boodschap kan worden vertaald.. (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.Je bent gelimiteerd tot de %sforum instellingen voor de chat sessie, welke momenteel is ingesteld op %s seconden ',
- 'MCHAT_OVERRIDE_SMILIE_LIMIT' => 'Aantal smilie limiet',
- 'MCHAT_OVERRIDE_SMILIE_LIMIT_EXPLAIN' => 'SStel 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 berichtU moet de add-on voor de nieuwe post meldingen geïnstalleerd hebben (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
- 'LOG_MCHAT_TABLE_PRUNED' => 'mChat tabel is ingekort',
- 'ACP_USER_MCHAT' => 'mChat Instellingen',
- 'LOG_DELETED_MCHAT' => 'Verwijder mChat berichten » %1$s',
- 'LOG_EDITED_MCHAT' => 'Bewerk mChat berichten » %1$s',
- 'MCHAT_MESSAGE_LNGTH_EXPLAIN' => 'Overgebleven karakters: %d ',
- 'MCHAT_TOP_POSTERS' => 'Top Spammers',
- 'MCHAT_NEW_CHAT' => 'Nieuw Chat bericht!',
- 'FONT_COLOR' => 'letter kleur',
- 'FONT_COLOR_HIDE' => 'verberg letter kleur',
- 'FONT_HUGE' => 'Zeer Groot',
- 'FONT_LARGE' => 'Groot',
- 'FONT_NORMAL' => 'Normaal',
- 'FONT_SIZE' => 'Letter grootte',
- 'FONT_SMALL' => 'Klein',
- 'FONT_TINY' => 'zeer klein',
- 'MCHAT_SEND_PM' => 'Stuur prive bericht',
- 'MCHAT_PM' => '(PM)',
- 'MORE_SMILIES' => 'Meer Smilies',
-));
\ No newline at end of file
diff --git a/language/nl/info_acp_mchat.php b/language/nl/info_acp_mchat.php
deleted file mode 100644
index 1b97db6..0000000
--- a/language/nl/info_acp_mchat.php
+++ /dev/null
@@ -1,159 +0,0 @@
- 'Configuratie',
- 'ACP_CAT_MCHAT' => 'mChat',
- 'ACP_MCHAT_TITLE' => 'Mini-Chat',
- 'ACP_MCHAT_TITLE_EXPLAIN' => 'Een mini chat (aka “shout box”) voor gebruik op jouw forum',
- 'MCHAT_TABLE_DELETED' => 'De mChat tabel is succesvol verwijderd',
- 'MCHAT_TABLE_CREATED' => 'De mChat tabel is succesvol aangemaakt',
- 'MCHAT_TABLE_UPDATED' => 'De mChat tabel is succesvol bijgewerkt.',
- 'MCHAT_NOTHING_TO_UPDATE' => 'Niks te doen..... door gaan',
- 'UCP_CAT_MCHAT' => 'mChat voorkeuren',
- 'UCP_MCHAT_CONFIG' => 'Gebruiker mChat voorkeuren',
-
- // ACP entries
- 'ACP_MCHAT_RULES' => 'Regels',
- 'ACP_MCHAT_RULES_EXPLAIN' => 'Verander hier de regels van het forum. Elke regel op een nieuwe lijn. Je kunt maximaal 255 karakters gebruiken.Deze boodschap kan worden vertaald.. (Je moet de mchat_lang.php file aanpassen en lees de instructies).',
- 'LOG_MCHAT_CONFIG_UPDATE' => 'Update mChat configuratie ',
- '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.Je bent gelimiteerd tussen de 50 en 1000 .',
- '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.Je bent gelimiteerd tussen 5 en 60 seconden .',
- 'MCHAT_PRUNE' => 'Inschakelen opschonen van berichten',
- 'MCHAT_PRUNE_EXPLAIN' => 'Vink Ja aan als je het opschonen van berichten wilt inschakelen.Werkt alleen als een gebruiker de gemaakte of archief pagina bekijkt .',
- '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.Aanbevolen is tussen de 10 en 30 berichten .',
- '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.Aanbevolen is tussen de 10 en 50 berichten .',
- 'MCHAT_ARCHIVE_LIMIT' => 'Archief limiet',
- 'MCHAT_ARCHIVE_LIMIT_EXPLAIN' => 'Het maximale aantal berichten, welke getoond worden in de mChat op de Archief pagina.Aanbevolen is tussen de 25 en 50 berichten .',
- '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.Aanbevolen is tussen de 5 en 30 seconden, 0 is uitschakelen van deze functie .',
- 'MCHAT_MAX_MESSAGE_LENGTH' => 'Maximale berichten lengte',
- 'MCHAT_MAX_MESSAGE_LENGTH_EXPLAIN' => 'Maximaal toegestane aantal karakters per gepost bericht.anbevolen is tussen de 100 en 500 karakters, 0 is uitschakelen van deze functie .',
- '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.Je bent gelimiteerd tussen de 50 en 1000 pixels .',
- 'MCHAT_DATE_FORMAT' => 'Datum weergave',
- 'MCHAT_DATE_FORMAT_EXPLAIN' => 'De gebruikte syntax is identiek aan de PHP date() 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.Je bent gelimiteerd tussen de 30 en 300 seconden .',
- 'MCHAT_BBCODES_DISALLOWED' => 'Niet toegestane bbcodes',
- 'MCHAT_BBCODES_DISALLOWED_EXPLAIN' => 'Hier kun je de bbcodes plaatsen, die niet zijn toegstaannot om te gebruiken in een bericht. Aparte BBCodes met een verticale balk , bijvoorbeeld: 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. Stel 0 in om de vertoning uit te schakelen. Je bent gelimiteerd tot 255 karakters.Deze boodschap kan worden vertaald.. (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.Je bent gelimiteerd tot de %sforum instellingen voor de chat sessie, welke momenteel is ingesteld op %s seconden ',
- '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 berichtJe moet de add-on voor de nieuwe post meldingen geïnstalleerd hebben (binnen de directory van de download voor deze extensie).',
- '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.',
-
- // User perms
- 'ACL_U_MCHAT_USE' => 'Je kunt mChat gebruiken',
- 'ACL_U_MCHAT_VIEW' => 'Je kunt mChat bekijken',
- 'ACL_U_MCHAT_EDIT' => 'Je kunt mchat berichten bewerken',
- 'ACL_U_MCHAT_DELETE' => 'Je kunt mChat berichten verwijderen',
- 'ACL_U_MCHAT_IP' => 'Je kunt mChat IP adressen bekijken',
- 'ACL_U_MCHAT_FLOOD_IGNORE' => 'Je kunt mChat de hoeveelheid aan data negeren',
- 'ACL_U_MCHAT_ARCHIVE' => 'Je kunt het archief van mChat bekijken',
- 'ACL_U_MCHAT_BBCODE' => 'Je kunt de bbcode in mChat gebruiken',
- 'ACL_U_MCHAT_SMILIES' => 'Je kunt de smilies in mChat gebruiken',
- 'ACL_U_MCHAT_URLS' => 'Je kunt urls posten in mChat',
-
- // Admin perms
- 'ACL_A_MCHAT' => array('lang' => 'Can manage mChat settings', 'cat' => 'permissions'), // Using a phpBB category here
-
-));
diff --git a/language/pl/common.php b/language/pl/common.php
index 631d6e0..cbd6c5e 100644
--- a/language/pl/common.php
+++ b/language/pl/common.php
@@ -7,7 +7,6 @@
*
*/
-
/**
* DO NOT CHANGE!
*/
@@ -42,8 +41,8 @@ $lang = array_merge($lang, array(
'MCHAT_TITLE' => 'Mini-Chat',
'MCHAT_ADD' => 'Wyślij',
'MCHAT_ANNOUNCEMENT' => 'Ogłoszenie',
- 'MCHAT_ARCHIVE' => 'Archiwum',
- 'MCHAT_ARCHIVE_PAGE' => 'Mini-Chat Archiwum',
+ 'MCHAT_ARCHIVE' => 'Archiwum',
+ 'MCHAT_ARCHIVE_PAGE' => 'Mini-Chat Archiwum',
'MCHAT_BBCODES' => 'BBCodes',
'MCHAT_CLEAN' => 'Wyczyść',
'MCHAT_CLEANED' => 'Wszystkie wiadomości zostały pomyślnie usunięte',
@@ -55,23 +54,23 @@ $lang = array_merge($lang, array(
'MCHAT_DELITE' => 'Usuń',
'MCHAT_EDIT' => 'Edytuj',
'MCHAT_EDITINFO' => 'Edytuj wiadomość i wciśnij OK',
- 'MCHAT_ENABLE' => 'Przepraszamy, Mini-Chat jest aktualnie niedostępny',
- 'MCHAT_ERROR' => 'Błąd',
- 'MCHAT_FLOOD' => 'Nie możesz wysłać kolejnej wiadomośći w tak krótkim czasie',
+ 'MCHAT_ENABLE' => 'Przepraszamy, Mini-Chat jest aktualnie niedostępny',
+ 'MCHAT_ERROR' => 'Błąd',
+ 'MCHAT_FLOOD' => 'Nie możesz wysłać kolejnej wiadomośći w tak krótkim czasie',
'MCHAT_FOE' => 'Wiadomośc została wysłana przez użytkownika %1$s który znajduje się na Twojej liście osób ignorowanych.',
'MCHAT_HELP' => 'mChat Reguamin',
- 'MCHAT_HIDE_LIST' => 'ukryj listę',
+ 'MCHAT_HIDE_LIST' => 'ukryj listę',
'MCHAT_HOUR' => 'godzina ',
'MCHAT_HOURS' => 'godziny',
'MCHAT_IP' => 'IP',
-
+
'MCHAT_MINUTE' => 'minuta ',
'MCHAT_MINUTES' => 'minuty ',
- 'MCHAT_MESS_LONG' => 'Twoja wiadomość jest za długa.\Proszę ogranicz ją do %s characters',
- 'MCHAT_NO_CUSTOM_PAGE' => 'mChat w osobnym oknie jest aktualnie niedostępny!',
+ 'MCHAT_MESS_LONG' => 'Twoja wiadomość jest za długa.\Proszę ogranicz ją do %s characters',
+ 'MCHAT_NO_CUSTOM_PAGE' => 'mChat w osobnym oknie jest aktualnie niedostępny!',
'MCHAT_NOACCESS' => 'Nie masz uprawnień do postowania na mChat',
- 'MCHAT_NOACCESS_ARCHIVE' => 'Nie masz uprawnień do przeglądania archiwum',
- 'MCHAT_NOJAVASCRIPT' => 'Twoja przeglądarka nie wspiera JavaScript albo JavaScript jest wyłączona',
+ 'MCHAT_NOACCESS_ARCHIVE' => 'Nie masz uprawnień do przeglądania archiwum',
+ 'MCHAT_NOJAVASCRIPT' => 'Twoja przeglądarka nie wspiera JavaScript albo JavaScript jest wyłączona',
'MCHAT_NOMESSAGE' => 'Nie ma wiadomości',
'MCHAT_NOMESSAGEINPUT' => 'Nie wprowadziłeś wiadomości',
'MCHAT_NOSMILE' => 'Nie znaleziono emotikona',
@@ -79,14 +78,14 @@ $lang = array_merge($lang, array(
'MCHAT_NOT_INSTALLED' => 'W bazie danych mChat brakuje. Proszę uruchom %sinstalator%s aby wprowadzić zmiany w bazie danych rozszerzenia.',
'MCHAT_OK' => 'OK',
'MCHAT_PAUSE' => 'Wstrzymany',
- 'MCHAT_LOAD' => 'Wczytuję',
+ 'MCHAT_LOAD' => 'Wczytuję',
'MCHAT_PERMISSIONS' => 'Zmień uprawnienia użytkownika',
'MCHAT_REFRESHING' => 'Odświeżanie...',
'MCHAT_REFRESH_NO' => 'Auto-aktualizacja jest wyłączona',
'MCHAT_REFRESH_YES' => 'Automatycznie-aktualizuj co %d sekund',
'MCHAT_RESPOND' => 'Odpowiedz użytkownikowi',
'MCHAT_RESET_QUESTION' => 'Wyczyściuć tabelę wprowadzania tekstu ?',
- 'MCHAT_SESSION_OUT' => 'Sesja mChat wygasła',
+ 'MCHAT_SESSION_OUT' => 'Sesja mChat wygasła',
'MCHAT_SHOW_LIST' => 'Pokaż listę',
'MCHAT_SECOND' => 'sekunda ',
'MCHAT_SECONDS' => 'sekundy ',
@@ -95,21 +94,20 @@ $lang = array_merge($lang, array(
'MCHAT_TOTALMESSAGES' => 'Wszystkie wiadomości %s ',
'MCHAT_USESOUND' => 'Włączyć dźwięk ?',
-
'MCHAT_ONLINE_USERS_TOTAL' => 'Aktualnie jest tutaj %d czatujących użytkowników ',
'MCHAT_ONLINE_USER_TOTAL' => 'Aktualnie %d 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 %d sekund',
- 'MCHAT_NEW_TOPIC' => 'Nowy Temat ',
- 'MCHAT_NEW_REPLY' => 'Nowa Odpowiedź ',
-
+ 'MCHAT_NEW_TOPIC' => 'Nowy Temat ',
+ 'MCHAT_NEW_REPLY' => 'Nowa Odpowiedź ',
+
// 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',
@@ -118,7 +116,7 @@ $lang = array_merge($lang, array(
'CHAT_AREA' => 'Typ wprowadzania',
'CHAT_AREA_EXPLAIN' => 'Wybierz jaki typ obszaru wybrać do wprowadzania tekstu: A text area or an input area',
'INPUT_AREA' => 'Obszar wprowadzania',
- 'TEXT_AREA' => 'Obszar tekstu',
+ 'TEXT_AREA' => 'Obszar tekstu',
// ACP
'ACP_MCHAT_RULES_EXPLAIN' => 'Tutaj wprowadź regulamin mChat. Każdy podpunkt w oddzielnej lini. Limit znaków wynosi 255. ',
'LOG_MCHAT_CONFIG_UPDATE' => 'Aktualizuj konfigurację mChat ',
@@ -128,7 +126,7 @@ $lang = array_merge($lang, array(
'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_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',
@@ -142,7 +140,7 @@ $lang = array_merge($lang, array(
'MCHAT_PRUNE' => 'Włącz opcję wyczyszczenia wiadomości',
'MCHAT_PRUNE_EXPLAIN' => 'Jeśli zaznaczono tak, opcja wyczyszczenia wiadomości będzie dostępna.Tylko wtedy, jeśli użytkownik wyświetli stronę niestandardową lub archiwum .',
'MCHAT_PRUNE_NUM' => 'Ilość wyczyszczonych wiadomości',
- 'MCHAT_PRUNE_NUM_EXPLAIN' => 'Wpisz liczbę.',
+ 'MCHAT_PRUNE_NUM_EXPLAIN' => 'Wpisz liczbę.',
'MCHAT_MESSAGE_LIMIT' => 'Limit wiadomości',
'MCHAT_MESSAGE_LIMIT_EXPLAIN' => 'Maksymalna ilość wiadomości wyświetlana w oknie mChat.Rekomendowane od 10 do 30 .',
'MCHAT_MESSAGE_NUM' => 'Limit wiadomości na stronie głównej',
@@ -183,7 +181,7 @@ $lang = array_merge($lang, array(
'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.',
@@ -203,24 +201,24 @@ $lang = array_merge($lang, array(
'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_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_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
'LOG_MCHAT_TABLE_PRUNED' => 'Tabela mChat została wyczyszczona',
'ACP_USER_MCHAT' => 'mChat Ustawienia',
- 'LOG_DELETED_MCHAT' => 'Usuń wiadomości mChat » %1$s',
- 'LOG_EDITED_MCHAT' => 'Edytuj wiadomość mChat » %1$s',
+ 'LOG_DELETED_MCHAT' => 'Usuń wiadomości mChat » %1$s',
+ 'LOG_EDITED_MCHAT' => 'Edytuj wiadomość mChat » %1$s',
'MCHAT_MESSAGE_LNGTH_EXPLAIN' => 'Pozostało znaków: %d ',
- 'MCHAT_TOP_POSTERS' => 'Top Spammerzy',
- 'MCHAT_NEW_CHAT' => 'Nowa wiadomośc na chacie!',
+ 'MCHAT_TOP_POSTERS' => 'Top Spammerzy',
+ 'MCHAT_NEW_CHAT' => 'Nowa wiadomośc na chacie!',
'FONT_COLOR' => 'Kolor czcionki',
'FONT_COLOR_HIDE' => 'Ukryj kolor czcionki',
'FONT_HUGE' => 'Ogromne',
@@ -229,7 +227,7 @@ $lang = array_merge($lang, array(
'FONT_SIZE' => 'Rozmiar czcionki',
'FONT_SMALL' => 'Mały',
'FONT_TINY' => 'Malutki',
- 'MCHAT_SEND_PM' => 'Wyślij prywatną wiadomość',
- 'MCHAT_PM' => '(PM)',
- 'MORE_SMILIES' => 'Więcej emotikon',
+ 'MCHAT_SEND_PM' => 'Wyślij prywatną wiadomość',
+ 'MCHAT_PM' => '(PM)',
+ 'MORE_SMILIES' => 'Więcej emotikon',
));
\ No newline at end of file
diff --git a/language/pl/info_acp_mchat.php b/language/pl/info_acp_mchat.php
index c5c8fec..60a7211 100644
--- a/language/pl/info_acp_mchat.php
+++ b/language/pl/info_acp_mchat.php
@@ -31,7 +31,6 @@ if (empty($lang) || !is_array($lang))
// Some characters for use
// ’ » “ ” …
-
$lang = array_merge($lang, array(
// UMIL stuff
@@ -56,7 +55,7 @@ $lang = array_merge($lang, array(
'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_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',
@@ -70,7 +69,7 @@ $lang = array_merge($lang, array(
'MCHAT_PRUNE' => 'Włącz opcję wyczyszczenia wiadomości',
'MCHAT_PRUNE_EXPLAIN' => 'Jeśli zaznaczono tak, opcja wyczyszczenia wiadomości będzie dostępna.Tylko wtedy, jeśli użytkownik wyświetli stronę niestandardową lub archiwum .',
'MCHAT_PRUNE_NUM' => 'Ilość wyczyszczonych wiadomości',
- 'MCHAT_PRUNE_NUM_EXPLAIN' => 'Wpisz liczbę',
+ 'MCHAT_PRUNE_NUM_EXPLAIN' => 'Wpisz liczbę',
'MCHAT_MESSAGE_LIMIT' => 'Limit wiadomości',
'MCHAT_MESSAGE_LIMIT_EXPLAIN' => 'Maksymalna ilość wiadomości wyświetlana w oknie mChat.Rekomendowane od 10 do 30 .',
'MCHAT_MESSAGE_NUM' => 'Limit wiadomości na stronie głównej',
@@ -111,7 +110,7 @@ $lang = array_merge($lang, array(
'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.',
@@ -131,16 +130,16 @@ $lang = array_merge($lang, array(
'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_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_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.',
-
+
// User perms
'ACL_U_MCHAT_USE' => 'Może używać mChat',
'ACL_U_MCHAT_VIEW' => 'Może przeglądać mChat',
@@ -155,5 +154,5 @@ $lang = array_merge($lang, array(
// Admin perms
'ACL_A_MCHAT' => array('lang' => 'Może zarządzać ustawieniami Mchat', 'cat' => 'permissions'), // Using a phpBB category here
-
+
));
diff --git a/license.txt b/license.txt
index d159169..a330e6d 100644
--- a/license.txt
+++ b/license.txt
@@ -1,12 +1,12 @@
- GNU GENERAL PUBLIC LICENSE
- Version 2, June 1991
+ GNU GENERAL PUBLIC LICENSE
+ Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
- Preamble
+ Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
@@ -56,7 +56,7 @@ patent must be licensed for everyone's free use or not licensed at all.
The precise terms and conditions for copying, distribution and
modification follow.
- GNU GENERAL PUBLIC LICENSE
+ GNU GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License applies to any program or other work which contains
@@ -92,24 +92,24 @@ of it, thus forming a work based on the Program, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
- a) You must cause the modified files to carry prominent notices
- stating that you changed the files and the date of any change.
+ a) You must cause the modified files to carry prominent notices
+ stating that you changed the files and the date of any change.
- b) You must cause any work that you distribute or publish, that in
- whole or in part contains or is derived from the Program or any
- part thereof, to be licensed as a whole at no charge to all third
- parties under the terms of this License.
+ b) You must cause any work that you distribute or publish, that in
+ whole or in part contains or is derived from the Program or any
+ part thereof, to be licensed as a whole at no charge to all third
+ parties under the terms of this License.
- c) If the modified program normally reads commands interactively
- when run, you must cause it, when started running for such
- interactive use in the most ordinary way, to print or display an
- announcement including an appropriate copyright notice and a
- notice that there is no warranty (or else, saying that you provide
- a warranty) and that users may redistribute the program under
- these conditions, and telling the user how to view a copy of this
- License. (Exception: if the Program itself is interactive but
- does not normally print such an announcement, your work based on
- the Program is not required to print an announcement.)
+ c) If the modified program normally reads commands interactively
+ when run, you must cause it, when started running for such
+ interactive use in the most ordinary way, to print or display an
+ announcement including an appropriate copyright notice and a
+ notice that there is no warranty (or else, saying that you provide
+ a warranty) and that users may redistribute the program under
+ these conditions, and telling the user how to view a copy of this
+ License. (Exception: if the Program itself is interactive but
+ does not normally print such an announcement, your work based on
+ the Program is not required to print an announcement.)
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Program,
@@ -135,22 +135,22 @@ the scope of this License.
under Section 2) in object code or executable form under the terms of
Sections 1 and 2 above provided that you also do one of the following:
- a) Accompany it with the complete corresponding machine-readable
- source code, which must be distributed under the terms of Sections
- 1 and 2 above on a medium customarily used for software interchange; or,
+ a) Accompany it with the complete corresponding machine-readable
+ source code, which must be distributed under the terms of Sections
+ 1 and 2 above on a medium customarily used for software interchange; or,
- b) Accompany it with a written offer, valid for at least three
- years, to give any third party, for a charge no more than your
- cost of physically performing source distribution, a complete
- machine-readable copy of the corresponding source code, to be
- distributed under the terms of Sections 1 and 2 above on a medium
- customarily used for software interchange; or,
+ b) Accompany it with a written offer, valid for at least three
+ years, to give any third party, for a charge no more than your
+ cost of physically performing source distribution, a complete
+ machine-readable copy of the corresponding source code, to be
+ distributed under the terms of Sections 1 and 2 above on a medium
+ customarily used for software interchange; or,
- c) Accompany it with the information you received as to the offer
- to distribute corresponding source code. (This alternative is
- allowed only for noncommercial distribution and only if you
- received the program in object code or executable form with such
- an offer, in accord with Subsection b above.)
+ c) Accompany it with the information you received as to the offer
+ to distribute corresponding source code. (This alternative is
+ allowed only for noncommercial distribution and only if you
+ received the program in object code or executable form with such
+ an offer, in accord with Subsection b above.)
The source code for a work means the preferred form of the work for
making modifications to it. For an executable work, complete source
@@ -255,7 +255,7 @@ make exceptions for this. Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.
- NO WARRANTY
+ NO WARRANTY
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
@@ -277,9 +277,9 @@ YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
- END OF TERMS AND CONDITIONS
+ END OF TERMS AND CONDITIONS
- How to Apply These Terms to Your New Programs
+ How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
@@ -290,32 +290,32 @@ to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
-
- Copyright (C)
+
+ Copyright (C)
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
- You should have received a copy of the GNU General Public License along
- with this program; if not, write to the Free Software Foundation, Inc.,
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ You should have received a copy of the GNU General Public License along
+ with this program; if not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Also add information on how to contact you by electronic and paper mail.
If the program is interactive, make it output a short notice like this
when it starts in an interactive mode:
- Gnomovision version 69, Copyright (C) year name of author
- Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
- This is free software, and you are welcome to redistribute it
- under certain conditions; type `show c' for details.
+ Gnomovision version 69, Copyright (C) year name of author
+ Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, the commands you use may
diff --git a/migrations/mchat_module.php b/migrations/mchat_module.php
index e4654e4..cddc226 100644
--- a/migrations/mchat_module.php
+++ b/migrations/mchat_module.php
@@ -11,7 +11,7 @@ namespace dmzx\mchat\migrations;
class mchat_module extends \phpbb\db\migration\migration
{
-
+
public function update_data()
{
return array(
diff --git a/migrations/mchat_module1.php b/migrations/mchat_module1.php
index 9638cbd..5627ffe 100644
--- a/migrations/mchat_module1.php
+++ b/migrations/mchat_module1.php
@@ -17,14 +17,13 @@ class mchat_module1 extends \phpbb\db\migration\migration
return array(
array('module.add', array('ucp', 'UCP_MAIN', 'UCP_MCHAT_CONFIG')),
array('module.add', array(
- 'ucp', 'UCP_MCHAT_CONFIG', array(
+ 'ucp', 'UCP_MCHAT_CONFIG', array(
'module_basename' => '\dmzx\mchat\ucp\ucp_mchat_module',
- 'modes' => array('configuration'),
+ 'modes' => array('configuration'),
'module_auth' => 'acl_u_mchat_use',
))),
);
}
}
-
\ No newline at end of file
diff --git a/migrations/mchat_schema.php b/migrations/mchat_schema.php
index f2a1d96..d7aad17 100644
--- a/migrations/mchat_schema.php
+++ b/migrations/mchat_schema.php
@@ -11,7 +11,7 @@ namespace dmzx\mchat\migrations;
class mchat_schema extends \phpbb\db\migration\migration
{
-
+
public function update_data()
{
return array(
@@ -20,9 +20,9 @@ class mchat_schema extends \phpbb\db\migration\migration
array('config.add', array('mchat_on_index', true)),
array('config.add', array('mchat_new_posts', false)),
array('config.add', array('mchat_stats_index', false)),
- array('config.add', array('mchat_version','0.0.3')),
-
- array('permission.add', array('u_mchat_use')),
+ array('config.add', array('mchat_version','0.0.4')),
+
+ array('permission.add', array('u_mchat_use')),
array('permission.add', array('u_mchat_view')),
array('permission.add', array('u_mchat_edit')),
array('permission.add', array('u_mchat_delete')),
@@ -54,7 +54,7 @@ class mchat_schema extends \phpbb\db\migration\migration
array('permission.permission_set', array('REGISTERED', 'u_mchat_urls', 'group')),
);
}
-
+
public function update_schema()
{
return array(
@@ -69,7 +69,6 @@ class mchat_schema extends \phpbb\db\migration\migration
),
);
}
-
public function revert_schema()
{
@@ -79,6 +78,5 @@ class mchat_schema extends \phpbb\db\migration\migration
),
);
}
-
-
+
}
diff --git a/migrations/mchat_schema_2.php b/migrations/mchat_schema_2.php
index 23dfbd7..9f8ec52 100644
--- a/migrations/mchat_schema_2.php
+++ b/migrations/mchat_schema_2.php
@@ -32,8 +32,8 @@ class mchat_schema_2 extends \phpbb\db\migration\migration
'bbcode_uid' => array('VCHAR:8', ''),
'bbcode_options' => array('BOOL', '7'),
'message_time' => array('INT:11', 0),
- 'forum_id' => array('UINT', 0),
- 'post_id' => array('UINT', 0),
+ 'forum_id' => array('UINT', 0),
+ 'post_id' => array('UINT', 0),
),
'PRIMARY_KEY' => 'message_id',
),
diff --git a/migrations/mchat_schema_3.php b/migrations/mchat_schema_3.php
index bcfde38..d88c729 100644
--- a/migrations/mchat_schema_3.php
+++ b/migrations/mchat_schema_3.php
@@ -28,79 +28,77 @@ class mchat_schema_3 extends \phpbb\db\migration\migration
{
global $user;
-
-
// Define sample rule data
$sample_data = array(
array(
'config_name' => 'refresh',
'config_value' => '10',
),
- array(
+ array(
'config_name' => 'message_limit',
'config_value' => '10',
),
- array(
+ array(
'config_name' => 'archive_limit',
'config_value' => '25',
),
- array(
+ array(
'config_name' => 'flood_time',
'config_value' => '20',
),
- array(
+ array(
'config_name' => 'max_message_lngth',
'config_value' => '500',
),
- array(
+ array(
'config_name' => 'custom_page',
'config_value' => '1',
),
- array(
+ array(
'config_name' => 'date',
'config_value' => 'D M d, Y g:i a',
),
- array(
+ array(
'config_name' => 'whois',
'config_value' => '1',
- ),
- array(
+ ),
+ array(
'config_name' => 'bbcode_disallowed',
'config_value' => '',
- ),
- array(
+ ),
+ array(
'config_name' => 'prune_enable',
'config_value' => '0',
),
- array(
+ array(
'config_name' => 'prune_num',
'config_value' => '0',
),
- array(
+ array(
'config_name' => 'location',
'config_value' => '1',
),
- array(
+ array(
'config_name' => 'whois_refresh',
'config_value' => '30',
),
- array(
+ array(
'config_name' => 'static_message',
'config_value' => '',
),
- array(
+ array(
'config_name' => 'index_height',
'config_value' => '250',
),
- array(
+ array(
'config_name' => 'custom_height',
'config_value' => '350',
),
- array(
+ array(
'config_name' => 'override_min_post_chars',
'config_value' => '0',
),
- array(
+ array(
'config_name' => 'timeout',
'config_value' => '0',
),
@@ -108,19 +106,19 @@ class mchat_schema_3 extends \phpbb\db\migration\migration
'config_name' => 'override_smilie_limit',
'config_value' => '0',
),
- array(
+ array(
'config_name' => 'pause_on_input',
'config_value' => '0',
),
- array(
+ array(
'config_name' => 'rules',
'config_value' => '',
),
- array(
+ array(
'config_name' => 'avatars',
'config_value' => '0',
),
- array(
+ array(
'config_name' => 'message_num',
'config_value' => '10',
),
diff --git a/migrations/mchat_schema_4.php b/migrations/mchat_schema_4.php
index da132b9..047047e 100644
--- a/migrations/mchat_schema_4.php
+++ b/migrations/mchat_schema_4.php
@@ -13,11 +13,11 @@ class mchat_schema_4 extends \phpbb\db\migration\migration
{
static public function depends_on()
- {
+ {
return array(
'\dmzx\mchat\migrations\mchat_schema_3',
);
- }
+ }
public function update_schema()
{
return array(
diff --git a/migrations/mchat_schema_6.php b/migrations/mchat_schema_6.php
index 4959c98..3416b2a 100644
--- a/migrations/mchat_schema_6.php
+++ b/migrations/mchat_schema_6.php
@@ -17,7 +17,7 @@ class mchat_schema_6 extends \phpbb\db\migration\migration
return array(
'\dmzx\mchat\migrations\mchat_schema_5',
);
- }
+ }
public function update_data()
{
return array(
@@ -40,8 +40,8 @@ class mchat_schema_6 extends \phpbb\db\migration\migration
'module_auth' => 'u_mchat_use',
),
),
-
- ),
+
+ ),
);
}
}
\ No newline at end of file
diff --git a/styles/prosilver/template/editor.js b/styles/prosilver/template/editor.js
index 3766309..e798a46 100644
--- a/styles/prosilver/template/editor.js
+++ b/styles/prosilver/template/editor.js
@@ -28,8 +28,8 @@ function helpline(help)
/**
* Fix a bug involving the TextRange object. From
* http://www.frostjedi.com/terra/scripts/demo/caretBug.html
-*/
-function initInsertions()
+*/
+function initInsertions()
{
var doc;
@@ -37,7 +37,7 @@ function initInsertions()
{
doc = document;
}
- else
+ else
{
doc = opener.document;
}
@@ -65,19 +65,18 @@ function initInsertions()
* bbstyle
*/
function bbstyle(bbnumber)
-{
+{
if (bbnumber != -1)
{
bbfontstyle(bbtags[bbnumber], bbtags[bbnumber+1]);
- }
- else
+ }
+ else
{
insert_text('[*]');
document.forms[form_name].elements[text_name].focus();
}
}
-
/**
* Apply bbcodes
*/
@@ -110,10 +109,10 @@ function bbfontstyle(bbopen, bbclose)
theSelection = '';
return;
}
-
+
//The new position for the cursor after adding the bbcode
var caret_pos = getCaretPosition(textarea).start;
- var new_pos = caret_pos + bbopen.length;
+ var new_pos = caret_pos + bbopen.length;
// Open tag
insert_text(bbopen + bbclose);
@@ -124,12 +123,12 @@ function bbfontstyle(bbopen, bbclose)
{
textarea.selectionStart = new_pos;
textarea.selectionEnd = new_pos;
- }
+ }
// IE
else if (document.selection)
{
- var range = textarea.createTextRange();
- range.move("character", new_pos);
+ var range = textarea.createTextRange();
+ range.move("character", new_pos);
range.select();
storeCaret(textarea);
}
@@ -144,16 +143,16 @@ function bbfontstyle(bbopen, bbclose)
function insert_text(text, spaces, popup)
{
var textarea;
-
- if (!popup)
+
+ if (!popup)
{
textarea = document.forms[form_name].elements[text_name];
- }
- else
+ }
+ else
{
textarea = opener.document.forms[form_name].elements[text_name];
}
- if (spaces)
+ if (spaces)
{
text = ' ' + text + ' ';
}
@@ -171,7 +170,7 @@ function insert_text(text, spaces, popup)
}
else if (textarea.createTextRange && textarea.caretPos)
{
- if (baseHeight != textarea.caretPos.boundingHeight)
+ if (baseHeight != textarea.caretPos.boundingHeight)
{
textarea.focus();
storeCaret(textarea);
@@ -184,7 +183,7 @@ function insert_text(text, spaces, popup)
{
textarea.value = textarea.value + text;
}
- if (!popup)
+ if (!popup)
{
textarea.focus();
}
@@ -301,7 +300,7 @@ function split_lines(text)
do
{
var splitAt = line.indexOf(' ', 80);
-
+
if (splitAt == -1)
{
splitLines[j] = line;
@@ -329,7 +328,7 @@ function mozWrap(txtarea, open, close)
var selEnd = txtarea.selectionEnd;
var scrollTop = txtarea.scrollTop;
- if (selEnd == 1 || selEnd == 2)
+ if (selEnd == 1 || selEnd == 2)
{
selEnd = selLength;
}
@@ -389,7 +388,7 @@ function colorPalette(dir, width, height)
{
document.writeln('');
}
-
+
for (b = 0; b < 5; b++)
{
color = String(numberList[r]) + String(numberList[g]) + String(numberList[b]);
@@ -412,7 +411,6 @@ function colorPalette(dir, width, height)
document.writeln('');
}
-
/**
* Caret Position object
*/
@@ -422,14 +420,13 @@ function caretPosition()
var end = null;
}
-
/**
* Get the caret position in an textarea
*/
function getCaretPosition(txtarea)
{
var caretPos = new caretPosition();
-
+
// simple Gecko/Opera way
if(txtarea.selectionStart || txtarea.selectionStart == 0)
{
@@ -439,26 +436,26 @@ function getCaretPosition(txtarea)
// dirty and slow IE way
else if(document.selection)
{
-
+
// get current selection
var range = document.selection.createRange();
// a new selection of the whole textarea
var range_all = document.body.createTextRange();
range_all.moveToElementText(txtarea);
-
+
// calculate selection start point by moving beginning of range_all to beginning of range
var sel_start;
for (sel_start = 0; range_all.compareEndPoints('StartToStart', range) < 0; sel_start++)
- {
+ {
range_all.moveStart('character', 1);
}
-
+
txtarea.sel_start = sel_start;
-
+
// we ignore the end value for IE, this is already dirty enough and we don't need it
caretPos.start = txtarea.sel_start;
- caretPos.end = txtarea.sel_start;
+ caretPos.end = txtarea.sel_start;
}
return caretPos;
diff --git a/styles/prosilver/template/event/overall_footer_after.html b/styles/prosilver/template/event/overall_footer_after.html
deleted file mode 100644
index 6c99116..0000000
--- a/styles/prosilver/template/event/overall_footer_after.html
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
diff --git a/styles/prosilver/template/event/overall_header_body_before.html b/styles/prosilver/template/event/overall_header_body_before.html
deleted file mode 100644
index 8b13789..0000000
--- a/styles/prosilver/template/event/overall_header_body_before.html
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/styles/prosilver/template/jquery.maxlength.min.js b/styles/prosilver/template/jquery.maxlength.min.js
index f95b22f..ed7b673 100644
--- a/styles/prosilver/template/jquery.maxlength.min.js
+++ b/styles/prosilver/template/jquery.maxlength.min.js
@@ -1,13 +1,13 @@
- /*
- @author: remy sharp / http://remysharp.com
- @params:
- feedback - the selector for the element that gives the user feedback. Note that this will be relative to the form the plugin is run against.
- hardLimit - whether to stop the user being able to keep adding characters. Defaults to true.
- useInput - whether to look for a hidden input named 'maxlength' instead of the maxlength attribute. Defaults to false.
- words - limit by characters or words, set this to true to limit by words. Defaults to false.
- @license: Creative Commons License - ShareAlike http://creativecommons.org/licenses/by-sa/3.0/
- @version: 1.2
- @changes: code tidy via Ariel Flesler and fix when pasting over limit and including \t or \n
- */
+ /*
+ @author: remy sharp / http://remysharp.com
+ @params:
+ feedback - the selector for the element that gives the user feedback. Note that this will be relative to the form the plugin is run against.
+ hardLimit - whether to stop the user being able to keep adding characters. Defaults to true.
+ useInput - whether to look for a hidden input named 'maxlength' instead of the maxlength attribute. Defaults to false.
+ words - limit by characters or words, set this to true to limit by words. Defaults to false.
+ @license: Creative Commons License - ShareAlike http://creativecommons.org/licenses/by-sa/3.0/
+ @version: 1.2
+ @changes: code tidy via Ariel Flesler and fix when pasting over limit and including \t or \n
+ */
- (function(a){a.fn.maxlength=function(b){function c(a){var c=a.value;if(b.words)c=a.value.length?c.split(/\s+/):{length:0};return c.length}if(typeof b=="string"){b={feedback:b}}b=a.extend({},a.fn.maxlength.defaults,b);return this.each(function(){function i(a){var d=c(this),e=d>=g,f=a.keyCode;if(!e)return;switch(f){case 8:case 9:case 17:case 36:case 35:case 37:case 38:case 39:case 40:case 46:case 65:return;default:return b.words&&f!=32&&f!=13&&d==g}}var d=this,e=a(d),f=a(d.form),g=b.useInput?f.find("input[name=maxlength]").val():e.attr("maxlength"),h=f.find(b.feedback);var j=function(){var e=c(d),f=g-e;h.html(f||"0");if(f<497){a("#charsreman").show()}else{a("#charsreman").hide()};if(f<499){a("#charsreman2").show()}else{a("#charsreman2").hide()};if(f<500){a("#charsreman3").show()}else{a("#charsreman3").hide()}if(b.hardLimit&&f<0){d.value=b.words?d.value.split(/(\s+)/,g*2-1).join(""):d.value.substr(0,g);j()}};e.keyup(j).change(j).focus(j);if(b.hardLimit){e.keydown(i)}j()})};a.fn.maxlength.defaults={useInput:false,hardLimit:true,feedback:".charsLeft",words:false}})(jQuery)
\ No newline at end of file
+ (function(a){a.fn.maxlength=function(b){function c(a){var c=a.value;if(b.words)c=a.value.length?c.split(/\s+/):{length:0};return c.length}if(typeof b=="string"){b={feedback:b}}b=a.extend({},a.fn.maxlength.defaults,b);return this.each(function(){function i(a){var d=c(this),e=d>=g,f=a.keyCode;if(!e)return;switch(f){case 8:case 9:case 17:case 36:case 35:case 37:case 38:case 39:case 40:case 46:case 65:return;default:return b.words&&f!=32&&f!=13&&d==g}}var d=this,e=a(d),f=a(d.form),g=b.useInput?f.find("input[name=maxlength]").val():e.attr("maxlength"),h=f.find(b.feedback);var j=function(){var e=c(d),f=g-e;h.html(f||"0");if(f<497){a("#charsreman").show()}else{a("#charsreman").hide()};if(f<499){a("#charsreman2").show()}else{a("#charsreman2").hide()};if(f<500){a("#charsreman3").show()}else{a("#charsreman3").hide()}if(b.hardLimit&&f<0){d.value=b.words?d.value.split(/(\s+)/,g*2-1).join(""):d.value.substr(0,g);j()}};e.keyup(j).change(j).focus(j);if(b.hardLimit){e.keydown(i)}j()})};a.fn.maxlength.defaults={useInput:false,hardLimit:true,feedback:".charsLeft",words:false}})(jQuery)
\ No newline at end of file
diff --git a/styles/prosilver/template/jquery.titlealert.min.js b/styles/prosilver/template/jquery.titlealert.min.js
index f6b4885..8aea5f1 100644
--- a/styles/prosilver/template/jquery.titlealert.min.js
+++ b/styles/prosilver/template/jquery.titlealert.min.js
@@ -1,9 +1,9 @@
/*!
* Title Alert 0.7
- *
+ *
* Copyright (c) 2009 ESN | http://esn.me
* Jonatan Heyman | http://heyman.info
- *
+ *
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
diff --git a/styles/prosilver/template/mchat_ajax_mini.js b/styles/prosilver/template/mchat_ajax_mini.js
index 67d634f..df3b99a 100644
--- a/styles/prosilver/template/mchat_ajax_mini.js
+++ b/styles/prosilver/template/mchat_ajax_mini.js
@@ -12,482 +12,482 @@ var $jQ=jQuery.noConflict(true);
var hasFocus = true;
$jQ(function(){
if(!mChatArchiveMode){
- var scrH=$jQ('#mChatmain')[0].scrollHeight;
- $jQ('#mChatmain').animate({
- scrollTop:scrH
- },1000,'swing');
- if(mChatPause){
- $jQ('#mChatMessage').bind('keypress',function(){
- clearInterval(interval);
- $jQ('#mChatLoadIMG,#mChatOkIMG,#mChatErrorIMG').hide();
- $jQ('#mChatRefreshText').html(mChatRefreshNo).addClass('mchat-alert');
- $jQ('#mChatPauseIMG').show()
- })
- }
- $jQ([window,document]).blur(function(){
- hasFocus = false
- }).focus(function(){
- hasFocus = true
- });
- $jQ.fn.preventDoubleSubmit=function(){
- var alreadySubmitted=false;
- return $jQ(this).submit(function(){
- if(alreadySubmitted){
- return false
- }else{
- alreadySubmitted=true
- }
- })
- };
- $jQ.fn.autoGrowInput=function(o){
- var width=$jQ('.mChatPanel').width();
- o=$jQ.extend({
- maxWidth:width-20,
- minWidth:0,
- comfortZone:20
- },o);
- this.filter('input:text').each(function(){
- var minWidth=o.minWidth||$jQ(this).width(),
- val='',
- input=$jQ(this),
- testSubject=$jQ('
').css({
- position:'absolute',
- top:-9999,
- left:-9999,
- width:'auto',
- fontSize:input.css('fontSize'),
- fontFamily:input.css('fontFamily'),
- fontWeight:input.css('fontWeight'),
- letterSpacing:input.css('letterSpacing'),
- whiteSpace:'nowrap'
- }),
- check=function(){
- if(val===(val=input.val())){
- return
- }
- var escaped=val.replace(/&/g,'&').replace(/\s/g,' ').replace(//g,'>');
- testSubject.html(escaped);
- var testerWidth=testSubject.width(),
- newWidth=(testerWidth+o.comfortZone)>=minWidth?testerWidth+o.comfortZone:minWidth,
- currentWidth=input.width(),
- isValidWidthChange=(newWidth=minWidth)||(newWidth>minWidth&&newWidth').css({
+ position:'absolute',
+ top:-9999,
+ left:-9999,
+ width:'auto',
+ fontSize:input.css('fontSize'),
+ fontFamily:input.css('fontFamily'),
+ fontWeight:input.css('fontWeight'),
+ letterSpacing:input.css('letterSpacing'),
+ whiteSpace:'nowrap'
+ }),
+ check=function(){
+ if(val===(val=input.val())){
+ return
+ }
+ var escaped=val.replace(/&/g,'&').replace(/\s/g,' ').replace(//g,'>');
+ testSubject.html(escaped);
+ var testerWidth=testSubject.width(),
+ newWidth=(testerWidth+o.comfortZone)>=minWidth?testerWidth+o.comfortZone:minWidth,
+ currentWidth=input.width(),
+ isValidWidthChange=(newWidth=minWidth)||(newWidth>minWidth&&newWidth ");
- } else if(e.keyCode==13){
- mChat.add();
- }
- },
- countDown:function(){
- if($jQ('#mChatSessMess').hasClass('mchat-alert')){
- $jQ('#mChatSessMess').removeClass('mchat-alert')
- }
- session_time=session_time-1;
- var sec=Math.floor(session_time);
- var min=Math.floor(sec/60);
- var hrs=Math.floor(min/60);
- sec=(sec%60);
- if(sec<=9){
- sec="0"+sec
- }
- min=(min%60);
- if(min<=9){
- min="0"+min
- }
- hrs=(hrs%60);
- if(hrs<=9){
- hrs="0"+hrs
- }
- var time_left=hrs+":"+min+":"+sec;
- $jQ('#mChatSessMess').html(mChatSessEnds+' '+time_left);
- if(session_time<=0){
- clearInterval(counter);
- $jQ('#mChatSessMess').html(mChatSessOut).addClass('mchat-alert')
- }
- },
- clear:function(){
- if($jQ('#mChatMessage').val()==''){
- return false
- }
- var answer=confirm(mChatReset);
- if(answer){
- if($jQ('#mChatRefreshText').hasClass('mchat-alert')){
- $jQ('#mChatRefreshText').removeClass('mchat-alert')
- }
- if(mChatPause){
- interval=setInterval(function(){
- mChat.refresh()
- },mChatRefresh)
- }
- $jQ('#mChatOkIMG').show();
- $jQ('#mChatLoadIMG, #mChatErrorIMG, #mChatPauseIMG').hide();
- $jQ('#mChatRefreshText').html(mChatRefreshYes);
- $jQ('#mChatMessage').val('').focus()
- } else {
- $jQ('#mChatMessage').focus()
- }
+ key:function(e){
+ if(e.shiftKey&&e.keyCode==13){
+ $jQ('#mChatMessage').append(" ");
+ } else if(e.keyCode==13){
+ mChat.add();
+ }
+ },
+ countDown:function(){
+ if($jQ('#mChatSessMess').hasClass('mchat-alert')){
+ $jQ('#mChatSessMess').removeClass('mchat-alert')
+ }
+ session_time=session_time-1;
+ var sec=Math.floor(session_time);
+ var min=Math.floor(sec/60);
+ var hrs=Math.floor(min/60);
+ sec=(sec%60);
+ if(sec<=9){
+ sec="0"+sec
+ }
+ min=(min%60);
+ if(min<=9){
+ min="0"+min
+ }
+ hrs=(hrs%60);
+ if(hrs<=9){
+ hrs="0"+hrs
+ }
+ var time_left=hrs+":"+min+":"+sec;
+ $jQ('#mChatSessMess').html(mChatSessEnds+' '+time_left);
+ if(session_time<=0){
+ clearInterval(counter);
+ $jQ('#mChatSessMess').html(mChatSessOut).addClass('mchat-alert')
+ }
+ },
+ clear:function(){
+ if($jQ('#mChatMessage').val()==''){
+ return false
+ }
+ var answer=confirm(mChatReset);
+ if(answer){
+ if($jQ('#mChatRefreshText').hasClass('mchat-alert')){
+ $jQ('#mChatRefreshText').removeClass('mchat-alert')
+ }
+ if(mChatPause){
+ interval=setInterval(function(){
+ mChat.refresh()
+ },mChatRefresh)
+ }
+ $jQ('#mChatOkIMG').show();
+ $jQ('#mChatLoadIMG, #mChatErrorIMG, #mChatPauseIMG').hide();
+ $jQ('#mChatRefreshText').html(mChatRefreshYes);
+ $jQ('#mChatMessage').val('').focus()
+ } else {
+ $jQ('#mChatMessage').focus()
+ }
},
sound: function (file) {
- if ($jQ.cookie('mChatNoSound') == 'yes') {
- return
- }
- if (false || $.browser.msie) {
- $('#mChatSound').html(' ');
- } else {
- $('#mChatSound').html(' ');
- }
+ if ($jQ.cookie('mChatNoSound') == 'yes') {
+ return
+ }
+ if (false || $.browser.msie) {
+ $('#mChatSound').html(' ');
+ } else {
+ $('#mChatSound').html(' ');
+ }
},
alert:function(){
- if(!hasFocus||!document.hasFocus()){
- $jQ.titleAlert(mChatNewMessageAlert)
- }
+ if(!hasFocus||!document.hasFocus()){
+ $jQ.titleAlert(mChatNewMessageAlert)
+ }
},
toggle:function(id){
- $jQ('#mChat'+id).slideToggle('normal',function(){
- if($jQ('#mChat'+id).is(':visible')){
- $jQ.cookie('mChatShow'+id,'yes')
- }
- if($jQ('#mChat'+id).is(':hidden')){
- $jQ.cookie('mChatShow'+id,null)}
- }
- )
- },
- add:function(){
- if($jQ('#mChatMessage').val()==''){
- return false
- }
- var mChatMessChars=$jQ('#mChatMessage').val().replace(/ /g,'');
- if(mChatMessChars.length>mChatMssgLngth&&mChatMssgLngth){
- alert(mChatMssgLngthLong);
- return
- }
- $jQ.ajax({
- url:mChatFile,
- timeout:10000,
- async:false,
- type:'POST',
- data:$jQ('#postform').serialize(),
- dataType:'text',
- beforeSend:function(){
- $jQ('#submit_button').attr('disabled','disabled');
- if(mChatUserTimeout){
- clearInterval(activeinterval);
- clearInterval(counter)
- }
- clearInterval(interval)
- },
- success:function(){
- mChat.refresh()
- },
- error:function(XMLHttpRequest){
- if(XMLHttpRequest.status==400){
- alert(mChatFlood)
- }else if(XMLHttpRequest.status==403){
- alert(mChatNoAccess)
- }else if(XMLHttpRequest.status==501){
- alert(mChatNoMessageInput)
- }
- },
- complete:function(){
- if($jQ('#mChatData').children('#mChatNoMessage :last')){
- $jQ('#mChatNoMessage').remove()
- }
- $jQ('#submit_button').removeAttr('disabled');
- interval=setInterval(function(){
- mChat.refresh()
- },
- mChatRefresh);
- if(mChatUserTimeout){
- session_time=mChatUserTimeout?mChatUserTimeout/1000:false;
- counter=setInterval(function(){
- mChat.countDown()
- },1000);
- activeinterval=setInterval(function(){
- mChat.active()
- },mChatUserTimeout)
- }
- $jQ('#mChatMessage').val('').focus()
- }
- })
- },
- edit:function(id){
- var message=$jQ('#edit'+id).val();
- apprise(mChatEditInfo + ' (Shift and Enter for new line)',{
- 'textarea':message,
- 'animate':true,
- 'position':200,
- 'confirm':true
- }, function(r){
- if(r){
- $jQ.ajax({
- url:mChatFile,
- timeout:10000,
- type:'POST',
- data:{
- mode:'edit',
- message_id:id,
- message:r
- },
- dataType:'text',
- beforeSend:function(){
- clearInterval(interval);
- if(mChatUserTimeout){
- clearInterval(activeinterval);
- clearInterval(counter);
- $jQ('#mChatSessTimer').html(mChatRefreshing)
- }
- },
- success:function(html){
- $jQ('#mess'+id).fadeOut('slow',function(){
- $jQ(this).replaceWith(html);
- $jQ('#mess'+id).css('display','none').fadeIn('slow')
- })
- },
- error:function(XMLHttpRequest){
- if(XMLHttpRequest.status==403){
- alert(mChatNoAccess)
- }else if(XMLHttpRequest.status==501){
- alert(mChatNoMessageInput)
- }
- },
- complete:function(){
- interval=setInterval(function(){
- mChat.refresh()
- },mChatRefresh);
- if(mChatUserTimeout){
- session_time=mChatUserTimeout?mChatUserTimeout/1000:false;
- counter=setInterval(function(){
- mChat.countDown()
- },1000);
- activeinterval=setInterval(function(){
- mChat.active()
- },mChatUserTimeout)
- }
- if(!mChatArchiveMode){
- scrH=$jQ('#mChatmain')[0].scrollHeight;
- window.setTimeout(function(){
- $jQ('#mChatmain').animate({
- scrollTop:scrH},1000,'swing')
- },1500)
- }
- }
- }
- )
- }})
- },
- del:function(id){
- apprise(mChatDelConfirm,{
- 'position':200,
- 'animate':true,
- 'confirm':true
- },function(del){
- if(del){
- $jQ.ajax({
- url:mChatFile,
- timeout:10000,
- type:'POST',
- data:{
- mode:'delete',
- message_id:id
- },
- beforeSend:function(){
- clearInterval(interval);
- if(mChatUserTimeout){
- clearInterval(activeinterval);
- clearInterval(counter);
- $jQ('#mChatSessTimer').html(mChatRefreshing)
- }
- },
- success:function(){
- $jQ('#mess'+id).fadeOut('slow',function(){
- $jQ(this).remove()
- });
- mChat.sound(mChatForumRoot+'ext/dmzx/mchat/sounds/del.swf')
- },
- error:function(){
- alert(mChatNoAccess)
- },
- complete:function(){
- interval=setInterval(function(){
- mChat.refresh()
- },mChatRefresh);
- if(mChatUserTimeout){
- session_time=mChatUserTimeout?mChatUserTimeout/1000:false;
- counter=setInterval(function(){
- mChat.countDown()
- },1000);
- activeinterval=setInterval(function(){
- mChat.active()
- },mChatUserTimeout)
- }
- }
- })
- } else {
- return false;
- }
+ $jQ('#mChat'+id).slideToggle('normal',function(){
+ if($jQ('#mChat'+id).is(':visible')){
+ $jQ.cookie('mChatShow'+id,'yes')
+ }
+ if($jQ('#mChat'+id).is(':hidden')){
+ $jQ.cookie('mChatShow'+id,null)}
+ }
+ )
+ },
+ add:function(){
+ if($jQ('#mChatMessage').val()==''){
+ return false
+ }
+ var mChatMessChars=$jQ('#mChatMessage').val().replace(/ /g,'');
+ if(mChatMessChars.length>mChatMssgLngth&&mChatMssgLngth){
+ alert(mChatMssgLngthLong);
+ return
+ }
+ $jQ.ajax({
+ url:mChatFile,
+ timeout:10000,
+ async:false,
+ type:'POST',
+ data:$jQ('#postform').serialize(),
+ dataType:'text',
+ beforeSend:function(){
+ $jQ('#submit_button').attr('disabled','disabled');
+ if(mChatUserTimeout){
+ clearInterval(activeinterval);
+ clearInterval(counter)
+ }
+ clearInterval(interval)
+ },
+ success:function(){
+ mChat.refresh()
+ },
+ error:function(XMLHttpRequest){
+ if(XMLHttpRequest.status==400){
+ alert(mChatFlood)
+ }else if(XMLHttpRequest.status==403){
+ alert(mChatNoAccess)
+ }else if(XMLHttpRequest.status==501){
+ alert(mChatNoMessageInput)
+ }
+ },
+ complete:function(){
+ if($jQ('#mChatData').children('#mChatNoMessage :last')){
+ $jQ('#mChatNoMessage').remove()
+ }
+ $jQ('#submit_button').removeAttr('disabled');
+ interval=setInterval(function(){
+ mChat.refresh()
+ },
+ mChatRefresh);
+ if(mChatUserTimeout){
+ session_time=mChatUserTimeout?mChatUserTimeout/1000:false;
+ counter=setInterval(function(){
+ mChat.countDown()
+ },1000);
+ activeinterval=setInterval(function(){
+ mChat.active()
+ },mChatUserTimeout)
+ }
+ $jQ('#mChatMessage').val('').focus()
+ }
+ })
+ },
+ edit:function(id){
+ var message=$jQ('#edit'+id).val();
+ apprise(mChatEditInfo + ' (Shift and Enter for new line)',{
+ 'textarea':message,
+ 'animate':true,
+ 'position':200,
+ 'confirm':true
+ }, function(r){
+ if(r){
+ $jQ.ajax({
+ url:mChatFile,
+ timeout:10000,
+ type:'POST',
+ data:{
+ mode:'edit',
+ message_id:id,
+ message:r
+ },
+ dataType:'text',
+ beforeSend:function(){
+ clearInterval(interval);
+ if(mChatUserTimeout){
+ clearInterval(activeinterval);
+ clearInterval(counter);
+ $jQ('#mChatSessTimer').html(mChatRefreshing)
+ }
+ },
+ success:function(html){
+ $jQ('#mess'+id).fadeOut('slow',function(){
+ $jQ(this).replaceWith(html);
+ $jQ('#mess'+id).css('display','none').fadeIn('slow')
+ })
+ },
+ error:function(XMLHttpRequest){
+ if(XMLHttpRequest.status==403){
+ alert(mChatNoAccess)
+ }else if(XMLHttpRequest.status==501){
+ alert(mChatNoMessageInput)
+ }
+ },
+ complete:function(){
+ interval=setInterval(function(){
+ mChat.refresh()
+ },mChatRefresh);
+ if(mChatUserTimeout){
+ session_time=mChatUserTimeout?mChatUserTimeout/1000:false;
+ counter=setInterval(function(){
+ mChat.countDown()
+ },1000);
+ activeinterval=setInterval(function(){
+ mChat.active()
+ },mChatUserTimeout)
+ }
+ if(!mChatArchiveMode){
+ scrH=$jQ('#mChatmain')[0].scrollHeight;
+ window.setTimeout(function(){
+ $jQ('#mChatmain').animate({
+ scrollTop:scrH},1000,'swing')
+ },1500)
+ }
+ }
+ }
+ )
+ }})
+ },
+ del:function(id){
+ apprise(mChatDelConfirm,{
+ 'position':200,
+ 'animate':true,
+ 'confirm':true
+ },function(del){
+ if(del){
+ $jQ.ajax({
+ url:mChatFile,
+ timeout:10000,
+ type:'POST',
+ data:{
+ mode:'delete',
+ message_id:id
+ },
+ beforeSend:function(){
+ clearInterval(interval);
+ if(mChatUserTimeout){
+ clearInterval(activeinterval);
+ clearInterval(counter);
+ $jQ('#mChatSessTimer').html(mChatRefreshing)
+ }
+ },
+ success:function(){
+ $jQ('#mess'+id).fadeOut('slow',function(){
+ $jQ(this).remove()
+ });
+ mChat.sound(mChatForumRoot+'ext/dmzx/mchat/sounds/del.swf')
+ },
+ error:function(){
+ alert(mChatNoAccess)
+ },
+ complete:function(){
+ interval=setInterval(function(){
+ mChat.refresh()
+ },mChatRefresh);
+ if(mChatUserTimeout){
+ session_time=mChatUserTimeout?mChatUserTimeout/1000:false;
+ counter=setInterval(function(){
+ mChat.countDown()
+ },1000);
+ activeinterval=setInterval(function(){
+ mChat.active()
+ },mChatUserTimeout)
+ }
+ }
+ })
+ } else {
+ return false;
+ }
});
},
refresh:function(){
- if(mChatArchiveMode){
- return
- }
- var mess_id=0;
- if($jQ('#mChatData').children().not('#mChatNoMessage').length){
- if($jQ('#mChatNoMessage')){
- $jQ('#mChatNoMessage').remove()
- }
- mess_id=$jQ('#mChatData').children(':last-child').attr('id').replace('mess','')
- }
- var oldScrH=$jQ('#mChatmain')[0].scrollHeight;
- $jQ.ajax({
- url:mChatFile,
- timeout:10000,
- type:'POST',
- async:true,
- data:{
- mode:'read',
- message_last_id:mess_id
- },
- dataType:'html',
- beforeSend:function(){
- $jQ('#mChatOkIMG,#mChatErrorIMG,#mChatPauseIMG').hide();
- $jQ('#mChatLoadIMG').show()
- },
- success:function(html){
- if(html!=''&&html!=0){
- if($jQ('#mChatRefreshText').hasClass('mchat-alert')){
- $jQ('#mChatRefreshText').removeClass('mchat-alert')
- }
- $jQ('#mChatData').append(html).children(':last').not('#mChatNoMessage');
- var newInner=$jQ('#mChatData').children().not('#mChatNoMessage').innerHeight();
- var newH=oldScrH+newInner;
- $jQ('#mChatmain').animate({
- scrollTop:newH
- },'slow');
- mChat.sound(mChatForumRoot+'ext/dmzx/mchat/sounds/add.swf');
- mChat.alert()
- }
- setTimeout(function(){
- $jQ('#mChatLoadIMG,#mChatErrorIMG,#mChatPauseIMG').hide();
- $jQ('#mChatOkIMG').show();
- $jQ('#mChatRefreshText').html(mChatRefreshYes)
- },500)
- },
- error:function(){
- $jQ('#mChatLoadIMG,#mChatOkIMG,#mChatPauseIMG,#mChatRefreshTextNo,#mChatPauseIMG,').hide();
- $jQ('#mChatErrorIMG').show();
- mChat.sound(mChatForumRoot+'ext/dmzx/mchat/sounds/error.swf')
- },
- complete:function(){
- if(!$jQ('#mChatData').children(':last').length){
- $jQ('#mChatData').append(''+mChatNoMessage+'
').show('slow')
- }
- }
- })
- },
- stats:function(){
- if(!mChatWhois){
- return
- }
- $jQ.ajax({
- url:mChatFile,
- timeout:10000,
- type:'POST',
- data:{
- mode:'stats'
- },
- dataType:'html',
- beforeSend:function(){
- if(mChatCustomPage){
- $jQ('#mChatRefreshN').show();
- $jQ('#mChatRefresh').hide()
- }
- },
- success: function (data) {
- var json = $.parseJSON(data);
- $('#mChatStats').replaceWith(json.message);
- if(mChatCustomPage){
- setTimeout(function(){
- $jQ('#mChatRefreshN').hide();
- $jQ('#mChatRefresh').show()
- },500)
- }
- },
- error:function(){
- mChat.sound(mChatForumRoot+'ext/dmzx/mchat/sounds/error.swf')
- },
- complete:function(){
- if($jQ('#mChatUserList').length&&($jQ.cookie('mChatShowUserList')=='yes'||mChatCustomPage)){
- $jQ('#mChatUserList').css('display','block')
- }
- }
- })
- },
- active:function(){
- if(mChatArchiveMode||!mChatUserTimeout){
- return
- }
- clearInterval(interval);
- $jQ('#mChatLoadIMG,#mChatOkIMG,#mChatErrorIMG').hide();
- $jQ('#mChatPauseIMG').show();
- $jQ('#mChatRefreshText').html(mChatRefreshNo).addClass('mchat-alert');
- $jQ('#mChatSessMess').html(mChatSessOut).addClass('mchat-alert')
- }
- };
- var interval=setInterval(function(){
- mChat.refresh()
- },mChatRefresh);
- var statsinterval=setInterval(function(){
- mChat.stats()},mChatWhoisRefresh);
- var activeinterval=setInterval(function(){
- mChat.active()},mChatUserTimeout);
- var session_time=mChatUserTimeout?mChatUserTimeout/1000:false;
- if(mChatUserTimeout){
- var counter=setInterval(function(){
- mChat.countDown()
- },1000)
- }
- if($jQ.cookie('mChatShowSmiles')=='yes'&&$jQ('#mChatSmiles').css('display','none')){
- $jQ('#mChatSmiles').slideToggle('slow')
- }
- if($jQ.cookie('mChatShowBBCodes')=='yes'&&$jQ('#mChatBBCodes').css('display','none')){
- $jQ('#mChatBBCodes').slideToggle('slow')
- }
- if($jQ.cookie('mChatShowUserList')=='yes'&&$jQ('#mChatUserList').length){
- $jQ('#mChatUserList').slideToggle('slow')
- }
- if($jQ.cookie('mChatShowColour')=='yes'&&$jQ('#mChatColour').css('display','none')){
- $jQ('#mChatColour').slideToggle('slow')
- }
- $jQ('#mChatUseSound').change(function(){
- if($jQ(this).is(':checked')){
- $jQ.cookie('mChatNoSound',null)
- }else{
- $jQ.cookie('mChatNoSound','yes')
- }
+ if(mChatArchiveMode){
+ return
+ }
+ var mess_id=0;
+ if($jQ('#mChatData').children().not('#mChatNoMessage').length){
+ if($jQ('#mChatNoMessage')){
+ $jQ('#mChatNoMessage').remove()
+ }
+ mess_id=$jQ('#mChatData').children(':last-child').attr('id').replace('mess','')
+ }
+ var oldScrH=$jQ('#mChatmain')[0].scrollHeight;
+ $jQ.ajax({
+ url:mChatFile,
+ timeout:10000,
+ type:'POST',
+ async:true,
+ data:{
+ mode:'read',
+ message_last_id:mess_id
+ },
+ dataType:'html',
+ beforeSend:function(){
+ $jQ('#mChatOkIMG,#mChatErrorIMG,#mChatPauseIMG').hide();
+ $jQ('#mChatLoadIMG').show()
+ },
+ success:function(html){
+ if(html!=''&&html!=0){
+ if($jQ('#mChatRefreshText').hasClass('mchat-alert')){
+ $jQ('#mChatRefreshText').removeClass('mchat-alert')
+ }
+ $jQ('#mChatData').append(html).children(':last').not('#mChatNoMessage');
+ var newInner=$jQ('#mChatData').children().not('#mChatNoMessage').innerHeight();
+ var newH=oldScrH+newInner;
+ $jQ('#mChatmain').animate({
+ scrollTop:newH
+ },'slow');
+ mChat.sound(mChatForumRoot+'ext/dmzx/mchat/sounds/add.swf');
+ mChat.alert()
+ }
+ setTimeout(function(){
+ $jQ('#mChatLoadIMG,#mChatErrorIMG,#mChatPauseIMG').hide();
+ $jQ('#mChatOkIMG').show();
+ $jQ('#mChatRefreshText').html(mChatRefreshYes)
+ },500)
+ },
+ error:function(){
+ $jQ('#mChatLoadIMG,#mChatOkIMG,#mChatPauseIMG,#mChatRefreshTextNo,#mChatPauseIMG,').hide();
+ $jQ('#mChatErrorIMG').show();
+ mChat.sound(mChatForumRoot+'ext/dmzx/mchat/sounds/error.swf')
+ },
+ complete:function(){
+ if(!$jQ('#mChatData').children(':last').length){
+ $jQ('#mChatData').append(''+mChatNoMessage+'
').show('slow')
+ }
+ }
+ })
+ },
+ stats:function(){
+ if(!mChatWhois){
+ return
+ }
+ $jQ.ajax({
+ url:mChatFile,
+ timeout:10000,
+ type:'POST',
+ data:{
+ mode:'stats'
+ },
+ dataType:'html',
+ beforeSend:function(){
+ if(mChatCustomPage){
+ $jQ('#mChatRefreshN').show();
+ $jQ('#mChatRefresh').hide()
+ }
+ },
+ success: function (data) {
+ var json = $.parseJSON(data);
+ $('#mChatStats').replaceWith(json.message);
+ if(mChatCustomPage){
+ setTimeout(function(){
+ $jQ('#mChatRefreshN').hide();
+ $jQ('#mChatRefresh').show()
+ },500)
+ }
+ },
+ error:function(){
+ mChat.sound(mChatForumRoot+'ext/dmzx/mchat/sounds/error.swf')
+ },
+ complete:function(){
+ if($jQ('#mChatUserList').length&&($jQ.cookie('mChatShowUserList')=='yes'||mChatCustomPage)){
+ $jQ('#mChatUserList').css('display','block')
+ }
+ }
+ })
+ },
+ active:function(){
+ if(mChatArchiveMode||!mChatUserTimeout){
+ return
+ }
+ clearInterval(interval);
+ $jQ('#mChatLoadIMG,#mChatOkIMG,#mChatErrorIMG').hide();
+ $jQ('#mChatPauseIMG').show();
+ $jQ('#mChatRefreshText').html(mChatRefreshNo).addClass('mchat-alert');
+ $jQ('#mChatSessMess').html(mChatSessOut).addClass('mchat-alert')
+ }
+ };
+ var interval=setInterval(function(){
+ mChat.refresh()
+ },mChatRefresh);
+ var statsinterval=setInterval(function(){
+ mChat.stats()},mChatWhoisRefresh);
+ var activeinterval=setInterval(function(){
+ mChat.active()},mChatUserTimeout);
+ var session_time=mChatUserTimeout?mChatUserTimeout/1000:false;
+ if(mChatUserTimeout){
+ var counter=setInterval(function(){
+ mChat.countDown()
+ },1000)
+ }
+ if($jQ.cookie('mChatShowSmiles')=='yes'&&$jQ('#mChatSmiles').css('display','none')){
+ $jQ('#mChatSmiles').slideToggle('slow')
+ }
+ if($jQ.cookie('mChatShowBBCodes')=='yes'&&$jQ('#mChatBBCodes').css('display','none')){
+ $jQ('#mChatBBCodes').slideToggle('slow')
+ }
+ if($jQ.cookie('mChatShowUserList')=='yes'&&$jQ('#mChatUserList').length){
+ $jQ('#mChatUserList').slideToggle('slow')
+ }
+ if($jQ.cookie('mChatShowColour')=='yes'&&$jQ('#mChatColour').css('display','none')){
+ $jQ('#mChatColour').slideToggle('slow')
+ }
+ $jQ('#mChatUseSound').change(function(){
+ if($jQ(this).is(':checked')){
+ $jQ.cookie('mChatNoSound',null)
+ }else{
+ $jQ.cookie('mChatNoSound','yes')
+ }
});
function mChatTimeShow(id){
var tid = parseInt(id);
diff --git a/styles/prosilver/template/mchat_avatars.html b/styles/prosilver/template/mchat_avatars.html
index 114c004..a251eb4 100644
--- a/styles/prosilver/template/mchat_avatars.html
+++ b/styles/prosilver/template/mchat_avatars.html
@@ -3,7 +3,7 @@
-
@ @ @ {mchatrow.MCHAT_USERNAME_FULL} {L_MCHAT_PM} - {mchatrow.MCHAT_TIME}
+
@ @ @ {mchatrow.MCHAT_USERNAME_FULL} {L_MCHAT_PM} - {mchatrow.MCHAT_TIME}
{mchatrow.MCHAT_MESSAGE}
diff --git a/styles/prosilver/template/mchat_body.html b/styles/prosilver/template/mchat_body.html
index 76626e0..e8e0866 100644
--- a/styles/prosilver/template/mchat_body.html
+++ b/styles/prosilver/template/mchat_body.html
@@ -1,5 +1,13 @@
+
+
+
+
+
+
+
+
-
+
class="mChatRowLimitCustom" style="height: {MCHAT_CUSTOM_HEIGHT}px;"class="mChatRowLimit" style="height: {MCHAT_INDEX_HEIGHT}px;">
@@ -101,10 +109,10 @@
{L_MCHAT_NOMESSAGE}
-
+
{L_MCHAT_ANNOUNCEMENT}: {MCHAT_STATIC_MESS}
-
+
-
\ No newline at end of file
diff --git a/ucp/ucp_mchat_info.php b/ucp/ucp_mchat_info.php
index 88ec10f..b40d211 100644
--- a/ucp/ucp_mchat_info.php
+++ b/ucp/ucp_mchat_info.php
@@ -19,9 +19,9 @@ class ucp_mchat_info
'version' => '1.3.8',
'modes' => array(
'configuration' => array(
- 'title' => 'UCP_MCHAT_CONFIG',
- 'auth' => 'ext_dmzx/mchat && acl_u_mchat_use',
- 'cat' => array('UCP_MCHAT_CONFIG')),
+ 'title' => 'UCP_MCHAT_CONFIG',
+ 'auth' => 'ext_dmzx/mchat && acl_u_mchat_use',
+ 'cat' => array('UCP_MCHAT_CONFIG')),
),
);
}
diff --git a/ucp/ucp_mchat_module.php b/ucp/ucp_mchat_module.php
index 903d09b..de75f46 100644
--- a/ucp/ucp_mchat_module.php
+++ b/ucp/ucp_mchat_module.php
@@ -80,7 +80,7 @@ class ucp_mchat_module
$this->functions_mchat->mchat_cache();
}
$mchat_cache = $cache->get('_mchat_config');
-
+
$template->assign_vars(array(
'ERROR' => (sizeof($error)) ? implode(' ', $error) : '',
@@ -108,5 +108,5 @@ class ucp_mchat_module
$this->page_title = 'UCP_PROFILE_MCHAT';
}
// $this->page_title = 'UCP_PROFILE_MCHAT';
-
+
}