diff --git a/composer.json b/composer.json
index 3797ddb..9c40a40 100644
--- a/composer.json
+++ b/composer.json
@@ -26,7 +26,7 @@
"extra": {
"display-name": "mChat Extension",
"soft-require": {
- "phpbb/phpbb": "3.1.*"
+ "phpbb/phpbb": "3.1.*"
}
}
}
\ No newline at end of file
diff --git a/core/render_helper.php b/core/render_helper.php
index a5a8b1c..e347d01 100644
--- a/core/render_helper.php
+++ b/core/render_helper.php
@@ -92,10 +92,10 @@ class render_helper
//chat enabled
if (!$this->config['mchat_enable'])
{
- trigger_error($user->lang['MCHAT_ENABLE'], E_USER_NOTICE);
+ trigger_error($user->lang['MCHAT_ENABLE'], E_USER_NOTICE);
}
- // avatars
+ // avatars
if (!function_exists('get_user_avatar'))
{
include($this->phpbb_root_path . 'includes/functions_display.' . $this->phpEx);
@@ -133,7 +133,7 @@ class render_helper
// grab fools..uhmmm, foes the user has
$foes_array = array();
$sql = 'SELECT * FROM ' . ZEBRA_TABLE . '
- WHERE user_id = ' . $this->user->data['user_id'] . ' AND foe = 1';
+ WHERE user_id = ' . $this->user->data['user_id'] . ' AND foe = 1';
$result = $this->db->sql_query($sql);
while ($row = $this->db->sql_fetchrow($result))
{
@@ -355,7 +355,7 @@ class render_helper
//add to navlinks
$this->template->assign_block_vars('navlinks', array(
'FORUM_NAME' => $this->user->lang['MCHAT_ARCHIVE_PAGE'],
- 'U_VIEW_FORUM' => $this->helper->route('dmzx_mchat_controller', array('mode' => 'archive')),
+ 'U_VIEW_FORUM' => $this->helper->route('dmzx_mchat_controller', array('mode' => 'archive')),
));
// If archive mode request set true
$mchat_archive_mode = true;
@@ -857,7 +857,7 @@ class render_helper
// user has permissions to view the custom chat?
if (!$mchat_view && $mchat_custom_page)
{
- trigger_error($user->lang['NOT_AUTHORISED'], E_USER_NOTICE);
+ trigger_error($user->lang['NOT_AUTHORISED'], E_USER_NOTICE);
}
// if whois true
@@ -906,7 +906,7 @@ class render_helper
}
$this->template->assign_block_vars('navlinks', array(
'FORUM_NAME' => $this->user->lang['MCHAT_TITLE'],
- 'U_VIEW_FORUM' => $this->helper->route('dmzx_mchat_controller'),
+ 'U_VIEW_FORUM' => $this->helper->route('dmzx_mchat_controller'),
));
}
@@ -1086,7 +1086,7 @@ class render_helper
'L_MCHAT_COPYRIGHT' => $copyright,
'MCHAT_WHOIS' => $this->config_mchat['whois'],
'MCHAT_MESSAGE_LNGTH' => $this->config_mchat['max_message_lngth'],
- 'L_MCHAT_MESSAGE_LNGTH_EXPLAIN' => (intval($this->config_mchat['max_message_lngth'])) ? sprintf($this->user->lang['MCHAT_MESSAGE_LNGTH_EXPLAIN'], intval($this->config_mchat['max_message_lngth'])) : '',
+ 'L_MCHAT_MESSAGE_LNGTH_EXPLAIN' => (intval($this->config_mchat['max_message_lngth'])) ? sprintf($this->user->lang['MCHAT_MESSAGE_LNGTH_EXPLAIN'], intval($this->config_mchat['max_message_lngth'])) : '',
'MCHAT_MESS_LONG' => sprintf($this->user->lang['MCHAT_MESS_LONG'], $this->config_mchat['max_message_lngth']),
'MCHAT_USER_TIMEOUT' => $this->config_mchat['timeout'] ? 1000 * $this->config_mchat['timeout'] : false,
'MCHAT_WHOIS_REFRESH' => 1000 * $this->config_mchat['whois_refresh'],
diff --git a/event/listener.php b/event/listener.php
index 9d8e925..0894820 100644
--- a/event/listener.php
+++ b/event/listener.php
@@ -59,7 +59,7 @@ class listener implements EventSubscriberInterface
static public function getSubscribedEvents()
{
return array(
- 'core.viewonline_overwrite_location' => 'add_page_viewonline',
+ 'core.viewonline_overwrite_location' => 'add_page_viewonline',
'core.user_setup' => 'load_language_on_setup',
'core.page_header' => 'add_page_header_link',
'core.index_modify_page_title' => 'display_mchat_on_index',
@@ -71,11 +71,11 @@ class listener implements EventSubscriberInterface
{
global $user, $phpbb_container, $phpEx;
- if (strrpos($event['row']['session_page'], 'app.' . $phpEx . '/chat') === 0)
- {
+ if (strrpos($event['row']['session_page'], 'app.' . $phpEx . '/chat') === 0)
+ {
$event['location'] = $user->lang('MCHAT_TITLE');
$event['location_url'] = $phpbb_container->get('controller.helper')->route('dmzx_mchat_controller');
- }
+ }
}
public function load_language_on_setup($event)
@@ -125,9 +125,9 @@ class listener implements EventSubscriberInterface
public function posting_modify_submit_post_after($event)
{
// only trigger if mode is post
- $mchat_forums_allowed = array();
- if ($event['mode'] == 'post' || $event['mode'] == 'reply' || $event['mode'] == 'quote'|| $event['mode'] == 'edit' && (isset($this->config['mchat_enable']) && $this->config['mchat_enable']) && (isset($this->config['mchat_new_posts']) && $this->config['mchat_new_posts']))
- {
+ $mchat_forums_allowed = array();
+ if ($event['mode'] == 'post' || $event['mode'] == 'reply' || $event['mode'] == 'quote'|| $event['mode'] == 'edit' && (isset($this->config['mchat_enable']) && $this->config['mchat_enable']) && (isset($this->config['mchat_new_posts']) && $this->config['mchat_new_posts']))
+ {
if ($event['mode'] == 'post' && (isset($this->config['mchat_new_posts_topic']) && $this->config['mchat_new_posts_topic']))
{
@@ -150,26 +150,26 @@ class listener implements EventSubscriberInterface
return;
}
- // Data...
- $message = utf8_normalize_nfc($mchat_new_data . ': [url=' . generate_board_url() . '/viewtopic.' . $this->phpEx . '?p=' . $event['data']['post_id'] . '#p' . $event['data']['post_id'] . ']' . $event['post_data']['post_subject'] . '[/url] '. $this->user->lang['MCHAT_IN'] .' [url=' . generate_board_url() . '/viewforum.' . $this->phpEx . '?f=' . $event['forum_id'] . ']' . $event['post_data']['forum_name'] . ' [/url] ' . $this->user->lang['MCHAT_IN_SECTION']);
+ // Data...
+ $message = utf8_normalize_nfc($mchat_new_data . ': [url=' . generate_board_url() . '/viewtopic.' . $this->phpEx . '?p=' . $event['data']['post_id'] . '#p' . $event['data']['post_id'] . ']' . $event['post_data']['post_subject'] . '[/url] '. $this->user->lang['MCHAT_IN'] .' [url=' . generate_board_url() . '/viewforum.' . $this->phpEx . '?f=' . $event['forum_id'] . ']' . $event['post_data']['forum_name'] . ' [/url] ' . $this->user->lang['MCHAT_IN_SECTION']);
- $uid = $bitfield = $options = ''; // will be modified by generate_text_for_storage
- generate_text_for_storage($message, $uid, $bitfield, $options, true, false, false);
- $sql_ary = array(
+ $uid = $bitfield = $options = ''; // will be modified by generate_text_for_storage
+ generate_text_for_storage($message, $uid, $bitfield, $options, true, false, false);
+ $sql_ary = array(
'forum_id' => $event['forum_id'],
'post_id' => $event['post_id'],
'user_id' => $this->user->data['user_id'],
'user_ip' => $this->user->data['session_ip'],
'message' => $message,
- 'bbcode_bitfield' => $bitfield,
- 'bbcode_uid' => $uid,
+ 'bbcode_bitfield' => $bitfield,
+ 'bbcode_uid' => $uid,
'bbcode_options' => $options,
- 'message_time' => time()
- );
- $sql = 'INSERT INTO ' . $this->table_prefix . \dmzx\mchat\core\functions_mchat::MCHAT_TABLE . ' ' . $this->db->sql_build_array('INSERT', $sql_ary);
- $this->db->sql_query($sql);
- }
+ 'message_time' => time()
+ );
+ $sql = 'INSERT INTO ' . $this->table_prefix . \dmzx\mchat\core\functions_mchat::MCHAT_TABLE . ' ' . $this->db->sql_build_array('INSERT', $sql_ary);
+ $this->db->sql_query($sql);
+ }
- }
+ }
}
\ No newline at end of file
diff --git a/language/de/common.php b/language/de/common.php
index b351a6a..7341d89 100644
--- a/language/de/common.php
+++ b/language/de/common.php
@@ -12,12 +12,12 @@
*/
if (!defined('IN_PHPBB'))
{
- exit;
+ exit;
}
if (empty($lang) || !is_array($lang))
{
- $lang = array();
+ $lang = array();
}
// DEVELOPERS PLEASE NOTE
@@ -78,7 +78,7 @@ $lang = array_merge($lang, array(
'MCHAT_NOMESSAGEINPUT' => 'Du hast keine Nachricht eingegeben',
'MCHAT_NOSMILE' => 'Keine Smilies gefunden',
'MCHAT_NOTINSTALLED_USER' => 'Der mChat ist nicht installiert. Bitte kontaktiere den Boardgründer.',
- 'MCHAT_NOT_INSTALLED' => 'Die mChat Datenbankeinträge fehlen. Führe bitte den %sInstaller%s aus, um die Datenbankänderungen für mChat durchzuführen.',
+ 'MCHAT_NOT_INSTALLED' => 'Die mChat Datenbankeinträge fehlen. Führe bitte den %sInstaller%s aus, um die Datenbankänderungen für mChat durchzuführen.',
'MCHAT_OK' => 'OK',
'MCHAT_PAUSE' => 'Pausiert',
'MCHAT_LOAD' => 'Wird geladen',
@@ -122,14 +122,14 @@ $lang = array_merge($lang, array(
//Preferences
'LOG_MCHAT_TABLE_PRUNED' => 'mChat Tabelle löschen',
'ACP_USER_MCHAT' => 'mChat Einstellung',
- 'LOG_DELETED_MCHAT' => 'Lösche mChat Nachricht » %1$en',
- 'LOG_EDITED_MCHAT' => 'Editiere mChat Nachricht » %1$en',
- 'MCHAT_MESSAGE_LNGTH_EXPLAIN' => 'Zeichen übrig: %d',
+ 'LOG_DELETED_MCHAT' => 'Lösche mChat Nachricht » %1$en',
+ 'LOG_EDITED_MCHAT' => 'Editiere mChat Nachricht » %1$en',
+ 'MCHAT_MESSAGE_LNGTH_EXPLAIN' => 'Zeichen übrig: %d',
'MCHAT_TOP_POSTERS' => 'Top Poster',
'MCHAT_NEW_CHAT' => 'Neue mChat Nachricht!',
'MCHAT_SEND_PM' => 'Sende private Nachricht',
- 'MCHAT_PM' => '(PN)',
+ 'MCHAT_PM' => '(PN)',
//Custom edits
- 'REPLY_WITH_LIKE' =>'mir gefällt dieser Beitrag',
+ 'REPLY_WITH_LIKE' =>'mir gefällt dieser Beitrag',
));
diff --git a/language/de/info_acp_mchat.php b/language/de/info_acp_mchat.php
index 714255a..e37ae55 100644
--- a/language/de/info_acp_mchat.php
+++ b/language/de/info_acp_mchat.php
@@ -94,7 +94,7 @@ $lang = array_merge($lang, array(
'MCHAT_BBCODES_DISALLOWED' => 'Nicht erlaubte BBcodes',
'MCHAT_BBCODES_DISALLOWED_EXPLAIN' => 'Hier kann man BBcodes eintragen, die nicht in einer Nachricht verwendet werden dürfen. BBcodes mit einem senkrechten Strich trennen, beispielsweise: b|u|code',
'MCHAT_STATIC_MESSAGE' => 'Permanente Nachricht in der Chatbox',
- 'MCHAT_STATIC_MESSAGE_EXPLAIN' => 'Hier kannst du eine permanente Nachricht für die Benutzer des mChats eingeben. Lass es frei um keine Nachricht anzuzeigen. Deine Nachricht kann 255 Zeichen umfassen. Diese Nachricht kann auch übersetzt werden. (Editiere hierzu die Datei mchat_lang.php file und lies die Anweisungen.).',
+ 'MCHAT_STATIC_MESSAGE_EXPLAIN' => 'Hier kannst du eine permanente Nachricht für die Benutzer des mChats eingeben. Lass es frei um keine Nachricht anzuzeigen. Deine Nachricht kann 255 Zeichen umfassen. Diese Nachricht kann auch übersetzt werden. (Editiere hierzu die Datei mchat_lang.php file und lies die Anweisungen.).',
'MCHAT_USER_TIMEOUT' => 'Zeitüberschreitung für Benutzer',
'MCHAT_USER_TIMEOUT_EXPLAIN' => 'Stelle einen Wert für die Zeitüberschreitung in Sekunden ein, nach der die Sitzung für einen Benutzer im mChat endet. Stelle 0 ein für kein Timeout Limit. Das Limit ist das Selbe, wie in deinen %sForum Einstellungen für Sitzungen%s. Derzeit beträgt dieser Wert %s Sekunden.',
'MCHAT_OVERRIDE_SMILIE_LIMIT' => 'Smilielimit überschreiben?',
@@ -108,13 +108,13 @@ $lang = array_merge($lang, array(
'MCHAT_NEW_POSTS_REPLY' => 'Zeige neue Antworten in Beiträgen an',
'MCHAT_NEW_POSTS_REPLY_EXPLAIN' => 'Stelle auf Ja, damit beantwortete Beiträge aus dem Forum im Chat Nachrichtenbereich angezeigt werden.',
'MCHAT_NEW_POSTS_EDIT' => 'Zeige editierte Beiträge an',
- 'MCHAT_NEW_POSTS_EDIT_EXPLAIN' => 'Stelle auf Ja, damit bearbeitete Beiträge aus dem Forum im Chat Nachrichtenbereich angezeigt werden.',
+ 'MCHAT_NEW_POSTS_EDIT_EXPLAIN' => 'Stelle auf Ja, damit bearbeitete Beiträge aus dem Forum im Chat Nachrichtenbereich angezeigt werden.',
'MCHAT_NEW_POSTS_QUOTE' => 'Zeige zitierte Beiträge an',
'MCHAT_NEW_POSTS_QUOTE_EXPLAIN' => 'Stelle auf Ja, damit die zitierten Beiträge aus dem Forum im Chat Nachrichtenbereich angezeigt werden.',
'MCHAT_MAIN' => 'Hauptkonfiguration',
'MCHAT_STATS' => 'Wer ist im mChat?',
'MCHAT_STATS_INDEX' => 'Anzeige auf dem Index',
- 'MCHAT_STATS_INDEX_EXPLAIN' => 'Zeigt auf dem Index an wer im Mini-Chat ist.',
+ 'MCHAT_STATS_INDEX_EXPLAIN' => 'Zeigt auf dem Index an wer im Mini-Chat ist.',
'MCHAT_MESSAGE_TOP' => 'Nachricht unten / oben',
'MCHAT_MESSAGE_TOP_EXPLAIN' => 'Hier kannst Du einstellen, ob der Nachrichtenbereich oben oder unten angezeigt werden soll.',
'MCHAT_BOTTOM' => 'Unten',
diff --git a/language/en/common.php b/language/en/common.php
index fa4cf36..eedd7ca 100644
--- a/language/en/common.php
+++ b/language/en/common.php
@@ -12,12 +12,12 @@
*/
if (!defined('IN_PHPBB'))
{
- exit;
+ exit;
}
if (empty($lang) || !is_array($lang))
{
- $lang = array();
+ $lang = array();
}
// DEVELOPERS PLEASE NOTE
@@ -77,7 +77,7 @@ $lang = array_merge($lang, array(
'MCHAT_NOMESSAGE' => 'No messages',
'MCHAT_NOMESSAGEINPUT' => 'You have not entered a message',
'MCHAT_NOSMILE' => 'Smilies not found',
- 'MCHAT_NOTINSTALLED_USER' => 'mChat is not installed. Please notify the board founder.',
+ 'MCHAT_NOTINSTALLED_USER' => 'mChat is not installed. Please notify the board founder.',
'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',
@@ -122,14 +122,14 @@ $lang = array_merge($lang, array(
//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',
- 'MCHAT_MESSAGE_LNGTH_EXPLAIN' => 'Characters remaining: %d',
+ '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_SEND_PM' => 'Send Private Message',
- 'MCHAT_PM' => '(PM)',
+ 'MCHAT_PM' => '(PM)',
//Custom edits
- 'REPLY_WITH_LIKE' =>'Like This Post',
+ 'REPLY_WITH_LIKE' =>'Like This Post',
));
\ No newline at end of file
diff --git a/language/en/info_acp_mchat.php b/language/en/info_acp_mchat.php
index 7cac185..672ecbf 100644
--- a/language/en/info_acp_mchat.php
+++ b/language/en/info_acp_mchat.php
@@ -47,7 +47,7 @@ $lang = array_merge($lang, array(
// ACP entries
'ACP_MCHAT_RULES' => 'Rules',
- '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).',
+ '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 ',
'MCHAT_CONFIG_SAVED' => 'Mini Chat configuration has been updated',
'MCHAT_TITLE' => 'Mini-Chat',
@@ -94,7 +94,7 @@ $lang = array_merge($lang, array(
'MCHAT_BBCODES_DISALLOWED' => 'Disallowed bbcodes',
'MCHAT_BBCODES_DISALLOWED_EXPLAIN' => 'Here you can input the bbcodes that are not to be used in a message. Separate bbcodes with a vertical bar, for example: b|i|u|code|list|list=|flash|quote and/or a %scustom bbcode tag name%s',
'MCHAT_STATIC_MESSAGE' => 'Static Message',
- 'MCHAT_STATIC_MESSAGE_EXPLAIN' => 'Here you can define a static message to display to users of the chat. HTML code is allowed. Set to empty to disable the display. You are limited to 255 characters. This message can be translated. (you must edit the mchat_lang.php file and read the instructions).',
+ 'MCHAT_STATIC_MESSAGE_EXPLAIN' => 'Here you can define a static message to display to users of the chat. HTML code is allowed. Set to empty to disable the display. You are limited to 255 characters. This message can be translated. (you must edit the mchat_lang.php file and read the instructions).',
'MCHAT_USER_TIMEOUT' => 'User Timeout',
'MCHAT_USER_TIMEOUT_EXPLAIN' => 'Set the amount of time, in seconds, until a users session in the chat ends. Set to 0 for no timeout. You are limited to the %sforum config setting for sessions%s which is currently set to %s seconds',
'MCHAT_OVERRIDE_SMILIE_LIMIT' => 'Override smilie limit',
@@ -124,8 +124,8 @@ $lang = array_merge($lang, array(
'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.',
+ 'MCHAT_NEEDS_UPDATING' => 'The mChat extension needs updating. Please have a forum founder visit this section to run the installer.',
+ 'MCHAT_WRONG_VERSION' => 'The wrong version of the extension is installed. Please run the %sinstaller%s for the new version of the modification.',
'WARNING' => 'Warning',
'TOO_LONG_DATE' => 'The date format you entered is too long.',
'TOO_SHORT_DATE' => 'The date format you entered is too short.',
diff --git a/language/es/common.php b/language/es/common.php
index 7ca3290..ecdebf8 100644
--- a/language/es/common.php
+++ b/language/es/common.php
@@ -12,12 +12,12 @@
*/
if (!defined('IN_PHPBB'))
{
- exit;
+ exit;
}
if (empty($lang) || !is_array($lang))
{
- $lang = array();
+ $lang = array();
}
// DEVELOPERS PLEASE NOTE
@@ -77,7 +77,7 @@ $lang = array_merge($lang, array(
'MCHAT_NOMESSAGE' => 'No hay mensajes',
'MCHAT_NOMESSAGEINPUT' => 'Debe introducir un mensaje',
'MCHAT_NOSMILE' => 'No se encontraron emoticonos',
- 'MCHAT_NOTINSTALLED_USER' => 'mChat no esta instalado. Por favor, avise al fundador del foro.',
+ 'MCHAT_NOTINSTALLED_USER' => 'mChat no esta instalado. Por favor, avise al fundador del foro.',
'MCHAT_NOT_INSTALLED' => 'Faltan entradas de mChat en la base de datos. Por favor, ejecute el %sinstalador%s para crear los cambios de la modificación en la base de datos.',
'MCHAT_OK' => 'OK',
'MCHAT_PAUSE' => 'Pausado',
@@ -122,14 +122,14 @@ $lang = array_merge($lang, array(
//Preferences
'LOG_MCHAT_TABLE_PRUNED' => 'La tabla de mChat ha sido limpiada',
'ACP_USER_MCHAT' => 'Ajustes de mChat',
- 'LOG_DELETED_MCHAT' => 'Mensaje de mChat borrado » %1$s',
- 'LOG_EDITED_MCHAT' => 'Mensaje de mChat editado » %1$s',
- 'MCHAT_MESSAGE_LNGTH_EXPLAIN' => 'Caracteres restantes: %d',
+ 'LOG_DELETED_MCHAT' => 'Mensaje de mChat borrado » %1$s',
+ 'LOG_EDITED_MCHAT' => 'Mensaje de mChat editado » %1$s',
+ 'MCHAT_MESSAGE_LNGTH_EXPLAIN' => 'Caracteres restantes: %d',
'MCHAT_TOP_POSTERS' => 'Top Spammers',
'MCHAT_NEW_CHAT' => '¡Nuevo mensaje en el Chat!',
'MCHAT_SEND_PM' => 'Enviar mensaje privado',
- 'MCHAT_PM' => '(MP)',
+ 'MCHAT_PM' => '(MP)',
//Custom edits
- 'REPLY_WITH_LIKE' =>'Me gusta este mensaje',
+ 'REPLY_WITH_LIKE' =>'Me gusta este mensaje',
));
diff --git a/language/es/info_acp_mchat.php b/language/es/info_acp_mchat.php
index 499604a..13d9be3 100644
--- a/language/es/info_acp_mchat.php
+++ b/language/es/info_acp_mchat.php
@@ -47,8 +47,8 @@ $lang = array_merge($lang, array(
// ACP entries
'ACP_MCHAT_RULES' => 'Normas',
- 'ACP_MCHAT_RULES_EXPLAIN' => 'Introduzca las Normas del foro aquí. Cada normas en una nueva línea. Esto está limitado a 255 caracteres. Este mensaje puede ser traducido. (hay que editar el archivo mchat_lang.php y lea las instrucciones).',
- 'LOG_MCHAT_CONFIG_UPDATE' => 'Actualizada configuración de mChat ',
+ 'ACP_MCHAT_RULES_EXPLAIN' => 'Introduzca las Normas del foro aquí. Cada normas en una nueva línea. Esto está limitado a 255 caracteres. Este mensaje puede ser traducido. (hay que editar el archivo mchat_lang.php y lea las instrucciones).',
+ 'LOG_MCHAT_CONFIG_UPDATE' => 'Actualizada configuración de mChat ',
'MCHAT_CONFIG_SAVED' => 'La configuración de Mini-Chat se ha actualizado',
'MCHAT_TITLE' => 'Mini-Chat',
'MCHAT_VERSION' => 'Versión:',
@@ -67,7 +67,7 @@ $lang = array_merge($lang, array(
'MCHAT_REFRESH' => 'Refrescar',
'MCHAT_REFRESH_EXPLAIN' => 'Número de segundos antes de que el chat se actualice automáticamente. No ponga menos de 5 segundos.',
'MCHAT_PRUNE' => 'Habilitar purga',
- 'MCHAT_PRUNE_EXPLAIN' => 'Se pone en SI para permitir la función purgar. Sólo ocurre si un usuario visita habitualmente las páginas de archivo.',
+ 'MCHAT_PRUNE_EXPLAIN' => 'Se pone en SI para permitir la función purgar. Sólo ocurre si un usuario visita habitualmente las páginas de archivo.',
'MCHAT_PRUNE_NUM' => 'Numero de purga',
'MCHAT_PRUNE_NUM_EXPLAIN' => 'El número de mensajes de retener en el chat.',
'MCHAT_MESSAGE_LIMIT' => 'Limite de mensajes',
@@ -88,16 +88,16 @@ $lang = array_merge($lang, array(
'MCHAT_DATE_FORMAT_EXPLAIN' => 'La sintaxis usada es idéntica a la versión de ña función PHP date().',
'MCHAT_CUSTOM_DATEFORMAT' => 'Personalizar...',
'MCHAT_WHOIS' => 'Quienes',
- 'MCHAT_WHOIS_EXPLAIN' => 'Permitir una visualización de los usuarios que están chateando.',
+ 'MCHAT_WHOIS_EXPLAIN' => 'Permitir una visualización de los usuarios que están chateando.',
'MCHAT_WHOIS_REFRESH' => 'Actualizar Quienes',
'MCHAT_WHOIS_REFRESH_EXPLAIN' => 'Número de segundos antes de que actualiza las estadísticas Quienes. No ponga menos de 30 segundos.',
'MCHAT_BBCODES_DISALLOWED' => 'Deshabilitar BBCodes',
'MCHAT_BBCODES_DISALLOWED_EXPLAIN' => 'Aquí puede introducir el tipo de bbcode que no se van a utilizar en un mensaje. Separar BBcodes con una barra vertical, por ejemplo: b|u|code',
'MCHAT_STATIC_MESSAGE' => 'Mensaje estatico',
- 'MCHAT_STATIC_MESSAGE_EXPLAIN' => 'Aquí puede definir un mensaje estatico que se mostrara a los usuarios en el chat. Dejelo vacio para desactivarlo. Está limitado a 255 caracteres. Este mensaje puede ser traducido. (solo necesita editar el archivo mchat_lang.php y leer las instrucciones).',
+ 'MCHAT_STATIC_MESSAGE_EXPLAIN' => 'Aquí puede definir un mensaje estatico que se mostrara a los usuarios en el chat. Dejelo vacio para desactivarlo. Está limitado a 255 caracteres. Este mensaje puede ser traducido. (solo necesita editar el archivo mchat_lang.php y leer las instrucciones).',
'MCHAT_USER_TIMEOUT' => 'Tiempo de espera del usuario',
'MCHAT_USER_TIMEOUT_EXPLAIN' => 'Ajuste una cantidad de tiempo, en segundos, hasta que la sesión del usuario del chat finalice. Ponga 0 para no tener tiempo de espera. Está limitado a %sAjustes de configuración de sesiones del foro%s que actualmente está en %s segundos',
- 'MCHAT_OVERRIDE_SMILIE_LIMIT' => 'Reemplazar límite de emoticonos',
+ 'MCHAT_OVERRIDE_SMILIE_LIMIT' => 'Reemplazar límite de emoticonos',
'MCHAT_OVERRIDE_SMILIE_LIMIT_EXPLAIN' => 'Poner en Si, para reemplazar el ajuste del limite de emoticonos de los foros para los mensajes del chat',
'MCHAT_OVERRIDE_MIN_POST_CHARS' => 'Reemplazar límite de caracteres minimos',
'MCHAT_OVERRIDE_MIN_POST_CHARS_EXPLAIN' => 'Poner Si, para sobrescribir los ajustes de caracteres minimos del foro, en los mensajes del chat',
@@ -124,8 +124,8 @@ $lang = array_merge($lang, array(
'MCHAT_PAUSE_ON_INPUT_EXPLAIN' => 'Si pone Si, el chat no se actualizara automaticamente hasta que el usuario introduzca un mensaje',
// error reporting
- 'MCHAT_NEEDS_UPDATING' => 'El MOD de mChat necesita ser actualizado. Por favor, que uno de los fundadores del foro visite esta sección para ejecutar el instalador.',
- 'MCHAT_WRONG_VERSION' => 'Hay una versión del MOD instalada incorrecta. Por favor, ejecute el %sinstalador%s para la nueva versión de la modificación.',
+ 'MCHAT_NEEDS_UPDATING' => 'El MOD de mChat necesita ser actualizado. Por favor, que uno de los fundadores del foro visite esta sección para ejecutar el instalador.',
+ 'MCHAT_WRONG_VERSION' => 'Hay una versión del MOD instalada incorrecta. Por favor, ejecute el %sinstalador%s para la nueva versión de la modificación.',
'WARNING' => 'Advertencia',
'TOO_LONG_DATE' => 'El formato de fecha que ha entrado es demasiado largo.',
'TOO_SHORT_DATE' => 'El formato de fecha que ha introducido es demasiado corto.',
@@ -141,14 +141,14 @@ $lang = array_merge($lang, array(
'TOO_LARGE_MAX_MESSAGE_LNGTH' => 'El máximo valor de longitud de cada mensaje demasiado largo.',
'TOO_SMALL_MAX_WORDS_LNGTH' => 'El valor máximo de palabras es demasiado corto.',
'TOO_LARGE_MAX_WORDS_LNGTH' => 'El valor máximo de palabras es demasiado largo.',
- 'TOO_SMALL_WHOIS_REFRESH' => 'El valor de refresco de whois es demasiado corto.',
- 'TOO_LARGE_WHOIS_REFRESH' => 'El valor de refresco de whois es demasiado largo.',
+ 'TOO_SMALL_WHOIS_REFRESH' => 'El valor de refresco de whois es demasiado corto.',
+ 'TOO_LARGE_WHOIS_REFRESH' => 'El valor de refresco de whois es demasiado largo.',
'TOO_SMALL_INDEX_HEIGHT' => 'El valor de la altura del índice es demasiado corto.',
'TOO_LARGE_INDEX_HEIGHT' => 'El valor de la altura del índice es demasiado largo.',
- 'TOO_SMALL_CUSTOM_HEIGHT' => 'El valor de la altura personalizada es demasiado corto.',
- 'TOO_LARGE_CUSTOM_HEIGHT' => 'El valor de la altura personalizada es demasiado largo.',
- 'TOO_SHORT_STATIC_MESSAGE' => 'El valor del mensaje estatico es demasiado corto.',
- 'TOO_LONG_STATIC_MESSAGE' => 'El valor del mensaje estatico es demasiado largo.',
+ 'TOO_SMALL_CUSTOM_HEIGHT' => 'El valor de la altura personalizada es demasiado corto.',
+ 'TOO_LARGE_CUSTOM_HEIGHT' => 'El valor de la altura personalizada es demasiado largo.',
+ 'TOO_SHORT_STATIC_MESSAGE' => 'El valor del mensaje estatico es demasiado corto.',
+ 'TOO_LONG_STATIC_MESSAGE' => 'El valor del mensaje estatico es demasiado largo.',
'TOO_SMALL_TIMEOUT' => 'El valor de tiempo de espera del usuario es demasiado corto.',
'TOO_LARGE_TIMEOUT' => 'El valor de tiempo de espera del usuario es demasiado largo.',
diff --git a/language/fr/common.php b/language/fr/common.php
index c2cf770..7ec9ee0 100644
--- a/language/fr/common.php
+++ b/language/fr/common.php
@@ -12,12 +12,12 @@
*/
if (!defined('IN_PHPBB'))
{
- exit;
+ exit;
}
if (empty($lang) || !is_array($lang))
{
- $lang = array();
+ $lang = array();
}
// DEVELOPERS PLEASE NOTE
@@ -122,14 +122,14 @@ $lang = array_merge($lang, array(
//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',
- 'MCHAT_MESSAGE_LNGTH_EXPLAIN' => 'Caractères restants: %d',
+ '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_SEND_PM' => 'Envoyer un message privé',
- 'MCHAT_PM' => '(MP)',
+ 'MCHAT_PM' => '(MP)',
//Custom edits
- 'REPLY_WITH_LIKE' =>'Like This Post',
+ 'REPLY_WITH_LIKE' =>'Like This Post',
));
\ No newline at end of file
diff --git a/language/it/common.php b/language/it/common.php
index 665c3ac..aecc982 100644
--- a/language/it/common.php
+++ b/language/it/common.php
@@ -12,12 +12,12 @@
*/
if (!defined('IN_PHPBB'))
{
- exit;
+ exit;
}
if (empty($lang) || !is_array($lang))
{
- $lang = array();
+ $lang = array();
}
// DEVELOPERS PLEASE NOTE
@@ -122,14 +122,14 @@ $lang = array_merge($lang, array(
//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',
- 'MCHAT_MESSAGE_LNGTH_EXPLAIN' => 'Caratteri: %d',
+ '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_SEND_PM' => 'Invia messaggio privato',
- 'MCHAT_PM' => '(PM)',
+ 'MCHAT_PM' => '(PM)',
//Custom edits
- 'REPLY_WITH_LIKE' =>'Like This Post',
+ 'REPLY_WITH_LIKE' =>'Like This Post',
));
\ No newline at end of file
diff --git a/language/it/info_acp_mchat.php b/language/it/info_acp_mchat.php
index 7ce8feb..b0c9a64 100644
--- a/language/it/info_acp_mchat.php
+++ b/language/it/info_acp_mchat.php
@@ -47,7 +47,7 @@ $lang = array_merge($lang, array(
// ACP entries
'ACP_MCHAT_RULES' => 'Regole',
- 'ACP_MCHAT_RULES_EXPLAIN' => 'Inserisci le regole per questo forum. Ogni regola su una nuova linea. Limite a 255 caratteri. Questo messaggio può essere tradotto. (è necessario modificare il file mchat_lang.php e leggere le istruzioni).',
+ 'ACP_MCHAT_RULES_EXPLAIN' => 'Inserisci le regole per questo forum. Ogni regola su una nuova linea. Limite a 255 caratteri. Questo messaggio può essere tradotto. (è necessario modificare il file mchat_lang.php e leggere le istruzioni).',
'LOG_MCHAT_CONFIG_UPDATE' => 'Aggiornamento Configurazioni mChat ',
'MCHAT_CONFIG_SAVED' => 'Mini Chat configurazioni salvate',
'MCHAT_TITLE' => 'Mini-Chat',
@@ -77,7 +77,7 @@ $lang = array_merge($lang, array(
'MCHAT_ARCHIVE_LIMIT' => 'Archivio limite',
'MCHAT_ARCHIVE_LIMIT_EXPLAIN' => 'Il numero massimo di messaggi da visualizzare per pagina nella pagina di archivio. Recommandato da 25 a 50.',
'MCHAT_FLOOD_TIME' => 'Tempo',
- 'MCHAT_FLOOD_TIME_EXPLAIN' => 'Il numero di secondi che un utente deve attendere prima di inviare un altro messaggio in chat. Recommandato da 5 a 30, imposta 0 per disabilitare.',
+ 'MCHAT_FLOOD_TIME_EXPLAIN' => 'Il numero di secondi che un utente deve attendere prima di inviare un altro messaggio in chat. Recommandato da 5 a 30, imposta 0 per disabilitare.',
'MCHAT_MAX_MESSAGE_LENGTH' => 'Lunghezza massima messaggi',
'MCHAT_MAX_MESSAGE_LENGTH_EXPLAIN' => 'Il numero massimo di caratteri consentiti per messaggio inviato. Recommandato da 100 a 500, imposta 0 per disabilitare.',
'MCHAT_CUSTOM_PAGE' => 'Pagina personalizzata',
@@ -94,7 +94,7 @@ $lang = array_merge($lang, array(
'MCHAT_BBCODES_DISALLOWED' => 'Disabilita bbcodes',
'MCHAT_BBCODES_DISALLOWED_EXPLAIN' => 'Qui è possibile inserire i BBCodes che not saranno usati nei messaggi. Separare i bbcodes con una barra verticale, ad esempio: b|i|u|code|list|list=|flash|quote e/o a %scustom bbcode tag name%s',
'MCHAT_STATIC_MESSAGE' => 'Messaggi Statici',
- 'MCHAT_STATIC_MESSAGE_EXPLAIN' => 'Qui è possibile definire un messaggio statico da visualizzare agli utenti della chat. HTML codice è permesso. Svuotare per disattivare la visualizzazione. Limite di 255 caratteri. Questo messaggio può essere tradotto. (modificando il file mchat_lang.php leggere le istruzioni).',
+ 'MCHAT_STATIC_MESSAGE_EXPLAIN' => 'Qui è possibile definire un messaggio statico da visualizzare agli utenti della chat. HTML codice è permesso. Svuotare per disattivare la visualizzazione. Limite di 255 caratteri. Questo messaggio può essere tradotto. (modificando il file mchat_lang.php leggere le istruzioni).',
'MCHAT_USER_TIMEOUT' => 'Timeout utente',
'MCHAT_USER_TIMEOUT_EXPLAIN' => 'Impostare la quantità di tempo, in secondi, fino una sessione utenti nella chat termina. Impostare a 0 per nessun timeout. Limite di %sforum config impostazioni a sessions%s che è attualmente impostato %s secondi',
'MCHAT_OVERRIDE_SMILIE_LIMIT' => 'Limite smile',
diff --git a/language/nl/common.php b/language/nl/common.php
index 5d9a772..390e137 100644
--- a/language/nl/common.php
+++ b/language/nl/common.php
@@ -12,12 +12,12 @@
*/
if (!defined('IN_PHPBB'))
{
- exit;
+ exit;
}
if (empty($lang) || !is_array($lang))
{
- $lang = array();
+ $lang = array();
}
// DEVELOPERS PLEASE NOTE
@@ -122,14 +122,14 @@ $lang = array_merge($lang, array(
//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',
+ '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!',
'MCHAT_SEND_PM' => 'Stuur prive bericht',
- 'MCHAT_PM' => '(PM)',
+ 'MCHAT_PM' => '(PM)',
//Custom edits
- 'REPLY_WITH_LIKE' =>'Vindt dit bericht leuk',
+ 'REPLY_WITH_LIKE' =>'Vindt dit bericht leuk',
));
\ No newline at end of file
diff --git a/language/nl/info_acp_mchat.php b/language/nl/info_acp_mchat.php
index 6f37851..2a74c33 100644
--- a/language/nl/info_acp_mchat.php
+++ b/language/nl/info_acp_mchat.php
@@ -47,7 +47,7 @@ $lang = array_merge($lang, array(
// 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).',
+ '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',
@@ -94,7 +94,7 @@ $lang = array_merge($lang, array(
'MCHAT_BBCODES_DISALLOWED' => 'Niet toegestane bbcodes',
'MCHAT_BBCODES_DISALLOWED_EXPLAIN' => 'Hier kun je de bbcodes plaatsen, die nietzijn 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_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',
@@ -125,7 +125,7 @@ $lang = array_merge($lang, array(
// 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 geïnstalleerd. Gebruik a.u.b. de %sinstaller%s van de nieuwe versie voor eventuele wijzigingen.',
+ 'MCHAT_WRONG_VERSION' => 'De verkeerde versie van de extensie is geïnstalleerd. 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.',
diff --git a/language/pl/common.php b/language/pl/common.php
index 472dce2..088f080 100644
--- a/language/pl/common.php
+++ b/language/pl/common.php
@@ -12,12 +12,12 @@
*/
if (!defined('IN_PHPBB'))
{
- exit;
+ exit;
}
if (empty($lang) || !is_array($lang))
{
- $lang = array();
+ $lang = array();
}
// DEVELOPERS PLEASE NOTE
@@ -77,7 +77,7 @@ $lang = array_merge($lang, array(
'MCHAT_NOMESSAGE' => 'Nie ma wiadomości',
'MCHAT_NOMESSAGEINPUT' => 'Nie wprowadziłeś wiadomości',
'MCHAT_NOSMILE' => 'Nie znaleziono emotikona',
- 'MCHAT_NOTINSTALLED_USER' => 'mChat nie jest zainstalowany. Proszę skontaktuj się z administratorem.',
+ 'MCHAT_NOTINSTALLED_USER' => 'mChat nie jest zainstalowany. Proszę skontaktuj się z administratorem.',
'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',
@@ -122,14 +122,14 @@ $lang = array_merge($lang, array(
//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',
- 'MCHAT_MESSAGE_LNGTH_EXPLAIN' => 'Pozostało znaków: %d',
+ '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 mChacie!',
'MCHAT_SEND_PM' => 'Wyślij prywatną wiadomość',
- 'MCHAT_PM' => '(PM)',
+ 'MCHAT_PM' => '(PM)',
//Custom edits
- 'REPLY_WITH_LIKE' =>'Like This Post',
+ 'REPLY_WITH_LIKE' =>'Like This Post',
));
\ No newline at end of file
diff --git a/language/pl/info_acp_mchat.php b/language/pl/info_acp_mchat.php
index 9a4bfa8..2178f35 100644
--- a/language/pl/info_acp_mchat.php
+++ b/language/pl/info_acp_mchat.php
@@ -47,7 +47,7 @@ $lang = array_merge($lang, array(
// ACP entries
'ACP_MCHAT_RULES' => 'Regulamin',
- 'ACP_MCHAT_RULES_EXPLAIN' => 'Tutaj wprowadź regulamin mChat. Każdy podpunkt w oddzielnej lini. Limit znaków wynosi 255. ',
+ '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',
'MCHAT_CONFIG_SAVED' => 'Zaktualizowano konfigurację mChat',
'MCHAT_TITLE' => 'Mini-Chat',
@@ -94,7 +94,7 @@ $lang = array_merge($lang, array(
'MCHAT_BBCODES_DISALLOWED' => 'Niedozwolone bbcodes',
'MCHAT_BBCODES_DISALLOWED_EXPLAIN' => 'Tutaj umieść bbcodes których nie będzie można używać w wiadomościach. Oddziel bbcodes pionową kreską, na przykład: b|i|u|code|list|list=|flash|quote i/lub %wybierz z tych%s',
'MCHAT_STATIC_MESSAGE' => 'Ogłoszenie',
- 'MCHAT_STATIC_MESSAGE_EXPLAIN' => 'Tutaj możesz umieścić ogłoszenie które wyświetli się osobą korzystającym z mChat. kod HTML jest dozwolony. Zostaw puste aby wyłączyć wyświetlanie. Limit wynosi max 255 znaków. ',
+ 'MCHAT_STATIC_MESSAGE_EXPLAIN' => 'Tutaj możesz umieścić ogłoszenie które wyświetli się osobą korzystającym z mChat. kod HTML jest dozwolony. Zostaw puste aby wyłączyć wyświetlanie. Limit wynosi max 255 znaków. ',
'MCHAT_USER_TIMEOUT' => 'Limit czasu dla użytkownika',
'MCHAT_USER_TIMEOUT_EXPLAIN' => 'Ustaw czas w sekundach do zakończenia sesji użytkownika. Ustaw 0 aby wyłączyć. Limit znajdziesz %stutaj%s aktualnie jest ustawione na %s sekund',
'MCHAT_OVERRIDE_SMILIE_LIMIT' => 'Limit emotikon',
@@ -124,8 +124,8 @@ $lang = array_merge($lang, array(
'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.',
+ 'MCHAT_NEEDS_UPDATING' => 'Rozszerzenie mChat musi zostać zaktualizowane. Proszę skontaktuj się z administratorem.',
+ 'MCHAT_WRONG_VERSION' => 'Zainstalowano złą wersję rozszerzenia. Proszę uruchom %instalator%s aby zainstalować nową wersję rozszerzenia.',
'WARNING' => 'Warning',
'TOO_LONG_DATE' => 'Format day który wpisałeś jest za długi.',
'TOO_SHORT_DATE' => 'Format day który wpisałeś jest za krótki.',
diff --git a/license.txt b/license.txt
index a330e6d..06deb0d 100644
--- a/license.txt
+++ b/license.txt
@@ -1,5 +1,5 @@
GNU GENERAL PUBLIC LICENSE
- Version 2, June 1991
+ Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
@@ -8,75 +8,75 @@
Preamble
- The licenses for most software are designed to take away your
-freedom to share and change it. By contrast, the GNU General Public
+ The licenses for most software are designed to take away your
+freedom to share and change it. By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
-software--to make sure the software is free for all its users. This
+software--to make sure the software is free for all its users. This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
-using it. (Some other Free Software Foundation software is covered by
-the GNU Lesser General Public License instead.) You can apply it to
+using it. (Some other Free Software Foundation software is covered by
+the GNU Lesser General Public License instead.) You can apply it to
your programs, too.
- When we speak of free software, we are referring to freedom, not
-price. Our General Public Licenses are designed to make sure that you
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
this service if you wish), that you receive source code or can get it
if you want it, that you can change the software or use pieces of it
in new free programs; and that you know you can do these things.
- To protect your rights, we need to make restrictions that forbid
+ To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.
- For example, if you distribute copies of such a program, whether
+ For example, if you distribute copies of such a program, whether
gratis or for a fee, you must give the recipients all the rights that
-you have. You must make sure that they, too, receive or can get the
-source code. And you must show them these terms so they know their
+you have. You must make sure that they, too, receive or can get the
+source code. And you must show them these terms so they know their
rights.
- We protect your rights with two steps: (1) copyright the software, and
+ We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.
- Also, for each author's protection and ours, we want to make certain
+ Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
-software. If the software is modified by someone else and passed on, we
+software. If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors' reputations.
- Finally, any free program is threatened constantly by software
-patents. We wish to avoid the danger that redistributors of a free
+ Finally, any free program is threatened constantly by software
+patents. We wish to avoid the danger that redistributors of a free
program will individually obtain patent licenses, in effect making the
-program proprietary. To prevent this, we have made it clear that any
+program proprietary. To prevent this, we have made it clear that any
patent must be licensed for everyone's free use or not licensed at all.
- The precise terms and conditions for copying, distribution and
+ The precise terms and conditions for copying, distribution and
modification follow.
GNU GENERAL PUBLIC LICENSE
- TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
- 0. This License applies to any program or other work which contains
+ 0. This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
-under the terms of this General Public License. The "Program", below,
+under the terms of this General Public License. The "Program", below,
refers to any such program or work, and a "work based on the Program"
means either the Program or any derivative work under copyright law:
that is to say, a work containing the Program or a portion of it,
either verbatim or with modifications and/or translated into another
-language. (Hereinafter, translation is included without limitation in
-the term "modification".) Each licensee is addressed as "you".
+language. (Hereinafter, translation is included without limitation in
+the term "modification".) Each licensee is addressed as "you".
Activities other than copying, distribution and modification are not
-covered by this License; they are outside its scope. The act of
+covered by this License; they are outside its scope. The act of
running the Program is not restricted, and the output from the Program
is covered only if its contents constitute a work based on the
Program (independent of having been made by running the Program).
Whether that is true depends on what the Program does.
- 1. You may copy and distribute verbatim copies of the Program's
+ 1. You may copy and distribute verbatim copies of the Program's
source code as you receive it, in any medium, provided that you
conspicuously and appropriately publish on each copy an appropriate
copyright notice and disclaimer of warranty; keep intact all the
@@ -87,7 +87,7 @@ along with the Program.
You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.
- 2. You may modify your copy or copies of the Program or any portion
+ 2. You may modify your copy or copies of the Program or any portion
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:
@@ -107,15 +107,15 @@ above, provided that you also meet all of these conditions:
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
+ 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
+These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
-sections when you distribute them as separate works. But when you
+sections when you distribute them as separate works. But when you
distribute the same sections as part of a whole which is a work based
on the Program, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
@@ -131,7 +131,7 @@ with the Program (or with a work based on the Program) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.
- 3. You may copy and distribute the Program (or a work based on it,
+ 3. You may copy and distribute the Program (or a work based on it,
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:
@@ -147,16 +147,16 @@ Sections 1 and 2 above provided that you also do one of the following:
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
+ 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
+making modifications to it. For an executable work, complete source
code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
-control compilation and installation of the executable. However, as a
+control compilation and installation of the executable. However, as a
special exception, the source code distributed need not include
anything that is normally distributed (in either source or binary
form) with the major components (compiler, kernel, and so on) of the
@@ -169,39 +169,39 @@ access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.
- 4. You may not copy, modify, sublicense, or distribute the Program
-except as expressly provided under this License. Any attempt
+ 4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License. Any attempt
otherwise to copy, modify, sublicense or distribute the Program is
void, and will automatically terminate your rights under this License.
However, parties who have received copies, or rights, from you under
this License will not have their licenses terminated so long as such
parties remain in full compliance.
- 5. You are not required to accept this License, since you have not
-signed it. However, nothing else grants you permission to modify or
-distribute the Program or its derivative works. These actions are
-prohibited by law if you do not accept this License. Therefore, by
+ 5. You are not required to accept this License, since you have not
+signed it. However, nothing else grants you permission to modify or
+distribute the Program or its derivative works. These actions are
+prohibited by law if you do not accept this License. Therefore, by
modifying or distributing the Program (or any work based on the
Program), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Program or works based on it.
- 6. Each time you redistribute the Program (or any work based on the
+ 6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the
original licensor to copy, distribute or modify the Program subject to
-these terms and conditions. You may not impose any further
+these terms and conditions. You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties to
this License.
- 7. If, as a consequence of a court judgment or allegation of patent
+ 7. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License. If you cannot
+excuse you from the conditions of this License. If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
-may not distribute the Program at all. For example, if a patent
+may not distribute the Program at all. For example, if a patent
license would not permit royalty-free redistribution of the Program by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
@@ -216,7 +216,7 @@ It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system, which is
-implemented by public license practices. Many people have made
+implemented by public license practices. Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
@@ -226,48 +226,48 @@ impose that choice.
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
- 8. If the distribution and/or use of the Program is restricted in
+ 8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
may add an explicit geographical distribution limitation excluding
those countries, so that distribution is permitted only in or among
-countries not thus excluded. In such case, this License incorporates
+countries not thus excluded. In such case, this License incorporates
the limitation as if written in the body of this License.
- 9. The Free Software Foundation may publish revised and/or new versions
-of the General Public License from time to time. Such new versions will
+ 9. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
-Each version is given a distinguishing version number. If the Program
+Each version is given a distinguishing version number. If the Program
specifies a version number of this License which applies to it and "any
later version", you have the option of following the terms and conditions
either of that version or of any later version published by the Free
-Software Foundation. If the Program does not specify a version number of
+Software Foundation. If the Program does not specify a version number of
this License, you may choose any version ever published by the Free Software
Foundation.
- 10. If you wish to incorporate parts of the Program into other free
+ 10. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
-to ask for permission. For software which is copyrighted by the Free
+to ask for permission. For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
-make exceptions for this. Our decision will be guided by the two goals
+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
- 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
+ 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
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
-TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.
- 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
@@ -281,17 +281,17 @@ POSSIBILITY OF SUCH DAMAGES.
How to Apply These Terms to Your New Programs
- If you develop a new program, and you want it to be of the greatest
+ 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
free software which everyone can redistribute and change under these terms.
- To do so, attach the following notices to the program. It is safest
+ To do so, attach the following notices to the program. It is safest
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
@@ -300,7 +300,7 @@ the "copyright" line and a pointer to where the full notice is found.
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
+ 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
@@ -318,22 +318,22 @@ when it starts in an interactive mode:
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
+parts of the General Public License. Of course, the commands you use may
be called something other than `show w' and `show c'; they could even be
mouse-clicks or menu items--whatever suits your program.
You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the program, if
-necessary. Here is a sample; alter the names:
+necessary. Here is a sample; alter the names:
- Yoyodyne, Inc., hereby disclaims all copyright interest in the program
- `Gnomovision' (which makes passes at compilers) written by James Hacker.
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the program
+ `Gnomovision' (which makes passes at compilers) written by James Hacker.
- , 1 April 1989
- Ty Coon, President of Vice
+ , 1 April 1989
+ Ty Coon, President of Vice
This General Public License does not permit incorporating your program into
-proprietary programs. If your program is a subroutine library, you may
+proprietary programs. If your program is a subroutine library, you may
consider it more useful to permit linking proprietary applications with the
-library. If this is what you want to do, use the GNU Lesser General
+library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License.
diff --git a/migrations/mchat_module1.php b/migrations/mchat_module1.php
index 5627ffe..50c26a6 100644
--- a/migrations/mchat_module1.php
+++ b/migrations/mchat_module1.php
@@ -17,7 +17,7 @@ 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'),
'module_auth' => 'acl_u_mchat_use',
diff --git a/migrations/mchat_schema_2.php b/migrations/mchat_schema_2.php
index 9f8ec52..1e0b478 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_6.php b/migrations/mchat_schema_6.php
index 3416b2a..e65a29e 100644
--- a/migrations/mchat_schema_6.php
+++ b/migrations/mchat_schema_6.php
@@ -28,7 +28,7 @@ class mchat_schema_6 extends \phpbb\db\migration\migration
'module_langname' => 'ACP_USER_MCHAT',
'module_mode' => 'mchat',
'module_auth' => 'acl_a_user',
- ),
+ ),
),
// First, lets add a new category named UCP_CAT_MCHAT
array('ucp', false, 'UCP_CAT_MCHAT'),
diff --git a/styles/prosilver/template/jquery-1.8.3.min.js b/styles/prosilver/template/jquery-1.8.3.min.js
index 45477c0..ecda09a 100644
--- a/styles/prosilver/template/jquery-1.8.3.min.js
+++ b/styles/prosilver/template/jquery-1.8.3.min.js
@@ -1,2 +1,2 @@
/*! jQuery v1.8.3 jquery.com | jquery.org/license */
-(function(e,t){function _(e){var t=M[e]={};return v.each(e.split(y),function(e,n){t[n]=!0}),t}function H(e,n,r){if(r===t&&e.nodeType===1){var i="data-"+n.replace(P,"-$1").toLowerCase();r=e.getAttribute(i);if(typeof r=="string"){try{r=r==="true"?!0:r==="false"?!1:r==="null"?null:+r+""===r?+r:D.test(r)?v.parseJSON(r):r}catch(s){}v.data(e,n,r)}else r=t}return r}function B(e){var t;for(t in e){if(t==="data"&&v.isEmptyObject(e[t]))continue;if(t!=="toJSON")return!1}return!0}function et(){return!1}function tt(){return!0}function ut(e){return!e||!e.parentNode||e.parentNode.nodeType===11}function at(e,t){do e=e[t];while(e&&e.nodeType!==1);return e}function ft(e,t,n){t=t||0;if(v.isFunction(t))return v.grep(e,function(e,r){var i=!!t.call(e,r,e);return i===n});if(t.nodeType)return v.grep(e,function(e,r){return e===t===n});if(typeof t=="string"){var r=v.grep(e,function(e){return e.nodeType===1});if(it.test(t))return v.filter(t,r,!n);t=v.filter(t,r)}return v.grep(e,function(e,r){return v.inArray(e,t)>=0===n})}function lt(e){var t=ct.split("|"),n=e.createDocumentFragment();if(n.createElement)while(t.length)n.createElement(t.pop());return n}function Lt(e,t){return e.getElementsByTagName(t)[0]||e.appendChild(e.ownerDocument.createElement(t))}function At(e,t){if(t.nodeType!==1||!v.hasData(e))return;var n,r,i,s=v._data(e),o=v._data(t,s),u=s.events;if(u){delete o.handle,o.events={};for(n in u)for(r=0,i=u[n].length;r").appendTo(i.body),n=t.css("display");t.remove();if(n==="none"||n===""){Pt=i.body.appendChild(Pt||v.extend(i.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!Ht||!Pt.createElement)Ht=(Pt.contentWindow||Pt.contentDocument).document,Ht.write(""),Ht.close();t=Ht.body.appendChild(Ht.createElement(e)),n=Dt(t,"display"),i.body.removeChild(Pt)}return Wt[e]=n,n}function fn(e,t,n,r){var i;if(v.isArray(t))v.each(t,function(t,i){n||sn.test(e)?r(e,i):fn(e+"["+(typeof i=="object"?t:"")+"]",i,n,r)});else if(!n&&v.type(t)==="object")for(i in t)fn(e+"["+i+"]",t[i],n,r);else r(e,t)}function Cn(e){return function(t,n){typeof t!="string"&&(n=t,t="*");var r,i,s,o=t.toLowerCase().split(y),u=0,a=o.length;if(v.isFunction(n))for(;u)[^>]*$|#([\w\-]*)$)/,E=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,S=/^[\],:{}\s]*$/,x=/(?:^|:|,)(?:\s*\[)+/g,T=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,N=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,C=/^-ms-/,k=/-([\da-z])/gi,L=function(e,t){return(t+"").toUpperCase()},A=function(){i.addEventListener?(i.removeEventListener("DOMContentLoaded",A,!1),v.ready()):i.readyState==="complete"&&(i.detachEvent("onreadystatechange",A),v.ready())},O={};v.fn=v.prototype={constructor:v,init:function(e,n,r){var s,o,u,a;if(!e)return this;if(e.nodeType)return this.context=this[0]=e,this.length=1,this;if(typeof e=="string"){e.charAt(0)==="<"&&e.charAt(e.length-1)===">"&&e.length>=3?s=[null,e,null]:s=w.exec(e);if(s&&(s[1]||!n)){if(s[1])return n=n instanceof v?n[0]:n,a=n&&n.nodeType?n.ownerDocument||n:i,e=v.parseHTML(s[1],a,!0),E.test(s[1])&&v.isPlainObject(n)&&this.attr.call(e,n,!0),v.merge(this,e);o=i.getElementById(s[2]);if(o&&o.parentNode){if(o.id!==s[2])return r.find(e);this.length=1,this[0]=o}return this.context=i,this.selector=e,this}return!n||n.jquery?(n||r).find(e):this.constructor(n).find(e)}return v.isFunction(e)?r.ready(e):(e.selector!==t&&(this.selector=e.selector,this.context=e.context),v.makeArray(e,this))},selector:"",jquery:"1.8.3",length:0,size:function(){return this.length},toArray:function(){return l.call(this)},get:function(e){return e==null?this.toArray():e<0?this[this.length+e]:this[e]},pushStack:function(e,t,n){var r=v.merge(this.constructor(),e);return r.prevObject=this,r.context=this.context,t==="find"?r.selector=this.selector+(this.selector?" ":"")+n:t&&(r.selector=this.selector+"."+t+"("+n+")"),r},each:function(e,t){return v.each(this,e,t)},ready:function(e){return v.ready.promise().done(e),this},eq:function(e){return e=+e,e===-1?this.slice(e):this.slice(e,e+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(l.apply(this,arguments),"slice",l.call(arguments).join(","))},map:function(e){return this.pushStack(v.map(this,function(t,n){return e.call(t,n,t)}))},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:[].sort,splice:[].splice},v.fn.init.prototype=v.fn,v.extend=v.fn.extend=function(){var e,n,r,i,s,o,u=arguments[0]||{},a=1,f=arguments.length,l=!1;typeof u=="boolean"&&(l=u,u=arguments[1]||{},a=2),typeof u!="object"&&!v.isFunction(u)&&(u={}),f===a&&(u=this,--a);for(;a0)return;r.resolveWith(i,[v]),v.fn.trigger&&v(i).trigger("ready").off("ready")},isFunction:function(e){return v.type(e)==="function"},isArray:Array.isArray||function(e){return v.type(e)==="array"},isWindow:function(e){return e!=null&&e==e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return e==null?String(e):O[h.call(e)]||"object"},isPlainObject:function(e){if(!e||v.type(e)!=="object"||e.nodeType||v.isWindow(e))return!1;try{if(e.constructor&&!p.call(e,"constructor")&&!p.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(n){return!1}var r;for(r in e);return r===t||p.call(e,r)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},error:function(e){throw new Error(e)},parseHTML:function(e,t,n){var r;return!e||typeof e!="string"?null:(typeof t=="boolean"&&(n=t,t=0),t=t||i,(r=E.exec(e))?[t.createElement(r[1])]:(r=v.buildFragment([e],t,n?null:[]),v.merge([],(r.cacheable?v.clone(r.fragment):r.fragment).childNodes)))},parseJSON:function(t){if(!t||typeof t!="string")return null;t=v.trim(t);if(e.JSON&&e.JSON.parse)return e.JSON.parse(t);if(S.test(t.replace(T,"@").replace(N,"]").replace(x,"")))return(new Function("return "+t))();v.error("Invalid JSON: "+t)},parseXML:function(n){var r,i;if(!n||typeof n!="string")return null;try{e.DOMParser?(i=new DOMParser,r=i.parseFromString(n,"text/xml")):(r=new ActiveXObject("Microsoft.XMLDOM"),r.async="false",r.loadXML(n))}catch(s){r=t}return(!r||!r.documentElement||r.getElementsByTagName("parsererror").length)&&v.error("Invalid XML: "+n),r},noop:function(){},globalEval:function(t){t&&g.test(t)&&(e.execScript||function(t){e.eval.call(e,t)})(t)},camelCase:function(e){return e.replace(C,"ms-").replace(k,L)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,n,r){var i,s=0,o=e.length,u=o===t||v.isFunction(e);if(r){if(u){for(i in e)if(n.apply(e[i],r)===!1)break}else for(;s0&&e[0]&&e[a-1]||a===0||v.isArray(e));if(f)for(;u-1)a.splice(n,1),i&&(n<=o&&o--,n<=u&&u--)}),this},has:function(e){return v.inArray(e,a)>-1},empty:function(){return a=[],this},disable:function(){return a=f=n=t,this},disabled:function(){return!a},lock:function(){return f=t,n||c.disable(),this},locked:function(){return!f},fireWith:function(e,t){return t=t||[],t=[e,t.slice?t.slice():t],a&&(!r||f)&&(i?f.push(t):l(t)),this},fire:function(){return c.fireWith(this,arguments),this},fired:function(){return!!r}};return c},v.extend({Deferred:function(e){var t=[["resolve","done",v.Callbacks("once memory"),"resolved"],["reject","fail",v.Callbacks("once memory"),"rejected"],["notify","progress",v.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return v.Deferred(function(n){v.each(t,function(t,r){var s=r[0],o=e[t];i[r[1]](v.isFunction(o)?function(){var e=o.apply(this,arguments);e&&v.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[s+"With"](this===i?n:this,[e])}:n[s])}),e=null}).promise()},promise:function(e){return e!=null?v.extend(e,r):r}},i={};return r.pipe=r.then,v.each(t,function(e,s){var o=s[2],u=s[3];r[s[1]]=o.add,u&&o.add(function(){n=u},t[e^1][2].disable,t[2][2].lock),i[s[0]]=o.fire,i[s[0]+"With"]=o.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t=0,n=l.call(arguments),r=n.length,i=r!==1||e&&v.isFunction(e.promise)?r:0,s=i===1?e:v.Deferred(),o=function(e,t,n){return function(r){t[e]=this,n[e]=arguments.length>1?l.call(arguments):r,n===u?s.notifyWith(t,n):--i||s.resolveWith(t,n)}},u,a,f;if(r>1){u=new Array(r),a=new Array(r),f=new Array(r);for(;t
a",n=p.getElementsByTagName("*"),r=p.getElementsByTagName("a")[0];if(!n||!r||!n.length)return{};s=i.createElement("select"),o=s.appendChild(i.createElement("option")),u=p.getElementsByTagName("input")[0],r.style.cssText="top:1px;float:left;opacity:.5",t={leadingWhitespace:p.firstChild.nodeType===3,tbody:!p.getElementsByTagName("tbody").length,htmlSerialize:!!p.getElementsByTagName("link").length,style:/top/.test(r.getAttribute("style")),hrefNormalized:r.getAttribute("href")==="/a",opacity:/^0.5/.test(r.style.opacity),cssFloat:!!r.style.cssFloat,checkOn:u.value==="on",optSelected:o.selected,getSetAttribute:p.className!=="t",enctype:!!i.createElement("form").enctype,html5Clone:i.createElement("nav").cloneNode(!0).outerHTML!=="<:nav>",boxModel:i.compatMode==="CSS1Compat",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},u.checked=!0,t.noCloneChecked=u.cloneNode(!0).checked,s.disabled=!0,t.optDisabled=!o.disabled;try{delete p.test}catch(d){t.deleteExpando=!1}!p.addEventListener&&p.attachEvent&&p.fireEvent&&(p.attachEvent("onclick",h=function(){t.noCloneEvent=!1}),p.cloneNode(!0).fireEvent("onclick"),p.detachEvent("onclick",h)),u=i.createElement("input"),u.value="t",u.setAttribute("type","radio"),t.radioValue=u.value==="t",u.setAttribute("checked","checked"),u.setAttribute("name","t"),p.appendChild(u),a=i.createDocumentFragment(),a.appendChild(p.lastChild),t.checkClone=a.cloneNode(!0).cloneNode(!0).lastChild.checked,t.appendChecked=u.checked,a.removeChild(u),a.appendChild(p);if(p.attachEvent)for(l in{submit:!0,change:!0,focusin:!0})f="on"+l,c=f in p,c||(p.setAttribute(f,"return;"),c=typeof p[f]=="function"),t[l+"Bubbles"]=c;return v(function(){var n,r,s,o,u="padding:0;margin:0;border:0;display:block;overflow:hidden;",a=i.getElementsByTagName("body")[0];if(!a)return;n=i.createElement("div"),n.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px",a.insertBefore(n,a.firstChild),r=i.createElement("div"),n.appendChild(r),r.innerHTML="