diff --git a/README.md b/README.md
index 19b7fe3..942b9f4 100644
--- a/README.md
+++ b/README.md
@@ -38,11 +38,12 @@ Features:
Installation Instructions:
--------------------------
-You'll need to have php with intl, gettext, pdo, pcre, mbstring and date extension, and a web-server installed.
+You'll need to have php with gettext, pdo, pcre, mbstring and date extension, and a web-server installed.
You will also need the pdo_sqlite, pdo_mysql or pdo_pgsql extension, depending on which database you choose.
Optionally, you can install:
- the gd extension for the captcha feature
- the json extension for save/restore
+- the intl extension for browser language detection
- a memcached server and the memcached extension and change the configuration to use memcached. This will lessen the database load a bit.
- a MySQL or PostgreSQL server to use as an external database instead of SQLite
- the libsodium extension (PHP >= 7.2) for encryption of messages and notes in the database
diff --git a/chat.php b/chat.php
index 6462fe4..1c9b72d 100644
--- a/chat.php
+++ b/chat.php
@@ -32,6 +32,16 @@
* 9 - Private messages
*/
+if (!extension_loaded('gettext')) {
+ prepare_stylesheets('fatal_error');
+ send_headers();
+ echo '
'.meta_html();
+ echo '".$title.' | ';
@@ -2510,7 +2581,7 @@ function print_chatters(): void
global $U, $db, $language;
if(!$U['hidechatters']){
echo '';
- $stmt=$db->prepare('SELECT nickname, style, status FROM ' . PREFIX . 'sessions WHERE entry!=0 AND status>0 AND incognito=0 AND nickname NOT IN (SELECT ign FROM '. PREFIX . 'ignored WHERE ignby=? UNION SELECT ignby FROM '. PREFIX . 'ignored WHERE ign=?) ORDER BY status DESC, lastpost DESC;');
+ $stmt=$db->prepare('SELECT nickname, style, status, exiting FROM ' . PREFIX . 'sessions WHERE entry!=0 AND status>0 AND incognito=0 AND nickname NOT IN (SELECT ign FROM '. PREFIX . 'ignored WHERE ignby=? UNION SELECT ignby FROM '. PREFIX . 'ignored WHERE ign=?) ORDER BY status DESC, lastpost DESC;');
$stmt->execute([$U['nickname'], $U['nickname']]);
$nc=substr(time(), -6);
$G=$M=$S=$A=[];
@@ -2518,6 +2589,9 @@ function print_chatters(): void
$nicklink="fetch(PDO::FETCH_NUM)){
$link=$nicklink.urlencode($user[0]).'" target="post">'.style_this(htmlspecialchars($user[0]), $user[1]).'';
+ if ($user[3]>0) {
+ $link .= ''.get_setting('exitingtxt').'';
+ }
if($user[2]<3){ // guest or superguest
$G[]=$link;
} elseif($user[2]>=7){ // admin or superadmin
@@ -2578,6 +2652,7 @@ function create_session(bool $setup, string $nickname, string $password): void
send_error(_('Wrong global Password!'));
}
}
+ $U['exiting']=0;
try {
$U[ 'postid' ] = bin2hex( random_bytes( 3 ) );
} catch(Exception $e) {
@@ -2676,8 +2751,8 @@ function write_new_session(string $password): void
}else{
$ip='';
}
- $stmt=$db->prepare('INSERT INTO ' . PREFIX . 'sessions (session, nickname, status, refresh, style, lastpost, passhash, useragent, bgcolour, entry, timestamps, embed, incognito, ip, nocache, tz, eninbox, sortupdown, hidechatters, nocache_old, postid) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?);');
- $stmt->execute([$U['session'], $U['nickname'], $U['status'], $U['refresh'], $U['style'], $U['lastpost'], $U['passhash'], $useragent, $U['bgcolour'], $U['entry'], $U['timestamps'], $U['embed'], $U['incognito'], $ip, $U['nocache'], $U['tz'], $U['eninbox'], $U['sortupdown'], $U['hidechatters'], $U['nocache_old'], $U['postid']]);
+ $stmt=$db->prepare('INSERT INTO ' . PREFIX . 'sessions (session, nickname, status, refresh, style, lastpost, passhash, useragent, bgcolour, entry, exiting, timestamps, embed, incognito, ip, nocache, tz, eninbox, sortupdown, hidechatters, nocache_old, postid) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?);');
+ $stmt->execute([$U['session'], $U['nickname'], $U['status'], $U['refresh'], $U['style'], $U['lastpost'], $U['passhash'], $useragent, $U['bgcolour'], $U['entry'], $U['exiting'], $U['timestamps'], $U['embed'], $U['incognito'], $ip, $U['nocache'], $U['tz'], $U['eninbox'], $U['sortupdown'], $U['hidechatters'], $U['nocache_old'], $U['postid']]);
$session = $U['session'];
set_secure_cookie(COOKIENAME, $U['session']);
if($U['status']>=3 && !$U['incognito']){
@@ -2734,10 +2809,14 @@ function approve_session(): void
function check_login(): void
{
- global $U;
+ global $U, $db;
$ga=(int) get_setting('guestaccess');
parse_sessions();
if(isset($U['session'])){
+ if($U['exiting']==1){
+ $stmt=$db->prepare('UPDATE ' . PREFIX . 'sessions SET exiting=0 WHERE session=? LIMIT 1;');
+ $stmt->execute([$U['session']]);
+ }
check_kicked();
}elseif(get_setting('englobalpass')==1 && (!isset($_POST['globalpass']) || $_POST['globalpass']!=get_setting('globalpass'))){
send_error(_('Wrong global Password!'));
@@ -2787,6 +2866,9 @@ function kill_session(): void
function kick_chatter(array $names, string $mes, bool $purge) : bool {
global $U, $db;
$lonick='';
+ if (strlen($mes)<1){
+ $mes=_("no kick message");
+ }
$time=60*(get_setting('kickpenalty')-get_setting('guestexpire'))+time();
$check=$db->prepare('SELECT style, entry FROM ' . PREFIX . 'sessions WHERE nickname=? AND status!=0 AND (status OR nickname=?);');
$stmt=$db->prepare('UPDATE ' . PREFIX . 'sessions SET lastpost=?, status=0, kickmessage=? WHERE nickname=?;');
@@ -2813,13 +2895,13 @@ function kick_chatter(array $names, string $mes, bool $purge) : bool {
}
if($i>0){
if($all){
- add_system_message(get_setting('msgallkick'), $U['nickname']);
+ add_system_message(sprintf(get_setting('msgallkick'), $mes), $U['nickname']);
}else{
$lonick=substr($lonick, 0, -2);
if($i>1){
- add_system_message(sprintf(get_setting('msgmultikick'), $lonick), $U['nickname']);
+ add_system_message(sprintf(get_setting('msgmultikick'), $lonick, $mes), $U['nickname']);
}else{
- add_system_message(sprintf(get_setting('msgkick'), $lonick), $U['nickname']);
+ add_system_message(sprintf(get_setting('msgkick'), $lonick, $mes), $U['nickname']);
}
}
return true;
@@ -3263,6 +3345,7 @@ function add_user_defaults(string $password): void
$U['hidechatters']=get_setting('hidechatters');
$U['passhash']=password_hash($password, PASSWORD_DEFAULT);
$U['entry']=$U['lastpost']=time();
+ $U['exiting']=0;
}
// message handling
@@ -4003,8 +4086,8 @@ function cron(): void
}
update_setting('nextcron', $time+10);
// delete old sessions
- $stmt=$db->prepare('DELETE FROM ' . PREFIX . 'sessions WHERE (status<=2 AND lastpost<(?-60*(SELECT value FROM ' . PREFIX . "settings WHERE setting='guestexpire'))) OR (status>2 AND lastpost<(?-60*(SELECT value FROM " . PREFIX . "settings WHERE setting='memberexpire')));");
- $stmt->execute([$time, $time]);
+ $stmt=$db->prepare('DELETE FROM ' . PREFIX . 'sessions WHERE (status<=2 AND lastpost<(?-60*(SELECT value FROM ' . PREFIX . "settings WHERE setting='guestexpire'))) OR (status>2 AND lastpost<(?-60*(SELECT value FROM " . PREFIX . "settings WHERE setting='memberexpire'))) OR (status<3 AND exiting>0 AND lastpost<(?-(SELECT value FROM " . PREFIX . "settings WHERE setting='exitwait')));");
+ $stmt->execute([$time, $time, $time]);
// delete old messages
$limit=get_setting('messagelimit');
$stmt=$db->query('SELECT id FROM ' . PREFIX . "messages WHERE poststatus=1 OR poststatus=4 ORDER BY id DESC LIMIT 1 OFFSET $limit;");
@@ -4149,7 +4232,7 @@ function init_chat(): void
$db->exec('CREATE TABLE ' . PREFIX . "notes (id $primary, type smallint NOT NULL, lastedited integer NOT NULL, editedby varchar(50) NOT NULL, text text NOT NULL)$diskengine$charset;");
$db->exec('CREATE INDEX ' . PREFIX . 'notes_type ON ' . PREFIX . 'notes(type);');
$db->exec('CREATE INDEX ' . PREFIX . 'notes_editedby ON ' . PREFIX . 'notes(editedby);');
- $db->exec('CREATE TABLE ' . PREFIX . "sessions (id $primary, session char(32) NOT NULL UNIQUE, nickname varchar(50) NOT NULL UNIQUE, status smallint NOT NULL, refresh smallint NOT NULL, style varchar(255) NOT NULL, lastpost integer NOT NULL, passhash varchar(255) NOT NULL, postid char(6) NOT NULL DEFAULT '000000', useragent varchar(255) NOT NULL, kickmessage varchar(255) DEFAULT '', bgcolour char(6) NOT NULL, entry integer NOT NULL, timestamps smallint NOT NULL, embed smallint NOT NULL, incognito smallint NOT NULL, ip varchar(45) NOT NULL, nocache smallint NOT NULL, tz varchar(255) NOT NULL, eninbox smallint NOT NULL, sortupdown smallint NOT NULL, hidechatters smallint NOT NULL, nocache_old smallint NOT NULL)$memengine$charset;");
+ $db->exec('CREATE TABLE ' . PREFIX . "sessions (id $primary, session char(32) NOT NULL UNIQUE, nickname varchar(50) NOT NULL UNIQUE, status smallint NOT NULL, refresh smallint NOT NULL, style varchar(255) NOT NULL, lastpost integer NOT NULL, passhash varchar(255) NOT NULL, postid char(6) NOT NULL DEFAULT '000000', useragent varchar(255) NOT NULL, kickmessage varchar(255) DEFAULT '', bgcolour char(6) NOT NULL, entry integer NOT NULL, exiting smallint NOT NULL, timestamps smallint NOT NULL, embed smallint NOT NULL, incognito smallint NOT NULL, ip varchar(45) NOT NULL, nocache smallint NOT NULL, tz varchar(255) NOT NULL, eninbox smallint NOT NULL, sortupdown smallint NOT NULL, hidechatters smallint NOT NULL, nocache_old smallint NOT NULL)$memengine$charset;");
$db->exec('CREATE INDEX ' . PREFIX . 'status ON ' . PREFIX . 'sessions(status);');
$db->exec('CREATE INDEX ' . PREFIX . 'lastpost ON ' . PREFIX . 'sessions(lastpost);');
$db->exec('CREATE INDEX ' . PREFIX . 'incognito ON ' . PREFIX . 'sessions(incognito);');
@@ -4169,6 +4252,7 @@ function init_chat(): void
['guestexpire', '15'],
['kickpenalty', '10'],
['entrywait', '120'],
+ ['exitwait', '180'],
['messageexpire', '14400'],
['messagelimit', '150'],
['maxmessage', 2000],
@@ -4201,9 +4285,9 @@ function init_chat(): void
['msgexit', _('%s left the chat.')],
['msgmemreg', _('%s is now a registered member.')],
['msgsureg', _('%s is now a registered applicant.')],
- ['msgkick', _('%s has been kicked.')],
- ['msgmultikick', _('%s have been kicked.')],
- ['msgallkick', _('All guests have been kicked.')],
+ ['msgkick', _('%1$s has been kicked: %2$s')],
+ ['msgmultikick', _('%1$s have been kicked: %2$s')],
+ ['msgallkick', _('All guests have been kicked: %1$s')],
['msgclean', _('%s has been cleaned.')],
['numnotes', '3'],
['mailsender', 'www-data '],
@@ -4229,6 +4313,7 @@ function init_chat(): void
['publicnotes', '1'],
['filtermodkick', '0'],
['metadescription', _('A chat community')],
+ ['exitingtxt', '🚪'], // door emoji
['sysmessagetxt', 'ℹ️ '],
['hide_reload_post_box', '0'],
['hide_reload_messages', '0'],
@@ -4342,7 +4427,7 @@ function update_db(): void
$db->exec('INSERT INTO ' . PREFIX . "settings (setting, value) VALUES ('css', ''), ('memberexpire', '60'), ('guestexpire', '15'), ('kickpenalty', '10'), ('entrywait', '120'), ('messageexpire', '14400'), ('messagelimit', '150'), ('maxmessage', 2000), ('captchatime', '600');");
}
if($dbversion<11){
- $db->exec('ALTER TABLE ' , PREFIX . 'captcha CHARACTER SET utf8 COLLATE utf8_bin;');
+ $db->exec('ALTER TABLE ' . PREFIX . 'captcha CHARACTER SET utf8 COLLATE utf8_bin;');
$db->exec('ALTER TABLE ' . PREFIX . 'filter CHARACTER SET utf8 COLLATE utf8_bin;');
$db->exec('ALTER TABLE ' . PREFIX . 'ignored CHARACTER SET utf8 COLLATE utf8_bin;');
$db->exec('ALTER TABLE ' . PREFIX . 'messages CHARACTER SET utf8 COLLATE utf8_bin;');
@@ -4378,7 +4463,7 @@ function update_db(): void
$db->exec('ALTER TABLE ' . PREFIX . 'notes MODIFY type char(5) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, MODIFY editedby varchar(50) NOT NULL, MODIFY text varchar(20000) NOT NULL;');
$db->exec('ALTER TABLE ' . PREFIX . 'settings MODIFY id integer unsigned NOT NULL, MODIFY setting varchar(50) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, MODIFY value varchar(20000) NOT NULL;');
$db->exec('ALTER TABLE ' . PREFIX . 'settings DROP PRIMARY KEY, DROP id, ADD PRIMARY KEY(setting);');
- $stmt = $db->exec('INSERT INTO ' . PREFIX . "settings (setting, value) VALUES ('chatname', 'My Chat'), ('topic', ''), ('msgsendall', ?), ('msgsendmem', ?), ('msgsendmod', ?), ('msgsendadm', ?), ('msgsendprv', ?), ('numnotes', '3');");
+ $stmt = $db->prepare('INSERT INTO ' . PREFIX . "settings (setting, value) VALUES ('chatname', 'My Chat'), ('topic', ''), ('msgsendall', ?), ('msgsendmem', ?), ('msgsendmod', ?), ('msgsendadm', ?), ('msgsendprv', ?), ('numnotes', '3');");
$stmt->execute([_('%s - '), _('[M] %s - '), _('[Staff] %s - '), _('[Admin] %s - '), _('[%1$s to %2$s] - ')]);
}
if($dbversion<13){
@@ -4618,6 +4703,10 @@ function update_db(): void
if($dbversion<47){
$db->exec('INSERT INTO ' . PREFIX . "settings (setting,value) VALUES ('hide_reload_post_box', '0'), ('hide_reload_messages', '0'),('hide_profile', '0'),('hide_admin', '0'),('hide_notes', '0'),('hide_clone', '0'),('hide_rearrange', '0'),('hide_help', '0'),('max_refresh_rate', '150'),('min_refresh_rate', '5'),('postbox_delete_globally', '0'),('allow_js', '1');");
}
+ if($dbversion<48){
+ $db->exec('INSERT INTO ' . PREFIX . "settings (setting, value) VALUES ('exitwait', '180'), ('exitingtxt', ' 🚪"); // door emoji
+ $db->exec('ALTER TABLE ' . PREFIX . 'sessions ADD COLUMN exiting smallint NOT NULL DEFAULT 0;');
+ }
update_setting('dbversion', DBVERSION);
if($msgencrypted!==MSGENCRYPTED){
if(!extension_loaded('sodium')){
@@ -4788,7 +4877,7 @@ function load_lang(): void
$locale = LANGUAGES[$_COOKIE['language']]['locale'];
$language = $_COOKIE['language'];
$dir = LANGUAGES[$_COOKIE['language']]['dir'];
- }elseif(!empty($_SERVER['HTTP_ACCEPT_LANGUAGE'])){
+ }elseif(!empty($_SERVER['HTTP_ACCEPT_LANGUAGE']) && extension_loaded('intl')){
$prefLocales = array_reduce(
explode(',', $_SERVER['HTTP_ACCEPT_LANGUAGE']),
function (array $res, string $el) {
@@ -4808,13 +4897,19 @@ function load_lang(): void
}
}
}
+ if(function_exists('putenv')) {
+ putenv('LC_ALL='.$locale);
+ }
+ setlocale(LC_ALL, $locale);
+ bindtextdomain('le-chat-php', __DIR__.'/locale');
+ bind_textdomain_codeset('le-chat-php', 'UTF-8');
+ textdomain('le-chat-php');
}
function load_config(): void
{
- mb_internal_encoding('UTF-8');
define('VERSION', '1.24.1'); // Script version
- define('DBVERSION', 47); // Database layout version
+ define('DBVERSION', 48); // Database layout version
define('MSGENCRYPTED', false); // Store messages encrypted in the database to prevent other database users from reading them - true/false - visit the setup page after editing!
define('ENCRYPTKEY_PASS', 'MY_SECRET_KEY'); // Recommended length: 32. Encryption key for messages
define('AES_IV_PASS', '012345678912'); // Recommended length: 12. AES Encryption IV
diff --git a/locale/ar/LC_MESSAGES/le-chat-php.po b/locale/ar/LC_MESSAGES/le-chat-php.po
index 7b6656b..b7befdb 100644
--- a/locale/ar/LC_MESSAGES/le-chat-php.po
+++ b/locale/ar/LC_MESSAGES/le-chat-php.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-01-18 21:32+0100\n"
+"POT-Creation-Date: 2025-03-29 17:02+0100\n"
"PO-Revision-Date: 2023-01-18 21:34+0100\n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -19,263 +19,269 @@ msgstr ""
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
"X-Generator: Poedit 3.1.1\n"
-#: chat.php:261
+#: index.php:272 chat.php:272
msgid "Enable applicants"
msgstr "أذن مرشح"
-#: chat.php:262
+#: index.php:273 index.php:2267 chat.php:273 chat.php:2267
msgid "Embed images"
msgstr "الصور المتداخلة"
-#: chat.php:263 chat.php:2202
+#: index.php:274 index.php:2261 chat.php:274 chat.php:2261
msgid "Show Timestamps"
msgstr "عرض الطابع الزمني"
-#: chat.php:264
+#: index.php:275 chat.php:275
msgid "Show session-IP"
msgstr "مشاهدة جلسة- IP"
-#: chat.php:265
+#: index.php:276 chat.php:276
msgid "Members can kick, if no moderator is present"
msgstr "يمكن طرد الأعضاء في حالة غياب الوسيط"
-#: chat.php:266
+#: index.php:277 chat.php:277
msgid "Members can always kick"
msgstr "يمكن للأعضاء دائما طرد"
-#: chat.php:267
+#: index.php:278 chat.php:278
msgid "Force redirection"
msgstr "فرض إعادة التوجيه"
-#: chat.php:268
+#: index.php:279 index.php:2270 chat.php:279 chat.php:2270
msgid "Incognito mode"
msgstr "الوضع المخفي"
-#: chat.php:269
+#: index.php:280 chat.php:280
msgid "Send mail on new public message"
msgstr ""
-#: chat.php:270
+#: index.php:281 chat.php:281
msgid "Fallback to waiting room, if no moderator is present to approve guests"
msgstr ""
-#: chat.php:271
+#: index.php:282 chat.php:282
msgid "Disable private messages"
msgstr ""
-#: chat.php:272 chat.php:2223
+#: index.php:283 index.php:2282 chat.php:283 chat.php:2282
msgid "Enable offline inbox"
msgstr ""
-#: chat.php:273
+#: index.php:284 chat.php:284
msgid "Show a greeting message before showing the messages"
msgstr ""
-#: chat.php:274 chat.php:2204
+#: index.php:285 index.php:2263 chat.php:285 chat.php:2263
msgid "Sort messages from top to bottom"
msgstr ""
-#: chat.php:275 chat.php:2205
+#: index.php:286 index.php:2264 chat.php:286 chat.php:2264
msgid "Hide list of chatters"
msgstr ""
-#: chat.php:276 chat.php:1780 chat.php:1794
+#: index.php:287 index.php:1837 index.php:1851 chat.php:287 chat.php:1837
+#: chat.php:1851
msgid "Personal notes"
msgstr ""
-#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110
+#: index.php:288 index.php:1840 index.php:1854 index.php:2169 chat.php:288
+#: chat.php:1840 chat.php:1854 chat.php:2169
msgid "Public notes"
msgstr "ملاحظات عامة"
-#: chat.php:278
+#: index.php:289 chat.php:289
msgid "Apply kick filter on moderators"
msgstr ""
-#: chat.php:279
+#: index.php:290 chat.php:290
msgid "Show who kicks people or purges all messages."
msgstr "أظهر من يركل الأشخاص أو ينظف كل الرسائل."
-#: chat.php:280
+#: index.php:291 chat.php:291
msgid "Hide reload post box button"
msgstr ""
-#: chat.php:281
+#: index.php:292 chat.php:292
msgid "Hide reload messages button"
msgstr ""
-#: chat.php:282
+#: index.php:293 chat.php:293
msgid "Hide profile button"
msgstr ""
-#: chat.php:283
+#: index.php:294 chat.php:294
msgid "Hide admin button"
msgstr ""
-#: chat.php:284
+#: index.php:295 chat.php:295
msgid "Hide notes button"
msgstr ""
-#: chat.php:285
+#: index.php:296 chat.php:296
msgid "Hide clone button"
msgstr ""
-#: chat.php:286
+#: index.php:297 chat.php:297
msgid "Hide rearrange button"
msgstr ""
-#: chat.php:287
+#: index.php:298 chat.php:298
msgid "Hide help button"
msgstr ""
-#: chat.php:288
+#: index.php:299 chat.php:299
msgid "Apply postbox delete button globally"
msgstr ""
-#: chat.php:289
+#: index.php:300 chat.php:300
msgid "Allow enhancing functionality with JavaScript"
msgstr ""
-#: chat.php:292 chat.php:2170
+#: index.php:303 index.php:2229 chat.php:303 chat.php:2229
msgid "Background colour"
msgstr "لون الخلفية"
-#: chat.php:293 chat.php:2167
+#: index.php:304 index.php:2226 chat.php:304 chat.php:2226
msgid "Font colour"
msgstr "لون الخط"
-#: chat.php:296
+#: index.php:307 chat.php:307
msgid "Entrance"
msgstr "يدخل"
-#: chat.php:297
+#: index.php:308 chat.php:308
msgid "Leaving"
msgstr "غادر"
-#: chat.php:298
+#: index.php:309 chat.php:309
msgid "Member registered"
msgstr "عضو مسجل"
-#: chat.php:299
+#: index.php:310 chat.php:310
msgid "Applicant registered"
msgstr "المرشح المسجل"
-#: chat.php:300
+#: index.php:311 chat.php:311
msgid "Kicked"
msgstr "محظور / طرد!"
-#: chat.php:301
+#: index.php:312 chat.php:312
msgid "Multiple kicked"
msgstr "قذفات متعددة"
-#: chat.php:302
+#: index.php:313 chat.php:313
msgid "All kicked"
msgstr "طرد عالمي"
-#: chat.php:303
+#: index.php:314 chat.php:314
msgid "Room cleaned"
msgstr "رسائل نظيفة"
-#: chat.php:304
+#: index.php:315 chat.php:315
msgid "Message to all"
msgstr "رسالة للجميع"
-#: chat.php:305
+#: index.php:316 chat.php:316
msgid "Message to members only"
msgstr "رسالة للأعضاء فقط"
-#: chat.php:306
+#: index.php:317 chat.php:317
msgid "Message to staff only"
msgstr "رسالة للمديرين فقط"
-#: chat.php:307
+#: index.php:318 chat.php:318
msgid "Message to admins only"
msgstr "رسالة للمسؤولين فقط"
-#: chat.php:308
+#: index.php:319 chat.php:319
msgid "Private message"
msgstr "رسالة خاصة"
-#: chat.php:309
+#: index.php:320 chat.php:320
msgid "Attachement"
msgstr ""
-#: chat.php:312
+#: index.php:323 chat.php:323
msgid "Member timeout (minutes)"
msgstr "انتهت المهلة المحددة للعضو (بالدقائق)"
-#: chat.php:313
+#: index.php:324 chat.php:324
msgid "Guest timeout (minutes)"
msgstr "انتهت المهلة المحددة للزائر (بالدقائق)"
-#: chat.php:314
+#: index.php:325 chat.php:325
msgid "Kick penalty (minutes)"
msgstr "عقوبة الطرد (بالدقائق)"
-#: chat.php:315
+#: index.php:326 chat.php:326
msgid "Waiting room time (seconds)"
msgstr "حان الوقت لدخول الدردشة (بالثواني)"
-#: chat.php:316
+#: index.php:327 chat.php:327
+msgid "Logout delay (seconds)"
+msgstr ""
+
+#: index.php:328 chat.php:328
msgid "Captcha timeout (seconds)"
msgstr "انتهى وقت كلمة التحقق (بالثواني)"
-#: chat.php:317
+#: index.php:329 chat.php:329
msgid "Message timeout (minutes)"
msgstr "انتهت مهلة الرسالة (بالدقائق)"
-#: chat.php:318
+#: index.php:330 chat.php:330
msgid "Message limit (public)"
msgstr "حد الرسالة (عام)"
-#: chat.php:319
+#: index.php:331 chat.php:331
msgid "Maximal message length"
msgstr "أقصى طول للرسالة"
-#: chat.php:320
+#: index.php:332 chat.php:332
msgid "Maximal nickname length"
msgstr "أقصى طول للكنية"
-#: chat.php:321
+#: index.php:333 chat.php:333
msgid "Minimal password length"
msgstr "الحد الأدنى لطول كلمة المرور"
-#: chat.php:322
+#: index.php:334 chat.php:334
msgid "Default message reload time (seconds)"
msgstr "وقت إعادة تحميل الرسالة الافتراضي (بالثواني)"
-#: chat.php:323
+#: index.php:335 chat.php:335
msgid "Number of notes revisions to keep"
msgstr "عدد المذكرات المنقحة للاحتفاظ بها"
-#: chat.php:324
+#: index.php:336 chat.php:336
msgid "Maximum upload size in KB"
msgstr ""
-#: chat.php:325
+#: index.php:337 chat.php:337
msgid "Enable file uploads"
msgstr ""
-#: chat.php:326
+#: index.php:338 chat.php:338
msgid "Lowest refresh rate"
msgstr ""
-#: chat.php:327
+#: index.php:339 chat.php:339
msgid "Highest refresh rate"
msgstr ""
-#: chat.php:330
+#: index.php:342 chat.php:342
msgid "Rules (html)"
msgstr "القواعد (html)"
-#: chat.php:331
+#: index.php:343 chat.php:343
msgid "CSS Style"
msgstr "أسلوب Css"
-#: chat.php:332
+#: index.php:344 chat.php:344
msgid "Chat disabled message (html)"
msgstr ""
-#: chat.php:335
+#: index.php:347 chat.php:347
msgid ""
"Date "
@@ -285,670 +291,713 @@ msgstr ""
"php#refsect1-function.date-parameters\" rel=\"noopener noreferrer\">صيغة "
"التاريخ"
-#: chat.php:336
+#: index.php:348 chat.php:348
msgid "Characters used in Captcha"
msgstr "الأحرف المستخدمة في Captcha"
-#: chat.php:337
+#: index.php:349 chat.php:349
msgid "Custom redirection script"
msgstr "تخصيص نص إعادة التوجيه"
-#: chat.php:338
+#: index.php:350 chat.php:350
msgid "Chat name"
msgstr "اسم القط"
-#: chat.php:339
+#: index.php:351 chat.php:351
msgid "Send mail using this address"
msgstr ""
-#: chat.php:340
+#: index.php:352 chat.php:352
msgid "Send mail to this address"
msgstr ""
-#: chat.php:341
+#: index.php:353 chat.php:353
msgid "Nickname regex"
msgstr ""
-#: chat.php:342
+#: index.php:354 chat.php:354
msgid "Password regex"
msgstr ""
-#: chat.php:343
+#: index.php:355 chat.php:355
msgid "Link to external CSS file (on your own server)"
msgstr ""
-#: chat.php:344
+#: index.php:356 chat.php:356
msgid "Meta description (best 50 - 160 characters for SEO)"
msgstr ""
-#: chat.php:345
+#: index.php:357 chat.php:357
+msgid "Show this text when a user's logout is delayed"
+msgstr ""
+
+#: index.php:358 chat.php:358
msgid "Prepend this text to system messages"
msgstr "هذا النص يسبق رسائل النظام"
-#: chat.php:348 chat.php:728 chat.php:1225
+#: index.php:361 index.php:780 index.php:1282 chat.php:361 chat.php:780
+#: chat.php:1282
msgid "Change Guestaccess"
msgstr "تغيير وصول الضيف"
-#: chat.php:349
+#: index.php:362 chat.php:362
msgid "Enable global Password"
msgstr ""
-#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433
+#: index.php:363 index.php:810 index.php:2474 index.php:2492 chat.php:363
+#: chat.php:810 chat.php:2474 chat.php:2492
msgid "Global Password:"
msgstr "كلمة المرور العامة:"
-#: chat.php:351 chat.php:819
+#: index.php:364 index.php:871 chat.php:364 chat.php:871
msgid "Captcha"
msgstr "كلمة التحقق"
-#: chat.php:352 chat.php:775 chat.php:835
+#: index.php:365 index.php:827 index.php:887 chat.php:365 chat.php:827
+#: chat.php:887
msgid "Only for guests"
msgstr "فقط الضيوف"
-#: chat.php:353 chat.php:1220
+#: index.php:366 index.php:1277 chat.php:366 chat.php:1277
msgid "Topic"
msgstr "فاعل"
-#: chat.php:354 chat.php:781
+#: index.php:367 index.php:833 chat.php:367 chat.php:833
msgid "Let guests register themselves"
msgstr ""
-#: chat.php:355 chat.php:862
+#: index.php:368 index.php:919 chat.php:368 chat.php:919
msgid "Default time zone"
msgstr ""
-#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259
+#: index.php:581 index.php:1157 index.php:4158 index.php:4341 chat.php:581
+#: chat.php:1157 chat.php:4158 chat.php:4341
msgid "Initial Setup"
msgstr "التهيئة"
-#: chat.php:588
+#: index.php:601 chat.php:601
#, php-format
msgid "Redirecting to: %s"
msgstr "إعادة التوجيه إلى: %s"
-#: chat.php:595
+#: index.php:608 chat.php:608
#, php-format
msgid ""
"Dangerous non-http link requested, copy paste this link if you are really "
"sure: %s"
msgstr ""
-#: chat.php:597
+#: index.php:610 chat.php:610
#, php-format
msgid "Non-http link requested: %s"
msgstr "مطلوب ارتباط غير http: %s"
-#: chat.php:599
+#: index.php:612 chat.php:612
#, php-format
msgid "If it's not working, try this one: %s"
msgstr "إذا لم يفلح ذلك ، فجرّب الخيار إذا: %s"
-#: chat.php:609
+#: index.php:622 chat.php:622
msgid "Access denied"
msgstr "الوصول ممنوع"
-#: chat.php:609
+#: index.php:622 chat.php:622
#, php-format
msgid "You are logged in as %s and don't have access to this section."
msgstr ""
-#: chat.php:611 chat.php:915 chat.php:1211 chat.php:1393
+#: index.php:624 index.php:972 index.php:1268 index.php:1450 chat.php:624
+#: chat.php:972 chat.php:1268 chat.php:1450
msgid "Logout"
msgstr "تسجيل خروج"
-#: chat.php:636
+#: index.php:649 chat.php:649
msgid "Copy:"
msgstr "ينسخ:"
-#: chat.php:724
+#: index.php:776 chat.php:776
msgid "Chat Setup"
msgstr "تثبيت الدردشة"
-#: chat.php:734 chat.php:1233
+#: index.php:786 index.php:1290 chat.php:786 chat.php:1290
msgid "Allow"
msgstr "السماح"
-#: chat.php:739 chat.php:1238
+#: index.php:791 index.php:1295 chat.php:791 chat.php:1295
msgid "Allow with waitingroom"
msgstr "يسمح بالانتظار في غرفة"
-#: chat.php:744 chat.php:1243
+#: index.php:796 index.php:1300 chat.php:796 chat.php:1300
msgid "Require moderator approval"
msgstr "طلب موافقة الوسيط"
-#: chat.php:749 chat.php:1248
+#: index.php:801 index.php:1305 chat.php:801 chat.php:1305
msgid "Only members"
msgstr "الأعضاء فقط"
-#: chat.php:754 chat.php:1251
+#: index.php:806 index.php:1308 chat.php:806 chat.php:1308
msgid "Disable chat"
msgstr ""
-#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229
+#: index.php:817 index.php:839 index.php:894 index.php:953 index.php:2288
+#: chat.php:817 chat.php:839 chat.php:894 chat.php:953 chat.php:2288
msgid "Disabled"
msgstr "غير مثبت"
-#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219
+#: index.php:822 index.php:882 index.php:958 index.php:2278 chat.php:822
+#: chat.php:882 chat.php:958 chat.php:2278
msgid "Enabled"
msgstr "مثبت"
-#: chat.php:792
+#: index.php:844 chat.php:844
msgid "As applicant"
msgstr ""
-#: chat.php:797
+#: index.php:849 chat.php:849
msgid "As member"
msgstr ""
-#: chat.php:800
+#: index.php:852 chat.php:852
msgid "System messages"
msgstr "رسائل النظام"
-#: chat.php:822 chat.php:1053
+#: index.php:874 index.php:1110 chat.php:874 chat.php:1110
#, php-format
msgid ""
"The %s extension of PHP is required for this feature. Please install it "
"first."
msgstr ""
-#: chat.php:847
+#: index.php:899 chat.php:899
msgid "Simple"
msgstr "بسيط"
-#: chat.php:852
+#: index.php:904 chat.php:904
msgid "Moderate"
msgstr "معتدل"
-#: chat.php:857
+#: index.php:909 chat.php:909
+msgid "Hard"
+msgstr ""
+
+#: index.php:914 chat.php:914
msgid "Extreme"
msgstr "شديد"
-#: chat.php:906 chat.php:1548 chat.php:1610
+#: index.php:963 index.php:1605 index.php:1667 chat.php:963 chat.php:1605
+#: chat.php:1667
msgid "Apply"
msgstr "مطبق"
-#: chat.php:910 chat.php:1050
+#: index.php:967 index.php:1107 chat.php:967 chat.php:1107
msgid "Backup and restore"
msgstr "احفظ واسترد"
-#: chat.php:912
+#: index.php:969 chat.php:969
msgid "Destroy chat"
msgstr "تدمير القط"
-#: chat.php:1057 chat.php:1066
+#: index.php:1114 index.php:1123 chat.php:1114 chat.php:1123
msgid "Settings"
msgstr "اعدادات"
-#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575
-#: chat.php:1622
+#: index.php:1115 index.php:1124 index.php:1269 index.php:1595 index.php:1632
+#: index.php:1679 chat.php:1115 chat.php:1124 chat.php:1269 chat.php:1595
+#: chat.php:1632 chat.php:1679
msgid "Filter"
msgstr "فصل"
-#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538
+#: index.php:1116 index.php:1125 index.php:1325 index.php:2600 chat.php:1116
+#: chat.php:1125 chat.php:1325 chat.php:2600
msgid "Members"
msgstr "أعضاء"
-#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322
+#: index.php:1117 index.php:1126 index.php:2373 index.php:2381 chat.php:1117
+#: chat.php:1126 chat.php:2373 chat.php:2381
msgid "Notes"
msgstr "ملاحظات"
-#: chat.php:1061
+#: index.php:1118 chat.php:1118
msgid "Backup"
msgstr ""
-#: chat.php:1070
+#: index.php:1127 chat.php:1127
msgid "Restore"
msgstr "استعادة"
-#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260
+#: index.php:1131 index.php:1174 index.php:1212 index.php:1242 index.php:4342
+#: chat.php:1131 chat.php:1174 chat.php:1212 chat.php:1242 chat.php:4342
msgid "Go to the Setup-Page"
msgstr "اذهب إلى صفحة التثبيت"
-#: chat.php:1082 chat.php:1091 chat.php:1949
+#: index.php:1139 index.php:1148 index.php:2006 chat.php:1139 chat.php:1148
+#: chat.php:2006
msgid "Are you sure?"
msgstr "هل أنت واثق؟"
-#: chat.php:1083 chat.php:1092 chat.php:1956
+#: index.php:1140 index.php:1149 index.php:2013 chat.php:1140 chat.php:1149
+#: chat.php:2013
msgid "Yes"
msgstr "نعم"
-#: chat.php:1084 chat.php:1093 chat.php:1963
+#: index.php:1141 index.php:1150 index.php:2020 chat.php:1141 chat.php:1150
+#: chat.php:2020
msgid "No"
msgstr "لا"
-#: chat.php:1101 chat.php:4259
+#: index.php:1158 index.php:4341 chat.php:1158 chat.php:4341
msgid "Superadmin Login"
msgstr "تسجيل دخول المشرف المتميز"
-#: chat.php:1102
+#: index.php:1159 chat.php:1159
msgid "Superadmin Nickname:"
msgstr "لقب المشرف المتميز:"
-#: chat.php:1103
+#: index.php:1160 chat.php:1160
msgid "Superadmin Password:"
msgstr "كلمة مرور المشرف المتميز:"
-#: chat.php:1104
+#: index.php:1161 chat.php:1161
msgid "Confirm Password:"
msgstr "أكد كلمة المرور:"
-#: chat.php:1105
+#: index.php:1162 chat.php:1162
msgid "Initialise Chat"
msgstr ""
-#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439
+#: index.php:1163 index.php:1187 index.php:1213 index.php:2336 index.php:2498
+#: chat.php:1163 chat.php:1187 chat.php:1213 chat.php:2336 chat.php:2498
msgid "Change language:"
msgstr "غير اللغة:"
-#: chat.php:1117
+#: index.php:1174 chat.php:1174
msgid "Database successfully updated!"
msgstr "تم تثبيت قاعدة البيانات!"
-#: chat.php:1125 chat.php:1326 chat.php:2407
+#: index.php:1182 index.php:1383 index.php:2466 chat.php:1182 chat.php:1383
+#: chat.php:2466
msgid "Nickname:"
msgstr "مستعار:"
-#: chat.php:1126 chat.php:1327 chat.php:2408
+#: index.php:1183 index.php:1384 index.php:2467 chat.php:1183 chat.php:1384
+#: chat.php:2467
msgid "Password:"
msgstr "كلمة السر:"
-#: chat.php:1128
+#: index.php:1185 chat.php:1185
msgid "Login"
msgstr "تسجيل الدخول"
-#: chat.php:1129
+#: index.php:1186 chat.php:1186
msgid "Forgot login?"
msgstr ""
-#: chat.php:1142 chat.php:1306
+#: index.php:1199 index.php:1363 chat.php:1199 chat.php:1363
msgid "Reset password"
msgstr "إعادة تعيين كلمة المرور"
-#: chat.php:1150
+#: index.php:1207 chat.php:1207
#, php-format
msgid ""
"Successfully reset password for username %s. Please remove the password "
"reset define from the script again."
msgstr ""
-#: chat.php:1153
+#: index.php:1210 chat.php:1210
msgid ""
"Please modify the script and put the following at the bottom of it (change "
"the password). Then refresh this page: define('RESET_SUPERADMIN_PASSWORD', "
"'changeme');"
msgstr ""
-#: chat.php:1169 chat.php:1193 chat.php:1258 chat.php:1270 chat.php:1294
-#: chat.php:1308 chat.php:1316 chat.php:2145 chat.php:2153
+#: index.php:1226 index.php:1250 index.php:1315 index.php:1327 index.php:1351
+#: index.php:1365 index.php:1373 index.php:2204 index.php:2212 chat.php:1226
+#: chat.php:1250 chat.php:1315 chat.php:1327 chat.php:1351 chat.php:1365
+#: chat.php:1373 chat.php:2204 chat.php:2212
msgid "(choose)"
msgstr "(اختار)"
-#: chat.php:1170
+#: index.php:1227 chat.php:1227
msgid "All guests"
msgstr "كل الضيوف"
-#: chat.php:1182
+#: index.php:1239 chat.php:1239
msgid "Administrative functions"
msgstr "وظائف الإدارة"
-#: chat.php:1188
+#: index.php:1245 chat.php:1245
msgid "Clean messages"
msgstr "رسائل نظيفة"
-#: chat.php:1191
+#: index.php:1248 chat.php:1248
msgid "Whole room"
msgstr "غرفة"
-#: chat.php:1192
+#: index.php:1249 chat.php:1249
msgid "Selection"
msgstr "اختيار"
-#: chat.php:1193
+#: index.php:1250 chat.php:1250
msgid "Following nickname:"
msgstr "اتبع اللقب:"
-#: chat.php:1200
+#: index.php:1257 chat.php:1257
msgid "Clean"
msgstr "نظيف"
-#: chat.php:1202
+#: index.php:1259 chat.php:1259
#, php-format
msgid "Kick Chatter (%d minutes)"
msgstr "تم إخراج الألقاب (%d دقيقة)"
-#: chat.php:1204
+#: index.php:1261 chat.php:1261
msgid "Kickmessage:"
msgstr "الرسائل الممنوعة:"
-#: chat.php:1205
+#: index.php:1262 chat.php:1262
msgid "Purge messages"
msgstr "تطهير الرسائل"
-#: chat.php:1206 chat.php:1388 chat.php:1546 chat.php:1580 chat.php:1591
-#: chat.php:2042
+#: index.php:1263 index.php:1445 index.php:1603 index.php:1637 index.php:1648
+#: index.php:2101 chat.php:1263 chat.php:1445 chat.php:1603 chat.php:1637
+#: chat.php:1648 chat.php:2101
msgid "Kick"
msgstr "محظور / مطرود"
-#: chat.php:1208
+#: index.php:1265 chat.php:1265
msgid "Logout inactive Chatter"
msgstr "فصل مستخدم غير نشط"
-#: chat.php:1212
+#: index.php:1269 chat.php:1269
msgid "View active sessions"
msgstr "عرض الجلسات النشطة"
-#: chat.php:1212 chat.php:1603
+#: index.php:1269 index.php:1660 chat.php:1269 chat.php:1660
msgid "Linkfilter"
msgstr "ارتباط تمت تصفيته"
-#: chat.php:1217
+#: index.php:1274 chat.php:1274
msgid "View"
msgstr "انظر"
-#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582
-#: chat.php:1626
+#: index.php:1280 index.php:1310 index.php:1361 index.php:1369 index.php:1639
+#: index.php:1683 chat.php:1280 chat.php:1310 chat.php:1361 chat.php:1369
+#: chat.php:1639 chat.php:1683
msgid "Change"
msgstr "تغيير"
-#: chat.php:1256
+#: index.php:1313 chat.php:1313
msgid "Register applicant"
msgstr "أضف مرشحًا"
-#: chat.php:1264 chat.php:1322 chat.php:1328
+#: index.php:1321 index.php:1379 index.php:1385 chat.php:1321 chat.php:1379
+#: chat.php:1385
msgid "Register"
msgstr "حفظ"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Delete from database"
msgstr "حذف من قاعدة البيانات"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Deny access (!)"
msgstr "الوصول ممنوع (!)"
-#: chat.php:1296
+#: index.php:1353 chat.php:1353
msgid "Set to applicant (SG)"
msgstr "إضافة كمرشح (SG)"
-#: chat.php:1298
+#: index.php:1355 chat.php:1355
msgid "Set to regular member"
msgstr "أضف كعضو عادي"
-#: chat.php:1299
+#: index.php:1356 chat.php:1356
msgid "Set to moderator (M)"
msgstr "إضافة كوسيط (م)"
-#: chat.php:1300
+#: index.php:1357 chat.php:1357
msgid "Set to supermod (SM)"
msgstr "إضافة كوسيط فائق (SM)"
-#: chat.php:1302
+#: index.php:1359 chat.php:1359
msgid "Set to admin (A)"
msgstr "إضافة كمسؤول (أ)"
-#: chat.php:1314
+#: index.php:1371 chat.php:1371
msgid "Register Guest"
msgstr "سجل ضيف"
-#: chat.php:1324
+#: index.php:1381 chat.php:1381
msgid "Register new Member"
msgstr "تسجيل عضو جديد"
-#: chat.php:1332 chat.php:1408 chat.php:1595 chat.php:1636 chat.php:1710
-#: chat.php:1924
+#: index.php:1389 index.php:1465 index.php:1652 index.php:1693 index.php:1767
+#: index.php:1981 chat.php:1389 chat.php:1465 chat.php:1652 chat.php:1693
+#: chat.php:1767 chat.php:1981
msgid "Reload"
msgstr "معاد شحنه"
-#: chat.php:1345
+#: index.php:1402 chat.php:1402
msgid "Active Sessions"
msgstr "جلسات نشطة"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "Nickname"
msgstr "مستعار"
-#: chat.php:1346
+#: index.php:1403 chat.php:1403
msgid "Timeout in"
msgstr "ينتهي في"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "User-Agent"
msgstr "وكيل المستخدم"
-#: chat.php:1350
+#: index.php:1407 chat.php:1407
msgid "IP-Address"
msgstr "عنوان IP"
-#: chat.php:1351
+#: index.php:1408 chat.php:1408
msgid "Actions"
msgstr "أجراءات"
-#: chat.php:1393
+#: index.php:1450 chat.php:1450
msgid "Unban"
msgstr ""
-#: chat.php:1416
+#: index.php:1473 chat.php:1473
msgid "Incorrect regular expression!"
msgstr "تعبير عادي غير صحيح!"
-#: chat.php:1416 chat.php:1424
+#: index.php:1473 index.php:1481 chat.php:1473 chat.php:1481
#, php-format
msgid "Your match was as follows: %s"
msgstr ""
-#: chat.php:1424
+#: index.php:1481 chat.php:1481
msgid ""
"Your match was too long. You can use max. 255 characters. Try splitting it "
"up."
msgstr ""
-#: chat.php:1541 chat.php:1606
+#: index.php:1598 index.php:1663 chat.php:1598 chat.php:1663
msgid "Filter ID:"
msgstr "معرّف الفلتر:"
-#: chat.php:1542 chat.php:1607
+#: index.php:1599 index.php:1664 chat.php:1599 chat.php:1664
msgid "Match"
msgstr "يتوافق"
-#: chat.php:1543 chat.php:1608
+#: index.php:1600 index.php:1665 chat.php:1600 chat.php:1665
msgid "Replace"
msgstr "تم استبداله"
-#: chat.php:1544 chat.php:1578 chat.php:1589
+#: index.php:1601 index.php:1635 index.php:1646 chat.php:1601 chat.php:1635
+#: chat.php:1646
msgid "Allow in PM"
msgstr "أذن في PM"
-#: chat.php:1545 chat.php:1579 chat.php:1590 chat.php:1609 chat.php:1625
-#: chat.php:1633
+#: index.php:1602 index.php:1636 index.php:1647 index.php:1666 index.php:1682
+#: index.php:1690 chat.php:1602 chat.php:1636 chat.php:1647 chat.php:1666
+#: chat.php:1682 chat.php:1690
msgid "Regex"
msgstr ""
-#: chat.php:1547 chat.php:1581 chat.php:1592
+#: index.php:1604 index.php:1638 index.php:1649 chat.php:1604 chat.php:1638
+#: chat.php:1649
msgid "Case sensitive"
msgstr ""
-#: chat.php:1586 chat.php:1630
+#: index.php:1643 index.php:1687 chat.php:1643 chat.php:1687
msgid "New filter:"
msgstr "مرشح جديد:"
-#: chat.php:1593 chat.php:1634
+#: index.php:1650 index.php:1691 chat.php:1650 chat.php:1691
msgid "Add"
msgstr "اضف"
-#: chat.php:1691
+#: index.php:1748 chat.php:1748
msgid ""
"This chat uses frames. Please enable frames in your browser or use a "
"suitable one!"
msgstr "يرجى السماح بإطارات في متصفحك!"
-#: chat.php:1691 chat.php:2370 chat.php:2457
+#: index.php:1748 index.php:2429 index.php:2516 chat.php:1748 chat.php:2429
+#: chat.php:2516
msgid "Back to the login page."
msgstr "العودة إلى صفحة المصادقة."
-#: chat.php:1709
+#: index.php:1766 chat.php:1766
msgid "Bottom"
msgstr "تحت"
-#: chat.php:1710
+#: index.php:1767 chat.php:1767
msgid "Manual refresh required"
msgstr ""
-#: chat.php:1726
+#: index.php:1783 chat.php:1783
msgid "Top"
msgstr "فوق"
-#: chat.php:1734 chat.php:1940 chat.php:1942
+#: index.php:1791 index.php:1997 index.php:1999 chat.php:1791 chat.php:1997
+#: chat.php:1999
msgid "Delete selected messages"
msgstr "حذف الرسائل المختارة"
-#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281
+#: index.php:1818 index.php:1945 index.php:2160 index.php:2340 chat.php:1818
+#: chat.php:1945 chat.php:2160 chat.php:2340
msgid "Back to the chat."
msgstr "العودة إلى الدردشة."
-#: chat.php:1774 chat.php:1791
+#: index.php:1831 index.php:1848 chat.php:1831 chat.php:1848
msgid "Admin notes"
msgstr "ملاحظات المسؤول"
-#: chat.php:1777 chat.php:1788
+#: index.php:1834 index.php:1845 chat.php:1834 chat.php:1845
msgid "Staff notes"
msgstr "ملاحظات المدير"
-#: chat.php:1811
+#: index.php:1868 chat.php:1868
msgid "Notes saved!"
msgstr "تم تسجيل الملاحظات!"
-#: chat.php:1835 chat.php:2122
+#: index.php:1892 index.php:2181 chat.php:1892 chat.php:2181
#, php-format
msgid "Last edited by %1$s at %2$s"
msgstr ""
-#: chat.php:1848
+#: index.php:1905 chat.php:1905
msgid "Save notes"
msgstr "حفظ الملاحظات"
-#: chat.php:1850
+#: index.php:1907 chat.php:1907
msgid "Revisions:"
msgstr "التنقيحات:"
-#: chat.php:1853
+#: index.php:1910 chat.php:1910
msgid "Older"
msgstr "سابق"
-#: chat.php:1857
+#: index.php:1914 chat.php:1914
msgid "Newer"
msgstr "جديد"
-#: chat.php:1868 chat.php:1914
+#: index.php:1925 index.php:1971 chat.php:1925 chat.php:1971
msgid "Waiting room"
msgstr "قاعة انتظار"
-#: chat.php:1880
+#: index.php:1937 chat.php:1937
msgid "Allow checked"
msgstr "السماح للحفظ"
-#: chat.php:1881
+#: index.php:1938 chat.php:1938
msgid "Allow all"
msgstr "اسمح للجميع"
-#: chat.php:1882
+#: index.php:1939 chat.php:1939
msgid "Deny checked"
msgstr "رفض الحفظ"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Deny all"
msgstr "ينكر الجميع"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Send message to denied:"
msgstr "إرسال رسالة ممنوعة:"
-#: chat.php:1884
+#: index.php:1941 chat.php:1941
msgid "Submit"
msgstr "بث"
-#: chat.php:1886
+#: index.php:1943 chat.php:1943
msgid "No more entry requests to approve."
msgstr "لا مزيد من الإدخالات للموافقة عليها."
-#: chat.php:1916
+#: index.php:1973 chat.php:1973
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat in %2$d "
"seconds."
msgstr "مرحبًا%1$s ، تم تعليق اتصالك ، وصولك إلى الدردشة في%2$d ثانية."
-#: chat.php:1918
+#: index.php:1975 chat.php:1975
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat as soon, "
"as a moderator lets you in."
msgstr ""
-#: chat.php:1921
+#: index.php:1978 chat.php:1978
#, php-format
msgid ""
"If this page doesn't refresh every %d seconds, use the button below to "
"reload it manually!"
msgstr ""
-#: chat.php:1926 chat.php:2339
+#: index.php:1983 index.php:2398 chat.php:1983 chat.php:2398
msgid "Exit Chat"
msgstr "الخروج من الدردشة"
-#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430
+#: index.php:1986 index.php:2133 index.php:2144 index.php:2489 chat.php:1986
+#: chat.php:2133 chat.php:2144 chat.php:2489
msgid "Rules"
msgstr "قواعد"
-#: chat.php:1985
+#: index.php:2042 chat.php:2042
msgid "Send to"
msgstr "أرسل إلى"
-#: chat.php:1990
+#: index.php:2047 chat.php:2047
msgid "All chatters"
msgstr "لجميع المدردشين"
-#: chat.php:1996
+#: index.php:2053 chat.php:2053
msgid "Members only"
msgstr "الأعضاء فقط"
-#: chat.php:2003
+#: index.php:2060 chat.php:2060
msgid "Staff only"
msgstr "مدير فقط"
-#: chat.php:2010
+#: index.php:2067 chat.php:2067
msgid "Admin only"
msgstr "المسؤول فقط"
-#: chat.php:2019
+#: index.php:2076 chat.php:2076
msgid "(offline)"
msgstr ""
-#: chat.php:2043
+#: index.php:2078 chat.php:2078
+msgid "(logging out)"
+msgstr ""
+
+#: index.php:2102 chat.php:2102
msgid "Also purge messages"
msgstr "تطهير الرسائل"
-#: chat.php:2050
+#: index.php:2109 chat.php:2109
msgid "Delete last message"
msgstr "احذف الرسائل الأخيرة"
-#: chat.php:2055
+#: index.php:2114 chat.php:2114
msgid "Delete all messages"
msgstr "امسح كل الرسائل"
-#: chat.php:2057
+#: index.php:2116 chat.php:2116
msgid "Switch to single-line"
msgstr "خط واحد"
-#: chat.php:2059
+#: index.php:2118 chat.php:2118
msgid "Switch to multi-line"
msgstr "قم بالتبديل إلى خطوط متعددة"
-#: chat.php:2070
+#: index.php:2129 chat.php:2129
#, php-format
msgid "Welcome %s!"
msgstr ""
-#: chat.php:2071
+#: index.php:2130 chat.php:2130
#, php-format
msgid ""
"If this frame does not reload in %d seconds, you'll have to enable automatic "
@@ -959,11 +1008,11 @@ msgid ""
"bottom to refresh manually."
msgstr ""
-#: chat.php:2087
+#: index.php:2146 chat.php:2146
msgid "Help"
msgstr "مساعدة"
-#: chat.php:2088
+#: index.php:2147 chat.php:2147
msgid ""
"All functions should be pretty much self-explaining, just use the buttons. "
"In your profile you can adjust the refresh rate and font colour, as well as "
@@ -971,14 +1020,14 @@ msgid ""
"you will be automatically logged out after a while."
msgstr ""
-#: chat.php:2090
+#: index.php:2149 chat.php:2149
msgid ""
"If you want to embed an image in your post, simply put [img] in front of "
"your image URL. Example: [img]http://example.com/images/file.jpg will embed "
"the image in your post."
msgstr ""
-#: chat.php:2093
+#: index.php:2152 chat.php:2152
msgid ""
"Members: You'll have some more options in your profile. You can adjust your "
"font face, change your password anytime and of course you can delete your "
@@ -987,7 +1036,7 @@ msgstr ""
"الأعضاء: سيكون لديك المزيد من الخيارات في ملفك الشخصي. يمكنك ضبط نوع الخط "
"الخاص بك ويمكنك تغيير كلمة المرور الخاصة بك في أي وقت."
-#: chat.php:2095
+#: index.php:2154 chat.php:2154
msgid ""
"Moderators: Notice the Admin-button at the bottom. It'll bring up a page "
"where you can clean the room, kick chatters, view all active sessions and "
@@ -997,7 +1046,7 @@ msgstr ""
"المعيشة ، وطرد الدردشة ، ومشاهدة جميع الجلسات النشطة ، وتعطيل وصول الضيف "
"تمامًا إذا لزم الأمر."
-#: chat.php:2097
+#: index.php:2156 chat.php:2156
msgid ""
"Admins: You'll be furthermore able to register guests, edit members and "
"register new nicknames."
@@ -1005,590 +1054,612 @@ msgstr ""
"المسؤولون: ستتمكن من تسجيل الضيوف وتعديل الأعضاء الجدد وتسجيلهم دون تواجدهم "
"في الصالة."
-#: chat.php:2135
+#: index.php:2194 chat.php:2194
msgid "Your Profile"
msgstr "ملفك الشخصي"
-#: chat.php:2144
+#: index.php:2203 chat.php:2203
msgid "Don't ignore anymore"
msgstr "لا تتجاهل مرة أخرى"
-#: chat.php:2152
+#: index.php:2211 chat.php:2211
msgid "Ignore"
msgstr "تم التجاهل"
-#: chat.php:2163
+#: index.php:2222 chat.php:2222
#, php-format
msgid "Refresh rate (%1$d-%2$d seconds)"
msgstr "معدل التحديث (%1$d-%2$d ثانية)"
-#: chat.php:2167 chat.php:2170
+#: index.php:2226 index.php:2229 chat.php:2226 chat.php:2229
msgid "View examples"
msgstr "اعرض الأمثلة"
-#: chat.php:2174
+#: index.php:2233 chat.php:2233
msgid "Fontface"
msgstr "تعديل الخط"
-#: chat.php:2175
+#: index.php:2234 chat.php:2234
msgid "Room Default"
msgstr "الصالة الافتراضية"
-#: chat.php:2188
+#: index.php:2247 chat.php:2247
msgid "Bold"
msgstr "سمين"
-#: chat.php:2192
+#: index.php:2251 chat.php:2251
msgid "Italic"
msgstr "مائل"
-#: chat.php:2196
+#: index.php:2255 chat.php:2255
msgid "Small"
msgstr ""
-#: chat.php:2199
+#: index.php:2258 chat.php:2258
msgid "Example for your chosen font"
msgstr "مثال على اختيار الخط"
-#: chat.php:2203
+#: index.php:2262 chat.php:2262
msgid "Autoscroll (for old browsers or top-to-bottom sort)."
msgstr ""
-#: chat.php:2234
+#: index.php:2293 chat.php:2293
msgid "For everyone"
msgstr ""
-#: chat.php:2239
+#: index.php:2298 chat.php:2298
msgid "For members only"
msgstr ""
-#: chat.php:2244
+#: index.php:2303 chat.php:2303
msgid "For staff only"
msgstr ""
-#: chat.php:2248
+#: index.php:2307 chat.php:2307
msgid "Time zone"
msgstr ""
-#: chat.php:2261
+#: index.php:2320 chat.php:2320
msgid "Change Password"
msgstr "تغيير كلمة المرور"
-#: chat.php:2263
+#: index.php:2322 chat.php:2322
msgid "Old password:"
msgstr "كلمة سر قديمة:"
-#: chat.php:2264
+#: index.php:2323 chat.php:2323
msgid "New password:"
msgstr "كلمة مرور جديدة:"
-#: chat.php:2265
+#: index.php:2324 chat.php:2324
msgid "Confirm new password:"
msgstr "قم بتأكيد كلمة المرور الجديدة الخاصة بك:"
-#: chat.php:2268
+#: index.php:2327 chat.php:2327
msgid "Change Nickname"
msgstr ""
-#: chat.php:2269
+#: index.php:2328 chat.php:2328
msgid "New nickname:"
msgstr "اللقب الجديد:"
-#: chat.php:2273
+#: index.php:2332 chat.php:2332
msgid "Save changes"
msgstr "احفظ التغييرات"
-#: chat.php:2275
+#: index.php:2334 chat.php:2334
msgid "Delete account"
msgstr ""
-#: chat.php:2301
+#: index.php:2360 chat.php:2360
msgid "Reload Post Box"
msgstr "أعد تحميل مربع النص"
-#: chat.php:2304
+#: index.php:2363 chat.php:2363
msgid "Reload Messages"
msgstr "إعادة تحميل الرسائل"
-#: chat.php:2307
+#: index.php:2366 chat.php:2366
msgid "Profile"
msgstr "الملف الشخصي"
-#: chat.php:2311 chat.php:2528
+#: index.php:2370 index.php:2590 chat.php:2370 chat.php:2590
msgid "Admin"
msgstr "مدير"
-#: chat.php:2318
+#: index.php:2377 chat.php:2377
msgid "View public notes"
msgstr "انظر الملاحظات العامة'"
-#: chat.php:2325
+#: index.php:2384 chat.php:2384
msgid "Clone"
msgstr "استنساخ"
-#: chat.php:2334
+#: index.php:2393 chat.php:2393
msgid "Rearrange"
msgstr ""
-#: chat.php:2337
+#: index.php:2396 chat.php:2396
msgid "Rules & Help"
msgstr "القواعد والمساعدة"
-#: chat.php:2358 chat.php:2362
+#: index.php:2417 index.php:2421 chat.php:2417 chat.php:2421
msgid "File not found!"
msgstr ""
-#: chat.php:2370
+#: index.php:2429 chat.php:2429
#, php-format
msgid "Bye %s, visit again soon!"
msgstr ""
-#: chat.php:2377
+#: index.php:2436 chat.php:2436
msgid "Colourtable"
msgstr "جدول الألوان"
-#: chat.php:2388
+#: index.php:2447 chat.php:2447
msgid "Back to your Profile"
msgstr "العودة إلى ملف التعريف الخاص بك"
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "Repeat password to register"
msgstr ""
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "(optional)"
msgstr ""
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Guests, choose a colour:"
msgstr "ضيف ، اختر لونًا:"
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Random Colour"
msgstr "لون عشوائي"
-#: chat.php:2421 chat.php:2435 chat.php:2569
+#: index.php:2480 index.php:2494 index.php:2631 chat.php:2480 chat.php:2494
+#: chat.php:2631
msgid "Sorry, currently members only!"
msgstr "آسف ، متاح فقط للأعضاء!"
-#: chat.php:2423 chat.php:2437
+#: index.php:2482 index.php:2496 chat.php:2482 chat.php:2496
msgid "Enter Chat"
msgstr "يدخل"
-#: chat.php:2457
+#: index.php:2516 chat.php:2516
#, php-format
msgid "Error: %s"
msgstr "خطأ: %s"
-#: chat.php:2467
+#: index.php:2526 chat.php:2526
msgid "Fatal error"
msgstr ""
-#: chat.php:2470
+#: index.php:2529 chat.php:2529
#, php-format
msgid "Fatal error: %s"
msgstr ""
-#: chat.php:2482 chat.php:2693
+#: index.php:2541 index.php:2756 chat.php:2541 chat.php:2756
msgid "Failed login attempt(s)"
msgstr "محاولات الاتصال الفاشلة"
-#: chat.php:2489
+#: index.php:2548 chat.php:2548
#, php-format
msgid "Read %d messages in your inbox"
msgstr ""
-#: chat.php:2498
+#: index.php:2557 chat.php:2557
#, php-format
msgid "%d new guests to approve"
msgstr ""
-#: chat.php:2530
+#: index.php:2577 chat.php:2577
+msgid "logging out"
+msgstr ""
+
+#: index.php:2592 chat.php:2592
msgid "Admin:"
msgstr "مدير:"
-#: chat.php:2533
+#: index.php:2595 chat.php:2595
msgid "Staff"
msgstr "مدير"
-#: chat.php:2535
+#: index.php:2597 chat.php:2597
msgid "Staff:"
msgstr "مدير:"
-#: chat.php:2540
+#: index.php:2602 chat.php:2602
msgid "Members:"
msgstr "أعضاء:"
-#: chat.php:2542
+#: index.php:2604 chat.php:2604
msgid "Guests"
msgstr "ضيوف"
-#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092
+#: index.php:2625 index.php:3063 index.php:3267 index.php:4172 chat.php:2625
+#: chat.php:3063 chat.php:3267 chat.php:4172
#, php-format
msgid ""
"Invalid nickname (%1$d characters maximum and has to match the regular "
"expression \"%2$s\")"
msgstr ""
-#: chat.php:2566 chat.php:2996 chat.php:3162 chat.php:4094
+#: index.php:2628 index.php:3066 index.php:3232 index.php:4174 chat.php:2628
+#: chat.php:3066 chat.php:3232 chat.php:4174
#, php-format
msgid ""
"Invalid password (At least %1$d characters and has to match the regular "
"expression \"%2$s\")"
msgstr ""
-#: chat.php:2574 chat.php:2739
+#: index.php:2636 index.php:2806 chat.php:2636 chat.php:2806
msgid "Wrong global Password!"
msgstr "كلمة مرور عالمية سيئة!"
-#: chat.php:2591 chat.php:2612
+#: index.php:2654 index.php:2675 chat.php:2654 chat.php:2675
msgid "Wrong Captcha"
msgstr "كلمة التحقق السيئة"
-#: chat.php:2596 chat.php:2604
+#: index.php:2659 index.php:2667 chat.php:2659 chat.php:2667
msgid "Captcha already used or timed out."
msgstr "تم استخدام كلمة التحقق بالفعل أو منتهية الصلاحية."
-#: chat.php:2652
+#: index.php:2715 chat.php:2715
msgid "A user with this nickname is already logged in."
msgstr ""
-#: chat.php:2652 chat.php:2933 chat.php:3176
+#: index.php:2715 index.php:3003 index.php:3246 chat.php:2715 chat.php:3003
+#: chat.php:3246
msgid "Wrong Password!"
msgstr "كلمة مرور سيئة!"
-#: chat.php:2696
+#: index.php:2759 chat.php:2759
msgid "Dismiss"
msgstr "معروف"
-#: chat.php:2747 chat.php:3171 chat.php:4096
+#: index.php:2814 index.php:3241 index.php:4176 chat.php:2814 chat.php:3241
+#: chat.php:4176
msgid "Password confirmation does not match!"
msgstr "تأكيد كلمة المرور غير متطابق!"
-#: chat.php:2859
+#: index.php:2854 chat.php:2854
+#, fuzzy
+#| msgid "Kickmessage:"
+msgid "no kick message"
+msgstr "الرسائل الممنوعة:"
+
+#: index.php:2929 chat.php:2929
msgid "Invalid/expired session"
msgstr "صفحة غير صالحة / منتهية الصلاحية"
-#: chat.php:2875 chat.php:3412
+#: index.php:2945 index.php:3483 chat.php:2945 chat.php:3483
msgid "You have been kicked!"
msgstr "محظور / طرد!"
-#: chat.php:2885
+#: index.php:2955 chat.php:2955
#, php-format
msgid "Currently %d chatter(s) in room:"
msgstr ""
-#: chat.php:2933
+#: index.php:3003 chat.php:3003
msgid "This nickname is a registered member."
msgstr ""
-#: chat.php:2960 chat.php:3001
+#: index.php:3030 index.php:3071 chat.php:3030 chat.php:3071
#, php-format
msgid "%s is already registered."
msgstr ""
-#: chat.php:2969 chat.php:2990
+#: index.php:3039 index.php:3060 chat.php:3039 chat.php:3060
#, php-format
msgid "Can't register %s"
msgstr ""
-#: chat.php:2978 chat.php:3023
+#: index.php:3048 index.php:3093 chat.php:3048 chat.php:3093
#, php-format
msgid "%s successfully registered."
msgstr ""
-#: chat.php:3031 chat.php:3036
+#: index.php:3101 index.php:3106 chat.php:3101 chat.php:3106
#, php-format
msgid "Can't change status of %s"
msgstr ""
-#: chat.php:3047
+#: index.php:3117 chat.php:3117
#, php-format
msgid "%s successfully deleted from database."
msgstr ""
-#: chat.php:3056
+#: index.php:3126 chat.php:3126
#, php-format
msgid "Status of %s successfully changed."
msgstr ""
-#: chat.php:3073
+#: index.php:3143 chat.php:3143
#, php-format
msgid "Successfully reset password for %s"
msgstr ""
-#: chat.php:3075
+#: index.php:3145 chat.php:3145
#, php-format
msgid "Can't reset password for %s"
msgstr ""
-#: chat.php:3190
+#: index.php:3260 chat.php:3260
msgid "Your profile has successfully been saved."
msgstr "تم تسجيل ملف التعريف الخاص بك."
-#: chat.php:3202
+#: index.php:3272 chat.php:3272
msgid "Nickname is already taken"
msgstr "اللقب مأخوذ بالفعل"
-#: chat.php:3714
+#: index.php:3785 chat.php:3785
msgid "system message"
msgstr "رسالة النظام"
-#: chat.php:3921
+#: index.php:4001 chat.php:4001
msgid "Beige"
msgstr "اللون البيج"
-#: chat.php:3922
+#: index.php:4002 chat.php:4002
msgid "Black"
msgstr "اسود"
-#: chat.php:3923
+#: index.php:4003 chat.php:4003
msgid "Blue"
msgstr "ازرق"
-#: chat.php:3924
+#: index.php:4004 chat.php:4004
msgid "Blue violet"
msgstr "ازرق فاتح"
-#: chat.php:3925
+#: index.php:4005 chat.php:4005
msgid "Brown"
msgstr "بني"
-#: chat.php:3926
+#: index.php:4006 chat.php:4006
msgid "Cyan"
msgstr "سيان"
-#: chat.php:3927
+#: index.php:4007 chat.php:4007
msgid "Dark blue"
msgstr "ازرق غامق"
-#: chat.php:3928
+#: index.php:4008 chat.php:4008
msgid "Dark green"
msgstr "اخضر غامق"
-#: chat.php:3929
+#: index.php:4009 chat.php:4009
msgid "Dark red"
msgstr "احمر غامق"
-#: chat.php:3930
+#: index.php:4010 chat.php:4010
msgid "Dark violet"
msgstr "الأرجواني الداكن"
-#: chat.php:3931
+#: index.php:4011 chat.php:4011
msgid "Sky blue"
msgstr "ازرق سماوي"
-#: chat.php:3932
+#: index.php:4012 chat.php:4012
msgid "Gold"
msgstr "ذهبي"
-#: chat.php:3933
+#: index.php:4013 chat.php:4013
msgid "Grey"
msgstr "رمادي"
-#: chat.php:3934
+#: index.php:4014 chat.php:4014
msgid "Green"
msgstr "اخضر"
-#: chat.php:3935
+#: index.php:4015 chat.php:4015
msgid "Hot pink"
msgstr "الوردي"
-#: chat.php:3936
+#: index.php:4016 chat.php:4016
msgid "Indigo"
msgstr "نيلي"
-#: chat.php:3937
+#: index.php:4017 chat.php:4017
msgid "Light blue"
msgstr "أزرق شاحب"
-#: chat.php:3938
+#: index.php:4018 chat.php:4018
msgid "Light green"
msgstr "أخضر شاحب"
-#: chat.php:3939
+#: index.php:4019 chat.php:4019
msgid "Lime green"
msgstr "ليمون اخضر"
-#: chat.php:3940
+#: index.php:4020 chat.php:4020
msgid "Magenta"
msgstr "أرجواني"
-#: chat.php:3941
+#: index.php:4021 chat.php:4021
msgid "Olive"
msgstr "زيتي"
-#: chat.php:3942
+#: index.php:4022 chat.php:4022
msgid "Orange"
msgstr "برتقالي"
-#: chat.php:3943
+#: index.php:4023 chat.php:4023
msgid "Orange red"
msgstr "أحمر برتقالي"
-#: chat.php:3944
+#: index.php:4024 chat.php:4024
msgid "Purple"
msgstr "خبازي"
-#: chat.php:3945
+#: index.php:4025 chat.php:4025
msgid "Red"
msgstr "أحمر"
-#: chat.php:3946
+#: index.php:4026 chat.php:4026
msgid "Royal blue"
msgstr "ازرق ملكي"
-#: chat.php:3947
+#: index.php:4027 chat.php:4027
msgid "Sea green"
msgstr "أخضر المحيط"
-#: chat.php:3948
+#: index.php:4028 chat.php:4028
msgid "Sienna"
msgstr "سيينا"
-#: chat.php:3949
+#: index.php:4029 chat.php:4029
msgid "Silver"
msgstr "فضي"
-#: chat.php:3950
+#: index.php:4030 chat.php:4030
msgid "Tan"
msgstr ""
-#: chat.php:3951
+#: index.php:4031 chat.php:4031
msgid "Teal"
msgstr "الأزرق الداكن والأخضر"
-#: chat.php:3952
+#: index.php:4032 chat.php:4032
msgid "Violet"
msgstr "نفسجي"
-#: chat.php:3953
+#: index.php:4033 chat.php:4033
msgid "White"
msgstr "ابيض"
-#: chat.php:3954
+#: index.php:4034 chat.php:4034
msgid "Yellow"
msgstr "الأصفر"
-#: chat.php:3955
+#: index.php:4035 chat.php:4035
msgid "Yellow green"
msgstr "اصفر مائل للخضرة"
-#: chat.php:4077
+#: index.php:4157 chat.php:4157
msgid "Successfully destroyed chat"
msgstr "تم حذف الدردشة"
-#: chat.php:4086
+#: index.php:4166 chat.php:4166
msgid ""
"Database tables already exist! To continue, you have to delete these tables "
"manually first."
msgstr ""
"جداول قاعدة البيانات موجودة بالفعل! للمتابعة ، يجب عليك إسقاط الجداول يدويًا."
-#: chat.php:4089
+#: index.php:4169 chat.php:4169
msgid "A Superadmin already exists!"
msgstr "مشرف متميز موجود بالفعل!"
-#: chat.php:4182 chat.php:4369
+#: index.php:4263 index.php:4451 chat.php:4263 chat.php:4451
#, php-format
msgid "%s - "
msgstr "%s - "
-#: chat.php:4183 chat.php:4369
+#: index.php:4264 index.php:4451 chat.php:4264 chat.php:4451
#, php-format
msgid "[M] %s - "
msgstr "[عضو] %s - "
-#: chat.php:4184 chat.php:4369
+#: index.php:4265 index.php:4451 chat.php:4265 chat.php:4451
#, php-format
msgid "[Staff] %s - "
msgstr "[مدير] %s - "
-#: chat.php:4185 chat.php:4369
+#: index.php:4266 index.php:4451 chat.php:4266 chat.php:4451
#, php-format
msgid "[Admin] %s - "
msgstr "[ادمن] %s - "
-#: chat.php:4186 chat.php:4369
+#: index.php:4267 index.php:4451 chat.php:4267 chat.php:4451
#, php-format
msgid "[%1$s to %2$s] - "
msgstr ""
-#: chat.php:4187
+#: index.php:4268 chat.php:4268
#, php-format
msgid "%s entered the chat."
msgstr "وصل%s إلى المحادثة."
-#: chat.php:4188
+#: index.php:4269 chat.php:4269
#, php-format
msgid "%s left the chat."
msgstr "خرج من الدردشة %s."
-#: chat.php:4189
+#: index.php:4270 chat.php:4270
#, php-format
msgid "%s is now a registered member."
msgstr "الان عضو مسجل %s."
-#: chat.php:4190
+#: index.php:4271 chat.php:4271
#, php-format
msgid "%s is now a registered applicant."
msgstr "الان مرشح مسجل %s."
-#: chat.php:4191
-#, php-format
-msgid "%s has been kicked."
+#: index.php:4272 chat.php:4272
+#, fuzzy, php-format
+#| msgid "%s has been kicked."
+msgid "%1$s has been kicked: %2$s"
msgstr "من الدردشة %s طرد."
-#: chat.php:4192
-#, php-format
-msgid "%s have been kicked."
+#: index.php:4273 chat.php:4273
+#, fuzzy, php-format
+#| msgid "%s have been kicked."
+msgid "%1$s have been kicked: %2$s"
msgstr "من الدردشة %s طرد."
-#: chat.php:4193
-msgid "All guests have been kicked."
+#: index.php:4274 chat.php:4274
+#, fuzzy, php-format
+#| msgid "All guests have been kicked."
+msgid "All guests have been kicked: %1$s"
msgstr "تم طرد جميع الدردشات."
-#: chat.php:4194
+#: index.php:4275 chat.php:4275
#, php-format
msgid "%s has been cleaned."
msgstr "%s لقد شطب."
-#: chat.php:4202 chat.php:4396
+#: index.php:4283 index.php:4478 chat.php:4283 chat.php:4478
msgid "Temporarily disabled"
msgstr ""
-#: chat.php:4218 chat.php:4594
+#: index.php:4299 index.php:4676 chat.php:4299 chat.php:4676
msgid "A chat community"
msgstr ""
-#: chat.php:4256
+#: index.php:4338 chat.php:4338
msgid "Successfully registered!"
msgstr "سجلت بنجاح!"
-#: chat.php:4522 chat.php:4721 chat.php:4728
+#: index.php:4604 index.php:4807 index.php:4814 chat.php:4604 chat.php:4807
+#: chat.php:4814
msgid "No connection to database!"
msgstr "لا يوجد اتصال بقاعدة البيانات!"
-#: chat.php:4531
+#: index.php:4613 chat.php:4613
msgid ""
"Note: Default CSS is now hardcoded and can be removed from the CSS setting"
msgstr ""
-#: chat.php:4611
+#: index.php:4697 chat.php:4697
#, php-format
msgid ""
"The %s extension of PHP is required for the encryption feature. Please "
"install it first or set the encrypted setting back to false."
msgstr ""
-#: chat.php:4684 chat.php:4689 chat.php:4694
+#: index.php:4770 index.php:4775 index.php:4780 chat.php:4770 chat.php:4775
+#: chat.php:4780
#, php-format
msgid ""
"The %s extension of PHP is required for the selected database driver. Please "
"install it first."
msgstr ""
-#: chat.php:4707 chat.php:4715 chat.php:4719 chat.php:4726
+#: index.php:4793 index.php:4801 index.php:4805 index.php:4812 chat.php:4793
+#: chat.php:4801 chat.php:4805 chat.php:4812
msgid ""
"No connection to database, please create a database and edit the script to "
"use the correct database with given username and password!"
@@ -1596,7 +1667,7 @@ msgstr ""
"لا يوجد اتصال بقاعدة البيانات ، يرجى إنشاء قاعدة بيانات وتعديل البرنامج "
"النصي لاستخدام قاعدة البيانات بشكل صحيح مع اسم المستخدم وكلمة المرور!"
-#: chat.php:4734
+#: index.php:4820 chat.php:4820
msgid ""
"The memcached extension of PHP is required for the caching feature. Please "
"install it first or set the memcached setting back to false."
diff --git a/locale/bg_BG/LC_MESSAGES/le-chat-php.po b/locale/bg_BG/LC_MESSAGES/le-chat-php.po
index 658d356..4472e12 100644
--- a/locale/bg_BG/LC_MESSAGES/le-chat-php.po
+++ b/locale/bg_BG/LC_MESSAGES/le-chat-php.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-01-18 21:32+0100\n"
+"POT-Creation-Date: 2025-03-29 17:02+0100\n"
"PO-Revision-Date: 2023-01-18 21:35+0100\n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -18,263 +18,269 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.1.1\n"
-#: chat.php:261
+#: index.php:272 chat.php:272
msgid "Enable applicants"
msgstr "Позволи кандидати"
-#: chat.php:262
+#: index.php:273 index.php:2267 chat.php:273 chat.php:2267
msgid "Embed images"
msgstr "Вграждане на изображения"
-#: chat.php:263 chat.php:2202
+#: index.php:274 index.php:2261 chat.php:274 chat.php:2261
msgid "Show Timestamps"
msgstr "Покажи времеви маркери"
-#: chat.php:264
+#: index.php:275 chat.php:275
msgid "Show session-IP"
msgstr "Покажи IP-то на сесията"
-#: chat.php:265
+#: index.php:276 chat.php:276
msgid "Members can kick, if no moderator is present"
msgstr "Членовете могат да гонят, ако няма модератор в стаята"
-#: chat.php:266
+#: index.php:277 chat.php:277
msgid "Members can always kick"
msgstr "Членовете могат вся́кога да гонят"
-#: chat.php:267
+#: index.php:278 chat.php:278
msgid "Force redirection"
msgstr "Пренасочване"
-#: chat.php:268
+#: index.php:279 index.php:2270 chat.php:279 chat.php:2270
msgid "Incognito mode"
msgstr "Режим Инкогнито"
-#: chat.php:269
+#: index.php:280 chat.php:280
msgid "Send mail on new public message"
msgstr "Изпрати мейл при ново публично съобщение"
-#: chat.php:270
+#: index.php:281 chat.php:281
msgid "Fallback to waiting room, if no moderator is present to approve guests"
msgstr "Използвай чакалня, ако няма модератор да одобрява гостите"
-#: chat.php:271
+#: index.php:282 chat.php:282
msgid "Disable private messages"
msgstr "Забрани личните съобщения"
-#: chat.php:272 chat.php:2223
+#: index.php:283 index.php:2282 chat.php:283 chat.php:2282
msgid "Enable offline inbox"
msgstr "Позволи офлайн пощенска кутия"
-#: chat.php:273
+#: index.php:284 chat.php:284
msgid "Show a greeting message before showing the messages"
msgstr "Покажи приветствено съобщение преди да покажеш самото съобщение"
-#: chat.php:274 chat.php:2204
+#: index.php:285 index.php:2263 chat.php:285 chat.php:2263
msgid "Sort messages from top to bottom"
msgstr "Подреди съобщенията от горе надолу"
-#: chat.php:275 chat.php:2205
+#: index.php:286 index.php:2264 chat.php:286 chat.php:2264
msgid "Hide list of chatters"
msgstr "Скрий списъка с потребители"
-#: chat.php:276 chat.php:1780 chat.php:1794
+#: index.php:287 index.php:1837 index.php:1851 chat.php:287 chat.php:1837
+#: chat.php:1851
msgid "Personal notes"
msgstr "Лични бележки"
-#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110
+#: index.php:288 index.php:1840 index.php:1854 index.php:2169 chat.php:288
+#: chat.php:1840 chat.php:1854 chat.php:2169
msgid "Public notes"
msgstr "Обще́ствен Бележки"
-#: chat.php:278
+#: index.php:289 chat.php:289
msgid "Apply kick filter on moderators"
msgstr "Прилагай филтъра за изгонване и за модераторите"
-#: chat.php:279
+#: index.php:290 chat.php:290
msgid "Show who kicks people or purges all messages."
msgstr "Показване кой изхвърля хора или пречиства всички съобщения."
-#: chat.php:280
+#: index.php:291 chat.php:291
msgid "Hide reload post box button"
msgstr ""
-#: chat.php:281
+#: index.php:292 chat.php:292
msgid "Hide reload messages button"
msgstr ""
-#: chat.php:282
+#: index.php:293 chat.php:293
msgid "Hide profile button"
msgstr ""
-#: chat.php:283
+#: index.php:294 chat.php:294
msgid "Hide admin button"
msgstr ""
-#: chat.php:284
+#: index.php:295 chat.php:295
msgid "Hide notes button"
msgstr ""
-#: chat.php:285
+#: index.php:296 chat.php:296
msgid "Hide clone button"
msgstr ""
-#: chat.php:286
+#: index.php:297 chat.php:297
msgid "Hide rearrange button"
msgstr ""
-#: chat.php:287
+#: index.php:298 chat.php:298
msgid "Hide help button"
msgstr ""
-#: chat.php:288
+#: index.php:299 chat.php:299
msgid "Apply postbox delete button globally"
msgstr ""
-#: chat.php:289
+#: index.php:300 chat.php:300
msgid "Allow enhancing functionality with JavaScript"
msgstr ""
-#: chat.php:292 chat.php:2170
+#: index.php:303 index.php:2229 chat.php:303 chat.php:2229
msgid "Background colour"
msgstr "Цвят на фона"
-#: chat.php:293 chat.php:2167
+#: index.php:304 index.php:2226 chat.php:304 chat.php:2226
msgid "Font colour"
msgstr "Цвят на шрифта"
-#: chat.php:296
+#: index.php:307 chat.php:307
msgid "Entrance"
msgstr "Влизане"
-#: chat.php:297
+#: index.php:308 chat.php:308
msgid "Leaving"
msgstr "Напускане"
-#: chat.php:298
+#: index.php:309 chat.php:309
msgid "Member registered"
msgstr "Членът е регистриран"
-#: chat.php:299
+#: index.php:310 chat.php:310
msgid "Applicant registered"
msgstr "Кандидатът е регистриран"
-#: chat.php:300
+#: index.php:311 chat.php:311
msgid "Kicked"
msgstr "Изгонен"
-#: chat.php:301
+#: index.php:312 chat.php:312
msgid "Multiple kicked"
msgstr "Множество изгонени"
-#: chat.php:302
+#: index.php:313 chat.php:313
msgid "All kicked"
msgstr "Всички са изгонени"
-#: chat.php:303
+#: index.php:314 chat.php:314
msgid "Room cleaned"
msgstr "Стаята беше почистена"
-#: chat.php:304
+#: index.php:315 chat.php:315
msgid "Message to all"
msgstr "Съобщение до всички"
-#: chat.php:305
+#: index.php:316 chat.php:316
msgid "Message to members only"
msgstr "Съобщение само до членовете"
-#: chat.php:306
+#: index.php:317 chat.php:317
msgid "Message to staff only"
msgstr "Съобщение само до екипа"
-#: chat.php:307
+#: index.php:318 chat.php:318
msgid "Message to admins only"
msgstr "Съобщение само до администраторите"
-#: chat.php:308
+#: index.php:319 chat.php:319
msgid "Private message"
msgstr "Лично съобщение"
-#: chat.php:309
+#: index.php:320 chat.php:320
msgid "Attachement"
msgstr "Прикачен файл"
-#: chat.php:312
+#: index.php:323 chat.php:323
msgid "Member timeout (minutes)"
msgstr "Изтичане на сесията на членове (минути)"
-#: chat.php:313
+#: index.php:324 chat.php:324
msgid "Guest timeout (minutes)"
msgstr "Изтичане на сесията за гости (минути)"
-#: chat.php:314
+#: index.php:325 chat.php:325
msgid "Kick penalty (minutes)"
msgstr "Наказание с изгонване (минути)"
-#: chat.php:315
+#: index.php:326 chat.php:326
msgid "Waiting room time (seconds)"
msgstr "Време за изчакване в чакалнята (секунди)"
-#: chat.php:316
+#: index.php:327 chat.php:327
+msgid "Logout delay (seconds)"
+msgstr ""
+
+#: index.php:328 chat.php:328
msgid "Captcha timeout (seconds)"
msgstr "Валидност на Captcha-та (секунди)"
-#: chat.php:317
+#: index.php:329 chat.php:329
msgid "Message timeout (minutes)"
msgstr "Съобщенията изтичат след (минути)"
-#: chat.php:318
+#: index.php:330 chat.php:330
msgid "Message limit (public)"
msgstr "Лимит на съобщенията (публичен)"
-#: chat.php:319
+#: index.php:331 chat.php:331
msgid "Maximal message length"
msgstr "Максимална дължина на съобщението"
-#: chat.php:320
+#: index.php:332 chat.php:332
msgid "Maximal nickname length"
msgstr "Максимална дължина на ник"
-#: chat.php:321
+#: index.php:333 chat.php:333
msgid "Minimal password length"
msgstr "Минимална дължина на паролата"
-#: chat.php:322
+#: index.php:334 chat.php:334
msgid "Default message reload time (seconds)"
msgstr "Интервал на опресняване на съобщенията по подразбиране (секунди)"
-#: chat.php:323
+#: index.php:335 chat.php:335
msgid "Number of notes revisions to keep"
msgstr "Брой версии на бележки, които да се пазят"
-#: chat.php:324
+#: index.php:336 chat.php:336
msgid "Maximum upload size in KB"
msgstr "Максимален размер на файл в KB"
-#: chat.php:325
+#: index.php:337 chat.php:337
msgid "Enable file uploads"
msgstr "Позволи качването на файлове"
-#: chat.php:326
+#: index.php:338 chat.php:338
msgid "Lowest refresh rate"
msgstr ""
-#: chat.php:327
+#: index.php:339 chat.php:339
msgid "Highest refresh rate"
msgstr ""
-#: chat.php:330
+#: index.php:342 chat.php:342
msgid "Rules (html)"
msgstr "Правила (html)"
-#: chat.php:331
+#: index.php:343 chat.php:343
msgid "CSS Style"
msgstr "CSS стил"
-#: chat.php:332
+#: index.php:344 chat.php:344
msgid "Chat disabled message (html)"
msgstr "Съобщение относно забранения чат (html)"
-#: chat.php:335
+#: index.php:347 chat.php:347
msgid ""
"Date "
@@ -284,166 +290,177 @@ msgstr ""
"php#refsect1-function.date-parameters\" rel=\"noopener noreferrer\">Формат "
"на дата"
-#: chat.php:336
+#: index.php:348 chat.php:348
msgid "Characters used in Captcha"
msgstr "Символи, използвани за Captcha-та"
-#: chat.php:337
+#: index.php:349 chat.php:349
msgid "Custom redirection script"
msgstr "Мой скрипт за пренасочване"
-#: chat.php:338
+#: index.php:350 chat.php:350
msgid "Chat name"
msgstr "Име на чата"
-#: chat.php:339
+#: index.php:351 chat.php:351
msgid "Send mail using this address"
msgstr "Изпрати мейл, използвайки този адрес"
-#: chat.php:340
+#: index.php:352 chat.php:352
msgid "Send mail to this address"
msgstr "Изпрати мейл до този адрес"
-#: chat.php:341
+#: index.php:353 chat.php:353
msgid "Nickname regex"
msgstr "Регулярен израз за никове"
-#: chat.php:342
+#: index.php:354 chat.php:354
msgid "Password regex"
msgstr "Регулярен израз за пароли"
-#: chat.php:343
+#: index.php:355 chat.php:355
msgid "Link to external CSS file (on your own server)"
msgstr "Линк към външен CSS файл"
-#: chat.php:344
+#: index.php:356 chat.php:356
msgid "Meta description (best 50 - 160 characters for SEO)"
msgstr ""
-#: chat.php:345
+#: index.php:357 chat.php:357
+msgid "Show this text when a user's logout is delayed"
+msgstr ""
+
+#: index.php:358 chat.php:358
msgid "Prepend this text to system messages"
msgstr "Този текст предшества съобщенията от системата"
-#: chat.php:348 chat.php:728 chat.php:1225
+#: index.php:361 index.php:780 index.php:1282 chat.php:361 chat.php:780
+#: chat.php:1282
msgid "Change Guestaccess"
msgstr "Промени достъпа за гост"
-#: chat.php:349
+#: index.php:362 chat.php:362
msgid "Enable global Password"
msgstr ""
-#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433
+#: index.php:363 index.php:810 index.php:2474 index.php:2492 chat.php:363
+#: chat.php:810 chat.php:2474 chat.php:2492
msgid "Global Password:"
msgstr "Глобална парола:"
-#: chat.php:351 chat.php:819
+#: index.php:364 index.php:871 chat.php:364 chat.php:871
msgid "Captcha"
msgstr "Captcha"
-#: chat.php:352 chat.php:775 chat.php:835
+#: index.php:365 index.php:827 index.php:887 chat.php:365 chat.php:827
+#: chat.php:887
msgid "Only for guests"
msgstr "Само за гости"
-#: chat.php:353 chat.php:1220
+#: index.php:366 index.php:1277 chat.php:366 chat.php:1277
msgid "Topic"
msgstr "Тема"
-#: chat.php:354 chat.php:781
+#: index.php:367 index.php:833 chat.php:367 chat.php:833
msgid "Let guests register themselves"
msgstr "Разреши на гостите да се регистрират сами"
-#: chat.php:355 chat.php:862
+#: index.php:368 index.php:919 chat.php:368 chat.php:919
msgid "Default time zone"
msgstr "Часова зона по подрзбиране"
-#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259
+#: index.php:581 index.php:1157 index.php:4158 index.php:4341 chat.php:581
+#: chat.php:1157 chat.php:4158 chat.php:4341
msgid "Initial Setup"
msgstr "Първоначална инсталация"
-#: chat.php:588
+#: index.php:601 chat.php:601
#, php-format
msgid "Redirecting to: %s"
msgstr "Пренасочване към: %s"
-#: chat.php:595
+#: index.php:608 chat.php:608
#, php-format
msgid ""
"Dangerous non-http link requested, copy paste this link if you are really "
"sure: %s"
msgstr ""
-#: chat.php:597
+#: index.php:610 chat.php:610
#, php-format
msgid "Non-http link requested: %s"
msgstr "Заявен е не-http линк: %s"
-#: chat.php:599
+#: index.php:612 chat.php:612
#, php-format
msgid "If it's not working, try this one: %s"
msgstr "Ако не работи, опитай това: %s"
-#: chat.php:609
+#: index.php:622 chat.php:622
msgid "Access denied"
msgstr "Достъпът е забранен"
-#: chat.php:609
+#: index.php:622 chat.php:622
#, php-format
msgid "You are logged in as %s and don't have access to this section."
msgstr "В момента си логнат като %s и нямаш достъп до тази част."
-#: chat.php:611 chat.php:915 chat.php:1211 chat.php:1393
+#: index.php:624 index.php:972 index.php:1268 index.php:1450 chat.php:624
+#: chat.php:972 chat.php:1268 chat.php:1450
msgid "Logout"
msgstr "Изкарай"
-#: chat.php:636
+#: index.php:649 chat.php:649
msgid "Copy:"
msgstr "Препиши:"
-#: chat.php:724
+#: index.php:776 chat.php:776
msgid "Chat Setup"
msgstr "Инсталация на чата"
-#: chat.php:734 chat.php:1233
+#: index.php:786 index.php:1290 chat.php:786 chat.php:1290
msgid "Allow"
msgstr "Позволи"
-#: chat.php:739 chat.php:1238
+#: index.php:791 index.php:1295 chat.php:791 chat.php:1295
msgid "Allow with waitingroom"
msgstr "Позволи с чакалня"
-#: chat.php:744 chat.php:1243
+#: index.php:796 index.php:1300 chat.php:796 chat.php:1300
msgid "Require moderator approval"
msgstr "Изисквай одобрение от модератор"
-#: chat.php:749 chat.php:1248
+#: index.php:801 index.php:1305 chat.php:801 chat.php:1305
msgid "Only members"
msgstr "Само членове"
-#: chat.php:754 chat.php:1251
+#: index.php:806 index.php:1308 chat.php:806 chat.php:1308
msgid "Disable chat"
msgstr "Забрани чата"
-#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229
+#: index.php:817 index.php:839 index.php:894 index.php:953 index.php:2288
+#: chat.php:817 chat.php:839 chat.php:894 chat.php:953 chat.php:2288
msgid "Disabled"
msgstr "Забранено"
-#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219
+#: index.php:822 index.php:882 index.php:958 index.php:2278 chat.php:822
+#: chat.php:882 chat.php:958 chat.php:2278
msgid "Enabled"
msgstr "Разрешено"
-#: chat.php:792
+#: index.php:844 chat.php:844
msgid "As applicant"
msgstr "Като кандидат"
-#: chat.php:797
+#: index.php:849 chat.php:849
msgid "As member"
msgstr "Като член"
-#: chat.php:800
+#: index.php:852 chat.php:852
msgid "System messages"
msgstr "Системни съобщения"
-#: chat.php:822 chat.php:1053
+#: index.php:874 index.php:1110 chat.php:874 chat.php:1110
#, php-format
msgid ""
"The %s extension of PHP is required for this feature. Please install it "
@@ -452,292 +469,313 @@ msgstr ""
"Добавката %s за PHP е необходима за тази функционалност. Моля, първо я "
"инсталирайте."
-#: chat.php:847
+#: index.php:899 chat.php:899
msgid "Simple"
msgstr "Просто"
-#: chat.php:852
+#: index.php:904 chat.php:904
msgid "Moderate"
msgstr "Умерено"
-#: chat.php:857
+#: index.php:909 chat.php:909
+msgid "Hard"
+msgstr ""
+
+#: index.php:914 chat.php:914
msgid "Extreme"
msgstr "Екстремно"
-#: chat.php:906 chat.php:1548 chat.php:1610
+#: index.php:963 index.php:1605 index.php:1667 chat.php:963 chat.php:1605
+#: chat.php:1667
msgid "Apply"
msgstr "Приложи"
-#: chat.php:910 chat.php:1050
+#: index.php:967 index.php:1107 chat.php:967 chat.php:1107
msgid "Backup and restore"
msgstr "Бекъп и възстановяване"
-#: chat.php:912
+#: index.php:969 chat.php:969
msgid "Destroy chat"
msgstr "Унищожи чата"
-#: chat.php:1057 chat.php:1066
+#: index.php:1114 index.php:1123 chat.php:1114 chat.php:1123
msgid "Settings"
msgstr "Настройки"
-#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575
-#: chat.php:1622
+#: index.php:1115 index.php:1124 index.php:1269 index.php:1595 index.php:1632
+#: index.php:1679 chat.php:1115 chat.php:1124 chat.php:1269 chat.php:1595
+#: chat.php:1632 chat.php:1679
msgid "Filter"
msgstr "Филтър"
-#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538
+#: index.php:1116 index.php:1125 index.php:1325 index.php:2600 chat.php:1116
+#: chat.php:1125 chat.php:1325 chat.php:2600
msgid "Members"
msgstr "Членове"
-#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322
+#: index.php:1117 index.php:1126 index.php:2373 index.php:2381 chat.php:1117
+#: chat.php:1126 chat.php:2373 chat.php:2381
msgid "Notes"
msgstr "Бележки"
-#: chat.php:1061
+#: index.php:1118 chat.php:1118
msgid "Backup"
msgstr "Направи бекъп"
-#: chat.php:1070
+#: index.php:1127 chat.php:1127
msgid "Restore"
msgstr "Възстанови"
-#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260
+#: index.php:1131 index.php:1174 index.php:1212 index.php:1242 index.php:4342
+#: chat.php:1131 chat.php:1174 chat.php:1212 chat.php:1242 chat.php:4342
msgid "Go to the Setup-Page"
msgstr "Отиди към страницата за инсталация"
-#: chat.php:1082 chat.php:1091 chat.php:1949
+#: index.php:1139 index.php:1148 index.php:2006 chat.php:1139 chat.php:1148
+#: chat.php:2006
msgid "Are you sure?"
msgstr "Сигурен ли си?"
-#: chat.php:1083 chat.php:1092 chat.php:1956
+#: index.php:1140 index.php:1149 index.php:2013 chat.php:1140 chat.php:1149
+#: chat.php:2013
msgid "Yes"
msgstr "Да"
-#: chat.php:1084 chat.php:1093 chat.php:1963
+#: index.php:1141 index.php:1150 index.php:2020 chat.php:1141 chat.php:1150
+#: chat.php:2020
msgid "No"
msgstr "Не"
-#: chat.php:1101 chat.php:4259
+#: index.php:1158 index.php:4341 chat.php:1158 chat.php:4341
msgid "Superadmin Login"
msgstr ""
-#: chat.php:1102
+#: index.php:1159 chat.php:1159
msgid "Superadmin Nickname:"
msgstr "Потребителско име на супер-администратора:"
-#: chat.php:1103
+#: index.php:1160 chat.php:1160
msgid "Superadmin Password:"
msgstr "Парола на супер-администратора:"
-#: chat.php:1104
+#: index.php:1161 chat.php:1161
msgid "Confirm Password:"
msgstr "Потвърди паролата:"
-#: chat.php:1105
+#: index.php:1162 chat.php:1162
msgid "Initialise Chat"
msgstr "Инициализация на чата"
-#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439
+#: index.php:1163 index.php:1187 index.php:1213 index.php:2336 index.php:2498
+#: chat.php:1163 chat.php:1187 chat.php:1213 chat.php:2336 chat.php:2498
msgid "Change language:"
msgstr "Смени езика:"
-#: chat.php:1117
+#: index.php:1174 chat.php:1174
msgid "Database successfully updated!"
msgstr "Базата данни бе успешно обновена!"
-#: chat.php:1125 chat.php:1326 chat.php:2407
+#: index.php:1182 index.php:1383 index.php:2466 chat.php:1182 chat.php:1383
+#: chat.php:2466
msgid "Nickname:"
msgstr "Ник:"
-#: chat.php:1126 chat.php:1327 chat.php:2408
+#: index.php:1183 index.php:1384 index.php:2467 chat.php:1183 chat.php:1384
+#: chat.php:2467
msgid "Password:"
msgstr "Парола:"
-#: chat.php:1128
+#: index.php:1185 chat.php:1185
msgid "Login"
msgstr "Вход"
-#: chat.php:1129
+#: index.php:1186 chat.php:1186
msgid "Forgot login?"
msgstr ""
-#: chat.php:1142 chat.php:1306
+#: index.php:1199 index.php:1363 chat.php:1199 chat.php:1363
msgid "Reset password"
msgstr "Нулирай парола"
-#: chat.php:1150
+#: index.php:1207 chat.php:1207
#, php-format
msgid ""
"Successfully reset password for username %s. Please remove the password "
"reset define from the script again."
msgstr ""
-#: chat.php:1153
+#: index.php:1210 chat.php:1210
msgid ""
"Please modify the script and put the following at the bottom of it (change "
"the password). Then refresh this page: define('RESET_SUPERADMIN_PASSWORD', "
"'changeme');"
msgstr ""
-#: chat.php:1169 chat.php:1193 chat.php:1258 chat.php:1270 chat.php:1294
-#: chat.php:1308 chat.php:1316 chat.php:2145 chat.php:2153
+#: index.php:1226 index.php:1250 index.php:1315 index.php:1327 index.php:1351
+#: index.php:1365 index.php:1373 index.php:2204 index.php:2212 chat.php:1226
+#: chat.php:1250 chat.php:1315 chat.php:1327 chat.php:1351 chat.php:1365
+#: chat.php:1373 chat.php:2204 chat.php:2212
msgid "(choose)"
msgstr "(избери)"
-#: chat.php:1170
+#: index.php:1227 chat.php:1227
msgid "All guests"
msgstr "Всички гости"
-#: chat.php:1182
+#: index.php:1239 chat.php:1239
msgid "Administrative functions"
msgstr "Административни функции"
-#: chat.php:1188
+#: index.php:1245 chat.php:1245
msgid "Clean messages"
msgstr "Изчисти съобщенията"
-#: chat.php:1191
+#: index.php:1248 chat.php:1248
msgid "Whole room"
msgstr "Цялата стая"
-#: chat.php:1192
+#: index.php:1249 chat.php:1249
msgid "Selection"
msgstr "Избор"
-#: chat.php:1193
+#: index.php:1250 chat.php:1250
msgid "Following nickname:"
msgstr "Следния ник:"
-#: chat.php:1200
+#: index.php:1257 chat.php:1257
msgid "Clean"
msgstr "Изчисти"
-#: chat.php:1202
+#: index.php:1259 chat.php:1259
#, php-format
msgid "Kick Chatter (%d minutes)"
msgstr "Изгони потребител (%d минути)"
-#: chat.php:1204
+#: index.php:1261 chat.php:1261
msgid "Kickmessage:"
msgstr "Причина:"
-#: chat.php:1205
+#: index.php:1262 chat.php:1262
msgid "Purge messages"
msgstr "Заличи съобщенията"
-#: chat.php:1206 chat.php:1388 chat.php:1546 chat.php:1580 chat.php:1591
-#: chat.php:2042
+#: index.php:1263 index.php:1445 index.php:1603 index.php:1637 index.php:1648
+#: index.php:2101 chat.php:1263 chat.php:1445 chat.php:1603 chat.php:1637
+#: chat.php:1648 chat.php:2101
msgid "Kick"
msgstr "Изгони"
-#: chat.php:1208
+#: index.php:1265 chat.php:1265
msgid "Logout inactive Chatter"
msgstr "Изкарай неактивен потребител от чата"
-#: chat.php:1212
+#: index.php:1269 chat.php:1269
msgid "View active sessions"
msgstr "Виж активните сесии"
-#: chat.php:1212 chat.php:1603
+#: index.php:1269 index.php:1660 chat.php:1269 chat.php:1660
msgid "Linkfilter"
msgstr "Филтър за линкове"
-#: chat.php:1217
+#: index.php:1274 chat.php:1274
msgid "View"
msgstr "Виж"
-#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582
-#: chat.php:1626
+#: index.php:1280 index.php:1310 index.php:1361 index.php:1369 index.php:1639
+#: index.php:1683 chat.php:1280 chat.php:1310 chat.php:1361 chat.php:1369
+#: chat.php:1639 chat.php:1683
msgid "Change"
msgstr "Промени"
-#: chat.php:1256
+#: index.php:1313 chat.php:1313
msgid "Register applicant"
msgstr "Регистрирай кандидат"
-#: chat.php:1264 chat.php:1322 chat.php:1328
+#: index.php:1321 index.php:1379 index.php:1385 chat.php:1321 chat.php:1379
+#: chat.php:1385
msgid "Register"
msgstr "Регистрирай"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Delete from database"
msgstr "Изтрий от базата данни"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Deny access (!)"
msgstr "Забрани достъп (!)"
-#: chat.php:1296
+#: index.php:1353 chat.php:1353
msgid "Set to applicant (SG)"
msgstr "Направи кандидат (SG)"
-#: chat.php:1298
+#: index.php:1355 chat.php:1355
msgid "Set to regular member"
msgstr "Направи обикновен член"
-#: chat.php:1299
+#: index.php:1356 chat.php:1356
msgid "Set to moderator (M)"
msgstr "Направи модератор (M)"
-#: chat.php:1300
+#: index.php:1357 chat.php:1357
msgid "Set to supermod (SM)"
msgstr "Направи супер-модератор (SM)"
-#: chat.php:1302
+#: index.php:1359 chat.php:1359
msgid "Set to admin (A)"
msgstr "Направи администратор (A)"
-#: chat.php:1314
+#: index.php:1371 chat.php:1371
msgid "Register Guest"
msgstr "Регистрирай гост"
-#: chat.php:1324
+#: index.php:1381 chat.php:1381
msgid "Register new Member"
msgstr "Регистрирай нов член"
-#: chat.php:1332 chat.php:1408 chat.php:1595 chat.php:1636 chat.php:1710
-#: chat.php:1924
+#: index.php:1389 index.php:1465 index.php:1652 index.php:1693 index.php:1767
+#: index.php:1981 chat.php:1389 chat.php:1465 chat.php:1652 chat.php:1693
+#: chat.php:1767 chat.php:1981
msgid "Reload"
msgstr "Презареди"
-#: chat.php:1345
+#: index.php:1402 chat.php:1402
msgid "Active Sessions"
msgstr "Активни сесии"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "Nickname"
msgstr "Ник"
-#: chat.php:1346
+#: index.php:1403 chat.php:1403
msgid "Timeout in"
msgstr "Изтичане след"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "User-Agent"
msgstr "User-Agent"
-#: chat.php:1350
+#: index.php:1407 chat.php:1407
msgid "IP-Address"
msgstr "IP-адрес"
-#: chat.php:1351
+#: index.php:1408 chat.php:1408
msgid "Actions"
msgstr "Действия"
-#: chat.php:1393
+#: index.php:1450 chat.php:1450
msgid "Unban"
msgstr "Премахни бан"
-#: chat.php:1416
+#: index.php:1473 chat.php:1473
msgid "Incorrect regular expression!"
msgstr "Невалиден регулярен израз!"
-#: chat.php:1416 chat.php:1424
+#: index.php:1473 index.php:1481 chat.php:1473 chat.php:1481
#, php-format
msgid "Your match was as follows: %s"
msgstr "Съвпадението ти беше както следва: %s"
-#: chat.php:1424
+#: index.php:1481 chat.php:1481
msgid ""
"Your match was too long. You can use max. 255 characters. Try splitting it "
"up."
@@ -745,40 +783,43 @@ msgstr ""
"Съвпадението ти беше прекалено дълго. Може да използваш най-много 255 "
"символа. Опитай се да го разделиш."
-#: chat.php:1541 chat.php:1606
+#: index.php:1598 index.php:1663 chat.php:1598 chat.php:1663
msgid "Filter ID:"
msgstr "Филтър ID:"
-#: chat.php:1542 chat.php:1607
+#: index.php:1599 index.php:1664 chat.php:1599 chat.php:1664
msgid "Match"
msgstr "Съвпадение"
-#: chat.php:1543 chat.php:1608
+#: index.php:1600 index.php:1665 chat.php:1600 chat.php:1665
msgid "Replace"
msgstr "Замени"
-#: chat.php:1544 chat.php:1578 chat.php:1589
+#: index.php:1601 index.php:1635 index.php:1646 chat.php:1601 chat.php:1635
+#: chat.php:1646
msgid "Allow in PM"
msgstr "Разреши в ЛС"
-#: chat.php:1545 chat.php:1579 chat.php:1590 chat.php:1609 chat.php:1625
-#: chat.php:1633
+#: index.php:1602 index.php:1636 index.php:1647 index.php:1666 index.php:1682
+#: index.php:1690 chat.php:1602 chat.php:1636 chat.php:1647 chat.php:1666
+#: chat.php:1682 chat.php:1690
msgid "Regex"
msgstr "Регулярен израз"
-#: chat.php:1547 chat.php:1581 chat.php:1592
+#: index.php:1604 index.php:1638 index.php:1649 chat.php:1604 chat.php:1638
+#: chat.php:1649
msgid "Case sensitive"
msgstr "Чувствително към малки и големи букви"
-#: chat.php:1586 chat.php:1630
+#: index.php:1643 index.php:1687 chat.php:1643 chat.php:1687
msgid "New filter:"
msgstr "Нов филтър:"
-#: chat.php:1593 chat.php:1634
+#: index.php:1650 index.php:1691 chat.php:1650 chat.php:1691
msgid "Add"
msgstr "Добави"
-#: chat.php:1691
+#: index.php:1748 chat.php:1748
msgid ""
"This chat uses frames. Please enable frames in your browser or use a "
"suitable one!"
@@ -786,96 +827,99 @@ msgstr ""
"Този чат използва фреймове. Моля позволете фреймовете във вашия "
"браузър или използвайте друг, подходящ!"
-#: chat.php:1691 chat.php:2370 chat.php:2457
+#: index.php:1748 index.php:2429 index.php:2516 chat.php:1748 chat.php:2429
+#: chat.php:2516
msgid "Back to the login page."
msgstr "Обратно към страницата за вход."
-#: chat.php:1709
+#: index.php:1766 chat.php:1766
msgid "Bottom"
msgstr "Най-долу"
-#: chat.php:1710
+#: index.php:1767 chat.php:1767
msgid "Manual refresh required"
msgstr "Необходимо ръчно опресняване"
-#: chat.php:1726
+#: index.php:1783 chat.php:1783
msgid "Top"
msgstr "Горе"
-#: chat.php:1734 chat.php:1940 chat.php:1942
+#: index.php:1791 index.php:1997 index.php:1999 chat.php:1791 chat.php:1997
+#: chat.php:1999
msgid "Delete selected messages"
msgstr "Изтрий избраните съобщения"
-#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281
+#: index.php:1818 index.php:1945 index.php:2160 index.php:2340 chat.php:1818
+#: chat.php:1945 chat.php:2160 chat.php:2340
msgid "Back to the chat."
msgstr "Обратно към чата."
-#: chat.php:1774 chat.php:1791
+#: index.php:1831 index.php:1848 chat.php:1831 chat.php:1848
msgid "Admin notes"
msgstr "Администраторски бележкиАдминистраторски бележки"
-#: chat.php:1777 chat.php:1788
+#: index.php:1834 index.php:1845 chat.php:1834 chat.php:1845
msgid "Staff notes"
msgstr "Бележки на екипа"
-#: chat.php:1811
+#: index.php:1868 chat.php:1868
msgid "Notes saved!"
msgstr "Бележките са запазени!"
-#: chat.php:1835 chat.php:2122
+#: index.php:1892 index.php:2181 chat.php:1892 chat.php:2181
#, php-format
msgid "Last edited by %1$s at %2$s"
msgstr "Последна редакция от %1$s на %2$s"
-#: chat.php:1848
+#: index.php:1905 chat.php:1905
msgid "Save notes"
msgstr "Запази бележките"
-#: chat.php:1850
+#: index.php:1907 chat.php:1907
msgid "Revisions:"
msgstr "Версии:"
-#: chat.php:1853
+#: index.php:1910 chat.php:1910
msgid "Older"
msgstr "По-стари"
-#: chat.php:1857
+#: index.php:1914 chat.php:1914
msgid "Newer"
msgstr "По-нови"
-#: chat.php:1868 chat.php:1914
+#: index.php:1925 index.php:1971 chat.php:1925 chat.php:1971
msgid "Waiting room"
msgstr "Чакалня"
-#: chat.php:1880
+#: index.php:1937 chat.php:1937
msgid "Allow checked"
msgstr "Допусни избраните"
-#: chat.php:1881
+#: index.php:1938 chat.php:1938
msgid "Allow all"
msgstr "Допусни всички"
-#: chat.php:1882
+#: index.php:1939 chat.php:1939
msgid "Deny checked"
msgstr "Не допускай избраните"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Deny all"
msgstr "Не допускай никого"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Send message to denied:"
msgstr "Изпрати съобщение до недопуснатите:"
-#: chat.php:1884
+#: index.php:1941 chat.php:1941
msgid "Submit"
msgstr "Изпрати"
-#: chat.php:1886
+#: index.php:1943 chat.php:1943
msgid "No more entry requests to approve."
msgstr "Няма повече заявки за присъединяване, чакащи одобрение."
-#: chat.php:1916
+#: index.php:1973 chat.php:1973
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat in %2$d "
@@ -884,7 +928,7 @@ msgstr ""
"Добре дошъл, %1$s, влизането ти беше отложено, ще можеш да влезеш в чата "
"след %2$d секунди."
-#: chat.php:1918
+#: index.php:1975 chat.php:1975
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat as soon, "
@@ -893,7 +937,7 @@ msgstr ""
"Добре дошъл, %1$s, влизането ти беше отложено, ще можеш да влезеш в чата "
"след като бъдеш одобрен от модератор."
-#: chat.php:1921
+#: index.php:1978 chat.php:1978
#, php-format
msgid ""
"If this page doesn't refresh every %d seconds, use the button below to "
@@ -902,64 +946,69 @@ msgstr ""
"Ако тази страница не се презарежда сама на всеки %d секунди, моля "
"използвайте бутона за презареждане по-долу за да я презаредите ръчно!"
-#: chat.php:1926 chat.php:2339
+#: index.php:1983 index.php:2398 chat.php:1983 chat.php:2398
msgid "Exit Chat"
msgstr "Изход от чата"
-#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430
+#: index.php:1986 index.php:2133 index.php:2144 index.php:2489 chat.php:1986
+#: chat.php:2133 chat.php:2144 chat.php:2489
msgid "Rules"
msgstr "Правила"
-#: chat.php:1985
+#: index.php:2042 chat.php:2042
msgid "Send to"
msgstr "Изпрати до"
-#: chat.php:1990
+#: index.php:2047 chat.php:2047
msgid "All chatters"
msgstr "Всички в чата"
-#: chat.php:1996
+#: index.php:2053 chat.php:2053
msgid "Members only"
msgstr "Само до членовете"
-#: chat.php:2003
+#: index.php:2060 chat.php:2060
msgid "Staff only"
msgstr "Само до екипа"
-#: chat.php:2010
+#: index.php:2067 chat.php:2067
msgid "Admin only"
msgstr "Само до админ"
-#: chat.php:2019
+#: index.php:2076 chat.php:2076
msgid "(offline)"
msgstr "(офлайн)"
-#: chat.php:2043
+#: index.php:2078 chat.php:2078
+msgid "(logging out)"
+msgstr ""
+
+#: index.php:2102 chat.php:2102
msgid "Also purge messages"
msgstr "Също заличи съобщенията"
-#: chat.php:2050
+#: index.php:2109 chat.php:2109
msgid "Delete last message"
msgstr "Изтрий последното съобщение"
-#: chat.php:2055
+#: index.php:2114 chat.php:2114
msgid "Delete all messages"
msgstr "Изтрий всички съобщения"
-#: chat.php:2057
+#: index.php:2116 chat.php:2116
msgid "Switch to single-line"
msgstr "Превключи на многоредово поле"
-#: chat.php:2059
+#: index.php:2118 chat.php:2118
msgid "Switch to multi-line"
msgstr "Превключи на едноредово поле"
-#: chat.php:2070
+#: index.php:2129 chat.php:2129
#, php-format
msgid "Welcome %s!"
msgstr "Добре дошъл, %s!"
-#: chat.php:2071
+#: index.php:2130 chat.php:2130
#, php-format
msgid ""
"If this frame does not reload in %d seconds, you'll have to enable automatic "
@@ -977,11 +1026,11 @@ msgstr ""
"презареждане на ниво сървър/прокси) да използвате бутона за ръчно "
"презареждане на вашия браузър."
-#: chat.php:2087
+#: index.php:2146 chat.php:2146
msgid "Help"
msgstr "Помощ"
-#: chat.php:2088
+#: index.php:2147 chat.php:2147
msgid ""
"All functions should be pretty much self-explaining, just use the buttons. "
"In your profile you can adjust the refresh rate and font colour, as well as "
@@ -994,7 +1043,7 @@ msgstr ""
"u> Това е чат, така че ако спреш да чатиш, след известно време ще бъдеш "
"амтоматично изкаран от чата."
-#: chat.php:2090
+#: index.php:2149 chat.php:2149
msgid ""
"If you want to embed an image in your post, simply put [img] in front of "
"your image URL. Example: [img]http://example.com/images/file.jpg will embed "
@@ -1004,7 +1053,7 @@ msgstr ""
"пред линка с изображението. Пример: [img]http://example.com/images/file.jpg "
"ще вгради изображението в поста ти."
-#: chat.php:2093
+#: index.php:2152 chat.php:2152
msgid ""
"Members: You'll have some more options in your profile. You can adjust your "
"font face, change your password anytime and of course you can delete your "
@@ -1014,7 +1063,7 @@ msgstr ""
"фона, да променяте паролата си по всяко време, и разбира се, да изтриете "
"акаунта си."
-#: chat.php:2095
+#: index.php:2154 chat.php:2154
msgid ""
"Moderators: Notice the Admin-button at the bottom. It'll bring up a page "
"where you can clean the room, kick chatters, view all active sessions and "
@@ -1025,7 +1074,7 @@ msgstr ""
"да преглеждате всички активни сесии и да забраните напълно достъпа на гости, "
"ако е необходимо."
-#: chat.php:2097
+#: index.php:2156 chat.php:2156
msgid ""
"Admins: You'll be furthermore able to register guests, edit members and "
"register new nicknames."
@@ -1033,226 +1082,232 @@ msgstr ""
"Администратори: Вие ще можете допълнително да регистрирате гости, да "
"редактирате профили на членове и да регистрирате нови никове."
-#: chat.php:2135
+#: index.php:2194 chat.php:2194
msgid "Your Profile"
msgstr "Твоят профил"
-#: chat.php:2144
+#: index.php:2203 chat.php:2203
msgid "Don't ignore anymore"
msgstr "Спри да игнорираш"
-#: chat.php:2152
+#: index.php:2211 chat.php:2211
msgid "Ignore"
msgstr "Игнорирай"
-#: chat.php:2163
+#: index.php:2222 chat.php:2222
#, php-format
msgid "Refresh rate (%1$d-%2$d seconds)"
msgstr "Честота на опресняване (%1$d-%2$d секунди)"
-#: chat.php:2167 chat.php:2170
+#: index.php:2226 index.php:2229 chat.php:2226 chat.php:2229
msgid "View examples"
msgstr "Виж примери"
-#: chat.php:2174
+#: index.php:2233 chat.php:2233
msgid "Fontface"
msgstr "Облик на шрифта"
-#: chat.php:2175
+#: index.php:2234 chat.php:2234
msgid "Room Default"
msgstr "По подразбиране за стаята"
-#: chat.php:2188
+#: index.php:2247 chat.php:2247
msgid "Bold"
msgstr "Получер"
-#: chat.php:2192
+#: index.php:2251 chat.php:2251
msgid "Italic"
msgstr "Курсив"
-#: chat.php:2196
+#: index.php:2255 chat.php:2255
msgid "Small"
msgstr "Малък"
-#: chat.php:2199
+#: index.php:2258 chat.php:2258
msgid "Example for your chosen font"
msgstr "Пример за избрания шрифт"
-#: chat.php:2203
+#: index.php:2262 chat.php:2262
msgid "Autoscroll (for old browsers or top-to-bottom sort)."
msgstr ""
"Автоматично скролиране (за старите браузъри или сортиране от горе надолу)."
-#: chat.php:2234
+#: index.php:2293 chat.php:2293
msgid "For everyone"
msgstr "За всички"
-#: chat.php:2239
+#: index.php:2298 chat.php:2298
msgid "For members only"
msgstr "Само за членове"
-#: chat.php:2244
+#: index.php:2303 chat.php:2303
msgid "For staff only"
msgstr "Само за екипа"
-#: chat.php:2248
+#: index.php:2307 chat.php:2307
msgid "Time zone"
msgstr "Часова зона"
-#: chat.php:2261
+#: index.php:2320 chat.php:2320
msgid "Change Password"
msgstr "Промени парола"
-#: chat.php:2263
+#: index.php:2322 chat.php:2322
msgid "Old password:"
msgstr "Стара парола:"
-#: chat.php:2264
+#: index.php:2323 chat.php:2323
msgid "New password:"
msgstr "Нова парола:"
-#: chat.php:2265
+#: index.php:2324 chat.php:2324
msgid "Confirm new password:"
msgstr "Потвърди новата парола:"
-#: chat.php:2268
+#: index.php:2327 chat.php:2327
msgid "Change Nickname"
msgstr "Промени ник"
-#: chat.php:2269
+#: index.php:2328 chat.php:2328
msgid "New nickname:"
msgstr "Нов ник:"
-#: chat.php:2273
+#: index.php:2332 chat.php:2332
msgid "Save changes"
msgstr "Запази промените"
-#: chat.php:2275
+#: index.php:2334 chat.php:2334
msgid "Delete account"
msgstr "Изтрий акаунт"
-#: chat.php:2301
+#: index.php:2360 chat.php:2360
msgid "Reload Post Box"
msgstr "Презареди пощенската кутия"
-#: chat.php:2304
+#: index.php:2363 chat.php:2363
msgid "Reload Messages"
msgstr "Презареди съобщенията"
-#: chat.php:2307
+#: index.php:2366 chat.php:2366
msgid "Profile"
msgstr "Профил"
-#: chat.php:2311 chat.php:2528
+#: index.php:2370 index.php:2590 chat.php:2370 chat.php:2590
msgid "Admin"
msgstr "Администрация"
-#: chat.php:2318
+#: index.php:2377 chat.php:2377
msgid "View public notes"
msgstr "Чета́ обще́ствен Бележки"
-#: chat.php:2325
+#: index.php:2384 chat.php:2384
msgid "Clone"
msgstr "Клонирай"
-#: chat.php:2334
+#: index.php:2393 chat.php:2393
msgid "Rearrange"
msgstr "Преподредба"
-#: chat.php:2337
+#: index.php:2396 chat.php:2396
msgid "Rules & Help"
msgstr "Правила & Помощ"
-#: chat.php:2358 chat.php:2362
+#: index.php:2417 index.php:2421 chat.php:2417 chat.php:2421
msgid "File not found!"
msgstr "Файлът не е намерен!"
-#: chat.php:2370
+#: index.php:2429 chat.php:2429
#, php-format
msgid "Bye %s, visit again soon!"
msgstr "Чао, драги %s, скоро те очакваме отново!"
-#: chat.php:2377
+#: index.php:2436 chat.php:2436
msgid "Colourtable"
msgstr "Таблица с цветове"
-#: chat.php:2388
+#: index.php:2447 chat.php:2447
msgid "Back to your Profile"
msgstr "Обратно в твоя профил"
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "Repeat password to register"
msgstr "Повтори паролата за да се регистрираш"
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "(optional)"
msgstr "(опционално)"
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Guests, choose a colour:"
msgstr "Гости, изберете цвят:"
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Random Colour"
msgstr "Произволен цвят"
-#: chat.php:2421 chat.php:2435 chat.php:2569
+#: index.php:2480 index.php:2494 index.php:2631 chat.php:2480 chat.php:2494
+#: chat.php:2631
msgid "Sorry, currently members only!"
msgstr "Съжаляваме, но в момента се допускат само членове!"
-#: chat.php:2423 chat.php:2437
+#: index.php:2482 index.php:2496 chat.php:2482 chat.php:2496
msgid "Enter Chat"
msgstr "Влез в чата"
-#: chat.php:2457
+#: index.php:2516 chat.php:2516
#, php-format
msgid "Error: %s"
msgstr "Грешка: %s"
-#: chat.php:2467
+#: index.php:2526 chat.php:2526
msgid "Fatal error"
msgstr "Фатална грешка"
-#: chat.php:2470
+#: index.php:2529 chat.php:2529
#, php-format
msgid "Fatal error: %s"
msgstr "Фатална грешка: %s"
-#: chat.php:2482 chat.php:2693
+#: index.php:2541 index.php:2756 chat.php:2541 chat.php:2756
msgid "Failed login attempt(s)"
msgstr "Неуспешен опит за влизане"
-#: chat.php:2489
+#: index.php:2548 chat.php:2548
#, php-format
msgid "Read %d messages in your inbox"
msgstr "Прочети %d съобщения в пощенската ти кутия"
-#: chat.php:2498
+#: index.php:2557 chat.php:2557
#, php-format
msgid "%d new guests to approve"
msgstr "%d нови гости чакат одобрение"
-#: chat.php:2530
+#: index.php:2577 chat.php:2577
+msgid "logging out"
+msgstr ""
+
+#: index.php:2592 chat.php:2592
msgid "Admin:"
msgstr "Администрация:"
-#: chat.php:2533
+#: index.php:2595 chat.php:2595
msgid "Staff"
msgstr "Екипа"
-#: chat.php:2535
+#: index.php:2597 chat.php:2597
msgid "Staff:"
msgstr "Екипа:"
-#: chat.php:2540
+#: index.php:2602 chat.php:2602
msgid "Members:"
msgstr "Членове:"
-#: chat.php:2542
+#: index.php:2604 chat.php:2604
msgid "Guests"
msgstr "Гости"
-#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092
+#: index.php:2625 index.php:3063 index.php:3267 index.php:4172 chat.php:2625
+#: chat.php:3063 chat.php:3267 chat.php:4172
#, php-format
msgid ""
"Invalid nickname (%1$d characters maximum and has to match the regular "
@@ -1261,7 +1316,8 @@ msgstr ""
"Невалиден ник (Максимум %1$d символа и трябва да съвпада с регулярния израз "
"\"%2$s\")"
-#: chat.php:2566 chat.php:2996 chat.php:3162 chat.php:4094
+#: index.php:2628 index.php:3066 index.php:3232 index.php:4174 chat.php:2628
+#: chat.php:3066 chat.php:3232 chat.php:4174
#, php-format
msgid ""
"Invalid password (At least %1$d characters and has to match the regular "
@@ -1270,248 +1326,256 @@ msgstr ""
"Невалидна парола (Най-малко %1$d символа и трябва да съвпада с регулярния "
"израз \"%2$s\")"
-#: chat.php:2574 chat.php:2739
+#: index.php:2636 index.php:2806 chat.php:2636 chat.php:2806
msgid "Wrong global Password!"
msgstr "Грешна глобална парола!"
-#: chat.php:2591 chat.php:2612
+#: index.php:2654 index.php:2675 chat.php:2654 chat.php:2675
msgid "Wrong Captcha"
msgstr "Грешна Captcha"
-#: chat.php:2596 chat.php:2604
+#: index.php:2659 index.php:2667 chat.php:2659 chat.php:2667
msgid "Captcha already used or timed out."
msgstr "Captcha-та е вече използвана или е изтекла."
-#: chat.php:2652
+#: index.php:2715 chat.php:2715
msgid "A user with this nickname is already logged in."
msgstr "Потребителят с това потребителско име е вече логнат."
-#: chat.php:2652 chat.php:2933 chat.php:3176
+#: index.php:2715 index.php:3003 index.php:3246 chat.php:2715 chat.php:3003
+#: chat.php:3246
msgid "Wrong Password!"
msgstr "Грешна парола!"
-#: chat.php:2696
+#: index.php:2759 chat.php:2759
msgid "Dismiss"
msgstr "Призна"
-#: chat.php:2747 chat.php:3171 chat.php:4096
+#: index.php:2814 index.php:3241 index.php:4176 chat.php:2814 chat.php:3241
+#: chat.php:4176
msgid "Password confirmation does not match!"
msgstr "Полето за потвърждение на паролата не съвпада!"
-#: chat.php:2859
+#: index.php:2854 chat.php:2854
+#, fuzzy
+#| msgid "Kickmessage:"
+msgid "no kick message"
+msgstr "Причина:"
+
+#: index.php:2929 chat.php:2929
msgid "Invalid/expired session"
msgstr "Невалидна/изтекла сесия"
-#: chat.php:2875 chat.php:3412
+#: index.php:2945 index.php:3483 chat.php:2945 chat.php:3483
msgid "You have been kicked!"
msgstr "Ти беше изгонен от чата!"
-#: chat.php:2885
+#: index.php:2955 chat.php:2955
#, php-format
msgid "Currently %d chatter(s) in room:"
msgstr "В стаята има %d потребители:"
-#: chat.php:2933
+#: index.php:3003 chat.php:3003
msgid "This nickname is a registered member."
msgstr "Този ник е на регистриран член."
-#: chat.php:2960 chat.php:3001
+#: index.php:3030 index.php:3071 chat.php:3030 chat.php:3071
#, php-format
msgid "%s is already registered."
msgstr "%s е вече регистриран."
-#: chat.php:2969 chat.php:2990
+#: index.php:3039 index.php:3060 chat.php:3039 chat.php:3060
#, php-format
msgid "Can't register %s"
msgstr "Не мога да регистрирам %s"
-#: chat.php:2978 chat.php:3023
+#: index.php:3048 index.php:3093 chat.php:3048 chat.php:3093
#, php-format
msgid "%s successfully registered."
msgstr "%s е успешно регистриран."
-#: chat.php:3031 chat.php:3036
+#: index.php:3101 index.php:3106 chat.php:3101 chat.php:3106
#, php-format
msgid "Can't change status of %s"
msgstr "Не мога да променя статуса на %s"
-#: chat.php:3047
+#: index.php:3117 chat.php:3117
#, php-format
msgid "%s successfully deleted from database."
msgstr "%s е успешно изтрит от базата данни."
-#: chat.php:3056
+#: index.php:3126 chat.php:3126
#, php-format
msgid "Status of %s successfully changed."
msgstr "Статусът за %s бе успешно променен."
-#: chat.php:3073
+#: index.php:3143 chat.php:3143
#, php-format
msgid "Successfully reset password for %s"
msgstr ""
-#: chat.php:3075
+#: index.php:3145 chat.php:3145
#, php-format
msgid "Can't reset password for %s"
msgstr ""
-#: chat.php:3190
+#: index.php:3260 chat.php:3260
msgid "Your profile has successfully been saved."
msgstr "Профилът ти беше успешно съхранен."
-#: chat.php:3202
+#: index.php:3272 chat.php:3272
msgid "Nickname is already taken"
msgstr "Този ник се използва от друг"
-#: chat.php:3714
+#: index.php:3785 chat.php:3785
msgid "system message"
msgstr "съобщение от системата"
-#: chat.php:3921
+#: index.php:4001 chat.php:4001
msgid "Beige"
msgstr "Бежово"
-#: chat.php:3922
+#: index.php:4002 chat.php:4002
msgid "Black"
msgstr "Черно"
-#: chat.php:3923
+#: index.php:4003 chat.php:4003
msgid "Blue"
msgstr "Синьо"
-#: chat.php:3924
+#: index.php:4004 chat.php:4004
msgid "Blue violet"
msgstr "Виолетово-синьо"
-#: chat.php:3925
+#: index.php:4005 chat.php:4005
msgid "Brown"
msgstr "Кафяво"
-#: chat.php:3926
+#: index.php:4006 chat.php:4006
msgid "Cyan"
msgstr "Зелено-синьо"
-#: chat.php:3927
+#: index.php:4007 chat.php:4007
msgid "Dark blue"
msgstr "Тъмносиньо"
-#: chat.php:3928
+#: index.php:4008 chat.php:4008
msgid "Dark green"
msgstr "Тъмнозелено"
-#: chat.php:3929
+#: index.php:4009 chat.php:4009
msgid "Dark red"
msgstr "Тъмночервено"
-#: chat.php:3930
+#: index.php:4010 chat.php:4010
msgid "Dark violet"
msgstr "Тъмновиолетово"
-#: chat.php:3931
+#: index.php:4011 chat.php:4011
msgid "Sky blue"
msgstr "Небесно синьо"
-#: chat.php:3932
+#: index.php:4012 chat.php:4012
msgid "Gold"
msgstr "Златно"
-#: chat.php:3933
+#: index.php:4013 chat.php:4013
msgid "Grey"
msgstr "Сиво"
-#: chat.php:3934
+#: index.php:4014 chat.php:4014
msgid "Green"
msgstr "Зелено"
-#: chat.php:3935
+#: index.php:4015 chat.php:4015
msgid "Hot pink"
msgstr "Топло розово"
-#: chat.php:3936
+#: index.php:4016 chat.php:4016
msgid "Indigo"
msgstr "Индиго"
-#: chat.php:3937
+#: index.php:4017 chat.php:4017
msgid "Light blue"
msgstr "Светлосиньо"
-#: chat.php:3938
+#: index.php:4018 chat.php:4018
msgid "Light green"
msgstr "Светлозелено"
-#: chat.php:3939
+#: index.php:4019 chat.php:4019
msgid "Lime green"
msgstr "Липовозелено"
-#: chat.php:3940
+#: index.php:4020 chat.php:4020
msgid "Magenta"
msgstr "Лилаво-червено (Маджента)"
-#: chat.php:3941
+#: index.php:4021 chat.php:4021
msgid "Olive"
msgstr "Тъмно жълто-зелено"
-#: chat.php:3942
+#: index.php:4022 chat.php:4022
msgid "Orange"
msgstr "Оранжево"
-#: chat.php:3943
+#: index.php:4023 chat.php:4023
msgid "Orange red"
msgstr "Оранжево-червено"
-#: chat.php:3944
+#: index.php:4024 chat.php:4024
msgid "Purple"
msgstr "Лилаво"
-#: chat.php:3945
+#: index.php:4025 chat.php:4025
msgid "Red"
msgstr "Червено"
-#: chat.php:3946
+#: index.php:4026 chat.php:4026
msgid "Royal blue"
msgstr "Кралско синьо"
-#: chat.php:3947
+#: index.php:4027 chat.php:4027
msgid "Sea green"
msgstr "Морско зелено"
-#: chat.php:3948
+#: index.php:4028 chat.php:4028
msgid "Sienna"
msgstr "Златисто-жълто (Охра)"
-#: chat.php:3949
+#: index.php:4029 chat.php:4029
msgid "Silver"
msgstr "Сребърно"
-#: chat.php:3950
+#: index.php:4030 chat.php:4030
msgid "Tan"
msgstr "Жълто-кафяво"
-#: chat.php:3951
+#: index.php:4031 chat.php:4031
msgid "Teal"
msgstr "Синьо-зелено"
-#: chat.php:3952
+#: index.php:4032 chat.php:4032
msgid "Violet"
msgstr "Виолетово"
-#: chat.php:3953
+#: index.php:4033 chat.php:4033
msgid "White"
msgstr "Бяло"
-#: chat.php:3954
+#: index.php:4034 chat.php:4034
msgid "Yellow"
msgstr "Жълто"
-#: chat.php:3955
+#: index.php:4035 chat.php:4035
msgid "Yellow green"
msgstr "Жълто-зелено"
-#: chat.php:4077
+#: index.php:4157 chat.php:4157
msgid "Successfully destroyed chat"
msgstr "Успешно унищожи чата"
-#: chat.php:4086
+#: index.php:4166 chat.php:4166
msgid ""
"Database tables already exist! To continue, you have to delete these tables "
"manually first."
@@ -1519,98 +1583,103 @@ msgstr ""
"Таблиците в базата данни вече съществуват! За да продължите, моля първо "
"изтрийте тези таблици ръчно."
-#: chat.php:4089
+#: index.php:4169 chat.php:4169
msgid "A Superadmin already exists!"
msgstr "Вече съществува супер-администратор!"
-#: chat.php:4182 chat.php:4369
+#: index.php:4263 index.php:4451 chat.php:4263 chat.php:4451
#, php-format
msgid "%s - "
msgstr "%s - "
-#: chat.php:4183 chat.php:4369
+#: index.php:4264 index.php:4451 chat.php:4264 chat.php:4451
#, php-format
msgid "[M] %s - "
msgstr "[М] %s - "
-#: chat.php:4184 chat.php:4369
+#: index.php:4265 index.php:4451 chat.php:4265 chat.php:4451
#, php-format
msgid "[Staff] %s - "
msgstr "[Екип] %s - "
-#: chat.php:4185 chat.php:4369
+#: index.php:4266 index.php:4451 chat.php:4266 chat.php:4451
#, php-format
msgid "[Admin] %s - "
msgstr "[Админ] %s - "
-#: chat.php:4186 chat.php:4369
+#: index.php:4267 index.php:4451 chat.php:4267 chat.php:4451
#, php-format
msgid "[%1$s to %2$s] - "
msgstr "[%1$s до %2$s] - "
-#: chat.php:4187
+#: index.php:4268 chat.php:4268
#, php-format
msgid "%s entered the chat."
msgstr "%s влезе в чата."
-#: chat.php:4188
+#: index.php:4269 chat.php:4269
#, php-format
msgid "%s left the chat."
msgstr "%s напусна чата."
-#: chat.php:4189
+#: index.php:4270 chat.php:4270
#, php-format
msgid "%s is now a registered member."
msgstr "%s вече е регистриран член."
-#: chat.php:4190
+#: index.php:4271 chat.php:4271
#, php-format
msgid "%s is now a registered applicant."
msgstr "%s вече е регистриран кандидат."
-#: chat.php:4191
-#, php-format
-msgid "%s has been kicked."
+#: index.php:4272 chat.php:4272
+#, fuzzy, php-format
+#| msgid "%s has been kicked."
+msgid "%1$s has been kicked: %2$s"
msgstr "%s беше изгонен."
-#: chat.php:4192
-#, php-format
-msgid "%s have been kicked."
+#: index.php:4273 chat.php:4273
+#, fuzzy, php-format
+#| msgid "%s have been kicked."
+msgid "%1$s have been kicked: %2$s"
msgstr "%s бяха изгонени."
-#: chat.php:4193
-msgid "All guests have been kicked."
+#: index.php:4274 chat.php:4274
+#, fuzzy, php-format
+#| msgid "All guests have been kicked."
+msgid "All guests have been kicked: %1$s"
msgstr "Всички гости бяха изгонени."
-#: chat.php:4194
+#: index.php:4275 chat.php:4275
#, php-format
msgid "%s has been cleaned."
msgstr "%s беше почистена."
-#: chat.php:4202 chat.php:4396
+#: index.php:4283 index.php:4478 chat.php:4283 chat.php:4478
msgid "Temporarily disabled"
msgstr "Временно забранен"
-#: chat.php:4218 chat.php:4594
+#: index.php:4299 index.php:4676 chat.php:4299 chat.php:4676
msgid "A chat community"
msgstr ""
-#: chat.php:4256
+#: index.php:4338 chat.php:4338
msgid "Successfully registered!"
msgstr "Успешна регистрация!"
-#: chat.php:4522 chat.php:4721 chat.php:4728
+#: index.php:4604 index.php:4807 index.php:4814 chat.php:4604 chat.php:4807
+#: chat.php:4814
msgid "No connection to database!"
msgstr "Няма връзка с базата данни!"
-#: chat.php:4531
+#: index.php:4613 chat.php:4613
msgid ""
"Note: Default CSS is now hardcoded and can be removed from the CSS setting"
msgstr ""
"Забележка: CSS-ът по подразбиране е вече вграден в кода и може да бъде "
"премахнат от CSS настройките"
-#: chat.php:4611
+#: index.php:4697 chat.php:4697
#, php-format
msgid ""
"The %s extension of PHP is required for the encryption feature. Please "
@@ -1619,7 +1688,8 @@ msgstr ""
"Добавката %s за PHP е необходима the криптиращата функционалност. Моля, "
"първо я инсталирайте или върнете настройките за криптиране обратно на false."
-#: chat.php:4684 chat.php:4689 chat.php:4694
+#: index.php:4770 index.php:4775 index.php:4780 chat.php:4770 chat.php:4775
+#: chat.php:4780
#, php-format
msgid ""
"The %s extension of PHP is required for the selected database driver. Please "
@@ -1628,7 +1698,8 @@ msgstr ""
"Добавката %s за PHP е необходима за избрния драйвер за базата данни. Моля, "
"първо я инсталирайте."
-#: chat.php:4707 chat.php:4715 chat.php:4719 chat.php:4726
+#: index.php:4793 index.php:4801 index.php:4805 index.php:4812 chat.php:4793
+#: chat.php:4801 chat.php:4805 chat.php:4812
msgid ""
"No connection to database, please create a database and edit the script to "
"use the correct database with given username and password!"
@@ -1636,7 +1707,7 @@ msgstr ""
"Няма връзка с базата данни, моля създайте база данни и редактирайте скрипта "
"да използва правилната база данни със съответния потребител и парола!"
-#: chat.php:4734
+#: index.php:4820 chat.php:4820
msgid ""
"The memcached extension of PHP is required for the caching feature. Please "
"install it first or set the memcached setting back to false."
diff --git a/locale/cs_CZ/LC_MESSAGES/le-chat-php.po b/locale/cs_CZ/LC_MESSAGES/le-chat-php.po
index b886411..f4c9b21 100644
--- a/locale/cs_CZ/LC_MESSAGES/le-chat-php.po
+++ b/locale/cs_CZ/LC_MESSAGES/le-chat-php.po
@@ -7,11 +7,11 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-01-18 21:32+0100\n"
+"POT-Creation-Date: 2025-03-29 17:02+0100\n"
"PO-Revision-Date: 2023-02-13 20:19+0000\n"
"Last-Translator: Zdeněk Grůza \n"
-"Language-Team: Czech \n"
+"Language-Team: Czech \n"
"Language: cs_CZ\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,265 +19,271 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Weblate 4.15.2\n"
-#: chat.php:261
+#: index.php:272 chat.php:272
msgid "Enable applicants"
msgstr "Povolit žadatele"
-#: chat.php:262
+#: index.php:273 index.php:2267 chat.php:273 chat.php:2267
msgid "Embed images"
msgstr "Embed obzrázky"
-#: chat.php:263 chat.php:2202
+#: index.php:274 index.php:2261 chat.php:274 chat.php:2261
msgid "Show Timestamps"
msgstr "Zobrazit časové značky"
-#: chat.php:264
+#: index.php:275 chat.php:275
msgid "Show session-IP"
msgstr "Zobrazit IP relace"
-#: chat.php:265
+#: index.php:276 chat.php:276
msgid "Members can kick, if no moderator is present"
msgstr "Členové mohou vyhazovat, pokud není přítomen žádný moderátor"
-#: chat.php:266
+#: index.php:277 chat.php:277
msgid "Members can always kick"
msgstr "Členové mohou vždy vyhazovat"
-#: chat.php:267
+#: index.php:278 chat.php:278
msgid "Force redirection"
msgstr "Vynucené přesměrování"
-#: chat.php:268
+#: index.php:279 index.php:2270 chat.php:279 chat.php:2270
msgid "Incognito mode"
msgstr "Režim inkognito"
-#: chat.php:269
+#: index.php:280 chat.php:280
msgid "Send mail on new public message"
msgstr "Odeslat mail na novou veřejnou zprávu"
-#: chat.php:270
+#: index.php:281 chat.php:281
msgid "Fallback to waiting room, if no moderator is present to approve guests"
msgstr ""
"Zpět do čekaí místnosti, pokud není přítomen žádný moderátor, který "
"schvaluje hosty"
-#: chat.php:271
+#: index.php:282 chat.php:282
msgid "Disable private messages"
msgstr "Zakázat soukromé zprávy"
-#: chat.php:272 chat.php:2223
+#: index.php:283 index.php:2282 chat.php:283 chat.php:2282
msgid "Enable offline inbox"
msgstr "Povolit offline doručenou poštu"
-#: chat.php:273
+#: index.php:284 chat.php:284
msgid "Show a greeting message before showing the messages"
msgstr "Před zobrazením zpráv zobrazte uvítací zprávu"
-#: chat.php:274 chat.php:2204
+#: index.php:285 index.php:2263 chat.php:285 chat.php:2263
msgid "Sort messages from top to bottom"
msgstr "Seřadit zprávy shora dolů"
-#: chat.php:275 chat.php:2205
+#: index.php:286 index.php:2264 chat.php:286 chat.php:2264
msgid "Hide list of chatters"
msgstr "Skrýt seznam chatujících"
-#: chat.php:276 chat.php:1780 chat.php:1794
+#: index.php:287 index.php:1837 index.php:1851 chat.php:287 chat.php:1837
+#: chat.php:1851
msgid "Personal notes"
msgstr "Osobní poznámky"
-#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110
+#: index.php:288 index.php:1840 index.php:1854 index.php:2169 chat.php:288
+#: chat.php:1840 chat.php:1854 chat.php:2169
msgid "Public notes"
msgstr "Poznámky publikovaný"
-#: chat.php:278
+#: index.php:289 chat.php:289
msgid "Apply kick filter on moderators"
msgstr "Použít vyhazovací filtr na moderátory"
-#: chat.php:279
+#: index.php:290 chat.php:290
msgid "Show who kicks people or purges all messages."
msgstr "Ukažte, kdo vyloučí lidi nebo vyčistí všechny zprávy."
-#: chat.php:280
+#: index.php:291 chat.php:291
msgid "Hide reload post box button"
msgstr "Skrýt tlačítko \"znovu načíst poštovní schránku\""
-#: chat.php:281
+#: index.php:292 chat.php:292
msgid "Hide reload messages button"
msgstr "Skrýt tlačítko \"znovu načíst zprávy\""
-#: chat.php:282
+#: index.php:293 chat.php:293
msgid "Hide profile button"
msgstr "Skrýt tlačítko \"Profil\""
-#: chat.php:283
+#: index.php:294 chat.php:294
msgid "Hide admin button"
msgstr "Skrýt tlačítko \"admin\""
-#: chat.php:284
+#: index.php:295 chat.php:295
msgid "Hide notes button"
msgstr "Skrýt tlačítko \"poznámky\""
-#: chat.php:285
+#: index.php:296 chat.php:296
msgid "Hide clone button"
msgstr "Skrýt tlačítko \"klon\""
-#: chat.php:286
+#: index.php:297 chat.php:297
msgid "Hide rearrange button"
msgstr "Skrýt tlačítko \"změny uspořádání\""
-#: chat.php:287
+#: index.php:298 chat.php:298
msgid "Hide help button"
msgstr "Skrýt tlačítko \"nápověda\""
-#: chat.php:288
+#: index.php:299 chat.php:299
msgid "Apply postbox delete button globally"
msgstr "Použít tlačítko pro odstranění poštovní schránky globálně"
-#: chat.php:289
+#: index.php:300 chat.php:300
msgid "Allow enhancing functionality with JavaScript"
msgstr "Povolit vylepšení funkcí pomocí JavaScriptu"
-#: chat.php:292 chat.php:2170
+#: index.php:303 index.php:2229 chat.php:303 chat.php:2229
msgid "Background colour"
msgstr "Barva pozadí"
-#: chat.php:293 chat.php:2167
+#: index.php:304 index.php:2226 chat.php:304 chat.php:2226
msgid "Font colour"
msgstr "Barva písma"
-#: chat.php:296
+#: index.php:307 chat.php:307
msgid "Entrance"
msgstr "Vstup"
-#: chat.php:297
+#: index.php:308 chat.php:308
msgid "Leaving"
msgstr "Odchod"
-#: chat.php:298
+#: index.php:309 chat.php:309
msgid "Member registered"
msgstr "Registrovaný člen"
-#: chat.php:299
+#: index.php:310 chat.php:310
msgid "Applicant registered"
msgstr "Žadatel se zaregistroval"
-#: chat.php:300
+#: index.php:311 chat.php:311
msgid "Kicked"
msgstr "Vyhozen"
-#: chat.php:301
+#: index.php:312 chat.php:312
msgid "Multiple kicked"
msgstr "Vyhozeno více členů"
-#: chat.php:302
+#: index.php:313 chat.php:313
msgid "All kicked"
msgstr "Všichni byli vyhozeni"
-#: chat.php:303
+#: index.php:314 chat.php:314
msgid "Room cleaned"
msgstr "Místnost byla vyčištěna"
-#: chat.php:304
+#: index.php:315 chat.php:315
msgid "Message to all"
msgstr "Zpráva všem"
-#: chat.php:305
+#: index.php:316 chat.php:316
msgid "Message to members only"
msgstr "Zpráva jen pro členy"
-#: chat.php:306
+#: index.php:317 chat.php:317
msgid "Message to staff only"
msgstr "Zpráva jen pro personál"
-#: chat.php:307
+#: index.php:318 chat.php:318
msgid "Message to admins only"
msgstr "Zpráva jen Administrátorům"
-#: chat.php:308
+#: index.php:319 chat.php:319
msgid "Private message"
msgstr "Soukromá zpráva"
-#: chat.php:309
+#: index.php:320 chat.php:320
msgid "Attachement"
msgstr "Příloha"
-#: chat.php:312
+#: index.php:323 chat.php:323
msgid "Member timeout (minutes)"
msgstr "Členský časový limit (minut)"
-#: chat.php:313
+#: index.php:324 chat.php:324
msgid "Guest timeout (minutes)"
msgstr "Host timeout (minut)"
-#: chat.php:314
+#: index.php:325 chat.php:325
msgid "Kick penalty (minutes)"
msgstr "Kick penalty (minut)"
-#: chat.php:315
+#: index.php:326 chat.php:326
msgid "Waiting room time (seconds)"
msgstr "Čas čekací místnosti (sekund)"
-#: chat.php:316
+#: index.php:327 chat.php:327
+msgid "Logout delay (seconds)"
+msgstr ""
+
+#: index.php:328 chat.php:328
msgid "Captcha timeout (seconds)"
msgstr "Časový limit Captcha (sekund)"
-#: chat.php:317
+#: index.php:329 chat.php:329
msgid "Message timeout (minutes)"
msgstr "Časový limit zprávy (minut)"
-#: chat.php:318
+#: index.php:330 chat.php:330
msgid "Message limit (public)"
msgstr "Limit zprávy (veřejnost)"
-#: chat.php:319
+#: index.php:331 chat.php:331
msgid "Maximal message length"
msgstr "Maximální délka zprávy"
-#: chat.php:320
+#: index.php:332 chat.php:332
msgid "Maximal nickname length"
msgstr "Maximální délka přezdívky"
-#: chat.php:321
+#: index.php:333 chat.php:333
msgid "Minimal password length"
msgstr "Minimální délka hesla"
-#: chat.php:322
+#: index.php:334 chat.php:334
msgid "Default message reload time (seconds)"
msgstr "Výchozí doba načtení zprávy (reload) (sekund)"
-#: chat.php:323
+#: index.php:335 chat.php:335
msgid "Number of notes revisions to keep"
msgstr "Počet poznámek, které je nutné zachovat"
-#: chat.php:324
+#: index.php:336 chat.php:336
msgid "Maximum upload size in KB"
msgstr "Maximální velikost nahrávaných souborů v KB"
-#: chat.php:325
+#: index.php:337 chat.php:337
msgid "Enable file uploads"
msgstr "Povolit nahrávání souborů"
-#: chat.php:326
+#: index.php:338 chat.php:338
msgid "Lowest refresh rate"
msgstr "Nejnižší obnovovací frekvence"
-#: chat.php:327
+#: index.php:339 chat.php:339
msgid "Highest refresh rate"
msgstr "Nejvyšší obnovovací frekvence"
-#: chat.php:330
+#: index.php:342 chat.php:342
msgid "Rules (html)"
msgstr "Pravidla (html)"
-#: chat.php:331
+#: index.php:343 chat.php:343
msgid "CSS Style"
msgstr "CSS Styl"
-#: chat.php:332
+#: index.php:344 chat.php:344
msgid "Chat disabled message (html)"
msgstr "Deaktivovat zprávu v chatu (html)"
-#: chat.php:335
+#: index.php:347 chat.php:347
msgid ""
"Date "
@@ -287,88 +293,96 @@ msgstr ""
"php#refsect1-function.date-parameters\" rel=\"noopener noreferrer\">Formát "
"datumu"
-#: chat.php:336
+#: index.php:348 chat.php:348
msgid "Characters used in Captcha"
msgstr "Znaky použité v Captcha"
-#: chat.php:337
+#: index.php:349 chat.php:349
msgid "Custom redirection script"
msgstr "Vlastní skript přesměrování"
-#: chat.php:338
+#: index.php:350 chat.php:350
msgid "Chat name"
msgstr "Název chatu"
-#: chat.php:339
+#: index.php:351 chat.php:351
msgid "Send mail using this address"
msgstr "Odeslat mail pomocí této adresy"
-#: chat.php:340
+#: index.php:352 chat.php:352
msgid "Send mail to this address"
msgstr "Odeslat mail do této adresy"
-#: chat.php:341
+#: index.php:353 chat.php:353
msgid "Nickname regex"
msgstr "Přezdívka regex"
-#: chat.php:342
+#: index.php:354 chat.php:354
msgid "Password regex"
msgstr "Heslo regex"
-#: chat.php:343
+#: index.php:355 chat.php:355
msgid "Link to external CSS file (on your own server)"
msgstr "Link pro externí CSS soubor"
-#: chat.php:344
+#: index.php:356 chat.php:356
msgid "Meta description (best 50 - 160 characters for SEO)"
msgstr "Popis metadat (nejlépe 50–160 znaků pro SEO)"
-#: chat.php:345
+#: index.php:357 chat.php:357
+msgid "Show this text when a user's logout is delayed"
+msgstr ""
+
+#: index.php:358 chat.php:358
msgid "Prepend this text to system messages"
msgstr "Tento text předchází zprávám ze systému"
-#: chat.php:348 chat.php:728 chat.php:1225
+#: index.php:361 index.php:780 index.php:1282 chat.php:361 chat.php:780
+#: chat.php:1282
msgid "Change Guestaccess"
msgstr "Změnit přístup pro hosty"
-#: chat.php:349
+#: index.php:362 chat.php:362
msgid "Enable global Password"
msgstr "Povolit globální heslo"
-#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433
+#: index.php:363 index.php:810 index.php:2474 index.php:2492 chat.php:363
+#: chat.php:810 chat.php:2474 chat.php:2492
msgid "Global Password:"
msgstr "Globální heslo:"
-#: chat.php:351 chat.php:819
+#: index.php:364 index.php:871 chat.php:364 chat.php:871
msgid "Captcha"
msgstr "Captcha"
-#: chat.php:352 chat.php:775 chat.php:835
+#: index.php:365 index.php:827 index.php:887 chat.php:365 chat.php:827
+#: chat.php:887
msgid "Only for guests"
msgstr "Pouze pro hosty"
-#: chat.php:353 chat.php:1220
+#: index.php:366 index.php:1277 chat.php:366 chat.php:1277
msgid "Topic"
msgstr "Téma"
-#: chat.php:354 chat.php:781
+#: index.php:367 index.php:833 chat.php:367 chat.php:833
msgid "Let guests register themselves"
msgstr "Nechte hosty zaregistrovat se"
-#: chat.php:355 chat.php:862
+#: index.php:368 index.php:919 chat.php:368 chat.php:919
msgid "Default time zone"
msgstr "Výchozí časové pásmo"
-#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259
+#: index.php:581 index.php:1157 index.php:4158 index.php:4341 chat.php:581
+#: chat.php:1157 chat.php:4158 chat.php:4341
msgid "Initial Setup"
msgstr "Počáteční nastavení"
-#: chat.php:588
+#: index.php:601 chat.php:601
#, php-format
msgid "Redirecting to: %s"
msgstr "Přesměrování na: %s"
-#: chat.php:595
+#: index.php:608 chat.php:608
#, php-format
msgid ""
"Dangerous non-http link requested, copy paste this link if you are really "
@@ -377,78 +391,81 @@ msgstr ""
"Je požadován nebezpečný odkaz mimo http, zkopírujte a vložte tento odkaz jen "
"pokud jste si opravdu jisti: %s"
-#: chat.php:597
+#: index.php:610 chat.php:610
#, php-format
msgid "Non-http link requested: %s"
msgstr "Požadovaný odkaz bez http: %s"
-#: chat.php:599
+#: index.php:612 chat.php:612
#, php-format
msgid "If it's not working, try this one: %s"
msgstr "Pokud to nefunguje, zkuste tohle: %s"
-#: chat.php:609
+#: index.php:622 chat.php:622
msgid "Access denied"
msgstr "Přístup zamítnut"
-#: chat.php:609
+#: index.php:622 chat.php:622
#, php-format
msgid "You are logged in as %s and don't have access to this section."
msgstr "Jste přihlášeni jako %s a nemáte přístup k této části."
-#: chat.php:611 chat.php:915 chat.php:1211 chat.php:1393
+#: index.php:624 index.php:972 index.php:1268 index.php:1450 chat.php:624
+#: chat.php:972 chat.php:1268 chat.php:1450
msgid "Logout"
msgstr "Odhlásit"
-#: chat.php:636
+#: index.php:649 chat.php:649
msgid "Copy:"
msgstr "Přepiš:"
-#: chat.php:724
+#: index.php:776 chat.php:776
msgid "Chat Setup"
msgstr "Nastavení Chatu"
-#: chat.php:734 chat.php:1233
+#: index.php:786 index.php:1290 chat.php:786 chat.php:1290
msgid "Allow"
msgstr "Povolit"
-#: chat.php:739 chat.php:1238
+#: index.php:791 index.php:1295 chat.php:791 chat.php:1295
msgid "Allow with waitingroom"
msgstr "Povolit s čekající možností"
-#: chat.php:744 chat.php:1243
+#: index.php:796 index.php:1300 chat.php:796 chat.php:1300
msgid "Require moderator approval"
msgstr "Požadovat schválení moderátorem"
-#: chat.php:749 chat.php:1248
+#: index.php:801 index.php:1305 chat.php:801 chat.php:1305
msgid "Only members"
msgstr "Jen členové"
-#: chat.php:754 chat.php:1251
+#: index.php:806 index.php:1308 chat.php:806 chat.php:1308
msgid "Disable chat"
msgstr "Vypnout chat"
-#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229
+#: index.php:817 index.php:839 index.php:894 index.php:953 index.php:2288
+#: chat.php:817 chat.php:839 chat.php:894 chat.php:953 chat.php:2288
msgid "Disabled"
msgstr "Zakázáno"
-#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219
+#: index.php:822 index.php:882 index.php:958 index.php:2278 chat.php:822
+#: chat.php:882 chat.php:958 chat.php:2278
msgid "Enabled"
msgstr "Povoleno"
-#: chat.php:792
+#: index.php:844 chat.php:844
msgid "As applicant"
msgstr "Jako žadatel"
-#: chat.php:797
+#: index.php:849 chat.php:849
msgid "As member"
msgstr "Jako členové"
-#: chat.php:800
+#: index.php:852 chat.php:852
msgid "System messages"
msgstr "Systémové zprávy"
-#: chat.php:822 chat.php:1053
+#: index.php:874 index.php:1110 chat.php:874 chat.php:1110
#, php-format
msgid ""
"The %s extension of PHP is required for this feature. Please install it "
@@ -456,120 +473,135 @@ msgid ""
msgstr ""
"Rozšíření PHP %s je pro tuto funkci vyžadováno. Nejprve ho nainstalujte."
-#: chat.php:847
+#: index.php:899 chat.php:899
msgid "Simple"
msgstr "Jednoduchý"
-#: chat.php:852
+#: index.php:904 chat.php:904
msgid "Moderate"
msgstr "Mírný"
-#: chat.php:857
+#: index.php:909 chat.php:909
+msgid "Hard"
+msgstr ""
+
+#: index.php:914 chat.php:914
msgid "Extreme"
msgstr "Extrémní"
-#: chat.php:906 chat.php:1548 chat.php:1610
+#: index.php:963 index.php:1605 index.php:1667 chat.php:963 chat.php:1605
+#: chat.php:1667
msgid "Apply"
msgstr "Použít"
-#: chat.php:910 chat.php:1050
+#: index.php:967 index.php:1107 chat.php:967 chat.php:1107
msgid "Backup and restore"
msgstr "Zálohování a obnovení"
-#: chat.php:912
+#: index.php:969 chat.php:969
msgid "Destroy chat"
msgstr "Zničit chat"
-#: chat.php:1057 chat.php:1066
+#: index.php:1114 index.php:1123 chat.php:1114 chat.php:1123
msgid "Settings"
msgstr "Nastavení"
-#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575
-#: chat.php:1622
+#: index.php:1115 index.php:1124 index.php:1269 index.php:1595 index.php:1632
+#: index.php:1679 chat.php:1115 chat.php:1124 chat.php:1269 chat.php:1595
+#: chat.php:1632 chat.php:1679
msgid "Filter"
msgstr "Filtr"
-#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538
+#: index.php:1116 index.php:1125 index.php:1325 index.php:2600 chat.php:1116
+#: chat.php:1125 chat.php:1325 chat.php:2600
msgid "Members"
msgstr "Členové"
-#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322
+#: index.php:1117 index.php:1126 index.php:2373 index.php:2381 chat.php:1117
+#: chat.php:1126 chat.php:2373 chat.php:2381
msgid "Notes"
msgstr "Poznámky"
-#: chat.php:1061
+#: index.php:1118 chat.php:1118
msgid "Backup"
msgstr "Zalohování"
-#: chat.php:1070
+#: index.php:1127 chat.php:1127
msgid "Restore"
msgstr "Obnovení"
-#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260
+#: index.php:1131 index.php:1174 index.php:1212 index.php:1242 index.php:4342
+#: chat.php:1131 chat.php:1174 chat.php:1212 chat.php:1242 chat.php:4342
msgid "Go to the Setup-Page"
msgstr "Přejděte na stránku nastavení"
-#: chat.php:1082 chat.php:1091 chat.php:1949
+#: index.php:1139 index.php:1148 index.php:2006 chat.php:1139 chat.php:1148
+#: chat.php:2006
msgid "Are you sure?"
msgstr "Jsi si jistý?"
-#: chat.php:1083 chat.php:1092 chat.php:1956
+#: index.php:1140 index.php:1149 index.php:2013 chat.php:1140 chat.php:1149
+#: chat.php:2013
msgid "Yes"
msgstr "Ano"
-#: chat.php:1084 chat.php:1093 chat.php:1963
+#: index.php:1141 index.php:1150 index.php:2020 chat.php:1141 chat.php:1150
+#: chat.php:2020
msgid "No"
msgstr "Ne"
-#: chat.php:1101 chat.php:4259
+#: index.php:1158 index.php:4341 chat.php:1158 chat.php:4341
msgid "Superadmin Login"
msgstr "Superadmin Přihlášení"
-#: chat.php:1102
+#: index.php:1159 chat.php:1159
msgid "Superadmin Nickname:"
msgstr "Superadmin Přezdívka:"
-#: chat.php:1103
+#: index.php:1160 chat.php:1160
msgid "Superadmin Password:"
msgstr "Superadmin Heslo:"
-#: chat.php:1104
+#: index.php:1161 chat.php:1161
msgid "Confirm Password:"
msgstr "Potvrzení hesla:"
-#: chat.php:1105
+#: index.php:1162 chat.php:1162
msgid "Initialise Chat"
msgstr "Inicializace chatu"
-#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439
+#: index.php:1163 index.php:1187 index.php:1213 index.php:2336 index.php:2498
+#: chat.php:1163 chat.php:1187 chat.php:1213 chat.php:2336 chat.php:2498
msgid "Change language:"
msgstr "Změnit jazyk:"
-#: chat.php:1117
+#: index.php:1174 chat.php:1174
msgid "Database successfully updated!"
msgstr "Databáze byla úspěšně aktualizována!"
-#: chat.php:1125 chat.php:1326 chat.php:2407
+#: index.php:1182 index.php:1383 index.php:2466 chat.php:1182 chat.php:1383
+#: chat.php:2466
msgid "Nickname:"
msgstr "Přezdívka:"
-#: chat.php:1126 chat.php:1327 chat.php:2408
+#: index.php:1183 index.php:1384 index.php:2467 chat.php:1183 chat.php:1384
+#: chat.php:2467
msgid "Password:"
msgstr "Heslo:"
-#: chat.php:1128
+#: index.php:1185 chat.php:1185
msgid "Login"
msgstr "Přihlásit se"
-#: chat.php:1129
+#: index.php:1186 chat.php:1186
msgid "Forgot login?"
msgstr "Zapomenuté heslo?"
-#: chat.php:1142 chat.php:1306
+#: index.php:1199 index.php:1363 chat.php:1199 chat.php:1363
msgid "Reset password"
msgstr "Reset hesla"
-#: chat.php:1150
+#: index.php:1207 chat.php:1207
#, php-format
msgid ""
"Successfully reset password for username %s. Please remove the password "
@@ -578,7 +610,7 @@ msgstr ""
"Heslo pro uživatelské jméno %s bylo úspěšně resetováno. Znovu prosím "
"odstraňte ze skriptu definici resetování hesla."
-#: chat.php:1153
+#: index.php:1210 chat.php:1210
msgid ""
"Please modify the script and put the following at the bottom of it (change "
"the password). Then refresh this page: define('RESET_SUPERADMIN_PASSWORD', "
@@ -587,165 +619,171 @@ msgstr ""
"Upravte skript a na jeho konec vložte následující (změňte heslo). Poté "
"obnovte tuto stránku: define('RESET_SUPERADMIN_PASSWORD', 'changeme');"
-#: chat.php:1169 chat.php:1193 chat.php:1258 chat.php:1270 chat.php:1294
-#: chat.php:1308 chat.php:1316 chat.php:2145 chat.php:2153
+#: index.php:1226 index.php:1250 index.php:1315 index.php:1327 index.php:1351
+#: index.php:1365 index.php:1373 index.php:2204 index.php:2212 chat.php:1226
+#: chat.php:1250 chat.php:1315 chat.php:1327 chat.php:1351 chat.php:1365
+#: chat.php:1373 chat.php:2204 chat.php:2212
msgid "(choose)"
msgstr "(vybrat)"
-#: chat.php:1170
+#: index.php:1227 chat.php:1227
msgid "All guests"
msgstr "Všichni hosté"
-#: chat.php:1182
+#: index.php:1239 chat.php:1239
msgid "Administrative functions"
msgstr "Administrativní funkce"
-#: chat.php:1188
+#: index.php:1245 chat.php:1245
msgid "Clean messages"
msgstr "Vyčistit zprávy"
-#: chat.php:1191
+#: index.php:1248 chat.php:1248
msgid "Whole room"
msgstr "Celá místnost"
-#: chat.php:1192
+#: index.php:1249 chat.php:1249
msgid "Selection"
msgstr "Výběr"
-#: chat.php:1193
+#: index.php:1250 chat.php:1250
msgid "Following nickname:"
msgstr "Následující přezdívka:"
-#: chat.php:1200
+#: index.php:1257 chat.php:1257
msgid "Clean"
msgstr "Vyčistit"
-#: chat.php:1202
+#: index.php:1259 chat.php:1259
#, php-format
msgid "Kick Chatter (%d minutes)"
msgstr "Vyhodit chatujícího (%d minutes)"
-#: chat.php:1204
+#: index.php:1261 chat.php:1261
msgid "Kickmessage:"
msgstr "Důvod vyhození:"
-#: chat.php:1205
+#: index.php:1262 chat.php:1262
msgid "Purge messages"
msgstr "Vyčistit zprávy"
-#: chat.php:1206 chat.php:1388 chat.php:1546 chat.php:1580 chat.php:1591
-#: chat.php:2042
+#: index.php:1263 index.php:1445 index.php:1603 index.php:1637 index.php:1648
+#: index.php:2101 chat.php:1263 chat.php:1445 chat.php:1603 chat.php:1637
+#: chat.php:1648 chat.php:2101
msgid "Kick"
msgstr "Vyhodit"
-#: chat.php:1208
+#: index.php:1265 chat.php:1265
msgid "Logout inactive Chatter"
msgstr "Odhlásit neaktivní chatující"
-#: chat.php:1212
+#: index.php:1269 chat.php:1269
msgid "View active sessions"
msgstr "Zobrazit aktivní relace"
-#: chat.php:1212 chat.php:1603
+#: index.php:1269 index.php:1660 chat.php:1269 chat.php:1660
msgid "Linkfilter"
msgstr "Filtr odkazů"
-#: chat.php:1217
+#: index.php:1274 chat.php:1274
msgid "View"
msgstr "Zobrazit"
-#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582
-#: chat.php:1626
+#: index.php:1280 index.php:1310 index.php:1361 index.php:1369 index.php:1639
+#: index.php:1683 chat.php:1280 chat.php:1310 chat.php:1361 chat.php:1369
+#: chat.php:1639 chat.php:1683
msgid "Change"
msgstr "Změnit"
-#: chat.php:1256
+#: index.php:1313 chat.php:1313
msgid "Register applicant"
msgstr "Zaregistrovat žadatele"
-#: chat.php:1264 chat.php:1322 chat.php:1328
+#: index.php:1321 index.php:1379 index.php:1385 chat.php:1321 chat.php:1379
+#: chat.php:1385
msgid "Register"
msgstr "Registrovat"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Delete from database"
msgstr "Odstranit z databáze"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Deny access (!)"
msgstr "Zamítnout přístup (!)"
-#: chat.php:1296
+#: index.php:1353 chat.php:1353
msgid "Set to applicant (SG)"
msgstr "Nastavit na žadatele (SG)"
-#: chat.php:1298
+#: index.php:1355 chat.php:1355
msgid "Set to regular member"
msgstr "Nastavte na řádného člena"
-#: chat.php:1299
+#: index.php:1356 chat.php:1356
msgid "Set to moderator (M)"
msgstr "Nastavit na moderátory (M)"
-#: chat.php:1300
+#: index.php:1357 chat.php:1357
msgid "Set to supermod (SM)"
msgstr "Nastavit na supermod (SM)"
-#: chat.php:1302
+#: index.php:1359 chat.php:1359
msgid "Set to admin (A)"
msgstr "Nastavit pro Administrátory (A)"
-#: chat.php:1314
+#: index.php:1371 chat.php:1371
msgid "Register Guest"
msgstr "Registrovat hosta"
-#: chat.php:1324
+#: index.php:1381 chat.php:1381
msgid "Register new Member"
msgstr "Registrovat nového Člena"
-#: chat.php:1332 chat.php:1408 chat.php:1595 chat.php:1636 chat.php:1710
-#: chat.php:1924
+#: index.php:1389 index.php:1465 index.php:1652 index.php:1693 index.php:1767
+#: index.php:1981 chat.php:1389 chat.php:1465 chat.php:1652 chat.php:1693
+#: chat.php:1767 chat.php:1981
msgid "Reload"
msgstr "Znovu načíst"
-#: chat.php:1345
+#: index.php:1402 chat.php:1402
msgid "Active Sessions"
msgstr "Aktivní relace"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "Nickname"
msgstr "Přezdívka"
-#: chat.php:1346
+#: index.php:1403 chat.php:1403
msgid "Timeout in"
msgstr "Časový limit (Timeout) v"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "User-Agent"
msgstr "User-Agent"
-#: chat.php:1350
+#: index.php:1407 chat.php:1407
msgid "IP-Address"
msgstr "IP-Addresa"
-#: chat.php:1351
+#: index.php:1408 chat.php:1408
msgid "Actions"
msgstr "Akce"
-#: chat.php:1393
+#: index.php:1450 chat.php:1450
msgid "Unban"
msgstr "Odbanovat"
-#: chat.php:1416
+#: index.php:1473 chat.php:1473
msgid "Incorrect regular expression!"
msgstr "Nesprávný regulární výraz!"
-#: chat.php:1416 chat.php:1424
+#: index.php:1473 index.php:1481 chat.php:1473 chat.php:1481
#, php-format
msgid "Your match was as follows: %s"
msgstr "Vaše hledání bylo následující: %s"
-#: chat.php:1424
+#: index.php:1481 chat.php:1481
msgid ""
"Your match was too long. You can use max. 255 characters. Try splitting it "
"up."
@@ -753,40 +791,43 @@ msgstr ""
"Vaše hledání bylo příliš dlouhé. Můžete použít max. 255 znaků. Zkuste to "
"rozdělit."
-#: chat.php:1541 chat.php:1606
+#: index.php:1598 index.php:1663 chat.php:1598 chat.php:1663
msgid "Filter ID:"
msgstr "ID filtru:"
-#: chat.php:1542 chat.php:1607
+#: index.php:1599 index.php:1664 chat.php:1599 chat.php:1664
msgid "Match"
msgstr "Odpovídající výraz"
-#: chat.php:1543 chat.php:1608
+#: index.php:1600 index.php:1665 chat.php:1600 chat.php:1665
msgid "Replace"
msgstr "Nahradit"
-#: chat.php:1544 chat.php:1578 chat.php:1589
+#: index.php:1601 index.php:1635 index.php:1646 chat.php:1601 chat.php:1635
+#: chat.php:1646
msgid "Allow in PM"
msgstr "Povolit v PM"
-#: chat.php:1545 chat.php:1579 chat.php:1590 chat.php:1609 chat.php:1625
-#: chat.php:1633
+#: index.php:1602 index.php:1636 index.php:1647 index.php:1666 index.php:1682
+#: index.php:1690 chat.php:1602 chat.php:1636 chat.php:1647 chat.php:1666
+#: chat.php:1682 chat.php:1690
msgid "Regex"
msgstr "Regex"
-#: chat.php:1547 chat.php:1581 chat.php:1592
+#: index.php:1604 index.php:1638 index.php:1649 chat.php:1604 chat.php:1638
+#: chat.php:1649
msgid "Case sensitive"
msgstr "Velká a malá písmena"
-#: chat.php:1586 chat.php:1630
+#: index.php:1643 index.php:1687 chat.php:1643 chat.php:1687
msgid "New filter:"
msgstr "Nový filtr:"
-#: chat.php:1593 chat.php:1634
+#: index.php:1650 index.php:1691 chat.php:1650 chat.php:1691
msgid "Add"
msgstr "Přidat"
-#: chat.php:1691
+#: index.php:1748 chat.php:1748
msgid ""
"This chat uses frames. Please enable frames in your browser or use a "
"suitable one!"
@@ -794,96 +835,99 @@ msgstr ""
"Tento chat používá rámečky. Povolte rámečky ve vašem prohlížeči nebo "
"použijte jiný!"
-#: chat.php:1691 chat.php:2370 chat.php:2457
+#: index.php:1748 index.php:2429 index.php:2516 chat.php:1748 chat.php:2429
+#: chat.php:2516
msgid "Back to the login page."
msgstr "Zpět na přihlašovací stránku."
-#: chat.php:1709
+#: index.php:1766 chat.php:1766
msgid "Bottom"
msgstr "Dolní"
-#: chat.php:1710
+#: index.php:1767 chat.php:1767
msgid "Manual refresh required"
msgstr "Nutná ruční aktualizace"
-#: chat.php:1726
+#: index.php:1783 chat.php:1783
msgid "Top"
msgstr "Horní"
-#: chat.php:1734 chat.php:1940 chat.php:1942
+#: index.php:1791 index.php:1997 index.php:1999 chat.php:1791 chat.php:1997
+#: chat.php:1999
msgid "Delete selected messages"
msgstr "Odstranit vybrané zprávy"
-#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281
+#: index.php:1818 index.php:1945 index.php:2160 index.php:2340 chat.php:1818
+#: chat.php:1945 chat.php:2160 chat.php:2340
msgid "Back to the chat."
msgstr "Zpět do chatu."
-#: chat.php:1774 chat.php:1791
+#: index.php:1831 index.php:1848 chat.php:1831 chat.php:1848
msgid "Admin notes"
msgstr "Poznámky Administrátorů"
-#: chat.php:1777 chat.php:1788
+#: index.php:1834 index.php:1845 chat.php:1834 chat.php:1845
msgid "Staff notes"
msgstr "Poznámky zaměstnanců"
-#: chat.php:1811
+#: index.php:1868 chat.php:1868
msgid "Notes saved!"
msgstr "Poznámky uloženy!"
-#: chat.php:1835 chat.php:2122
+#: index.php:1892 index.php:2181 chat.php:1892 chat.php:2181
#, php-format
msgid "Last edited by %1$s at %2$s"
msgstr "Naposledy upraveno %1$s at %2$s"
-#: chat.php:1848
+#: index.php:1905 chat.php:1905
msgid "Save notes"
msgstr "Uložit poznámky"
-#: chat.php:1850
+#: index.php:1907 chat.php:1907
msgid "Revisions:"
msgstr "Revize:"
-#: chat.php:1853
+#: index.php:1910 chat.php:1910
msgid "Older"
msgstr "Starší"
-#: chat.php:1857
+#: index.php:1914 chat.php:1914
msgid "Newer"
msgstr "Novější"
-#: chat.php:1868 chat.php:1914
+#: index.php:1925 index.php:1971 chat.php:1925 chat.php:1971
msgid "Waiting room"
msgstr "Čekárna"
-#: chat.php:1880
+#: index.php:1937 chat.php:1937
msgid "Allow checked"
msgstr "Povolit vybrané"
-#: chat.php:1881
+#: index.php:1938 chat.php:1938
msgid "Allow all"
msgstr "Povolit vše"
-#: chat.php:1882
+#: index.php:1939 chat.php:1939
msgid "Deny checked"
msgstr "Zakázat vybrané"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Deny all"
msgstr "Zakázat vše"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Send message to denied:"
msgstr "Poslat zprávu odepřeným:"
-#: chat.php:1884
+#: index.php:1941 chat.php:1941
msgid "Submit"
msgstr "Odeslat"
-#: chat.php:1886
+#: index.php:1943 chat.php:1943
msgid "No more entry requests to approve."
msgstr "Žádná další žádost o schválení."
-#: chat.php:1916
+#: index.php:1973 chat.php:1973
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat in %2$d "
@@ -892,7 +936,7 @@ msgstr ""
"Vítejte %1$s, vaše přihlášení bylo odloženo, přístup k chatu je možný v %2$d "
"sekundách."
-#: chat.php:1918
+#: index.php:1975 chat.php:1975
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat as soon, "
@@ -901,7 +945,7 @@ msgstr ""
"Vítejte %1$s, vaše přihlašovací údaje byly odloženy, můžete k chatu "
"přistupovat až to moderátor dovolí."
-#: chat.php:1921
+#: index.php:1978 chat.php:1978
#, php-format
msgid ""
"If this page doesn't refresh every %d seconds, use the button below to "
@@ -910,64 +954,69 @@ msgstr ""
"Pokud se tato stránka neobnoví každých %d sekund, použijte tlačítko níže, "
"abyste ji znovu načítali ručně!"
-#: chat.php:1926 chat.php:2339
+#: index.php:1983 index.php:2398 chat.php:1983 chat.php:2398
msgid "Exit Chat"
msgstr "Opustit chat"
-#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430
+#: index.php:1986 index.php:2133 index.php:2144 index.php:2489 chat.php:1986
+#: chat.php:2133 chat.php:2144 chat.php:2489
msgid "Rules"
msgstr "Pravidla"
-#: chat.php:1985
+#: index.php:2042 chat.php:2042
msgid "Send to"
msgstr "Mluvit s"
-#: chat.php:1990
+#: index.php:2047 chat.php:2047
msgid "All chatters"
msgstr "Všem"
-#: chat.php:1996
+#: index.php:2053 chat.php:2053
msgid "Members only"
msgstr "Jen členové"
-#: chat.php:2003
+#: index.php:2060 chat.php:2060
msgid "Staff only"
msgstr "Jen zaměstnanci"
-#: chat.php:2010
+#: index.php:2067 chat.php:2067
msgid "Admin only"
msgstr "Jen administrátoři"
-#: chat.php:2019
+#: index.php:2076 chat.php:2076
msgid "(offline)"
msgstr "(offline)"
-#: chat.php:2043
+#: index.php:2078 chat.php:2078
+msgid "(logging out)"
+msgstr ""
+
+#: index.php:2102 chat.php:2102
msgid "Also purge messages"
msgstr "Také vyčistit zprávy"
-#: chat.php:2050
+#: index.php:2109 chat.php:2109
msgid "Delete last message"
msgstr "Vymazat poslední zprávu"
-#: chat.php:2055
+#: index.php:2114 chat.php:2114
msgid "Delete all messages"
msgstr "Vymazat všechny zprávy"
-#: chat.php:2057
+#: index.php:2116 chat.php:2116
msgid "Switch to single-line"
msgstr "Přepnout na jednorázovou linku"
-#: chat.php:2059
+#: index.php:2118 chat.php:2118
msgid "Switch to multi-line"
msgstr "Přepnout na víceřádkový"
-#: chat.php:2070
+#: index.php:2129 chat.php:2129
#, php-format
msgid "Welcome %s!"
msgstr "Vítej %s!"
-#: chat.php:2071
+#: index.php:2130 chat.php:2130
#, php-format
msgid ""
"If this frame does not reload in %d seconds, you'll have to enable automatic "
@@ -984,11 +1033,11 @@ msgstr ""
"atd. Jako řešení (nebo v případě chyby načtení serveru / serveru proxy) "
"můžete ručně obnovit tlačítka v dolní části."
-#: chat.php:2087
+#: index.php:2146 chat.php:2146
msgid "Help"
msgstr "Pomoc"
-#: chat.php:2088
+#: index.php:2147 chat.php:2147
msgid ""
"All functions should be pretty much self-explaining, just use the buttons. "
"In your profile you can adjust the refresh rate and font colour, as well as "
@@ -1000,7 +1049,7 @@ msgstr ""
"ignorovat uživatele. Poznámka: Jedná se o chat, takže pokud "
"nebudete mluvit, budete automaticky po chvíli odhlášeni."
-#: chat.php:2090
+#: index.php:2149 chat.php:2149
msgid ""
"If you want to embed an image in your post, simply put [img] in front of "
"your image URL. Example: [img]http://example.com/images/file.jpg will embed "
@@ -1010,7 +1059,7 @@ msgstr ""
"vaší adresou URL obrázku. Například: [img]http://example.com/images/file.jpg "
"vloží obrázek do příspěvku."
-#: chat.php:2093
+#: index.php:2152 chat.php:2152
msgid ""
"Members: You'll have some more options in your profile. You can adjust your "
"font face, change your password anytime and of course you can delete your "
@@ -1019,7 +1068,7 @@ msgstr ""
"Členové: Ve svém profilu budete mít další možnosti. Můžete nastavit tvar "
"písma, změnit heslo kdykoli a samozřejmě můžete svůj účet smazat."
-#: chat.php:2095
+#: index.php:2154 chat.php:2154
msgid ""
"Moderators: Notice the Admin-button at the bottom. It'll bring up a page "
"where you can clean the room, kick chatters, view all active sessions and "
@@ -1029,7 +1078,7 @@ msgstr ""
"můžete čistit místnost, vyhodit cahtující, prohlížet všechny aktivní relace "
"a v případě potřeby úplně zakázat přístup pro hosty."
-#: chat.php:2097
+#: index.php:2156 chat.php:2156
msgid ""
"Admins: You'll be furthermore able to register guests, edit members and "
"register new nicknames."
@@ -1037,227 +1086,233 @@ msgstr ""
"Administrátoři: Budete dále moci registrovat hosty, editovat členy a "
"registrovat nové přezdívky."
-#: chat.php:2135
+#: index.php:2194 chat.php:2194
msgid "Your Profile"
msgstr "Váš profil"
-#: chat.php:2144
+#: index.php:2203 chat.php:2203
msgid "Don't ignore anymore"
msgstr "Již neignorovat"
-#: chat.php:2152
+#: index.php:2211 chat.php:2211
msgid "Ignore"
msgstr "Ignorovat"
-#: chat.php:2163
+#: index.php:2222 chat.php:2222
#, php-format
msgid "Refresh rate (%1$d-%2$d seconds)"
msgstr "Obnovovací frekvence (%1$d-%2$d sekund)"
-#: chat.php:2167 chat.php:2170
+#: index.php:2226 index.php:2229 chat.php:2226 chat.php:2229
msgid "View examples"
msgstr "Zobrazit příklady"
-#: chat.php:2174
+#: index.php:2233 chat.php:2233
msgid "Fontface"
msgstr "Tvar písma"
-#: chat.php:2175
+#: index.php:2234 chat.php:2234
msgid "Room Default"
msgstr "Výchozí místnost"
-#: chat.php:2188
+#: index.php:2247 chat.php:2247
msgid "Bold"
msgstr "Tučně"
-#: chat.php:2192
+#: index.php:2251 chat.php:2251
msgid "Italic"
msgstr "Kurzíva"
-#: chat.php:2196
+#: index.php:2255 chat.php:2255
msgid "Small"
msgstr "Malý"
-#: chat.php:2199
+#: index.php:2258 chat.php:2258
msgid "Example for your chosen font"
msgstr "Příklad vybraného písma"
-#: chat.php:2203
+#: index.php:2262 chat.php:2262
msgid "Autoscroll (for old browsers or top-to-bottom sort)."
msgstr ""
"Automatické procházení (pro staré prohlížeče nebo třídění od nejvyššího "
"dole)."
-#: chat.php:2234
+#: index.php:2293 chat.php:2293
msgid "For everyone"
msgstr "Pro všechny"
-#: chat.php:2239
+#: index.php:2298 chat.php:2298
msgid "For members only"
msgstr "Jen pro členy"
-#: chat.php:2244
+#: index.php:2303 chat.php:2303
msgid "For staff only"
msgstr "Jen pro personál"
-#: chat.php:2248
+#: index.php:2307 chat.php:2307
msgid "Time zone"
msgstr "Časové pásmo"
-#: chat.php:2261
+#: index.php:2320 chat.php:2320
msgid "Change Password"
msgstr "Změnit heslo"
-#: chat.php:2263
+#: index.php:2322 chat.php:2322
msgid "Old password:"
msgstr "Staré heslo:"
-#: chat.php:2264
+#: index.php:2323 chat.php:2323
msgid "New password:"
msgstr "Nové heslo:"
-#: chat.php:2265
+#: index.php:2324 chat.php:2324
msgid "Confirm new password:"
msgstr "Potvrdit nové heslo:"
-#: chat.php:2268
+#: index.php:2327 chat.php:2327
msgid "Change Nickname"
msgstr "Změnit přezdívku"
-#: chat.php:2269
+#: index.php:2328 chat.php:2328
msgid "New nickname:"
msgstr "Nová přezdívka:"
-#: chat.php:2273
+#: index.php:2332 chat.php:2332
msgid "Save changes"
msgstr "Uložit"
-#: chat.php:2275
+#: index.php:2334 chat.php:2334
msgid "Delete account"
msgstr "Odstranit účet"
-#: chat.php:2301
+#: index.php:2360 chat.php:2360
msgid "Reload Post Box"
msgstr "Znovu načíst poštovní schránku"
-#: chat.php:2304
+#: index.php:2363 chat.php:2363
msgid "Reload Messages"
msgstr "Znovu načíst zprávy"
-#: chat.php:2307
+#: index.php:2366 chat.php:2366
msgid "Profile"
msgstr "Profil"
-#: chat.php:2311 chat.php:2528
+#: index.php:2370 index.php:2590 chat.php:2370 chat.php:2590
msgid "Admin"
msgstr "Administrátor"
-#: chat.php:2318
+#: index.php:2377 chat.php:2377
msgid "View public notes"
msgstr "Zobrazit poznámky publikovaný"
-#: chat.php:2325
+#: index.php:2384 chat.php:2384
msgid "Clone"
msgstr "Klonovat"
-#: chat.php:2334
+#: index.php:2393 chat.php:2393
msgid "Rearrange"
msgstr "Změňit uspořádání"
-#: chat.php:2337
+#: index.php:2396 chat.php:2396
msgid "Rules & Help"
msgstr "Pravidla & Pomoc"
-#: chat.php:2358 chat.php:2362
+#: index.php:2417 index.php:2421 chat.php:2417 chat.php:2421
msgid "File not found!"
msgstr "Soubor nebyl nalezen!"
-#: chat.php:2370
+#: index.php:2429 chat.php:2429
#, php-format
msgid "Bye %s, visit again soon!"
msgstr "Sbohem %s, navštivte nás brzy!"
-#: chat.php:2377
+#: index.php:2436 chat.php:2436
msgid "Colourtable"
msgstr "Barevný"
-#: chat.php:2388
+#: index.php:2447 chat.php:2447
msgid "Back to your Profile"
msgstr "Zpět do profilu"
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "Repeat password to register"
msgstr "Zopakujte heslo pro registraci"
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "(optional)"
msgstr "(volitelný)"
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Guests, choose a colour:"
msgstr "Hosté, vyberte barvu:"
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Random Colour"
msgstr "Náhodná barva"
-#: chat.php:2421 chat.php:2435 chat.php:2569
+#: index.php:2480 index.php:2494 index.php:2631 chat.php:2480 chat.php:2494
+#: chat.php:2631
msgid "Sorry, currently members only!"
msgstr "Omlouváme se, v současné době pouze členové!"
-#: chat.php:2423 chat.php:2437
+#: index.php:2482 index.php:2496 chat.php:2482 chat.php:2496
msgid "Enter Chat"
msgstr "Vstoupit"
-#: chat.php:2457
+#: index.php:2516 chat.php:2516
#, php-format
msgid "Error: %s"
msgstr "Chyba: %s"
-#: chat.php:2467
+#: index.php:2526 chat.php:2526
msgid "Fatal error"
msgstr "Fatální chyba"
-#: chat.php:2470
+#: index.php:2529 chat.php:2529
#, php-format
msgid "Fatal error: %s"
msgstr "Závažná chyba: %s"
-#: chat.php:2482 chat.php:2693
+#: index.php:2541 index.php:2756 chat.php:2541 chat.php:2756
msgid "Failed login attempt(s)"
msgstr "Neúspěšné pokusy o přihlášení"
-#: chat.php:2489
+#: index.php:2548 chat.php:2548
#, php-format
msgid "Read %d messages in your inbox"
msgstr "Přečtěte si %d zprávy ve vaší doručené poště"
-#: chat.php:2498
+#: index.php:2557 chat.php:2557
#, php-format
msgid "%d new guests to approve"
msgstr "%d noví hsté ke schválení"
-#: chat.php:2530
+#: index.php:2577 chat.php:2577
+msgid "logging out"
+msgstr ""
+
+#: index.php:2592 chat.php:2592
msgid "Admin:"
msgstr "Administrátorů:"
-#: chat.php:2533
+#: index.php:2595 chat.php:2595
msgid "Staff"
msgstr "Stnanc"
-#: chat.php:2535
+#: index.php:2597 chat.php:2597
msgid "Staff:"
msgstr "Stnanc:"
-#: chat.php:2540
+#: index.php:2602 chat.php:2602
msgid "Members:"
msgstr "Členové:"
-#: chat.php:2542
+#: index.php:2604 chat.php:2604
msgid "Guests"
msgstr "Hosté"
-#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092
+#: index.php:2625 index.php:3063 index.php:3267 index.php:4172 chat.php:2625
+#: chat.php:3063 chat.php:3267 chat.php:4172
#, php-format
msgid ""
"Invalid nickname (%1$d characters maximum and has to match the regular "
@@ -1266,7 +1321,8 @@ msgstr ""
"Neplatná přezdívka (%1$d znaků maximální a musí odpovídat regulární výraz "
"\"%2$s\")"
-#: chat.php:2566 chat.php:2996 chat.php:3162 chat.php:4094
+#: index.php:2628 index.php:3066 index.php:3232 index.php:4174 chat.php:2628
+#: chat.php:3066 chat.php:3232 chat.php:4174
#, php-format
msgid ""
"Invalid password (At least %1$d characters and has to match the regular "
@@ -1274,248 +1330,256 @@ msgid ""
msgstr ""
"Neplatné heslo (Alespoň %1$d znaků a musí odpovídat regulární výraz \"%2$s\")"
-#: chat.php:2574 chat.php:2739
+#: index.php:2636 index.php:2806 chat.php:2636 chat.php:2806
msgid "Wrong global Password!"
msgstr "Špatné globální heslo!"
-#: chat.php:2591 chat.php:2612
+#: index.php:2654 index.php:2675 chat.php:2654 chat.php:2675
msgid "Wrong Captcha"
msgstr "Špatná Captcha"
-#: chat.php:2596 chat.php:2604
+#: index.php:2659 index.php:2667 chat.php:2659 chat.php:2667
msgid "Captcha already used or timed out."
msgstr "Captcha byla již použitá nebo vypršel čas."
-#: chat.php:2652
+#: index.php:2715 chat.php:2715
msgid "A user with this nickname is already logged in."
msgstr "Uživatel s touto přezdívkou je již přihlášen."
-#: chat.php:2652 chat.php:2933 chat.php:3176
+#: index.php:2715 index.php:3003 index.php:3246 chat.php:2715 chat.php:3003
+#: chat.php:3246
msgid "Wrong Password!"
msgstr "Špatné heslo!"
-#: chat.php:2696
+#: index.php:2759 chat.php:2759
msgid "Dismiss"
msgstr "Uznal"
-#: chat.php:2747 chat.php:3171 chat.php:4096
+#: index.php:2814 index.php:3241 index.php:4176 chat.php:2814 chat.php:3241
+#: chat.php:4176
msgid "Password confirmation does not match!"
msgstr "Hesla se neshodují!"
-#: chat.php:2859
+#: index.php:2854 chat.php:2854
+#, fuzzy
+#| msgid "Kickmessage:"
+msgid "no kick message"
+msgstr "Důvod vyhození:"
+
+#: index.php:2929 chat.php:2929
msgid "Invalid/expired session"
msgstr "Neplatná/relace vypršela"
-#: chat.php:2875 chat.php:3412
+#: index.php:2945 index.php:3483 chat.php:2945 chat.php:3483
msgid "You have been kicked!"
msgstr "Byl jsi vyhozen!"
-#: chat.php:2885
+#: index.php:2955 chat.php:2955
#, php-format
msgid "Currently %d chatter(s) in room:"
msgstr "Právě teď %d chatujících v místnosti:"
-#: chat.php:2933
+#: index.php:3003 chat.php:3003
msgid "This nickname is a registered member."
msgstr "Tato přezdívka používá registrovaný člen."
-#: chat.php:2960 chat.php:3001
+#: index.php:3030 index.php:3071 chat.php:3030 chat.php:3071
#, php-format
msgid "%s is already registered."
msgstr "%s je již zaregistrovaný."
-#: chat.php:2969 chat.php:2990
+#: index.php:3039 index.php:3060 chat.php:3039 chat.php:3060
#, php-format
msgid "Can't register %s"
msgstr "Nelze zaregistrovat %s"
-#: chat.php:2978 chat.php:3023
+#: index.php:3048 index.php:3093 chat.php:3048 chat.php:3093
#, php-format
msgid "%s successfully registered."
msgstr "%s byl úspěšně zaregistrován."
-#: chat.php:3031 chat.php:3036
+#: index.php:3101 index.php:3106 chat.php:3101 chat.php:3106
#, php-format
msgid "Can't change status of %s"
msgstr "Nelze změnit status uživatele %s"
-#: chat.php:3047
+#: index.php:3117 chat.php:3117
#, php-format
msgid "%s successfully deleted from database."
msgstr "%s byl úspěšně vymazán z databáze."
-#: chat.php:3056
+#: index.php:3126 chat.php:3126
#, php-format
msgid "Status of %s successfully changed."
msgstr "Status %s byl úspěšně změněn."
-#: chat.php:3073
+#: index.php:3143 chat.php:3143
#, php-format
msgid "Successfully reset password for %s"
msgstr "Heslo pro %s bylo úspěšně resetováno"
-#: chat.php:3075
+#: index.php:3145 chat.php:3145
#, php-format
msgid "Can't reset password for %s"
msgstr "Nelze resetovat heslo pro %s"
-#: chat.php:3190
+#: index.php:3260 chat.php:3260
msgid "Your profile has successfully been saved."
msgstr "Váš profil byl úspěšně uložen."
-#: chat.php:3202
+#: index.php:3272 chat.php:3272
msgid "Nickname is already taken"
msgstr "Přezdívku již někdo používá"
-#: chat.php:3714
+#: index.php:3785 chat.php:3785
msgid "system message"
msgstr "systémová zpráva"
-#: chat.php:3921
+#: index.php:4001 chat.php:4001
msgid "Beige"
msgstr "Béžový"
-#: chat.php:3922
+#: index.php:4002 chat.php:4002
msgid "Black"
msgstr "Černý"
-#: chat.php:3923
+#: index.php:4003 chat.php:4003
msgid "Blue"
msgstr "Modrý"
-#: chat.php:3924
+#: index.php:4004 chat.php:4004
msgid "Blue violet"
msgstr "Modro-fialová"
-#: chat.php:3925
+#: index.php:4005 chat.php:4005
msgid "Brown"
msgstr "Hnědá"
-#: chat.php:3926
+#: index.php:4006 chat.php:4006
msgid "Cyan"
msgstr "Tyrkysová"
-#: chat.php:3927
+#: index.php:4007 chat.php:4007
msgid "Dark blue"
msgstr "Tmavě modrá"
-#: chat.php:3928
+#: index.php:4008 chat.php:4008
msgid "Dark green"
msgstr "Tmavě zelená"
-#: chat.php:3929
+#: index.php:4009 chat.php:4009
msgid "Dark red"
msgstr "Tmavě červená"
-#: chat.php:3930
+#: index.php:4010 chat.php:4010
msgid "Dark violet"
msgstr "Tmavě fialová"
-#: chat.php:3931
+#: index.php:4011 chat.php:4011
msgid "Sky blue"
msgstr "Modré nebe"
-#: chat.php:3932
+#: index.php:4012 chat.php:4012
msgid "Gold"
msgstr "Zlatá"
-#: chat.php:3933
+#: index.php:4013 chat.php:4013
msgid "Grey"
msgstr "Šedá"
-#: chat.php:3934
+#: index.php:4014 chat.php:4014
msgid "Green"
msgstr "Zelená"
-#: chat.php:3935
+#: index.php:4015 chat.php:4015
msgid "Hot pink"
msgstr "Hot růžová"
-#: chat.php:3936
+#: index.php:4016 chat.php:4016
msgid "Indigo"
msgstr "Indigo"
-#: chat.php:3937
+#: index.php:4017 chat.php:4017
msgid "Light blue"
msgstr "Světle modrá"
-#: chat.php:3938
+#: index.php:4018 chat.php:4018
msgid "Light green"
msgstr "Světle zelená"
-#: chat.php:3939
+#: index.php:4019 chat.php:4019
msgid "Lime green"
msgstr "Limetkově zelená"
-#: chat.php:3940
+#: index.php:4020 chat.php:4020
msgid "Magenta"
msgstr "Purpurová"
-#: chat.php:3941
+#: index.php:4021 chat.php:4021
msgid "Olive"
msgstr "Olivová"
-#: chat.php:3942
+#: index.php:4022 chat.php:4022
msgid "Orange"
msgstr "Oranžová"
-#: chat.php:3943
+#: index.php:4023 chat.php:4023
msgid "Orange red"
msgstr "Oranžově-červená"
-#: chat.php:3944
+#: index.php:4024 chat.php:4024
msgid "Purple"
msgstr "Purpurová"
-#: chat.php:3945
+#: index.php:4025 chat.php:4025
msgid "Red"
msgstr "Červená"
-#: chat.php:3946
+#: index.php:4026 chat.php:4026
msgid "Royal blue"
msgstr "Královsky modrá"
-#: chat.php:3947
+#: index.php:4027 chat.php:4027
msgid "Sea green"
msgstr "Zelené moře"
-#: chat.php:3948
+#: index.php:4028 chat.php:4028
msgid "Sienna"
msgstr "Oranžově žlutá"
-#: chat.php:3949
+#: index.php:4029 chat.php:4029
msgid "Silver"
msgstr "Stříbrný"
-#: chat.php:3950
+#: index.php:4030 chat.php:4030
msgid "Tan"
msgstr "Bronz"
-#: chat.php:3951
+#: index.php:4031 chat.php:4031
msgid "Teal"
msgstr "Teal"
-#: chat.php:3952
+#: index.php:4032 chat.php:4032
msgid "Violet"
msgstr "Fialová"
-#: chat.php:3953
+#: index.php:4033 chat.php:4033
msgid "White"
msgstr "Bílá"
-#: chat.php:3954
+#: index.php:4034 chat.php:4034
msgid "Yellow"
msgstr "Žlutá"
-#: chat.php:3955
+#: index.php:4035 chat.php:4035
msgid "Yellow green"
msgstr "Žluto zelená"
-#: chat.php:4077
+#: index.php:4157 chat.php:4157
msgid "Successfully destroyed chat"
msgstr "Chat byl úspěšně zničen"
-#: chat.php:4086
+#: index.php:4166 chat.php:4166
msgid ""
"Database tables already exist! To continue, you have to delete these tables "
"manually first."
@@ -1523,97 +1587,102 @@ msgstr ""
"Databázové tabulky již existují! Chcete-li pokračovat, musíte tyto tabulky "
"nejprve ručně odstranit."
-#: chat.php:4089
+#: index.php:4169 chat.php:4169
msgid "A Superadmin already exists!"
msgstr "Superadmin již existuje!"
-#: chat.php:4182 chat.php:4369
+#: index.php:4263 index.php:4451 chat.php:4263 chat.php:4451
#, php-format
msgid "%s - "
msgstr "%s - "
-#: chat.php:4183 chat.php:4369
+#: index.php:4264 index.php:4451 chat.php:4264 chat.php:4451
#, php-format
msgid "[M] %s - "
msgstr "[M] %s - "
-#: chat.php:4184 chat.php:4369
+#: index.php:4265 index.php:4451 chat.php:4265 chat.php:4451
#, php-format
msgid "[Staff] %s - "
msgstr "[Personál] %s - "
-#: chat.php:4185 chat.php:4369
+#: index.php:4266 index.php:4451 chat.php:4266 chat.php:4451
#, php-format
msgid "[Admin] %s - "
msgstr "[Administrátor] %s - "
-#: chat.php:4186 chat.php:4369
+#: index.php:4267 index.php:4451 chat.php:4267 chat.php:4451
#, php-format
msgid "[%1$s to %2$s] - "
msgstr "[%1$s do %2$s] - "
-#: chat.php:4187
+#: index.php:4268 chat.php:4268
#, php-format
msgid "%s entered the chat."
msgstr "%s vstoupil do chatu."
-#: chat.php:4188
+#: index.php:4269 chat.php:4269
#, php-format
msgid "%s left the chat."
msgstr "%s opustil chat."
-#: chat.php:4189
+#: index.php:4270 chat.php:4270
#, php-format
msgid "%s is now a registered member."
msgstr "%s se stal registrovaným členem."
-#: chat.php:4190
+#: index.php:4271 chat.php:4271
#, php-format
msgid "%s is now a registered applicant."
msgstr "%s je nyní registrovaným žadatelem."
-#: chat.php:4191
-#, php-format
-msgid "%s has been kicked."
+#: index.php:4272 chat.php:4272
+#, fuzzy, php-format
+#| msgid "%s has been kicked."
+msgid "%1$s has been kicked: %2$s"
msgstr "%s byl vyhozen."
-#: chat.php:4192
-#, php-format
-msgid "%s have been kicked."
+#: index.php:4273 chat.php:4273
+#, fuzzy, php-format
+#| msgid "%s have been kicked."
+msgid "%1$s have been kicked: %2$s"
msgstr "%s byli vyhozeni."
-#: chat.php:4193
-msgid "All guests have been kicked."
+#: index.php:4274 chat.php:4274
+#, fuzzy, php-format
+#| msgid "All guests have been kicked."
+msgid "All guests have been kicked: %1$s"
msgstr "Všichni hosté byli vyhozeni."
-#: chat.php:4194
+#: index.php:4275 chat.php:4275
#, php-format
msgid "%s has been cleaned."
msgstr "%s byl vyčištěn."
-#: chat.php:4202 chat.php:4396
+#: index.php:4283 index.php:4478 chat.php:4283 chat.php:4478
msgid "Temporarily disabled"
msgstr "Dočasně zakázáno"
-#: chat.php:4218 chat.php:4594
+#: index.php:4299 index.php:4676 chat.php:4299 chat.php:4676
msgid "A chat community"
msgstr "Chatovací komunita"
-#: chat.php:4256
+#: index.php:4338 chat.php:4338
msgid "Successfully registered!"
msgstr "Byl jsi úspěšně zaregistrován!"
-#: chat.php:4522 chat.php:4721 chat.php:4728
+#: index.php:4604 index.php:4807 index.php:4814 chat.php:4604 chat.php:4807
+#: chat.php:4814
msgid "No connection to database!"
msgstr "Chyba databáze!"
-#: chat.php:4531
+#: index.php:4613 chat.php:4613
msgid ""
"Note: Default CSS is now hardcoded and can be removed from the CSS setting"
msgstr ""
"Poznámka: Výchozí CSS je nyní napevno a může být odstraněn z nastavení CSS"
-#: chat.php:4611
+#: index.php:4697 chat.php:4697
#, php-format
msgid ""
"The %s extension of PHP is required for the encryption feature. Please "
@@ -1622,7 +1691,8 @@ msgstr ""
"Pro funkci šifrování je vyžadováno rozšíření PHP %s. Nejprve ho nainstalujte "
"nebo nastavte šifrované nastavení zpět na hodnotu false."
-#: chat.php:4684 chat.php:4689 chat.php:4694
+#: index.php:4770 index.php:4775 index.php:4780 chat.php:4770 chat.php:4775
+#: chat.php:4780
#, php-format
msgid ""
"The %s extension of PHP is required for the selected database driver. Please "
@@ -1631,7 +1701,8 @@ msgstr ""
"Rozšíření %s PHP je vyžadováno pro zvolený ovladač databáze. Nejprve ho "
"nainstalujte."
-#: chat.php:4707 chat.php:4715 chat.php:4719 chat.php:4726
+#: index.php:4793 index.php:4801 index.php:4805 index.php:4812 chat.php:4793
+#: chat.php:4801 chat.php:4805 chat.php:4812
msgid ""
"No connection to database, please create a database and edit the script to "
"use the correct database with given username and password!"
@@ -1639,7 +1710,7 @@ msgstr ""
"Žádné připojení k databázi, prosím vytvořte databázi a upravte script pro "
"použití správné databáze se zadaným uživatelským jménem a heslem!"
-#: chat.php:4734
+#: index.php:4820 chat.php:4820
msgid ""
"The memcached extension of PHP is required for the caching feature. Please "
"install it first or set the memcached setting back to false."
diff --git a/locale/de_DE/LC_MESSAGES/le-chat-php.po b/locale/de_DE/LC_MESSAGES/le-chat-php.po
index 4280338..2fef67c 100644
--- a/locale/de_DE/LC_MESSAGES/le-chat-php.po
+++ b/locale/de_DE/LC_MESSAGES/le-chat-php.po
@@ -7,11 +7,11 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-01-18 21:32+0100\n"
+"POT-Creation-Date: 2025-03-29 17:02+0100\n"
"PO-Revision-Date: 2023-01-22 20:45+0000\n"
"Last-Translator: Weblate Admin \n"
-"Language-Team: German \n"
+"Language-Team: German \n"
"Language: de_DE\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,266 +19,272 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.15\n"
-#: chat.php:261
+#: index.php:272 chat.php:272
msgid "Enable applicants"
msgstr "Anwerber aktivieren"
-#: chat.php:262
+#: index.php:273 index.php:2267 chat.php:273 chat.php:2267
msgid "Embed images"
msgstr "Bilder einbetten"
-#: chat.php:263 chat.php:2202
+#: index.php:274 index.php:2261 chat.php:274 chat.php:2261
msgid "Show Timestamps"
msgstr "Zeitstempel anzeigen"
-#: chat.php:264
+#: index.php:275 chat.php:275
msgid "Show session-IP"
msgstr "Sitzungs-IP anzeigen"
-#: chat.php:265
+#: index.php:276 chat.php:276
msgid "Members can kick, if no moderator is present"
msgstr "Mitglieder dürfen Rausschmeißen, wenn kein Moderator da ist"
-#: chat.php:266
+#: index.php:277 chat.php:277
msgid "Members can always kick"
msgstr "Mitglieder dürfen immer Rausschmeißen"
-#: chat.php:267
+#: index.php:278 chat.php:278
msgid "Force redirection"
msgstr "Umleitung erzwingen"
-#: chat.php:268
+#: index.php:279 index.php:2270 chat.php:279 chat.php:2270
msgid "Incognito mode"
msgstr "Inkognito Modus"
-#: chat.php:269
+#: index.php:280 chat.php:280
msgid "Send mail on new public message"
msgstr "E-Mail bei neuer Nachricht senden"
-#: chat.php:270
+#: index.php:281 chat.php:281
msgid "Fallback to waiting room, if no moderator is present to approve guests"
msgstr ""
"Auf Warteraum zurückgreifen, falls kein Moderator anwesend ist, um Gäste "
"herein zu lassen"
-#: chat.php:271
+#: index.php:282 chat.php:282
msgid "Disable private messages"
msgstr "Private Nachrichten deaktivieren"
-#: chat.php:272 chat.php:2223
+#: index.php:283 index.php:2282 chat.php:283 chat.php:2282
msgid "Enable offline inbox"
msgstr "Offline Posteingang aktivieren"
-#: chat.php:273
+#: index.php:284 chat.php:284
msgid "Show a greeting message before showing the messages"
msgstr ""
"Zeige eine Begrüßungsnachricht an, bevor die Nachrichten geladen werden"
-#: chat.php:274 chat.php:2204
+#: index.php:285 index.php:2263 chat.php:285 chat.php:2263
msgid "Sort messages from top to bottom"
msgstr "Nachrichten von oben nach unten sortieren"
-#: chat.php:275 chat.php:2205
+#: index.php:286 index.php:2264 chat.php:286 chat.php:2264
msgid "Hide list of chatters"
msgstr "Teilnehmerlist ausblenden"
-#: chat.php:276 chat.php:1780 chat.php:1794
+#: index.php:287 index.php:1837 index.php:1851 chat.php:287 chat.php:1837
+#: chat.php:1851
msgid "Personal notes"
msgstr "Persönliche Notizen"
-#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110
+#: index.php:288 index.php:1840 index.php:1854 index.php:2169 chat.php:288
+#: chat.php:1840 chat.php:1854 chat.php:2169
msgid "Public notes"
msgstr "Öffentliche Notizen"
-#: chat.php:278
+#: index.php:289 chat.php:289
msgid "Apply kick filter on moderators"
msgstr "Kickfilter auf Moderatoren anwenden"
-#: chat.php:279
+#: index.php:290 chat.php:290
msgid "Show who kicks people or purges all messages."
msgstr "Zeigen Sie, wer Menschen vertreibt oder alle Nachrichten löscht."
-#: chat.php:280
+#: index.php:291 chat.php:291
msgid "Hide reload post box button"
msgstr "Postbox neu Laden Knopf verstecken"
-#: chat.php:281
+#: index.php:292 chat.php:292
msgid "Hide reload messages button"
msgstr "Nachrichten neu laden Knopf verstecken"
-#: chat.php:282
+#: index.php:293 chat.php:293
msgid "Hide profile button"
msgstr "Profil-Knopf verstecken"
-#: chat.php:283
+#: index.php:294 chat.php:294
msgid "Hide admin button"
msgstr "Admin-Knopf verstecken"
-#: chat.php:284
+#: index.php:295 chat.php:295
msgid "Hide notes button"
msgstr "Notizen-Knopf verstecken"
-#: chat.php:285
+#: index.php:296 chat.php:296
msgid "Hide clone button"
msgstr "Klonen-Knopf verstecken"
-#: chat.php:286
+#: index.php:297 chat.php:297
msgid "Hide rearrange button"
msgstr "Umordnen-Knopf verstecken"
-#: chat.php:287
+#: index.php:298 chat.php:298
msgid "Hide help button"
msgstr "Hilfe-Knopf verstecken"
-#: chat.php:288
+#: index.php:299 chat.php:299
msgid "Apply postbox delete button globally"
msgstr "Postbox Löschknöpfe global anwenden"
-#: chat.php:289
+#: index.php:300 chat.php:300
msgid "Allow enhancing functionality with JavaScript"
msgstr "Verbessern der Funktionalität mit JavaScript erlauben"
-#: chat.php:292 chat.php:2170
+#: index.php:303 index.php:2229 chat.php:303 chat.php:2229
msgid "Background colour"
msgstr "Hintergrundfarbe"
-#: chat.php:293 chat.php:2167
+#: index.php:304 index.php:2226 chat.php:304 chat.php:2226
msgid "Font colour"
msgstr "Schriftfarbe"
-#: chat.php:296
+#: index.php:307 chat.php:307
msgid "Entrance"
msgstr "Eintritt"
-#: chat.php:297
+#: index.php:308 chat.php:308
msgid "Leaving"
msgstr "Verlassen"
-#: chat.php:298
+#: index.php:309 chat.php:309
msgid "Member registered"
msgstr "Mitglied registriert"
-#: chat.php:299
+#: index.php:310 chat.php:310
msgid "Applicant registered"
msgstr "Anwerber registriert"
-#: chat.php:300
+#: index.php:311 chat.php:311
msgid "Kicked"
msgstr "Rauswurf"
-#: chat.php:301
+#: index.php:312 chat.php:312
msgid "Multiple kicked"
msgstr "Mehrere rausgeworfen"
-#: chat.php:302
+#: index.php:313 chat.php:313
msgid "All kicked"
msgstr "Alle rausgeworfen"
-#: chat.php:303
+#: index.php:314 chat.php:314
msgid "Room cleaned"
msgstr "Raum geleert"
-#: chat.php:304
+#: index.php:315 chat.php:315
msgid "Message to all"
msgstr "Nachricht an alle"
-#: chat.php:305
+#: index.php:316 chat.php:316
msgid "Message to members only"
msgstr "Nachricht nur an Mitglieder"
-#: chat.php:306
+#: index.php:317 chat.php:317
msgid "Message to staff only"
msgstr "Nachricht nur an Moderatoren"
-#: chat.php:307
+#: index.php:318 chat.php:318
msgid "Message to admins only"
msgstr "Nachricht nur an Admins"
-#: chat.php:308
+#: index.php:319 chat.php:319
msgid "Private message"
msgstr "Private Nachricht"
-#: chat.php:309
+#: index.php:320 chat.php:320
msgid "Attachement"
msgstr "Anhang"
-#: chat.php:312
+#: index.php:323 chat.php:323
msgid "Member timeout (minutes)"
msgstr "Mitglieder-Ablaufzeit (Minuten)"
-#: chat.php:313
+#: index.php:324 chat.php:324
msgid "Guest timeout (minutes)"
msgstr "Gast-Ablaufzeit (Minuten)"
-#: chat.php:314
+#: index.php:325 chat.php:325
msgid "Kick penalty (minutes)"
msgstr "Rausschmiss-Strafzeit (Minuten)"
-#: chat.php:315
+#: index.php:326 chat.php:326
msgid "Waiting room time (seconds)"
msgstr "Warteraum-Zeit (Sekunden)"
-#: chat.php:316
+#: index.php:327 chat.php:327
+msgid "Logout delay (seconds)"
+msgstr ""
+
+#: index.php:328 chat.php:328
msgid "Captcha timeout (seconds)"
msgstr "Captcha-Ablaufzeit (Sekunden)"
-#: chat.php:317
+#: index.php:329 chat.php:329
msgid "Message timeout (minutes)"
msgstr "Nachrichten-Ablaufzeit (Minuten)"
-#: chat.php:318
+#: index.php:330 chat.php:330
msgid "Message limit (public)"
msgstr "Nachrichtenlimit (öffentliche)"
-#: chat.php:319
+#: index.php:331 chat.php:331
msgid "Maximal message length"
msgstr "Maximale Nachrichenlänge"
-#: chat.php:320
+#: index.php:332 chat.php:332
msgid "Maximal nickname length"
msgstr "Maximale Nicknamen-Länge"
-#: chat.php:321
+#: index.php:333 chat.php:333
msgid "Minimal password length"
msgstr "Minimale Passwortlänge"
-#: chat.php:322
+#: index.php:334 chat.php:334
msgid "Default message reload time (seconds)"
msgstr "Standardzeit zum Neuladen der Nachrichten (Sekunden)"
-#: chat.php:323
+#: index.php:335 chat.php:335
msgid "Number of notes revisions to keep"
msgstr "Anzahl an zu behaltenden Notizversionen"
-#: chat.php:324
+#: index.php:336 chat.php:336
msgid "Maximum upload size in KB"
msgstr "Maximal hochgeladene Dateigröße in KB"
-#: chat.php:325
+#: index.php:337 chat.php:337
msgid "Enable file uploads"
msgstr "Dateien hochladen aktivieren"
-#: chat.php:326
+#: index.php:338 chat.php:338
msgid "Lowest refresh rate"
msgstr "Niedrigste Aktualisierungsrate"
-#: chat.php:327
+#: index.php:339 chat.php:339
msgid "Highest refresh rate"
msgstr "Höchste Aktualisierungsrate"
-#: chat.php:330
+#: index.php:342 chat.php:342
msgid "Rules (html)"
msgstr "Regeln (html)"
-#: chat.php:331
+#: index.php:343 chat.php:343
msgid "CSS Style"
msgstr "CSS Style"
-#: chat.php:332
+#: index.php:344 chat.php:344
msgid "Chat disabled message (html)"
msgstr "Chat deaktiviert Nachricht (html)"
-#: chat.php:335
+#: index.php:347 chat.php:347
msgid ""
"Date "
@@ -288,88 +294,96 @@ msgstr ""
"php#refsect1-function.date-parameters\" rel=\"noopener noreferrer\">Datums-"
"Formatierung"
-#: chat.php:336
+#: index.php:348 chat.php:348
msgid "Characters used in Captcha"
msgstr "Im Captcha benutzte Zeichen"
-#: chat.php:337
+#: index.php:349 chat.php:349
msgid "Custom redirection script"
msgstr "Benutzerdefinierte Umleitungsadresse"
-#: chat.php:338
+#: index.php:350 chat.php:350
msgid "Chat name"
msgstr "Chatname"
-#: chat.php:339
+#: index.php:351 chat.php:351
msgid "Send mail using this address"
msgstr "E-Mail mit dieser Adresse versenden"
-#: chat.php:340
+#: index.php:352 chat.php:352
msgid "Send mail to this address"
msgstr "E-Mail an diese Adresse senden"
-#: chat.php:341
+#: index.php:353 chat.php:353
msgid "Nickname regex"
msgstr "Nickname-Regex"
-#: chat.php:342
+#: index.php:354 chat.php:354
msgid "Password regex"
msgstr "Passwort-Regex"
-#: chat.php:343
+#: index.php:355 chat.php:355
msgid "Link to external CSS file (on your own server)"
msgstr "Link zu externer CSS Datei (auf Ihrem eigenen Server)"
-#: chat.php:344
+#: index.php:356 chat.php:356
msgid "Meta description (best 50 - 160 characters for SEO)"
msgstr "Metabeschreibung (Am Besten 50 - 160 Zeichen für SEO)"
-#: chat.php:345
+#: index.php:357 chat.php:357
+msgid "Show this text when a user's logout is delayed"
+msgstr ""
+
+#: index.php:358 chat.php:358
msgid "Prepend this text to system messages"
msgstr "Dieser Text geht Nachrichten aus dem System voraus"
-#: chat.php:348 chat.php:728 chat.php:1225
+#: index.php:361 index.php:780 index.php:1282 chat.php:361 chat.php:780
+#: chat.php:1282
msgid "Change Guestaccess"
msgstr "Gastzugriff ändern"
-#: chat.php:349
+#: index.php:362 chat.php:362
msgid "Enable global Password"
msgstr "Globales Passwort aktivieren"
-#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433
+#: index.php:363 index.php:810 index.php:2474 index.php:2492 chat.php:363
+#: chat.php:810 chat.php:2474 chat.php:2492
msgid "Global Password:"
msgstr "Globales Passwort:"
-#: chat.php:351 chat.php:819
+#: index.php:364 index.php:871 chat.php:364 chat.php:871
msgid "Captcha"
msgstr "Captcha"
-#: chat.php:352 chat.php:775 chat.php:835
+#: index.php:365 index.php:827 index.php:887 chat.php:365 chat.php:827
+#: chat.php:887
msgid "Only for guests"
msgstr "Nur für Gäste"
-#: chat.php:353 chat.php:1220
+#: index.php:366 index.php:1277 chat.php:366 chat.php:1277
msgid "Topic"
msgstr "Thema"
-#: chat.php:354 chat.php:781
+#: index.php:367 index.php:833 chat.php:367 chat.php:833
msgid "Let guests register themselves"
msgstr "Gäste sich selbst registrieren lassen"
-#: chat.php:355 chat.php:862
+#: index.php:368 index.php:919 chat.php:368 chat.php:919
msgid "Default time zone"
msgstr "Standard Zeitzone"
-#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259
+#: index.php:581 index.php:1157 index.php:4158 index.php:4341 chat.php:581
+#: chat.php:1157 chat.php:4158 chat.php:4341
msgid "Initial Setup"
msgstr "Erste Einrichtung"
-#: chat.php:588
+#: index.php:601 chat.php:601
#, php-format
msgid "Redirecting to: %s"
msgstr "Leite weiter zu: %s"
-#: chat.php:595
+#: index.php:608 chat.php:608
#, php-format
msgid ""
"Dangerous non-http link requested, copy paste this link if you are really "
@@ -378,79 +392,82 @@ msgstr ""
"Gefährliche nicht-http Adresse angefordert. Kopieren Sie diesen Link und "
"fügen ihn ein, falls Sie wirklich sicher sind: %s"
-#: chat.php:597
+#: index.php:610 chat.php:610
#, php-format
msgid "Non-http link requested: %s"
msgstr "Nicht-http Adresse angefordert: %s"
-#: chat.php:599
+#: index.php:612 chat.php:612
#, php-format
msgid "If it's not working, try this one: %s"
msgstr "Wenn sie nicht funktioniert, probiere diese: %s"
-#: chat.php:609
+#: index.php:622 chat.php:622
msgid "Access denied"
msgstr "Zugriff verweigert"
-#: chat.php:609
+#: index.php:622 chat.php:622
#, php-format
msgid "You are logged in as %s and don't have access to this section."
msgstr ""
"Sie sind als %s angemeldet und haben keinen Zugriff auf diesen Bereich."
-#: chat.php:611 chat.php:915 chat.php:1211 chat.php:1393
+#: index.php:624 index.php:972 index.php:1268 index.php:1450 chat.php:624
+#: chat.php:972 chat.php:1268 chat.php:1450
msgid "Logout"
msgstr "Abmelden"
-#: chat.php:636
+#: index.php:649 chat.php:649
msgid "Copy:"
msgstr "Kopiere:"
-#: chat.php:724
+#: index.php:776 chat.php:776
msgid "Chat Setup"
msgstr "Chat Einrichtung"
-#: chat.php:734 chat.php:1233
+#: index.php:786 index.php:1290 chat.php:786 chat.php:1290
msgid "Allow"
msgstr "Erlauben"
-#: chat.php:739 chat.php:1238
+#: index.php:791 index.php:1295 chat.php:791 chat.php:1295
msgid "Allow with waitingroom"
msgstr "Mit Warteraum erlauben"
-#: chat.php:744 chat.php:1243
+#: index.php:796 index.php:1300 chat.php:796 chat.php:1300
msgid "Require moderator approval"
msgstr "Moderator-Erlaubnis benötigen"
-#: chat.php:749 chat.php:1248
+#: index.php:801 index.php:1305 chat.php:801 chat.php:1305
msgid "Only members"
msgstr "Nur Mitglieder"
-#: chat.php:754 chat.php:1251
+#: index.php:806 index.php:1308 chat.php:806 chat.php:1308
msgid "Disable chat"
msgstr "Chat deaktivieren"
-#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229
+#: index.php:817 index.php:839 index.php:894 index.php:953 index.php:2288
+#: chat.php:817 chat.php:839 chat.php:894 chat.php:953 chat.php:2288
msgid "Disabled"
msgstr "Deaktiviert"
-#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219
+#: index.php:822 index.php:882 index.php:958 index.php:2278 chat.php:822
+#: chat.php:882 chat.php:958 chat.php:2278
msgid "Enabled"
msgstr "Aktiviert"
-#: chat.php:792
+#: index.php:844 chat.php:844
msgid "As applicant"
msgstr "Als Anwerber"
-#: chat.php:797
+#: index.php:849 chat.php:849
msgid "As member"
msgstr "Als Mitglied"
-#: chat.php:800
+#: index.php:852 chat.php:852
msgid "System messages"
msgstr "Systemnachrichten"
-#: chat.php:822 chat.php:1053
+#: index.php:874 index.php:1110 chat.php:874 chat.php:1110
#, php-format
msgid ""
"The %s extension of PHP is required for this feature. Please install it "
@@ -459,120 +476,135 @@ msgstr ""
"Für diese Funktion wird die %s PHP-Erweiterung benötigt. Bitte installieren "
"Sie diese zuerst."
-#: chat.php:847
+#: index.php:899 chat.php:899
msgid "Simple"
msgstr "Einfach"
-#: chat.php:852
+#: index.php:904 chat.php:904
msgid "Moderate"
msgstr "Mittel"
-#: chat.php:857
+#: index.php:909 chat.php:909
+msgid "Hard"
+msgstr ""
+
+#: index.php:914 chat.php:914
msgid "Extreme"
msgstr "Extrem"
-#: chat.php:906 chat.php:1548 chat.php:1610
+#: index.php:963 index.php:1605 index.php:1667 chat.php:963 chat.php:1605
+#: chat.php:1667
msgid "Apply"
msgstr "Anwenden"
-#: chat.php:910 chat.php:1050
+#: index.php:967 index.php:1107 chat.php:967 chat.php:1107
msgid "Backup and restore"
msgstr "Sichern und wiederherstellen"
-#: chat.php:912
+#: index.php:969 chat.php:969
msgid "Destroy chat"
msgstr "Chat zerstören"
-#: chat.php:1057 chat.php:1066
+#: index.php:1114 index.php:1123 chat.php:1114 chat.php:1123
msgid "Settings"
msgstr "Einstellungen"
-#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575
-#: chat.php:1622
+#: index.php:1115 index.php:1124 index.php:1269 index.php:1595 index.php:1632
+#: index.php:1679 chat.php:1115 chat.php:1124 chat.php:1269 chat.php:1595
+#: chat.php:1632 chat.php:1679
msgid "Filter"
msgstr "Filter"
-#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538
+#: index.php:1116 index.php:1125 index.php:1325 index.php:2600 chat.php:1116
+#: chat.php:1125 chat.php:1325 chat.php:2600
msgid "Members"
msgstr "Mitglieder"
-#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322
+#: index.php:1117 index.php:1126 index.php:2373 index.php:2381 chat.php:1117
+#: chat.php:1126 chat.php:2373 chat.php:2381
msgid "Notes"
msgstr "Notizen"
-#: chat.php:1061
+#: index.php:1118 chat.php:1118
msgid "Backup"
msgstr "Sichern"
-#: chat.php:1070
+#: index.php:1127 chat.php:1127
msgid "Restore"
msgstr "Wiederherstellen"
-#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260
+#: index.php:1131 index.php:1174 index.php:1212 index.php:1242 index.php:4342
+#: chat.php:1131 chat.php:1174 chat.php:1212 chat.php:1242 chat.php:4342
msgid "Go to the Setup-Page"
msgstr "Zur Einrichtungsseite gehen"
-#: chat.php:1082 chat.php:1091 chat.php:1949
+#: index.php:1139 index.php:1148 index.php:2006 chat.php:1139 chat.php:1148
+#: chat.php:2006
msgid "Are you sure?"
msgstr "Sind Sie sicher?"
-#: chat.php:1083 chat.php:1092 chat.php:1956
+#: index.php:1140 index.php:1149 index.php:2013 chat.php:1140 chat.php:1149
+#: chat.php:2013
msgid "Yes"
msgstr "Ja"
-#: chat.php:1084 chat.php:1093 chat.php:1963
+#: index.php:1141 index.php:1150 index.php:2020 chat.php:1141 chat.php:1150
+#: chat.php:2020
msgid "No"
msgstr "Nein"
-#: chat.php:1101 chat.php:4259
+#: index.php:1158 index.php:4341 chat.php:1158 chat.php:4341
msgid "Superadmin Login"
msgstr "Superadmin Anmeldung"
-#: chat.php:1102
+#: index.php:1159 chat.php:1159
msgid "Superadmin Nickname:"
msgstr "Superadmin Nickname:"
-#: chat.php:1103
+#: index.php:1160 chat.php:1160
msgid "Superadmin Password:"
msgstr "Superadmin Passwort:"
-#: chat.php:1104
+#: index.php:1161 chat.php:1161
msgid "Confirm Password:"
msgstr "Passwort bestätigen:"
-#: chat.php:1105
+#: index.php:1162 chat.php:1162
msgid "Initialise Chat"
msgstr "Chat initalisieren"
-#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439
+#: index.php:1163 index.php:1187 index.php:1213 index.php:2336 index.php:2498
+#: chat.php:1163 chat.php:1187 chat.php:1213 chat.php:2336 chat.php:2498
msgid "Change language:"
msgstr "Sprache ändern:"
-#: chat.php:1117
+#: index.php:1174 chat.php:1174
msgid "Database successfully updated!"
msgstr "Datenbank erfolgreich aktualisiert!"
-#: chat.php:1125 chat.php:1326 chat.php:2407
+#: index.php:1182 index.php:1383 index.php:2466 chat.php:1182 chat.php:1383
+#: chat.php:2466
msgid "Nickname:"
msgstr "Nickname:"
-#: chat.php:1126 chat.php:1327 chat.php:2408
+#: index.php:1183 index.php:1384 index.php:2467 chat.php:1183 chat.php:1384
+#: chat.php:2467
msgid "Password:"
msgstr "Passwort:"
-#: chat.php:1128
+#: index.php:1185 chat.php:1185
msgid "Login"
msgstr "Anmelden"
-#: chat.php:1129
+#: index.php:1186 chat.php:1186
msgid "Forgot login?"
msgstr "Zugangsdaten vergessen?"
-#: chat.php:1142 chat.php:1306
+#: index.php:1199 index.php:1363 chat.php:1199 chat.php:1363
msgid "Reset password"
msgstr "Passwort zurücksetzen"
-#: chat.php:1150
+#: index.php:1207 chat.php:1207
#, php-format
msgid ""
"Successfully reset password for username %s. Please remove the password "
@@ -581,7 +613,7 @@ msgstr ""
"Passwort erfolgreich für Nutzer %s zurückgesetzt. Bitte entfernen Sie das "
"Passwort zurücksetzen define wieder aus dem Skript."
-#: chat.php:1153
+#: index.php:1210 chat.php:1210
msgid ""
"Please modify the script and put the following at the bottom of it (change "
"the password). Then refresh this page: define('RESET_SUPERADMIN_PASSWORD', "
@@ -591,165 +623,171 @@ msgstr ""
"hinzu (und ändern Sie das Passwort \"changeme\"). Danach aktualisieren Sie "
"die Seite bitte: define('RESET_SUPERADMIN_PASSWORD', 'changeme');"
-#: chat.php:1169 chat.php:1193 chat.php:1258 chat.php:1270 chat.php:1294
-#: chat.php:1308 chat.php:1316 chat.php:2145 chat.php:2153
+#: index.php:1226 index.php:1250 index.php:1315 index.php:1327 index.php:1351
+#: index.php:1365 index.php:1373 index.php:2204 index.php:2212 chat.php:1226
+#: chat.php:1250 chat.php:1315 chat.php:1327 chat.php:1351 chat.php:1365
+#: chat.php:1373 chat.php:2204 chat.php:2212
msgid "(choose)"
msgstr "(auswählen)"
-#: chat.php:1170
+#: index.php:1227 chat.php:1227
msgid "All guests"
msgstr "Alle Gäste"
-#: chat.php:1182
+#: index.php:1239 chat.php:1239
msgid "Administrative functions"
msgstr "Administrative Funktionen"
-#: chat.php:1188
+#: index.php:1245 chat.php:1245
msgid "Clean messages"
msgstr "Nachrichten löschen"
-#: chat.php:1191
+#: index.php:1248 chat.php:1248
msgid "Whole room"
msgstr "Gesamten Raum"
-#: chat.php:1192
+#: index.php:1249 chat.php:1249
msgid "Selection"
msgstr "Auswahl"
-#: chat.php:1193
+#: index.php:1250 chat.php:1250
msgid "Following nickname:"
msgstr "Folgender Nickname:"
-#: chat.php:1200
+#: index.php:1257 chat.php:1257
msgid "Clean"
msgstr "Löschen"
-#: chat.php:1202
+#: index.php:1259 chat.php:1259
#, php-format
msgid "Kick Chatter (%d minutes)"
msgstr "Teilnehmer rausschmeißen (%d Minuten)"
-#: chat.php:1204
+#: index.php:1261 chat.php:1261
msgid "Kickmessage:"
msgstr "Begründung:"
-#: chat.php:1205
+#: index.php:1262 chat.php:1262
msgid "Purge messages"
msgstr "Nachrichten löschen"
-#: chat.php:1206 chat.php:1388 chat.php:1546 chat.php:1580 chat.php:1591
-#: chat.php:2042
+#: index.php:1263 index.php:1445 index.php:1603 index.php:1637 index.php:1648
+#: index.php:2101 chat.php:1263 chat.php:1445 chat.php:1603 chat.php:1637
+#: chat.php:1648 chat.php:2101
msgid "Kick"
msgstr "Rausschmeißen"
-#: chat.php:1208
+#: index.php:1265 chat.php:1265
msgid "Logout inactive Chatter"
msgstr "Inaktive Teilnehmer abmelden"
-#: chat.php:1212
+#: index.php:1269 chat.php:1269
msgid "View active sessions"
msgstr "Aktive Sitzungen anzeigen"
-#: chat.php:1212 chat.php:1603
+#: index.php:1269 index.php:1660 chat.php:1269 chat.php:1660
msgid "Linkfilter"
msgstr "Linkfilter"
-#: chat.php:1217
+#: index.php:1274 chat.php:1274
msgid "View"
msgstr "Anzeigen"
-#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582
-#: chat.php:1626
+#: index.php:1280 index.php:1310 index.php:1361 index.php:1369 index.php:1639
+#: index.php:1683 chat.php:1280 chat.php:1310 chat.php:1361 chat.php:1369
+#: chat.php:1639 chat.php:1683
msgid "Change"
msgstr "Ändern"
-#: chat.php:1256
+#: index.php:1313 chat.php:1313
msgid "Register applicant"
msgstr "Anwerber registrieren"
-#: chat.php:1264 chat.php:1322 chat.php:1328
+#: index.php:1321 index.php:1379 index.php:1385 chat.php:1321 chat.php:1379
+#: chat.php:1385
msgid "Register"
msgstr "Registrieren"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Delete from database"
msgstr "Aus der Datenbank löschen"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Deny access (!)"
msgstr "Zugriff verweigern (!)"
-#: chat.php:1296
+#: index.php:1353 chat.php:1353
msgid "Set to applicant (SG)"
msgstr "Zu Anwerber machen (SG)"
-#: chat.php:1298
+#: index.php:1355 chat.php:1355
msgid "Set to regular member"
msgstr "Zu regulärem Mitglied machen"
-#: chat.php:1299
+#: index.php:1356 chat.php:1356
msgid "Set to moderator (M)"
msgstr "Zu Moderator machen (M)"
-#: chat.php:1300
+#: index.php:1357 chat.php:1357
msgid "Set to supermod (SM)"
msgstr "Zu Supermod machen (SM)"
-#: chat.php:1302
+#: index.php:1359 chat.php:1359
msgid "Set to admin (A)"
msgstr "Zu Admin machen (A)"
-#: chat.php:1314
+#: index.php:1371 chat.php:1371
msgid "Register Guest"
msgstr "Gast registrieren"
-#: chat.php:1324
+#: index.php:1381 chat.php:1381
msgid "Register new Member"
msgstr "Mitglied registrieren"
-#: chat.php:1332 chat.php:1408 chat.php:1595 chat.php:1636 chat.php:1710
-#: chat.php:1924
+#: index.php:1389 index.php:1465 index.php:1652 index.php:1693 index.php:1767
+#: index.php:1981 chat.php:1389 chat.php:1465 chat.php:1652 chat.php:1693
+#: chat.php:1767 chat.php:1981
msgid "Reload"
msgstr "Aktualisieren"
-#: chat.php:1345
+#: index.php:1402 chat.php:1402
msgid "Active Sessions"
msgstr "Aktive Sitzungen"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "Nickname"
msgstr "Nickname"
-#: chat.php:1346
+#: index.php:1403 chat.php:1403
msgid "Timeout in"
msgstr "Ablauf in"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "User-Agent"
msgstr "User-Agent"
-#: chat.php:1350
+#: index.php:1407 chat.php:1407
msgid "IP-Address"
msgstr "IP-Adresse"
-#: chat.php:1351
+#: index.php:1408 chat.php:1408
msgid "Actions"
msgstr "Aktionen"
-#: chat.php:1393
+#: index.php:1450 chat.php:1450
msgid "Unban"
msgstr "Entsperren"
-#: chat.php:1416
+#: index.php:1473 chat.php:1473
msgid "Incorrect regular expression!"
msgstr "Ungültiger regulärer Ausdruck!"
-#: chat.php:1416 chat.php:1424
+#: index.php:1473 index.php:1481 chat.php:1473 chat.php:1481
#, php-format
msgid "Your match was as follows: %s"
msgstr "Ihr Match war folgender: %s"
-#: chat.php:1424
+#: index.php:1481 chat.php:1481
msgid ""
"Your match was too long. You can use max. 255 characters. Try splitting it "
"up."
@@ -757,40 +795,43 @@ msgstr ""
"Ihre Entsprechung war zu lang. Sie können max. 255 Zeichen benutzen. "
"Versuchen Sie diesen aufzuteilen."
-#: chat.php:1541 chat.php:1606
+#: index.php:1598 index.php:1663 chat.php:1598 chat.php:1663
msgid "Filter ID:"
msgstr "Filter ID:"
-#: chat.php:1542 chat.php:1607
+#: index.php:1599 index.php:1664 chat.php:1599 chat.php:1664
msgid "Match"
msgstr "Entsprechung"
-#: chat.php:1543 chat.php:1608
+#: index.php:1600 index.php:1665 chat.php:1600 chat.php:1665
msgid "Replace"
msgstr "Ersetzen"
-#: chat.php:1544 chat.php:1578 chat.php:1589
+#: index.php:1601 index.php:1635 index.php:1646 chat.php:1601 chat.php:1635
+#: chat.php:1646
msgid "Allow in PM"
msgstr "In PM zulassen"
-#: chat.php:1545 chat.php:1579 chat.php:1590 chat.php:1609 chat.php:1625
-#: chat.php:1633
+#: index.php:1602 index.php:1636 index.php:1647 index.php:1666 index.php:1682
+#: index.php:1690 chat.php:1602 chat.php:1636 chat.php:1647 chat.php:1666
+#: chat.php:1682 chat.php:1690
msgid "Regex"
msgstr "Regex"
-#: chat.php:1547 chat.php:1581 chat.php:1592
+#: index.php:1604 index.php:1638 index.php:1649 chat.php:1604 chat.php:1638
+#: chat.php:1649
msgid "Case sensitive"
msgstr "Groß-/Kleinschreibung beachten"
-#: chat.php:1586 chat.php:1630
+#: index.php:1643 index.php:1687 chat.php:1643 chat.php:1687
msgid "New filter:"
msgstr "Neuer Filter:"
-#: chat.php:1593 chat.php:1634
+#: index.php:1650 index.php:1691 chat.php:1650 chat.php:1691
msgid "Add"
msgstr "Hinzufügen"
-#: chat.php:1691
+#: index.php:1748 chat.php:1748
msgid ""
"This chat uses frames. Please enable frames in your browser or use a "
"suitable one!"
@@ -798,96 +839,99 @@ msgstr ""
"Dieser Chat benutzt Frames. Bitte aktivieren Sie Frames in Ihrem "
"Browser oder benutzen Sie einen dafür geeigneten!"
-#: chat.php:1691 chat.php:2370 chat.php:2457
+#: index.php:1748 index.php:2429 index.php:2516 chat.php:1748 chat.php:2429
+#: chat.php:2516
msgid "Back to the login page."
msgstr "Zurück zur Anmeldeseite."
-#: chat.php:1709
+#: index.php:1766 chat.php:1766
msgid "Bottom"
msgstr "Unten"
-#: chat.php:1710
+#: index.php:1767 chat.php:1767
msgid "Manual refresh required"
msgstr "Manuelles Neuladen erforderlich"
-#: chat.php:1726
+#: index.php:1783 chat.php:1783
msgid "Top"
msgstr "Oben"
-#: chat.php:1734 chat.php:1940 chat.php:1942
+#: index.php:1791 index.php:1997 index.php:1999 chat.php:1791 chat.php:1997
+#: chat.php:1999
msgid "Delete selected messages"
msgstr "Ausgewählte Nachrichten löschen"
-#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281
+#: index.php:1818 index.php:1945 index.php:2160 index.php:2340 chat.php:1818
+#: chat.php:1945 chat.php:2160 chat.php:2340
msgid "Back to the chat."
msgstr "Zurück zum Chat."
-#: chat.php:1774 chat.php:1791
+#: index.php:1831 index.php:1848 chat.php:1831 chat.php:1848
msgid "Admin notes"
msgstr "Adminnotizen"
-#: chat.php:1777 chat.php:1788
+#: index.php:1834 index.php:1845 chat.php:1834 chat.php:1845
msgid "Staff notes"
msgstr "Moderatornotizen"
-#: chat.php:1811
+#: index.php:1868 chat.php:1868
msgid "Notes saved!"
msgstr "Notizen gespeichert!"
-#: chat.php:1835 chat.php:2122
+#: index.php:1892 index.php:2181 chat.php:1892 chat.php:2181
#, php-format
msgid "Last edited by %1$s at %2$s"
msgstr "Zuletzt bearbeitet von %1$s um %2$s"
-#: chat.php:1848
+#: index.php:1905 chat.php:1905
msgid "Save notes"
msgstr "Notizen speichern"
-#: chat.php:1850
+#: index.php:1907 chat.php:1907
msgid "Revisions:"
msgstr "Revisionen:"
-#: chat.php:1853
+#: index.php:1910 chat.php:1910
msgid "Older"
msgstr "Älter"
-#: chat.php:1857
+#: index.php:1914 chat.php:1914
msgid "Newer"
msgstr "Neuer"
-#: chat.php:1868 chat.php:1914
+#: index.php:1925 index.php:1971 chat.php:1925 chat.php:1971
msgid "Waiting room"
msgstr "Warteraum"
-#: chat.php:1880
+#: index.php:1937 chat.php:1937
msgid "Allow checked"
msgstr "Ausgewählte erlauben"
-#: chat.php:1881
+#: index.php:1938 chat.php:1938
msgid "Allow all"
msgstr "Alle erlauben"
-#: chat.php:1882
+#: index.php:1939 chat.php:1939
msgid "Deny checked"
msgstr "Ausgewählte abweisen"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Deny all"
msgstr "Alle abweisen"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Send message to denied:"
msgstr "Nachricht an abgewiesene senden:"
-#: chat.php:1884
+#: index.php:1941 chat.php:1941
msgid "Submit"
msgstr "Senden"
-#: chat.php:1886
+#: index.php:1943 chat.php:1943
msgid "No more entry requests to approve."
msgstr "Keine weiteren Beitrittsanfragen zu akzeptieren."
-#: chat.php:1916
+#: index.php:1973 chat.php:1973
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat in %2$d "
@@ -896,7 +940,7 @@ msgstr ""
"Wilkommen %1$s, Ihre Anmeldung wurde verzögert, Sie können den Chat in %2$d "
"Sekunden benutzen."
-#: chat.php:1918
+#: index.php:1975 chat.php:1975
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat as soon, "
@@ -905,7 +949,7 @@ msgstr ""
"Wilkommen %1$s, Ihre Anmeldung wurde verzögert, Sie können den Chat "
"benutzen, sobald ein Moderator Sie hereinlässt."
-#: chat.php:1921
+#: index.php:1978 chat.php:1978
#, php-format
msgid ""
"If this page doesn't refresh every %d seconds, use the button below to "
@@ -914,64 +958,69 @@ msgstr ""
"Wenn diese Seite sich nicht alle %d Sekunden aktualisiert, benutze den Knopf "
"unten, um die Seite manuell neu zu laden!"
-#: chat.php:1926 chat.php:2339
+#: index.php:1983 index.php:2398 chat.php:1983 chat.php:2398
msgid "Exit Chat"
msgstr "Verlassen"
-#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430
+#: index.php:1986 index.php:2133 index.php:2144 index.php:2489 chat.php:1986
+#: chat.php:2133 chat.php:2144 chat.php:2489
msgid "Rules"
msgstr "Regeln"
-#: chat.php:1985
+#: index.php:2042 chat.php:2042
msgid "Send to"
msgstr "Senden an"
-#: chat.php:1990
+#: index.php:2047 chat.php:2047
msgid "All chatters"
msgstr "Alle Teilnehmer"
-#: chat.php:1996
+#: index.php:2053 chat.php:2053
msgid "Members only"
msgstr "Nur Mitglieder"
-#: chat.php:2003
+#: index.php:2060 chat.php:2060
msgid "Staff only"
msgstr "Nur Moderatoren"
-#: chat.php:2010
+#: index.php:2067 chat.php:2067
msgid "Admin only"
msgstr "Nur Admins"
-#: chat.php:2019
+#: index.php:2076 chat.php:2076
msgid "(offline)"
msgstr "(offline)"
-#: chat.php:2043
+#: index.php:2078 chat.php:2078
+msgid "(logging out)"
+msgstr ""
+
+#: index.php:2102 chat.php:2102
msgid "Also purge messages"
msgstr "Auch Nachrichten löschen"
-#: chat.php:2050
+#: index.php:2109 chat.php:2109
msgid "Delete last message"
msgstr "Letzte Nachricht löschen"
-#: chat.php:2055
+#: index.php:2114 chat.php:2114
msgid "Delete all messages"
msgstr "Alle Nachrichten löschen"
-#: chat.php:2057
+#: index.php:2116 chat.php:2116
msgid "Switch to single-line"
msgstr "Zu Einzel-Zeile wechseln"
-#: chat.php:2059
+#: index.php:2118 chat.php:2118
msgid "Switch to multi-line"
msgstr "Zu Mehrfach-Zeilen wechseln"
-#: chat.php:2070
+#: index.php:2129 chat.php:2129
#, php-format
msgid "Welcome %s!"
msgstr "Willkommen %s!"
-#: chat.php:2071
+#: index.php:2130 chat.php:2130
#, php-format
msgid ""
"If this frame does not reload in %d seconds, you'll have to enable automatic "
@@ -984,15 +1033,15 @@ msgstr ""
"Falls dieser Frame nich in %d Sekunden neu lädt, muss automatische "
"Weiterleitun (meta refresh) in Ihrem Browser aktiviert werden. Stellen Sie "
"auch sicher, dass keine Web filter, locale Proxy oder Browser Plugins das "
-"automatische neu-laden verhindern! Dies könnte z.B. \"Polipo\", \"NoScript"
-"\", etc. sein. Zur Not (oder im Falle von Server/Proxy Fehlern) können "
-"Sie die Knöpfe unten verwenden, um manuell neu zu laden."
+"automatische neu-laden verhindern! Dies könnte z.B. \"Polipo\", "
+"\"NoScript\", etc. sein. Zur Not (oder im Falle von Server/Proxy Fehlern) "
+"können Sie die Knöpfe unten verwenden, um manuell neu zu laden."
-#: chat.php:2087
+#: index.php:2146 chat.php:2146
msgid "Help"
msgstr "Hilfe"
-#: chat.php:2088
+#: index.php:2147 chat.php:2147
msgid ""
"All functions should be pretty much self-explaining, just use the buttons. "
"In your profile you can adjust the refresh rate and font colour, as well as "
@@ -1005,7 +1054,7 @@ msgstr ""
"wenn Sie also nichts schreiben, werden Sie automatisch nach einiger Zeit "
"abgemeldet."
-#: chat.php:2090
+#: index.php:2149 chat.php:2149
msgid ""
"If you want to embed an image in your post, simply put [img] in front of "
"your image URL. Example: [img]http://example.com/images/file.jpg will embed "
@@ -1015,7 +1064,7 @@ msgstr ""
"Adresse des Bildes. Beispiel: [img]http://example.com/images/file.jpg bettet "
"das Bild in Ihrem Beitrag ein."
-#: chat.php:2093
+#: index.php:2152 chat.php:2152
msgid ""
"Members: You'll have some more options in your profile. You can adjust your "
"font face, change your password anytime and of course you can delete your "
@@ -1025,7 +1074,7 @@ msgstr ""
"Sie können Ihre Schriftart ändern, Ihr Passwort jederzeit ändern und "
"natürlich können Sie auch Ihr Profil löschen."
-#: chat.php:2095
+#: index.php:2154 chat.php:2154
msgid ""
"Moderators: Notice the Admin-button at the bottom. It'll bring up a page "
"where you can clean the room, kick chatters, view all active sessions and "
@@ -1036,7 +1085,7 @@ msgstr ""
"alle aktive Sitzungen anzeigen lassen können und den Gastzugriff "
"deaktivieren können, falls dies nötig sein sollte."
-#: chat.php:2097
+#: index.php:2156 chat.php:2156
msgid ""
"Admins: You'll be furthermore able to register guests, edit members and "
"register new nicknames."
@@ -1044,225 +1093,231 @@ msgstr ""
"Admins: Sie werden zusätzlich in der Lage sein Gäste zu registrieren, "
"Mitglieder zu verwalten und neue Nicknanem zu registrieren."
-#: chat.php:2135
+#: index.php:2194 chat.php:2194
msgid "Your Profile"
msgstr "Ihr Profil"
-#: chat.php:2144
+#: index.php:2203 chat.php:2203
msgid "Don't ignore anymore"
msgstr "Nicht mehr ignorieren"
-#: chat.php:2152
+#: index.php:2211 chat.php:2211
msgid "Ignore"
msgstr "Ignorieren"
-#: chat.php:2163
+#: index.php:2222 chat.php:2222
#, php-format
msgid "Refresh rate (%1$d-%2$d seconds)"
msgstr "Aktualisierungsrate (%1$d-%2$d Sekunden)"
-#: chat.php:2167 chat.php:2170
+#: index.php:2226 index.php:2229 chat.php:2226 chat.php:2229
msgid "View examples"
msgstr "Beispiele anzeigen"
-#: chat.php:2174
+#: index.php:2233 chat.php:2233
msgid "Fontface"
msgstr "Schriftart"
-#: chat.php:2175
+#: index.php:2234 chat.php:2234
msgid "Room Default"
msgstr "Raumstandard"
-#: chat.php:2188
+#: index.php:2247 chat.php:2247
msgid "Bold"
msgstr "Fett"
-#: chat.php:2192
+#: index.php:2251 chat.php:2251
msgid "Italic"
msgstr "Kursiv"
-#: chat.php:2196
+#: index.php:2255 chat.php:2255
msgid "Small"
msgstr "Klein"
-#: chat.php:2199
+#: index.php:2258 chat.php:2258
msgid "Example for your chosen font"
msgstr "Beispiel für Ihre gewählte Schrift"
-#: chat.php:2203
+#: index.php:2262 chat.php:2262
msgid "Autoscroll (for old browsers or top-to-bottom sort)."
msgstr "Autoscrollen (für alte Browser oder oben nach unten Sortierung)."
-#: chat.php:2234
+#: index.php:2293 chat.php:2293
msgid "For everyone"
msgstr "Für jeden"
-#: chat.php:2239
+#: index.php:2298 chat.php:2298
msgid "For members only"
msgstr "Nur für Mitglieder"
-#: chat.php:2244
+#: index.php:2303 chat.php:2303
msgid "For staff only"
msgstr "Nur für Moderatoren"
-#: chat.php:2248
+#: index.php:2307 chat.php:2307
msgid "Time zone"
msgstr "Zeitzone"
-#: chat.php:2261
+#: index.php:2320 chat.php:2320
msgid "Change Password"
msgstr "Passwort ändern"
-#: chat.php:2263
+#: index.php:2322 chat.php:2322
msgid "Old password:"
msgstr "Altes Passwort:"
-#: chat.php:2264
+#: index.php:2323 chat.php:2323
msgid "New password:"
msgstr "Neues Passwort:"
-#: chat.php:2265
+#: index.php:2324 chat.php:2324
msgid "Confirm new password:"
msgstr "Passwort bestätigen:"
-#: chat.php:2268
+#: index.php:2327 chat.php:2327
msgid "Change Nickname"
msgstr "Nickname ändern"
-#: chat.php:2269
+#: index.php:2328 chat.php:2328
msgid "New nickname:"
msgstr "Neuer Nickname:"
-#: chat.php:2273
+#: index.php:2332 chat.php:2332
msgid "Save changes"
msgstr "Änderungen speichern"
-#: chat.php:2275
+#: index.php:2334 chat.php:2334
msgid "Delete account"
msgstr "Konto löschen"
-#: chat.php:2301
+#: index.php:2360 chat.php:2360
msgid "Reload Post Box"
msgstr "Postbox neu laden"
-#: chat.php:2304
+#: index.php:2363 chat.php:2363
msgid "Reload Messages"
msgstr "Nachrichten neu laden"
-#: chat.php:2307
+#: index.php:2366 chat.php:2366
msgid "Profile"
msgstr "Profil"
-#: chat.php:2311 chat.php:2528
+#: index.php:2370 index.php:2590 chat.php:2370 chat.php:2590
msgid "Admin"
msgstr "Admin"
-#: chat.php:2318
+#: index.php:2377 chat.php:2377
msgid "View public notes"
msgstr "Öffentliche Notizen anzeigen"
-#: chat.php:2325
+#: index.php:2384 chat.php:2384
msgid "Clone"
msgstr "Klonen"
-#: chat.php:2334
+#: index.php:2393 chat.php:2393
msgid "Rearrange"
msgstr "Umordnen"
-#: chat.php:2337
+#: index.php:2396 chat.php:2396
msgid "Rules & Help"
msgstr "Regeln & Hilfe"
-#: chat.php:2358 chat.php:2362
+#: index.php:2417 index.php:2421 chat.php:2417 chat.php:2421
msgid "File not found!"
msgstr "Datei nicht gefunden!"
-#: chat.php:2370
+#: index.php:2429 chat.php:2429
#, php-format
msgid "Bye %s, visit again soon!"
msgstr "Auf Wiedersehen %s, besuche uns bald wieder!"
-#: chat.php:2377
+#: index.php:2436 chat.php:2436
msgid "Colourtable"
msgstr "Farbtabelle"
-#: chat.php:2388
+#: index.php:2447 chat.php:2447
msgid "Back to your Profile"
msgstr "Zurück zu Ihrem Profil"
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "Repeat password to register"
msgstr "Passwortwiederholung (zur Neuregistrierung)"
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "(optional)"
msgstr "(optional)"
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Guests, choose a colour:"
msgstr "Textfarbe auswählen:"
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Random Colour"
msgstr "Zufällige Farbe"
-#: chat.php:2421 chat.php:2435 chat.php:2569
+#: index.php:2480 index.php:2494 index.php:2631 chat.php:2480 chat.php:2494
+#: chat.php:2631
msgid "Sorry, currently members only!"
msgstr "Entschuldigung, zur Zeit nur Mitglieder!"
-#: chat.php:2423 chat.php:2437
+#: index.php:2482 index.php:2496 chat.php:2482 chat.php:2496
msgid "Enter Chat"
msgstr "Chat beitreten"
-#: chat.php:2457
+#: index.php:2516 chat.php:2516
#, php-format
msgid "Error: %s"
msgstr "Fehler: %s"
-#: chat.php:2467
+#: index.php:2526 chat.php:2526
msgid "Fatal error"
msgstr "Fataler Fehler"
-#: chat.php:2470
+#: index.php:2529 chat.php:2529
#, php-format
msgid "Fatal error: %s"
msgstr "Fataler Fehler: %s"
-#: chat.php:2482 chat.php:2693
+#: index.php:2541 index.php:2756 chat.php:2541 chat.php:2756
msgid "Failed login attempt(s)"
msgstr "Fehlgeschlagene(r) Anmeldeversuch(e)"
-#: chat.php:2489
+#: index.php:2548 chat.php:2548
#, php-format
msgid "Read %d messages in your inbox"
msgstr "%d Nachrichten im Posteingang lesen"
-#: chat.php:2498
+#: index.php:2557 chat.php:2557
#, php-format
msgid "%d new guests to approve"
msgstr "%d neue Gäste zum Hereinlassen"
-#: chat.php:2530
+#: index.php:2577 chat.php:2577
+msgid "logging out"
+msgstr ""
+
+#: index.php:2592 chat.php:2592
msgid "Admin:"
msgstr "Admin:"
-#: chat.php:2533
+#: index.php:2595 chat.php:2595
msgid "Staff"
msgstr "Moderatoren"
-#: chat.php:2535
+#: index.php:2597 chat.php:2597
msgid "Staff:"
msgstr "Moderatoren:"
-#: chat.php:2540
+#: index.php:2602 chat.php:2602
msgid "Members:"
msgstr "Mitglieder:"
-#: chat.php:2542
+#: index.php:2604 chat.php:2604
msgid "Guests"
msgstr "Gäste"
-#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092
+#: index.php:2625 index.php:3063 index.php:3267 index.php:4172 chat.php:2625
+#: chat.php:3063 chat.php:3267 chat.php:4172
#, php-format
msgid ""
"Invalid nickname (%1$d characters maximum and has to match the regular "
@@ -1271,7 +1326,8 @@ msgstr ""
"Ungültiger Nickname (Maximal %1$d Zeichen und muss dem regulären Ausdruck "
"\"%2$s\" entsprechen)"
-#: chat.php:2566 chat.php:2996 chat.php:3162 chat.php:4094
+#: index.php:2628 index.php:3066 index.php:3232 index.php:4174 chat.php:2628
+#: chat.php:3066 chat.php:3232 chat.php:4174
#, php-format
msgid ""
"Invalid password (At least %1$d characters and has to match the regular "
@@ -1280,248 +1336,256 @@ msgstr ""
"Ungültiges Passwort (Mindestens %1$d Zeichen und muss dem regulären Ausdruck "
"\"%2$s\" entsprechen)"
-#: chat.php:2574 chat.php:2739
+#: index.php:2636 index.php:2806 chat.php:2636 chat.php:2806
msgid "Wrong global Password!"
msgstr "Falsches gloables Passwort!"
-#: chat.php:2591 chat.php:2612
+#: index.php:2654 index.php:2675 chat.php:2654 chat.php:2675
msgid "Wrong Captcha"
msgstr "Falsches Captcha"
-#: chat.php:2596 chat.php:2604
+#: index.php:2659 index.php:2667 chat.php:2659 chat.php:2667
msgid "Captcha already used or timed out."
msgstr "Captcha wurde bereits verwendet oder ist abgelaufen."
-#: chat.php:2652
+#: index.php:2715 chat.php:2715
msgid "A user with this nickname is already logged in."
msgstr "Ein Nutzer mit diesem Nicknamen ist bereits angemeldet."
-#: chat.php:2652 chat.php:2933 chat.php:3176
+#: index.php:2715 index.php:3003 index.php:3246 chat.php:2715 chat.php:3003
+#: chat.php:3246
msgid "Wrong Password!"
msgstr "Falsches Passwort!"
-#: chat.php:2696
+#: index.php:2759 chat.php:2759
msgid "Dismiss"
msgstr "Ausblenden"
-#: chat.php:2747 chat.php:3171 chat.php:4096
+#: index.php:2814 index.php:3241 index.php:4176 chat.php:2814 chat.php:3241
+#: chat.php:4176
msgid "Password confirmation does not match!"
msgstr "Passwortbestätigung stimmt nicht überein!"
-#: chat.php:2859
+#: index.php:2854 chat.php:2854
+#, fuzzy
+#| msgid "Kickmessage:"
+msgid "no kick message"
+msgstr "Begründung:"
+
+#: index.php:2929 chat.php:2929
msgid "Invalid/expired session"
msgstr "Ungültige/abgelaufene Sitzung"
-#: chat.php:2875 chat.php:3412
+#: index.php:2945 index.php:3483 chat.php:2945 chat.php:3483
msgid "You have been kicked!"
msgstr "Du wurdest rausgeschmissen!"
-#: chat.php:2885
+#: index.php:2955 chat.php:2955
#, php-format
msgid "Currently %d chatter(s) in room:"
msgstr "Zurzeit sind %d Teilnehmer im Raum:"
-#: chat.php:2933
+#: index.php:3003 chat.php:3003
msgid "This nickname is a registered member."
msgstr "Dieser Nickname ist bereits ein registriertes Mitglied."
-#: chat.php:2960 chat.php:3001
+#: index.php:3030 index.php:3071 chat.php:3030 chat.php:3071
#, php-format
msgid "%s is already registered."
msgstr "%s ist bereits registriert."
-#: chat.php:2969 chat.php:2990
+#: index.php:3039 index.php:3060 chat.php:3039 chat.php:3060
#, php-format
msgid "Can't register %s"
msgstr "%s kann nicht registriert werden"
-#: chat.php:2978 chat.php:3023
+#: index.php:3048 index.php:3093 chat.php:3048 chat.php:3093
#, php-format
msgid "%s successfully registered."
msgstr "%s wurde erfolgreich registriert."
-#: chat.php:3031 chat.php:3036
+#: index.php:3101 index.php:3106 chat.php:3101 chat.php:3106
#, php-format
msgid "Can't change status of %s"
msgstr "Der Status von %s kann nicht geändert werden"
-#: chat.php:3047
+#: index.php:3117 chat.php:3117
#, php-format
msgid "%s successfully deleted from database."
msgstr "%s wurde erfolgreich aus der Datenbank gelöscht."
-#: chat.php:3056
+#: index.php:3126 chat.php:3126
#, php-format
msgid "Status of %s successfully changed."
msgstr "Status von %s erfolgreich geändert."
-#: chat.php:3073
+#: index.php:3143 chat.php:3143
#, php-format
msgid "Successfully reset password for %s"
msgstr "Passwort für %s erfolgreich zurückgesetzt"
-#: chat.php:3075
+#: index.php:3145 chat.php:3145
#, php-format
msgid "Can't reset password for %s"
msgstr "Passwort für %s kann nicht zurückgesetzt werden"
-#: chat.php:3190
+#: index.php:3260 chat.php:3260
msgid "Your profile has successfully been saved."
msgstr "Ihr Profil wurde erfolgreich gespeichert."
-#: chat.php:3202
+#: index.php:3272 chat.php:3272
msgid "Nickname is already taken"
msgstr "Nickname ist bereits vergeben"
-#: chat.php:3714
+#: index.php:3785 chat.php:3785
msgid "system message"
msgstr "Systemnachricht"
-#: chat.php:3921
+#: index.php:4001 chat.php:4001
msgid "Beige"
msgstr "Beige"
-#: chat.php:3922
+#: index.php:4002 chat.php:4002
msgid "Black"
msgstr "Schwarz"
-#: chat.php:3923
+#: index.php:4003 chat.php:4003
msgid "Blue"
msgstr "Blau"
-#: chat.php:3924
+#: index.php:4004 chat.php:4004
msgid "Blue violet"
msgstr "Blauviolett"
-#: chat.php:3925
+#: index.php:4005 chat.php:4005
msgid "Brown"
msgstr "Braun"
-#: chat.php:3926
+#: index.php:4006 chat.php:4006
msgid "Cyan"
msgstr "Türkis"
-#: chat.php:3927
+#: index.php:4007 chat.php:4007
msgid "Dark blue"
msgstr "Dunkelblau"
-#: chat.php:3928
+#: index.php:4008 chat.php:4008
msgid "Dark green"
msgstr "Dunkelgrün"
-#: chat.php:3929
+#: index.php:4009 chat.php:4009
msgid "Dark red"
msgstr "Dunkelrot"
-#: chat.php:3930
+#: index.php:4010 chat.php:4010
msgid "Dark violet"
msgstr "Dunkelviolett"
-#: chat.php:3931
+#: index.php:4011 chat.php:4011
msgid "Sky blue"
msgstr "Himmelsblau"
-#: chat.php:3932
+#: index.php:4012 chat.php:4012
msgid "Gold"
msgstr "Gold"
-#: chat.php:3933
+#: index.php:4013 chat.php:4013
msgid "Grey"
msgstr "Grau"
-#: chat.php:3934
+#: index.php:4014 chat.php:4014
msgid "Green"
msgstr "Grün"
-#: chat.php:3935
+#: index.php:4015 chat.php:4015
msgid "Hot pink"
msgstr "Pink"
-#: chat.php:3936
+#: index.php:4016 chat.php:4016
msgid "Indigo"
msgstr "Indigoblau"
-#: chat.php:3937
+#: index.php:4017 chat.php:4017
msgid "Light blue"
msgstr "Hellblau"
-#: chat.php:3938
+#: index.php:4018 chat.php:4018
msgid "Light green"
msgstr "Hellgrün"
-#: chat.php:3939
+#: index.php:4019 chat.php:4019
msgid "Lime green"
msgstr "Lindgrün"
-#: chat.php:3940
+#: index.php:4020 chat.php:4020
msgid "Magenta"
msgstr "Magenta"
-#: chat.php:3941
+#: index.php:4021 chat.php:4021
msgid "Olive"
msgstr "Oliv"
-#: chat.php:3942
+#: index.php:4022 chat.php:4022
msgid "Orange"
msgstr "Orange"
-#: chat.php:3943
+#: index.php:4023 chat.php:4023
msgid "Orange red"
msgstr "Orangerot"
-#: chat.php:3944
+#: index.php:4024 chat.php:4024
msgid "Purple"
msgstr "Lila"
-#: chat.php:3945
+#: index.php:4025 chat.php:4025
msgid "Red"
msgstr "Rot"
-#: chat.php:3946
+#: index.php:4026 chat.php:4026
msgid "Royal blue"
msgstr "Königsblau"
-#: chat.php:3947
+#: index.php:4027 chat.php:4027
msgid "Sea green"
msgstr "Seegrün"
-#: chat.php:3948
+#: index.php:4028 chat.php:4028
msgid "Sienna"
msgstr "Siena"
-#: chat.php:3949
+#: index.php:4029 chat.php:4029
msgid "Silver"
msgstr "Silber"
-#: chat.php:3950
+#: index.php:4030 chat.php:4030
msgid "Tan"
msgstr "Hellbraun"
-#: chat.php:3951
+#: index.php:4031 chat.php:4031
msgid "Teal"
msgstr "Blaugrün"
-#: chat.php:3952
+#: index.php:4032 chat.php:4032
msgid "Violet"
msgstr "Violett"
-#: chat.php:3953
+#: index.php:4033 chat.php:4033
msgid "White"
msgstr "Weiß"
-#: chat.php:3954
+#: index.php:4034 chat.php:4034
msgid "Yellow"
msgstr "Gelb"
-#: chat.php:3955
+#: index.php:4035 chat.php:4035
msgid "Yellow green"
msgstr "Gelbgrün"
-#: chat.php:4077
+#: index.php:4157 chat.php:4157
msgid "Successfully destroyed chat"
msgstr "Chat erfolgreich zerstört"
-#: chat.php:4086
+#: index.php:4166 chat.php:4166
msgid ""
"Database tables already exist! To continue, you have to delete these tables "
"manually first."
@@ -1529,98 +1593,103 @@ msgstr ""
"Datenbanktabellen existieren bereits! Um fortzufahren, müssen Sie diese "
"Tabellen zuerst manuell löschen."
-#: chat.php:4089
+#: index.php:4169 chat.php:4169
msgid "A Superadmin already exists!"
msgstr "Ein Superadmin existiert bereits!"
-#: chat.php:4182 chat.php:4369
+#: index.php:4263 index.php:4451 chat.php:4263 chat.php:4451
#, php-format
msgid "%s - "
msgstr "%s - "
-#: chat.php:4183 chat.php:4369
+#: index.php:4264 index.php:4451 chat.php:4264 chat.php:4451
#, php-format
msgid "[M] %s - "
msgstr "[M] %s - "
-#: chat.php:4184 chat.php:4369
+#: index.php:4265 index.php:4451 chat.php:4265 chat.php:4451
#, php-format
msgid "[Staff] %s - "
msgstr "[Moderatoren] %s - "
-#: chat.php:4185 chat.php:4369
+#: index.php:4266 index.php:4451 chat.php:4266 chat.php:4451
#, php-format
msgid "[Admin] %s - "
msgstr "[Admin] %s - "
-#: chat.php:4186 chat.php:4369
+#: index.php:4267 index.php:4451 chat.php:4267 chat.php:4451
#, php-format
msgid "[%1$s to %2$s] - "
msgstr "[%1$s an %2$s] - "
-#: chat.php:4187
+#: index.php:4268 chat.php:4268
#, php-format
msgid "%s entered the chat."
msgstr "%s hat den Chat betreten."
-#: chat.php:4188
+#: index.php:4269 chat.php:4269
#, php-format
msgid "%s left the chat."
msgstr "%s hat den Chat verlassen."
-#: chat.php:4189
+#: index.php:4270 chat.php:4270
#, php-format
msgid "%s is now a registered member."
msgstr "%s ist jetzt ein registriertes Mitglied."
-#: chat.php:4190
+#: index.php:4271 chat.php:4271
#, php-format
msgid "%s is now a registered applicant."
msgstr "%s ist jetzt ein registrierter Anwerber."
-#: chat.php:4191
-#, php-format
-msgid "%s has been kicked."
+#: index.php:4272 chat.php:4272
+#, fuzzy, php-format
+#| msgid "%s has been kicked."
+msgid "%1$s has been kicked: %2$s"
msgstr "%s wurde rausgeschmissen."
-#: chat.php:4192
-#, php-format
-msgid "%s have been kicked."
+#: index.php:4273 chat.php:4273
+#, fuzzy, php-format
+#| msgid "%s have been kicked."
+msgid "%1$s have been kicked: %2$s"
msgstr "%s wurden rausgeschmissen."
-#: chat.php:4193
-msgid "All guests have been kicked."
+#: index.php:4274 chat.php:4274
+#, fuzzy, php-format
+#| msgid "All guests have been kicked."
+msgid "All guests have been kicked: %1$s"
msgstr "Alle Gäste wurden rausgeschmissen."
-#: chat.php:4194
+#: index.php:4275 chat.php:4275
#, php-format
msgid "%s has been cleaned."
msgstr "%s wurde geleert."
-#: chat.php:4202 chat.php:4396
+#: index.php:4283 index.php:4478 chat.php:4283 chat.php:4478
msgid "Temporarily disabled"
msgstr "Kurzzeitig deaktiviert"
-#: chat.php:4218 chat.php:4594
+#: index.php:4299 index.php:4676 chat.php:4299 chat.php:4676
msgid "A chat community"
msgstr "Eine Chatgemeinschaft"
-#: chat.php:4256
+#: index.php:4338 chat.php:4338
msgid "Successfully registered!"
msgstr "Erfolgreich registriert!"
-#: chat.php:4522 chat.php:4721 chat.php:4728
+#: index.php:4604 index.php:4807 index.php:4814 chat.php:4604 chat.php:4807
+#: chat.php:4814
msgid "No connection to database!"
msgstr "Keine Verbindung zur Datenbank!"
-#: chat.php:4531
+#: index.php:4613 chat.php:4613
msgid ""
"Note: Default CSS is now hardcoded and can be removed from the CSS setting"
msgstr ""
"Hinweis: Standard CSS ist jetzt hardcoded und kann aus der CSS Einstellung "
"entfernt werden"
-#: chat.php:4611
+#: index.php:4697 chat.php:4697
#, php-format
msgid ""
"The %s extension of PHP is required for the encryption feature. Please "
@@ -1630,7 +1699,8 @@ msgstr ""
"benutzen. Bitte installieren Sie diese zuerst oder setzen Sie die encrypted "
"Einstellung zurück auf false."
-#: chat.php:4684 chat.php:4689 chat.php:4694
+#: index.php:4770 index.php:4775 index.php:4780 chat.php:4770 chat.php:4775
+#: chat.php:4780
#, php-format
msgid ""
"The %s extension of PHP is required for the selected database driver. Please "
@@ -1639,7 +1709,8 @@ msgstr ""
"Die %s PHP-Erweiterung wird für den ausgewählten Datenbanktreiber benötigt. "
"Bitte installieren Sie diese zuerst."
-#: chat.php:4707 chat.php:4715 chat.php:4719 chat.php:4726
+#: index.php:4793 index.php:4801 index.php:4805 index.php:4812 chat.php:4793
+#: chat.php:4801 chat.php:4805 chat.php:4812
msgid ""
"No connection to database, please create a database and edit the script to "
"use the correct database with given username and password!"
@@ -1648,7 +1719,7 @@ msgstr ""
"das Skript, um die korrekte Datenbank mit angegebenem Benutzernamen und "
"Passwort zu benutzen!"
-#: chat.php:4734
+#: index.php:4820 chat.php:4820
msgid ""
"The memcached extension of PHP is required for the caching feature. Please "
"install it first or set the memcached setting back to false."
diff --git a/locale/es_ES/LC_MESSAGES/le-chat-php.po b/locale/es_ES/LC_MESSAGES/le-chat-php.po
index b2b4167..10d6cc0 100644
--- a/locale/es_ES/LC_MESSAGES/le-chat-php.po
+++ b/locale/es_ES/LC_MESSAGES/le-chat-php.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-01-18 21:32+0100\n"
+"POT-Creation-Date: 2025-03-29 17:02+0100\n"
"PO-Revision-Date: 2023-01-18 21:37+0100\n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -18,263 +18,269 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.1.1\n"
-#: chat.php:261
+#: index.php:272 chat.php:272
msgid "Enable applicants"
msgstr "Habilitar aplicantes"
-#: chat.php:262
+#: index.php:273 index.php:2267 chat.php:273 chat.php:2267
msgid "Embed images"
msgstr "Habilitar imágenes"
-#: chat.php:263 chat.php:2202
+#: index.php:274 index.php:2261 chat.php:274 chat.php:2261
msgid "Show Timestamps"
msgstr "Mostrar fecha y hora"
-#: chat.php:264
+#: index.php:275 chat.php:275
msgid "Show session-IP"
msgstr "Mostrar IP de la sesión"
-#: chat.php:265
+#: index.php:276 chat.php:276
msgid "Members can kick, if no moderator is present"
msgstr "Los miembros pueden expulsar, si no hay moderador presente"
-#: chat.php:266
+#: index.php:277 chat.php:277
msgid "Members can always kick"
msgstr "Los miembros siempre pueden expulsar"
-#: chat.php:267
+#: index.php:278 chat.php:278
msgid "Force redirection"
msgstr "Forzar redirección"
-#: chat.php:268
+#: index.php:279 index.php:2270 chat.php:279 chat.php:2270
msgid "Incognito mode"
msgstr "Modo incógnito"
-#: chat.php:269
+#: index.php:280 chat.php:280
msgid "Send mail on new public message"
msgstr "Enviar mail en nuevo mensaje público"
-#: chat.php:270
+#: index.php:281 chat.php:281
msgid "Fallback to waiting room, if no moderator is present to approve guests"
msgstr "Volver a la sala de espera, si ningún moderador aprovo la visita"
-#: chat.php:271
+#: index.php:282 chat.php:282
msgid "Disable private messages"
msgstr "Desactivar mensajes privados"
-#: chat.php:272 chat.php:2223
+#: index.php:283 index.php:2282 chat.php:283 chat.php:2282
msgid "Enable offline inbox"
msgstr "Activar inbox offline"
-#: chat.php:273
+#: index.php:284 chat.php:284
msgid "Show a greeting message before showing the messages"
msgstr "Mostrar un saludo antes de los mensajes"
-#: chat.php:274 chat.php:2204
+#: index.php:285 index.php:2263 chat.php:285 chat.php:2263
msgid "Sort messages from top to bottom"
msgstr "Sort messages from top to bottom"
-#: chat.php:275 chat.php:2205
+#: index.php:286 index.php:2264 chat.php:286 chat.php:2264
msgid "Hide list of chatters"
msgstr "Esconder lista de chatters"
-#: chat.php:276 chat.php:1780 chat.php:1794
+#: index.php:287 index.php:1837 index.php:1851 chat.php:287 chat.php:1837
+#: chat.php:1851
msgid "Personal notes"
msgstr "Notas personales"
-#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110
+#: index.php:288 index.php:1840 index.php:1854 index.php:2169 chat.php:288
+#: chat.php:1840 chat.php:1854 chat.php:2169
msgid "Public notes"
msgstr "Notas públicas"
-#: chat.php:278
+#: index.php:289 chat.php:289
msgid "Apply kick filter on moderators"
msgstr "Aplicar Kick filter en moderadores o administradores"
-#: chat.php:279
+#: index.php:290 chat.php:290
msgid "Show who kicks people or purges all messages."
msgstr "Mostrar quién expulsa a las personas o purga todos los mensajes."
-#: chat.php:280
+#: index.php:291 chat.php:291
msgid "Hide reload post box button"
msgstr ""
-#: chat.php:281
+#: index.php:292 chat.php:292
msgid "Hide reload messages button"
msgstr ""
-#: chat.php:282
+#: index.php:293 chat.php:293
msgid "Hide profile button"
msgstr ""
-#: chat.php:283
+#: index.php:294 chat.php:294
msgid "Hide admin button"
msgstr ""
-#: chat.php:284
+#: index.php:295 chat.php:295
msgid "Hide notes button"
msgstr ""
-#: chat.php:285
+#: index.php:296 chat.php:296
msgid "Hide clone button"
msgstr ""
-#: chat.php:286
+#: index.php:297 chat.php:297
msgid "Hide rearrange button"
msgstr ""
-#: chat.php:287
+#: index.php:298 chat.php:298
msgid "Hide help button"
msgstr ""
-#: chat.php:288
+#: index.php:299 chat.php:299
msgid "Apply postbox delete button globally"
msgstr ""
-#: chat.php:289
+#: index.php:300 chat.php:300
msgid "Allow enhancing functionality with JavaScript"
msgstr ""
-#: chat.php:292 chat.php:2170
+#: index.php:303 index.php:2229 chat.php:303 chat.php:2229
msgid "Background colour"
msgstr "Color de fondo"
-#: chat.php:293 chat.php:2167
+#: index.php:304 index.php:2226 chat.php:304 chat.php:2226
msgid "Font colour"
msgstr "Color de texto"
-#: chat.php:296
+#: index.php:307 chat.php:307
msgid "Entrance"
msgstr "Entrando"
-#: chat.php:297
+#: index.php:308 chat.php:308
msgid "Leaving"
msgstr "Saliendo"
-#: chat.php:298
+#: index.php:309 chat.php:309
msgid "Member registered"
msgstr "Miembro registrado"
-#: chat.php:299
+#: index.php:310 chat.php:310
msgid "Applicant registered"
msgstr "Aplicante registrado"
-#: chat.php:300
+#: index.php:311 chat.php:311
msgid "Kicked"
msgstr "Expulsado"
-#: chat.php:301
+#: index.php:312 chat.php:312
msgid "Multiple kicked"
msgstr "Expulsión múltiple"
-#: chat.php:302
+#: index.php:313 chat.php:313
msgid "All kicked"
msgstr "Todos expulsados"
-#: chat.php:303
+#: index.php:314 chat.php:314
msgid "Room cleaned"
msgstr "Sala limpiada"
-#: chat.php:304
+#: index.php:315 chat.php:315
msgid "Message to all"
msgstr "Mensajes a todos"
-#: chat.php:305
+#: index.php:316 chat.php:316
msgid "Message to members only"
msgstr "Sólo mensajes a miembros"
-#: chat.php:306
+#: index.php:317 chat.php:317
msgid "Message to staff only"
msgstr "Sólo mensajes a staff"
-#: chat.php:307
+#: index.php:318 chat.php:318
msgid "Message to admins only"
msgstr "Sólo mensajes a administradores"
-#: chat.php:308
+#: index.php:319 chat.php:319
msgid "Private message"
msgstr "Mensaje privado"
-#: chat.php:309
+#: index.php:320 chat.php:320
msgid "Attachement"
msgstr ""
-#: chat.php:312
+#: index.php:323 chat.php:323
msgid "Member timeout (minutes)"
msgstr "Vencimiento para miembros (minutos)"
-#: chat.php:313
+#: index.php:324 chat.php:324
msgid "Guest timeout (minutes)"
msgstr "Vencimiento para invitados (minutos)"
-#: chat.php:314
+#: index.php:325 chat.php:325
msgid "Kick penalty (minutes)"
msgstr "Penalidad al expulsar (minutos)"
-#: chat.php:315
+#: index.php:326 chat.php:326
msgid "Waiting room time (seconds)"
msgstr "Tiempo en sala de espera (segundos)"
-#: chat.php:316
+#: index.php:327 chat.php:327
+msgid "Logout delay (seconds)"
+msgstr ""
+
+#: index.php:328 chat.php:328
msgid "Captcha timeout (seconds)"
msgstr "Vencimiento de captcha (segundos)"
-#: chat.php:317
+#: index.php:329 chat.php:329
msgid "Message timeout (minutes)"
msgstr "Vencimiento de mensajes (minutos)"
-#: chat.php:318
+#: index.php:330 chat.php:330
msgid "Message limit (public)"
msgstr "Límite de mensajes (público)"
-#: chat.php:319
+#: index.php:331 chat.php:331
msgid "Maximal message length"
msgstr "Largo máximo de mensaje"
-#: chat.php:320
+#: index.php:332 chat.php:332
msgid "Maximal nickname length"
msgstr "Largo máximo para apodos"
-#: chat.php:321
+#: index.php:333 chat.php:333
msgid "Minimal password length"
msgstr "Largo mínimo para contraseñas"
-#: chat.php:322
+#: index.php:334 chat.php:334
msgid "Default message reload time (seconds)"
msgstr "Tiempo de actualización de mensajes por defecto (segundos)"
-#: chat.php:323
+#: index.php:335 chat.php:335
msgid "Number of notes revisions to keep"
msgstr "Numero de notas para revisar"
-#: chat.php:324
+#: index.php:336 chat.php:336
msgid "Maximum upload size in KB"
msgstr "Máxima subida en KB"
-#: chat.php:325
+#: index.php:337 chat.php:337
msgid "Enable file uploads"
msgstr "Habilitar subida de archivos"
-#: chat.php:326
+#: index.php:338 chat.php:338
msgid "Lowest refresh rate"
msgstr ""
-#: chat.php:327
+#: index.php:339 chat.php:339
msgid "Highest refresh rate"
msgstr ""
-#: chat.php:330
+#: index.php:342 chat.php:342
msgid "Rules (html)"
msgstr "Reglas (html)"
-#: chat.php:331
+#: index.php:343 chat.php:343
msgid "CSS Style"
msgstr "Estilo CSS"
-#: chat.php:332
+#: index.php:344 chat.php:344
msgid "Chat disabled message (html)"
msgstr "Mensaje de chat desactivado (html)"
-#: chat.php:335
+#: index.php:347 chat.php:347
msgid ""
"Date "
@@ -284,497 +290,532 @@ msgstr ""
"php#refsect1-function.date-parameters\" rel=\"noopener noreferrer\">Formato "
"de fechas"
-#: chat.php:336
+#: index.php:348 chat.php:348
msgid "Characters used in Captcha"
msgstr "Caracteres usados en el Captcha"
-#: chat.php:337
+#: index.php:349 chat.php:349
msgid "Custom redirection script"
msgstr "Script de redirección personalizado"
-#: chat.php:338
+#: index.php:350 chat.php:350
msgid "Chat name"
msgstr "Nombre de la sala"
-#: chat.php:339
+#: index.php:351 chat.php:351
msgid "Send mail using this address"
msgstr "Enviar mail usando esta dirección"
-#: chat.php:340
+#: index.php:352 chat.php:352
msgid "Send mail to this address"
msgstr "Enviar mail a esta dirección"
-#: chat.php:341
+#: index.php:353 chat.php:353
msgid "Nickname regex"
msgstr ""
-#: chat.php:342
+#: index.php:354 chat.php:354
msgid "Password regex"
msgstr ""
-#: chat.php:343
+#: index.php:355 chat.php:355
msgid "Link to external CSS file (on your own server)"
msgstr "Link para archivo CSS externo"
-#: chat.php:344
+#: index.php:356 chat.php:356
msgid "Meta description (best 50 - 160 characters for SEO)"
msgstr ""
-#: chat.php:345
+#: index.php:357 chat.php:357
+msgid "Show this text when a user's logout is delayed"
+msgstr ""
+
+#: index.php:358 chat.php:358
msgid "Prepend this text to system messages"
msgstr "Este texto precede a los mensajes del sistema"
-#: chat.php:348 chat.php:728 chat.php:1225
+#: index.php:361 index.php:780 index.php:1282 chat.php:361 chat.php:780
+#: chat.php:1282
msgid "Change Guestaccess"
msgstr "Cambiar acceso de invitado"
-#: chat.php:349
+#: index.php:362 chat.php:362
msgid "Enable global Password"
msgstr ""
-#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433
+#: index.php:363 index.php:810 index.php:2474 index.php:2492 chat.php:363
+#: chat.php:810 chat.php:2474 chat.php:2492
msgid "Global Password:"
msgstr "Contraseña global:"
-#: chat.php:351 chat.php:819
+#: index.php:364 index.php:871 chat.php:364 chat.php:871
msgid "Captcha"
msgstr "Captcha"
-#: chat.php:352 chat.php:775 chat.php:835
+#: index.php:365 index.php:827 index.php:887 chat.php:365 chat.php:827
+#: chat.php:887
msgid "Only for guests"
msgstr "Sólo para invitados"
-#: chat.php:353 chat.php:1220
+#: index.php:366 index.php:1277 chat.php:366 chat.php:1277
msgid "Topic"
msgstr "Asunto"
-#: chat.php:354 chat.php:781
+#: index.php:367 index.php:833 chat.php:367 chat.php:833
msgid "Let guests register themselves"
msgstr "Dar permisos de invitado a si mismos"
-#: chat.php:355 chat.php:862
+#: index.php:368 index.php:919 chat.php:368 chat.php:919
msgid "Default time zone"
msgstr "Zona horaria predeterminada"
-#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259
+#: index.php:581 index.php:1157 index.php:4158 index.php:4341 chat.php:581
+#: chat.php:1157 chat.php:4158 chat.php:4341
msgid "Initial Setup"
msgstr "Configuración inicialInicializar chat"
-#: chat.php:588
+#: index.php:601 chat.php:601
#, php-format
msgid "Redirecting to: %s"
msgstr "Redirigir a: %s"
-#: chat.php:595
+#: index.php:608 chat.php:608
#, php-format
msgid ""
"Dangerous non-http link requested, copy paste this link if you are really "
"sure: %s"
msgstr ""
-#: chat.php:597
+#: index.php:610 chat.php:610
#, php-format
msgid "Non-http link requested: %s"
msgstr "Petición de enlace que no es http: %s"
-#: chat.php:599
+#: index.php:612 chat.php:612
#, php-format
msgid "If it's not working, try this one: %s"
msgstr "Si no funciona, probá esto: %s"
-#: chat.php:609
+#: index.php:622 chat.php:622
msgid "Access denied"
msgstr "Acceso no permitido"
-#: chat.php:609
+#: index.php:622 chat.php:622
#, php-format
msgid "You are logged in as %s and don't have access to this section."
msgstr "Estás identificado como %s y no tenés acceso a esta sección."
-#: chat.php:611 chat.php:915 chat.php:1211 chat.php:1393
+#: index.php:624 index.php:972 index.php:1268 index.php:1450 chat.php:624
+#: chat.php:972 chat.php:1268 chat.php:1450
msgid "Logout"
msgstr "Desconectar"
-#: chat.php:636
+#: index.php:649 chat.php:649
msgid "Copy:"
msgstr "Copiar:"
-#: chat.php:724
+#: index.php:776 chat.php:776
msgid "Chat Setup"
msgstr "Configuración del chat"
-#: chat.php:734 chat.php:1233
+#: index.php:786 index.php:1290 chat.php:786 chat.php:1290
msgid "Allow"
msgstr "Permitir"
-#: chat.php:739 chat.php:1238
+#: index.php:791 index.php:1295 chat.php:791 chat.php:1295
msgid "Allow with waitingroom"
msgstr "Permitir con sala de espera"
-#: chat.php:744 chat.php:1243
+#: index.php:796 index.php:1300 chat.php:796 chat.php:1300
msgid "Require moderator approval"
msgstr "Requiere aprobación del moderator"
-#: chat.php:749 chat.php:1248
+#: index.php:801 index.php:1305 chat.php:801 chat.php:1305
msgid "Only members"
msgstr "Sólo miembros"
-#: chat.php:754 chat.php:1251
+#: index.php:806 index.php:1308 chat.php:806 chat.php:1308
msgid "Disable chat"
msgstr "Desactivar chat"
-#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229
+#: index.php:817 index.php:839 index.php:894 index.php:953 index.php:2288
+#: chat.php:817 chat.php:839 chat.php:894 chat.php:953 chat.php:2288
msgid "Disabled"
msgstr "Deshabilitado"
-#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219
+#: index.php:822 index.php:882 index.php:958 index.php:2278 chat.php:822
+#: chat.php:882 chat.php:958 chat.php:2278
msgid "Enabled"
msgstr "Habilitado"
-#: chat.php:792
+#: index.php:844 chat.php:844
msgid "As applicant"
msgstr "Como aplicante"
-#: chat.php:797
+#: index.php:849 chat.php:849
msgid "As member"
msgstr "Como miembro"
-#: chat.php:800
+#: index.php:852 chat.php:852
msgid "System messages"
msgstr "Mensajes de sistema"
-#: chat.php:822 chat.php:1053
+#: index.php:874 index.php:1110 chat.php:874 chat.php:1110
#, php-format
msgid ""
"The %s extension of PHP is required for this feature. Please install it "
"first."
msgstr "La extensión %s de PHP es requerida para esto. Instálela primero."
-#: chat.php:847
+#: index.php:899 chat.php:899
msgid "Simple"
msgstr ""
-#: chat.php:852
+#: index.php:904 chat.php:904
msgid "Moderate"
msgstr "Moderado"
-#: chat.php:857
+#: index.php:909 chat.php:909
+msgid "Hard"
+msgstr ""
+
+#: index.php:914 chat.php:914
msgid "Extreme"
msgstr "Extremo"
-#: chat.php:906 chat.php:1548 chat.php:1610
+#: index.php:963 index.php:1605 index.php:1667 chat.php:963 chat.php:1605
+#: chat.php:1667
msgid "Apply"
msgstr "Aplicar"
-#: chat.php:910 chat.php:1050
+#: index.php:967 index.php:1107 chat.php:967 chat.php:1107
msgid "Backup and restore"
msgstr "Copias de seguridad"
-#: chat.php:912
+#: index.php:969 chat.php:969
msgid "Destroy chat"
msgstr "Destruir sala"
-#: chat.php:1057 chat.php:1066
+#: index.php:1114 index.php:1123 chat.php:1114 chat.php:1123
msgid "Settings"
msgstr "Configuración"
-#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575
-#: chat.php:1622
+#: index.php:1115 index.php:1124 index.php:1269 index.php:1595 index.php:1632
+#: index.php:1679 chat.php:1115 chat.php:1124 chat.php:1269 chat.php:1595
+#: chat.php:1632 chat.php:1679
msgid "Filter"
msgstr "Filtro"
-#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538
+#: index.php:1116 index.php:1125 index.php:1325 index.php:2600 chat.php:1116
+#: chat.php:1125 chat.php:1325 chat.php:2600
msgid "Members"
msgstr "Miembros"
-#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322
+#: index.php:1117 index.php:1126 index.php:2373 index.php:2381 chat.php:1117
+#: chat.php:1126 chat.php:2373 chat.php:2381
msgid "Notes"
msgstr "Notas"
-#: chat.php:1061
+#: index.php:1118 chat.php:1118
msgid "Backup"
msgstr "Hacer copia"
-#: chat.php:1070
+#: index.php:1127 chat.php:1127
msgid "Restore"
msgstr "Restablecer copia"
-#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260
+#: index.php:1131 index.php:1174 index.php:1212 index.php:1242 index.php:4342
+#: chat.php:1131 chat.php:1174 chat.php:1212 chat.php:1242 chat.php:4342
msgid "Go to the Setup-Page"
msgstr "Ir a la página de configuración"
-#: chat.php:1082 chat.php:1091 chat.php:1949
+#: index.php:1139 index.php:1148 index.php:2006 chat.php:1139 chat.php:1148
+#: chat.php:2006
msgid "Are you sure?"
msgstr "¿Estás seguro?"
-#: chat.php:1083 chat.php:1092 chat.php:1956
+#: index.php:1140 index.php:1149 index.php:2013 chat.php:1140 chat.php:1149
+#: chat.php:2013
msgid "Yes"
msgstr "Sí"
-#: chat.php:1084 chat.php:1093 chat.php:1963
+#: index.php:1141 index.php:1150 index.php:2020 chat.php:1141 chat.php:1150
+#: chat.php:2020
msgid "No"
msgstr "No"
-#: chat.php:1101 chat.php:4259
+#: index.php:1158 index.php:4341 chat.php:1158 chat.php:4341
msgid "Superadmin Login"
msgstr "Registro de Superadministrador"
-#: chat.php:1102
+#: index.php:1159 chat.php:1159
msgid "Superadmin Nickname:"
msgstr "Apodo del superadmin:"
-#: chat.php:1103
+#: index.php:1160 chat.php:1160
msgid "Superadmin Password:"
msgstr "Contraseña del superadmin:"
-#: chat.php:1104
+#: index.php:1161 chat.php:1161
msgid "Confirm Password:"
msgstr "Confirmar contraseña:"
-#: chat.php:1105
+#: index.php:1162 chat.php:1162
msgid "Initialise Chat"
msgstr "Inicializar chat"
-#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439
+#: index.php:1163 index.php:1187 index.php:1213 index.php:2336 index.php:2498
+#: chat.php:1163 chat.php:1187 chat.php:1213 chat.php:2336 chat.php:2498
msgid "Change language:"
msgstr "Cambiar idioma:"
-#: chat.php:1117
+#: index.php:1174 chat.php:1174
msgid "Database successfully updated!"
msgstr "¡La base de datos fue actualizada con éxito!"
-#: chat.php:1125 chat.php:1326 chat.php:2407
+#: index.php:1182 index.php:1383 index.php:2466 chat.php:1182 chat.php:1383
+#: chat.php:2466
msgid "Nickname:"
msgstr "Apodo:"
-#: chat.php:1126 chat.php:1327 chat.php:2408
+#: index.php:1183 index.php:1384 index.php:2467 chat.php:1183 chat.php:1384
+#: chat.php:2467
msgid "Password:"
msgstr "Contraseña:"
-#: chat.php:1128
+#: index.php:1185 chat.php:1185
msgid "Login"
msgstr "Identificarse"
-#: chat.php:1129
+#: index.php:1186 chat.php:1186
msgid "Forgot login?"
msgstr ""
-#: chat.php:1142 chat.php:1306
+#: index.php:1199 index.php:1363 chat.php:1199 chat.php:1363
msgid "Reset password"
msgstr "Reiniciar contraseña"
-#: chat.php:1150
+#: index.php:1207 chat.php:1207
#, php-format
msgid ""
"Successfully reset password for username %s. Please remove the password "
"reset define from the script again."
msgstr ""
-#: chat.php:1153
+#: index.php:1210 chat.php:1210
msgid ""
"Please modify the script and put the following at the bottom of it (change "
"the password). Then refresh this page: define('RESET_SUPERADMIN_PASSWORD', "
"'changeme');"
msgstr ""
-#: chat.php:1169 chat.php:1193 chat.php:1258 chat.php:1270 chat.php:1294
-#: chat.php:1308 chat.php:1316 chat.php:2145 chat.php:2153
+#: index.php:1226 index.php:1250 index.php:1315 index.php:1327 index.php:1351
+#: index.php:1365 index.php:1373 index.php:2204 index.php:2212 chat.php:1226
+#: chat.php:1250 chat.php:1315 chat.php:1327 chat.php:1351 chat.php:1365
+#: chat.php:1373 chat.php:2204 chat.php:2212
msgid "(choose)"
msgstr "(elegí)"
-#: chat.php:1170
+#: index.php:1227 chat.php:1227
msgid "All guests"
msgstr "Todos invitados"
-#: chat.php:1182
+#: index.php:1239 chat.php:1239
msgid "Administrative functions"
msgstr "Funciones administrativas"
-#: chat.php:1188
+#: index.php:1245 chat.php:1245
msgid "Clean messages"
msgstr "Limpiar mensajes"
-#: chat.php:1191
+#: index.php:1248 chat.php:1248
msgid "Whole room"
msgstr "Sala entera"
-#: chat.php:1192
+#: index.php:1249 chat.php:1249
msgid "Selection"
msgstr "Selección"
-#: chat.php:1193
+#: index.php:1250 chat.php:1250
msgid "Following nickname:"
msgstr "Siguiente Nick:"
-#: chat.php:1200
+#: index.php:1257 chat.php:1257
msgid "Clean"
msgstr "Limpiar"
-#: chat.php:1202
+#: index.php:1259 chat.php:1259
#, php-format
msgid "Kick Chatter (%d minutes)"
msgstr "Expulsado (%d minutos)"
-#: chat.php:1204
+#: index.php:1261 chat.php:1261
msgid "Kickmessage:"
msgstr "Motivo de expulsión:"
-#: chat.php:1205
+#: index.php:1262 chat.php:1262
msgid "Purge messages"
msgstr "Mensaje de purga"
-#: chat.php:1206 chat.php:1388 chat.php:1546 chat.php:1580 chat.php:1591
-#: chat.php:2042
+#: index.php:1263 index.php:1445 index.php:1603 index.php:1637 index.php:1648
+#: index.php:2101 chat.php:1263 chat.php:1445 chat.php:1603 chat.php:1637
+#: chat.php:1648 chat.php:2101
msgid "Kick"
msgstr "Expulsar"
-#: chat.php:1208
+#: index.php:1265 chat.php:1265
msgid "Logout inactive Chatter"
msgstr "Desconectar persona inactiva"
-#: chat.php:1212
+#: index.php:1269 chat.php:1269
msgid "View active sessions"
msgstr "Ver sesiones activas"
-#: chat.php:1212 chat.php:1603
+#: index.php:1269 index.php:1660 chat.php:1269 chat.php:1660
msgid "Linkfilter"
msgstr "Filtro de enlaces"
-#: chat.php:1217
+#: index.php:1274 chat.php:1274
msgid "View"
msgstr "Ver"
-#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582
-#: chat.php:1626
+#: index.php:1280 index.php:1310 index.php:1361 index.php:1369 index.php:1639
+#: index.php:1683 chat.php:1280 chat.php:1310 chat.php:1361 chat.php:1369
+#: chat.php:1639 chat.php:1683
msgid "Change"
msgstr "Cambiar"
-#: chat.php:1256
+#: index.php:1313 chat.php:1313
msgid "Register applicant"
msgstr "Agregar aplicante"
-#: chat.php:1264 chat.php:1322 chat.php:1328
+#: index.php:1321 index.php:1379 index.php:1385 chat.php:1321 chat.php:1379
+#: chat.php:1385
msgid "Register"
msgstr "Registrar"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Delete from database"
msgstr "Borrar de la base de datos"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Deny access (!)"
msgstr "Prohibir acceso (!)"
-#: chat.php:1296
+#: index.php:1353 chat.php:1353
msgid "Set to applicant (SG)"
msgstr "Convertir en aplicante (SG)"
-#: chat.php:1298
+#: index.php:1355 chat.php:1355
msgid "Set to regular member"
msgstr "Convertir en miembro regular"
-#: chat.php:1299
+#: index.php:1356 chat.php:1356
msgid "Set to moderator (M)"
msgstr "Convertir en moderador (M)"
-#: chat.php:1300
+#: index.php:1357 chat.php:1357
msgid "Set to supermod (SM)"
msgstr "Convertir en supermoderador (SM)"
-#: chat.php:1302
+#: index.php:1359 chat.php:1359
msgid "Set to admin (A)"
msgstr "Convertir administrador (A)"
-#: chat.php:1314
+#: index.php:1371 chat.php:1371
msgid "Register Guest"
msgstr "Registrar invitado"
-#: chat.php:1324
+#: index.php:1381 chat.php:1381
msgid "Register new Member"
msgstr "Registrar miembro nuevo"
-#: chat.php:1332 chat.php:1408 chat.php:1595 chat.php:1636 chat.php:1710
-#: chat.php:1924
+#: index.php:1389 index.php:1465 index.php:1652 index.php:1693 index.php:1767
+#: index.php:1981 chat.php:1389 chat.php:1465 chat.php:1652 chat.php:1693
+#: chat.php:1767 chat.php:1981
msgid "Reload"
msgstr "Recargar"
-#: chat.php:1345
+#: index.php:1402 chat.php:1402
msgid "Active Sessions"
msgstr "Sesiones activas"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "Nickname"
msgstr "Apodo"
-#: chat.php:1346
+#: index.php:1403 chat.php:1403
msgid "Timeout in"
msgstr "Vencimiento"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "User-Agent"
msgstr "Navegador"
-#: chat.php:1350
+#: index.php:1407 chat.php:1407
msgid "IP-Address"
msgstr "Dirección IP"
-#: chat.php:1351
+#: index.php:1408 chat.php:1408
msgid "Actions"
msgstr "Acciones"
-#: chat.php:1393
+#: index.php:1450 chat.php:1450
msgid "Unban"
msgstr "Desbanear"
-#: chat.php:1416
+#: index.php:1473 chat.php:1473
msgid "Incorrect regular expression!"
msgstr "¡Expresión regular incorrecta!"
-#: chat.php:1416 chat.php:1424
+#: index.php:1473 index.php:1481 chat.php:1473 chat.php:1481
#, php-format
msgid "Your match was as follows: %s"
msgstr ""
-#: chat.php:1424
+#: index.php:1481 chat.php:1481
msgid ""
"Your match was too long. You can use max. 255 characters. Try splitting it "
"up."
msgstr ""
-#: chat.php:1541 chat.php:1606
+#: index.php:1598 index.php:1663 chat.php:1598 chat.php:1663
msgid "Filter ID:"
msgstr "ID del filtro:"
-#: chat.php:1542 chat.php:1607
+#: index.php:1599 index.php:1664 chat.php:1599 chat.php:1664
msgid "Match"
msgstr "Coincidencia"
-#: chat.php:1543 chat.php:1608
+#: index.php:1600 index.php:1665 chat.php:1600 chat.php:1665
msgid "Replace"
msgstr "Reemplazar"
-#: chat.php:1544 chat.php:1578 chat.php:1589
+#: index.php:1601 index.php:1635 index.php:1646 chat.php:1601 chat.php:1635
+#: chat.php:1646
msgid "Allow in PM"
msgstr "Permitir en MP"
-#: chat.php:1545 chat.php:1579 chat.php:1590 chat.php:1609 chat.php:1625
-#: chat.php:1633
+#: index.php:1602 index.php:1636 index.php:1647 index.php:1666 index.php:1682
+#: index.php:1690 chat.php:1602 chat.php:1636 chat.php:1647 chat.php:1666
+#: chat.php:1682 chat.php:1690
msgid "Regex"
msgstr "Expresión regular"
-#: chat.php:1547 chat.php:1581 chat.php:1592
+#: index.php:1604 index.php:1638 index.php:1649 chat.php:1604 chat.php:1638
+#: chat.php:1649
msgid "Case sensitive"
msgstr ""
-#: chat.php:1586 chat.php:1630
+#: index.php:1643 index.php:1687 chat.php:1643 chat.php:1687
msgid "New filter:"
msgstr "Filtro nuevo:"
-#: chat.php:1593 chat.php:1634
+#: index.php:1650 index.php:1691 chat.php:1650 chat.php:1691
msgid "Add"
msgstr "Agregar"
-#: chat.php:1691
+#: index.php:1748 chat.php:1748
msgid ""
"This chat uses frames. Please enable frames in your browser or use a "
"suitable one!"
@@ -782,96 +823,99 @@ msgstr ""
"Este chat usa frames. ¡Por favor, habilitalos en tu navegador o usá "
"uno que los permita!"
-#: chat.php:1691 chat.php:2370 chat.php:2457
+#: index.php:1748 index.php:2429 index.php:2516 chat.php:1748 chat.php:2429
+#: chat.php:2516
msgid "Back to the login page."
msgstr "Volver a la página de identificación."
-#: chat.php:1709
+#: index.php:1766 chat.php:1766
msgid "Bottom"
msgstr "Inicio"
-#: chat.php:1710
+#: index.php:1767 chat.php:1767
msgid "Manual refresh required"
msgstr "Recarga manual requerida"
-#: chat.php:1726
+#: index.php:1783 chat.php:1783
msgid "Top"
msgstr "Fin"
-#: chat.php:1734 chat.php:1940 chat.php:1942
+#: index.php:1791 index.php:1997 index.php:1999 chat.php:1791 chat.php:1997
+#: chat.php:1999
msgid "Delete selected messages"
msgstr "Borrar mensajes seleccionados"
-#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281
+#: index.php:1818 index.php:1945 index.php:2160 index.php:2340 chat.php:1818
+#: chat.php:1945 chat.php:2160 chat.php:2340
msgid "Back to the chat."
msgstr "Volver a la sala."
-#: chat.php:1774 chat.php:1791
+#: index.php:1831 index.php:1848 chat.php:1831 chat.php:1848
msgid "Admin notes"
msgstr "Notas de administrador"
-#: chat.php:1777 chat.php:1788
+#: index.php:1834 index.php:1845 chat.php:1834 chat.php:1845
msgid "Staff notes"
msgstr "Notas del equipo"
-#: chat.php:1811
+#: index.php:1868 chat.php:1868
msgid "Notes saved!"
msgstr "¡Notas guardadas!"
-#: chat.php:1835 chat.php:2122
+#: index.php:1892 index.php:2181 chat.php:1892 chat.php:2181
#, php-format
msgid "Last edited by %1$s at %2$s"
msgstr "Editada por última vez por %1$s el %2$s"
-#: chat.php:1848
+#: index.php:1905 chat.php:1905
msgid "Save notes"
msgstr "Guardar notas"
-#: chat.php:1850
+#: index.php:1907 chat.php:1907
msgid "Revisions:"
msgstr "Revisiones:"
-#: chat.php:1853
+#: index.php:1910 chat.php:1910
msgid "Older"
msgstr "Antiguo"
-#: chat.php:1857
+#: index.php:1914 chat.php:1914
msgid "Newer"
msgstr "Nuevo"
-#: chat.php:1868 chat.php:1914
+#: index.php:1925 index.php:1971 chat.php:1925 chat.php:1971
msgid "Waiting room"
msgstr "Sala de espera"
-#: chat.php:1880
+#: index.php:1937 chat.php:1937
msgid "Allow checked"
msgstr "Aceptar marcados"
-#: chat.php:1881
+#: index.php:1938 chat.php:1938
msgid "Allow all"
msgstr "Aceptar todos"
-#: chat.php:1882
+#: index.php:1939 chat.php:1939
msgid "Deny checked"
msgstr "Rechazar marcados"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Deny all"
msgstr "Rechazar todos"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Send message to denied:"
msgstr "Enviar mensaje a rechazados:"
-#: chat.php:1884
+#: index.php:1941 chat.php:1941
msgid "Submit"
msgstr "Enviar"
-#: chat.php:1886
+#: index.php:1943 chat.php:1943
msgid "No more entry requests to approve."
msgstr "No hay más peticiones para aprobar."
-#: chat.php:1916
+#: index.php:1973 chat.php:1973
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat in %2$d "
@@ -880,7 +924,7 @@ msgstr ""
"Bienvenido %1$s, tu identificación fue demorada, podrás acceder a la sala en "
"%2$d segundos."
-#: chat.php:1918
+#: index.php:1975 chat.php:1975
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat as soon, "
@@ -889,7 +933,7 @@ msgstr ""
"Bienvenido %1$s, tu identificación fue demorada, podrás acceder a la sala en "
"cuanto un administrador lo permita."
-#: chat.php:1921
+#: index.php:1978 chat.php:1978
#, php-format
msgid ""
"If this page doesn't refresh every %d seconds, use the button below to "
@@ -898,64 +942,69 @@ msgstr ""
"Si esta página no se actualiza cada %d segundos, usa el botón de abajo para "
"hacerlo manualmente!"
-#: chat.php:1926 chat.php:2339
+#: index.php:1983 index.php:2398 chat.php:1983 chat.php:2398
msgid "Exit Chat"
msgstr "Salir de la sala"
-#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430
+#: index.php:1986 index.php:2133 index.php:2144 index.php:2489 chat.php:1986
+#: chat.php:2133 chat.php:2144 chat.php:2489
msgid "Rules"
msgstr "Reglas"
-#: chat.php:1985
+#: index.php:2042 chat.php:2042
msgid "Send to"
msgstr "Enviar a"
-#: chat.php:1990
+#: index.php:2047 chat.php:2047
msgid "All chatters"
msgstr "Todos"
-#: chat.php:1996
+#: index.php:2053 chat.php:2053
msgid "Members only"
msgstr "Sólo miembros"
-#: chat.php:2003
+#: index.php:2060 chat.php:2060
msgid "Staff only"
msgstr "Sólo equipo"
-#: chat.php:2010
+#: index.php:2067 chat.php:2067
msgid "Admin only"
msgstr "Sólo administradores"
-#: chat.php:2019
+#: index.php:2076 chat.php:2076
msgid "(offline)"
msgstr "(offline)"
-#: chat.php:2043
+#: index.php:2078 chat.php:2078
+msgid "(logging out)"
+msgstr ""
+
+#: index.php:2102 chat.php:2102
msgid "Also purge messages"
msgstr "Además purgar mensajes"
-#: chat.php:2050
+#: index.php:2109 chat.php:2109
msgid "Delete last message"
msgstr "Eliminar el último mensaje"
-#: chat.php:2055
+#: index.php:2114 chat.php:2114
msgid "Delete all messages"
msgstr "Eliminar todos los mensajes"
-#: chat.php:2057
+#: index.php:2116 chat.php:2116
msgid "Switch to single-line"
msgstr "Cambiar a una sola línea"
-#: chat.php:2059
+#: index.php:2118 chat.php:2118
msgid "Switch to multi-line"
msgstr "Cambiar a múltiples líneas"
-#: chat.php:2070
+#: index.php:2129 chat.php:2129
#, php-format
msgid "Welcome %s!"
msgstr "Bienvenido %s!"
-#: chat.php:2071
+#: index.php:2130 chat.php:2130
#, php-format
msgid ""
"If this frame does not reload in %d seconds, you'll have to enable automatic "
@@ -971,11 +1020,11 @@ msgstr ""
"redirección automática! Podría ser por ejemplo \"Polipo\", \"NoScript\", etc."
" o puedes usar el botón de recargar de manera manual."
-#: chat.php:2087
+#: index.php:2146 chat.php:2146
msgid "Help"
msgstr "Ayuda"
-#: chat.php:2088
+#: index.php:2147 chat.php:2147
msgid ""
"All functions should be pretty much self-explaining, just use the buttons. "
"In your profile you can adjust the refresh rate and font colour, as well as "
@@ -988,7 +1037,7 @@ msgstr ""
"que si no te mantenés hablando, vas a ser expulsado automáticamente después "
"de un tiempo."
-#: chat.php:2090
+#: index.php:2149 chat.php:2149
msgid ""
"If you want to embed an image in your post, simply put [img] in front of "
"your image URL. Example: [img]http://example.com/images/file.jpg will embed "
@@ -998,7 +1047,7 @@ msgstr ""
"comienzo de la dirección URL de la imagen. Por ejemplo: [img]http://example."
"com/images/file.jpg incluirá la imagen en tu publicación."
-#: chat.php:2093
+#: index.php:2152 chat.php:2152
msgid ""
"Members: You'll have some more options in your profile. You can adjust your "
"font face, change your password anytime and of course you can delete your "
@@ -1007,7 +1056,7 @@ msgstr ""
"Miembros: Vas a tener algunas opciones más en tu perfil. Vas a poder ajustar "
"la tipografía del texto y cambiar la contraseña en cualquier momento."
-#: chat.php:2095
+#: index.php:2154 chat.php:2154
msgid ""
"Moderators: Notice the Admin-button at the bottom. It'll bring up a page "
"where you can clean the room, kick chatters, view all active sessions and "
@@ -1018,7 +1067,7 @@ msgstr ""
"todas las sesiones activas y deshabilitar el acceso a invitados totalmente "
"si fuese necesario."
-#: chat.php:2097
+#: index.php:2156 chat.php:2156
msgid ""
"Admins: You'll be furthermore able to register guests, edit members and "
"register new nicknames."
@@ -1026,225 +1075,231 @@ msgstr ""
"Administradores: Además vas a poder registrar invitados, editar miembros y "
"registrar nuevos apodos sin que estén en la sala."
-#: chat.php:2135
+#: index.php:2194 chat.php:2194
msgid "Your Profile"
msgstr "Tu perfil"
-#: chat.php:2144
+#: index.php:2203 chat.php:2203
msgid "Don't ignore anymore"
msgstr "Dejar de ignorar"
-#: chat.php:2152
+#: index.php:2211 chat.php:2211
msgid "Ignore"
msgstr "Ignorar"
-#: chat.php:2163
+#: index.php:2222 chat.php:2222
#, php-format
msgid "Refresh rate (%1$d-%2$d seconds)"
msgstr "Tiempo de actualización (%1$d-%2$d segundos)"
-#: chat.php:2167 chat.php:2170
+#: index.php:2226 index.php:2229 chat.php:2226 chat.php:2229
msgid "View examples"
msgstr "Ver ejemplos"
-#: chat.php:2174
+#: index.php:2233 chat.php:2233
msgid "Fontface"
msgstr "Tipografía"
-#: chat.php:2175
+#: index.php:2234 chat.php:2234
msgid "Room Default"
msgstr "Sala por defecto"
-#: chat.php:2188
+#: index.php:2247 chat.php:2247
msgid "Bold"
msgstr "Negrita"
-#: chat.php:2192
+#: index.php:2251 chat.php:2251
msgid "Italic"
msgstr "Bastardilla"
-#: chat.php:2196
+#: index.php:2255 chat.php:2255
msgid "Small"
msgstr "Pequeño"
-#: chat.php:2199
+#: index.php:2258 chat.php:2258
msgid "Example for your chosen font"
msgstr "Ejemplo de la tipografía seleccionada"
-#: chat.php:2203
+#: index.php:2262 chat.php:2262
msgid "Autoscroll (for old browsers or top-to-bottom sort)."
msgstr "Autoscroll (para buscadores antiguos o tipo top to bottom)."
-#: chat.php:2234
+#: index.php:2293 chat.php:2293
msgid "For everyone"
msgstr "Para todos"
-#: chat.php:2239
+#: index.php:2298 chat.php:2298
msgid "For members only"
msgstr "Solo para miembros"
-#: chat.php:2244
+#: index.php:2303 chat.php:2303
msgid "For staff only"
msgstr "Solo para staff"
-#: chat.php:2248
+#: index.php:2307 chat.php:2307
msgid "Time zone"
msgstr "Zona horaria"
-#: chat.php:2261
+#: index.php:2320 chat.php:2320
msgid "Change Password"
msgstr "Cambiar la contraseña"
-#: chat.php:2263
+#: index.php:2322 chat.php:2322
msgid "Old password:"
msgstr "Contraseña anterior:"
-#: chat.php:2264
+#: index.php:2323 chat.php:2323
msgid "New password:"
msgstr "Contraseña nueva:"
-#: chat.php:2265
+#: index.php:2324 chat.php:2324
msgid "Confirm new password:"
msgstr "Confirmar contraseña nueva:"
-#: chat.php:2268
+#: index.php:2327 chat.php:2327
msgid "Change Nickname"
msgstr "Cambiar Nick"
-#: chat.php:2269
+#: index.php:2328 chat.php:2328
msgid "New nickname:"
msgstr "Nuevo apodo:"
-#: chat.php:2273
+#: index.php:2332 chat.php:2332
msgid "Save changes"
msgstr "Guardar cambios"
-#: chat.php:2275
+#: index.php:2334 chat.php:2334
msgid "Delete account"
msgstr "Borrar cuenta"
-#: chat.php:2301
+#: index.php:2360 chat.php:2360
msgid "Reload Post Box"
msgstr "Recargar caja de publicación"
-#: chat.php:2304
+#: index.php:2363 chat.php:2363
msgid "Reload Messages"
msgstr "Recargar mensajes"
-#: chat.php:2307
+#: index.php:2366 chat.php:2366
msgid "Profile"
msgstr "Perfil"
-#: chat.php:2311 chat.php:2528
+#: index.php:2370 index.php:2590 chat.php:2370 chat.php:2590
msgid "Admin"
msgstr "Admin"
-#: chat.php:2318
+#: index.php:2377 chat.php:2377
msgid "View public notes"
msgstr "Ver notas públicas"
-#: chat.php:2325
+#: index.php:2384 chat.php:2384
msgid "Clone"
msgstr "Clone"
-#: chat.php:2334
+#: index.php:2393 chat.php:2393
msgid "Rearrange"
msgstr ""
-#: chat.php:2337
+#: index.php:2396 chat.php:2396
msgid "Rules & Help"
msgstr ""
-#: chat.php:2358 chat.php:2362
+#: index.php:2417 index.php:2421 chat.php:2417 chat.php:2421
msgid "File not found!"
msgstr "Documento no encontrado!"
-#: chat.php:2370
+#: index.php:2429 chat.php:2429
#, php-format
msgid "Bye %s, visit again soon!"
msgstr "¡Chau %s, visítanos pronto!"
-#: chat.php:2377
+#: index.php:2436 chat.php:2436
msgid "Colourtable"
msgstr "Colourtable"
-#: chat.php:2388
+#: index.php:2447 chat.php:2447
msgid "Back to your Profile"
msgstr "Volver a tu perfil"
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "Repeat password to register"
msgstr "Repetir contraseña para registrarse"
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "(optional)"
msgstr "(opcional)"
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Guests, choose a colour:"
msgstr "Invitado, elegí un color:"
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Random Colour"
msgstr "Color al azar"
-#: chat.php:2421 chat.php:2435 chat.php:2569
+#: index.php:2480 index.php:2494 index.php:2631 chat.php:2480 chat.php:2494
+#: chat.php:2631
msgid "Sorry, currently members only!"
msgstr "¡Perdón! Actualmente sólo se permiten miembros!"
-#: chat.php:2423 chat.php:2437
+#: index.php:2482 index.php:2496 chat.php:2482 chat.php:2496
msgid "Enter Chat"
msgstr "Entrar a la sala"
-#: chat.php:2457
+#: index.php:2516 chat.php:2516
#, php-format
msgid "Error: %s"
msgstr "Error: %s"
-#: chat.php:2467
+#: index.php:2526 chat.php:2526
msgid "Fatal error"
msgstr "Error fatal"
-#: chat.php:2470
+#: index.php:2529 chat.php:2529
#, php-format
msgid "Fatal error: %s"
msgstr "Error fatal: %s"
-#: chat.php:2482 chat.php:2693
+#: index.php:2541 index.php:2756 chat.php:2541 chat.php:2756
msgid "Failed login attempt(s)"
msgstr "Intento(s) de inicio de sesión fallido(s)"
-#: chat.php:2489
+#: index.php:2548 chat.php:2548
#, php-format
msgid "Read %d messages in your inbox"
msgstr "Leer %d mensajes en tu bandeja"
-#: chat.php:2498
+#: index.php:2557 chat.php:2557
#, php-format
msgid "%d new guests to approve"
msgstr "%d nuevos invitados para aprobar"
-#: chat.php:2530
+#: index.php:2577 chat.php:2577
+msgid "logging out"
+msgstr ""
+
+#: index.php:2592 chat.php:2592
msgid "Admin:"
msgstr "Admin:"
-#: chat.php:2533
+#: index.php:2595 chat.php:2595
msgid "Staff"
msgstr "Equipo"
-#: chat.php:2535
+#: index.php:2597 chat.php:2597
msgid "Staff:"
msgstr "Equipo:"
-#: chat.php:2540
+#: index.php:2602 chat.php:2602
msgid "Members:"
msgstr "Miembros:"
-#: chat.php:2542
+#: index.php:2604 chat.php:2604
msgid "Guests"
msgstr "Invitados"
-#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092
+#: index.php:2625 index.php:3063 index.php:3267 index.php:4172 chat.php:2625
+#: chat.php:3063 chat.php:3267 chat.php:4172
#, fuzzy, php-format
msgid ""
"Invalid nickname (%1$d characters maximum and has to match the regular "
@@ -1253,7 +1308,8 @@ msgstr ""
"NickName inválido (%1$d characters maximum and has to match the regular "
"expression \"%2$s\")"
-#: chat.php:2566 chat.php:2996 chat.php:3162 chat.php:4094
+#: index.php:2628 index.php:3066 index.php:3232 index.php:4174 chat.php:2628
+#: chat.php:3066 chat.php:3232 chat.php:4174
#, fuzzy, php-format
msgid ""
"Invalid password (At least %1$d characters and has to match the regular "
@@ -1262,248 +1318,256 @@ msgstr ""
"Contraseña erronea(At least %1$d characters and has to match the regular "
"expression \"%2$s\")"
-#: chat.php:2574 chat.php:2739
+#: index.php:2636 index.php:2806 chat.php:2636 chat.php:2806
msgid "Wrong global Password!"
msgstr "¡Contraseña global incorrecta!"
-#: chat.php:2591 chat.php:2612
+#: index.php:2654 index.php:2675 chat.php:2654 chat.php:2675
msgid "Wrong Captcha"
msgstr "Captcha incorrecto"
-#: chat.php:2596 chat.php:2604
+#: index.php:2659 index.php:2667 chat.php:2659 chat.php:2667
msgid "Captcha already used or timed out."
msgstr "Captcha ya usado o vencido."
-#: chat.php:2652
+#: index.php:2715 chat.php:2715
msgid "A user with this nickname is already logged in."
msgstr "Un usuario con ese nombre ya está registrado."
-#: chat.php:2652 chat.php:2933 chat.php:3176
+#: index.php:2715 index.php:3003 index.php:3246 chat.php:2715 chat.php:3003
+#: chat.php:3246
msgid "Wrong Password!"
msgstr "¡Contraseña incorrecta!"
-#: chat.php:2696
+#: index.php:2759 chat.php:2759
msgid "Dismiss"
msgstr "Reconocido"
-#: chat.php:2747 chat.php:3171 chat.php:4096
+#: index.php:2814 index.php:3241 index.php:4176 chat.php:2814 chat.php:3241
+#: chat.php:4176
msgid "Password confirmation does not match!"
msgstr "¡La contraseña y su confirmación no coinciden!"
-#: chat.php:2859
+#: index.php:2854 chat.php:2854
+#, fuzzy
+#| msgid "Kickmessage:"
+msgid "no kick message"
+msgstr "Motivo de expulsión:"
+
+#: index.php:2929 chat.php:2929
msgid "Invalid/expired session"
msgstr "La sesión es inválida o expiró"
-#: chat.php:2875 chat.php:3412
+#: index.php:2945 index.php:3483 chat.php:2945 chat.php:3483
msgid "You have been kicked!"
msgstr "¡Te expulsaron!"
-#: chat.php:2885
+#: index.php:2955 chat.php:2955
#, php-format
msgid "Currently %d chatter(s) in room:"
msgstr "En este momento hay %d personas en la sala:"
-#: chat.php:2933
+#: index.php:3003 chat.php:3003
msgid "This nickname is a registered member."
msgstr "Este nombre es un usuario registrado."
-#: chat.php:2960 chat.php:3001
+#: index.php:3030 index.php:3071 chat.php:3030 chat.php:3071
#, php-format
msgid "%s is already registered."
msgstr "%s ya fue registrado."
-#: chat.php:2969 chat.php:2990
+#: index.php:3039 index.php:3060 chat.php:3039 chat.php:3060
#, php-format
msgid "Can't register %s"
msgstr "No pudo registrarse %s"
-#: chat.php:2978 chat.php:3023
+#: index.php:3048 index.php:3093 chat.php:3048 chat.php:3093
#, php-format
msgid "%s successfully registered."
msgstr "%s se registro sin problemas."
-#: chat.php:3031 chat.php:3036
+#: index.php:3101 index.php:3106 chat.php:3101 chat.php:3106
#, php-format
msgid "Can't change status of %s"
msgstr "No pudo cambiarse el estado de %s"
-#: chat.php:3047
+#: index.php:3117 chat.php:3117
#, php-format
msgid "%s successfully deleted from database."
msgstr "%s fue eliminado de la base de datos."
-#: chat.php:3056
+#: index.php:3126 chat.php:3126
#, php-format
msgid "Status of %s successfully changed."
msgstr "Se cambió el estado de %s sin problemas."
-#: chat.php:3073
+#: index.php:3143 chat.php:3143
#, php-format
msgid "Successfully reset password for %s"
msgstr ""
-#: chat.php:3075
+#: index.php:3145 chat.php:3145
#, php-format
msgid "Can't reset password for %s"
msgstr ""
-#: chat.php:3190
+#: index.php:3260 chat.php:3260
msgid "Your profile has successfully been saved."
msgstr "Tu perfil se guardó sin problemas."
-#: chat.php:3202
+#: index.php:3272 chat.php:3272
msgid "Nickname is already taken"
msgstr "Ese apodo ya fue tomado"
-#: chat.php:3714
+#: index.php:3785 chat.php:3785
msgid "system message"
msgstr "mensaje de sistema"
-#: chat.php:3921
+#: index.php:4001 chat.php:4001
msgid "Beige"
msgstr "Beige"
-#: chat.php:3922
+#: index.php:4002 chat.php:4002
msgid "Black"
msgstr "Negro"
-#: chat.php:3923
+#: index.php:4003 chat.php:4003
msgid "Blue"
msgstr "Azul"
-#: chat.php:3924
+#: index.php:4004 chat.php:4004
msgid "Blue violet"
msgstr "Azul violáceo"
-#: chat.php:3925
+#: index.php:4005 chat.php:4005
msgid "Brown"
msgstr "Marrón"
-#: chat.php:3926
+#: index.php:4006 chat.php:4006
msgid "Cyan"
msgstr "Cian"
-#: chat.php:3927
+#: index.php:4007 chat.php:4007
msgid "Dark blue"
msgstr "Azul oscuro"
-#: chat.php:3928
+#: index.php:4008 chat.php:4008
msgid "Dark green"
msgstr "Verde oscuro"
-#: chat.php:3929
+#: index.php:4009 chat.php:4009
msgid "Dark red"
msgstr "Rojo oscuro"
-#: chat.php:3930
+#: index.php:4010 chat.php:4010
msgid "Dark violet"
msgstr "Violeta oscuro"
-#: chat.php:3931
+#: index.php:4011 chat.php:4011
msgid "Sky blue"
msgstr "Azul celeste"
-#: chat.php:3932
+#: index.php:4012 chat.php:4012
msgid "Gold"
msgstr "Dorado"
-#: chat.php:3933
+#: index.php:4013 chat.php:4013
msgid "Grey"
msgstr "Gris"
-#: chat.php:3934
+#: index.php:4014 chat.php:4014
msgid "Green"
msgstr "Verde"
-#: chat.php:3935
+#: index.php:4015 chat.php:4015
msgid "Hot pink"
msgstr "Rosa cálido"
-#: chat.php:3936
+#: index.php:4016 chat.php:4016
msgid "Indigo"
msgstr "Índigo"
-#: chat.php:3937
+#: index.php:4017 chat.php:4017
msgid "Light blue"
msgstr "Azul claro"
-#: chat.php:3938
+#: index.php:4018 chat.php:4018
msgid "Light green"
msgstr "Verde claro"
-#: chat.php:3939
+#: index.php:4019 chat.php:4019
msgid "Lime green"
msgstr "Verde lima"
-#: chat.php:3940
+#: index.php:4020 chat.php:4020
msgid "Magenta"
msgstr "Magenta"
-#: chat.php:3941
+#: index.php:4021 chat.php:4021
msgid "Olive"
msgstr "Oliva"
-#: chat.php:3942
+#: index.php:4022 chat.php:4022
msgid "Orange"
msgstr "Naranja"
-#: chat.php:3943
+#: index.php:4023 chat.php:4023
msgid "Orange red"
msgstr "Rojo anaranjado"
-#: chat.php:3944
+#: index.php:4024 chat.php:4024
msgid "Purple"
msgstr "Púrpura"
-#: chat.php:3945
+#: index.php:4025 chat.php:4025
msgid "Red"
msgstr "Rojo"
-#: chat.php:3946
+#: index.php:4026 chat.php:4026
msgid "Royal blue"
msgstr "Azul real"
-#: chat.php:3947
+#: index.php:4027 chat.php:4027
msgid "Sea green"
msgstr "Verde marino"
-#: chat.php:3948
+#: index.php:4028 chat.php:4028
msgid "Sienna"
msgstr "Siena"
-#: chat.php:3949
+#: index.php:4029 chat.php:4029
msgid "Silver"
msgstr "Plateado"
-#: chat.php:3950
+#: index.php:4030 chat.php:4030
msgid "Tan"
msgstr "Bronceado"
-#: chat.php:3951
+#: index.php:4031 chat.php:4031
msgid "Teal"
msgstr "Cerceta"
-#: chat.php:3952
+#: index.php:4032 chat.php:4032
msgid "Violet"
msgstr "Violeta"
-#: chat.php:3953
+#: index.php:4033 chat.php:4033
msgid "White"
msgstr "Blanco"
-#: chat.php:3954
+#: index.php:4034 chat.php:4034
msgid "Yellow"
msgstr "Amarillo"
-#: chat.php:3955
+#: index.php:4035 chat.php:4035
msgid "Yellow green"
msgstr "Verde amarillento"
-#: chat.php:4077
+#: index.php:4157 chat.php:4157
msgid "Successfully destroyed chat"
msgstr "Sala destruida satisfactoriamente"
-#: chat.php:4086
+#: index.php:4166 chat.php:4166
msgid ""
"Database tables already exist! To continue, you have to delete these tables "
"manually first."
@@ -1511,98 +1575,103 @@ msgstr ""
"¡La base de datos ya existe! Para continuar, primero tenés que borrar esas "
"tablas manualmente."
-#: chat.php:4089
+#: index.php:4169 chat.php:4169
msgid "A Superadmin already exists!"
msgstr "¡Ya existe un superadministrador!"
-#: chat.php:4182 chat.php:4369
+#: index.php:4263 index.php:4451 chat.php:4263 chat.php:4451
#, php-format
msgid "%s - "
msgstr "%s - "
-#: chat.php:4183 chat.php:4369
+#: index.php:4264 index.php:4451 chat.php:4264 chat.php:4451
#, php-format
msgid "[M] %s - "
msgstr "[M] %s - "
-#: chat.php:4184 chat.php:4369
+#: index.php:4265 index.php:4451 chat.php:4265 chat.php:4451
#, php-format
msgid "[Staff] %s - "
msgstr "[Staff] %s - "
-#: chat.php:4185 chat.php:4369
+#: index.php:4266 index.php:4451 chat.php:4266 chat.php:4451
#, php-format
msgid "[Admin] %s - "
msgstr "[Admin] %s - "
-#: chat.php:4186 chat.php:4369
+#: index.php:4267 index.php:4451 chat.php:4267 chat.php:4451
#, php-format
msgid "[%1$s to %2$s] - "
msgstr "[%1$s a %2$s] - "
-#: chat.php:4187
+#: index.php:4268 chat.php:4268
#, php-format
msgid "%s entered the chat."
msgstr "%s entró en la sala."
-#: chat.php:4188
+#: index.php:4269 chat.php:4269
#, php-format
msgid "%s left the chat."
msgstr "%s se fue de la sala."
-#: chat.php:4189
+#: index.php:4270 chat.php:4270
#, php-format
msgid "%s is now a registered member."
msgstr "%s ahora es un miembro registrado."
-#: chat.php:4190
+#: index.php:4271 chat.php:4271
#, php-format
msgid "%s is now a registered applicant."
msgstr "%s ahora es un aplicante registrado."
-#: chat.php:4191
-#, php-format
-msgid "%s has been kicked."
+#: index.php:4272 chat.php:4272
+#, fuzzy, php-format
+#| msgid "%s has been kicked."
+msgid "%1$s has been kicked: %2$s"
msgstr "%s fue expulsado."
-#: chat.php:4192
-#, php-format
-msgid "%s have been kicked."
+#: index.php:4273 chat.php:4273
+#, fuzzy, php-format
+#| msgid "%s have been kicked."
+msgid "%1$s have been kicked: %2$s"
msgstr "%s fueron expulsados."
-#: chat.php:4193
-msgid "All guests have been kicked."
+#: index.php:4274 chat.php:4274
+#, fuzzy, php-format
+#| msgid "All guests have been kicked."
+msgid "All guests have been kicked: %1$s"
msgstr "Todas las personas fueron expulsadas."
-#: chat.php:4194
+#: index.php:4275 chat.php:4275
#, php-format
msgid "%s has been cleaned."
msgstr "%s fue limpiada."
-#: chat.php:4202 chat.php:4396
+#: index.php:4283 index.php:4478 chat.php:4283 chat.php:4478
msgid "Temporarily disabled"
msgstr "Desactivado temporalmente"
-#: chat.php:4218 chat.php:4594
+#: index.php:4299 index.php:4676 chat.php:4299 chat.php:4676
msgid "A chat community"
msgstr ""
-#: chat.php:4256
+#: index.php:4338 chat.php:4338
msgid "Successfully registered!"
msgstr "¡Registrado con éxito!"
-#: chat.php:4522 chat.php:4721 chat.php:4728
+#: index.php:4604 index.php:4807 index.php:4814 chat.php:4604 chat.php:4807
+#: chat.php:4814
msgid "No connection to database!"
msgstr "¡Sin conexión a la base de datos!"
-#: chat.php:4531
+#: index.php:4613 chat.php:4613
msgid ""
"Note: Default CSS is now hardcoded and can be removed from the CSS setting"
msgstr ""
"Note: Css predeterminado está ahora hardcoded y puede ser removido de la "
"configuración CSS"
-#: chat.php:4611
+#: index.php:4697 chat.php:4697
#, php-format
msgid ""
"The %s extension of PHP is required for the encryption feature. Please "
@@ -1611,7 +1680,8 @@ msgstr ""
"La extensión %s de PHP es necesaria para la encriptación. Instálela o "
"configure la encriptación en false."
-#: chat.php:4684 chat.php:4689 chat.php:4694
+#: index.php:4770 index.php:4775 index.php:4780 chat.php:4770 chat.php:4775
+#: chat.php:4780
#, php-format
msgid ""
"The %s extension of PHP is required for the selected database driver. Please "
@@ -1620,7 +1690,8 @@ msgstr ""
"La extensión %s de PHP es necesaria para la database driver seleccionada. "
"Instálelo primero."
-#: chat.php:4707 chat.php:4715 chat.php:4719 chat.php:4726
+#: index.php:4793 index.php:4801 index.php:4805 index.php:4812 chat.php:4793
+#: chat.php:4801 chat.php:4805 chat.php:4812
msgid ""
"No connection to database, please create a database and edit the script to "
"use the correct database with given username and password!"
@@ -1628,7 +1699,7 @@ msgstr ""
"No connection to database, please create a database and edit the script to "
"use the correct database with given username and password!"
-#: chat.php:4734
+#: index.php:4820 chat.php:4820
msgid ""
"The memcached extension of PHP is required for the caching feature. Please "
"install it first or set the memcached setting back to false."
diff --git a/locale/fi_FI/LC_MESSAGES/le-chat-php.po b/locale/fi_FI/LC_MESSAGES/le-chat-php.po
index a2233a9..f092006 100644
--- a/locale/fi_FI/LC_MESSAGES/le-chat-php.po
+++ b/locale/fi_FI/LC_MESSAGES/le-chat-php.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-01-18 21:32+0100\n"
+"POT-Creation-Date: 2025-03-29 17:02+0100\n"
"PO-Revision-Date: 2023-01-18 21:37+0100\n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -18,554 +18,586 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.1.1\n"
-#: chat.php:261
+#: index.php:272 chat.php:272
msgid "Enable applicants"
msgstr "Salli hakijat"
-#: chat.php:262
+#: index.php:273 index.php:2267 chat.php:273 chat.php:2267
msgid "Embed images"
msgstr "Upota kuvat"
-#: chat.php:263 chat.php:2202
+#: index.php:274 index.php:2261 chat.php:274 chat.php:2261
msgid "Show Timestamps"
msgstr "Näytä aikaleimat"
-#: chat.php:264
+#: index.php:275 chat.php:275
msgid "Show session-IP"
msgstr "Näytä istunnon IP"
-#: chat.php:265
+#: index.php:276 chat.php:276
msgid "Members can kick, if no moderator is present"
msgstr "Jäsenet voivat heittää ulos, jos moderaattori ei ole paikalla"
-#: chat.php:266
+#: index.php:277 chat.php:277
msgid "Members can always kick"
msgstr ""
-#: chat.php:267
+#: index.php:278 chat.php:278
msgid "Force redirection"
msgstr "Pakota uudelleenohjaus"
-#: chat.php:268
+#: index.php:279 index.php:2270 chat.php:279 chat.php:2270
msgid "Incognito mode"
msgstr "Yksityistila"
-#: chat.php:269
+#: index.php:280 chat.php:280
msgid "Send mail on new public message"
msgstr "Lähetä sähköpostia yleisestä viestistä"
-#: chat.php:270
+#: index.php:281 chat.php:281
msgid "Fallback to waiting room, if no moderator is present to approve guests"
msgstr ""
"Palaa odotushuoneeseen, jos moderaattori ei ole paikalla hyväksymässä "
"vierailijoita"
-#: chat.php:271
+#: index.php:282 chat.php:282
msgid "Disable private messages"
msgstr "Poista yksityisviestit käytöstä"
-#: chat.php:272 chat.php:2223
+#: index.php:283 index.php:2282 chat.php:283 chat.php:2282
msgid "Enable offline inbox"
msgstr "Ota käyttöön offline-viestilaatikko"
-#: chat.php:273
+#: index.php:284 chat.php:284
msgid "Show a greeting message before showing the messages"
msgstr "Näytä tervetuloviesti ennen muita viestejä"
-#: chat.php:274 chat.php:2204
+#: index.php:285 index.php:2263 chat.php:285 chat.php:2263
msgid "Sort messages from top to bottom"
msgstr "Järjestä viestit ylhäältä alas"
-#: chat.php:275 chat.php:2205
+#: index.php:286 index.php:2264 chat.php:286 chat.php:2264
msgid "Hide list of chatters"
msgstr "Piilota osallistujalista"
-#: chat.php:276 chat.php:1780 chat.php:1794
+#: index.php:287 index.php:1837 index.php:1851 chat.php:287 chat.php:1837
+#: chat.php:1851
msgid "Personal notes"
msgstr "Henkilökohtaiset muistiinpanot"
-#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110
+#: index.php:288 index.php:1840 index.php:1854 index.php:2169 chat.php:288
+#: chat.php:1840 chat.php:1854 chat.php:2169
msgid "Public notes"
msgstr "Julkiset muistiinpanot"
-#: chat.php:278
+#: index.php:289 chat.php:289
msgid "Apply kick filter on moderators"
msgstr "Käytä ulosheittosuodatinta moderaattoreihin"
-#: chat.php:279
+#: index.php:290 chat.php:290
msgid "Show who kicks people or purges all messages."
msgstr ""
-#: chat.php:280
+#: index.php:291 chat.php:291
msgid "Hide reload post box button"
msgstr ""
-#: chat.php:281
+#: index.php:292 chat.php:292
msgid "Hide reload messages button"
msgstr ""
-#: chat.php:282
+#: index.php:293 chat.php:293
msgid "Hide profile button"
msgstr ""
-#: chat.php:283
+#: index.php:294 chat.php:294
msgid "Hide admin button"
msgstr ""
-#: chat.php:284
+#: index.php:295 chat.php:295
msgid "Hide notes button"
msgstr ""
-#: chat.php:285
+#: index.php:296 chat.php:296
msgid "Hide clone button"
msgstr ""
-#: chat.php:286
+#: index.php:297 chat.php:297
msgid "Hide rearrange button"
msgstr ""
-#: chat.php:287
+#: index.php:298 chat.php:298
msgid "Hide help button"
msgstr ""
-#: chat.php:288
+#: index.php:299 chat.php:299
msgid "Apply postbox delete button globally"
msgstr ""
-#: chat.php:289
+#: index.php:300 chat.php:300
msgid "Allow enhancing functionality with JavaScript"
msgstr ""
-#: chat.php:292 chat.php:2170
+#: index.php:303 index.php:2229 chat.php:303 chat.php:2229
msgid "Background colour"
msgstr "Taustaväri"
-#: chat.php:293 chat.php:2167
+#: index.php:304 index.php:2226 chat.php:304 chat.php:2226
msgid "Font colour"
msgstr "Fontin väri"
-#: chat.php:296
+#: index.php:307 chat.php:307
msgid "Entrance"
msgstr "Liittyi"
-#: chat.php:297
+#: index.php:308 chat.php:308
msgid "Leaving"
msgstr "Poistui"
-#: chat.php:298
+#: index.php:309 chat.php:309
msgid "Member registered"
msgstr "Käyttäjä luotu"
-#: chat.php:299
+#: index.php:310 chat.php:310
msgid "Applicant registered"
msgstr "Hakija luotu"
-#: chat.php:300
+#: index.php:311 chat.php:311
msgid "Kicked"
msgstr "Heitetty ulos"
-#: chat.php:301
+#: index.php:312 chat.php:312
msgid "Multiple kicked"
msgstr "Moniulosheitto"
-#: chat.php:302
+#: index.php:313 chat.php:313
msgid "All kicked"
msgstr "Kaikki heitetty"
-#: chat.php:303
+#: index.php:314 chat.php:314
msgid "Room cleaned"
msgstr "Huone tyhjennetty"
-#: chat.php:304
+#: index.php:315 chat.php:315
msgid "Message to all"
msgstr "Viesti kaikille"
-#: chat.php:305
+#: index.php:316 chat.php:316
msgid "Message to members only"
msgstr "Viesti vain jäsenille"
-#: chat.php:306
+#: index.php:317 chat.php:317
msgid "Message to staff only"
msgstr "Viesti vain henkilökunnalle"
-#: chat.php:307
+#: index.php:318 chat.php:318
msgid "Message to admins only"
msgstr "Viesti vain ylläpidolle"
-#: chat.php:308
+#: index.php:319 chat.php:319
msgid "Private message"
msgstr "Yksityisviesti"
-#: chat.php:309
+#: index.php:320 chat.php:320
msgid "Attachement"
msgstr "Liite"
-#: chat.php:312
+#: index.php:323 chat.php:323
msgid "Member timeout (minutes)"
msgstr "Jäsenten aikakatkaisu (minuuttia)"
-#: chat.php:313
+#: index.php:324 chat.php:324
msgid "Guest timeout (minutes)"
msgstr "Vierailijoiden aikakatkaisu (minuuttia)"
-#: chat.php:314
+#: index.php:325 chat.php:325
msgid "Kick penalty (minutes)"
msgstr "Ulosheiton kesto (minuuttia)"
-#: chat.php:315
+#: index.php:326 chat.php:326
msgid "Waiting room time (seconds)"
msgstr "Odotusaika (sekuntia)"
-#: chat.php:316
+#: index.php:327 chat.php:327
+msgid "Logout delay (seconds)"
+msgstr ""
+
+#: index.php:328 chat.php:328
msgid "Captcha timeout (seconds)"
msgstr "Captchan aikakatkaisu (sekuntia)"
-#: chat.php:317
+#: index.php:329 chat.php:329
msgid "Message timeout (minutes)"
msgstr "Viestin aikakatkaisu (minuuttia)"
-#: chat.php:318
+#: index.php:330 chat.php:330
msgid "Message limit (public)"
msgstr "Viestiraja (julkinen)"
-#: chat.php:319
+#: index.php:331 chat.php:331
msgid "Maximal message length"
msgstr "Viestin enimmäispituus"
-#: chat.php:320
+#: index.php:332 chat.php:332
msgid "Maximal nickname length"
msgstr "Käyttäjänimen enimmäispituus"
-#: chat.php:321
+#: index.php:333 chat.php:333
msgid "Minimal password length"
msgstr "Salasanan vähimmäispituus"
-#: chat.php:322
+#: index.php:334 chat.php:334
msgid "Default message reload time (seconds)"
msgstr "Oletuspäivitysnopeus (sekuntia)"
-#: chat.php:323
+#: index.php:335 chat.php:335
msgid "Number of notes revisions to keep"
msgstr "Muistissa pidettävien viestien määrä"
-#: chat.php:324
+#: index.php:336 chat.php:336
msgid "Maximum upload size in KB"
msgstr "Tiedoston maksimikoko (KB)"
-#: chat.php:325
+#: index.php:337 chat.php:337
msgid "Enable file uploads"
msgstr "Ota tiedostolataukset käyttöön"
-#: chat.php:326
+#: index.php:338 chat.php:338
msgid "Lowest refresh rate"
msgstr ""
-#: chat.php:327
+#: index.php:339 chat.php:339
msgid "Highest refresh rate"
msgstr ""
-#: chat.php:330
+#: index.php:342 chat.php:342
msgid "Rules (html)"
msgstr "Säännöt (html)"
-#: chat.php:331
+#: index.php:343 chat.php:343
msgid "CSS Style"
msgstr "CSS-tyyli"
-#: chat.php:332
+#: index.php:344 chat.php:344
msgid "Chat disabled message (html)"
msgstr "Poist käytöstä -viesti (html)"
-#: chat.php:335
+#: index.php:347 chat.php:347
msgid ""
"Date "
"formating"
msgstr ""
"Päivämäärän esitystapa"
+"php#refsect1-function.date-parameters\" rel=\"noopener "
+"noreferrer\">Päivämäärän esitystapa"
-#: chat.php:336
+#: index.php:348 chat.php:348
msgid "Characters used in Captcha"
msgstr "Captchan merkit"
-#: chat.php:337
+#: index.php:349 chat.php:349
msgid "Custom redirection script"
msgstr "Oma uudelleenohjausskripti"
-#: chat.php:338
+#: index.php:350 chat.php:350
msgid "Chat name"
msgstr "Chatin nimi"
-#: chat.php:339
+#: index.php:351 chat.php:351
msgid "Send mail using this address"
msgstr "Lähetä sähköposti osoitteesta"
-#: chat.php:340
+#: index.php:352 chat.php:352
msgid "Send mail to this address"
msgstr "Lähetä sähköposti osoitteeseen"
-#: chat.php:341
+#: index.php:353 chat.php:353
msgid "Nickname regex"
msgstr "Käyttäjänimen regex"
-#: chat.php:342
+#: index.php:354 chat.php:354
msgid "Password regex"
msgstr "Salasanan regex"
-#: chat.php:343
+#: index.php:355 chat.php:355
msgid "Link to external CSS file (on your own server)"
msgstr "Linkki ulkoiseen CSS_tiedostoon"
-#: chat.php:344
+#: index.php:356 chat.php:356
msgid "Meta description (best 50 - 160 characters for SEO)"
msgstr "Meta-kuvaus (50 - 160 merkkiä)"
-#: chat.php:345
+#: index.php:357 chat.php:357
+msgid "Show this text when a user's logout is delayed"
+msgstr ""
+
+#: index.php:358 chat.php:358
msgid "Prepend this text to system messages"
msgstr ""
-#: chat.php:348 chat.php:728 chat.php:1225
+#: index.php:361 index.php:780 index.php:1282 chat.php:361 chat.php:780
+#: chat.php:1282
msgid "Change Guestaccess"
msgstr "Muuta vierailijapääsyä"
-#: chat.php:349
+#: index.php:362 chat.php:362
msgid "Enable global Password"
msgstr ""
-#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433
+#: index.php:363 index.php:810 index.php:2474 index.php:2492 chat.php:363
+#: chat.php:810 chat.php:2474 chat.php:2492
msgid "Global Password:"
msgstr "Yleinen salasana:"
-#: chat.php:351 chat.php:819
+#: index.php:364 index.php:871 chat.php:364 chat.php:871
msgid "Captcha"
msgstr "Captcha"
-#: chat.php:352 chat.php:775 chat.php:835
+#: index.php:365 index.php:827 index.php:887 chat.php:365 chat.php:827
+#: chat.php:887
msgid "Only for guests"
msgstr "Vain vierailijoille"
-#: chat.php:353 chat.php:1220
+#: index.php:366 index.php:1277 chat.php:366 chat.php:1277
msgid "Topic"
msgstr "Aiher"
-#: chat.php:354 chat.php:781
+#: index.php:367 index.php:833 chat.php:367 chat.php:833
msgid "Let guests register themselves"
msgstr "Anna vierailijoiden rekisteröidä itsensä"
-#: chat.php:355 chat.php:862
+#: index.php:368 index.php:919 chat.php:368 chat.php:919
msgid "Default time zone"
msgstr "Oletusaikavyöhyke"
-#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259
+#: index.php:581 index.php:1157 index.php:4158 index.php:4341 chat.php:581
+#: chat.php:1157 chat.php:4158 chat.php:4341
msgid "Initial Setup"
msgstr "Ensimmäinen asennus"
-#: chat.php:588
+#: index.php:601 chat.php:601
#, php-format
msgid "Redirecting to: %s"
msgstr "Siirrytään: %s"
-#: chat.php:595
+#: index.php:608 chat.php:608
#, php-format
msgid ""
"Dangerous non-http link requested, copy paste this link if you are really "
"sure: %s"
msgstr "Vaarallinen linkki, kopioi ja liitä se jos olet varma: %s"
-#: chat.php:597
+#: index.php:610 chat.php:610
#, php-format
msgid "Non-http link requested: %s"
msgstr "Ei-tuettu linkki: %s"
-#: chat.php:599
+#: index.php:612 chat.php:612
#, php-format
msgid "If it's not working, try this one: %s"
msgstr "Jos se ei toimi, yritä tätä: %s"
-#: chat.php:609
+#: index.php:622 chat.php:622
msgid "Access denied"
msgstr "Pääsy kielletty"
-#: chat.php:609
+#: index.php:622 chat.php:622
#, php-format
msgid "You are logged in as %s and don't have access to this section."
msgstr "Kirjautunut sisään %s-oikeuksilla, ei pääsyä tähän sisältöön."
-#: chat.php:611 chat.php:915 chat.php:1211 chat.php:1393
+#: index.php:624 index.php:972 index.php:1268 index.php:1450 chat.php:624
+#: chat.php:972 chat.php:1268 chat.php:1450
msgid "Logout"
msgstr "Kirjaudu ulos"
-#: chat.php:636
+#: index.php:649 chat.php:649
msgid "Copy:"
msgstr "Kopio:"
-#: chat.php:724
+#: index.php:776 chat.php:776
msgid "Chat Setup"
msgstr "Chatin asennus"
-#: chat.php:734 chat.php:1233
+#: index.php:786 index.php:1290 chat.php:786 chat.php:1290
msgid "Allow"
msgstr "Salli"
-#: chat.php:739 chat.php:1238
+#: index.php:791 index.php:1295 chat.php:791 chat.php:1295
msgid "Allow with waitingroom"
msgstr "Salli odotushuoneella"
-#: chat.php:744 chat.php:1243
+#: index.php:796 index.php:1300 chat.php:796 chat.php:1300
msgid "Require moderator approval"
msgstr "Vaadi moderaattorin hyväksyntä"
-#: chat.php:749 chat.php:1248
+#: index.php:801 index.php:1305 chat.php:801 chat.php:1305
msgid "Only members"
msgstr "Vain jäsenet"
-#: chat.php:754 chat.php:1251
+#: index.php:806 index.php:1308 chat.php:806 chat.php:1308
msgid "Disable chat"
msgstr "Poista chat käytöstä"
-#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229
+#: index.php:817 index.php:839 index.php:894 index.php:953 index.php:2288
+#: chat.php:817 chat.php:839 chat.php:894 chat.php:953 chat.php:2288
msgid "Disabled"
msgstr "Ei käytössä"
-#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219
+#: index.php:822 index.php:882 index.php:958 index.php:2278 chat.php:822
+#: chat.php:882 chat.php:958 chat.php:2278
msgid "Enabled"
msgstr "Käytössä"
-#: chat.php:792
+#: index.php:844 chat.php:844
msgid "As applicant"
msgstr "Hakijoina"
-#: chat.php:797
+#: index.php:849 chat.php:849
msgid "As member"
msgstr "Jäseninä"
-#: chat.php:800
+#: index.php:852 chat.php:852
msgid "System messages"
msgstr "Järjestelmäviestit"
-#: chat.php:822 chat.php:1053
+#: index.php:874 index.php:1110 chat.php:874 chat.php:1110
#, php-format
msgid ""
"The %s extension of PHP is required for this feature. Please install it "
"first."
msgstr "%s-lisäosan asennus vaaditaan."
-#: chat.php:847
+#: index.php:899 chat.php:899
msgid "Simple"
msgstr "Yksinkertainen"
-#: chat.php:852
+#: index.php:904 chat.php:904
msgid "Moderate"
msgstr "Keskivaikea"
-#: chat.php:857
+#: index.php:909 chat.php:909
+msgid "Hard"
+msgstr ""
+
+#: index.php:914 chat.php:914
msgid "Extreme"
msgstr "Vaikea"
-#: chat.php:906 chat.php:1548 chat.php:1610
+#: index.php:963 index.php:1605 index.php:1667 chat.php:963 chat.php:1605
+#: chat.php:1667
msgid "Apply"
msgstr "Käytä"
-#: chat.php:910 chat.php:1050
+#: index.php:967 index.php:1107 chat.php:967 chat.php:1107
msgid "Backup and restore"
msgstr "Varmuuskopioi ja palauta"
-#: chat.php:912
+#: index.php:969 chat.php:969
msgid "Destroy chat"
msgstr "Tuhoa chat"
-#: chat.php:1057 chat.php:1066
+#: index.php:1114 index.php:1123 chat.php:1114 chat.php:1123
msgid "Settings"
msgstr "Asetukset"
-#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575
-#: chat.php:1622
+#: index.php:1115 index.php:1124 index.php:1269 index.php:1595 index.php:1632
+#: index.php:1679 chat.php:1115 chat.php:1124 chat.php:1269 chat.php:1595
+#: chat.php:1632 chat.php:1679
msgid "Filter"
msgstr "Suodata"
-#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538
+#: index.php:1116 index.php:1125 index.php:1325 index.php:2600 chat.php:1116
+#: chat.php:1125 chat.php:1325 chat.php:2600
msgid "Members"
msgstr "Jäsenet"
-#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322
+#: index.php:1117 index.php:1126 index.php:2373 index.php:2381 chat.php:1117
+#: chat.php:1126 chat.php:2373 chat.php:2381
msgid "Notes"
msgstr "Viestit"
-#: chat.php:1061
+#: index.php:1118 chat.php:1118
msgid "Backup"
msgstr "Varmuuskopioi"
-#: chat.php:1070
+#: index.php:1127 chat.php:1127
msgid "Restore"
msgstr "Palauta"
-#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260
+#: index.php:1131 index.php:1174 index.php:1212 index.php:1242 index.php:4342
+#: chat.php:1131 chat.php:1174 chat.php:1212 chat.php:1242 chat.php:4342
msgid "Go to the Setup-Page"
msgstr "Siirry asennukseen"
-#: chat.php:1082 chat.php:1091 chat.php:1949
+#: index.php:1139 index.php:1148 index.php:2006 chat.php:1139 chat.php:1148
+#: chat.php:2006
msgid "Are you sure?"
msgstr "Oletko varma?"
-#: chat.php:1083 chat.php:1092 chat.php:1956
+#: index.php:1140 index.php:1149 index.php:2013 chat.php:1140 chat.php:1149
+#: chat.php:2013
msgid "Yes"
msgstr "Kyllä"
-#: chat.php:1084 chat.php:1093 chat.php:1963
+#: index.php:1141 index.php:1150 index.php:2020 chat.php:1141 chat.php:1150
+#: chat.php:2020
msgid "No"
msgstr "Ei"
-#: chat.php:1101 chat.php:4259
+#: index.php:1158 index.php:4341 chat.php:1158 chat.php:4341
msgid "Superadmin Login"
msgstr "Pääkäyttäjän kirjautuminen"
-#: chat.php:1102
+#: index.php:1159 chat.php:1159
msgid "Superadmin Nickname:"
msgstr "Pääkäyttäjän käyttäjänimi:"
-#: chat.php:1103
+#: index.php:1160 chat.php:1160
msgid "Superadmin Password:"
msgstr "Pääkäyttäjän salasana:"
-#: chat.php:1104
+#: index.php:1161 chat.php:1161
msgid "Confirm Password:"
msgstr "Vahvista salasana:"
-#: chat.php:1105
+#: index.php:1162 chat.php:1162
msgid "Initialise Chat"
msgstr "Asenna chat"
-#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439
+#: index.php:1163 index.php:1187 index.php:1213 index.php:2336 index.php:2498
+#: chat.php:1163 chat.php:1187 chat.php:1213 chat.php:2336 chat.php:2498
msgid "Change language:"
msgstr "Vaihda kieltä:"
-#: chat.php:1117
+#: index.php:1174 chat.php:1174
msgid "Database successfully updated!"
msgstr "Tietokanta päivitetty onnistuneesti!"
-#: chat.php:1125 chat.php:1326 chat.php:2407
+#: index.php:1182 index.php:1383 index.php:2466 chat.php:1182 chat.php:1383
+#: chat.php:2466
msgid "Nickname:"
msgstr "Käyttäjänimi:"
-#: chat.php:1126 chat.php:1327 chat.php:2408
+#: index.php:1183 index.php:1384 index.php:2467 chat.php:1183 chat.php:1384
+#: chat.php:2467
msgid "Password:"
msgstr "Salasana:"
-#: chat.php:1128
+#: index.php:1185 chat.php:1185
msgid "Login"
msgstr "Kirjaudu"
-#: chat.php:1129
+#: index.php:1186 chat.php:1186
msgid "Forgot login?"
msgstr "Unohditko tunnukset?"
-#: chat.php:1142 chat.php:1306
+#: index.php:1199 index.php:1363 chat.php:1199 chat.php:1363
msgid "Reset password"
msgstr "Nollaa salasana"
-#: chat.php:1150
+#: index.php:1207 chat.php:1207
#, php-format
msgid ""
"Successfully reset password for username %s. Please remove the password "
@@ -573,7 +605,7 @@ msgid ""
msgstr ""
"Käyttäjän %s salasana nollattu. Poista nollausskripti skriptin lopusta."
-#: chat.php:1153
+#: index.php:1210 chat.php:1210
msgid ""
"Please modify the script and put the following at the bottom of it (change "
"the password). Then refresh this page: define('RESET_SUPERADMIN_PASSWORD', "
@@ -582,204 +614,213 @@ msgstr ""
"Muokkaa skriptiä ja lisää tämä loppuun, muuta salasana ja päivitä tämä sivu: "
"define('RESET_SUPERADMIN_PASSWORD', 'changeme');"
-#: chat.php:1169 chat.php:1193 chat.php:1258 chat.php:1270 chat.php:1294
-#: chat.php:1308 chat.php:1316 chat.php:2145 chat.php:2153
+#: index.php:1226 index.php:1250 index.php:1315 index.php:1327 index.php:1351
+#: index.php:1365 index.php:1373 index.php:2204 index.php:2212 chat.php:1226
+#: chat.php:1250 chat.php:1315 chat.php:1327 chat.php:1351 chat.php:1365
+#: chat.php:1373 chat.php:2204 chat.php:2212
msgid "(choose)"
msgstr "(valitse)"
-#: chat.php:1170
+#: index.php:1227 chat.php:1227
msgid "All guests"
msgstr "Kaikki vierailijat"
-#: chat.php:1182
+#: index.php:1239 chat.php:1239
msgid "Administrative functions"
msgstr "Järjestelmänvalvojan toiminnot"
-#: chat.php:1188
+#: index.php:1245 chat.php:1245
msgid "Clean messages"
msgstr "Tyhjennä viestit"
-#: chat.php:1191
+#: index.php:1248 chat.php:1248
msgid "Whole room"
msgstr "Koko huone"
-#: chat.php:1192
+#: index.php:1249 chat.php:1249
msgid "Selection"
msgstr "Valinta"
-#: chat.php:1193
+#: index.php:1250 chat.php:1250
msgid "Following nickname:"
msgstr "Seuraava käyttäjänimi:"
-#: chat.php:1200
+#: index.php:1257 chat.php:1257
msgid "Clean"
msgstr "Tyhjennä"
-#: chat.php:1202
+#: index.php:1259 chat.php:1259
#, php-format
msgid "Kick Chatter (%d minutes)"
msgstr "Heitä ulos (%d minuuttia)"
-#: chat.php:1204
+#: index.php:1261 chat.php:1261
msgid "Kickmessage:"
msgstr "Heittoviesti:"
-#: chat.php:1205
+#: index.php:1262 chat.php:1262
msgid "Purge messages"
msgstr "Tuhoa viestit"
-#: chat.php:1206 chat.php:1388 chat.php:1546 chat.php:1580 chat.php:1591
-#: chat.php:2042
+#: index.php:1263 index.php:1445 index.php:1603 index.php:1637 index.php:1648
+#: index.php:2101 chat.php:1263 chat.php:1445 chat.php:1603 chat.php:1637
+#: chat.php:1648 chat.php:2101
msgid "Kick"
msgstr "Heitä ulos"
-#: chat.php:1208
+#: index.php:1265 chat.php:1265
msgid "Logout inactive Chatter"
msgstr "Kirjaa ulos ei-aktiivinen käyttäjä"
-#: chat.php:1212
+#: index.php:1269 chat.php:1269
msgid "View active sessions"
msgstr "Näytä aktiiviset istunnot"
-#: chat.php:1212 chat.php:1603
+#: index.php:1269 index.php:1660 chat.php:1269 chat.php:1660
msgid "Linkfilter"
msgstr "Linkkisuodatus"
-#: chat.php:1217
+#: index.php:1274 chat.php:1274
msgid "View"
msgstr "Näytä"
-#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582
-#: chat.php:1626
+#: index.php:1280 index.php:1310 index.php:1361 index.php:1369 index.php:1639
+#: index.php:1683 chat.php:1280 chat.php:1310 chat.php:1361 chat.php:1369
+#: chat.php:1639 chat.php:1683
msgid "Change"
msgstr "Muuta"
-#: chat.php:1256
+#: index.php:1313 chat.php:1313
msgid "Register applicant"
msgstr "Rekisteröi hakijaRekisteröi"
-#: chat.php:1264 chat.php:1322 chat.php:1328
+#: index.php:1321 index.php:1379 index.php:1385 chat.php:1321 chat.php:1379
+#: chat.php:1385
msgid "Register"
msgstr "Rekisteröi"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Delete from database"
msgstr "Poista tietokannasta"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Deny access (!)"
msgstr "Estä pääsy (!)"
-#: chat.php:1296
+#: index.php:1353 chat.php:1353
msgid "Set to applicant (SG)"
msgstr "Aseta hakijaksi (G)"
-#: chat.php:1298
+#: index.php:1355 chat.php:1355
msgid "Set to regular member"
msgstr "Aseta normaaliksi jäseneks"
-#: chat.php:1299
+#: index.php:1356 chat.php:1356
msgid "Set to moderator (M)"
msgstr "Aseta moderaattoriksi (M)"
-#: chat.php:1300
+#: index.php:1357 chat.php:1357
msgid "Set to supermod (SM)"
msgstr "Aseta ylimoderaattoriksi (SM)"
-#: chat.php:1302
+#: index.php:1359 chat.php:1359
msgid "Set to admin (A)"
msgstr "Aseta ylläpitäjäksi (A)"
-#: chat.php:1314
+#: index.php:1371 chat.php:1371
msgid "Register Guest"
msgstr "Rekisteröi vierailijaAnna vierailijoiden rekisteröidä itsensä"
-#: chat.php:1324
+#: index.php:1381 chat.php:1381
msgid "Register new Member"
msgstr "Rekisteröi uusi jäsen"
-#: chat.php:1332 chat.php:1408 chat.php:1595 chat.php:1636 chat.php:1710
-#: chat.php:1924
+#: index.php:1389 index.php:1465 index.php:1652 index.php:1693 index.php:1767
+#: index.php:1981 chat.php:1389 chat.php:1465 chat.php:1652 chat.php:1693
+#: chat.php:1767 chat.php:1981
msgid "Reload"
msgstr "Päivitä"
-#: chat.php:1345
+#: index.php:1402 chat.php:1402
msgid "Active Sessions"
msgstr "Aktiiviset istunnot"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "Nickname"
msgstr "Käyttäjänimi"
-#: chat.php:1346
+#: index.php:1403 chat.php:1403
msgid "Timeout in"
msgstr "Aikakatkaisu"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "User-Agent"
msgstr "Selain"
-#: chat.php:1350
+#: index.php:1407 chat.php:1407
msgid "IP-Address"
msgstr "IP-osoite"
-#: chat.php:1351
+#: index.php:1408 chat.php:1408
msgid "Actions"
msgstr "Toiminnot"
-#: chat.php:1393
+#: index.php:1450 chat.php:1450
msgid "Unban"
msgstr "Poista bänni"
-#: chat.php:1416
+#: index.php:1473 chat.php:1473
msgid "Incorrect regular expression!"
msgstr "Virheellinen regexp!"
-#: chat.php:1416 chat.php:1424
+#: index.php:1473 index.php:1481 chat.php:1473 chat.php:1481
#, php-format
msgid "Your match was as follows: %s"
msgstr "Matchisi on seuraava: %s"
-#: chat.php:1424
+#: index.php:1481 chat.php:1481
msgid ""
"Your match was too long. You can use max. 255 characters. Try splitting it "
"up."
msgstr "Match liian pitkä, raja 255 merkkiä."
-#: chat.php:1541 chat.php:1606
+#: index.php:1598 index.php:1663 chat.php:1598 chat.php:1663
msgid "Filter ID:"
msgstr "Suodatusnumero:"
-#: chat.php:1542 chat.php:1607
+#: index.php:1599 index.php:1664 chat.php:1599 chat.php:1664
msgid "Match"
msgstr "Match"
-#: chat.php:1543 chat.php:1608
+#: index.php:1600 index.php:1665 chat.php:1600 chat.php:1665
msgid "Replace"
msgstr "Korvaa"
-#: chat.php:1544 chat.php:1578 chat.php:1589
+#: index.php:1601 index.php:1635 index.php:1646 chat.php:1601 chat.php:1635
+#: chat.php:1646
msgid "Allow in PM"
msgstr "Salli yksityisviestit"
-#: chat.php:1545 chat.php:1579 chat.php:1590 chat.php:1609 chat.php:1625
-#: chat.php:1633
+#: index.php:1602 index.php:1636 index.php:1647 index.php:1666 index.php:1682
+#: index.php:1690 chat.php:1602 chat.php:1636 chat.php:1647 chat.php:1666
+#: chat.php:1682 chat.php:1690
msgid "Regex"
msgstr "Regex"
-#: chat.php:1547 chat.php:1581 chat.php:1592
+#: index.php:1604 index.php:1638 index.php:1649 chat.php:1604 chat.php:1638
+#: chat.php:1649
msgid "Case sensitive"
msgstr "Kirjainkokko merkitsee"
-#: chat.php:1586 chat.php:1630
+#: index.php:1643 index.php:1687 chat.php:1643 chat.php:1687
msgid "New filter:"
msgstr "Uusi suodatin:"
-#: chat.php:1593 chat.php:1634
+#: index.php:1650 index.php:1691 chat.php:1650 chat.php:1691
msgid "Add"
msgstr "Lisää"
-#: chat.php:1691
+#: index.php:1748 chat.php:1748
msgid ""
"This chat uses frames. Please enable frames in your browser or use a "
"suitable one!"
@@ -787,96 +828,99 @@ msgstr ""
"Tämä chat käyttää kehyksiä. Salli kehykset tai käytä jotain muuta "
"selainta!"
-#: chat.php:1691 chat.php:2370 chat.php:2457
+#: index.php:1748 index.php:2429 index.php:2516 chat.php:1748 chat.php:2429
+#: chat.php:2516
msgid "Back to the login page."
msgstr "Takaisin kirjautumiseen."
-#: chat.php:1709
+#: index.php:1766 chat.php:1766
msgid "Bottom"
msgstr "Loppuun"
-#: chat.php:1710
+#: index.php:1767 chat.php:1767
msgid "Manual refresh required"
msgstr "Manuaalinen päivitys tarvitaan"
-#: chat.php:1726
+#: index.php:1783 chat.php:1783
msgid "Top"
msgstr "Alkuun"
-#: chat.php:1734 chat.php:1940 chat.php:1942
+#: index.php:1791 index.php:1997 index.php:1999 chat.php:1791 chat.php:1997
+#: chat.php:1999
msgid "Delete selected messages"
msgstr "Poista valitut viestit"
-#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281
+#: index.php:1818 index.php:1945 index.php:2160 index.php:2340 chat.php:1818
+#: chat.php:1945 chat.php:2160 chat.php:2340
msgid "Back to the chat."
msgstr "Takaisin keskusteluun."
-#: chat.php:1774 chat.php:1791
+#: index.php:1831 index.php:1848 chat.php:1831 chat.php:1848
msgid "Admin notes"
msgstr "Ylläpidon viestit"
-#: chat.php:1777 chat.php:1788
+#: index.php:1834 index.php:1845 chat.php:1834 chat.php:1845
msgid "Staff notes"
msgstr "Henkilökunnan viestit"
-#: chat.php:1811
+#: index.php:1868 chat.php:1868
msgid "Notes saved!"
msgstr "Viestit tallennettu!"
-#: chat.php:1835 chat.php:2122
+#: index.php:1892 index.php:2181 chat.php:1892 chat.php:2181
#, php-format
msgid "Last edited by %1$s at %2$s"
msgstr "Viimeksi muokannut %1$s kello %2$s"
-#: chat.php:1848
+#: index.php:1905 chat.php:1905
msgid "Save notes"
msgstr "Tallenna viestit"
-#: chat.php:1850
+#: index.php:1907 chat.php:1907
msgid "Revisions:"
msgstr "Versiot:"
-#: chat.php:1853
+#: index.php:1910 chat.php:1910
msgid "Older"
msgstr "Vanhemmat"
-#: chat.php:1857
+#: index.php:1914 chat.php:1914
msgid "Newer"
msgstr "Uudemmat"
-#: chat.php:1868 chat.php:1914
+#: index.php:1925 index.php:1971 chat.php:1925 chat.php:1971
msgid "Waiting room"
msgstr "Odotushuone"
-#: chat.php:1880
+#: index.php:1937 chat.php:1937
msgid "Allow checked"
msgstr "Salli valitut"
-#: chat.php:1881
+#: index.php:1938 chat.php:1938
msgid "Allow all"
msgstr "Salli kaikki"
-#: chat.php:1882
+#: index.php:1939 chat.php:1939
msgid "Deny checked"
msgstr "Epää valitut"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Deny all"
msgstr "Epää kaikki"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Send message to denied:"
msgstr "Viesti evätyille:"
-#: chat.php:1884
+#: index.php:1941 chat.php:1941
msgid "Submit"
msgstr "Lähetä"
-#: chat.php:1886
+#: index.php:1943 chat.php:1943
msgid "No more entry requests to approve."
msgstr "Ei sisäänpääsypyyntöjä."
-#: chat.php:1916
+#: index.php:1973 chat.php:1973
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat in %2$d "
@@ -885,7 +929,7 @@ msgstr ""
"Tervetuloa %1$s, kirjautumisesi on viivästynyt, pääset chattiin %2$d "
"sekunnin kuluttua."
-#: chat.php:1918
+#: index.php:1975 chat.php:1975
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat as soon, "
@@ -894,7 +938,7 @@ msgstr ""
"Tervetuloa %1$s, kirjautumisesi on viivästynyt pääset chattiin, kun "
"moderaattori päästää sinut."
-#: chat.php:1921
+#: index.php:1978 chat.php:1978
#, php-format
msgid ""
"If this page doesn't refresh every %d seconds, use the button below to "
@@ -903,64 +947,69 @@ msgstr ""
"Jos tämä sivu ei päivity %d sekunnin välein, päivitä se manuaalisesti "
"seuraavasta painikkeesta!"
-#: chat.php:1926 chat.php:2339
+#: index.php:1983 index.php:2398 chat.php:1983 chat.php:2398
msgid "Exit Chat"
msgstr "Poistu chatista"
-#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430
+#: index.php:1986 index.php:2133 index.php:2144 index.php:2489 chat.php:1986
+#: chat.php:2133 chat.php:2144 chat.php:2489
msgid "Rules"
msgstr "Säännöt"
-#: chat.php:1985
+#: index.php:2042 chat.php:2042
msgid "Send to"
msgstr "Lähetä vastaanottajille"
-#: chat.php:1990
+#: index.php:2047 chat.php:2047
msgid "All chatters"
msgstr "Kaikki"
-#: chat.php:1996
+#: index.php:2053 chat.php:2053
msgid "Members only"
msgstr "Vain jäsenet"
-#: chat.php:2003
+#: index.php:2060 chat.php:2060
msgid "Staff only"
msgstr "Vain henkilökunta"
-#: chat.php:2010
+#: index.php:2067 chat.php:2067
msgid "Admin only"
msgstr "Vain ylläpito"
-#: chat.php:2019
+#: index.php:2076 chat.php:2076
msgid "(offline)"
msgstr "(offline)"
-#: chat.php:2043
+#: index.php:2078 chat.php:2078
+msgid "(logging out)"
+msgstr ""
+
+#: index.php:2102 chat.php:2102
msgid "Also purge messages"
msgstr "Tuhoa myös viestit"
-#: chat.php:2050
+#: index.php:2109 chat.php:2109
msgid "Delete last message"
msgstr "Poista viimeisin viesti"
-#: chat.php:2055
+#: index.php:2114 chat.php:2114
msgid "Delete all messages"
msgstr "Poista kaikki viestit"
-#: chat.php:2057
+#: index.php:2116 chat.php:2116
msgid "Switch to single-line"
msgstr "Vaihda yksiriviseen tekstikenttään"
-#: chat.php:2059
+#: index.php:2118 chat.php:2118
msgid "Switch to multi-line"
msgstr "Vaihda moniriviseen tekstikenttään"
-#: chat.php:2070
+#: index.php:2129 chat.php:2129
#, php-format
msgid "Welcome %s!"
msgstr "Tervetuloa, %s!"
-#: chat.php:2071
+#: index.php:2130 chat.php:2130
#, php-format
msgid ""
"If this frame does not reload in %d seconds, you'll have to enable automatic "
@@ -976,11 +1025,11 @@ msgstr ""
"mikään ei toimi, voit painaa alla olevaa painiketta päivittääksesi "
"manuaalisesti."
-#: chat.php:2087
+#: index.php:2146 chat.php:2146
msgid "Help"
msgstr "Ohje"
-#: chat.php:2088
+#: index.php:2147 chat.php:2147
msgid ""
"All functions should be pretty much self-explaining, just use the buttons. "
"In your profile you can adjust the refresh rate and font colour, as well as "
@@ -992,7 +1041,7 @@ msgstr ""
" Huomaa, että tämä on chat, ja jos et ole aktiivinen tiettyyn aikaan, "
"sinut kirjataan ulos."
-#: chat.php:2090
+#: index.php:2149 chat.php:2149
msgid ""
"If you want to embed an image in your post, simply put [img] in front of "
"your image URL. Example: [img]http://example.com/images/file.jpg will embed "
@@ -1000,7 +1049,7 @@ msgid ""
msgstr ""
"Lisää viestiin kuva seuraavasti: [img]http://example.com/images/file.jpg"
-#: chat.php:2093
+#: index.php:2152 chat.php:2152
msgid ""
"Members: You'll have some more options in your profile. You can adjust your "
"font face, change your password anytime and of course you can delete your "
@@ -1009,7 +1058,7 @@ msgstr ""
"Jäsenet: Sinulla on enemmän ominaisuuksia. Voit muuttaa fonttia, vaihtaa "
"salasanasi ja poistaa tilisi."
-#: chat.php:2095
+#: index.php:2154 chat.php:2154
msgid ""
"Moderators: Notice the Admin-button at the bottom. It'll bring up a page "
"where you can clean the room, kick chatters, view all active sessions and "
@@ -1017,7 +1066,7 @@ msgid ""
msgstr ""
"Moderaattorit: Ylläpito-painike antaa käyttöösi moderointiominaisuudet."
-#: chat.php:2097
+#: index.php:2156 chat.php:2156
msgid ""
"Admins: You'll be furthermore able to register guests, edit members and "
"register new nicknames."
@@ -1025,225 +1074,231 @@ msgstr ""
"Ylläpitäjät: Voit rekisteröidä vierailijoita, muokata jäseniä ja "
"rekisteröidä uusia käyttäjiä."
-#: chat.php:2135
+#: index.php:2194 chat.php:2194
msgid "Your Profile"
msgstr "Profiilisi"
-#: chat.php:2144
+#: index.php:2203 chat.php:2203
msgid "Don't ignore anymore"
msgstr "Poista huomiottajättö"
-#: chat.php:2152
+#: index.php:2211 chat.php:2211
msgid "Ignore"
msgstr "Jätä huomiotta"
-#: chat.php:2163
+#: index.php:2222 chat.php:2222
#, php-format
msgid "Refresh rate (%1$d-%2$d seconds)"
msgstr "Päivitysnopeus (%1$d-%2$d sekuntia)"
-#: chat.php:2167 chat.php:2170
+#: index.php:2226 index.php:2229 chat.php:2226 chat.php:2229
msgid "View examples"
msgstr "Katso esimerkit"
-#: chat.php:2174
+#: index.php:2233 chat.php:2233
msgid "Fontface"
msgstr "Fonttityyppi"
-#: chat.php:2175
+#: index.php:2234 chat.php:2234
msgid "Room Default"
msgstr "Huoneen oletus"
-#: chat.php:2188
+#: index.php:2247 chat.php:2247
msgid "Bold"
msgstr "Lihavoitu"
-#: chat.php:2192
+#: index.php:2251 chat.php:2251
msgid "Italic"
msgstr "Yliviivaus"
-#: chat.php:2196
+#: index.php:2255 chat.php:2255
msgid "Small"
msgstr "Pieni"
-#: chat.php:2199
+#: index.php:2258 chat.php:2258
msgid "Example for your chosen font"
msgstr "Esimerkki valitusta fontista"
-#: chat.php:2203
+#: index.php:2262 chat.php:2262
msgid "Autoscroll (for old browsers or top-to-bottom sort)."
msgstr "Automaattivieritys (vanhat selaimet tai ylhäältä alas -järjestys)."
-#: chat.php:2234
+#: index.php:2293 chat.php:2293
msgid "For everyone"
msgstr "Kaikille"
-#: chat.php:2239
+#: index.php:2298 chat.php:2298
msgid "For members only"
msgstr "Vain jäsenille"
-#: chat.php:2244
+#: index.php:2303 chat.php:2303
msgid "For staff only"
msgstr "Vain henkilökunnalle"
-#: chat.php:2248
+#: index.php:2307 chat.php:2307
msgid "Time zone"
msgstr "Aikavyöhyke"
-#: chat.php:2261
+#: index.php:2320 chat.php:2320
msgid "Change Password"
msgstr "Vaihda salasana"
-#: chat.php:2263
+#: index.php:2322 chat.php:2322
msgid "Old password:"
msgstr "Vanha salasana:"
-#: chat.php:2264
+#: index.php:2323 chat.php:2323
msgid "New password:"
msgstr "Uusi salasana:"
-#: chat.php:2265
+#: index.php:2324 chat.php:2324
msgid "Confirm new password:"
msgstr "Vahvista uusi salasana:"
-#: chat.php:2268
+#: index.php:2327 chat.php:2327
msgid "Change Nickname"
msgstr "Vaihda käyttäjänimi"
-#: chat.php:2269
+#: index.php:2328 chat.php:2328
msgid "New nickname:"
msgstr "Uusi käyttäjänimi:"
-#: chat.php:2273
+#: index.php:2332 chat.php:2332
msgid "Save changes"
msgstr "Tallenna muutokset"
-#: chat.php:2275
+#: index.php:2334 chat.php:2334
msgid "Delete account"
msgstr "Poista tili"
-#: chat.php:2301
+#: index.php:2360 chat.php:2360
msgid "Reload Post Box"
msgstr "Päivitä kirjoituslaatikko"
-#: chat.php:2304
+#: index.php:2363 chat.php:2363
msgid "Reload Messages"
msgstr "Päivitä viestit"
-#: chat.php:2307
+#: index.php:2366 chat.php:2366
msgid "Profile"
msgstr "Profiili"
-#: chat.php:2311 chat.php:2528
+#: index.php:2370 index.php:2590 chat.php:2370 chat.php:2590
msgid "Admin"
msgstr "Ylläpito"
-#: chat.php:2318
+#: index.php:2377 chat.php:2377
msgid "View public notes"
msgstr "Yleiset viestit"
-#: chat.php:2325
+#: index.php:2384 chat.php:2384
msgid "Clone"
msgstr "Kloonaa"
-#: chat.php:2334
+#: index.php:2393 chat.php:2393
msgid "Rearrange"
msgstr "Järjestä uudelleen"
-#: chat.php:2337
+#: index.php:2396 chat.php:2396
msgid "Rules & Help"
msgstr "Säännöt ja ohjeet"
-#: chat.php:2358 chat.php:2362
+#: index.php:2417 index.php:2421 chat.php:2417 chat.php:2421
msgid "File not found!"
msgstr "Tiedostoa ei löydy!"
-#: chat.php:2370
+#: index.php:2429 chat.php:2429
#, php-format
msgid "Bye %s, visit again soon!"
msgstr "Näkemiin %s, tuupa takas joskus!"
-#: chat.php:2377
+#: index.php:2436 chat.php:2436
msgid "Colourtable"
msgstr "Väritaulukko"
-#: chat.php:2388
+#: index.php:2447 chat.php:2447
msgid "Back to your Profile"
msgstr "Takaisin profiiliin"
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "Repeat password to register"
msgstr "Salasana uudelleen (jos rekisteröidyt)"
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "(optional)"
msgstr "(valinnainen)"
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Guests, choose a colour:"
msgstr "Vierailijat, valitkaa väri:"
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Random Colour"
msgstr "Satunnainen"
-#: chat.php:2421 chat.php:2435 chat.php:2569
+#: index.php:2480 index.php:2494 index.php:2631 chat.php:2480 chat.php:2494
+#: chat.php:2631
msgid "Sorry, currently members only!"
msgstr "Sori, vain jäsenet!"
-#: chat.php:2423 chat.php:2437
+#: index.php:2482 index.php:2496 chat.php:2482 chat.php:2496
msgid "Enter Chat"
msgstr "Chattiin"
-#: chat.php:2457
+#: index.php:2516 chat.php:2516
#, php-format
msgid "Error: %s"
msgstr "Virhe: %s"
-#: chat.php:2467
+#: index.php:2526 chat.php:2526
msgid "Fatal error"
msgstr "Kohtalokas virhe"
-#: chat.php:2470
+#: index.php:2529 chat.php:2529
#, php-format
msgid "Fatal error: %s"
msgstr "Kohtalokas virhe: %s"
-#: chat.php:2482 chat.php:2693
+#: index.php:2541 index.php:2756 chat.php:2541 chat.php:2756
msgid "Failed login attempt(s)"
msgstr ""
-#: chat.php:2489
+#: index.php:2548 chat.php:2548
#, php-format
msgid "Read %d messages in your inbox"
msgstr "Lue %d viesti(ä) Saapuneet-kansiossa"
-#: chat.php:2498
+#: index.php:2557 chat.php:2557
#, php-format
msgid "%d new guests to approve"
msgstr "%d vierailijaa hyväksyttävissä"
-#: chat.php:2530
+#: index.php:2577 chat.php:2577
+msgid "logging out"
+msgstr ""
+
+#: index.php:2592 chat.php:2592
msgid "Admin:"
msgstr "Ylläpito:"
-#: chat.php:2533
+#: index.php:2595 chat.php:2595
msgid "Staff"
msgstr "Henkilökunta"
-#: chat.php:2535
+#: index.php:2597 chat.php:2597
msgid "Staff:"
msgstr "Henkilökunta:"
-#: chat.php:2540
+#: index.php:2602 chat.php:2602
msgid "Members:"
msgstr "Jäsenet:"
-#: chat.php:2542
+#: index.php:2604 chat.php:2604
msgid "Guests"
msgstr "Vierailijat"
-#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092
+#: index.php:2625 index.php:3063 index.php:3267 index.php:4172 chat.php:2625
+#: chat.php:3063 chat.php:3267 chat.php:4172
#, php-format
msgid ""
"Invalid nickname (%1$d characters maximum and has to match the regular "
@@ -1252,373 +1307,389 @@ msgstr ""
"Kelpaamaton käyttäjänimi, enintään (%1$d merkkiä, täytyy sisältää regexpin "
"\"%2$s\""
-#: chat.php:2566 chat.php:2996 chat.php:3162 chat.php:4094
+#: index.php:2628 index.php:3066 index.php:3232 index.php:4174 chat.php:2628
+#: chat.php:3066 chat.php:3232 chat.php:4174
#, php-format
msgid ""
"Invalid password (At least %1$d characters and has to match the regular "
"expression \"%2$s\")"
msgstr ""
-"Kelpaamaton salasana, vähintään %1$d merkkiä, täytyy sisältää regexpin \"%2$s"
-"\""
+"Kelpaamaton salasana, vähintään %1$d merkkiä, täytyy sisältää regexpin "
+"\"%2$s\""
-#: chat.php:2574 chat.php:2739
+#: index.php:2636 index.php:2806 chat.php:2636 chat.php:2806
msgid "Wrong global Password!"
msgstr "Väärä yleissalasana!"
-#: chat.php:2591 chat.php:2612
+#: index.php:2654 index.php:2675 chat.php:2654 chat.php:2675
msgid "Wrong Captcha"
msgstr "VÄärä Captcha"
-#: chat.php:2596 chat.php:2604
+#: index.php:2659 index.php:2667 chat.php:2659 chat.php:2667
msgid "Captcha already used or timed out."
msgstr "Captcha jo käytetty tai aikatkakaistu."
-#: chat.php:2652
+#: index.php:2715 chat.php:2715
msgid "A user with this nickname is already logged in."
msgstr "Tällä käyttäjänimellä on jo kirjauduttu."
-#: chat.php:2652 chat.php:2933 chat.php:3176
+#: index.php:2715 index.php:3003 index.php:3246 chat.php:2715 chat.php:3003
+#: chat.php:3246
msgid "Wrong Password!"
msgstr "Väärä salasana!"
-#: chat.php:2696
+#: index.php:2759 chat.php:2759
msgid "Dismiss"
msgstr ""
-#: chat.php:2747 chat.php:3171 chat.php:4096
+#: index.php:2814 index.php:3241 index.php:4176 chat.php:2814 chat.php:3241
+#: chat.php:4176
msgid "Password confirmation does not match!"
msgstr "Salasanan vahvistus epäonnistui!"
-#: chat.php:2859
+#: index.php:2854 chat.php:2854
+#, fuzzy
+#| msgid "Kickmessage:"
+msgid "no kick message"
+msgstr "Heittoviesti:"
+
+#: index.php:2929 chat.php:2929
msgid "Invalid/expired session"
msgstr "Istunto vanhentunut"
-#: chat.php:2875 chat.php:3412
+#: index.php:2945 index.php:3483 chat.php:2945 chat.php:3483
msgid "You have been kicked!"
msgstr "Sinut on heitetty ulos!"
-#: chat.php:2885
+#: index.php:2955 chat.php:2955
#, php-format
msgid "Currently %d chatter(s) in room:"
msgstr "Paikalla: %d jäsen(tä):"
-#: chat.php:2933
+#: index.php:3003 chat.php:3003
msgid "This nickname is a registered member."
msgstr "Tämä käyttäjänimi on jo rekisteröity."
-#: chat.php:2960 chat.php:3001
+#: index.php:3030 index.php:3071 chat.php:3030 chat.php:3071
#, php-format
msgid "%s is already registered."
msgstr "%s jo rekisteröity."
-#: chat.php:2969 chat.php:2990
+#: index.php:3039 index.php:3060 chat.php:3039 chat.php:3060
#, php-format
msgid "Can't register %s"
msgstr "Ei voi rekisteröidä %s"
-#: chat.php:2978 chat.php:3023
+#: index.php:3048 index.php:3093 chat.php:3048 chat.php:3093
#, php-format
msgid "%s successfully registered."
msgstr "%s rekisteröity."
-#: chat.php:3031 chat.php:3036
+#: index.php:3101 index.php:3106 chat.php:3101 chat.php:3106
#, php-format
msgid "Can't change status of %s"
msgstr "Ei voi muuttaa tilaa: %s"
-#: chat.php:3047
+#: index.php:3117 chat.php:3117
#, php-format
msgid "%s successfully deleted from database."
msgstr "%s poistettu."
-#: chat.php:3056
+#: index.php:3126 chat.php:3126
#, php-format
msgid "Status of %s successfully changed."
msgstr "%s - tila vaihdettu."
-#: chat.php:3073
+#: index.php:3143 chat.php:3143
#, php-format
msgid "Successfully reset password for %s"
msgstr "Käyttäjän %s salasana nollattu"
-#: chat.php:3075
+#: index.php:3145 chat.php:3145
#, php-format
msgid "Can't reset password for %s"
msgstr ""
-#: chat.php:3190
+#: index.php:3260 chat.php:3260
msgid "Your profile has successfully been saved."
msgstr "Profiili tallennettu."
-#: chat.php:3202
+#: index.php:3272 chat.php:3272
msgid "Nickname is already taken"
msgstr "Käyttäjänimi varattu"
-#: chat.php:3714
+#: index.php:3785 chat.php:3785
msgid "system message"
msgstr "system message"
-#: chat.php:3921
+#: index.php:4001 chat.php:4001
msgid "Beige"
msgstr "Beige"
-#: chat.php:3922
+#: index.php:4002 chat.php:4002
msgid "Black"
msgstr "Musta"
-#: chat.php:3923
+#: index.php:4003 chat.php:4003
msgid "Blue"
msgstr "Sininen"
-#: chat.php:3924
+#: index.php:4004 chat.php:4004
msgid "Blue violet"
msgstr "Violetinsininen"
-#: chat.php:3925
+#: index.php:4005 chat.php:4005
msgid "Brown"
msgstr "Ruskea"
-#: chat.php:3926
+#: index.php:4006 chat.php:4006
msgid "Cyan"
msgstr "Syaani"
-#: chat.php:3927
+#: index.php:4007 chat.php:4007
msgid "Dark blue"
msgstr "Tummansininen"
-#: chat.php:3928
+#: index.php:4008 chat.php:4008
msgid "Dark green"
msgstr "Tummanvihreä"
-#: chat.php:3929
+#: index.php:4009 chat.php:4009
msgid "Dark red"
msgstr "Tummanpunainen"
-#: chat.php:3930
+#: index.php:4010 chat.php:4010
msgid "Dark violet"
msgstr "Tumma violetti"
-#: chat.php:3931
+#: index.php:4011 chat.php:4011
msgid "Sky blue"
msgstr "Taivaansininen"
-#: chat.php:3932
+#: index.php:4012 chat.php:4012
msgid "Gold"
msgstr "Kulta"
-#: chat.php:3933
+#: index.php:4013 chat.php:4013
msgid "Grey"
msgstr "Harmaa"
-#: chat.php:3934
+#: index.php:4014 chat.php:4014
msgid "Green"
msgstr "Vihreä"
-#: chat.php:3935
+#: index.php:4015 chat.php:4015
msgid "Hot pink"
msgstr "Kuuma pinkki"
-#: chat.php:3936
+#: index.php:4016 chat.php:4016
msgid "Indigo"
msgstr "Indigonsininen"
-#: chat.php:3937
+#: index.php:4017 chat.php:4017
msgid "Light blue"
msgstr "Valeansininen"
-#: chat.php:3938
+#: index.php:4018 chat.php:4018
msgid "Light green"
msgstr "Vaaleanvihreä"
-#: chat.php:3939
+#: index.php:4019 chat.php:4019
msgid "Lime green"
msgstr "Limenvihreä"
-#: chat.php:3940
+#: index.php:4020 chat.php:4020
msgid "Magenta"
msgstr "Magenta"
-#: chat.php:3941
+#: index.php:4021 chat.php:4021
msgid "Olive"
msgstr "Oliivinvihreä"
-#: chat.php:3942
+#: index.php:4022 chat.php:4022
msgid "Orange"
msgstr "Oranssi"
-#: chat.php:3943
+#: index.php:4023 chat.php:4023
msgid "Orange red"
msgstr "Oranssinpunainen"
-#: chat.php:3944
+#: index.php:4024 chat.php:4024
msgid "Purple"
msgstr "Purppura"
-#: chat.php:3945
+#: index.php:4025 chat.php:4025
msgid "Red"
msgstr "Punainen"
-#: chat.php:3946
+#: index.php:4026 chat.php:4026
msgid "Royal blue"
msgstr "Syvänsininen"
-#: chat.php:3947
+#: index.php:4027 chat.php:4027
msgid "Sea green"
msgstr "Merenvihreä"
-#: chat.php:3948
+#: index.php:4028 chat.php:4028
msgid "Sienna"
msgstr "Sienna"
-#: chat.php:3949
+#: index.php:4029 chat.php:4029
msgid "Silver"
msgstr "Hopea"
-#: chat.php:3950
+#: index.php:4030 chat.php:4030
msgid "Tan"
msgstr "Kellanruskea"
-#: chat.php:3951
+#: index.php:4031 chat.php:4031
msgid "Teal"
msgstr "Sinivihreä"
-#: chat.php:3952
+#: index.php:4032 chat.php:4032
msgid "Violet"
msgstr "Violetti"
-#: chat.php:3953
+#: index.php:4033 chat.php:4033
msgid "White"
msgstr "Valkoinen"
-#: chat.php:3954
+#: index.php:4034 chat.php:4034
msgid "Yellow"
msgstr "Keltainen"
-#: chat.php:3955
+#: index.php:4035 chat.php:4035
msgid "Yellow green"
msgstr "Keltavihreä"
-#: chat.php:4077
+#: index.php:4157 chat.php:4157
msgid "Successfully destroyed chat"
msgstr "Chat tuhottu"
-#: chat.php:4086
+#: index.php:4166 chat.php:4166
msgid ""
"Database tables already exist! To continue, you have to delete these tables "
"manually first."
msgstr ""
"Tietokanta on jo olemassa, sinun on poistettava sen sisältö jatkaaksesi."
-#: chat.php:4089
+#: index.php:4169 chat.php:4169
msgid "A Superadmin already exists!"
msgstr "Pääkäyttäjä on jo luotu!"
-#: chat.php:4182 chat.php:4369
+#: index.php:4263 index.php:4451 chat.php:4263 chat.php:4451
#, php-format
msgid "%s - "
msgstr "%s - "
-#: chat.php:4183 chat.php:4369
+#: index.php:4264 index.php:4451 chat.php:4264 chat.php:4451
#, php-format
msgid "[M] %s - "
msgstr "[Jäsenet] %s - "
-#: chat.php:4184 chat.php:4369
+#: index.php:4265 index.php:4451 chat.php:4265 chat.php:4451
#, php-format
msgid "[Staff] %s - "
msgstr "[Henkilökunta] %s - "
-#: chat.php:4185 chat.php:4369
+#: index.php:4266 index.php:4451 chat.php:4266 chat.php:4451
#, php-format
msgid "[Admin] %s - "
msgstr "[Ylläpito] %s - "
-#: chat.php:4186 chat.php:4369
+#: index.php:4267 index.php:4451 chat.php:4267 chat.php:4451
#, php-format
msgid "[%1$s to %2$s] - "
msgstr "[%1$s - %2$s] - "
-#: chat.php:4187
+#: index.php:4268 chat.php:4268
#, php-format
msgid "%s entered the chat."
msgstr "%s liittyi."
-#: chat.php:4188
+#: index.php:4269 chat.php:4269
#, php-format
msgid "%s left the chat."
msgstr "%s poistui."
-#: chat.php:4189
+#: index.php:4270 chat.php:4270
#, php-format
msgid "%s is now a registered member."
msgstr "%s on nyt rekisteröity jäsen."
-#: chat.php:4190
+#: index.php:4271 chat.php:4271
#, php-format
msgid "%s is now a registered applicant."
msgstr "%s on nyt rekisteröity hakija."
-#: chat.php:4191
-#, php-format
-msgid "%s has been kicked."
+#: index.php:4272 chat.php:4272
+#, fuzzy, php-format
+#| msgid "%s has been kicked."
+msgid "%1$s has been kicked: %2$s"
msgstr "%s heitettiin ulos."
-#: chat.php:4192
-#, php-format
-msgid "%s have been kicked."
+#: index.php:4273 chat.php:4273
+#, fuzzy, php-format
+#| msgid "%s have been kicked."
+msgid "%1$s have been kicked: %2$s"
msgstr "%s heitettiin ulos."
-#: chat.php:4193
-msgid "All guests have been kicked."
+#: index.php:4274 chat.php:4274
+#, fuzzy, php-format
+#| msgid "All guests have been kicked."
+msgid "All guests have been kicked: %1$s"
msgstr "Kaikki vierailijat heitettiin ulos."
-#: chat.php:4194
+#: index.php:4275 chat.php:4275
#, php-format
msgid "%s has been cleaned."
msgstr "%s tyhjennetty."
-#: chat.php:4202 chat.php:4396
+#: index.php:4283 index.php:4478 chat.php:4283 chat.php:4478
msgid "Temporarily disabled"
msgstr "Väliaikaisesti pois käytöstä"
-#: chat.php:4218 chat.php:4594
+#: index.php:4299 index.php:4676 chat.php:4299 chat.php:4676
msgid "A chat community"
msgstr "Chattiyhteisö"
-#: chat.php:4256
+#: index.php:4338 chat.php:4338
msgid "Successfully registered!"
msgstr "Rekisteröinti onnistui!"
-#: chat.php:4522 chat.php:4721 chat.php:4728
+#: index.php:4604 index.php:4807 index.php:4814 chat.php:4604 chat.php:4807
+#: chat.php:4814
msgid "No connection to database!"
msgstr "Ei tietokantayhteyttä!"
-#: chat.php:4531
+#: index.php:4613 chat.php:4613
msgid ""
"Note: Default CSS is now hardcoded and can be removed from the CSS setting"
msgstr "Huomaa: CSS on sisäänkoodattu ja voidaan poistaa CSS-asetuksella"
-#: chat.php:4611
+#: index.php:4697 chat.php:4697
#, php-format
msgid ""
"The %s extension of PHP is required for the encryption feature. Please "
"install it first or set the encrypted setting back to false."
msgstr "%s-lisäosan asennus vaaditaan."
-#: chat.php:4684 chat.php:4689 chat.php:4694
+#: index.php:4770 index.php:4775 index.php:4780 chat.php:4770 chat.php:4775
+#: chat.php:4780
#, php-format
msgid ""
"The %s extension of PHP is required for the selected database driver. Please "
"install it first."
msgstr "%s-lisäosan asennus vaaditaan."
-#: chat.php:4707 chat.php:4715 chat.php:4719 chat.php:4726
+#: index.php:4793 index.php:4801 index.php:4805 index.php:4812 chat.php:4793
+#: chat.php:4801 chat.php:4805 chat.php:4812
msgid ""
"No connection to database, please create a database and edit the script to "
"use the correct database with given username and password!"
msgstr "Tietokantaa ei ole asetettu, luo se ja yhdistä skripti siihen!"
-#: chat.php:4734
+#: index.php:4820 chat.php:4820
msgid ""
"The memcached extension of PHP is required for the caching feature. Please "
"install it first or set the memcached setting back to false."
diff --git a/locale/fr_FR/LC_MESSAGES/le-chat-php.po b/locale/fr_FR/LC_MESSAGES/le-chat-php.po
index f54e06b..d37e384 100644
--- a/locale/fr_FR/LC_MESSAGES/le-chat-php.po
+++ b/locale/fr_FR/LC_MESSAGES/le-chat-php.po
@@ -7,11 +7,11 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-01-18 21:32+0100\n"
+"POT-Creation-Date: 2025-03-29 17:02+0100\n"
"PO-Revision-Date: 2023-05-26 22:46+0000\n"
"Last-Translator: Calvin Honecker \n"
-"Language-Team: French \n"
+"Language-Team: French \n"
"Language: fr_FR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,263 +19,269 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.17\n"
-#: chat.php:261
+#: index.php:272 chat.php:272
msgid "Enable applicants"
msgstr "Autorisé un candidat"
-#: chat.php:262
+#: index.php:273 index.php:2267 chat.php:273 chat.php:2267
msgid "Embed images"
msgstr "Images imbriquées"
-#: chat.php:263 chat.php:2202
+#: index.php:274 index.php:2261 chat.php:274 chat.php:2261
msgid "Show Timestamps"
msgstr "Afficher l'horodatage"
-#: chat.php:264
+#: index.php:275 chat.php:275
msgid "Show session-IP"
msgstr "Voir la session-IP"
-#: chat.php:265
+#: index.php:276 chat.php:276
msgid "Members can kick, if no moderator is present"
msgstr "Membres peuvent expulsés, si le modérateur est absent"
-#: chat.php:266
+#: index.php:277 chat.php:277
msgid "Members can always kick"
msgstr "Membres peuvent toujours expulser"
-#: chat.php:267
+#: index.php:278 chat.php:278
msgid "Force redirection"
msgstr "Forcer la redirection"
-#: chat.php:268
+#: index.php:279 index.php:2270 chat.php:279 chat.php:2270
msgid "Incognito mode"
msgstr "Mode incognito"
-#: chat.php:269
+#: index.php:280 chat.php:280
msgid "Send mail on new public message"
msgstr ""
-#: chat.php:270
+#: index.php:281 chat.php:281
msgid "Fallback to waiting room, if no moderator is present to approve guests"
msgstr ""
-#: chat.php:271
+#: index.php:282 chat.php:282
msgid "Disable private messages"
msgstr "Désactiver les messages privés"
-#: chat.php:272 chat.php:2223
+#: index.php:283 index.php:2282 chat.php:283 chat.php:2282
msgid "Enable offline inbox"
msgstr ""
-#: chat.php:273
+#: index.php:284 chat.php:284
msgid "Show a greeting message before showing the messages"
msgstr ""
-#: chat.php:274 chat.php:2204
+#: index.php:285 index.php:2263 chat.php:285 chat.php:2263
msgid "Sort messages from top to bottom"
msgstr ""
-#: chat.php:275 chat.php:2205
+#: index.php:286 index.php:2264 chat.php:286 chat.php:2264
msgid "Hide list of chatters"
msgstr "Masquer la liste des chatteurs"
-#: chat.php:276 chat.php:1780 chat.php:1794
+#: index.php:287 index.php:1837 index.php:1851 chat.php:287 chat.php:1837
+#: chat.php:1851
msgid "Personal notes"
msgstr "Notes personnelles"
-#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110
+#: index.php:288 index.php:1840 index.php:1854 index.php:2169 chat.php:288
+#: chat.php:1840 chat.php:1854 chat.php:2169
msgid "Public notes"
msgstr "Notes publiques"
-#: chat.php:278
+#: index.php:289 chat.php:289
msgid "Apply kick filter on moderators"
msgstr "Appliquer le filtre de kick sur les modérateurs"
-#: chat.php:279
+#: index.php:290 chat.php:290
msgid "Show who kicks people or purges all messages."
msgstr "Montrez qui expulse les gens ou nettoie tous les messages."
-#: chat.php:280
+#: index.php:291 chat.php:291
msgid "Hide reload post box button"
msgstr ""
-#: chat.php:281
+#: index.php:292 chat.php:292
msgid "Hide reload messages button"
msgstr ""
-#: chat.php:282
+#: index.php:293 chat.php:293
msgid "Hide profile button"
msgstr ""
-#: chat.php:283
+#: index.php:294 chat.php:294
msgid "Hide admin button"
msgstr ""
-#: chat.php:284
+#: index.php:295 chat.php:295
msgid "Hide notes button"
msgstr ""
-#: chat.php:285
+#: index.php:296 chat.php:296
msgid "Hide clone button"
msgstr ""
-#: chat.php:286
+#: index.php:297 chat.php:297
msgid "Hide rearrange button"
msgstr ""
-#: chat.php:287
+#: index.php:298 chat.php:298
msgid "Hide help button"
msgstr ""
-#: chat.php:288
+#: index.php:299 chat.php:299
msgid "Apply postbox delete button globally"
msgstr ""
-#: chat.php:289
+#: index.php:300 chat.php:300
msgid "Allow enhancing functionality with JavaScript"
msgstr "Autoriser l'amélioration des fonctionnalités avec JavaScript"
-#: chat.php:292 chat.php:2170
+#: index.php:303 index.php:2229 chat.php:303 chat.php:2229
msgid "Background colour"
msgstr "Couleur de fond"
-#: chat.php:293 chat.php:2167
+#: index.php:304 index.php:2226 chat.php:304 chat.php:2226
msgid "Font colour"
msgstr "Couleur des polices"
-#: chat.php:296
+#: index.php:307 chat.php:307
msgid "Entrance"
msgstr "Entrer"
-#: chat.php:297
+#: index.php:308 chat.php:308
msgid "Leaving"
msgstr "Quitter"
-#: chat.php:298
+#: index.php:309 chat.php:309
msgid "Member registered"
msgstr "Membre enregisté"
-#: chat.php:299
+#: index.php:310 chat.php:310
msgid "Applicant registered"
msgstr "Candidat inscrit"
-#: chat.php:300
+#: index.php:311 chat.php:311
msgid "Kicked"
msgstr "Banni / éjecté"
-#: chat.php:301
+#: index.php:312 chat.php:312
msgid "Multiple kicked"
msgstr "Multiples éjections"
-#: chat.php:302
+#: index.php:313 chat.php:313
msgid "All kicked"
msgstr "Éjection globale"
-#: chat.php:303
+#: index.php:314 chat.php:314
msgid "Room cleaned"
msgstr "Messages nettoyés"
-#: chat.php:304
+#: index.php:315 chat.php:315
msgid "Message to all"
msgstr "Message à tous"
-#: chat.php:305
+#: index.php:316 chat.php:316
msgid "Message to members only"
msgstr "Message aux membres seulement"
-#: chat.php:306
+#: index.php:317 chat.php:317
msgid "Message to staff only"
msgstr "Message pour les gestionnaires seulement"
-#: chat.php:307
+#: index.php:318 chat.php:318
msgid "Message to admins only"
msgstr "Message pour les administrateurs seulement"
-#: chat.php:308
+#: index.php:319 chat.php:319
msgid "Private message"
msgstr "Message privé"
-#: chat.php:309
+#: index.php:320 chat.php:320
msgid "Attachement"
msgstr ""
-#: chat.php:312
+#: index.php:323 chat.php:323
msgid "Member timeout (minutes)"
msgstr "Délai expiré pour un membre (minutes)"
-#: chat.php:313
+#: index.php:324 chat.php:324
msgid "Guest timeout (minutes)"
msgstr "Délai expiré pour un visiteur (minutes)"
-#: chat.php:314
+#: index.php:325 chat.php:325
msgid "Kick penalty (minutes)"
msgstr "Pénalité d'expulsion (minutes)"
-#: chat.php:315
+#: index.php:326 chat.php:326
msgid "Waiting room time (seconds)"
msgstr "Délai pour entrer au chat (seconds)"
-#: chat.php:316
+#: index.php:327 chat.php:327
+msgid "Logout delay (seconds)"
+msgstr ""
+
+#: index.php:328 chat.php:328
msgid "Captcha timeout (seconds)"
msgstr "Délai du Captcha expiré (seconds)"
-#: chat.php:317
+#: index.php:329 chat.php:329
msgid "Message timeout (minutes)"
msgstr "Délai expiré pour le message (minutes)"
-#: chat.php:318
+#: index.php:330 chat.php:330
msgid "Message limit (public)"
msgstr "Limite du message (publique)"
-#: chat.php:319
+#: index.php:331 chat.php:331
msgid "Maximal message length"
msgstr "Longueur maximale du message"
-#: chat.php:320
+#: index.php:332 chat.php:332
msgid "Maximal nickname length"
msgstr "Longueur maximale pour le Pseudo"
-#: chat.php:321
+#: index.php:333 chat.php:333
msgid "Minimal password length"
msgstr "Longueur minimale du mot de passe"
-#: chat.php:322
+#: index.php:334 chat.php:334
msgid "Default message reload time (seconds)"
msgstr "Temps de rechargement du message par défaut (seconds)"
-#: chat.php:323
+#: index.php:335 chat.php:335
msgid "Number of notes revisions to keep"
msgstr "Nombre de notes révisées à conserver"
-#: chat.php:324
+#: index.php:336 chat.php:336
msgid "Maximum upload size in KB"
msgstr ""
-#: chat.php:325
+#: index.php:337 chat.php:337
msgid "Enable file uploads"
msgstr ""
-#: chat.php:326
+#: index.php:338 chat.php:338
msgid "Lowest refresh rate"
msgstr ""
-#: chat.php:327
+#: index.php:339 chat.php:339
msgid "Highest refresh rate"
msgstr ""
-#: chat.php:330
+#: index.php:342 chat.php:342
msgid "Rules (html)"
msgstr "Règles (html)"
-#: chat.php:331
+#: index.php:343 chat.php:343
msgid "CSS Style"
msgstr "Style css"
-#: chat.php:332
+#: index.php:344 chat.php:344
msgid "Chat disabled message (html)"
msgstr ""
-#: chat.php:335
+#: index.php:347 chat.php:347
msgid ""
"Date "
@@ -285,498 +291,533 @@ msgstr ""
"php#refsect1-function.date-parameters\" rel=\"noopener noreferrer\">Format "
"de date"
-#: chat.php:336
+#: index.php:348 chat.php:348
msgid "Characters used in Captcha"
msgstr "Charactères utilisés dans le Captcha"
-#: chat.php:337
+#: index.php:349 chat.php:349
msgid "Custom redirection script"
msgstr "Personnalisation du script de redirection"
-#: chat.php:338
+#: index.php:350 chat.php:350
msgid "Chat name"
msgstr "Nom du chat"
-#: chat.php:339
+#: index.php:351 chat.php:351
msgid "Send mail using this address"
msgstr ""
-#: chat.php:340
+#: index.php:352 chat.php:352
msgid "Send mail to this address"
msgstr ""
-#: chat.php:341
+#: index.php:353 chat.php:353
msgid "Nickname regex"
msgstr ""
-#: chat.php:342
+#: index.php:354 chat.php:354
msgid "Password regex"
msgstr ""
-#: chat.php:343
+#: index.php:355 chat.php:355
msgid "Link to external CSS file (on your own server)"
msgstr ""
-#: chat.php:344
+#: index.php:356 chat.php:356
msgid "Meta description (best 50 - 160 characters for SEO)"
msgstr ""
-#: chat.php:345
+#: index.php:357 chat.php:357
+msgid "Show this text when a user's logout is delayed"
+msgstr ""
+
+#: index.php:358 chat.php:358
msgid "Prepend this text to system messages"
msgstr "Ce texte précède les messages du système"
-#: chat.php:348 chat.php:728 chat.php:1225
+#: index.php:361 index.php:780 index.php:1282 chat.php:361 chat.php:780
+#: chat.php:1282
msgid "Change Guestaccess"
msgstr "Changer l'accès de l'invité"
-#: chat.php:349
+#: index.php:362 chat.php:362
msgid "Enable global Password"
msgstr ""
-#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433
+#: index.php:363 index.php:810 index.php:2474 index.php:2492 chat.php:363
+#: chat.php:810 chat.php:2474 chat.php:2492
msgid "Global Password:"
msgstr "Mot de passe global:"
-#: chat.php:351 chat.php:819
+#: index.php:364 index.php:871 chat.php:364 chat.php:871
msgid "Captcha"
msgstr "Captcha"
-#: chat.php:352 chat.php:775 chat.php:835
+#: index.php:365 index.php:827 index.php:887 chat.php:365 chat.php:827
+#: chat.php:887
msgid "Only for guests"
msgstr "Seulements les invités"
-#: chat.php:353 chat.php:1220
+#: index.php:366 index.php:1277 chat.php:366 chat.php:1277
msgid "Topic"
msgstr "Sujet"
-#: chat.php:354 chat.php:781
+#: index.php:367 index.php:833 chat.php:367 chat.php:833
msgid "Let guests register themselves"
msgstr ""
-#: chat.php:355 chat.php:862
+#: index.php:368 index.php:919 chat.php:368 chat.php:919
msgid "Default time zone"
msgstr ""
-#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259
+#: index.php:581 index.php:1157 index.php:4158 index.php:4341 chat.php:581
+#: chat.php:1157 chat.php:4158 chat.php:4341
msgid "Initial Setup"
msgstr "Initialisation"
-#: chat.php:588
+#: index.php:601 chat.php:601
#, php-format
msgid "Redirecting to: %s"
msgstr "Redirection vers: %s"
-#: chat.php:595
+#: index.php:608 chat.php:608
#, php-format
msgid ""
"Dangerous non-http link requested, copy paste this link if you are really "
"sure: %s"
msgstr ""
-#: chat.php:597
+#: index.php:610 chat.php:610
#, php-format
msgid "Non-http link requested: %s"
msgstr "Lien Non-http demandé: %s"
-#: chat.php:599
+#: index.php:612 chat.php:612
#, php-format
msgid "If it's not working, try this one: %s"
msgstr "Si cela ne fonctionne pas, il suffit d'essayer celui si: %s"
-#: chat.php:609
+#: index.php:622 chat.php:622
msgid "Access denied"
msgstr "Accès interdit"
-#: chat.php:609
+#: index.php:622 chat.php:622
#, php-format
msgid "You are logged in as %s and don't have access to this section."
msgstr ""
"Vous êtes connecté en tant que %s et vous n'avez pas accès à cette section."
-#: chat.php:611 chat.php:915 chat.php:1211 chat.php:1393
+#: index.php:624 index.php:972 index.php:1268 index.php:1450 chat.php:624
+#: chat.php:972 chat.php:1268 chat.php:1450
msgid "Logout"
msgstr "Déconnexion"
-#: chat.php:636
+#: index.php:649 chat.php:649
msgid "Copy:"
msgstr "Copie :"
-#: chat.php:724
+#: index.php:776 chat.php:776
msgid "Chat Setup"
msgstr "Installation du chat"
-#: chat.php:734 chat.php:1233
+#: index.php:786 index.php:1290 chat.php:786 chat.php:1290
msgid "Allow"
msgstr "Autorisé"
-#: chat.php:739 chat.php:1238
+#: index.php:791 index.php:1295 chat.php:791 chat.php:1295
msgid "Allow with waitingroom"
msgstr "Autorisé avec l'attente dans le salon"
-#: chat.php:744 chat.php:1243
+#: index.php:796 index.php:1300 chat.php:796 chat.php:1300
msgid "Require moderator approval"
msgstr "Demande l'approbation du modérateur"
-#: chat.php:749 chat.php:1248
+#: index.php:801 index.php:1305 chat.php:801 chat.php:1305
msgid "Only members"
msgstr "Seulement les membres"
-#: chat.php:754 chat.php:1251
+#: index.php:806 index.php:1308 chat.php:806 chat.php:1308
msgid "Disable chat"
msgstr ""
-#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229
+#: index.php:817 index.php:839 index.php:894 index.php:953 index.php:2288
+#: chat.php:817 chat.php:839 chat.php:894 chat.php:953 chat.php:2288
msgid "Disabled"
msgstr "Désinstallé"
-#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219
+#: index.php:822 index.php:882 index.php:958 index.php:2278 chat.php:822
+#: chat.php:882 chat.php:958 chat.php:2278
msgid "Enabled"
msgstr "Installé"
-#: chat.php:792
+#: index.php:844 chat.php:844
msgid "As applicant"
msgstr ""
-#: chat.php:797
+#: index.php:849 chat.php:849
msgid "As member"
msgstr ""
-#: chat.php:800
+#: index.php:852 chat.php:852
msgid "System messages"
msgstr "Messages du système"
-#: chat.php:822 chat.php:1053
+#: index.php:874 index.php:1110 chat.php:874 chat.php:1110
#, php-format
msgid ""
"The %s extension of PHP is required for this feature. Please install it "
"first."
msgstr ""
-#: chat.php:847
+#: index.php:899 chat.php:899
msgid "Simple"
msgstr "Simple"
-#: chat.php:852
+#: index.php:904 chat.php:904
msgid "Moderate"
msgstr "Moderé"
-#: chat.php:857
+#: index.php:909 chat.php:909
+msgid "Hard"
+msgstr ""
+
+#: index.php:914 chat.php:914
msgid "Extreme"
msgstr "Extrême"
-#: chat.php:906 chat.php:1548 chat.php:1610
+#: index.php:963 index.php:1605 index.php:1667 chat.php:963 chat.php:1605
+#: chat.php:1667
msgid "Apply"
msgstr "Appliqué"
-#: chat.php:910 chat.php:1050
+#: index.php:967 index.php:1107 chat.php:967 chat.php:1107
msgid "Backup and restore"
msgstr "Sauvegarder et récupérer"
-#: chat.php:912
+#: index.php:969 chat.php:969
msgid "Destroy chat"
msgstr "Destruction du chat"
-#: chat.php:1057 chat.php:1066
+#: index.php:1114 index.php:1123 chat.php:1114 chat.php:1123
msgid "Settings"
msgstr "Paramètres"
-#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575
-#: chat.php:1622
+#: index.php:1115 index.php:1124 index.php:1269 index.php:1595 index.php:1632
+#: index.php:1679 chat.php:1115 chat.php:1124 chat.php:1269 chat.php:1595
+#: chat.php:1632 chat.php:1679
msgid "Filter"
msgstr "Filtré"
-#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538
+#: index.php:1116 index.php:1125 index.php:1325 index.php:2600 chat.php:1116
+#: chat.php:1125 chat.php:1325 chat.php:2600
msgid "Members"
msgstr "Membres"
-#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322
+#: index.php:1117 index.php:1126 index.php:2373 index.php:2381 chat.php:1117
+#: chat.php:1126 chat.php:2373 chat.php:2381
msgid "Notes"
msgstr "Notes"
-#: chat.php:1061
+#: index.php:1118 chat.php:1118
msgid "Backup"
msgstr "Sauvegarder"
-#: chat.php:1070
+#: index.php:1127 chat.php:1127
msgid "Restore"
msgstr "Récupérer"
-#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260
+#: index.php:1131 index.php:1174 index.php:1212 index.php:1242 index.php:4342
+#: chat.php:1131 chat.php:1174 chat.php:1212 chat.php:1242 chat.php:4342
msgid "Go to the Setup-Page"
msgstr "Allez à la page d'installation"
-#: chat.php:1082 chat.php:1091 chat.php:1949
+#: index.php:1139 index.php:1148 index.php:2006 chat.php:1139 chat.php:1148
+#: chat.php:2006
msgid "Are you sure?"
msgstr "Êtes-vous certain?"
-#: chat.php:1083 chat.php:1092 chat.php:1956
+#: index.php:1140 index.php:1149 index.php:2013 chat.php:1140 chat.php:1149
+#: chat.php:2013
msgid "Yes"
msgstr "Oui"
-#: chat.php:1084 chat.php:1093 chat.php:1963
+#: index.php:1141 index.php:1150 index.php:2020 chat.php:1141 chat.php:1150
+#: chat.php:2020
msgid "No"
msgstr "Non"
-#: chat.php:1101 chat.php:4259
+#: index.php:1158 index.php:4341 chat.php:1158 chat.php:4341
msgid "Superadmin Login"
msgstr "Connexion du super administrateur"
-#: chat.php:1102
+#: index.php:1159 chat.php:1159
msgid "Superadmin Nickname:"
msgstr "Pseudo super administrateur:"
-#: chat.php:1103
+#: index.php:1160 chat.php:1160
msgid "Superadmin Password:"
msgstr "Mot de passe du super administrateur:"
-#: chat.php:1104
+#: index.php:1161 chat.php:1161
msgid "Confirm Password:"
msgstr "Confirmer le mot de passe:"
-#: chat.php:1105
+#: index.php:1162 chat.php:1162
msgid "Initialise Chat"
msgstr "Initalisation du chat"
-#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439
+#: index.php:1163 index.php:1187 index.php:1213 index.php:2336 index.php:2498
+#: chat.php:1163 chat.php:1187 chat.php:1213 chat.php:2336 chat.php:2498
msgid "Change language:"
msgstr "Changer la langue:"
-#: chat.php:1117
+#: index.php:1174 chat.php:1174
msgid "Database successfully updated!"
msgstr "Base de données installée!"
-#: chat.php:1125 chat.php:1326 chat.php:2407
+#: index.php:1182 index.php:1383 index.php:2466 chat.php:1182 chat.php:1383
+#: chat.php:2466
msgid "Nickname:"
msgstr "Pseudo:"
-#: chat.php:1126 chat.php:1327 chat.php:2408
+#: index.php:1183 index.php:1384 index.php:2467 chat.php:1183 chat.php:1384
+#: chat.php:2467
msgid "Password:"
msgstr "Mot de passe :"
-#: chat.php:1128
+#: index.php:1185 chat.php:1185
msgid "Login"
msgstr "Connexion"
-#: chat.php:1129
+#: index.php:1186 chat.php:1186
msgid "Forgot login?"
msgstr ""
-#: chat.php:1142 chat.php:1306
+#: index.php:1199 index.php:1363 chat.php:1199 chat.php:1363
msgid "Reset password"
msgstr "Réinitialisation du mot de passe"
-#: chat.php:1150
+#: index.php:1207 chat.php:1207
#, php-format
msgid ""
"Successfully reset password for username %s. Please remove the password "
"reset define from the script again."
msgstr ""
-#: chat.php:1153
+#: index.php:1210 chat.php:1210
msgid ""
"Please modify the script and put the following at the bottom of it (change "
"the password). Then refresh this page: define('RESET_SUPERADMIN_PASSWORD', "
"'changeme');"
msgstr ""
-#: chat.php:1169 chat.php:1193 chat.php:1258 chat.php:1270 chat.php:1294
-#: chat.php:1308 chat.php:1316 chat.php:2145 chat.php:2153
+#: index.php:1226 index.php:1250 index.php:1315 index.php:1327 index.php:1351
+#: index.php:1365 index.php:1373 index.php:2204 index.php:2212 chat.php:1226
+#: chat.php:1250 chat.php:1315 chat.php:1327 chat.php:1351 chat.php:1365
+#: chat.php:1373 chat.php:2204 chat.php:2212
msgid "(choose)"
msgstr "(choisir)"
-#: chat.php:1170
+#: index.php:1227 chat.php:1227
msgid "All guests"
msgstr "Tous les invités"
-#: chat.php:1182
+#: index.php:1239 chat.php:1239
msgid "Administrative functions"
msgstr "Fonctions d'administration"
-#: chat.php:1188
+#: index.php:1245 chat.php:1245
msgid "Clean messages"
msgstr "Messages nettoyés"
-#: chat.php:1191
+#: index.php:1248 chat.php:1248
msgid "Whole room"
msgstr "Salon"
-#: chat.php:1192
+#: index.php:1249 chat.php:1249
msgid "Selection"
msgstr "Sélection"
-#: chat.php:1193
+#: index.php:1250 chat.php:1250
msgid "Following nickname:"
msgstr "Suivre le pseudo:"
-#: chat.php:1200
+#: index.php:1257 chat.php:1257
msgid "Clean"
msgstr "Nettoyé"
-#: chat.php:1202
+#: index.php:1259 chat.php:1259
#, php-format
msgid "Kick Chatter (%d minutes)"
msgstr "Pseudos éjectés (%d minutes)"
-#: chat.php:1204
+#: index.php:1261 chat.php:1261
msgid "Kickmessage:"
msgstr "Messages interdis:"
-#: chat.php:1205
+#: index.php:1262 chat.php:1262
msgid "Purge messages"
msgstr "Purger les messages"
-#: chat.php:1206 chat.php:1388 chat.php:1546 chat.php:1580 chat.php:1591
-#: chat.php:2042
+#: index.php:1263 index.php:1445 index.php:1603 index.php:1637 index.php:1648
+#: index.php:2101 chat.php:1263 chat.php:1445 chat.php:1603 chat.php:1637
+#: chat.php:1648 chat.php:2101
msgid "Kick"
msgstr "Banni / éjecté"
-#: chat.php:1208
+#: index.php:1265 chat.php:1265
msgid "Logout inactive Chatter"
msgstr "Déconnexion chatteur inactif"
-#: chat.php:1212
+#: index.php:1269 chat.php:1269
msgid "View active sessions"
msgstr "Visualiser les sessions actives"
-#: chat.php:1212 chat.php:1603
+#: index.php:1269 index.php:1660 chat.php:1269 chat.php:1660
msgid "Linkfilter"
msgstr "Lien filtré"
-#: chat.php:1217
+#: index.php:1274 chat.php:1274
msgid "View"
msgstr "Voir"
-#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582
-#: chat.php:1626
+#: index.php:1280 index.php:1310 index.php:1361 index.php:1369 index.php:1639
+#: index.php:1683 chat.php:1280 chat.php:1310 chat.php:1361 chat.php:1369
+#: chat.php:1639 chat.php:1683
msgid "Change"
msgstr "Changer"
-#: chat.php:1256
+#: index.php:1313 chat.php:1313
msgid "Register applicant"
msgstr "Ajouter un candidat"
-#: chat.php:1264 chat.php:1322 chat.php:1328
+#: index.php:1321 index.php:1379 index.php:1385 chat.php:1321 chat.php:1379
+#: chat.php:1385
msgid "Register"
msgstr "Enregistrer"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Delete from database"
msgstr "Effacer de la base de données"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Deny access (!)"
msgstr "Acces interdit (!)"
-#: chat.php:1296
+#: index.php:1353 chat.php:1353
msgid "Set to applicant (SG)"
msgstr "Ajouter comme candidat (SG)"
-#: chat.php:1298
+#: index.php:1355 chat.php:1355
msgid "Set to regular member"
msgstr "Ajouter comme membre regulier"
-#: chat.php:1299
+#: index.php:1356 chat.php:1356
msgid "Set to moderator (M)"
msgstr "Ajouter comme modérateur (M)"
-#: chat.php:1300
+#: index.php:1357 chat.php:1357
msgid "Set to supermod (SM)"
msgstr "Ajouter comme super modérateur (SM)"
-#: chat.php:1302
+#: index.php:1359 chat.php:1359
msgid "Set to admin (A)"
msgstr "Ajouter comme administrateur (A)"
-#: chat.php:1314
+#: index.php:1371 chat.php:1371
msgid "Register Guest"
msgstr "Enregister un invité"
-#: chat.php:1324
+#: index.php:1381 chat.php:1381
msgid "Register new Member"
msgstr "Enregistrer un nouveau membre"
-#: chat.php:1332 chat.php:1408 chat.php:1595 chat.php:1636 chat.php:1710
-#: chat.php:1924
+#: index.php:1389 index.php:1465 index.php:1652 index.php:1693 index.php:1767
+#: index.php:1981 chat.php:1389 chat.php:1465 chat.php:1652 chat.php:1693
+#: chat.php:1767 chat.php:1981
msgid "Reload"
msgstr "Rechargé"
-#: chat.php:1345
+#: index.php:1402 chat.php:1402
msgid "Active Sessions"
msgstr "Sessions actives"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "Nickname"
msgstr "Pseudo"
-#: chat.php:1346
+#: index.php:1403 chat.php:1403
msgid "Timeout in"
msgstr "Expire dans"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "User-Agent"
msgstr "User-Agent"
-#: chat.php:1350
+#: index.php:1407 chat.php:1407
msgid "IP-Address"
msgstr "IP-Adresse"
-#: chat.php:1351
+#: index.php:1408 chat.php:1408
msgid "Actions"
msgstr "Actions"
-#: chat.php:1393
+#: index.php:1450 chat.php:1450
msgid "Unban"
msgstr ""
-#: chat.php:1416
+#: index.php:1473 chat.php:1473
msgid "Incorrect regular expression!"
msgstr "Expression régulière incorrecte!"
-#: chat.php:1416 chat.php:1424
+#: index.php:1473 index.php:1481 chat.php:1473 chat.php:1481
#, php-format
msgid "Your match was as follows: %s"
msgstr ""
-#: chat.php:1424
+#: index.php:1481 chat.php:1481
msgid ""
"Your match was too long. You can use max. 255 characters. Try splitting it "
"up."
msgstr ""
-#: chat.php:1541 chat.php:1606
+#: index.php:1598 index.php:1663 chat.php:1598 chat.php:1663
msgid "Filter ID:"
msgstr "Filtre ID:"
-#: chat.php:1542 chat.php:1607
+#: index.php:1599 index.php:1664 chat.php:1599 chat.php:1664
msgid "Match"
msgstr "Correspond"
-#: chat.php:1543 chat.php:1608
+#: index.php:1600 index.php:1665 chat.php:1600 chat.php:1665
msgid "Replace"
msgstr "Replacé"
-#: chat.php:1544 chat.php:1578 chat.php:1589
+#: index.php:1601 index.php:1635 index.php:1646 chat.php:1601 chat.php:1635
+#: chat.php:1646
msgid "Allow in PM"
msgstr "Authorisé en PM"
-#: chat.php:1545 chat.php:1579 chat.php:1590 chat.php:1609 chat.php:1625
-#: chat.php:1633
+#: index.php:1602 index.php:1636 index.php:1647 index.php:1666 index.php:1682
+#: index.php:1690 chat.php:1602 chat.php:1636 chat.php:1647 chat.php:1666
+#: chat.php:1682 chat.php:1690
msgid "Regex"
msgstr "Regex"
-#: chat.php:1547 chat.php:1581 chat.php:1592
+#: index.php:1604 index.php:1638 index.php:1649 chat.php:1604 chat.php:1638
+#: chat.php:1649
msgid "Case sensitive"
msgstr ""
-#: chat.php:1586 chat.php:1630
+#: index.php:1643 index.php:1687 chat.php:1643 chat.php:1687
msgid "New filter:"
msgstr "Nouveau filtre:"
-#: chat.php:1593 chat.php:1634
+#: index.php:1650 index.php:1691 chat.php:1650 chat.php:1691
msgid "Add"
msgstr "Ajouter"
-#: chat.php:1691
+#: index.php:1748 chat.php:1748
msgid ""
"This chat uses frames. Please enable frames in your browser or use a "
"suitable one!"
@@ -784,96 +825,99 @@ msgstr ""
"Ce chat utlise les cadres. S\\'il vous plaît autoriser les cadres "
"dans votre navigateur!"
-#: chat.php:1691 chat.php:2370 chat.php:2457
+#: index.php:1748 index.php:2429 index.php:2516 chat.php:1748 chat.php:2429
+#: chat.php:2516
msgid "Back to the login page."
msgstr "Retour à la page d'authentification."
-#: chat.php:1709
+#: index.php:1766 chat.php:1766
msgid "Bottom"
msgstr "Bas"
-#: chat.php:1710
+#: index.php:1767 chat.php:1767
msgid "Manual refresh required"
msgstr ""
-#: chat.php:1726
+#: index.php:1783 chat.php:1783
msgid "Top"
msgstr "Haut"
-#: chat.php:1734 chat.php:1940 chat.php:1942
+#: index.php:1791 index.php:1997 index.php:1999 chat.php:1791 chat.php:1997
+#: chat.php:1999
msgid "Delete selected messages"
msgstr "Effacer les messages sélectionnés"
-#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281
+#: index.php:1818 index.php:1945 index.php:2160 index.php:2340 chat.php:1818
+#: chat.php:1945 chat.php:2160 chat.php:2340
msgid "Back to the chat."
msgstr "Retour au chat."
-#: chat.php:1774 chat.php:1791
+#: index.php:1831 index.php:1848 chat.php:1831 chat.php:1848
msgid "Admin notes"
msgstr "Notes de l'administrateur"
-#: chat.php:1777 chat.php:1788
+#: index.php:1834 index.php:1845 chat.php:1834 chat.php:1845
msgid "Staff notes"
msgstr "Notes des gestionnaires"
-#: chat.php:1811
+#: index.php:1868 chat.php:1868
msgid "Notes saved!"
msgstr "Notes enregistrées!"
-#: chat.php:1835 chat.php:2122
+#: index.php:1892 index.php:2181 chat.php:1892 chat.php:2181
#, php-format
msgid "Last edited by %1$s at %2$s"
msgstr "Dernière édition fait par %1$s à %2$s"
-#: chat.php:1848
+#: index.php:1905 chat.php:1905
msgid "Save notes"
msgstr "Sauvegarder les notes"
-#: chat.php:1850
+#: index.php:1907 chat.php:1907
msgid "Revisions:"
msgstr "Révisions:"
-#: chat.php:1853
+#: index.php:1910 chat.php:1910
msgid "Older"
msgstr "Précédent"
-#: chat.php:1857
+#: index.php:1914 chat.php:1914
msgid "Newer"
msgstr "Nouveau"
-#: chat.php:1868 chat.php:1914
+#: index.php:1925 index.php:1971 chat.php:1925 chat.php:1971
msgid "Waiting room"
msgstr "Salle d'attente"
-#: chat.php:1880
+#: index.php:1937 chat.php:1937
msgid "Allow checked"
msgstr "Autoriser d'enregistrer"
-#: chat.php:1881
+#: index.php:1938 chat.php:1938
msgid "Allow all"
msgstr "Autoriser tout le monde"
-#: chat.php:1882
+#: index.php:1939 chat.php:1939
msgid "Deny checked"
msgstr "Refuser d'enregistrer"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Deny all"
msgstr "Refuser tout le monde"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Send message to denied:"
msgstr "Envoyer un message interdit:"
-#: chat.php:1884
+#: index.php:1941 chat.php:1941
msgid "Submit"
msgstr "Transmettre"
-#: chat.php:1886
+#: index.php:1943 chat.php:1943
msgid "No more entry requests to approve."
msgstr "Plus aucunes entrées à approuver."
-#: chat.php:1916
+#: index.php:1973 chat.php:1973
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat in %2$d "
@@ -882,7 +926,7 @@ msgstr ""
"Bienvenue %1$s, votre connexion a été mise en attente, votre accès au chat "
"dans %2$d secondes."
-#: chat.php:1918
+#: index.php:1975 chat.php:1975
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat as soon, "
@@ -891,7 +935,7 @@ msgstr ""
"Bienvenue %1$s, votre connexion a été mise en attente, votre accès au chat "
"se fera bientôt, dès qu'un modérateur le décidera."
-#: chat.php:1921
+#: index.php:1978 chat.php:1978
#, php-format
msgid ""
"If this page doesn't refresh every %d seconds, use the button below to "
@@ -900,64 +944,69 @@ msgstr ""
"Si cette page n'apparaît pas à chaque %d secondes, utilisez le bouton plus "
"bas pour recharger manuellement!"
-#: chat.php:1926 chat.php:2339
+#: index.php:1983 index.php:2398 chat.php:1983 chat.php:2398
msgid "Exit Chat"
msgstr "Sortir du Chat"
-#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430
+#: index.php:1986 index.php:2133 index.php:2144 index.php:2489 chat.php:1986
+#: chat.php:2133 chat.php:2144 chat.php:2489
msgid "Rules"
msgstr "Règles"
-#: chat.php:1985
+#: index.php:2042 chat.php:2042
msgid "Send to"
msgstr "Envoyer à"
-#: chat.php:1990
+#: index.php:2047 chat.php:2047
msgid "All chatters"
msgstr "À tous les chatteurs"
-#: chat.php:1996
+#: index.php:2053 chat.php:2053
msgid "Members only"
msgstr "Membres seulement"
-#: chat.php:2003
+#: index.php:2060 chat.php:2060
msgid "Staff only"
msgstr "Gestionnaire seulement"
-#: chat.php:2010
+#: index.php:2067 chat.php:2067
msgid "Admin only"
msgstr "Administrateur seulement"
-#: chat.php:2019
+#: index.php:2076 chat.php:2076
msgid "(offline)"
msgstr ""
-#: chat.php:2043
+#: index.php:2078 chat.php:2078
+msgid "(logging out)"
+msgstr ""
+
+#: index.php:2102 chat.php:2102
msgid "Also purge messages"
msgstr "Purger les messages"
-#: chat.php:2050
+#: index.php:2109 chat.php:2109
msgid "Delete last message"
msgstr "Effacer les derniers messages"
-#: chat.php:2055
+#: index.php:2114 chat.php:2114
msgid "Delete all messages"
msgstr "Effacer tous les messages"
-#: chat.php:2057
+#: index.php:2116 chat.php:2116
msgid "Switch to single-line"
msgstr "Baculer à une seule ligne"
-#: chat.php:2059
+#: index.php:2118 chat.php:2118
msgid "Switch to multi-line"
msgstr "Basculer à plusieurs lignes"
-#: chat.php:2070
+#: index.php:2129 chat.php:2129
#, php-format
msgid "Welcome %s!"
msgstr ""
-#: chat.php:2071
+#: index.php:2130 chat.php:2130
#, php-format
msgid ""
"If this frame does not reload in %d seconds, you'll have to enable automatic "
@@ -968,11 +1017,11 @@ msgid ""
"bottom to refresh manually."
msgstr ""
-#: chat.php:2087
+#: index.php:2146 chat.php:2146
msgid "Help"
msgstr "Aide"
-#: chat.php:2088
+#: index.php:2147 chat.php:2147
msgid ""
"All functions should be pretty much self-explaining, just use the buttons. "
"In your profile you can adjust the refresh rate and font colour, as well as "
@@ -985,7 +1034,7 @@ msgstr ""
"d'entrée. Note: C'est un chat, donc si vous arrêter de parler, "
"vous serez automatiquement déconnecté après un certain lapse de temps."
-#: chat.php:2090
+#: index.php:2149 chat.php:2149
msgid ""
"If you want to embed an image in your post, simply put [img] in front of "
"your image URL. Example: [img]http://example.com/images/file.jpg will embed "
@@ -995,7 +1044,7 @@ msgstr ""
"simplement de ajouter [img] en face de votre URL de l'image. Exemple: "
"[img]http://example.com/images/file.jpg intégrera l'image dans votre message."
-#: chat.php:2093
+#: index.php:2152 chat.php:2152
msgid ""
"Members: You'll have some more options in your profile. You can adjust your "
"font face, change your password anytime and of course you can delete your "
@@ -1005,7 +1054,7 @@ msgstr ""
"ajuster votre type de police et vous pouvez changer votre mot de passe à "
"tout moment."
-#: chat.php:2095
+#: index.php:2154 chat.php:2154
msgid ""
"Moderators: Notice the Admin-button at the bottom. It'll bring up a page "
"where you can clean the room, kick chatters, view all active sessions and "
@@ -1016,7 +1065,7 @@ msgstr ""
"toutes les sessions actives et désactiver complètement l'accès des invités "
"si nécessaire."
-#: chat.php:2097
+#: index.php:2156 chat.php:2156
msgid ""
"Admins: You'll be furthermore able to register guests, edit members and "
"register new nicknames."
@@ -1024,480 +1073,495 @@ msgstr ""
"Administrateurs: Vous serez en mesure d'enregistrer les invités, modifier et "
"enregistrer de nouveaux membres sans qu'ils soient dans le salon."
-#: chat.php:2135
+#: index.php:2194 chat.php:2194
msgid "Your Profile"
msgstr "Votre profile"
-#: chat.php:2144
+#: index.php:2203 chat.php:2203
msgid "Don't ignore anymore"
msgstr "Ne jamais plus ignorer"
-#: chat.php:2152
+#: index.php:2211 chat.php:2211
msgid "Ignore"
msgstr "Ignoré"
-#: chat.php:2163
+#: index.php:2222 chat.php:2222
#, php-format
msgid "Refresh rate (%1$d-%2$d seconds)"
msgstr "Taux de rafraichissement (%1$d-%2$d seconds)"
-#: chat.php:2167 chat.php:2170
+#: index.php:2226 index.php:2229 chat.php:2226 chat.php:2229
msgid "View examples"
msgstr "Visualiser les exemples"
-#: chat.php:2174
+#: index.php:2233 chat.php:2233
msgid "Fontface"
msgstr "Ajustement des polices"
-#: chat.php:2175
+#: index.php:2234 chat.php:2234
msgid "Room Default"
msgstr "Salon par défaut"
-#: chat.php:2188
+#: index.php:2247 chat.php:2247
msgid "Bold"
msgstr "Gras"
-#: chat.php:2192
+#: index.php:2251 chat.php:2251
msgid "Italic"
msgstr "Italique"
-#: chat.php:2196
+#: index.php:2255 chat.php:2255
msgid "Small"
msgstr ""
-#: chat.php:2199
+#: index.php:2258 chat.php:2258
msgid "Example for your chosen font"
msgstr "Exemple de choix de polices"
-#: chat.php:2203
+#: index.php:2262 chat.php:2262
msgid "Autoscroll (for old browsers or top-to-bottom sort)."
msgstr ""
-#: chat.php:2234
+#: index.php:2293 chat.php:2293
msgid "For everyone"
msgstr ""
-#: chat.php:2239
+#: index.php:2298 chat.php:2298
msgid "For members only"
msgstr ""
-#: chat.php:2244
+#: index.php:2303 chat.php:2303
msgid "For staff only"
msgstr ""
-#: chat.php:2248
+#: index.php:2307 chat.php:2307
msgid "Time zone"
msgstr ""
-#: chat.php:2261
+#: index.php:2320 chat.php:2320
msgid "Change Password"
msgstr "Changer le mot de passe"
-#: chat.php:2263
+#: index.php:2322 chat.php:2322
msgid "Old password:"
msgstr "Ancien mot de passe:"
-#: chat.php:2264
+#: index.php:2323 chat.php:2323
msgid "New password:"
msgstr "Nouveau mot de passe:"
-#: chat.php:2265
+#: index.php:2324 chat.php:2324
msgid "Confirm new password:"
msgstr "Confirmer votre nouveau mot de passe:"
-#: chat.php:2268
+#: index.php:2327 chat.php:2327
msgid "Change Nickname"
msgstr ""
-#: chat.php:2269
+#: index.php:2328 chat.php:2328
msgid "New nickname:"
msgstr "Nouveau Pseudo:"
-#: chat.php:2273
+#: index.php:2332 chat.php:2332
msgid "Save changes"
msgstr "Sauvegarder les modifications"
-#: chat.php:2275
+#: index.php:2334 chat.php:2334
msgid "Delete account"
msgstr ""
-#: chat.php:2301
+#: index.php:2360 chat.php:2360
msgid "Reload Post Box"
msgstr "Recharger la boite de texte"
-#: chat.php:2304
+#: index.php:2363 chat.php:2363
msgid "Reload Messages"
msgstr "Recharger les messages"
-#: chat.php:2307
+#: index.php:2366 chat.php:2366
msgid "Profile"
msgstr "Profile"
-#: chat.php:2311 chat.php:2528
+#: index.php:2370 index.php:2590 chat.php:2370 chat.php:2590
msgid "Admin"
msgstr "Administrateur"
-#: chat.php:2318
+#: index.php:2377 chat.php:2377
msgid "View public notes"
msgstr "Voir notes publiques"
-#: chat.php:2325
+#: index.php:2384 chat.php:2384
msgid "Clone"
msgstr "Clone"
-#: chat.php:2334
+#: index.php:2393 chat.php:2393
msgid "Rearrange"
msgstr ""
-#: chat.php:2337
+#: index.php:2396 chat.php:2396
msgid "Rules & Help"
msgstr "Règles & Aide"
-#: chat.php:2358 chat.php:2362
+#: index.php:2417 index.php:2421 chat.php:2417 chat.php:2421
msgid "File not found!"
msgstr ""
-#: chat.php:2370
+#: index.php:2429 chat.php:2429
#, php-format
msgid "Bye %s, visit again soon!"
msgstr "Au revoir %s, revenez nous voir bientôt!"
-#: chat.php:2377
+#: index.php:2436 chat.php:2436
msgid "Colourtable"
msgstr "Table de couleur"
-#: chat.php:2388
+#: index.php:2447 chat.php:2447
msgid "Back to your Profile"
msgstr "Retourner à votre profile"
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "Repeat password to register"
msgstr ""
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "(optional)"
msgstr ""
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Guests, choose a colour:"
msgstr "Invité, choisir une couleur:"
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Random Colour"
msgstr "Couleur aléatoire"
-#: chat.php:2421 chat.php:2435 chat.php:2569
+#: index.php:2480 index.php:2494 index.php:2631 chat.php:2480 chat.php:2494
+#: chat.php:2631
msgid "Sorry, currently members only!"
msgstr "Désolé, disponible seulement que pour les membres!"
-#: chat.php:2423 chat.php:2437
+#: index.php:2482 index.php:2496 chat.php:2482 chat.php:2496
msgid "Enter Chat"
msgstr "Entrer"
-#: chat.php:2457
+#: index.php:2516 chat.php:2516
#, php-format
msgid "Error: %s"
msgstr "Erreur: %s"
-#: chat.php:2467
+#: index.php:2526 chat.php:2526
msgid "Fatal error"
msgstr ""
-#: chat.php:2470
+#: index.php:2529 chat.php:2529
#, php-format
msgid "Fatal error: %s"
msgstr ""
-#: chat.php:2482 chat.php:2693
+#: index.php:2541 index.php:2756 chat.php:2541 chat.php:2756
msgid "Failed login attempt(s)"
msgstr "Tentative de connexion ratée(s)"
-#: chat.php:2489
+#: index.php:2548 chat.php:2548
#, php-format
msgid "Read %d messages in your inbox"
msgstr ""
-#: chat.php:2498
+#: index.php:2557 chat.php:2557
#, php-format
msgid "%d new guests to approve"
msgstr "%d nouveaux invités à approuver"
-#: chat.php:2530
+#: index.php:2577 chat.php:2577
+msgid "logging out"
+msgstr ""
+
+#: index.php:2592 chat.php:2592
msgid "Admin:"
msgstr "Administrateur:"
-#: chat.php:2533
+#: index.php:2595 chat.php:2595
msgid "Staff"
msgstr "Gestionnaire"
-#: chat.php:2535
+#: index.php:2597 chat.php:2597
msgid "Staff:"
msgstr "Gestionnaire:"
-#: chat.php:2540
+#: index.php:2602 chat.php:2602
msgid "Members:"
msgstr "Membres:"
-#: chat.php:2542
+#: index.php:2604 chat.php:2604
msgid "Guests"
msgstr "Invités"
-#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092
+#: index.php:2625 index.php:3063 index.php:3267 index.php:4172 chat.php:2625
+#: chat.php:3063 chat.php:3267 chat.php:4172
#, php-format
msgid ""
"Invalid nickname (%1$d characters maximum and has to match the regular "
"expression \"%2$s\")"
msgstr ""
-#: chat.php:2566 chat.php:2996 chat.php:3162 chat.php:4094
+#: index.php:2628 index.php:3066 index.php:3232 index.php:4174 chat.php:2628
+#: chat.php:3066 chat.php:3232 chat.php:4174
#, php-format
msgid ""
"Invalid password (At least %1$d characters and has to match the regular "
"expression \"%2$s\")"
msgstr ""
-#: chat.php:2574 chat.php:2739
+#: index.php:2636 index.php:2806 chat.php:2636 chat.php:2806
msgid "Wrong global Password!"
msgstr "Mauvais mot de passe global!"
-#: chat.php:2591 chat.php:2612
+#: index.php:2654 index.php:2675 chat.php:2654 chat.php:2675
msgid "Wrong Captcha"
msgstr "Mauvais Captcha"
-#: chat.php:2596 chat.php:2604
+#: index.php:2659 index.php:2667 chat.php:2659 chat.php:2667
msgid "Captcha already used or timed out."
msgstr "Captcha déjà utilisé ou expiré."
-#: chat.php:2652
+#: index.php:2715 chat.php:2715
msgid "A user with this nickname is already logged in."
msgstr ""
-#: chat.php:2652 chat.php:2933 chat.php:3176
+#: index.php:2715 index.php:3003 index.php:3246 chat.php:2715 chat.php:3003
+#: chat.php:3246
msgid "Wrong Password!"
msgstr "Mauvais mot de passe !"
-#: chat.php:2696
+#: index.php:2759 chat.php:2759
msgid "Dismiss"
msgstr "Reconnu"
-#: chat.php:2747 chat.php:3171 chat.php:4096
+#: index.php:2814 index.php:3241 index.php:4176 chat.php:2814 chat.php:3241
+#: chat.php:4176
msgid "Password confirmation does not match!"
msgstr "Confirmation mot du passe ne correspond pas!"
-#: chat.php:2859
+#: index.php:2854 chat.php:2854
+#, fuzzy
+#| msgid "Kickmessage:"
+msgid "no kick message"
+msgstr "Messages interdis:"
+
+#: index.php:2929 chat.php:2929
msgid "Invalid/expired session"
msgstr "Session invalide / expirée"
-#: chat.php:2875 chat.php:3412
+#: index.php:2945 index.php:3483 chat.php:2945 chat.php:3483
msgid "You have been kicked!"
msgstr "Banni / éjecté!"
-#: chat.php:2885
+#: index.php:2955 chat.php:2955
#, php-format
msgid "Currently %d chatter(s) in room:"
msgstr "Actuellement il y a %d chatteur(s) dans le salon:"
-#: chat.php:2933
+#: index.php:3003 chat.php:3003
msgid "This nickname is a registered member."
msgstr ""
-#: chat.php:2960 chat.php:3001
+#: index.php:3030 index.php:3071 chat.php:3030 chat.php:3071
#, php-format
msgid "%s is already registered."
msgstr "%s est déjà enregistré."
-#: chat.php:2969 chat.php:2990
+#: index.php:3039 index.php:3060 chat.php:3039 chat.php:3060
#, php-format
msgid "Can't register %s"
msgstr "Ne peut enregistrer %s"
-#: chat.php:2978 chat.php:3023
+#: index.php:3048 index.php:3093 chat.php:3048 chat.php:3093
#, php-format
msgid "%s successfully registered."
msgstr "%s enregistré avec succes."
-#: chat.php:3031 chat.php:3036
+#: index.php:3101 index.php:3106 chat.php:3101 chat.php:3106
#, php-format
msgid "Can't change status of %s"
msgstr "Ne peut changer le statut de %s"
-#: chat.php:3047
+#: index.php:3117 chat.php:3117
#, php-format
msgid "%s successfully deleted from database."
msgstr "%s effacé de la base de données avec succès."
-#: chat.php:3056
+#: index.php:3126 chat.php:3126
#, php-format
msgid "Status of %s successfully changed."
msgstr "Le statut de %s a changé avec succès."
-#: chat.php:3073
+#: index.php:3143 chat.php:3143
#, php-format
msgid "Successfully reset password for %s"
msgstr ""
-#: chat.php:3075
+#: index.php:3145 chat.php:3145
#, php-format
msgid "Can't reset password for %s"
msgstr ""
-#: chat.php:3190
+#: index.php:3260 chat.php:3260
msgid "Your profile has successfully been saved."
msgstr "Votre profile a bien étét enregistré."
-#: chat.php:3202
+#: index.php:3272 chat.php:3272
msgid "Nickname is already taken"
msgstr "Pseudo déjà pris"
-#: chat.php:3714
+#: index.php:3785 chat.php:3785
msgid "system message"
msgstr "message du système"
-#: chat.php:3921
+#: index.php:4001 chat.php:4001
msgid "Beige"
msgstr "Beige"
-#: chat.php:3922
+#: index.php:4002 chat.php:4002
msgid "Black"
msgstr "Noir"
-#: chat.php:3923
+#: index.php:4003 chat.php:4003
msgid "Blue"
msgstr "Bleu"
-#: chat.php:3924
+#: index.php:4004 chat.php:4004
msgid "Blue violet"
msgstr "Bleu violet"
-#: chat.php:3925
+#: index.php:4005 chat.php:4005
msgid "Brown"
msgstr "Brun"
-#: chat.php:3926
+#: index.php:4006 chat.php:4006
msgid "Cyan"
msgstr "Cyan"
-#: chat.php:3927
+#: index.php:4007 chat.php:4007
msgid "Dark blue"
msgstr "Bleu foncé"
-#: chat.php:3928
+#: index.php:4008 chat.php:4008
msgid "Dark green"
msgstr "Vert foncé"
-#: chat.php:3929
+#: index.php:4009 chat.php:4009
msgid "Dark red"
msgstr "Rouge foncé"
-#: chat.php:3930
+#: index.php:4010 chat.php:4010
msgid "Dark violet"
msgstr "Violet foncé"
-#: chat.php:3931
+#: index.php:4011 chat.php:4011
msgid "Sky blue"
msgstr "Bleu ciel"
-#: chat.php:3932
+#: index.php:4012 chat.php:4012
msgid "Gold"
msgstr "Or"
-#: chat.php:3933
+#: index.php:4013 chat.php:4013
msgid "Grey"
msgstr "Gris"
-#: chat.php:3934
+#: index.php:4014 chat.php:4014
msgid "Green"
msgstr "Vert"
-#: chat.php:3935
+#: index.php:4015 chat.php:4015
msgid "Hot pink"
msgstr "Rose indien"
-#: chat.php:3936
+#: index.php:4016 chat.php:4016
msgid "Indigo"
msgstr "Indigo"
-#: chat.php:3937
+#: index.php:4017 chat.php:4017
msgid "Light blue"
msgstr "Bleu Pâle"
-#: chat.php:3938
+#: index.php:4018 chat.php:4018
msgid "Light green"
msgstr "Vert pâle"
-#: chat.php:3939
+#: index.php:4019 chat.php:4019
msgid "Lime green"
msgstr "Vert lime"
-#: chat.php:3940
+#: index.php:4020 chat.php:4020
msgid "Magenta"
msgstr "Magenta"
-#: chat.php:3941
+#: index.php:4021 chat.php:4021
msgid "Olive"
msgstr "Olive"
-#: chat.php:3942
+#: index.php:4022 chat.php:4022
msgid "Orange"
msgstr "Orange"
-#: chat.php:3943
+#: index.php:4023 chat.php:4023
msgid "Orange red"
msgstr "Rouge orangé"
-#: chat.php:3944
+#: index.php:4024 chat.php:4024
msgid "Purple"
msgstr "Mauve"
-#: chat.php:3945
+#: index.php:4025 chat.php:4025
msgid "Red"
msgstr "Rouge"
-#: chat.php:3946
+#: index.php:4026 chat.php:4026
msgid "Royal blue"
msgstr "Bleu royal"
-#: chat.php:3947
+#: index.php:4027 chat.php:4027
msgid "Sea green"
msgstr "Vert océan"
-#: chat.php:3948
+#: index.php:4028 chat.php:4028
msgid "Sienna"
msgstr "Sienna"
-#: chat.php:3949
+#: index.php:4029 chat.php:4029
msgid "Silver"
msgstr "Argent"
-#: chat.php:3950
+#: index.php:4030 chat.php:4030
msgid "Tan"
msgstr "Beige"
-#: chat.php:3951
+#: index.php:4031 chat.php:4031
msgid "Teal"
msgstr "Bleu-vert foncé"
-#: chat.php:3952
+#: index.php:4032 chat.php:4032
msgid "Violet"
msgstr "Violet"
-#: chat.php:3953
+#: index.php:4033 chat.php:4033
msgid "White"
msgstr "Blanc"
-#: chat.php:3954
+#: index.php:4034 chat.php:4034
msgid "Yellow"
msgstr "Jaune"
-#: chat.php:3955
+#: index.php:4035 chat.php:4035
msgid "Yellow green"
msgstr "Jaune-verdâtre"
-#: chat.php:4077
+#: index.php:4157 chat.php:4157
msgid "Successfully destroyed chat"
msgstr "Chat supprimé"
-#: chat.php:4086
+#: index.php:4166 chat.php:4166
msgid ""
"Database tables already exist! To continue, you have to delete these tables "
"manually first."
@@ -1505,110 +1569,117 @@ msgstr ""
"Les tables de base de données existent déjà! Pour continuer, vous devez "
"supprimer les tables manuellement."
-#: chat.php:4089
+#: index.php:4169 chat.php:4169
msgid "A Superadmin already exists!"
msgstr "Un super administrateur existe déjà!"
-#: chat.php:4182 chat.php:4369
+#: index.php:4263 index.php:4451 chat.php:4263 chat.php:4451
#, php-format
msgid "%s - "
msgstr "%s - "
-#: chat.php:4183 chat.php:4369
+#: index.php:4264 index.php:4451 chat.php:4264 chat.php:4451
#, php-format
msgid "[M] %s - "
msgstr "[Membre] %s - "
-#: chat.php:4184 chat.php:4369
+#: index.php:4265 index.php:4451 chat.php:4265 chat.php:4451
#, php-format
msgid "[Staff] %s - "
msgstr "[Gestionnaire] %s - "
-#: chat.php:4185 chat.php:4369
+#: index.php:4266 index.php:4451 chat.php:4266 chat.php:4451
#, php-format
msgid "[Admin] %s - "
msgstr "[Administrateur] %s - "
-#: chat.php:4186 chat.php:4369
+#: index.php:4267 index.php:4451 chat.php:4267 chat.php:4451
#, php-format
msgid "[%1$s to %2$s] - "
msgstr "[%1$s to %2$s] - "
-#: chat.php:4187
+#: index.php:4268 chat.php:4268
#, php-format
msgid "%s entered the chat."
msgstr "%s est arrivé sur le chat."
-#: chat.php:4188
+#: index.php:4269 chat.php:4269
#, php-format
msgid "%s left the chat."
msgstr "%s a quitté le chat."
-#: chat.php:4189
+#: index.php:4270 chat.php:4270
#, php-format
msgid "%s is now a registered member."
msgstr "%s est maintenant un membre enregistré."
-#: chat.php:4190
+#: index.php:4271 chat.php:4271
#, php-format
msgid "%s is now a registered applicant."
msgstr "%s est maintenant un candidat enregistré."
-#: chat.php:4191
-#, php-format
-msgid "%s has been kicked."
+#: index.php:4272 chat.php:4272
+#, fuzzy, php-format
+#| msgid "%s has been kicked."
+msgid "%1$s has been kicked: %2$s"
msgstr "%s a été expulsé."
-#: chat.php:4192
-#, php-format
-msgid "%s have been kicked."
+#: index.php:4273 chat.php:4273
+#, fuzzy, php-format
+#| msgid "%s have been kicked."
+msgid "%1$s have been kicked: %2$s"
msgstr "%s ont été expulsé."
-#: chat.php:4193
-msgid "All guests have been kicked."
+#: index.php:4274 chat.php:4274
+#, fuzzy, php-format
+#| msgid "All guests have been kicked."
+msgid "All guests have been kicked: %1$s"
msgstr "Tous les chatteurs ont été expulsé."
-#: chat.php:4194
+#: index.php:4275 chat.php:4275
#, php-format
msgid "%s has been cleaned."
msgstr "%s a été nettoyé."
-#: chat.php:4202 chat.php:4396
+#: index.php:4283 index.php:4478 chat.php:4283 chat.php:4478
msgid "Temporarily disabled"
msgstr ""
-#: chat.php:4218 chat.php:4594
+#: index.php:4299 index.php:4676 chat.php:4299 chat.php:4676
msgid "A chat community"
msgstr ""
-#: chat.php:4256
+#: index.php:4338 chat.php:4338
msgid "Successfully registered!"
msgstr "Enregistré avec succès!"
-#: chat.php:4522 chat.php:4721 chat.php:4728
+#: index.php:4604 index.php:4807 index.php:4814 chat.php:4604 chat.php:4807
+#: chat.php:4814
msgid "No connection to database!"
msgstr "Pas de connexion à la base de données!"
-#: chat.php:4531
+#: index.php:4613 chat.php:4613
msgid ""
"Note: Default CSS is now hardcoded and can be removed from the CSS setting"
msgstr ""
-#: chat.php:4611
+#: index.php:4697 chat.php:4697
#, php-format
msgid ""
"The %s extension of PHP is required for the encryption feature. Please "
"install it first or set the encrypted setting back to false."
msgstr ""
-#: chat.php:4684 chat.php:4689 chat.php:4694
+#: index.php:4770 index.php:4775 index.php:4780 chat.php:4770 chat.php:4775
+#: chat.php:4780
#, php-format
msgid ""
"The %s extension of PHP is required for the selected database driver. Please "
"install it first."
msgstr ""
-#: chat.php:4707 chat.php:4715 chat.php:4719 chat.php:4726
+#: index.php:4793 index.php:4801 index.php:4805 index.php:4812 chat.php:4793
+#: chat.php:4801 chat.php:4805 chat.php:4812
msgid ""
"No connection to database, please create a database and edit the script to "
"use the correct database with given username and password!"
@@ -1617,7 +1688,7 @@ msgstr ""
"données et modifier le script pour utiliser la base de données correctement "
"avec le nom d'utilisateur et son mot de passe !"
-#: chat.php:4734
+#: index.php:4820 chat.php:4820
msgid ""
"The memcached extension of PHP is required for the caching feature. Please "
"install it first or set the memcached setting back to false."
diff --git a/locale/hi/LC_MESSAGES/le-chat-php.po b/locale/hi/LC_MESSAGES/le-chat-php.po
index 0a58d7d..fe8ca65 100644
--- a/locale/hi/LC_MESSAGES/le-chat-php.po
+++ b/locale/hi/LC_MESSAGES/le-chat-php.po
@@ -7,11 +7,11 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-01-18 21:32+0100\n"
+"POT-Creation-Date: 2025-03-29 17:02+0100\n"
"PO-Revision-Date: 2023-10-04 18:20+0000\n"
"Last-Translator: Weblate Admin \n"
-"Language-Team: Hindi \n"
+"Language-Team: Hindi \n"
"Language: hi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,1474 +19,1692 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 5.0\n"
-#: chat.php:261
+#: index.php:272 chat.php:272
msgid "Enable applicants"
msgstr "आवेदकों को सक्षम करें"
-#: chat.php:262
+#: index.php:273 index.php:2267 chat.php:273 chat.php:2267
msgid "Embed images"
msgstr "फोटोज एम्बेड करें"
-#: chat.php:263 chat.php:2202
+#: index.php:274 index.php:2261 chat.php:274 chat.php:2261
msgid "Show Timestamps"
msgstr "टाइमस्टैम्प दिखाएँ"
-#: chat.php:264
+#: index.php:275 chat.php:275
msgid "Show session-IP"
msgstr "सेशन-आईपी दिखाएँ"
-#: chat.php:265
+#: index.php:276 chat.php:276
msgid "Members can kick, if no moderator is present"
msgstr "यदि कोई मॉडरेटर मौजूद नहीं है, तो सदस्य बाहर निकाल सकते हैं"
-#: chat.php:266
+#: index.php:277 chat.php:277
msgid "Members can always kick"
msgstr "सदस्य हमेशा बाहर निकाल सकते हैं"
-#: chat.php:267
+#: index.php:278 chat.php:278
msgid "Force redirection"
msgstr "बलपूर्वक पुनर्निर्देशन"
-#: chat.php:268
+#: index.php:279 index.php:2270 chat.php:279 chat.php:2270
msgid "Incognito mode"
msgstr "इंकॉग्निटो मोड"
-#: chat.php:269
+#: index.php:280 chat.php:280
msgid "Send mail on new public message"
msgstr "नए सार्वजनिक संदेश पर मेल भेजें"
-#: chat.php:270
+#: index.php:281 chat.php:281
msgid "Fallback to waiting room, if no moderator is present to approve guests"
-msgstr "यदि मेहमानों को मंजूरी देने के लिए कोई मॉडरेटर मौजूद नहीं है, तो प्रतीक्षा कक्ष में वापस जाएँ"
+msgstr ""
+"यदि मेहमानों को मंजूरी देने के लिए कोई मॉडरेटर मौजूद नहीं है, तो प्रतीक्षा कक्ष में वापस जाएँ"
-#: chat.php:271
+#: index.php:282 chat.php:282
msgid "Disable private messages"
msgstr "निजी संदेश बंद करें"
-#: chat.php:272 chat.php:2223
+#: index.php:283 index.php:2282 chat.php:283 chat.php:2282
msgid "Enable offline inbox"
msgstr "ऑफ़लाइन इनबॉक्स सक्षम करें"
-#: chat.php:273
+#: index.php:284 chat.php:284
msgid "Show a greeting message before showing the messages"
msgstr "संदेश दिखाने से पहले शुभकामना संदेश दिखाएँ"
-#: chat.php:274 chat.php:2204
+#: index.php:285 index.php:2263 chat.php:285 chat.php:2263
msgid "Sort messages from top to bottom"
msgstr "संदेशों को ऊपर से नीचे तक क्रमबद्ध करें"
-#: chat.php:275 chat.php:2205
+#: index.php:286 index.php:2264 chat.php:286 chat.php:2264
msgid "Hide list of chatters"
msgstr "ज्यादा बाते करने वालों की सूची छुपाएं"
-#: chat.php:276 chat.php:1780 chat.php:1794
+#: index.php:287 index.php:1837 index.php:1851 chat.php:287 chat.php:1837
+#: chat.php:1851
msgid "Personal notes"
msgstr "व्यक्तिगत नोट्स"
-#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110
+#: index.php:288 index.php:1840 index.php:1854 index.php:2169 chat.php:288
+#: chat.php:1840 chat.php:1854 chat.php:2169
msgid "Public notes"
msgstr "सार्वजनिक नोट्स"
-#: chat.php:278
+#: index.php:289 chat.php:289
msgid "Apply kick filter on moderators"
msgstr "मॉडरेटर पर किक फ़िल्टर लागू करें"
-#: chat.php:279
+#: index.php:290 chat.php:290
msgid "Show who kicks people or purges all messages."
msgstr "दिखाएँ कि कौन लोगों को बाहर निकालता है, या सभी संदेशों को मिटा देता है।"
-#: chat.php:280
+#: index.php:291 chat.php:291
msgid "Hide reload post box button"
msgstr "रिलोड पोस्ट बॉक्स बटन छिपाएँ"
-#: chat.php:281
+#: index.php:292 chat.php:292
msgid "Hide reload messages button"
msgstr "संदेश रिलोड बटन छिपाएँ"
-#: chat.php:282
+#: index.php:293 chat.php:293
msgid "Hide profile button"
msgstr "प्रोफ़ाइल बटन छुपाएं"
-#: chat.php:283
+#: index.php:294 chat.php:294
msgid "Hide admin button"
msgstr "व्यवस्थापक बटन छिपाएँ"
-#: chat.php:284
+#: index.php:295 chat.php:295
msgid "Hide notes button"
msgstr "नोट्स बटन छिपाएँ"
-#: chat.php:285
+#: index.php:296 chat.php:296
msgid "Hide clone button"
msgstr "क्लोन बटन छिपाएँ"
-#: chat.php:286
+#: index.php:297 chat.php:297
msgid "Hide rearrange button"
msgstr "रिअरेंज बटन छिपाएँ"
-#: chat.php:287
+#: index.php:298 chat.php:298
msgid "Hide help button"
msgstr "सहायता बटन छिपाएँ"
-#: chat.php:288
+#: index.php:299 chat.php:299
msgid "Apply postbox delete button globally"
msgstr "ग्लोबल स्तर पर पोस्टबॉक्स डिलीट बटन लागू करें"
-#: chat.php:289
+#: index.php:300 chat.php:300
msgid "Allow enhancing functionality with JavaScript"
msgstr "जावास्क्रिप्ट के साथ कार्यक्षमता बढ़ाने की अनुमति दें"
-#: chat.php:292 chat.php:2170
+#: index.php:303 index.php:2229 chat.php:303 chat.php:2229
msgid "Background colour"
msgstr "पृष्ठभूमि का रंग"
-#: chat.php:293 chat.php:2167
+#: index.php:304 index.php:2226 chat.php:304 chat.php:2226
msgid "Font colour"
msgstr "फ़ॉन्ट रंग"
-#: chat.php:296
+#: index.php:307 chat.php:307
msgid "Entrance"
msgstr "प्रवेश"
-#: chat.php:297
+#: index.php:308 chat.php:308
msgid "Leaving"
msgstr "छोडे"
-#: chat.php:298
+#: index.php:309 chat.php:309
msgid "Member registered"
msgstr "सदस्य पंजीकृत"
-#: chat.php:299
+#: index.php:310 chat.php:310
msgid "Applicant registered"
msgstr "आवेदक पंजीकृत"
-#: chat.php:300
+#: index.php:311 chat.php:311
msgid "Kicked"
msgstr "बाहर निकाला"
-#: chat.php:301
+#: index.php:312 chat.php:312
msgid "Multiple kicked"
msgstr "एकाधिक बाहर निकाला"
-#: chat.php:302
+#: index.php:313 chat.php:313
msgid "All kicked"
msgstr "सबको बाहर निकाला"
-#: chat.php:303
+#: index.php:314 chat.php:314
msgid "Room cleaned"
msgstr "रूम साफ़ किया"
-#: chat.php:304
+#: index.php:315 chat.php:315
msgid "Message to all"
msgstr "सभी को संदेश"
-#: chat.php:305
+#: index.php:316 chat.php:316
msgid "Message to members only"
msgstr "केवल सदस्यों को संदेश"
-#: chat.php:306
+#: index.php:317 chat.php:317
msgid "Message to staff only"
msgstr "केवल स्टाफ के लिए संदेश"
-#: chat.php:307
+#: index.php:318 chat.php:318
msgid "Message to admins only"
msgstr "केवल व्यवस्थापकों के लिए संदेश"
-#: chat.php:308
+#: index.php:319 chat.php:319
msgid "Private message"
msgstr "निजी संदेश"
-#: chat.php:309
+#: index.php:320 chat.php:320
msgid "Attachement"
msgstr "अनुलग्न फाईल"
-#: chat.php:312
+#: index.php:323 chat.php:323
msgid "Member timeout (minutes)"
msgstr "सदस्य टाईमआउट (मिनट)"
-#: chat.php:313
+#: index.php:324 chat.php:324
msgid "Guest timeout (minutes)"
msgstr "अतिथि टाईमआउट (मिनट)"
-#: chat.php:314
+#: index.php:325 chat.php:325
msgid "Kick penalty (minutes)"
msgstr "किक पेनल्टी (मिनट)"
-#: chat.php:315
+#: index.php:326 chat.php:326
msgid "Waiting room time (seconds)"
msgstr "प्रतीक्षा का समय (सेकंड)"
-#: chat.php:316
+#: index.php:327 chat.php:327
+msgid "Logout delay (seconds)"
+msgstr ""
+
+#: index.php:328 chat.php:328
msgid "Captcha timeout (seconds)"
msgstr "कैप्चा टाइमआउट (सेकंड)"
-#: chat.php:317
+#: index.php:329 chat.php:329
msgid "Message timeout (minutes)"
msgstr "संदेश टाईमआउट (मिनट)"
-#: chat.php:318
+#: index.php:330 chat.php:330
msgid "Message limit (public)"
msgstr "संदेश सीमा (सार्वजनिक)"
-#: chat.php:319
+#: index.php:331 chat.php:331
msgid "Maximal message length"
msgstr "अधिकतम संदेश लंबाई"
-#: chat.php:320
+#: index.php:332 chat.php:332
msgid "Maximal nickname length"
msgstr "अधिकतम उपनाम लंबाई"
-#: chat.php:321
+#: index.php:333 chat.php:333
msgid "Minimal password length"
msgstr "न्यूनतम पासवर्ड लंबाई"
-#: chat.php:322
+#: index.php:334 chat.php:334
msgid "Default message reload time (seconds)"
msgstr "डिफ़ॉल्ट संदेश रिलोड समय (सेकंड)"
-#: chat.php:323
+#: index.php:335 chat.php:335
msgid "Number of notes revisions to keep"
msgstr "नोट्स रिविजन की संख्या"
-#: chat.php:324
+#: index.php:336 chat.php:336
msgid "Maximum upload size in KB"
msgstr "अधिकतम अपलोड आकार KB में"
-#: chat.php:325
+#: index.php:337 chat.php:337
msgid "Enable file uploads"
msgstr "फ़ाइल अपलोड सक्षम करें"
-#: chat.php:326
+#: index.php:338 chat.php:338
msgid "Lowest refresh rate"
msgstr "सबसे कम रिफ्रेश दर"
-#: chat.php:327
+#: index.php:339 chat.php:339
msgid "Highest refresh rate"
msgstr "उच्चतम रिफ्रेश दर"
-#: chat.php:330
+#: index.php:342 chat.php:342
msgid "Rules (html)"
msgstr "नियम (HTML)"
-#: chat.php:331
+#: index.php:343 chat.php:343
msgid "CSS Style"
msgstr "सी.एस.एस."
-#: chat.php:332
+#: index.php:344 chat.php:344
msgid "Chat disabled message (html)"
msgstr "चैट अक्षम संदेश (HTML)"
-#: chat.php:335
-msgid "Date formating"
-msgstr "दिनांक फोर्माटिंग"
+#: index.php:347 chat.php:347
+msgid ""
+"Date "
+"formating"
+msgstr ""
+"दिनांक "
+"फोर्माटिंग"
-#: chat.php:336
+#: index.php:348 chat.php:348
msgid "Characters used in Captcha"
msgstr "कैप्चा में प्रयुक्त अक्षर"
-#: chat.php:337
+#: index.php:349 chat.php:349
msgid "Custom redirection script"
msgstr "कस्टम पुनर्निर्देशन स्क्रिप्ट"
-#: chat.php:338
+#: index.php:350 chat.php:350
msgid "Chat name"
msgstr "चैट नाम"
-#: chat.php:339
+#: index.php:351 chat.php:351
msgid "Send mail using this address"
msgstr "इस पते से मेल भेजें"
-#: chat.php:340
+#: index.php:352 chat.php:352
msgid "Send mail to this address"
msgstr "इस पते पर मेल भेजें"
-#: chat.php:341
+#: index.php:353 chat.php:353
msgid "Nickname regex"
msgstr "उपनाम रेगेक्स"
-#: chat.php:342
+#: index.php:354 chat.php:354
msgid "Password regex"
msgstr "पासवर्ड रेगेक्स"
-#: chat.php:343
+#: index.php:355 chat.php:355
msgid "Link to external CSS file (on your own server)"
msgstr "बाहरी सीएसएस फ़ाइल से लिंक करें (अपने सर्वर पर)"
-#: chat.php:344
+#: index.php:356 chat.php:356
msgid "Meta description (best 50 - 160 characters for SEO)"
msgstr "मेटा विवरण (एस.ई.ओ. के लिए सर्वोत्तम 50 - 160 अक्षर)"
-#: chat.php:345
+#: index.php:357 chat.php:357
+msgid "Show this text when a user's logout is delayed"
+msgstr ""
+
+#: index.php:358 chat.php:358
msgid "Prepend this text to system messages"
msgstr "इस टेक्स्ट को सिस्टम संदेशों के साथ जोड़ें"
-#: chat.php:348 chat.php:728 chat.php:1225
+#: index.php:361 index.php:780 index.php:1282 chat.php:361 chat.php:780
+#: chat.php:1282
msgid "Change Guestaccess"
msgstr "गेस्ट एक्सेस बदलें"
-#: chat.php:349
+#: index.php:362 chat.php:362
msgid "Enable global Password"
msgstr "ग्लोबल पासवर्ड सक्षम करें"
-#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433
+#: index.php:363 index.php:810 index.php:2474 index.php:2492 chat.php:363
+#: chat.php:810 chat.php:2474 chat.php:2492
msgid "Global Password:"
msgstr "ग्लोबल पासवर्ड:"
-#: chat.php:351 chat.php:819
+#: index.php:364 index.php:871 chat.php:364 chat.php:871
msgid "Captcha"
msgstr "कॅप्चा"
-#: chat.php:352 chat.php:775 chat.php:835
+#: index.php:365 index.php:827 index.php:887 chat.php:365 chat.php:827
+#: chat.php:887
msgid "Only for guests"
msgstr "केवल मेहमानों के लिए"
-#: chat.php:353 chat.php:1220
+#: index.php:366 index.php:1277 chat.php:366 chat.php:1277
msgid "Topic"
msgstr "विषय"
-#: chat.php:354 chat.php:781
+#: index.php:367 index.php:833 chat.php:367 chat.php:833
msgid "Let guests register themselves"
msgstr "मेहमानों को अपना पंजीकरण कराने दें"
-#: chat.php:355 chat.php:862
+#: index.php:368 index.php:919 chat.php:368 chat.php:919
msgid "Default time zone"
msgstr "डिफ़ॉल्ट समय क्षेत्र"
-#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259
+#: index.php:581 index.php:1157 index.php:4158 index.php:4341 chat.php:581
+#: chat.php:1157 chat.php:4158 chat.php:4341
msgid "Initial Setup"
msgstr "प्रारंभिक व्यवस्था"
-#: chat.php:588
+#: index.php:601 chat.php:601
+#, php-format
msgid "Redirecting to: %s"
msgstr "इस पर पुनर्निर्देशित किया जा रहा है: %s"
-#: chat.php:595
-msgid "Dangerous non-http link requested, copy paste this link if you are really sure: %s"
-msgstr "असुरक्षित गैर-http लिंक का अनुरोध किया गया है, यदि आप वास्तव में आश्वस्त हैं तो इस लिंक को कॉपी पेस्ट करें: %s"
+#: index.php:608 chat.php:608
+#, php-format
+msgid ""
+"Dangerous non-http link requested, copy paste this link if you are really "
+"sure: %s"
+msgstr ""
+"असुरक्षित गैर-http लिंक का अनुरोध किया गया है, यदि आप वास्तव में आश्वस्त हैं तो इस लिंक को "
+"कॉपी पेस्ट करें: %s"
-#: chat.php:597
+#: index.php:610 chat.php:610
+#, php-format
msgid "Non-http link requested: %s"
msgstr "गैर-http लिंक का अनुरोध: %s"
-#: chat.php:599
+#: index.php:612 chat.php:612
+#, php-format
msgid "If it's not working, try this one: %s"
msgstr "यदि यह काम नहीं कर रहा है, तो इसे आज़माएँ: %s"
-#: chat.php:609
+#: index.php:622 chat.php:622
msgid "Access denied"
msgstr "पहुंच अस्वीकृत"
-#: chat.php:609
+#: index.php:622 chat.php:622
+#, php-format
msgid "You are logged in as %s and don't have access to this section."
msgstr "आप %s के रूप में लॉग इन हैं और इस सेक्शन तक आपकी पहुंच नहीं है।"
-#: chat.php:611 chat.php:915 chat.php:1211 chat.php:1393
+#: index.php:624 index.php:972 index.php:1268 index.php:1450 chat.php:624
+#: chat.php:972 chat.php:1268 chat.php:1450
msgid "Logout"
msgstr "लॉग आउट"
-#: chat.php:636
+#: index.php:649 chat.php:649
msgid "Copy:"
msgstr "कॉपी:"
-#: chat.php:724
+#: index.php:776 chat.php:776
msgid "Chat Setup"
msgstr "चैट सेटअप"
-#: chat.php:734 chat.php:1233
+#: index.php:786 index.php:1290 chat.php:786 chat.php:1290
msgid "Allow"
msgstr "अनुमति दें"
-#: chat.php:739 chat.php:1238
+#: index.php:791 index.php:1295 chat.php:791 chat.php:1295
msgid "Allow with waitingroom"
msgstr "प्रतीक्षालय के साथ अनुमति दें"
-#: chat.php:744 chat.php:1243
+#: index.php:796 index.php:1300 chat.php:796 chat.php:1300
msgid "Require moderator approval"
msgstr "मॉडरेटर के अनुमती की आवश्यकता है"
-#: chat.php:749 chat.php:1248
+#: index.php:801 index.php:1305 chat.php:801 chat.php:1305
msgid "Only members"
msgstr "केवल सदस्य"
-#: chat.php:754 chat.php:1251
+#: index.php:806 index.php:1308 chat.php:806 chat.php:1308
msgid "Disable chat"
msgstr "चैट अक्षम करें"
-#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229
+#: index.php:817 index.php:839 index.php:894 index.php:953 index.php:2288
+#: chat.php:817 chat.php:839 chat.php:894 chat.php:953 chat.php:2288
msgid "Disabled"
msgstr "अक्षम"
-#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219
+#: index.php:822 index.php:882 index.php:958 index.php:2278 chat.php:822
+#: chat.php:882 chat.php:958 chat.php:2278
msgid "Enabled"
msgstr "सक्रिय"
-#: chat.php:792
+#: index.php:844 chat.php:844
msgid "As applicant"
msgstr "आवेदक के रूप में"
-#: chat.php:797
+#: index.php:849 chat.php:849
msgid "As member"
msgstr "सदस्य के रूप में"
-#: chat.php:800
+#: index.php:852 chat.php:852
msgid "System messages"
msgstr "सिस्टम संदेश"
-#: chat.php:822 chat.php:1053
-msgid "The %s extension of PHP is required for this feature. Please install it first."
+#: index.php:874 index.php:1110 chat.php:874 chat.php:1110
+#, php-format
+msgid ""
+"The %s extension of PHP is required for this feature. Please install it "
+"first."
msgstr "इस सुविधा के लिए PHP का %s एक्सटेंशन आवश्यक है। कृपया पहले इसे इंस्टॉल करें."
-#: chat.php:847
+#: index.php:899 chat.php:899
msgid "Simple"
msgstr "सरल"
-#: chat.php:852
+#: index.php:904 chat.php:904
msgid "Moderate"
msgstr "मध्यम"
-#: chat.php:857
+#: index.php:909 chat.php:909
+msgid "Hard"
+msgstr ""
+
+#: index.php:914 chat.php:914
msgid "Extreme"
msgstr "ज्यादा"
-#: chat.php:906 chat.php:1548 chat.php:1610
+#: index.php:963 index.php:1605 index.php:1667 chat.php:963 chat.php:1605
+#: chat.php:1667
msgid "Apply"
msgstr "आवेदन करना"
-#: chat.php:910 chat.php:1050
+#: index.php:967 index.php:1107 chat.php:967 chat.php:1107
msgid "Backup and restore"
msgstr "बैकअप और पुनर्स्थापना"
-#: chat.php:912
+#: index.php:969 chat.php:969
msgid "Destroy chat"
msgstr "चैट नष्ट करें"
-#: chat.php:1057 chat.php:1066
+#: index.php:1114 index.php:1123 chat.php:1114 chat.php:1123
msgid "Settings"
msgstr "सेटिग्ज"
-#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575
-#: chat.php:1622
+#: index.php:1115 index.php:1124 index.php:1269 index.php:1595 index.php:1632
+#: index.php:1679 chat.php:1115 chat.php:1124 chat.php:1269 chat.php:1595
+#: chat.php:1632 chat.php:1679
msgid "Filter"
msgstr "फ़िल्टर"
-#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538
+#: index.php:1116 index.php:1125 index.php:1325 index.php:2600 chat.php:1116
+#: chat.php:1125 chat.php:1325 chat.php:2600
msgid "Members"
msgstr "सदस्य"
-#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322
+#: index.php:1117 index.php:1126 index.php:2373 index.php:2381 chat.php:1117
+#: chat.php:1126 chat.php:2373 chat.php:2381
msgid "Notes"
msgstr "नोटस"
-#: chat.php:1061
+#: index.php:1118 chat.php:1118
msgid "Backup"
msgstr "बैकअप"
-#: chat.php:1070
+#: index.php:1127 chat.php:1127
msgid "Restore"
msgstr "रिस्टोर"
-#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260
+#: index.php:1131 index.php:1174 index.php:1212 index.php:1242 index.php:4342
+#: chat.php:1131 chat.php:1174 chat.php:1212 chat.php:1242 chat.php:4342
msgid "Go to the Setup-Page"
msgstr "सेटअप-पेज पर जाएँ"
-#: chat.php:1082 chat.php:1091 chat.php:1949
+#: index.php:1139 index.php:1148 index.php:2006 chat.php:1139 chat.php:1148
+#: chat.php:2006
msgid "Are you sure?"
msgstr "क्या आपको यकीन है?"
-#: chat.php:1083 chat.php:1092 chat.php:1956
+#: index.php:1140 index.php:1149 index.php:2013 chat.php:1140 chat.php:1149
+#: chat.php:2013
msgid "Yes"
msgstr "हाँ"
-#: chat.php:1084 chat.php:1093 chat.php:1963
+#: index.php:1141 index.php:1150 index.php:2020 chat.php:1141 chat.php:1150
+#: chat.php:2020
msgid "No"
msgstr "नहीं"
-#: chat.php:1101 chat.php:4259
+#: index.php:1158 index.php:4341 chat.php:1158 chat.php:4341
msgid "Superadmin Login"
msgstr "सुपरएडमिन लॉगिन"
-#: chat.php:1102
+#: index.php:1159 chat.php:1159
msgid "Superadmin Nickname:"
msgstr "सुपरएडमिन उपनाम:"
-#: chat.php:1103
+#: index.php:1160 chat.php:1160
msgid "Superadmin Password:"
msgstr "सुपरएडमिन पासवर्ड:"
-#: chat.php:1104
+#: index.php:1161 chat.php:1161
msgid "Confirm Password:"
msgstr "पासवर्ड की पुष्टि कीजिये:"
-#: chat.php:1105
+#: index.php:1162 chat.php:1162
msgid "Initialise Chat"
msgstr "चैट आरंभ करें"
-#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439
+#: index.php:1163 index.php:1187 index.php:1213 index.php:2336 index.php:2498
+#: chat.php:1163 chat.php:1187 chat.php:1213 chat.php:2336 chat.php:2498
msgid "Change language:"
msgstr "भाषा बदलें:"
-#: chat.php:1117
+#: index.php:1174 chat.php:1174
msgid "Database successfully updated!"
msgstr "डेटाबेस सफलतापूर्वक अपडेट किया गया!"
-#: chat.php:1125 chat.php:1326 chat.php:2407
+#: index.php:1182 index.php:1383 index.php:2466 chat.php:1182 chat.php:1383
+#: chat.php:2466
msgid "Nickname:"
msgstr "उपनाम:"
-#: chat.php:1126 chat.php:1327 chat.php:2408
+#: index.php:1183 index.php:1384 index.php:2467 chat.php:1183 chat.php:1384
+#: chat.php:2467
msgid "Password:"
msgstr "पासवर्ड:"
-#: chat.php:1128
+#: index.php:1185 chat.php:1185
msgid "Login"
msgstr "लॉग इन करें"
-#: chat.php:1129
+#: index.php:1186 chat.php:1186
msgid "Forgot login?"
msgstr "लॉगिन भूल गए?"
-#: chat.php:1142 chat.php:1306
+#: index.php:1199 index.php:1363 chat.php:1199 chat.php:1363
msgid "Reset password"
msgstr "पासवर्ड रीसेट"
-#: chat.php:1150
-msgid "Successfully reset password for username %s. Please remove the password reset define from the script again."
-msgstr "उपयोक्तानाम %s के लिए पासवर्ड सफलतापूर्वक रीसेट किया गया। कृपया स्क्रिप्ट से पासवर्ड रीसेट को दोबारा हटा दें।"
+#: index.php:1207 chat.php:1207
+#, php-format
+msgid ""
+"Successfully reset password for username %s. Please remove the password "
+"reset define from the script again."
+msgstr ""
+"उपयोक्तानाम %s के लिए पासवर्ड सफलतापूर्वक रीसेट किया गया। कृपया स्क्रिप्ट से पासवर्ड "
+"रीसेट को दोबारा हटा दें।"
-#: chat.php:1153
-msgid "Please modify the script and put the following at the bottom of it (change the password). Then refresh this page: define('RESET_SUPERADMIN_PASSWORD', 'changeme');"
-msgstr "कृपया स्क्रिप्ट को मोडीफाय करें और उसके नीचे निम्नलिखित डालें (पासवर्ड बदलें)। फिर इस पृष्ठ को रिफ्रेश करें: define('RESET_SUPERADMIN_PASSWORD', 'changeme');"
+#: index.php:1210 chat.php:1210
+msgid ""
+"Please modify the script and put the following at the bottom of it (change "
+"the password). Then refresh this page: define('RESET_SUPERADMIN_PASSWORD', "
+"'changeme');"
+msgstr ""
+"कृपया स्क्रिप्ट को मोडीफाय करें और उसके नीचे निम्नलिखित डालें (पासवर्ड बदलें)। फिर इस पृष्ठ "
+"को रिफ्रेश करें: define('RESET_SUPERADMIN_PASSWORD', 'changeme');"
-#: chat.php:1169 chat.php:1193 chat.php:1258 chat.php:1270 chat.php:1294
-#: chat.php:1308 chat.php:1316 chat.php:2145 chat.php:2153
+#: index.php:1226 index.php:1250 index.php:1315 index.php:1327 index.php:1351
+#: index.php:1365 index.php:1373 index.php:2204 index.php:2212 chat.php:1226
+#: chat.php:1250 chat.php:1315 chat.php:1327 chat.php:1351 chat.php:1365
+#: chat.php:1373 chat.php:2204 chat.php:2212
msgid "(choose)"
msgstr "(चुनना)"
-#: chat.php:1170
+#: index.php:1227 chat.php:1227
msgid "All guests"
msgstr "सभी मेहमान"
-#: chat.php:1182
+#: index.php:1239 chat.php:1239
msgid "Administrative functions"
msgstr "प्रशासनिक कार्य"
-#: chat.php:1188
+#: index.php:1245 chat.php:1245
msgid "Clean messages"
msgstr "संदेश हटा दे"
-#: chat.php:1191
+#: index.php:1248 chat.php:1248
msgid "Whole room"
msgstr "पूरी रूम"
-#: chat.php:1192
+#: index.php:1249 chat.php:1249
msgid "Selection"
msgstr "चयन"
-#: chat.php:1193
+#: index.php:1250 chat.php:1250
msgid "Following nickname:"
msgstr "निम्नलिखित उपनाम:"
-#: chat.php:1200
+#: index.php:1257 chat.php:1257
msgid "Clean"
msgstr "साफ"
-#: chat.php:1202
+#: index.php:1259 chat.php:1259
+#, php-format
msgid "Kick Chatter (%d minutes)"
msgstr "ज्यादा बाते करणे वाले को बाहर निकाले (%d मिनट)"
-#: chat.php:1204
+#: index.php:1261 chat.php:1261
msgid "Kickmessage:"
msgstr "किकमैसेज:"
-#: chat.php:1205
+#: index.php:1262 chat.php:1262
msgid "Purge messages"
msgstr "संदेशों को शुद्ध करें"
-#: chat.php:1206 chat.php:1388 chat.php:1546 chat.php:1580 chat.php:1591
-#: chat.php:2042
+#: index.php:1263 index.php:1445 index.php:1603 index.php:1637 index.php:1648
+#: index.php:2101 chat.php:1263 chat.php:1445 chat.php:1603 chat.php:1637
+#: chat.php:1648 chat.php:2101
msgid "Kick"
msgstr "बाहर निकाले"
-#: chat.php:1208
+#: index.php:1265 chat.php:1265
msgid "Logout inactive Chatter"
msgstr "लॉगआउट निष्क्रिय चैटर"
-#: chat.php:1212
+#: index.php:1269 chat.php:1269
msgid "View active sessions"
msgstr "सक्रिय सेशन देखें"
-#: chat.php:1212 chat.php:1603
+#: index.php:1269 index.php:1660 chat.php:1269 chat.php:1660
msgid "Linkfilter"
msgstr "लिंकफ़िल्टर"
-#: chat.php:1217
+#: index.php:1274 chat.php:1274
msgid "View"
msgstr "विव्ह"
-#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582
-#: chat.php:1626
+#: index.php:1280 index.php:1310 index.php:1361 index.php:1369 index.php:1639
+#: index.php:1683 chat.php:1280 chat.php:1310 chat.php:1361 chat.php:1369
+#: chat.php:1639 chat.php:1683
msgid "Change"
msgstr "परिवर्तन"
-#: chat.php:1256
+#: index.php:1313 chat.php:1313
msgid "Register applicant"
msgstr "आवेदक का पंजीकरण करें"
-#: chat.php:1264 chat.php:1322 chat.php:1328
+#: index.php:1321 index.php:1379 index.php:1385 chat.php:1321 chat.php:1379
+#: chat.php:1385
msgid "Register"
msgstr "पंजीकरण करे"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Delete from database"
msgstr "डेटाबेस से हटाएँ"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Deny access (!)"
msgstr "पहुँच को अस्वीकार (!)"
-#: chat.php:1296
+#: index.php:1353 chat.php:1353
msgid "Set to applicant (SG)"
msgstr "आवेदक पर सेट करें (SG)"
-#: chat.php:1298
+#: index.php:1355 chat.php:1355
msgid "Set to regular member"
msgstr "नियमित सदस्य पर सेट करें"
-#: chat.php:1299
+#: index.php:1356 chat.php:1356
msgid "Set to moderator (M)"
msgstr "मॉडरेटर पर सेट करें (M)"
-#: chat.php:1300
+#: index.php:1357 chat.php:1357
msgid "Set to supermod (SM)"
msgstr "सुपरमॉड पर सेट करें (SM)"
-#: chat.php:1302
+#: index.php:1359 chat.php:1359
msgid "Set to admin (A)"
msgstr "व्यवस्थापक पर सेट करें (A)"
-#: chat.php:1314
+#: index.php:1371 chat.php:1371
msgid "Register Guest"
msgstr "अतिथि पंजीकृत करें"
-#: chat.php:1324
+#: index.php:1381 chat.php:1381
msgid "Register new Member"
msgstr "नये सदस्य का पंजीकरण करें"
-#: chat.php:1332 chat.php:1408 chat.php:1595 chat.php:1636 chat.php:1710
-#: chat.php:1924
+#: index.php:1389 index.php:1465 index.php:1652 index.php:1693 index.php:1767
+#: index.php:1981 chat.php:1389 chat.php:1465 chat.php:1652 chat.php:1693
+#: chat.php:1767 chat.php:1981
msgid "Reload"
msgstr "पुनः लोड करें"
-#: chat.php:1345
+#: index.php:1402 chat.php:1402
msgid "Active Sessions"
msgstr "सक्रिय सेशन"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "Nickname"
msgstr "उपनाम"
-#: chat.php:1346
+#: index.php:1403 chat.php:1403
msgid "Timeout in"
msgstr "टाईमआउट इन"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "User-Agent"
msgstr "उपयोगकर्ता एजेंट"
-#: chat.php:1350
+#: index.php:1407 chat.php:1407
msgid "IP-Address"
msgstr "आईपी अड्रेस"
-#: chat.php:1351
+#: index.php:1408 chat.php:1408
msgid "Actions"
msgstr "कार्रवाई"
-#: chat.php:1393
+#: index.php:1450 chat.php:1450
msgid "Unban"
msgstr "अप्रतिबंधित करें"
-#: chat.php:1416
+#: index.php:1473 chat.php:1473
msgid "Incorrect regular expression!"
msgstr "ग़लत रेगुलर एक्सप्रेशन!"
-#: chat.php:1416 chat.php:1424
+#: index.php:1473 index.php:1481 chat.php:1473 chat.php:1481
+#, php-format
msgid "Your match was as follows: %s"
msgstr "आपका मिलान इस प्रकार था: %s"
-#: chat.php:1424
-msgid "Your match was too long. You can use max. 255 characters. Try splitting it up."
+#: index.php:1481 chat.php:1481
+msgid ""
+"Your match was too long. You can use max. 255 characters. Try splitting it "
+"up."
msgstr ""
-"आपका मैच बहुत लंबा था. आप अधिकतम 255 अक्षर उपयोग कर सकते हैं. इसे विभाजित "
-"करने का प्रयास करें।"
+"आपका मैच बहुत लंबा था. आप अधिकतम 255 अक्षर उपयोग कर सकते हैं. इसे विभाजित करने का "
+"प्रयास करें।"
-#: chat.php:1541 chat.php:1606
+#: index.php:1598 index.php:1663 chat.php:1598 chat.php:1663
msgid "Filter ID:"
msgstr "फ़िल्टर आईडी:"
-#: chat.php:1542 chat.php:1607
+#: index.php:1599 index.php:1664 chat.php:1599 chat.php:1664
msgid "Match"
msgstr "मिलान"
-#: chat.php:1543 chat.php:1608
+#: index.php:1600 index.php:1665 chat.php:1600 chat.php:1665
msgid "Replace"
msgstr "रिप्लेस करें"
-#: chat.php:1544 chat.php:1578 chat.php:1589
+#: index.php:1601 index.php:1635 index.php:1646 chat.php:1601 chat.php:1635
+#: chat.php:1646
msgid "Allow in PM"
msgstr "पीएम में अनुमति दें"
-#: chat.php:1545 chat.php:1579 chat.php:1590 chat.php:1609 chat.php:1625
-#: chat.php:1633
+#: index.php:1602 index.php:1636 index.php:1647 index.php:1666 index.php:1682
+#: index.php:1690 chat.php:1602 chat.php:1636 chat.php:1647 chat.php:1666
+#: chat.php:1682 chat.php:1690
msgid "Regex"
msgstr "regex"
-#: chat.php:1547 chat.php:1581 chat.php:1592
+#: index.php:1604 index.php:1638 index.php:1649 chat.php:1604 chat.php:1638
+#: chat.php:1649
msgid "Case sensitive"
msgstr "केस सेन्सेटिव्ह"
-#: chat.php:1586 chat.php:1630
+#: index.php:1643 index.php:1687 chat.php:1643 chat.php:1687
msgid "New filter:"
msgstr "नया फ़िल्टर:"
-#: chat.php:1593 chat.php:1634
+#: index.php:1650 index.php:1691 chat.php:1650 chat.php:1691
msgid "Add"
msgstr "जोडे"
-#: chat.php:1691
-msgid "This chat uses frames. Please enable frames in your browser or use a suitable one!"
-msgstr "यह चैट frames का उपयोग करती है. कृपया अपने ब्राउज़र में फ़्रेम सक्षम करें या उपयुक्त ब्राउज़र का उपयोग करें!"
+#: index.php:1748 chat.php:1748
+msgid ""
+"This chat uses frames. Please enable frames in your browser or use a "
+"suitable one!"
+msgstr ""
+"यह चैट frames का उपयोग करती है. कृपया अपने ब्राउज़र में फ़्रेम सक्षम करें या उपयुक्त "
+"ब्राउज़र का उपयोग करें!"
-#: chat.php:1691 chat.php:2370 chat.php:2457
+#: index.php:1748 index.php:2429 index.php:2516 chat.php:1748 chat.php:2429
+#: chat.php:2516
msgid "Back to the login page."
msgstr "लॉगिन पेज पर वापस जाएँ।"
-#: chat.php:1709
+#: index.php:1766 chat.php:1766
msgid "Bottom"
msgstr "नीचे"
-#: chat.php:1710
+#: index.php:1767 chat.php:1767
msgid "Manual refresh required"
msgstr "मैन्युअल रिफ्रेश आवश्यक है"
-#: chat.php:1726
+#: index.php:1783 chat.php:1783
msgid "Top"
msgstr "उपर"
-#: chat.php:1734 chat.php:1940 chat.php:1942
+#: index.php:1791 index.php:1997 index.php:1999 chat.php:1791 chat.php:1997
+#: chat.php:1999
msgid "Delete selected messages"
msgstr "चयनित संदेश हटाएँ"
-#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281
+#: index.php:1818 index.php:1945 index.php:2160 index.php:2340 chat.php:1818
+#: chat.php:1945 chat.php:2160 chat.php:2340
msgid "Back to the chat."
msgstr "चैट पर वापस जाएँ।"
-#: chat.php:1774 chat.php:1791
+#: index.php:1831 index.php:1848 chat.php:1831 chat.php:1848
msgid "Admin notes"
msgstr "व्यवस्थापक नोट"
-#: chat.php:1777 chat.php:1788
+#: index.php:1834 index.php:1845 chat.php:1834 chat.php:1845
msgid "Staff notes"
msgstr "स्टाफ नोट्स"
-#: chat.php:1811
+#: index.php:1868 chat.php:1868
msgid "Notes saved!"
msgstr "नोट सहेजे गए!"
-#: chat.php:1835 chat.php:2122
+#: index.php:1892 index.php:2181 chat.php:1892 chat.php:2181
+#, php-format
msgid "Last edited by %1$s at %2$s"
msgstr "अंतिम बार %1$s द्वारा %2$s पर संपादित किया गया"
-#: chat.php:1848
+#: index.php:1905 chat.php:1905
msgid "Save notes"
msgstr "नोट्स सहेजें"
-#: chat.php:1850
+#: index.php:1907 chat.php:1907
msgid "Revisions:"
msgstr "रिव्हीजन:"
-#: chat.php:1853
+#: index.php:1910 chat.php:1910
msgid "Older"
msgstr "पुराने"
-#: chat.php:1857
+#: index.php:1914 chat.php:1914
msgid "Newer"
msgstr "नये"
-#: chat.php:1868 chat.php:1914
+#: index.php:1925 index.php:1971 chat.php:1925 chat.php:1971
msgid "Waiting room"
msgstr "प्रतीक्षालय"
-#: chat.php:1880
+#: index.php:1937 chat.php:1937
msgid "Allow checked"
msgstr "अनुमति की जाँच की गई"
-#: chat.php:1881
+#: index.php:1938 chat.php:1938
msgid "Allow all"
msgstr "सभी को अनुमति दें"
-#: chat.php:1882
+#: index.php:1939 chat.php:1939
msgid "Deny checked"
msgstr "चयनित को इनकार करे"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Deny all"
msgstr "सभी को नकारें"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Send message to denied:"
msgstr "अस्वीकृत को संदेश भेजें:"
-#: chat.php:1884
+#: index.php:1941 chat.php:1941
msgid "Submit"
msgstr "सबमिट"
-#: chat.php:1886
+#: index.php:1943 chat.php:1943
msgid "No more entry requests to approve."
msgstr "अनुमोदन के लिए कोई और प्रविष्टि अनुरोध नहीं।"
-#: chat.php:1916
-msgid "Welcome %1$s, your login has been delayed, you can access the chat in %2$d seconds."
-msgstr "आपका स्वागत है %1$s, आपके लॉगिन में देरी हो गई है, आप %2$d सेकंड में चैट तक पहुंच सकते हैं।"
+#: index.php:1973 chat.php:1973
+#, php-format
+msgid ""
+"Welcome %1$s, your login has been delayed, you can access the chat in %2$d "
+"seconds."
+msgstr ""
+"आपका स्वागत है %1$s, आपके लॉगिन में देरी हो गई है, आप %2$d सेकंड में चैट तक पहुंच सकते हैं।"
-#: chat.php:1918
-msgid "Welcome %1$s, your login has been delayed, you can access the chat as soon, as a moderator lets you in."
-msgstr "आपका स्वागत है %1$s, आपके लॉगिन में देरी हो गई है, जैसे ही मॉडरेटर आपको अंदर आने देगा आप चैट तक पहुंच सकते हैं।"
+#: index.php:1975 chat.php:1975
+#, php-format
+msgid ""
+"Welcome %1$s, your login has been delayed, you can access the chat as soon, "
+"as a moderator lets you in."
+msgstr ""
+"आपका स्वागत है %1$s, आपके लॉगिन में देरी हो गई है, जैसे ही मॉडरेटर आपको अंदर आने देगा आप "
+"चैट तक पहुंच सकते हैं।"
-#: chat.php:1921
-msgid "If this page doesn't refresh every %d seconds, use the button below to reload it manually!"
-msgstr "यदि यह पृष्ठ प्रत्येक %d सेकंड में ताज़ा नहीं होता है, तो इसे मैन्युअल रूप से पुनः लोड करने के लिए नीचे दिए गए बटन का उपयोग करें!"
+#: index.php:1978 chat.php:1978
+#, php-format
+msgid ""
+"If this page doesn't refresh every %d seconds, use the button below to "
+"reload it manually!"
+msgstr ""
+"यदि यह पृष्ठ प्रत्येक %d सेकंड में ताज़ा नहीं होता है, तो इसे मैन्युअल रूप से पुनः लोड करने के "
+"लिए नीचे दिए गए बटन का उपयोग करें!"
-#: chat.php:1926 chat.php:2339
+#: index.php:1983 index.php:2398 chat.php:1983 chat.php:2398
msgid "Exit Chat"
msgstr "चैट से बाहर निकलें"
-#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430
+#: index.php:1986 index.php:2133 index.php:2144 index.php:2489 chat.php:1986
+#: chat.php:2133 chat.php:2144 chat.php:2489
msgid "Rules"
msgstr "नियम"
-#: chat.php:1985
+#: index.php:2042 chat.php:2042
msgid "Send to"
msgstr "इनको भेजे"
-#: chat.php:1990
+#: index.php:2047 chat.php:2047
msgid "All chatters"
msgstr "सभी ज्यादा बाते करणे वाले"
-#: chat.php:1996
+#: index.php:2053 chat.php:2053
msgid "Members only"
msgstr "केवल सदस्य"
-#: chat.php:2003
+#: index.php:2060 chat.php:2060
msgid "Staff only"
msgstr "केवल स्टाफ"
-#: chat.php:2010
+#: index.php:2067 chat.php:2067
msgid "Admin only"
msgstr "केवल व्यवस्थापक"
-#: chat.php:2019
+#: index.php:2076 chat.php:2076
msgid "(offline)"
msgstr "(ऑफ़लाइन)"
-#: chat.php:2043
+#: index.php:2078 chat.php:2078
+msgid "(logging out)"
+msgstr ""
+
+#: index.php:2102 chat.php:2102
msgid "Also purge messages"
msgstr "संदेशों को भी निकाल दे"
-#: chat.php:2050
+#: index.php:2109 chat.php:2109
msgid "Delete last message"
msgstr "अंतिम संदेश हटाएँ"
-#: chat.php:2055
+#: index.php:2114 chat.php:2114
msgid "Delete all messages"
msgstr "सभी संदेश हटाएँ"
-#: chat.php:2057
+#: index.php:2116 chat.php:2116
msgid "Switch to single-line"
msgstr "सिंगल-लाईन पर स्विच करें"
-#: chat.php:2059
+#: index.php:2118 chat.php:2118
msgid "Switch to multi-line"
msgstr "मल्टी-लाइन पर स्विच करें"
-#: chat.php:2070
+#: index.php:2129 chat.php:2129
+#, php-format
msgid "Welcome %s!"
msgstr "%s आपका स्वागत हैं!"
-#: chat.php:2071
-msgid "If this frame does not reload in %d seconds, you'll have to enable automatic redirection (meta refresh) in your browser. Also make sure no web filter, local proxy tool or browser plugin is preventing automatic refreshing! This could be for example \"Polipo\", \"NoScript\", etc. As a workaround (or in case of server/proxy reload errors) you can always use the buttons at the bottom to refresh manually."
-msgstr "यदि यह फ़्रेम %d सेकंड में पुनः लोड नहीं होता है, तो आपको अपने ब्राउज़र में स्वचालित पुनर्निर्देशन (मेटा रिफ्रेश) सक्षम करना होगा। यह भी सुनिश्चित करें कि कोई वेब फ़िल्टर, स्थानीय प्रॉक्सी टूल या ब्राउज़र प्लगइन स्वचालित रीफ़्रेशिंग को नहीं रोक रहा है! यह उदाहरण के लिए \"पोलिपो\", \"नोस्क्रिप्ट\", आदि हो सकता है। एक समाधान के रूप में (या सर्वर/प्रॉक्सी पुनः लोड त्रुटियों के मामले में) आप मैन्युअल रूप से रीफ्रेश करने के लिए हमेशा नीचे दिए गए बटन का उपयोग कर सकते हैं।"
+#: index.php:2130 chat.php:2130
+#, php-format
+msgid ""
+"If this frame does not reload in %d seconds, you'll have to enable automatic "
+"redirection (meta refresh) in your browser. Also make sure no web filter, "
+"local proxy tool or browser plugin is preventing automatic refreshing! This "
+"could be for example \"Polipo\", \"NoScript\", etc. As a workaround (or "
+"in case of server/proxy reload errors) you can always use the buttons at the "
+"bottom to refresh manually."
+msgstr ""
+"यदि यह फ़्रेम %d सेकंड में पुनः लोड नहीं होता है, तो आपको अपने ब्राउज़र में स्वचालित "
+"पुनर्निर्देशन (मेटा रिफ्रेश) सक्षम करना होगा। यह भी सुनिश्चित करें कि कोई वेब फ़िल्टर, "
+"स्थानीय प्रॉक्सी टूल या ब्राउज़र प्लगइन स्वचालित रीफ़्रेशिंग को नहीं रोक रहा है! यह उदाहरण "
+"के लिए \"पोलिपो\", \"नोस्क्रिप्ट\", आदि हो सकता है। एक समाधान के रूप में (या सर्वर/"
+"प्रॉक्सी पुनः लोड त्रुटियों के मामले में) आप मैन्युअल रूप से रीफ्रेश करने के लिए हमेशा नीचे दिए "
+"गए बटन का उपयोग कर सकते हैं।"
-#: chat.php:2087
+#: index.php:2146 chat.php:2146
msgid "Help"
msgstr "मदद"
-#: chat.php:2088
-msgid "All functions should be pretty much self-explaining, just use the buttons. In your profile you can adjust the refresh rate and font colour, as well as ignore users. Note: This is a chat, so if you don't keep talking, you will be automatically logged out after a while."
+#: index.php:2147 chat.php:2147
+msgid ""
+"All functions should be pretty much self-explaining, just use the buttons. "
+"In your profile you can adjust the refresh rate and font colour, as well as "
+"ignore users. Note: This is a chat, so if you don't keep talking, "
+"you will be automatically logged out after a while."
msgstr ""
-"सभी फ़ंक्शन काफी हद तक स्व-व्याख्यात्मक होने चाहिए, बस बटनों का उपयोग करें। "
-"अपनी प्रोफ़ाइल में आप रिफ्रेश दर और फ़ॉन्ट रंग समायोजित कर सकते हैं, साथ ही "
-"उपयोगकर्ताओं को अनदेखा कर सकते हैं। नोट: यह एक चैट है, इसलिए यदि "
-"आप बात नहीं करते हैं, तो आप थोड़ी देर बाद अपनेआप लॉग आउट हो जाएंगे।"
+"सभी फ़ंक्शन काफी हद तक स्व-व्याख्यात्मक होने चाहिए, बस बटनों का उपयोग करें। अपनी "
+"प्रोफ़ाइल में आप रिफ्रेश दर और फ़ॉन्ट रंग समायोजित कर सकते हैं, साथ ही उपयोगकर्ताओं को "
+"अनदेखा कर सकते हैं। नोट: यह एक चैट है, इसलिए यदि आप बात नहीं करते हैं, तो आप "
+"थोड़ी देर बाद अपनेआप लॉग आउट हो जाएंगे।"
-#: chat.php:2090
-msgid "If you want to embed an image in your post, simply put [img] in front of your image URL. Example: [img]http://example.com/images/file.jpg will embed the image in your post."
-msgstr "यदि आप अपनी पोस्ट में कोई फोटो एम्बेड करना चाहते हैं, तो बस अपनी फोटो URL के सामने [img] लगाएं। उदाहरण: [img]http://example.com/images/file.jpg आपकी पोस्ट में फोटो एम्बेड करेगा।"
+#: index.php:2149 chat.php:2149
+msgid ""
+"If you want to embed an image in your post, simply put [img] in front of "
+"your image URL. Example: [img]http://example.com/images/file.jpg will embed "
+"the image in your post."
+msgstr ""
+"यदि आप अपनी पोस्ट में कोई फोटो एम्बेड करना चाहते हैं, तो बस अपनी फोटो URL के सामने "
+"[img] लगाएं। उदाहरण: [img]http://example.com/images/file.jpg आपकी पोस्ट में फोटो "
+"एम्बेड करेगा।"
-#: chat.php:2093
-msgid "Members: You'll have some more options in your profile. You can adjust your font face, change your password anytime and of course you can delete your account."
-msgstr "सदस्य: आपकी प्रोफ़ाइल में कुछ और विकल्प होंगे। आप अपना फ़ॉन्ट फेस बदल सकते हैं, अपना पासवर्ड कभी भी बदल सकते हैं और निश्चित रूप से आप अपना खाता हटा सकते हैं।"
+#: index.php:2152 chat.php:2152
+msgid ""
+"Members: You'll have some more options in your profile. You can adjust your "
+"font face, change your password anytime and of course you can delete your "
+"account."
+msgstr ""
+"सदस्य: आपकी प्रोफ़ाइल में कुछ और विकल्प होंगे। आप अपना फ़ॉन्ट फेस बदल सकते हैं, अपना पासवर्ड "
+"कभी भी बदल सकते हैं और निश्चित रूप से आप अपना खाता हटा सकते हैं।"
-#: chat.php:2095
-msgid "Moderators: Notice the Admin-button at the bottom. It'll bring up a page where you can clean the room, kick chatters, view all active sessions and disable guest access completely if needed."
-msgstr "मॉडरेटर: नीचे एडमिन-बटन पर ध्यान दें। यह एक पृष्ठ लाएगा जहां आप रूम को साफ कर सकते हैं, चैटर्स को रोक सकते हैं, सभी सक्रिय सत्र देख सकते हैं और यदि आवश्यक हो तो अतिथि पहुंच को पूरी तरह से अक्षम कर सकते हैं।"
+#: index.php:2154 chat.php:2154
+msgid ""
+"Moderators: Notice the Admin-button at the bottom. It'll bring up a page "
+"where you can clean the room, kick chatters, view all active sessions and "
+"disable guest access completely if needed."
+msgstr ""
+"मॉडरेटर: नीचे एडमिन-बटन पर ध्यान दें। यह एक पृष्ठ लाएगा जहां आप रूम को साफ कर सकते हैं, "
+"चैटर्स को रोक सकते हैं, सभी सक्रिय सत्र देख सकते हैं और यदि आवश्यक हो तो अतिथि पहुंच को "
+"पूरी तरह से अक्षम कर सकते हैं।"
-#: chat.php:2097
-msgid "Admins: You'll be furthermore able to register guests, edit members and register new nicknames."
-msgstr "व्यवस्थापक: आप मेहमानों को पंजीकृत करने, सदस्यों को संपादित करने और नए उपनाम पंजीकृत करने में भी सक्षम होंगे।"
+#: index.php:2156 chat.php:2156
+msgid ""
+"Admins: You'll be furthermore able to register guests, edit members and "
+"register new nicknames."
+msgstr ""
+"व्यवस्थापक: आप मेहमानों को पंजीकृत करने, सदस्यों को संपादित करने और नए उपनाम पंजीकृत करने "
+"में भी सक्षम होंगे।"
-#: chat.php:2135
+#: index.php:2194 chat.php:2194
msgid "Your Profile"
msgstr "आपकी प्रोफ़ाइल"
-#: chat.php:2144
+#: index.php:2203 chat.php:2203
msgid "Don't ignore anymore"
msgstr "और नजरअंदाज न करें"
-#: chat.php:2152
+#: index.php:2211 chat.php:2211
msgid "Ignore"
msgstr "अनदेखा करना"
-#: chat.php:2163
+#: index.php:2222 chat.php:2222
+#, php-format
msgid "Refresh rate (%1$d-%2$d seconds)"
msgstr "रिफ्रेश दर (%1$d-%2$d सेकंड)"
-#: chat.php:2167 chat.php:2170
+#: index.php:2226 index.php:2229 chat.php:2226 chat.php:2229
msgid "View examples"
msgstr "उदाहरण देखें"
-#: chat.php:2174
+#: index.php:2233 chat.php:2233
msgid "Fontface"
msgstr "फॉन्ट फ़ेस"
-#: chat.php:2175
+#: index.php:2234 chat.php:2234
msgid "Room Default"
msgstr "रूम डिफ़ॉल्ट"
-#: chat.php:2188
+#: index.php:2247 chat.php:2247
msgid "Bold"
msgstr "बोल्ड"
-#: chat.php:2192
+#: index.php:2251 chat.php:2251
msgid "Italic"
msgstr "तिरछा"
-#: chat.php:2196
+#: index.php:2255 chat.php:2255
msgid "Small"
msgstr "छोटा"
-#: chat.php:2199
+#: index.php:2258 chat.php:2258
msgid "Example for your chosen font"
msgstr "आपके चुने हुए फ़ॉन्ट के लिए उदाहरण"
-#: chat.php:2203
+#: index.php:2262 chat.php:2262
msgid "Autoscroll (for old browsers or top-to-bottom sort)."
msgstr "ऑटोस्क्रॉल (पुराने ब्राउज़र या ऊपर से नीचे क्रम के लिए)।"
-#: chat.php:2234
+#: index.php:2293 chat.php:2293
msgid "For everyone"
msgstr "सभी के लिए"
-#: chat.php:2239
+#: index.php:2298 chat.php:2298
msgid "For members only"
msgstr "केवल सदस्यों के लिए"
-#: chat.php:2244
+#: index.php:2303 chat.php:2303
msgid "For staff only"
msgstr "केवल स्टाफ के लिए"
-#: chat.php:2248
+#: index.php:2307 chat.php:2307
msgid "Time zone"
msgstr "समय क्षेत्र"
-#: chat.php:2261
+#: index.php:2320 chat.php:2320
msgid "Change Password"
msgstr "पासवर्ड बदलें"
-#: chat.php:2263
+#: index.php:2322 chat.php:2322
msgid "Old password:"
msgstr "पुराना पासवर्ड:"
-#: chat.php:2264
+#: index.php:2323 chat.php:2323
msgid "New password:"
msgstr "नया पासवर्ड:"
-#: chat.php:2265
+#: index.php:2324 chat.php:2324
msgid "Confirm new password:"
msgstr "नए पासवर्ड की पुष्टि करें:"
-#: chat.php:2268
+#: index.php:2327 chat.php:2327
msgid "Change Nickname"
msgstr "उपनाम बदलें"
-#: chat.php:2269
+#: index.php:2328 chat.php:2328
msgid "New nickname:"
msgstr "नया उपनाम:"
-#: chat.php:2273
+#: index.php:2332 chat.php:2332
msgid "Save changes"
msgstr "परिवर्तनों को सुरक्षित करें"
-#: chat.php:2275
+#: index.php:2334 chat.php:2334
msgid "Delete account"
msgstr "खाता हटाये"
-#: chat.php:2301
+#: index.php:2360 chat.php:2360
msgid "Reload Post Box"
msgstr "पोस्ट बॉक्स पुनः लोड करें"
-#: chat.php:2304
+#: index.php:2363 chat.php:2363
msgid "Reload Messages"
msgstr "संदेश पुनः लोड करें"
-#: chat.php:2307
+#: index.php:2366 chat.php:2366
msgid "Profile"
msgstr "प्रोफ़ाइल"
-#: chat.php:2311 chat.php:2528
+#: index.php:2370 index.php:2590 chat.php:2370 chat.php:2590
msgid "Admin"
msgstr "व्यवस्थापक"
-#: chat.php:2318
+#: index.php:2377 chat.php:2377
msgid "View public notes"
msgstr "सार्वजनिक नोट देखें"
-#: chat.php:2325
+#: index.php:2384 chat.php:2384
msgid "Clone"
msgstr "क्लोन"
-#: chat.php:2334
+#: index.php:2393 chat.php:2393
msgid "Rearrange"
msgstr "रिअर्रेंज"
-#: chat.php:2337
+#: index.php:2396 chat.php:2396
msgid "Rules & Help"
msgstr "नियम एवं सहायता"
-#: chat.php:2358 chat.php:2362
+#: index.php:2417 index.php:2421 chat.php:2417 chat.php:2421
msgid "File not found!"
msgstr "फ़ाइल प्राप्त नहीं हुई!"
-#: chat.php:2370
+#: index.php:2429 chat.php:2429
+#, php-format
msgid "Bye %s, visit again soon!"
msgstr "अलविदा %s, जल्द वापस आएँ!"
-#: chat.php:2377
+#: index.php:2436 chat.php:2436
msgid "Colourtable"
msgstr "रंग-बिरंगा"
-#: chat.php:2388
+#: index.php:2447 chat.php:2447
msgid "Back to your Profile"
msgstr "अपनी प्रोफ़ाइल पर वापस जाएँ"
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "Repeat password to register"
msgstr "रजिस्टर करने के लिए पासवर्ड दोहराएं"
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "(optional)"
msgstr "(वैकल्पिक)"
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Guests, choose a colour:"
msgstr "मेहमान, एक रंग चुनें:"
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Random Colour"
msgstr "सांयोगिक रंग"
-#: chat.php:2421 chat.php:2435 chat.php:2569
+#: index.php:2480 index.php:2494 index.php:2631 chat.php:2480 chat.php:2494
+#: chat.php:2631
msgid "Sorry, currently members only!"
msgstr "क्षमा करें, केवल सदस्य!"
-#: chat.php:2423 chat.php:2437
+#: index.php:2482 index.php:2496 chat.php:2482 chat.php:2496
msgid "Enter Chat"
msgstr "चैट मे जाये"
-#: chat.php:2457
+#: index.php:2516 chat.php:2516
+#, php-format
msgid "Error: %s"
msgstr "एरर: %s"
-#: chat.php:2467
+#: index.php:2526 chat.php:2526
msgid "Fatal error"
msgstr "घातक एरर"
-#: chat.php:2470
+#: index.php:2529 chat.php:2529
+#, php-format
msgid "Fatal error: %s"
msgstr "गंभीर एरर: %s"
-#: chat.php:2482 chat.php:2693
+#: index.php:2541 index.php:2756 chat.php:2541 chat.php:2756
msgid "Failed login attempt(s)"
msgstr "विफल लॉगिन प्रयास"
-#: chat.php:2489
+#: index.php:2548 chat.php:2548
+#, php-format
msgid "Read %d messages in your inbox"
msgstr "अपने इनबॉक्स में %d संदेश पढ़ें"
-#: chat.php:2498
+#: index.php:2557 chat.php:2557
+#, php-format
msgid "%d new guests to approve"
msgstr "%d नए मेहमानों को मंजूरी देनी है"
-#: chat.php:2530
+#: index.php:2577 chat.php:2577
+msgid "logging out"
+msgstr ""
+
+#: index.php:2592 chat.php:2592
msgid "Admin:"
msgstr "व्यवस्थापक:"
-#: chat.php:2533
+#: index.php:2595 chat.php:2595
msgid "Staff"
msgstr "कर्मचारी"
-#: chat.php:2535
+#: index.php:2597 chat.php:2597
msgid "Staff:"
msgstr "कर्मचारी:"
-#: chat.php:2540
+#: index.php:2602 chat.php:2602
msgid "Members:"
msgstr "सदस्य:"
-#: chat.php:2542
+#: index.php:2604 chat.php:2604
msgid "Guests"
msgstr "अतिथियों"
-#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092
-msgid "Invalid nickname (%1$d characters maximum and has to match the regular expression \"%2$s\")"
+#: index.php:2625 index.php:3063 index.php:3267 index.php:4172 chat.php:2625
+#: chat.php:3063 chat.php:3267 chat.php:4172
+#, php-format
+msgid ""
+"Invalid nickname (%1$d characters maximum and has to match the regular "
+"expression \"%2$s\")"
msgstr "अमान्य उपनाम (%1$d वर्ण अधिकतम और रेगुलर एक्स्प्रेशन \"%2$s\" से मेल खाना चाहिए)"
-#: chat.php:2566 chat.php:2996 chat.php:3162 chat.php:4094
-msgid "Invalid password (At least %1$d characters and has to match the regular expression \"%2$s\")"
-msgstr "अमान्य पासवर्ड (कम से कम %1$d अक्षर औररेगुलर एक्स्प्रेशन \"%2$s\" से मेल खाना चाहिए)"
+#: index.php:2628 index.php:3066 index.php:3232 index.php:4174 chat.php:2628
+#: chat.php:3066 chat.php:3232 chat.php:4174
+#, php-format
+msgid ""
+"Invalid password (At least %1$d characters and has to match the regular "
+"expression \"%2$s\")"
+msgstr ""
+"अमान्य पासवर्ड (कम से कम %1$d अक्षर औररेगुलर एक्स्प्रेशन \"%2$s\" से मेल खाना चाहिए)"
-#: chat.php:2574 chat.php:2739
+#: index.php:2636 index.php:2806 chat.php:2636 chat.php:2806
msgid "Wrong global Password!"
msgstr "ग़लत ग्लोबल पासवर्ड!"
-#: chat.php:2591 chat.php:2612
+#: index.php:2654 index.php:2675 chat.php:2654 chat.php:2675
msgid "Wrong Captcha"
msgstr "गलत कैप्चा"
-#: chat.php:2596 chat.php:2604
+#: index.php:2659 index.php:2667 chat.php:2659 chat.php:2667
msgid "Captcha already used or timed out."
msgstr "कैप्चा पहले ही उपयोग किया जा चुका है या समय समाप्त हो चुका है।"
-#: chat.php:2652
+#: index.php:2715 chat.php:2715
msgid "A user with this nickname is already logged in."
msgstr "इस उपनाम वाला उपयोगकर्ता पहले से ही लॉग इन है।"
-#: chat.php:2652 chat.php:2933 chat.php:3176
+#: index.php:2715 index.php:3003 index.php:3246 chat.php:2715 chat.php:3003
+#: chat.php:3246
msgid "Wrong Password!"
msgstr "गलत पासवर्ड!"
-#: chat.php:2696
+#: index.php:2759 chat.php:2759
msgid "Dismiss"
msgstr "दिसमीस"
-#: chat.php:2747 chat.php:3171 chat.php:4096
+#: index.php:2814 index.php:3241 index.php:4176 chat.php:2814 chat.php:3241
+#: chat.php:4176
msgid "Password confirmation does not match!"
msgstr "पासवर्ड पुष्टिकरण मेल नहीं खाता!"
-#: chat.php:2859
+#: index.php:2854 chat.php:2854
+#, fuzzy
+#| msgid "Kickmessage:"
+msgid "no kick message"
+msgstr "किकमैसेज:"
+
+#: index.php:2929 chat.php:2929
msgid "Invalid/expired session"
msgstr "अमान्य/समाप्त सेशन"
-#: chat.php:2875 chat.php:3412
+#: index.php:2945 index.php:3483 chat.php:2945 chat.php:3483
msgid "You have been kicked!"
msgstr "आपको निकाल गया है!"
-#: chat.php:2885
+#: index.php:2955 chat.php:2955
+#, php-format
msgid "Currently %d chatter(s) in room:"
msgstr "वर्तमान कमरे में %d मेंबर है:"
-#: chat.php:2933
+#: index.php:3003 chat.php:3003
msgid "This nickname is a registered member."
msgstr "यह उपनाम एक पंजीकृत सदस्य है."
-#: chat.php:2960 chat.php:3001
+#: index.php:3030 index.php:3071 chat.php:3030 chat.php:3071
+#, php-format
msgid "%s is already registered."
msgstr "%s पहले से ही पंजीकृत है."
-#: chat.php:2969 chat.php:2990
+#: index.php:3039 index.php:3060 chat.php:3039 chat.php:3060
+#, php-format
msgid "Can't register %s"
msgstr "%s पंजीकृत नहीं किया जा सकता"
-#: chat.php:2978 chat.php:3023
+#: index.php:3048 index.php:3093 chat.php:3048 chat.php:3093
+#, php-format
msgid "%s successfully registered."
msgstr "%s सफलतापूर्वक पंजीकृत."
-#: chat.php:3031 chat.php:3036
+#: index.php:3101 index.php:3106 chat.php:3101 chat.php:3106
+#, php-format
msgid "Can't change status of %s"
msgstr "%s की स्थिति नहीं बदल सकते"
-#: chat.php:3047
+#: index.php:3117 chat.php:3117
+#, php-format
msgid "%s successfully deleted from database."
msgstr "%s को डेटाबेस से सफलतापूर्वक हटा दिया गया।"
-#: chat.php:3056
+#: index.php:3126 chat.php:3126
+#, php-format
msgid "Status of %s successfully changed."
msgstr "%s की स्थिति सफलतापूर्वक बदल गई."
-#: chat.php:3073
+#: index.php:3143 chat.php:3143
+#, php-format
msgid "Successfully reset password for %s"
msgstr "%s का पासवर्ड रीसेट किया"
-#: chat.php:3075
+#: index.php:3145 chat.php:3145
+#, php-format
msgid "Can't reset password for %s"
msgstr "%s का लिए पासवर्ड रीसेट नहीं किया जा सकता"
-#: chat.php:3190
+#: index.php:3260 chat.php:3260
msgid "Your profile has successfully been saved."
msgstr "आपकी प्रोफ़ाइल सफलतापूर्वक सहेज ली गई है."
-#: chat.php:3202
+#: index.php:3272 chat.php:3272
msgid "Nickname is already taken"
msgstr "उपनाम पहले ही लिया जा चुका है"
-#: chat.php:3714
+#: index.php:3785 chat.php:3785
msgid "system message"
msgstr "सिस्टम संदेश"
-#: chat.php:3921
+#: index.php:4001 chat.php:4001
msgid "Beige"
msgstr "बेज"
-#: chat.php:3922
+#: index.php:4002 chat.php:4002
msgid "Black"
msgstr "काला"
-#: chat.php:3923
+#: index.php:4003 chat.php:4003
msgid "Blue"
msgstr "नीला"
-#: chat.php:3924
+#: index.php:4004 chat.php:4004
msgid "Blue violet"
msgstr "नीला बैंगनी"
-#: chat.php:3925
+#: index.php:4005 chat.php:4005
msgid "Brown"
msgstr "भूरा"
-#: chat.php:3926
+#: index.php:4006 chat.php:4006
msgid "Cyan"
msgstr "सियान"
-#: chat.php:3927
+#: index.php:4007 chat.php:4007
msgid "Dark blue"
msgstr "गहरा नीला"
-#: chat.php:3928
+#: index.php:4008 chat.php:4008
msgid "Dark green"
msgstr "गहरा हरा"
-#: chat.php:3929
+#: index.php:4009 chat.php:4009
msgid "Dark red"
msgstr "गहरा लाल"
-#: chat.php:3930
+#: index.php:4010 chat.php:4010
msgid "Dark violet"
msgstr "गहरा बैंगनी"
-#: chat.php:3931
+#: index.php:4011 chat.php:4011
msgid "Sky blue"
msgstr "आसमानी नीला"
-#: chat.php:3932
+#: index.php:4012 chat.php:4012
msgid "Gold"
msgstr "गोल्डन"
-#: chat.php:3933
+#: index.php:4013 chat.php:4013
msgid "Grey"
msgstr "ग्रे"
-#: chat.php:3934
+#: index.php:4014 chat.php:4014
msgid "Green"
msgstr "हरा"
-#: chat.php:3935
+#: index.php:4015 chat.php:4015
msgid "Hot pink"
msgstr "हॉट गुलाबी"
-#: chat.php:3936
+#: index.php:4016 chat.php:4016
msgid "Indigo"
msgstr "नील"
-#: chat.php:3937
+#: index.php:4017 chat.php:4017
msgid "Light blue"
msgstr "हल्का नीला रंग"
-#: chat.php:3938
+#: index.php:4018 chat.php:4018
msgid "Light green"
msgstr "हल्का हरा"
-#: chat.php:3939
+#: index.php:4019 chat.php:4019
msgid "Lime green"
msgstr "पीला हरा रंग"
-#: chat.php:3940
+#: index.php:4020 chat.php:4020
msgid "Magenta"
msgstr "मैजेंटा"
-#: chat.php:3941
+#: index.php:4021 chat.php:4021
msgid "Olive"
msgstr "जैतून"
-#: chat.php:3942
+#: index.php:4022 chat.php:4022
msgid "Orange"
msgstr "नारंगी"
-#: chat.php:3943
+#: index.php:4023 chat.php:4023
msgid "Orange red"
msgstr "नारंगी लाल"
-#: chat.php:3944
+#: index.php:4024 chat.php:4024
msgid "Purple"
msgstr "बैंगनी"
-#: chat.php:3945
+#: index.php:4025 chat.php:4025
msgid "Red"
msgstr "लाल"
-#: chat.php:3946
+#: index.php:4026 chat.php:4026
msgid "Royal blue"
msgstr "शाही नीला"
-#: chat.php:3947
+#: index.php:4027 chat.php:4027
msgid "Sea green"
msgstr "समुद्र हरा"
-#: chat.php:3948
+#: index.php:4028 chat.php:4028
msgid "Sienna"
msgstr "सिएना"
-#: chat.php:3949
+#: index.php:4029 chat.php:4029
msgid "Silver"
msgstr "सिल्वर"
-#: chat.php:3950
+#: index.php:4030 chat.php:4030
msgid "Tan"
msgstr "टैन"
-#: chat.php:3951
+#: index.php:4031 chat.php:4031
msgid "Teal"
msgstr "टील"
-#: chat.php:3952
+#: index.php:4032 chat.php:4032
msgid "Violet"
msgstr "बैंगनी"
-#: chat.php:3953
+#: index.php:4033 chat.php:4033
msgid "White"
msgstr "सफ़ेद"
-#: chat.php:3954
+#: index.php:4034 chat.php:4034
msgid "Yellow"
msgstr "पीला"
-#: chat.php:3955
+#: index.php:4035 chat.php:4035
msgid "Yellow green"
msgstr "पीले हरे"
-#: chat.php:4077
+#: index.php:4157 chat.php:4157
msgid "Successfully destroyed chat"
msgstr "चैट को सफलतापूर्वक नष्ट कर दिया गया"
-#: chat.php:4086
-msgid "Database tables already exist! To continue, you have to delete these tables manually first."
-msgstr "डेटाबेस टेबल पहले से मौजूद हैं! जारी रखने के लिए, आपको पहले इन टेबल को मैन्युअल रूप से हटाना होगा।"
+#: index.php:4166 chat.php:4166
+msgid ""
+"Database tables already exist! To continue, you have to delete these tables "
+"manually first."
+msgstr ""
+"डेटाबेस टेबल पहले से मौजूद हैं! जारी रखने के लिए, आपको पहले इन टेबल को मैन्युअल रूप से हटाना "
+"होगा।"
-#: chat.php:4089
+#: index.php:4169 chat.php:4169
msgid "A Superadmin already exists!"
msgstr "एक सुपरएडमिन पहले से मौजूद है!"
-#: chat.php:4182 chat.php:4369
+#: index.php:4263 index.php:4451 chat.php:4263 chat.php:4451
+#, php-format
msgid "%s - "
msgstr "%s - "
-#: chat.php:4183 chat.php:4369
+#: index.php:4264 index.php:4451 chat.php:4264 chat.php:4451
+#, php-format
msgid "[M] %s - "
msgstr "[M] %s - "
-#: chat.php:4184 chat.php:4369
+#: index.php:4265 index.php:4451 chat.php:4265 chat.php:4451
+#, php-format
msgid "[Staff] %s - "
msgstr "[Staff] %s - "
-#: chat.php:4185 chat.php:4369
+#: index.php:4266 index.php:4451 chat.php:4266 chat.php:4451
+#, php-format
msgid "[Admin] %s - "
msgstr "[Admin] %s - "
-#: chat.php:4186 chat.php:4369
+#: index.php:4267 index.php:4451 chat.php:4267 chat.php:4451
+#, php-format
msgid "[%1$s to %2$s] - "
msgstr "[%1$s to %2$s] - "
-#: chat.php:4187
+#: index.php:4268 chat.php:4268
+#, php-format
msgid "%s entered the chat."
msgstr "%s ने चैट में प्रवेश किया."
-#: chat.php:4188
+#: index.php:4269 chat.php:4269
+#, php-format
msgid "%s left the chat."
msgstr "%s ने चैट छोड़ दी."
-#: chat.php:4189
+#: index.php:4270 chat.php:4270
+#, php-format
msgid "%s is now a registered member."
msgstr "%s अब एक पंजीकृत सदस्य है."
-#: chat.php:4190
+#: index.php:4271 chat.php:4271
+#, php-format
msgid "%s is now a registered applicant."
msgstr "%s अब एक पंजीकृत आवेदक है."
-#: chat.php:4191
-msgid "%s has been kicked."
+#: index.php:4272 chat.php:4272
+#, fuzzy, php-format
+#| msgid "%s has been kicked."
+msgid "%1$s has been kicked: %2$s"
msgstr "%s को निकाल दिया गया है."
-#: chat.php:4192
-msgid "%s have been kicked."
+#: index.php:4273 chat.php:4273
+#, fuzzy, php-format
+#| msgid "%s have been kicked."
+msgid "%1$s have been kicked: %2$s"
msgstr "%s को निकाल दिया गया है."
-#: chat.php:4193
-msgid "All guests have been kicked."
+#: index.php:4274 chat.php:4274
+#, fuzzy, php-format
+#| msgid "All guests have been kicked."
+msgid "All guests have been kicked: %1$s"
msgstr "सभी मेहमानों को बाहर निकाल दिया गया है."
-#: chat.php:4194
+#: index.php:4275 chat.php:4275
+#, php-format
msgid "%s has been cleaned."
msgstr "%s साफ़ कर दिया गया है."
-#: chat.php:4202 chat.php:4396
+#: index.php:4283 index.php:4478 chat.php:4283 chat.php:4478
msgid "Temporarily disabled"
msgstr "अस्थायी रूप से अक्षम"
-#: chat.php:4218 chat.php:4594
+#: index.php:4299 index.php:4676 chat.php:4299 chat.php:4676
msgid "A chat community"
msgstr "चैट कम्युनिटी"
-#: chat.php:4256
+#: index.php:4338 chat.php:4338
msgid "Successfully registered!"
msgstr "पंजीकरण सफलतापूर्वक हो गया है!"
-#: chat.php:4522 chat.php:4721 chat.php:4728
+#: index.php:4604 index.php:4807 index.php:4814 chat.php:4604 chat.php:4807
+#: chat.php:4814
msgid "No connection to database!"
msgstr "डेटाबेस से कनेक्शन नहीं!"
-#: chat.php:4531
-msgid "Note: Default CSS is now hardcoded and can be removed from the CSS setting"
+#: index.php:4613 chat.php:4613
+msgid ""
+"Note: Default CSS is now hardcoded and can be removed from the CSS setting"
msgstr "नोट: डिफ़ॉल्ट सीएसएस अब हार्डकोडेड है और इसे सीएसएस सेटिंग से हटाया जा सकता है"
-#: chat.php:4611
-msgid "The %s extension of PHP is required for the encryption feature. Please install it first or set the encrypted setting back to false."
-msgstr "एन्क्रिप्शन सुविधा के लिए PHP का %s एक्सटेंशन आवश्यक है। कृपया पहले इसे इंस्टॉल करें या एन्क्रिप्टेड सेटिंग को वापस गलत पर सेट करें।"
+#: index.php:4697 chat.php:4697
+#, php-format
+msgid ""
+"The %s extension of PHP is required for the encryption feature. Please "
+"install it first or set the encrypted setting back to false."
+msgstr ""
+"एन्क्रिप्शन सुविधा के लिए PHP का %s एक्सटेंशन आवश्यक है। कृपया पहले इसे इंस्टॉल करें या "
+"एन्क्रिप्टेड सेटिंग को वापस गलत पर सेट करें।"
-#: chat.php:4684 chat.php:4689 chat.php:4694
-msgid "The %s extension of PHP is required for the selected database driver. Please install it first."
-msgstr "चयनित डेटाबेस ड्राइवर के लिए PHP का %s एक्सटेंशन आवश्यक है। कृपया पहले इसे इंस्टॉल करें."
+#: index.php:4770 index.php:4775 index.php:4780 chat.php:4770 chat.php:4775
+#: chat.php:4780
+#, php-format
+msgid ""
+"The %s extension of PHP is required for the selected database driver. Please "
+"install it first."
+msgstr ""
+"चयनित डेटाबेस ड्राइवर के लिए PHP का %s एक्सटेंशन आवश्यक है। कृपया पहले इसे इंस्टॉल करें."
-#: chat.php:4707 chat.php:4715 chat.php:4719 chat.php:4726
-msgid "No connection to database, please create a database and edit the script to use the correct database with given username and password!"
-msgstr "डेटाबेस से कोई संबंध नहीं, कृपया एक डेटाबेस बनाएं और दिए गए उपयोगकर्ता नाम और पासवर्ड के साथ सही डेटाबेस का उपयोग करने के लिए स्क्रिप्ट को संपादित करें!"
+#: index.php:4793 index.php:4801 index.php:4805 index.php:4812 chat.php:4793
+#: chat.php:4801 chat.php:4805 chat.php:4812
+msgid ""
+"No connection to database, please create a database and edit the script to "
+"use the correct database with given username and password!"
+msgstr ""
+"डेटाबेस से कोई संबंध नहीं, कृपया एक डेटाबेस बनाएं और दिए गए उपयोगकर्ता नाम और पासवर्ड के "
+"साथ सही डेटाबेस का उपयोग करने के लिए स्क्रिप्ट को संपादित करें!"
-#: chat.php:4734
-msgid "The memcached extension of PHP is required for the caching feature. Please install it first or set the memcached setting back to false."
-msgstr "कैशिंग सुविधा के लिए PHP का memcached एक्सटेंशन आवश्यक है। कृपया पहले इसे इंस्टॉल करें या memcached सेटिंग को वापस false पर सेट करें।"
+#: index.php:4820 chat.php:4820
+msgid ""
+"The memcached extension of PHP is required for the caching feature. Please "
+"install it first or set the memcached setting back to false."
+msgstr ""
+"कैशिंग सुविधा के लिए PHP का memcached एक्सटेंशन आवश्यक है। कृपया पहले इसे इंस्टॉल करें या "
+"memcached सेटिंग को वापस false पर सेट करें।"
diff --git a/locale/id_ID/LC_MESSAGES/le-chat-php.po b/locale/id_ID/LC_MESSAGES/le-chat-php.po
index 46604ca..fdb7b51 100644
--- a/locale/id_ID/LC_MESSAGES/le-chat-php.po
+++ b/locale/id_ID/LC_MESSAGES/le-chat-php.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-01-18 21:32+0100\n"
+"POT-Creation-Date: 2025-03-29 17:02+0100\n"
"PO-Revision-Date: 2023-01-18 21:38+0100\n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -18,264 +18,270 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Poedit 3.1.1\n"
-#: chat.php:261
+#: index.php:272 chat.php:272
msgid "Enable applicants"
msgstr "Memungkinkan pemohon"
-#: chat.php:262
+#: index.php:273 index.php:2267 chat.php:273 chat.php:2267
msgid "Embed images"
msgstr "Tanamkan gambar"
-#: chat.php:263 chat.php:2202
+#: index.php:274 index.php:2261 chat.php:274 chat.php:2261
msgid "Show Timestamps"
msgstr "Tunjukkan penanda waktu"
-#: chat.php:264
+#: index.php:275 chat.php:275
msgid "Show session-IP"
msgstr "Tunjukkan sesi-IP"
-#: chat.php:265
+#: index.php:276 chat.php:276
msgid "Members can kick, if no moderator is present"
msgstr "Anggota dapat mengusir, jika tak ada moderator"
-#: chat.php:266
+#: index.php:277 chat.php:277
msgid "Members can always kick"
msgstr "Anggota selalu dapat mengusir"
-#: chat.php:267
+#: index.php:278 chat.php:278
msgid "Force redirection"
msgstr "Paksa pengalihan"
-#: chat.php:268
+#: index.php:279 index.php:2270 chat.php:279 chat.php:2270
msgid "Incognito mode"
msgstr "Mode penyamaran"
-#: chat.php:269
+#: index.php:280 chat.php:280
msgid "Send mail on new public message"
msgstr ""
-#: chat.php:270
+#: index.php:281 chat.php:281
msgid "Fallback to waiting room, if no moderator is present to approve guests"
msgstr ""
-#: chat.php:271
+#: index.php:282 chat.php:282
msgid "Disable private messages"
msgstr ""
-#: chat.php:272 chat.php:2223
+#: index.php:283 index.php:2282 chat.php:283 chat.php:2282
msgid "Enable offline inbox"
msgstr ""
-#: chat.php:273
+#: index.php:284 chat.php:284
msgid "Show a greeting message before showing the messages"
msgstr ""
-#: chat.php:274 chat.php:2204
+#: index.php:285 index.php:2263 chat.php:285 chat.php:2263
msgid "Sort messages from top to bottom"
msgstr ""
-#: chat.php:275 chat.php:2205
+#: index.php:286 index.php:2264 chat.php:286 chat.php:2264
msgid "Hide list of chatters"
msgstr ""
-#: chat.php:276 chat.php:1780 chat.php:1794
+#: index.php:287 index.php:1837 index.php:1851 chat.php:287 chat.php:1837
+#: chat.php:1851
msgid "Personal notes"
msgstr ""
-#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110
+#: index.php:288 index.php:1840 index.php:1854 index.php:2169 chat.php:288
+#: chat.php:1840 chat.php:1854 chat.php:2169
msgid "Public notes"
msgstr "Catatan terbuka"
-#: chat.php:278
+#: index.php:289 chat.php:289
msgid "Apply kick filter on moderators"
msgstr ""
-#: chat.php:279
+#: index.php:290 chat.php:290
msgid "Show who kicks people or purges all messages."
msgstr ""
"Memperlihatkan siapa yang mengusir orang atau membersihkan semua pesan."
-#: chat.php:280
+#: index.php:291 chat.php:291
msgid "Hide reload post box button"
msgstr ""
-#: chat.php:281
+#: index.php:292 chat.php:292
msgid "Hide reload messages button"
msgstr ""
-#: chat.php:282
+#: index.php:293 chat.php:293
msgid "Hide profile button"
msgstr ""
-#: chat.php:283
+#: index.php:294 chat.php:294
msgid "Hide admin button"
msgstr ""
-#: chat.php:284
+#: index.php:295 chat.php:295
msgid "Hide notes button"
msgstr ""
-#: chat.php:285
+#: index.php:296 chat.php:296
msgid "Hide clone button"
msgstr ""
-#: chat.php:286
+#: index.php:297 chat.php:297
msgid "Hide rearrange button"
msgstr ""
-#: chat.php:287
+#: index.php:298 chat.php:298
msgid "Hide help button"
msgstr ""
-#: chat.php:288
+#: index.php:299 chat.php:299
msgid "Apply postbox delete button globally"
msgstr ""
-#: chat.php:289
+#: index.php:300 chat.php:300
msgid "Allow enhancing functionality with JavaScript"
msgstr ""
-#: chat.php:292 chat.php:2170
+#: index.php:303 index.php:2229 chat.php:303 chat.php:2229
msgid "Background colour"
msgstr "Warna latar belakang"
-#: chat.php:293 chat.php:2167
+#: index.php:304 index.php:2226 chat.php:304 chat.php:2226
msgid "Font colour"
msgstr "Warna tulisan"
-#: chat.php:296
+#: index.php:307 chat.php:307
msgid "Entrance"
msgstr "Memasuki"
-#: chat.php:297
+#: index.php:308 chat.php:308
msgid "Leaving"
msgstr "Meninggalkan"
-#: chat.php:298
+#: index.php:309 chat.php:309
msgid "Member registered"
msgstr "Anggota terdaftar"
-#: chat.php:299
+#: index.php:310 chat.php:310
msgid "Applicant registered"
msgstr "Pemohon terdaftar"
-#: chat.php:300
+#: index.php:311 chat.php:311
msgid "Kicked"
msgstr "Diusir"
-#: chat.php:301
+#: index.php:312 chat.php:312
msgid "Multiple kicked"
msgstr "Pemohon diusir"
-#: chat.php:302
+#: index.php:313 chat.php:313
msgid "All kicked"
msgstr "Semuanya diusir"
-#: chat.php:303
+#: index.php:314 chat.php:314
msgid "Room cleaned"
msgstr "Ruang dibersihkan"
-#: chat.php:304
+#: index.php:315 chat.php:315
msgid "Message to all"
msgstr "Pesan ke semuany"
-#: chat.php:305
+#: index.php:316 chat.php:316
msgid "Message to members only"
msgstr "Pesan hanya kepada member"
-#: chat.php:306
+#: index.php:317 chat.php:317
msgid "Message to staff only"
msgstr "Pesan hanya kepada staf"
-#: chat.php:307
+#: index.php:318 chat.php:318
msgid "Message to admins only"
msgstr "Pesan hanya kepada admin"
-#: chat.php:308
+#: index.php:319 chat.php:319
msgid "Private message"
msgstr "Pesan pribadi"
-#: chat.php:309
+#: index.php:320 chat.php:320
msgid "Attachement"
msgstr ""
-#: chat.php:312
+#: index.php:323 chat.php:323
msgid "Member timeout (minutes)"
msgstr "Batas waktu anggota (menit)"
-#: chat.php:313
+#: index.php:324 chat.php:324
msgid "Guest timeout (minutes)"
msgstr "Batas waktu tamu (menit)"
-#: chat.php:314
+#: index.php:325 chat.php:325
msgid "Kick penalty (minutes)"
msgstr "Sanksi pengusiran (menit)"
-#: chat.php:315
+#: index.php:326 chat.php:326
msgid "Waiting room time (seconds)"
msgstr "Waktu ruang tunggu (detik)"
-#: chat.php:316
+#: index.php:327 chat.php:327
+msgid "Logout delay (seconds)"
+msgstr ""
+
+#: index.php:328 chat.php:328
msgid "Captcha timeout (seconds)"
msgstr "Batas waktu captcha (detik)"
-#: chat.php:317
+#: index.php:329 chat.php:329
msgid "Message timeout (minutes)"
msgstr "Batas waktu pesan (menit)"
-#: chat.php:318
+#: index.php:330 chat.php:330
msgid "Message limit (public)"
msgstr "Batas pesan (publik)"
-#: chat.php:319
+#: index.php:331 chat.php:331
msgid "Maximal message length"
msgstr "Panjang pesan maksimal"
-#: chat.php:320
+#: index.php:332 chat.php:332
msgid "Maximal nickname length"
msgstr "Panjang maksimal nama"
-#: chat.php:321
+#: index.php:333 chat.php:333
msgid "Minimal password length"
msgstr "Panjang minimal kata sandi"
-#: chat.php:322
+#: index.php:334 chat.php:334
msgid "Default message reload time (seconds)"
msgstr "Waktu muat-ulang pesan bawaan (detik)"
-#: chat.php:323
+#: index.php:335 chat.php:335
msgid "Number of notes revisions to keep"
msgstr "Jumlah catatan Revisi yang disimpan"
-#: chat.php:324
+#: index.php:336 chat.php:336
msgid "Maximum upload size in KB"
msgstr ""
-#: chat.php:325
+#: index.php:337 chat.php:337
msgid "Enable file uploads"
msgstr ""
-#: chat.php:326
+#: index.php:338 chat.php:338
msgid "Lowest refresh rate"
msgstr ""
-#: chat.php:327
+#: index.php:339 chat.php:339
msgid "Highest refresh rate"
msgstr ""
-#: chat.php:330
+#: index.php:342 chat.php:342
msgid "Rules (html)"
msgstr "Peraturan (html)"
-#: chat.php:331
+#: index.php:343 chat.php:343
msgid "CSS Style"
msgstr "CSS Style"
-#: chat.php:332
+#: index.php:344 chat.php:344
msgid "Chat disabled message (html)"
msgstr ""
-#: chat.php:335
+#: index.php:347 chat.php:347
msgid ""
"Date "
@@ -285,497 +291,532 @@ msgstr ""
"php#refsect1-function.date-parameters\" rel=\"noopener noreferrer\">Date "
"formating"
-#: chat.php:336
+#: index.php:348 chat.php:348
msgid "Characters used in Captcha"
msgstr "Karakter yang digunakan dalam Captcha"
-#: chat.php:337
+#: index.php:349 chat.php:349
msgid "Custom redirection script"
msgstr "Skrip pengalihan kustom"
-#: chat.php:338
+#: index.php:350 chat.php:350
msgid "Chat name"
msgstr "Nama obrolan"
-#: chat.php:339
+#: index.php:351 chat.php:351
msgid "Send mail using this address"
msgstr ""
-#: chat.php:340
+#: index.php:352 chat.php:352
msgid "Send mail to this address"
msgstr ""
-#: chat.php:341
+#: index.php:353 chat.php:353
msgid "Nickname regex"
msgstr ""
-#: chat.php:342
+#: index.php:354 chat.php:354
msgid "Password regex"
msgstr ""
-#: chat.php:343
+#: index.php:355 chat.php:355
msgid "Link to external CSS file (on your own server)"
msgstr ""
-#: chat.php:344
+#: index.php:356 chat.php:356
msgid "Meta description (best 50 - 160 characters for SEO)"
msgstr ""
-#: chat.php:345
+#: index.php:357 chat.php:357
+msgid "Show this text when a user's logout is delayed"
+msgstr ""
+
+#: index.php:358 chat.php:358
msgid "Prepend this text to system messages"
msgstr "Teks ini mendahului pesan dari sistem"
-#: chat.php:348 chat.php:728 chat.php:1225
+#: index.php:361 index.php:780 index.php:1282 chat.php:361 chat.php:780
+#: chat.php:1282
msgid "Change Guestaccess"
msgstr "Ubah akses tamu"
-#: chat.php:349
+#: index.php:362 chat.php:362
msgid "Enable global Password"
msgstr ""
-#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433
+#: index.php:363 index.php:810 index.php:2474 index.php:2492 chat.php:363
+#: chat.php:810 chat.php:2474 chat.php:2492
msgid "Global Password:"
msgstr "Sandi global:"
-#: chat.php:351 chat.php:819
+#: index.php:364 index.php:871 chat.php:364 chat.php:871
msgid "Captcha"
msgstr "Captcha"
-#: chat.php:352 chat.php:775 chat.php:835
+#: index.php:365 index.php:827 index.php:887 chat.php:365 chat.php:827
+#: chat.php:887
msgid "Only for guests"
msgstr "Hanya untuk tamu"
-#: chat.php:353 chat.php:1220
+#: index.php:366 index.php:1277 chat.php:366 chat.php:1277
msgid "Topic"
msgstr "Topik"
-#: chat.php:354 chat.php:781
+#: index.php:367 index.php:833 chat.php:367 chat.php:833
msgid "Let guests register themselves"
msgstr ""
-#: chat.php:355 chat.php:862
+#: index.php:368 index.php:919 chat.php:368 chat.php:919
msgid "Default time zone"
msgstr ""
-#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259
+#: index.php:581 index.php:1157 index.php:4158 index.php:4341 chat.php:581
+#: chat.php:1157 chat.php:4158 chat.php:4341
msgid "Initial Setup"
msgstr "Pengaturan awal"
-#: chat.php:588
+#: index.php:601 chat.php:601
#, php-format
msgid "Redirecting to: %s"
msgstr "Mengarahkan ke: %s"
-#: chat.php:595
+#: index.php:608 chat.php:608
#, php-format
msgid ""
"Dangerous non-http link requested, copy paste this link if you are really "
"sure: %s"
msgstr ""
-#: chat.php:597
+#: index.php:610 chat.php:610
#, php-format
msgid "Non-http link requested: %s"
msgstr "Meminta tautan non-http: %s"
-#: chat.php:599
+#: index.php:612 chat.php:612
#, php-format
msgid "If it's not working, try this one: %s"
msgstr "Jika tak bekerja, pilih salah satu: %s"
-#: chat.php:609
+#: index.php:622 chat.php:622
msgid "Access denied"
msgstr "Akses ditolak"
-#: chat.php:609
+#: index.php:622 chat.php:622
#, php-format
msgid "You are logged in as %s and don't have access to this section."
msgstr "Anda masuk sebagai %s dan tak dapat mengakses bagian ini."
-#: chat.php:611 chat.php:915 chat.php:1211 chat.php:1393
+#: index.php:624 index.php:972 index.php:1268 index.php:1450 chat.php:624
+#: chat.php:972 chat.php:1268 chat.php:1450
msgid "Logout"
msgstr "Keluar"
-#: chat.php:636
+#: index.php:649 chat.php:649
msgid "Copy:"
msgstr "Salin:"
-#: chat.php:724
+#: index.php:776 chat.php:776
msgid "Chat Setup"
msgstr "Pengaturan obrolan"
-#: chat.php:734 chat.php:1233
+#: index.php:786 index.php:1290 chat.php:786 chat.php:1290
msgid "Allow"
msgstr "Izinkan"
-#: chat.php:739 chat.php:1238
+#: index.php:791 index.php:1295 chat.php:791 chat.php:1295
msgid "Allow with waitingroom"
msgstr "Memungkinkan dengan ruang tunggu"
-#: chat.php:744 chat.php:1243
+#: index.php:796 index.php:1300 chat.php:796 chat.php:1300
msgid "Require moderator approval"
msgstr "Memerlukan persetujuan moderator"
-#: chat.php:749 chat.php:1248
+#: index.php:801 index.php:1305 chat.php:801 chat.php:1305
msgid "Only members"
msgstr "Hanya anggota"
-#: chat.php:754 chat.php:1251
+#: index.php:806 index.php:1308 chat.php:806 chat.php:1308
msgid "Disable chat"
msgstr ""
-#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229
+#: index.php:817 index.php:839 index.php:894 index.php:953 index.php:2288
+#: chat.php:817 chat.php:839 chat.php:894 chat.php:953 chat.php:2288
msgid "Disabled"
msgstr "Dimatikan"
-#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219
+#: index.php:822 index.php:882 index.php:958 index.php:2278 chat.php:822
+#: chat.php:882 chat.php:958 chat.php:2278
msgid "Enabled"
msgstr "Diaktifkan"
-#: chat.php:792
+#: index.php:844 chat.php:844
msgid "As applicant"
msgstr ""
-#: chat.php:797
+#: index.php:849 chat.php:849
msgid "As member"
msgstr ""
-#: chat.php:800
+#: index.php:852 chat.php:852
msgid "System messages"
msgstr "Sistem perpesanan"
-#: chat.php:822 chat.php:1053
+#: index.php:874 index.php:1110 chat.php:874 chat.php:1110
#, php-format
msgid ""
"The %s extension of PHP is required for this feature. Please install it "
"first."
msgstr ""
-#: chat.php:847
+#: index.php:899 chat.php:899
msgid "Simple"
msgstr "Sederhana"
-#: chat.php:852
+#: index.php:904 chat.php:904
msgid "Moderate"
msgstr "Moderat"
-#: chat.php:857
+#: index.php:909 chat.php:909
+msgid "Hard"
+msgstr ""
+
+#: index.php:914 chat.php:914
msgid "Extreme"
msgstr "Ekstrim"
-#: chat.php:906 chat.php:1548 chat.php:1610
+#: index.php:963 index.php:1605 index.php:1667 chat.php:963 chat.php:1605
+#: chat.php:1667
msgid "Apply"
msgstr "Terapkan"
-#: chat.php:910 chat.php:1050
+#: index.php:967 index.php:1107 chat.php:967 chat.php:1107
msgid "Backup and restore"
msgstr "Cadang dan pulihkan"
-#: chat.php:912
+#: index.php:969 chat.php:969
msgid "Destroy chat"
msgstr "Musnahkan obrolan"
-#: chat.php:1057 chat.php:1066
+#: index.php:1114 index.php:1123 chat.php:1114 chat.php:1123
msgid "Settings"
msgstr "Pengaturan"
-#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575
-#: chat.php:1622
+#: index.php:1115 index.php:1124 index.php:1269 index.php:1595 index.php:1632
+#: index.php:1679 chat.php:1115 chat.php:1124 chat.php:1269 chat.php:1595
+#: chat.php:1632 chat.php:1679
msgid "Filter"
msgstr "Saring"
-#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538
+#: index.php:1116 index.php:1125 index.php:1325 index.php:2600 chat.php:1116
+#: chat.php:1125 chat.php:1325 chat.php:2600
msgid "Members"
msgstr "Anggota"
-#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322
+#: index.php:1117 index.php:1126 index.php:2373 index.php:2381 chat.php:1117
+#: chat.php:1126 chat.php:2373 chat.php:2381
msgid "Notes"
msgstr "Catatan"
-#: chat.php:1061
+#: index.php:1118 chat.php:1118
msgid "Backup"
msgstr "Cadangkan"
-#: chat.php:1070
+#: index.php:1127 chat.php:1127
msgid "Restore"
msgstr "Pulihkan"
-#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260
+#: index.php:1131 index.php:1174 index.php:1212 index.php:1242 index.php:4342
+#: chat.php:1131 chat.php:1174 chat.php:1212 chat.php:1242 chat.php:4342
msgid "Go to the Setup-Page"
msgstr "Ke halaman-pengaturan"
-#: chat.php:1082 chat.php:1091 chat.php:1949
+#: index.php:1139 index.php:1148 index.php:2006 chat.php:1139 chat.php:1148
+#: chat.php:2006
msgid "Are you sure?"
msgstr "Apakah Anda yakin?"
-#: chat.php:1083 chat.php:1092 chat.php:1956
+#: index.php:1140 index.php:1149 index.php:2013 chat.php:1140 chat.php:1149
+#: chat.php:2013
msgid "Yes"
msgstr "Ya"
-#: chat.php:1084 chat.php:1093 chat.php:1963
+#: index.php:1141 index.php:1150 index.php:2020 chat.php:1141 chat.php:1150
+#: chat.php:2020
msgid "No"
msgstr "Tidak"
-#: chat.php:1101 chat.php:4259
+#: index.php:1158 index.php:4341 chat.php:1158 chat.php:4341
msgid "Superadmin Login"
msgstr "Masuk Superadmin"
-#: chat.php:1102
+#: index.php:1159 chat.php:1159
msgid "Superadmin Nickname:"
msgstr "Nama Superadmin:"
-#: chat.php:1103
+#: index.php:1160 chat.php:1160
msgid "Superadmin Password:"
msgstr "Kata sandi Superadmin:"
-#: chat.php:1104
+#: index.php:1161 chat.php:1161
msgid "Confirm Password:"
msgstr "Konfirmasi kata sandi:"
-#: chat.php:1105
+#: index.php:1162 chat.php:1162
msgid "Initialise Chat"
msgstr "Memulai obrolan"
-#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439
+#: index.php:1163 index.php:1187 index.php:1213 index.php:2336 index.php:2498
+#: chat.php:1163 chat.php:1187 chat.php:1213 chat.php:2336 chat.php:2498
msgid "Change language:"
msgstr "Ubah bahasa:"
-#: chat.php:1117
+#: index.php:1174 chat.php:1174
msgid "Database successfully updated!"
msgstr "Basisdata berhasil diperbarui!"
-#: chat.php:1125 chat.php:1326 chat.php:2407
+#: index.php:1182 index.php:1383 index.php:2466 chat.php:1182 chat.php:1383
+#: chat.php:2466
msgid "Nickname:"
msgstr "Nama:"
-#: chat.php:1126 chat.php:1327 chat.php:2408
+#: index.php:1183 index.php:1384 index.php:2467 chat.php:1183 chat.php:1384
+#: chat.php:2467
msgid "Password:"
msgstr "Kata sandi:"
-#: chat.php:1128
+#: index.php:1185 chat.php:1185
msgid "Login"
msgstr "Masuk"
-#: chat.php:1129
+#: index.php:1186 chat.php:1186
msgid "Forgot login?"
msgstr ""
-#: chat.php:1142 chat.php:1306
+#: index.php:1199 index.php:1363 chat.php:1199 chat.php:1363
msgid "Reset password"
msgstr "Atur-ulang kata sandi"
-#: chat.php:1150
+#: index.php:1207 chat.php:1207
#, php-format
msgid ""
"Successfully reset password for username %s. Please remove the password "
"reset define from the script again."
msgstr ""
-#: chat.php:1153
+#: index.php:1210 chat.php:1210
msgid ""
"Please modify the script and put the following at the bottom of it (change "
"the password). Then refresh this page: define('RESET_SUPERADMIN_PASSWORD', "
"'changeme');"
msgstr ""
-#: chat.php:1169 chat.php:1193 chat.php:1258 chat.php:1270 chat.php:1294
-#: chat.php:1308 chat.php:1316 chat.php:2145 chat.php:2153
+#: index.php:1226 index.php:1250 index.php:1315 index.php:1327 index.php:1351
+#: index.php:1365 index.php:1373 index.php:2204 index.php:2212 chat.php:1226
+#: chat.php:1250 chat.php:1315 chat.php:1327 chat.php:1351 chat.php:1365
+#: chat.php:1373 chat.php:2204 chat.php:2212
msgid "(choose)"
msgstr "(pilih)"
-#: chat.php:1170
+#: index.php:1227 chat.php:1227
msgid "All guests"
msgstr "Semua tamu"
-#: chat.php:1182
+#: index.php:1239 chat.php:1239
msgid "Administrative functions"
msgstr "Fungsi administrasi"
-#: chat.php:1188
+#: index.php:1245 chat.php:1245
msgid "Clean messages"
msgstr "Bersihkan pesan"
-#: chat.php:1191
+#: index.php:1248 chat.php:1248
msgid "Whole room"
msgstr "Seluruh ruangan"
-#: chat.php:1192
+#: index.php:1249 chat.php:1249
msgid "Selection"
msgstr "Pilihan"
-#: chat.php:1193
+#: index.php:1250 chat.php:1250
msgid "Following nickname:"
msgstr "Nama berikut:"
-#: chat.php:1200
+#: index.php:1257 chat.php:1257
msgid "Clean"
msgstr "Bersih"
-#: chat.php:1202
+#: index.php:1259 chat.php:1259
#, php-format
msgid "Kick Chatter (%d minutes)"
msgstr "Usir pengobrol (%d menit)"
-#: chat.php:1204
+#: index.php:1261 chat.php:1261
msgid "Kickmessage:"
msgstr "Pesan pengusiran:"
-#: chat.php:1205
+#: index.php:1262 chat.php:1262
msgid "Purge messages"
msgstr "Bersihkan pesan"
-#: chat.php:1206 chat.php:1388 chat.php:1546 chat.php:1580 chat.php:1591
-#: chat.php:2042
+#: index.php:1263 index.php:1445 index.php:1603 index.php:1637 index.php:1648
+#: index.php:2101 chat.php:1263 chat.php:1445 chat.php:1603 chat.php:1637
+#: chat.php:1648 chat.php:2101
msgid "Kick"
msgstr "Usir"
-#: chat.php:1208
+#: index.php:1265 chat.php:1265
msgid "Logout inactive Chatter"
msgstr "Keluar pengobrol aktif"
-#: chat.php:1212
+#: index.php:1269 chat.php:1269
msgid "View active sessions"
msgstr "Lihat sesi yang aktif"
-#: chat.php:1212 chat.php:1603
+#: index.php:1269 index.php:1660 chat.php:1269 chat.php:1660
msgid "Linkfilter"
msgstr "Penyaring-tautan"
-#: chat.php:1217
+#: index.php:1274 chat.php:1274
msgid "View"
msgstr "Lihat"
-#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582
-#: chat.php:1626
+#: index.php:1280 index.php:1310 index.php:1361 index.php:1369 index.php:1639
+#: index.php:1683 chat.php:1280 chat.php:1310 chat.php:1361 chat.php:1369
+#: chat.php:1639 chat.php:1683
msgid "Change"
msgstr "Ubah"
-#: chat.php:1256
+#: index.php:1313 chat.php:1313
msgid "Register applicant"
msgstr "Tambah pemohon"
-#: chat.php:1264 chat.php:1322 chat.php:1328
+#: index.php:1321 index.php:1379 index.php:1385 chat.php:1321 chat.php:1379
+#: chat.php:1385
msgid "Register"
msgstr "Daftar"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Delete from database"
msgstr "Hapus dari basisdata"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Deny access (!)"
msgstr "Akses ditolak (!)"
-#: chat.php:1296
+#: index.php:1353 chat.php:1353
msgid "Set to applicant (SG)"
msgstr "Tetapkan menjadi pemohon (SG)"
-#: chat.php:1298
+#: index.php:1355 chat.php:1355
msgid "Set to regular member"
msgstr "Tetapkan menjadi anggota biasa"
-#: chat.php:1299
+#: index.php:1356 chat.php:1356
msgid "Set to moderator (M)"
msgstr "Tetapkan menjadi moderator (M)"
-#: chat.php:1300
+#: index.php:1357 chat.php:1357
msgid "Set to supermod (SM)"
msgstr "Tetapkan menjadi supermod (SM)"
-#: chat.php:1302
+#: index.php:1359 chat.php:1359
msgid "Set to admin (A)"
msgstr "Tetapkan menjadi admin (A)"
-#: chat.php:1314
+#: index.php:1371 chat.php:1371
msgid "Register Guest"
msgstr "Mendaftar tamu"
-#: chat.php:1324
+#: index.php:1381 chat.php:1381
msgid "Register new Member"
msgstr "Daftar anggota baru"
-#: chat.php:1332 chat.php:1408 chat.php:1595 chat.php:1636 chat.php:1710
-#: chat.php:1924
+#: index.php:1389 index.php:1465 index.php:1652 index.php:1693 index.php:1767
+#: index.php:1981 chat.php:1389 chat.php:1465 chat.php:1652 chat.php:1693
+#: chat.php:1767 chat.php:1981
msgid "Reload"
msgstr "Muat-ulang"
-#: chat.php:1345
+#: index.php:1402 chat.php:1402
msgid "Active Sessions"
msgstr "Sesi aktif"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "Nickname"
msgstr "Nama"
-#: chat.php:1346
+#: index.php:1403 chat.php:1403
msgid "Timeout in"
msgstr "Waktu habis dalam"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "User-Agent"
msgstr "User-Agent"
-#: chat.php:1350
+#: index.php:1407 chat.php:1407
msgid "IP-Address"
msgstr "Alamat-IP"
-#: chat.php:1351
+#: index.php:1408 chat.php:1408
msgid "Actions"
msgstr "Tindakan"
-#: chat.php:1393
+#: index.php:1450 chat.php:1450
msgid "Unban"
msgstr ""
-#: chat.php:1416
+#: index.php:1473 chat.php:1473
msgid "Incorrect regular expression!"
msgstr "Regular expression salah!"
-#: chat.php:1416 chat.php:1424
+#: index.php:1473 index.php:1481 chat.php:1473 chat.php:1481
#, php-format
msgid "Your match was as follows: %s"
msgstr ""
-#: chat.php:1424
+#: index.php:1481 chat.php:1481
msgid ""
"Your match was too long. You can use max. 255 characters. Try splitting it "
"up."
msgstr ""
-#: chat.php:1541 chat.php:1606
+#: index.php:1598 index.php:1663 chat.php:1598 chat.php:1663
msgid "Filter ID:"
msgstr "ID penyaring:"
-#: chat.php:1542 chat.php:1607
+#: index.php:1599 index.php:1664 chat.php:1599 chat.php:1664
msgid "Match"
msgstr "Cocok"
-#: chat.php:1543 chat.php:1608
+#: index.php:1600 index.php:1665 chat.php:1600 chat.php:1665
msgid "Replace"
msgstr "Ganti"
-#: chat.php:1544 chat.php:1578 chat.php:1589
+#: index.php:1601 index.php:1635 index.php:1646 chat.php:1601 chat.php:1635
+#: chat.php:1646
msgid "Allow in PM"
msgstr "Izinkan pada PM"
-#: chat.php:1545 chat.php:1579 chat.php:1590 chat.php:1609 chat.php:1625
-#: chat.php:1633
+#: index.php:1602 index.php:1636 index.php:1647 index.php:1666 index.php:1682
+#: index.php:1690 chat.php:1602 chat.php:1636 chat.php:1647 chat.php:1666
+#: chat.php:1682 chat.php:1690
msgid "Regex"
msgstr "Regex"
-#: chat.php:1547 chat.php:1581 chat.php:1592
+#: index.php:1604 index.php:1638 index.php:1649 chat.php:1604 chat.php:1638
+#: chat.php:1649
msgid "Case sensitive"
msgstr ""
-#: chat.php:1586 chat.php:1630
+#: index.php:1643 index.php:1687 chat.php:1643 chat.php:1687
msgid "New filter:"
msgstr "Penyaring baru:"
-#: chat.php:1593 chat.php:1634
+#: index.php:1650 index.php:1691 chat.php:1650 chat.php:1691
msgid "Add"
msgstr "Tambah"
-#: chat.php:1691
+#: index.php:1748 chat.php:1748
msgid ""
"This chat uses frames. Please enable frames in your browser or use a "
"suitable one!"
@@ -783,96 +824,99 @@ msgstr ""
"Obrolan ini menggunakan frames. Mohon aktifkan frame pada penjelajah "
"anda atau gunakan penjelajah yang cocok!"
-#: chat.php:1691 chat.php:2370 chat.php:2457
+#: index.php:1748 index.php:2429 index.php:2516 chat.php:1748 chat.php:2429
+#: chat.php:2516
msgid "Back to the login page."
msgstr "Kembali ke halaman masuk."
-#: chat.php:1709
+#: index.php:1766 chat.php:1766
msgid "Bottom"
msgstr "Bawah"
-#: chat.php:1710
+#: index.php:1767 chat.php:1767
msgid "Manual refresh required"
msgstr ""
-#: chat.php:1726
+#: index.php:1783 chat.php:1783
msgid "Top"
msgstr "Atas"
-#: chat.php:1734 chat.php:1940 chat.php:1942
+#: index.php:1791 index.php:1997 index.php:1999 chat.php:1791 chat.php:1997
+#: chat.php:1999
msgid "Delete selected messages"
msgstr "Hapus pesan terpilih"
-#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281
+#: index.php:1818 index.php:1945 index.php:2160 index.php:2340 chat.php:1818
+#: chat.php:1945 chat.php:2160 chat.php:2340
msgid "Back to the chat."
msgstr "Kembali ke obrolan."
-#: chat.php:1774 chat.php:1791
+#: index.php:1831 index.php:1848 chat.php:1831 chat.php:1848
msgid "Admin notes"
msgstr "Catatan admin"
-#: chat.php:1777 chat.php:1788
+#: index.php:1834 index.php:1845 chat.php:1834 chat.php:1845
msgid "Staff notes"
msgstr "Catatan Staf"
-#: chat.php:1811
+#: index.php:1868 chat.php:1868
msgid "Notes saved!"
msgstr "Catatan tersimpan!"
-#: chat.php:1835 chat.php:2122
+#: index.php:1892 index.php:2181 chat.php:1892 chat.php:2181
#, php-format
msgid "Last edited by %1$s at %2$s"
msgstr "Terakhir disunting oleh %1$s pada %2$s"
-#: chat.php:1848
+#: index.php:1905 chat.php:1905
msgid "Save notes"
msgstr "Simpan catatan"
-#: chat.php:1850
+#: index.php:1907 chat.php:1907
msgid "Revisions:"
msgstr "Revisi:"
-#: chat.php:1853
+#: index.php:1910 chat.php:1910
msgid "Older"
msgstr "Lama"
-#: chat.php:1857
+#: index.php:1914 chat.php:1914
msgid "Newer"
msgstr "Baru"
-#: chat.php:1868 chat.php:1914
+#: index.php:1925 index.php:1971 chat.php:1925 chat.php:1971
msgid "Waiting room"
msgstr "Ruang tunggu"
-#: chat.php:1880
+#: index.php:1937 chat.php:1937
msgid "Allow checked"
msgstr "Izinkan terpilih"
-#: chat.php:1881
+#: index.php:1938 chat.php:1938
msgid "Allow all"
msgstr "Izinkan semuanya"
-#: chat.php:1882
+#: index.php:1939 chat.php:1939
msgid "Deny checked"
msgstr "Tolak terpilih"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Deny all"
msgstr "Tolak semuanya"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Send message to denied:"
msgstr "Kirim pesan untuk menolak:"
-#: chat.php:1884
+#: index.php:1941 chat.php:1941
msgid "Submit"
msgstr "Kirim"
-#: chat.php:1886
+#: index.php:1943 chat.php:1943
msgid "No more entry requests to approve."
msgstr "Tak ada lagi permintaan masuk untuk disetujui."
-#: chat.php:1916
+#: index.php:1973 chat.php:1973
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat in %2$d "
@@ -881,7 +925,7 @@ msgstr ""
"Selamat datang %1$s, info masuk anda telah tertunda, Anda dapat mengakses "
"obrolan dalam %2$d detik."
-#: chat.php:1918
+#: index.php:1975 chat.php:1975
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat as soon, "
@@ -890,7 +934,7 @@ msgstr ""
"Selamat datang %1$s, info masuk anda telah tertunda, Anda dapat mengakses "
"obrolan segera, Sebagai moderator memungkinkan anda untuk masuk."
-#: chat.php:1921
+#: index.php:1978 chat.php:1978
#, php-format
msgid ""
"If this page doesn't refresh every %d seconds, use the button below to "
@@ -899,64 +943,69 @@ msgstr ""
"Jika halaman tidak memuat-ulang dalam %d detik, Gunakan tombol dibawah ini "
"untuk memuat-ulang secara manual!"
-#: chat.php:1926 chat.php:2339
+#: index.php:1983 index.php:2398 chat.php:1983 chat.php:2398
msgid "Exit Chat"
msgstr "Keluar dari obrolan"
-#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430
+#: index.php:1986 index.php:2133 index.php:2144 index.php:2489 chat.php:1986
+#: chat.php:2133 chat.php:2144 chat.php:2489
msgid "Rules"
msgstr "Peraturan"
-#: chat.php:1985
+#: index.php:2042 chat.php:2042
msgid "Send to"
msgstr "Kirim ke"
-#: chat.php:1990
+#: index.php:2047 chat.php:2047
msgid "All chatters"
msgstr "Semua pengobrol"
-#: chat.php:1996
+#: index.php:2053 chat.php:2053
msgid "Members only"
msgstr "Hanya member"
-#: chat.php:2003
+#: index.php:2060 chat.php:2060
msgid "Staff only"
msgstr "Hanya staf"
-#: chat.php:2010
+#: index.php:2067 chat.php:2067
msgid "Admin only"
msgstr "Hanya Admin"
-#: chat.php:2019
+#: index.php:2076 chat.php:2076
msgid "(offline)"
msgstr ""
-#: chat.php:2043
+#: index.php:2078 chat.php:2078
+msgid "(logging out)"
+msgstr ""
+
+#: index.php:2102 chat.php:2102
msgid "Also purge messages"
msgstr "Juga hapus bersih pesan"
-#: chat.php:2050
+#: index.php:2109 chat.php:2109
msgid "Delete last message"
msgstr "Hapus pesan terakhir"
-#: chat.php:2055
+#: index.php:2114 chat.php:2114
msgid "Delete all messages"
msgstr "Hapus semua pesan"
-#: chat.php:2057
+#: index.php:2116 chat.php:2116
msgid "Switch to single-line"
msgstr "Beralih ke baris-tunggal"
-#: chat.php:2059
+#: index.php:2118 chat.php:2118
msgid "Switch to multi-line"
msgstr "Beralih ke multi-baris"
-#: chat.php:2070
+#: index.php:2129 chat.php:2129
#, php-format
msgid "Welcome %s!"
msgstr ""
-#: chat.php:2071
+#: index.php:2130 chat.php:2130
#, php-format
msgid ""
"If this frame does not reload in %d seconds, you'll have to enable automatic "
@@ -967,11 +1016,11 @@ msgid ""
"bottom to refresh manually."
msgstr ""
-#: chat.php:2087
+#: index.php:2146 chat.php:2146
msgid "Help"
msgstr "Bantuan"
-#: chat.php:2088
+#: index.php:2147 chat.php:2147
msgid ""
"All functions should be pretty much self-explaining, just use the buttons. "
"In your profile you can adjust the refresh rate and font colour, as well as "
@@ -984,7 +1033,7 @@ msgstr ""
"jadi jika Anda tidak ikut dalam obrolan, Anda akan otomatis dikeluarkan dari "
"obrolan dalam jangka waktu yang sudah ditentukan."
-#: chat.php:2090
+#: index.php:2149 chat.php:2149
msgid ""
"If you want to embed an image in your post, simply put [img] in front of "
"your image URL. Example: [img]http://example.com/images/file.jpg will embed "
@@ -994,7 +1043,7 @@ msgstr ""
"url gambar. Contoh: [img]http://example.com/images/file.jpg akan menyisipkan "
"gambar pada pos anda."
-#: chat.php:2093
+#: index.php:2152 chat.php:2152
msgid ""
"Members: You'll have some more options in your profile. You can adjust your "
"font face, change your password anytime and of course you can delete your "
@@ -1003,7 +1052,7 @@ msgstr ""
"Anggota: Anda akan memiliki beberapa pilihan di profil Anda. Anda dapat "
"menyesuaikan font dan dapat mengubah kata sandi kapan saja."
-#: chat.php:2095
+#: index.php:2154 chat.php:2154
msgid ""
"Moderators: Notice the Admin-button at the bottom. It'll bring up a page "
"where you can clean the room, kick chatters, view all active sessions and "
@@ -1013,7 +1062,7 @@ msgstr ""
"halaman dimana Anda dapat membersihkan ruangan, mengusir pengobrol, melihat "
"semua sesi aktif dan mematikan semua hak akses tamu jika diperlukan."
-#: chat.php:2097
+#: index.php:2156 chat.php:2156
msgid ""
"Admins: You'll be furthermore able to register guests, edit members and "
"register new nicknames."
@@ -1021,480 +1070,495 @@ msgstr ""
"Admin: Anda dapat lebih jauh lagi bisa mendaftarkan tamu, menyunting anggota "
"dan mendaftarkan nama baru tanpa mereka berada di ruangan."
-#: chat.php:2135
+#: index.php:2194 chat.php:2194
msgid "Your Profile"
msgstr "Profil Anda"
-#: chat.php:2144
+#: index.php:2203 chat.php:2203
msgid "Don't ignore anymore"
msgstr "Tak setuju apapun"
-#: chat.php:2152
+#: index.php:2211 chat.php:2211
msgid "Ignore"
msgstr "Setuju"
-#: chat.php:2163
+#: index.php:2222 chat.php:2222
#, php-format
msgid "Refresh rate (%1$d-%2$d seconds)"
msgstr "Kecepatan penyegaran (%1$d-%2$d detik)"
-#: chat.php:2167 chat.php:2170
+#: index.php:2226 index.php:2229 chat.php:2226 chat.php:2229
msgid "View examples"
msgstr "Lihat contoh"
-#: chat.php:2174
+#: index.php:2233 chat.php:2233
msgid "Fontface"
msgstr "Jenis font"
-#: chat.php:2175
+#: index.php:2234 chat.php:2234
msgid "Room Default"
msgstr "Ruang bawaan"
-#: chat.php:2188
+#: index.php:2247 chat.php:2247
msgid "Bold"
msgstr "Tebal"
-#: chat.php:2192
+#: index.php:2251 chat.php:2251
msgid "Italic"
msgstr "Miring"
-#: chat.php:2196
+#: index.php:2255 chat.php:2255
msgid "Small"
msgstr ""
-#: chat.php:2199
+#: index.php:2258 chat.php:2258
msgid "Example for your chosen font"
msgstr "Contoh untuk font yang anda pilih"
-#: chat.php:2203
+#: index.php:2262 chat.php:2262
msgid "Autoscroll (for old browsers or top-to-bottom sort)."
msgstr ""
-#: chat.php:2234
+#: index.php:2293 chat.php:2293
msgid "For everyone"
msgstr ""
-#: chat.php:2239
+#: index.php:2298 chat.php:2298
msgid "For members only"
msgstr ""
-#: chat.php:2244
+#: index.php:2303 chat.php:2303
msgid "For staff only"
msgstr ""
-#: chat.php:2248
+#: index.php:2307 chat.php:2307
msgid "Time zone"
msgstr ""
-#: chat.php:2261
+#: index.php:2320 chat.php:2320
msgid "Change Password"
msgstr "Ubah kata sandi"
-#: chat.php:2263
+#: index.php:2322 chat.php:2322
msgid "Old password:"
msgstr "Kata sandi lama:"
-#: chat.php:2264
+#: index.php:2323 chat.php:2323
msgid "New password:"
msgstr "Kata sandi baru:"
-#: chat.php:2265
+#: index.php:2324 chat.php:2324
msgid "Confirm new password:"
msgstr "Konfirmasi kata sandi baru:"
-#: chat.php:2268
+#: index.php:2327 chat.php:2327
msgid "Change Nickname"
msgstr ""
-#: chat.php:2269
+#: index.php:2328 chat.php:2328
msgid "New nickname:"
msgstr "Nama baru:"
-#: chat.php:2273
+#: index.php:2332 chat.php:2332
msgid "Save changes"
msgstr "Simpan perubahan"
-#: chat.php:2275
+#: index.php:2334 chat.php:2334
msgid "Delete account"
msgstr ""
-#: chat.php:2301
+#: index.php:2360 chat.php:2360
msgid "Reload Post Box"
msgstr "Muat-ulang kotak pos"
-#: chat.php:2304
+#: index.php:2363 chat.php:2363
msgid "Reload Messages"
msgstr "Muat-ulang pesan"
-#: chat.php:2307
+#: index.php:2366 chat.php:2366
msgid "Profile"
msgstr "Profil"
-#: chat.php:2311 chat.php:2528
+#: index.php:2370 index.php:2590 chat.php:2370 chat.php:2590
msgid "Admin"
msgstr "Admin"
-#: chat.php:2318
+#: index.php:2377 chat.php:2377
msgid "View public notes"
msgstr "Baca catatan terbuka"
-#: chat.php:2325
+#: index.php:2384 chat.php:2384
msgid "Clone"
msgstr "Klon"
-#: chat.php:2334
+#: index.php:2393 chat.php:2393
msgid "Rearrange"
msgstr ""
-#: chat.php:2337
+#: index.php:2396 chat.php:2396
msgid "Rules & Help"
msgstr "Peraturan & Bantuan"
-#: chat.php:2358 chat.php:2362
+#: index.php:2417 index.php:2421 chat.php:2417 chat.php:2421
msgid "File not found!"
msgstr ""
-#: chat.php:2370
+#: index.php:2429 chat.php:2429
#, php-format
msgid "Bye %s, visit again soon!"
msgstr "Dah %s, Kunjungi lagi nanti!"
-#: chat.php:2377
+#: index.php:2436 chat.php:2436
msgid "Colourtable"
msgstr "Tabel warna"
-#: chat.php:2388
+#: index.php:2447 chat.php:2447
msgid "Back to your Profile"
msgstr "Kembali ke profil anda"
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "Repeat password to register"
msgstr ""
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "(optional)"
msgstr ""
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Guests, choose a colour:"
msgstr "Silahkan pilih warna:"
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Random Colour"
msgstr "Warna acak"
-#: chat.php:2421 chat.php:2435 chat.php:2569
+#: index.php:2480 index.php:2494 index.php:2631 chat.php:2480 chat.php:2494
+#: chat.php:2631
msgid "Sorry, currently members only!"
msgstr "Maaf, saat ini hanya anggota!"
-#: chat.php:2423 chat.php:2437
+#: index.php:2482 index.php:2496 chat.php:2482 chat.php:2496
msgid "Enter Chat"
msgstr "Masuk obrolan"
-#: chat.php:2457
+#: index.php:2516 chat.php:2516
#, php-format
msgid "Error: %s"
msgstr "Kesalahan: %s"
-#: chat.php:2467
+#: index.php:2526 chat.php:2526
msgid "Fatal error"
msgstr ""
-#: chat.php:2470
+#: index.php:2529 chat.php:2529
#, php-format
msgid "Fatal error: %s"
msgstr ""
-#: chat.php:2482 chat.php:2693
+#: index.php:2541 index.php:2756 chat.php:2541 chat.php:2756
msgid "Failed login attempt(s)"
msgstr "Upaya log masuk gagal"
-#: chat.php:2489
+#: index.php:2548 chat.php:2548
#, php-format
msgid "Read %d messages in your inbox"
msgstr ""
-#: chat.php:2498
+#: index.php:2557 chat.php:2557
#, php-format
msgid "%d new guests to approve"
msgstr "%d tamu baru untuk disetujui"
-#: chat.php:2530
+#: index.php:2577 chat.php:2577
+msgid "logging out"
+msgstr ""
+
+#: index.php:2592 chat.php:2592
msgid "Admin:"
msgstr "Admin:"
-#: chat.php:2533
+#: index.php:2595 chat.php:2595
msgid "Staff"
msgstr "Staf"
-#: chat.php:2535
+#: index.php:2597 chat.php:2597
msgid "Staff:"
msgstr "Staf:"
-#: chat.php:2540
+#: index.php:2602 chat.php:2602
msgid "Members:"
msgstr "Anggota:"
-#: chat.php:2542
+#: index.php:2604 chat.php:2604
msgid "Guests"
msgstr "Tamu"
-#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092
+#: index.php:2625 index.php:3063 index.php:3267 index.php:4172 chat.php:2625
+#: chat.php:3063 chat.php:3267 chat.php:4172
#, php-format
msgid ""
"Invalid nickname (%1$d characters maximum and has to match the regular "
"expression \"%2$s\")"
msgstr ""
-#: chat.php:2566 chat.php:2996 chat.php:3162 chat.php:4094
+#: index.php:2628 index.php:3066 index.php:3232 index.php:4174 chat.php:2628
+#: chat.php:3066 chat.php:3232 chat.php:4174
#, php-format
msgid ""
"Invalid password (At least %1$d characters and has to match the regular "
"expression \"%2$s\")"
msgstr ""
-#: chat.php:2574 chat.php:2739
+#: index.php:2636 index.php:2806 chat.php:2636 chat.php:2806
msgid "Wrong global Password!"
msgstr "Kata sani global salah!"
-#: chat.php:2591 chat.php:2612
+#: index.php:2654 index.php:2675 chat.php:2654 chat.php:2675
msgid "Wrong Captcha"
msgstr "Captcha salah"
-#: chat.php:2596 chat.php:2604
+#: index.php:2659 index.php:2667 chat.php:2659 chat.php:2667
msgid "Captcha already used or timed out."
msgstr "Captcha sudah digunakan atau kadaluarsa."
-#: chat.php:2652
+#: index.php:2715 chat.php:2715
msgid "A user with this nickname is already logged in."
msgstr ""
-#: chat.php:2652 chat.php:2933 chat.php:3176
+#: index.php:2715 index.php:3003 index.php:3246 chat.php:2715 chat.php:3003
+#: chat.php:3246
msgid "Wrong Password!"
msgstr "Kata sandi salah!"
-#: chat.php:2696
+#: index.php:2759 chat.php:2759
msgid "Dismiss"
msgstr "Mengakui"
-#: chat.php:2747 chat.php:3171 chat.php:4096
+#: index.php:2814 index.php:3241 index.php:4176 chat.php:2814 chat.php:3241
+#: chat.php:4176
msgid "Password confirmation does not match!"
msgstr "Konfirmasi kata sandi tidak cocok!"
-#: chat.php:2859
+#: index.php:2854 chat.php:2854
+#, fuzzy
+#| msgid "Kickmessage:"
+msgid "no kick message"
+msgstr "Pesan pengusiran:"
+
+#: index.php:2929 chat.php:2929
msgid "Invalid/expired session"
msgstr "Sesi salah/kadaluarsa"
-#: chat.php:2875 chat.php:3412
+#: index.php:2945 index.php:3483 chat.php:2945 chat.php:3483
msgid "You have been kicked!"
msgstr "Diusir!"
-#: chat.php:2885
+#: index.php:2955 chat.php:2955
#, php-format
msgid "Currently %d chatter(s) in room:"
msgstr "Sekarang terdapat %d pengobrol di ruangan:"
-#: chat.php:2933
+#: index.php:3003 chat.php:3003
msgid "This nickname is a registered member."
msgstr ""
-#: chat.php:2960 chat.php:3001
+#: index.php:3030 index.php:3071 chat.php:3030 chat.php:3071
#, php-format
msgid "%s is already registered."
msgstr "%s sudah terdaftar."
-#: chat.php:2969 chat.php:2990
+#: index.php:3039 index.php:3060 chat.php:3039 chat.php:3060
#, php-format
msgid "Can't register %s"
msgstr "Tak bisa mendaftarkan %s"
-#: chat.php:2978 chat.php:3023
+#: index.php:3048 index.php:3093 chat.php:3048 chat.php:3093
#, php-format
msgid "%s successfully registered."
msgstr "%s berhasil terdaftar."
-#: chat.php:3031 chat.php:3036
+#: index.php:3101 index.php:3106 chat.php:3101 chat.php:3106
#, php-format
msgid "Can't change status of %s"
msgstr "Tak dapat mengganti status dari %s"
-#: chat.php:3047
+#: index.php:3117 chat.php:3117
#, php-format
msgid "%s successfully deleted from database."
msgstr "%s berhasil dihapus dari basisdata."
-#: chat.php:3056
+#: index.php:3126 chat.php:3126
#, php-format
msgid "Status of %s successfully changed."
msgstr "Status dari %s berhasil dirubah."
-#: chat.php:3073
+#: index.php:3143 chat.php:3143
#, php-format
msgid "Successfully reset password for %s"
msgstr ""
-#: chat.php:3075
+#: index.php:3145 chat.php:3145
#, php-format
msgid "Can't reset password for %s"
msgstr ""
-#: chat.php:3190
+#: index.php:3260 chat.php:3260
msgid "Your profile has successfully been saved."
msgstr "Profil anda sudah berhasil disimpan."
-#: chat.php:3202
+#: index.php:3272 chat.php:3272
msgid "Nickname is already taken"
msgstr "Nama sudah ada"
-#: chat.php:3714
+#: index.php:3785 chat.php:3785
msgid "system message"
msgstr "pesan dari sistem"
-#: chat.php:3921
+#: index.php:4001 chat.php:4001
msgid "Beige"
msgstr "Krem"
-#: chat.php:3922
+#: index.php:4002 chat.php:4002
msgid "Black"
msgstr "Hitam"
-#: chat.php:3923
+#: index.php:4003 chat.php:4003
msgid "Blue"
msgstr "Biru"
-#: chat.php:3924
+#: index.php:4004 chat.php:4004
msgid "Blue violet"
msgstr "Lembayung biru"
-#: chat.php:3925
+#: index.php:4005 chat.php:4005
msgid "Brown"
msgstr "Coklat"
-#: chat.php:3926
+#: index.php:4006 chat.php:4006
msgid "Cyan"
msgstr "Sian"
-#: chat.php:3927
+#: index.php:4007 chat.php:4007
msgid "Dark blue"
msgstr "Biru tua"
-#: chat.php:3928
+#: index.php:4008 chat.php:4008
msgid "Dark green"
msgstr "Hihau tua"
-#: chat.php:3929
+#: index.php:4009 chat.php:4009
msgid "Dark red"
msgstr "Merah tua"
-#: chat.php:3930
+#: index.php:4010 chat.php:4010
msgid "Dark violet"
msgstr "Lembayung tua"
-#: chat.php:3931
+#: index.php:4011 chat.php:4011
msgid "Sky blue"
msgstr "Biru langit"
-#: chat.php:3932
+#: index.php:4012 chat.php:4012
msgid "Gold"
msgstr "Emas"
-#: chat.php:3933
+#: index.php:4013 chat.php:4013
msgid "Grey"
msgstr "Abu-abu"
-#: chat.php:3934
+#: index.php:4014 chat.php:4014
msgid "Green"
msgstr "Hijau"
-#: chat.php:3935
+#: index.php:4015 chat.php:4015
msgid "Hot pink"
msgstr "Merah jambu"
-#: chat.php:3936
+#: index.php:4016 chat.php:4016
msgid "Indigo"
msgstr "Nila"
-#: chat.php:3937
+#: index.php:4017 chat.php:4017
msgid "Light blue"
msgstr "Biru muda"
-#: chat.php:3938
+#: index.php:4018 chat.php:4018
msgid "Light green"
msgstr "Hijau muda"
-#: chat.php:3939
+#: index.php:4019 chat.php:4019
msgid "Lime green"
msgstr "Hijau limu"
-#: chat.php:3940
+#: index.php:4020 chat.php:4020
msgid "Magenta"
msgstr "Magenta"
-#: chat.php:3941
+#: index.php:4021 chat.php:4021
msgid "Olive"
msgstr "Zaitun"
-#: chat.php:3942
+#: index.php:4022 chat.php:4022
msgid "Orange"
msgstr "Jingga"
-#: chat.php:3943
+#: index.php:4023 chat.php:4023
msgid "Orange red"
msgstr "Merah jingga"
-#: chat.php:3944
+#: index.php:4024 chat.php:4024
msgid "Purple"
msgstr "Ungu"
-#: chat.php:3945
+#: index.php:4025 chat.php:4025
msgid "Red"
msgstr "Merah"
-#: chat.php:3946
+#: index.php:4026 chat.php:4026
msgid "Royal blue"
msgstr "Biru royal"
-#: chat.php:3947
+#: index.php:4027 chat.php:4027
msgid "Sea green"
msgstr "Hijau laut"
-#: chat.php:3948
+#: index.php:4028 chat.php:4028
msgid "Sienna"
msgstr "Sienna"
-#: chat.php:3949
+#: index.php:4029 chat.php:4029
msgid "Silver"
msgstr "Perak"
-#: chat.php:3950
+#: index.php:4030 chat.php:4030
msgid "Tan"
msgstr "Kecoklatan"
-#: chat.php:3951
+#: index.php:4031 chat.php:4031
msgid "Teal"
msgstr "Teal"
-#: chat.php:3952
+#: index.php:4032 chat.php:4032
msgid "Violet"
msgstr "Lembayung"
-#: chat.php:3953
+#: index.php:4033 chat.php:4033
msgid "White"
msgstr "Putih"
-#: chat.php:3954
+#: index.php:4034 chat.php:4034
msgid "Yellow"
msgstr "Kuning"
-#: chat.php:3955
+#: index.php:4035 chat.php:4035
msgid "Yellow green"
msgstr "Hjau kuning"
-#: chat.php:4077
+#: index.php:4157 chat.php:4157
msgid "Successfully destroyed chat"
msgstr "Berhasil memusnahkan obrolan"
-#: chat.php:4086
+#: index.php:4166 chat.php:4166
msgid ""
"Database tables already exist! To continue, you have to delete these tables "
"manually first."
@@ -1502,110 +1566,117 @@ msgstr ""
"Tabel basisdata sudah ada! Untuk melanjutkan, Anda harus menghapus tabel ini "
"secara manual terlebih dahulu."
-#: chat.php:4089
+#: index.php:4169 chat.php:4169
msgid "A Superadmin already exists!"
msgstr "Superadmin sudah ada!"
-#: chat.php:4182 chat.php:4369
+#: index.php:4263 index.php:4451 chat.php:4263 chat.php:4451
#, php-format
msgid "%s - "
msgstr "%s - "
-#: chat.php:4183 chat.php:4369
+#: index.php:4264 index.php:4451 chat.php:4264 chat.php:4451
#, php-format
msgid "[M] %s - "
msgstr "[M] %s - "
-#: chat.php:4184 chat.php:4369
+#: index.php:4265 index.php:4451 chat.php:4265 chat.php:4451
#, php-format
msgid "[Staff] %s - "
msgstr "[Staf] %s - "
-#: chat.php:4185 chat.php:4369
+#: index.php:4266 index.php:4451 chat.php:4266 chat.php:4451
#, php-format
msgid "[Admin] %s - "
msgstr "[Admin] %s - "
-#: chat.php:4186 chat.php:4369
+#: index.php:4267 index.php:4451 chat.php:4267 chat.php:4451
#, php-format
msgid "[%1$s to %2$s] - "
msgstr "[%1$s ke %2$s] - "
-#: chat.php:4187
+#: index.php:4268 chat.php:4268
#, php-format
msgid "%s entered the chat."
msgstr "%s memasuki obrolan."
-#: chat.php:4188
+#: index.php:4269 chat.php:4269
#, php-format
msgid "%s left the chat."
msgstr "%s keluar dari obrolan."
-#: chat.php:4189
+#: index.php:4270 chat.php:4270
#, php-format
msgid "%s is now a registered member."
msgstr "%s sekarang adalah anggota terdaftar."
-#: chat.php:4190
+#: index.php:4271 chat.php:4271
#, php-format
msgid "%s is now a registered applicant."
msgstr "%s sekarang adalah pemohon terdaftar."
-#: chat.php:4191
-#, php-format
-msgid "%s has been kicked."
+#: index.php:4272 chat.php:4272
+#, fuzzy, php-format
+#| msgid "%s has been kicked."
+msgid "%1$s has been kicked: %2$s"
msgstr "%s sudah diusir."
-#: chat.php:4192
-#, php-format
-msgid "%s have been kicked."
+#: index.php:4273 chat.php:4273
+#, fuzzy, php-format
+#| msgid "%s have been kicked."
+msgid "%1$s have been kicked: %2$s"
msgstr "%s telah diusir."
-#: chat.php:4193
-msgid "All guests have been kicked."
+#: index.php:4274 chat.php:4274
+#, fuzzy, php-format
+#| msgid "All guests have been kicked."
+msgid "All guests have been kicked: %1$s"
msgstr "Semua pengobrol sudah diusir."
-#: chat.php:4194
+#: index.php:4275 chat.php:4275
#, php-format
msgid "%s has been cleaned."
msgstr "%s sudah dibersihkan."
-#: chat.php:4202 chat.php:4396
+#: index.php:4283 index.php:4478 chat.php:4283 chat.php:4478
msgid "Temporarily disabled"
msgstr ""
-#: chat.php:4218 chat.php:4594
+#: index.php:4299 index.php:4676 chat.php:4299 chat.php:4676
msgid "A chat community"
msgstr ""
-#: chat.php:4256
+#: index.php:4338 chat.php:4338
msgid "Successfully registered!"
msgstr "Berhasil terdaftar!"
-#: chat.php:4522 chat.php:4721 chat.php:4728
+#: index.php:4604 index.php:4807 index.php:4814 chat.php:4604 chat.php:4807
+#: chat.php:4814
msgid "No connection to database!"
msgstr "Tak ada sambungan ke basisdata!"
-#: chat.php:4531
+#: index.php:4613 chat.php:4613
msgid ""
"Note: Default CSS is now hardcoded and can be removed from the CSS setting"
msgstr ""
-#: chat.php:4611
+#: index.php:4697 chat.php:4697
#, php-format
msgid ""
"The %s extension of PHP is required for the encryption feature. Please "
"install it first or set the encrypted setting back to false."
msgstr ""
-#: chat.php:4684 chat.php:4689 chat.php:4694
+#: index.php:4770 index.php:4775 index.php:4780 chat.php:4770 chat.php:4775
+#: chat.php:4780
#, php-format
msgid ""
"The %s extension of PHP is required for the selected database driver. Please "
"install it first."
msgstr ""
-#: chat.php:4707 chat.php:4715 chat.php:4719 chat.php:4726
+#: index.php:4793 index.php:4801 index.php:4805 index.php:4812 chat.php:4793
+#: chat.php:4801 chat.php:4805 chat.php:4812
msgid ""
"No connection to database, please create a database and edit the script to "
"use the correct database with given username and password!"
@@ -1614,7 +1685,7 @@ msgstr ""
"ini agar menggunakan basisdata yang benar dengan nama pengguna dan kata "
"sandi yang telah diberikan!"
-#: chat.php:4734
+#: index.php:4820 chat.php:4820
msgid ""
"The memcached extension of PHP is required for the caching feature. Please "
"install it first or set the memcached setting back to false."
diff --git a/locale/it_IT/LC_MESSAGES/le-chat-php.po b/locale/it_IT/LC_MESSAGES/le-chat-php.po
index 5a3e1d2..8ef3354 100644
--- a/locale/it_IT/LC_MESSAGES/le-chat-php.po
+++ b/locale/it_IT/LC_MESSAGES/le-chat-php.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-01-18 21:32+0100\n"
+"POT-Creation-Date: 2025-03-29 17:02+0100\n"
"PO-Revision-Date: 2023-01-18 21:38+0100\n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -18,263 +18,269 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.1.1\n"
-#: chat.php:261
+#: index.php:272 chat.php:272
msgid "Enable applicants"
msgstr "Accettare ospiti"
-#: chat.php:262
+#: index.php:273 index.php:2267 chat.php:273 chat.php:2267
msgid "Embed images"
msgstr "Incollare immagine"
-#: chat.php:263 chat.php:2202
+#: index.php:274 index.php:2261 chat.php:274 chat.php:2261
msgid "Show Timestamps"
msgstr "Visualizzare il tempo"
-#: chat.php:264
+#: index.php:275 chat.php:275
msgid "Show session-IP"
msgstr "Visualizzare IP-sessione"
-#: chat.php:265
+#: index.php:276 chat.php:276
msgid "Members can kick, if no moderator is present"
msgstr "Membri possono espellere, se non è presente moderatore"
-#: chat.php:266
+#: index.php:277 chat.php:277
msgid "Members can always kick"
msgstr "Membri sempre possono espellere"
-#: chat.php:267
+#: index.php:278 chat.php:278
msgid "Force redirection"
msgstr "Riendirizzamento forzato"
-#: chat.php:268
+#: index.php:279 index.php:2270 chat.php:279 chat.php:2270
msgid "Incognito mode"
msgstr "Modalità incognito"
-#: chat.php:269
+#: index.php:280 chat.php:280
msgid "Send mail on new public message"
msgstr "Mandare messaggio come nuovo pubblico"
-#: chat.php:270
+#: index.php:281 chat.php:281
msgid "Fallback to waiting room, if no moderator is present to approve guests"
msgstr "Tornare nella stanza di attesa, se non è presente moderatore"
-#: chat.php:271
+#: index.php:282 chat.php:282
msgid "Disable private messages"
msgstr "Disabilitare mess. privati"
-#: chat.php:272 chat.php:2223
+#: index.php:283 index.php:2282 chat.php:283 chat.php:2282
msgid "Enable offline inbox"
msgstr "Abilitare offline-posta"
-#: chat.php:273
+#: index.php:284 chat.php:284
msgid "Show a greeting message before showing the messages"
msgstr "Visualizzare benvenuto prima del ultimo messaggio"
-#: chat.php:274 chat.php:2204
+#: index.php:285 index.php:2263 chat.php:285 chat.php:2263
msgid "Sort messages from top to bottom"
msgstr "Riordinare messaggi dal alto in basso"
-#: chat.php:275 chat.php:2205
+#: index.php:286 index.php:2264 chat.php:286 chat.php:2264
msgid "Hide list of chatters"
msgstr "Nascondere lista dei partecipanti"
-#: chat.php:276 chat.php:1780 chat.php:1794
+#: index.php:287 index.php:1837 index.php:1851 chat.php:287 chat.php:1837
+#: chat.php:1851
msgid "Personal notes"
msgstr "Appunti personali"
-#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110
+#: index.php:288 index.php:1840 index.php:1854 index.php:2169 chat.php:288
+#: chat.php:1840 chat.php:1854 chat.php:2169
msgid "Public notes"
msgstr "Appunti pubbliche"
-#: chat.php:278
+#: index.php:289 chat.php:289
msgid "Apply kick filter on moderators"
msgstr "Utlizzare filtro di esclusione per moderatori"
-#: chat.php:279
+#: index.php:290 chat.php:290
msgid "Show who kicks people or purges all messages."
msgstr "Mostra chi espelle le persone o elimina tutti i messaggi."
-#: chat.php:280
+#: index.php:291 chat.php:291
msgid "Hide reload post box button"
msgstr ""
-#: chat.php:281
+#: index.php:292 chat.php:292
msgid "Hide reload messages button"
msgstr ""
-#: chat.php:282
+#: index.php:293 chat.php:293
msgid "Hide profile button"
msgstr ""
-#: chat.php:283
+#: index.php:294 chat.php:294
msgid "Hide admin button"
msgstr ""
-#: chat.php:284
+#: index.php:295 chat.php:295
msgid "Hide notes button"
msgstr ""
-#: chat.php:285
+#: index.php:296 chat.php:296
msgid "Hide clone button"
msgstr ""
-#: chat.php:286
+#: index.php:297 chat.php:297
msgid "Hide rearrange button"
msgstr ""
-#: chat.php:287
+#: index.php:298 chat.php:298
msgid "Hide help button"
msgstr ""
-#: chat.php:288
+#: index.php:299 chat.php:299
msgid "Apply postbox delete button globally"
msgstr ""
-#: chat.php:289
+#: index.php:300 chat.php:300
msgid "Allow enhancing functionality with JavaScript"
msgstr ""
-#: chat.php:292 chat.php:2170
+#: index.php:303 index.php:2229 chat.php:303 chat.php:2229
msgid "Background colour"
msgstr "Colore sfondo"
-#: chat.php:293 chat.php:2167
+#: index.php:304 index.php:2226 chat.php:304 chat.php:2226
msgid "Font colour"
msgstr "Colore carattere"
-#: chat.php:296
+#: index.php:307 chat.php:307
msgid "Entrance"
msgstr "Entrata"
-#: chat.php:297
+#: index.php:308 chat.php:308
msgid "Leaving"
msgstr "Uscita"
-#: chat.php:298
+#: index.php:309 chat.php:309
msgid "Member registered"
msgstr "Registarto"
-#: chat.php:299
+#: index.php:310 chat.php:310
msgid "Applicant registered"
msgstr "Richiedente registrato"
-#: chat.php:300
+#: index.php:311 chat.php:311
msgid "Kicked"
msgstr "Bannato"
-#: chat.php:301
+#: index.php:312 chat.php:312
msgid "Multiple kicked"
msgstr "Bannati più volte"
-#: chat.php:302
+#: index.php:313 chat.php:313
msgid "All kicked"
msgstr "Tutti bannati"
-#: chat.php:303
+#: index.php:314 chat.php:314
msgid "Room cleaned"
msgstr "Pulizia chat"
-#: chat.php:304
+#: index.php:315 chat.php:315
msgid "Message to all"
msgstr "Messaggio a tutti"
-#: chat.php:305
+#: index.php:316 chat.php:316
msgid "Message to members only"
msgstr "Messaggio ai membri"
-#: chat.php:306
+#: index.php:317 chat.php:317
msgid "Message to staff only"
msgstr "Messaggio solo ai moderatori"
-#: chat.php:307
+#: index.php:318 chat.php:318
msgid "Message to admins only"
msgstr "Messaggio solo al amministratore"
-#: chat.php:308
+#: index.php:319 chat.php:319
msgid "Private message"
msgstr "Messaggio privato"
-#: chat.php:309
+#: index.php:320 chat.php:320
msgid "Attachement"
msgstr "Annotazione"
-#: chat.php:312
+#: index.php:323 chat.php:323
msgid "Member timeout (minutes)"
msgstr "Time-Out membri (minuti)"
-#: chat.php:313
+#: index.php:324 chat.php:324
msgid "Guest timeout (minutes)"
msgstr "Time-out ospiti (minuti)"
-#: chat.php:314
+#: index.php:325 chat.php:325
msgid "Kick penalty (minutes)"
msgstr "Ban (minuti)"
-#: chat.php:315
+#: index.php:326 chat.php:326
msgid "Waiting room time (seconds)"
msgstr "Tempo di attesa stanza ospiti (secondi)"
-#: chat.php:316
+#: index.php:327 chat.php:327
+msgid "Logout delay (seconds)"
+msgstr ""
+
+#: index.php:328 chat.php:328
msgid "Captcha timeout (seconds)"
msgstr "Time-Out Captcha (secondi)"
-#: chat.php:317
+#: index.php:329 chat.php:329
msgid "Message timeout (minutes)"
msgstr "Time-Out messaggi (minuti)"
-#: chat.php:318
+#: index.php:330 chat.php:330
msgid "Message limit (public)"
msgstr "Limite messaggi (pubblici)"
-#: chat.php:319
+#: index.php:331 chat.php:331
msgid "Maximal message length"
msgstr "Lunghezza massimale dei messaggi"
-#: chat.php:320
+#: index.php:332 chat.php:332
msgid "Maximal nickname length"
msgstr "Lunghezza nome massimale"
-#: chat.php:321
+#: index.php:333 chat.php:333
msgid "Minimal password length"
msgstr "Lunghezza minima password"
-#: chat.php:322
+#: index.php:334 chat.php:334
msgid "Default message reload time (seconds)"
msgstr "In predefinito tempo di ricarica (secondi)"
-#: chat.php:323
+#: index.php:335 chat.php:335
msgid "Number of notes revisions to keep"
msgstr "Numero per salvare"
-#: chat.php:324
+#: index.php:336 chat.php:336
msgid "Maximum upload size in KB"
msgstr "Dimensione massima del file KB"
-#: chat.php:325
+#: index.php:337 chat.php:337
msgid "Enable file uploads"
msgstr "Abilitare upload dei file"
-#: chat.php:326
+#: index.php:338 chat.php:338
msgid "Lowest refresh rate"
msgstr ""
-#: chat.php:327
+#: index.php:339 chat.php:339
msgid "Highest refresh rate"
msgstr ""
-#: chat.php:330
+#: index.php:342 chat.php:342
msgid "Rules (html)"
msgstr "Regole (html)"
-#: chat.php:331
+#: index.php:343 chat.php:343
msgid "CSS Style"
msgstr "CSS stili"
-#: chat.php:332
+#: index.php:344 chat.php:344
msgid "Chat disabled message (html)"
msgstr "Messaggio di chat disabilitata (html)"
-#: chat.php:335
+#: index.php:347 chat.php:347
msgid ""
"Date "
@@ -284,458 +290,490 @@ msgstr ""
"php#refsect1-function.date-parameters\" rel=\"noopener noreferrer\">Fuso "
"Orario"
-#: chat.php:336
+#: index.php:348 chat.php:348
msgid "Characters used in Captcha"
msgstr "Simboli, utilizzati in Captcha"
-#: chat.php:337
+#: index.php:349 chat.php:349
msgid "Custom redirection script"
msgstr "Riendirizzamento forzato membri"
-#: chat.php:338
+#: index.php:350 chat.php:350
msgid "Chat name"
msgstr "Nome Chat"
-#: chat.php:339
+#: index.php:351 chat.php:351
msgid "Send mail using this address"
msgstr "Mandare messaggio utilizzando questo indirizzo"
-#: chat.php:340
+#: index.php:352 chat.php:352
msgid "Send mail to this address"
msgstr "Mandare messaggio a questo indirizzo"
-#: chat.php:341
+#: index.php:353 chat.php:353
msgid "Nickname regex"
msgstr ""
-#: chat.php:342
+#: index.php:354 chat.php:354
msgid "Password regex"
msgstr ""
-#: chat.php:343
+#: index.php:355 chat.php:355
msgid "Link to external CSS file (on your own server)"
msgstr "Link per CSS esterno"
-#: chat.php:344
+#: index.php:356 chat.php:356
msgid "Meta description (best 50 - 160 characters for SEO)"
msgstr ""
-#: chat.php:345
+#: index.php:357 chat.php:357
+msgid "Show this text when a user's logout is delayed"
+msgstr ""
+
+#: index.php:358 chat.php:358
msgid "Prepend this text to system messages"
msgstr "Questo testo precede i messaggi del sistema"
-#: chat.php:348 chat.php:728 chat.php:1225
+#: index.php:361 index.php:780 index.php:1282 chat.php:361 chat.php:780
+#: chat.php:1282
msgid "Change Guestaccess"
msgstr "Cambia entrata nella chat"
-#: chat.php:349
+#: index.php:362 chat.php:362
msgid "Enable global Password"
msgstr ""
-#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433
+#: index.php:363 index.php:810 index.php:2474 index.php:2492 chat.php:363
+#: chat.php:810 chat.php:2474 chat.php:2492
msgid "Global Password:"
msgstr "Password globale:"
-#: chat.php:351 chat.php:819
+#: index.php:364 index.php:871 chat.php:364 chat.php:871
msgid "Captcha"
msgstr "Captcha"
-#: chat.php:352 chat.php:775 chat.php:835
+#: index.php:365 index.php:827 index.php:887 chat.php:365 chat.php:827
+#: chat.php:887
msgid "Only for guests"
msgstr "Solo per ospiti"
-#: chat.php:353 chat.php:1220
+#: index.php:366 index.php:1277 chat.php:366 chat.php:1277
msgid "Topic"
msgstr "Tema"
-#: chat.php:354 chat.php:781
+#: index.php:367 index.php:833 chat.php:367 chat.php:833
msgid "Let guests register themselves"
msgstr "Permettere di registrarsi agli ospiti"
-#: chat.php:355 chat.php:862
+#: index.php:368 index.php:919 chat.php:368 chat.php:919
msgid "Default time zone"
msgstr "Fus orario predefinito"
-#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259
+#: index.php:581 index.php:1157 index.php:4158 index.php:4341 chat.php:581
+#: chat.php:1157 chat.php:4158 chat.php:4341
msgid "Initial Setup"
msgstr "Impostazioni iniziali"
-#: chat.php:588
+#: index.php:601 chat.php:601
#, php-format
msgid "Redirecting to: %s"
msgstr "Riendirizzamento su: %s"
-#: chat.php:595
+#: index.php:608 chat.php:608
#, php-format
msgid ""
"Dangerous non-http link requested, copy paste this link if you are really "
"sure: %s"
msgstr ""
-#: chat.php:597
+#: index.php:610 chat.php:610
#, php-format
msgid "Non-http link requested: %s"
msgstr "Url richiesto non è http: %s"
-#: chat.php:599
+#: index.php:612 chat.php:612
#, php-format
msgid "If it's not working, try this one: %s"
msgstr "Se non funziona prova questo: %s"
-#: chat.php:609
+#: index.php:622 chat.php:622
msgid "Access denied"
msgstr "Rifiutato"
-#: chat.php:609
+#: index.php:622 chat.php:622
#, php-format
msgid "You are logged in as %s and don't have access to this section."
msgstr "Sei entrato come %s e non hai accesso alla sessione."
-#: chat.php:611 chat.php:915 chat.php:1211 chat.php:1393
+#: index.php:624 index.php:972 index.php:1268 index.php:1450 chat.php:624
+#: chat.php:972 chat.php:1268 chat.php:1450
msgid "Logout"
msgstr "Logout"
-#: chat.php:636
+#: index.php:649 chat.php:649
msgid "Copy:"
msgstr "Copia:"
-#: chat.php:724
+#: index.php:776 chat.php:776
msgid "Chat Setup"
msgstr "Impostare chat"
-#: chat.php:734 chat.php:1233
+#: index.php:786 index.php:1290 chat.php:786 chat.php:1290
msgid "Allow"
msgstr "Accettare"
-#: chat.php:739 chat.php:1238
+#: index.php:791 index.php:1295 chat.php:791 chat.php:1295
msgid "Allow with waitingroom"
msgstr "Accettare ospiti"
-#: chat.php:744 chat.php:1243
+#: index.php:796 index.php:1300 chat.php:796 chat.php:1300
msgid "Require moderator approval"
msgstr "Richiedere il permesso al moderatore"
-#: chat.php:749 chat.php:1248
+#: index.php:801 index.php:1305 chat.php:801 chat.php:1305
msgid "Only members"
msgstr "Solo membri"
-#: chat.php:754 chat.php:1251
+#: index.php:806 index.php:1308 chat.php:806 chat.php:1308
msgid "Disable chat"
msgstr "Disabilitare chat"
-#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229
+#: index.php:817 index.php:839 index.php:894 index.php:953 index.php:2288
+#: chat.php:817 chat.php:839 chat.php:894 chat.php:953 chat.php:2288
msgid "Disabled"
msgstr "Disabilitato"
-#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219
+#: index.php:822 index.php:882 index.php:958 index.php:2278 chat.php:822
+#: chat.php:882 chat.php:958 chat.php:2278
msgid "Enabled"
msgstr "Abilitato"
-#: chat.php:792
+#: index.php:844 chat.php:844
msgid "As applicant"
msgstr "Come candidato"
-#: chat.php:797
+#: index.php:849 chat.php:849
msgid "As member"
msgstr "Come membro"
-#: chat.php:800
+#: index.php:852 chat.php:852
msgid "System messages"
msgstr "Messaggi del sistema"
-#: chat.php:822 chat.php:1053
+#: index.php:874 index.php:1110 chat.php:874 chat.php:1110
#, php-format
msgid ""
"The %s extension of PHP is required for this feature. Please install it "
"first."
msgstr ""
-#: chat.php:847
+#: index.php:899 chat.php:899
msgid "Simple"
msgstr "Facile"
-#: chat.php:852
+#: index.php:904 chat.php:904
msgid "Moderate"
msgstr "Medio"
-#: chat.php:857
+#: index.php:909 chat.php:909
+msgid "Hard"
+msgstr ""
+
+#: index.php:914 chat.php:914
msgid "Extreme"
msgstr "Difficile"
-#: chat.php:906 chat.php:1548 chat.php:1610
+#: index.php:963 index.php:1605 index.php:1667 chat.php:963 chat.php:1605
+#: chat.php:1667
msgid "Apply"
msgstr "Salvare"
-#: chat.php:910 chat.php:1050
+#: index.php:967 index.php:1107 chat.php:967 chat.php:1107
msgid "Backup and restore"
msgstr "Backup e ripristino"
-#: chat.php:912
+#: index.php:969 chat.php:969
msgid "Destroy chat"
msgstr "Distruggere chat"
-#: chat.php:1057 chat.php:1066
+#: index.php:1114 index.php:1123 chat.php:1114 chat.php:1123
msgid "Settings"
msgstr "Impostazioni"
-#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575
-#: chat.php:1622
+#: index.php:1115 index.php:1124 index.php:1269 index.php:1595 index.php:1632
+#: index.php:1679 chat.php:1115 chat.php:1124 chat.php:1269 chat.php:1595
+#: chat.php:1632 chat.php:1679
msgid "Filter"
msgstr "Filtro"
-#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538
+#: index.php:1116 index.php:1125 index.php:1325 index.php:2600 chat.php:1116
+#: chat.php:1125 chat.php:1325 chat.php:2600
msgid "Members"
msgstr "Membri"
-#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322
+#: index.php:1117 index.php:1126 index.php:2373 index.php:2381 chat.php:1117
+#: chat.php:1126 chat.php:2373 chat.php:2381
msgid "Notes"
msgstr "Appunti"
-#: chat.php:1061
+#: index.php:1118 chat.php:1118
msgid "Backup"
msgstr "Backup"
-#: chat.php:1070
+#: index.php:1127 chat.php:1127
msgid "Restore"
msgstr "Ripristino"
-#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260
+#: index.php:1131 index.php:1174 index.php:1212 index.php:1242 index.php:4342
+#: chat.php:1131 chat.php:1174 chat.php:1212 chat.php:1242 chat.php:4342
msgid "Go to the Setup-Page"
msgstr "Impostazioni Chat"
-#: chat.php:1082 chat.php:1091 chat.php:1949
+#: index.php:1139 index.php:1148 index.php:2006 chat.php:1139 chat.php:1148
+#: chat.php:2006
msgid "Are you sure?"
msgstr "Sei sicuro?"
-#: chat.php:1083 chat.php:1092 chat.php:1956
+#: index.php:1140 index.php:1149 index.php:2013 chat.php:1140 chat.php:1149
+#: chat.php:2013
msgid "Yes"
msgstr "Si"
-#: chat.php:1084 chat.php:1093 chat.php:1963
+#: index.php:1141 index.php:1150 index.php:2020 chat.php:1141 chat.php:1150
+#: chat.php:2020
msgid "No"
msgstr "No"
-#: chat.php:1101 chat.php:4259
+#: index.php:1158 index.php:4341 chat.php:1158 chat.php:4341
msgid "Superadmin Login"
msgstr "Entrata per super-amministratore"
-#: chat.php:1102
+#: index.php:1159 chat.php:1159
msgid "Superadmin Nickname:"
msgstr "Nome super-amministratore:"
-#: chat.php:1103
+#: index.php:1160 chat.php:1160
msgid "Superadmin Password:"
msgstr "Password super-amministratore:"
-#: chat.php:1104
+#: index.php:1161 chat.php:1161
msgid "Confirm Password:"
msgstr "Conferma password:"
-#: chat.php:1105
+#: index.php:1162 chat.php:1162
msgid "Initialise Chat"
msgstr "Inizio della chat"
-#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439
+#: index.php:1163 index.php:1187 index.php:1213 index.php:2336 index.php:2498
+#: chat.php:1163 chat.php:1187 chat.php:1213 chat.php:2336 chat.php:2498
msgid "Change language:"
msgstr "Cambia lingua:"
-#: chat.php:1117
+#: index.php:1174 chat.php:1174
msgid "Database successfully updated!"
msgstr "Database aggiornato!"
-#: chat.php:1125 chat.php:1326 chat.php:2407
+#: index.php:1182 index.php:1383 index.php:2466 chat.php:1182 chat.php:1383
+#: chat.php:2466
msgid "Nickname:"
msgstr "Nome:"
-#: chat.php:1126 chat.php:1327 chat.php:2408
+#: index.php:1183 index.php:1384 index.php:2467 chat.php:1183 chat.php:1384
+#: chat.php:2467
msgid "Password:"
msgstr "Password:"
-#: chat.php:1128
+#: index.php:1185 chat.php:1185
msgid "Login"
msgstr "Entrare"
-#: chat.php:1129
+#: index.php:1186 chat.php:1186
msgid "Forgot login?"
msgstr ""
-#: chat.php:1142 chat.php:1306
+#: index.php:1199 index.php:1363 chat.php:1199 chat.php:1363
msgid "Reset password"
msgstr "Cambia password"
-#: chat.php:1150
+#: index.php:1207 chat.php:1207
#, php-format
msgid ""
"Successfully reset password for username %s. Please remove the password "
"reset define from the script again."
msgstr ""
-#: chat.php:1153
+#: index.php:1210 chat.php:1210
msgid ""
"Please modify the script and put the following at the bottom of it (change "
"the password). Then refresh this page: define('RESET_SUPERADMIN_PASSWORD', "
"'changeme');"
msgstr ""
-#: chat.php:1169 chat.php:1193 chat.php:1258 chat.php:1270 chat.php:1294
-#: chat.php:1308 chat.php:1316 chat.php:2145 chat.php:2153
+#: index.php:1226 index.php:1250 index.php:1315 index.php:1327 index.php:1351
+#: index.php:1365 index.php:1373 index.php:2204 index.php:2212 chat.php:1226
+#: chat.php:1250 chat.php:1315 chat.php:1327 chat.php:1351 chat.php:1365
+#: chat.php:1373 chat.php:2204 chat.php:2212
msgid "(choose)"
msgstr "(sclegli)"
-#: chat.php:1170
+#: index.php:1227 chat.php:1227
msgid "All guests"
msgstr "Tutti ospiti"
-#: chat.php:1182
+#: index.php:1239 chat.php:1239
msgid "Administrative functions"
msgstr "Funzioni del amministratore"
-#: chat.php:1188
+#: index.php:1245 chat.php:1245
msgid "Clean messages"
msgstr "Cancella messaggi"
-#: chat.php:1191
+#: index.php:1248 chat.php:1248
msgid "Whole room"
msgstr "Stanza pubblica"
-#: chat.php:1192
+#: index.php:1249 chat.php:1249
msgid "Selection"
msgstr "Scelta"
-#: chat.php:1193
+#: index.php:1250 chat.php:1250
msgid "Following nickname:"
msgstr "Al Nome:"
-#: chat.php:1200
+#: index.php:1257 chat.php:1257
msgid "Clean"
msgstr "Cancella"
-#: chat.php:1202
+#: index.php:1259 chat.php:1259
#, php-format
msgid "Kick Chatter (%d minutes)"
msgstr "Ban (%d minuti)"
-#: chat.php:1204
+#: index.php:1261 chat.php:1261
msgid "Kickmessage:"
msgstr "Messaggio al bannato:"
-#: chat.php:1205
+#: index.php:1262 chat.php:1262
msgid "Purge messages"
msgstr "Pulizia messaggi"
-#: chat.php:1206 chat.php:1388 chat.php:1546 chat.php:1580 chat.php:1591
-#: chat.php:2042
+#: index.php:1263 index.php:1445 index.php:1603 index.php:1637 index.php:1648
+#: index.php:2101 chat.php:1263 chat.php:1445 chat.php:1603 chat.php:1637
+#: chat.php:1648 chat.php:2101
msgid "Kick"
msgstr "Kick"
-#: chat.php:1208
+#: index.php:1265 chat.php:1265
msgid "Logout inactive Chatter"
msgstr "Espelli partecipante"
-#: chat.php:1212
+#: index.php:1269 chat.php:1269
msgid "View active sessions"
msgstr "Sessioni attive"
-#: chat.php:1212 chat.php:1603
+#: index.php:1269 index.php:1660 chat.php:1269 chat.php:1660
msgid "Linkfilter"
msgstr "Filtaggio link"
-#: chat.php:1217
+#: index.php:1274 chat.php:1274
msgid "View"
msgstr "Visualizza"
-#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582
-#: chat.php:1626
+#: index.php:1280 index.php:1310 index.php:1361 index.php:1369 index.php:1639
+#: index.php:1683 chat.php:1280 chat.php:1310 chat.php:1361 chat.php:1369
+#: chat.php:1639 chat.php:1683
msgid "Change"
msgstr "Cambia"
-#: chat.php:1256
+#: index.php:1313 chat.php:1313
msgid "Register applicant"
msgstr "Aggiungere candidato"
-#: chat.php:1264 chat.php:1322 chat.php:1328
+#: index.php:1321 index.php:1379 index.php:1385 chat.php:1321 chat.php:1379
+#: chat.php:1385
msgid "Register"
msgstr "Registrare"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Delete from database"
msgstr "Eliminare dal database"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Deny access (!)"
msgstr "Aggiungere membro (!)"
-#: chat.php:1296
+#: index.php:1353 chat.php:1353
msgid "Set to applicant (SG)"
msgstr "Aggiunzione al candidato (SG)"
-#: chat.php:1298
+#: index.php:1355 chat.php:1355
msgid "Set to regular member"
msgstr "Aggiornare stato"
-#: chat.php:1299
+#: index.php:1356 chat.php:1356
msgid "Set to moderator (M)"
msgstr "Aggiunzione moderatore (M)"
-#: chat.php:1300
+#: index.php:1357 chat.php:1357
msgid "Set to supermod (SM)"
msgstr "Aggiunzione super-moderatore (SM)"
-#: chat.php:1302
+#: index.php:1359 chat.php:1359
msgid "Set to admin (A)"
msgstr "Aggiunzione amministratore (A)"
-#: chat.php:1314
+#: index.php:1371 chat.php:1371
msgid "Register Guest"
msgstr "Registra opspiti"
-#: chat.php:1324
+#: index.php:1381 chat.php:1381
msgid "Register new Member"
msgstr "Registra nuovo utente"
-#: chat.php:1332 chat.php:1408 chat.php:1595 chat.php:1636 chat.php:1710
-#: chat.php:1924
+#: index.php:1389 index.php:1465 index.php:1652 index.php:1693 index.php:1767
+#: index.php:1981 chat.php:1389 chat.php:1465 chat.php:1652 chat.php:1693
+#: chat.php:1767 chat.php:1981
msgid "Reload"
msgstr "Ricaricare"
-#: chat.php:1345
+#: index.php:1402 chat.php:1402
msgid "Active Sessions"
msgstr "Sessioni attive"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "Nickname"
msgstr "Nome"
-#: chat.php:1346
+#: index.php:1403 chat.php:1403
msgid "Timeout in"
msgstr "Tempo di attesa in"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "User-Agent"
msgstr "User-Agent"
-#: chat.php:1350
+#: index.php:1407 chat.php:1407
msgid "IP-Address"
msgstr "IP-indirizzo"
-#: chat.php:1351
+#: index.php:1408 chat.php:1408
msgid "Actions"
msgstr "Azioni"
-#: chat.php:1393
+#: index.php:1450 chat.php:1450
msgid "Unban"
msgstr "Sbloccare"
-#: chat.php:1416
+#: index.php:1473 chat.php:1473
msgid "Incorrect regular expression!"
msgstr "Testo non corretto!"
-#: chat.php:1416 chat.php:1424
+#: index.php:1473 index.php:1481 chat.php:1473 chat.php:1481
#, php-format
msgid "Your match was as follows: %s"
msgstr "Testi nei campi coincidono: %s"
-#: chat.php:1424
+#: index.php:1481 chat.php:1481
msgid ""
"Your match was too long. You can use max. 255 characters. Try splitting it "
"up."
@@ -743,40 +781,43 @@ msgstr ""
"Testo troppo lungo. Si puà utilizzare solo 255 simboli, provare suddividere "
"campo in parti."
-#: chat.php:1541 chat.php:1606
+#: index.php:1598 index.php:1663 chat.php:1598 chat.php:1663
msgid "Filter ID:"
msgstr "Filtro ID:"
-#: chat.php:1542 chat.php:1607
+#: index.php:1599 index.php:1664 chat.php:1599 chat.php:1664
msgid "Match"
msgstr "Coincidenza"
-#: chat.php:1543 chat.php:1608
+#: index.php:1600 index.php:1665 chat.php:1600 chat.php:1665
msgid "Replace"
msgstr "Sostituire"
-#: chat.php:1544 chat.php:1578 chat.php:1589
+#: index.php:1601 index.php:1635 index.php:1646 chat.php:1601 chat.php:1635
+#: chat.php:1646
msgid "Allow in PM"
msgstr "Accettare in privato"
-#: chat.php:1545 chat.php:1579 chat.php:1590 chat.php:1609 chat.php:1625
-#: chat.php:1633
+#: index.php:1602 index.php:1636 index.php:1647 index.php:1666 index.php:1682
+#: index.php:1690 chat.php:1602 chat.php:1636 chat.php:1647 chat.php:1666
+#: chat.php:1682 chat.php:1690
msgid "Regex"
msgstr "Testo regolare"
-#: chat.php:1547 chat.php:1581 chat.php:1592
+#: index.php:1604 index.php:1638 index.php:1649 chat.php:1604 chat.php:1638
+#: chat.php:1649
msgid "Case sensitive"
msgstr "Registrazione-sensibile"
-#: chat.php:1586 chat.php:1630
+#: index.php:1643 index.php:1687 chat.php:1643 chat.php:1687
msgid "New filter:"
msgstr "Nuovo filtro:"
-#: chat.php:1593 chat.php:1634
+#: index.php:1650 index.php:1691 chat.php:1650 chat.php:1691
msgid "Add"
msgstr "Aggiungere"
-#: chat.php:1691
+#: index.php:1748 chat.php:1748
msgid ""
"This chat uses frames. Please enable frames in your browser or use a "
"suitable one!"
@@ -784,96 +825,99 @@ msgstr ""
"Questa chat utilizza frames. Perfavore, avvia il supporto nel tuo "
"Browser o utilizza quello adatto!"
-#: chat.php:1691 chat.php:2370 chat.php:2457
+#: index.php:1748 index.php:2429 index.php:2516 chat.php:1748 chat.php:2429
+#: chat.php:2516
msgid "Back to the login page."
msgstr "Tornare nella pag. pincipale."
-#: chat.php:1709
+#: index.php:1766 chat.php:1766
msgid "Bottom"
msgstr "Giù"
-#: chat.php:1710
+#: index.php:1767 chat.php:1767
msgid "Manual refresh required"
msgstr "Bisogna aggiornare pagina manualmente"
-#: chat.php:1726
+#: index.php:1783 chat.php:1783
msgid "Top"
msgstr "Su"
-#: chat.php:1734 chat.php:1940 chat.php:1942
+#: index.php:1791 index.php:1997 index.php:1999 chat.php:1791 chat.php:1997
+#: chat.php:1999
msgid "Delete selected messages"
msgstr "Eliminare messaggi selezionati"
-#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281
+#: index.php:1818 index.php:1945 index.php:2160 index.php:2340 chat.php:1818
+#: chat.php:1945 chat.php:2160 chat.php:2340
msgid "Back to the chat."
msgstr "Tornare nella chat."
-#: chat.php:1774 chat.php:1791
+#: index.php:1831 index.php:1848 chat.php:1831 chat.php:1848
msgid "Admin notes"
msgstr "Note del amministratore"
-#: chat.php:1777 chat.php:1788
+#: index.php:1834 index.php:1845 chat.php:1834 chat.php:1845
msgid "Staff notes"
msgstr "Note del supporto"
-#: chat.php:1811
+#: index.php:1868 chat.php:1868
msgid "Notes saved!"
msgstr "Note salvate!"
-#: chat.php:1835 chat.php:2122
+#: index.php:1892 index.php:2181 chat.php:1892 chat.php:2181
#, php-format
msgid "Last edited by %1$s at %2$s"
msgstr "Ultima redazione %1$s %2$s"
-#: chat.php:1848
+#: index.php:1905 chat.php:1905
msgid "Save notes"
msgstr "Salvare note"
-#: chat.php:1850
+#: index.php:1907 chat.php:1907
msgid "Revisions:"
msgstr "Ripristino:"
-#: chat.php:1853
+#: index.php:1910 chat.php:1910
msgid "Older"
msgstr "Vecchi"
-#: chat.php:1857
+#: index.php:1914 chat.php:1914
msgid "Newer"
msgstr "Nuovi"
-#: chat.php:1868 chat.php:1914
+#: index.php:1925 index.php:1971 chat.php:1925 chat.php:1971
msgid "Waiting room"
msgstr "Degli ospiti"
-#: chat.php:1880
+#: index.php:1937 chat.php:1937
msgid "Allow checked"
msgstr "Permettere verifica"
-#: chat.php:1881
+#: index.php:1938 chat.php:1938
msgid "Allow all"
msgstr "Permettere a tutti"
-#: chat.php:1882
+#: index.php:1939 chat.php:1939
msgid "Deny checked"
msgstr "Non permettere verifica"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Deny all"
msgstr "Non permettere a nessuno"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Send message to denied:"
msgstr "Mandare messaggio con rifiuto:"
-#: chat.php:1884
+#: index.php:1941 chat.php:1941
msgid "Submit"
msgstr "Inviare"
-#: chat.php:1886
+#: index.php:1943 chat.php:1943
msgid "No more entry requests to approve."
msgstr "Non ci sono più richieste disponibili."
-#: chat.php:1916
+#: index.php:1973 chat.php:1973
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat in %2$d "
@@ -881,7 +925,7 @@ msgid ""
msgstr ""
"Benvenuto %1$s, rimani in attesa, chat sarà disponibile tra %2$d secondi."
-#: chat.php:1918
+#: index.php:1975 chat.php:1975
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat as soon, "
@@ -890,7 +934,7 @@ msgstr ""
"Benvenuto %1$s, rimani in attesa, chat sarà disponibile dopo che moderazione "
"accetta entrata."
-#: chat.php:1921
+#: index.php:1978 chat.php:1978
#, php-format
msgid ""
"If this page doesn't refresh every %d seconds, use the button below to "
@@ -899,64 +943,69 @@ msgstr ""
"Se questa pagina non risponde, non si aggiorna ogni %d secondi, utilizzate "
"il tasto in basso, per ricaricare manualmente!"
-#: chat.php:1926 chat.php:2339
+#: index.php:1983 index.php:2398 chat.php:1983 chat.php:2398
msgid "Exit Chat"
msgstr "Abbandona"
-#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430
+#: index.php:1986 index.php:2133 index.php:2144 index.php:2489 chat.php:1986
+#: chat.php:2133 chat.php:2144 chat.php:2489
msgid "Rules"
msgstr "Regole"
-#: chat.php:1985
+#: index.php:2042 chat.php:2042
msgid "Send to"
msgstr "Invia"
-#: chat.php:1990
+#: index.php:2047 chat.php:2047
msgid "All chatters"
msgstr "Tutti nella chat"
-#: chat.php:1996
+#: index.php:2053 chat.php:2053
msgid "Members only"
msgstr "Membri"
-#: chat.php:2003
+#: index.php:2060 chat.php:2060
msgid "Staff only"
msgstr "Staff"
-#: chat.php:2010
+#: index.php:2067 chat.php:2067
msgid "Admin only"
msgstr "Amministratore"
-#: chat.php:2019
+#: index.php:2076 chat.php:2076
msgid "(offline)"
msgstr "(offline)"
-#: chat.php:2043
+#: index.php:2078 chat.php:2078
+msgid "(logging out)"
+msgstr ""
+
+#: index.php:2102 chat.php:2102
msgid "Also purge messages"
msgstr "Eliminare messaggi"
-#: chat.php:2050
+#: index.php:2109 chat.php:2109
msgid "Delete last message"
msgstr "Eliminare utlimo messaggio"
-#: chat.php:2055
+#: index.php:2114 chat.php:2114
msgid "Delete all messages"
msgstr "Eliminare tutti messaggi"
-#: chat.php:2057
+#: index.php:2116 chat.php:2116
msgid "Switch to single-line"
msgstr "Abilitare modalità riga(e)"
-#: chat.php:2059
+#: index.php:2118 chat.php:2118
msgid "Switch to multi-line"
msgstr "Abilitare multiriga"
-#: chat.php:2070
+#: index.php:2129 chat.php:2129
#, php-format
msgid "Welcome %s!"
msgstr "Benvenuto %s!"
-#: chat.php:2071
+#: index.php:2130 chat.php:2130
#, php-format
msgid ""
"If this frame does not reload in %d seconds, you'll have to enable automatic "
@@ -969,16 +1018,16 @@ msgstr ""
"Se questa finestra non si aggiorna ogni %d secondi. Dovete abilitare "
"aggiornamento automatico (meta refresh) nel vostro browser. Assicuratevi che "
"non ci sia filtro-web, verificate impostazioni proxy, o plugin del browser "
-"per il blocco del aggiornamento! Esempi dei plugin: \"Polipo\", \"NoScript"
-"\", ecc... Nota, (nel caso di errore di ricarica delle pagine a causa del "
-"server/proxy) Вы всегда можете использовать кнопки внизуpotete sempre "
-"utilizzare tasti in basso della pagina per ricaricare manualmente."
+"per il blocco del aggiornamento! Esempi dei plugin: \"Polipo\", "
+"\"NoScript\", ecc... Nota, (nel caso di errore di ricarica delle pagine a "
+"causa del server/proxy) Вы всегда можете использовать кнопки внизуpotete "
+"sempre utilizzare tasti in basso della pagina per ricaricare manualmente."
-#: chat.php:2087
+#: index.php:2146 chat.php:2146
msgid "Help"
msgstr "Aiuto"
-#: chat.php:2088
+#: index.php:2147 chat.php:2147
msgid ""
"All functions should be pretty much self-explaining, just use the buttons. "
"In your profile you can adjust the refresh rate and font colour, as well as "
@@ -991,7 +1040,7 @@ msgstr ""
"questo anche se non scrivete niente, sarà in automatico salvato dopo un tot "
"di tempo."
-#: chat.php:2090
+#: index.php:2149 chat.php:2149
msgid ""
"If you want to embed an image in your post, simply put [img] in front of "
"your image URL. Example: [img]http://example.com/images/file.jpg will embed "
@@ -1002,7 +1051,7 @@ msgstr ""
"agganciato al vostro messaggio. Anche disponibile carica file cliccando "
"pulsante in alro \"Browse...\"."
-#: chat.php:2093
+#: index.php:2152 chat.php:2152
msgid ""
"Members: You'll have some more options in your profile. You can adjust your "
"font face, change your password anytime and of course you can delete your "
@@ -1011,7 +1060,7 @@ msgstr ""
"Membri: Avete alcune scelte nelle impostazioni del profilo. Si può impostare "
"carattere e cambiare la password in qualsiasi momento."
-#: chat.php:2095
+#: index.php:2154 chat.php:2154
msgid ""
"Moderators: Notice the Admin-button at the bottom. It'll bring up a page "
"where you can clean the room, kick chatters, view all active sessions and "
@@ -1021,7 +1070,7 @@ msgstr ""
"dove potete ripulire la stanza, bannare, visualizzare sessioni attive e "
"disabilitare accesso agli ospiti, se necessario."
-#: chat.php:2097
+#: index.php:2156 chat.php:2156
msgid ""
"Admins: You'll be furthermore able to register guests, edit members and "
"register new nicknames."
@@ -1029,485 +1078,500 @@ msgstr ""
"Amministratori: Vi è disponibile registrare utenti, modificare e rigistrare "
"nuovi nomi senza che ci siano nella stanza."
-#: chat.php:2135
+#: index.php:2194 chat.php:2194
msgid "Your Profile"
msgstr "Mio profilo"
-#: chat.php:2144
+#: index.php:2203 chat.php:2203
msgid "Don't ignore anymore"
msgstr "Non ignorare più"
-#: chat.php:2152
+#: index.php:2211 chat.php:2211
msgid "Ignore"
msgstr "Ignorare"
-#: chat.php:2163
+#: index.php:2222 chat.php:2222
#, php-format
msgid "Refresh rate (%1$d-%2$d seconds)"
msgstr "Ricarica Chat (%1$d-%2$d secondi)"
-#: chat.php:2167 chat.php:2170
+#: index.php:2226 index.php:2229 chat.php:2226 chat.php:2229
msgid "View examples"
msgstr "Visualizza esempi"
-#: chat.php:2174
+#: index.php:2233 chat.php:2233
msgid "Fontface"
msgstr "Carattere"
-#: chat.php:2175
+#: index.php:2234 chat.php:2234
msgid "Room Default"
msgstr "Predefinito"
-#: chat.php:2188
+#: index.php:2247 chat.php:2247
msgid "Bold"
msgstr "Grassetto"
-#: chat.php:2192
+#: index.php:2251 chat.php:2251
msgid "Italic"
msgstr "Corsivo"
-#: chat.php:2196
+#: index.php:2255 chat.php:2255
msgid "Small"
msgstr "Diminuito"
-#: chat.php:2199
+#: index.php:2258 chat.php:2258
msgid "Example for your chosen font"
msgstr "Esempio del carattere selezionato"
-#: chat.php:2203
+#: index.php:2262 chat.php:2262
msgid "Autoscroll (for old browsers or top-to-bottom sort)."
msgstr ""
"Avtoricarica (per i Browser precedenti, per suddividere dal alto-basso)"
-#: chat.php:2234
+#: index.php:2293 chat.php:2293
msgid "For everyone"
msgstr "Per tutti"
-#: chat.php:2239
+#: index.php:2298 chat.php:2298
msgid "For members only"
msgstr "Solo per membri"
-#: chat.php:2244
+#: index.php:2303 chat.php:2303
msgid "For staff only"
msgstr "Solo per moderatori"
-#: chat.php:2248
+#: index.php:2307 chat.php:2307
msgid "Time zone"
msgstr "Fuso Orario"
-#: chat.php:2261
+#: index.php:2320 chat.php:2320
msgid "Change Password"
msgstr "Cambia password"
-#: chat.php:2263
+#: index.php:2322 chat.php:2322
msgid "Old password:"
msgstr "Vecchio profilo:"
-#: chat.php:2264
+#: index.php:2323 chat.php:2323
msgid "New password:"
msgstr "Nuovo profilo:"
-#: chat.php:2265
+#: index.php:2324 chat.php:2324
msgid "Confirm new password:"
msgstr "Conferma:"
-#: chat.php:2268
+#: index.php:2327 chat.php:2327
msgid "Change Nickname"
msgstr "Cambia nome"
-#: chat.php:2269
+#: index.php:2328 chat.php:2328
msgid "New nickname:"
msgstr "Nuovo nome:"
-#: chat.php:2273
+#: index.php:2332 chat.php:2332
msgid "Save changes"
msgstr "Salavre cambiamenti"
-#: chat.php:2275
+#: index.php:2334 chat.php:2334
msgid "Delete account"
msgstr "Eliminare account"
-#: chat.php:2301
+#: index.php:2360 chat.php:2360
msgid "Reload Post Box"
msgstr "Ricarica Chat"
-#: chat.php:2304
+#: index.php:2363 chat.php:2363
msgid "Reload Messages"
msgstr "Aggiorna/Indietro"
-#: chat.php:2307
+#: index.php:2366 chat.php:2366
msgid "Profile"
msgstr "Profilo"
-#: chat.php:2311 chat.php:2528
+#: index.php:2370 index.php:2590 chat.php:2370 chat.php:2590
msgid "Admin"
msgstr "Amministratore"
-#: chat.php:2318
+#: index.php:2377 chat.php:2377
msgid "View public notes"
msgstr "Leggere appunti pubbliche"
-#: chat.php:2325
+#: index.php:2384 chat.php:2384
msgid "Clone"
msgstr "Clona"
-#: chat.php:2334
+#: index.php:2393 chat.php:2393
msgid "Rearrange"
msgstr "Ribaltare chat"
-#: chat.php:2337
+#: index.php:2396 chat.php:2396
msgid "Rules & Help"
msgstr "Regole/Aiuto"
-#: chat.php:2358 chat.php:2362
+#: index.php:2417 index.php:2421 chat.php:2417 chat.php:2421
msgid "File not found!"
msgstr "File non trovato!"
-#: chat.php:2370
+#: index.php:2429 chat.php:2429
#, php-format
msgid "Bye %s, visit again soon!"
msgstr "Ti salutiamo %s, entra ancora!"
-#: chat.php:2377
+#: index.php:2436 chat.php:2436
msgid "Colourtable"
msgstr "Esempio colori"
-#: chat.php:2388
+#: index.php:2447 chat.php:2447
msgid "Back to your Profile"
msgstr "Tornare nel mio profilo"
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "Repeat password to register"
msgstr "Ripetere password Registrarsi"
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "(optional)"
msgstr "(optional)"
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Guests, choose a colour:"
msgstr "Selezionate colore:"
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Random Colour"
msgstr "Colore a caso"
-#: chat.php:2421 chat.php:2435 chat.php:2569
+#: index.php:2480 index.php:2494 index.php:2631 chat.php:2480 chat.php:2494
+#: chat.php:2631
msgid "Sorry, currently members only!"
msgstr "Scusate, entrano solo registrati!"
-#: chat.php:2423 chat.php:2437
+#: index.php:2482 index.php:2496 chat.php:2482 chat.php:2496
msgid "Enter Chat"
msgstr "Entrare"
-#: chat.php:2457
+#: index.php:2516 chat.php:2516
#, php-format
msgid "Error: %s"
msgstr "Errore: %s"
-#: chat.php:2467
+#: index.php:2526 chat.php:2526
msgid "Fatal error"
msgstr "Errore fatale"
-#: chat.php:2470
+#: index.php:2529 chat.php:2529
#, php-format
msgid "Fatal error: %s"
msgstr "Errore fatale: %s"
-#: chat.php:2482 chat.php:2693
+#: index.php:2541 index.php:2756 chat.php:2541 chat.php:2756
msgid "Failed login attempt(s)"
msgstr "Tentativi di accesso non riusciti"
-#: chat.php:2489
+#: index.php:2548 chat.php:2548
#, php-format
msgid "Read %d messages in your inbox"
msgstr "Leggete %d messaggi in entrata"
-#: chat.php:2498
+#: index.php:2557 chat.php:2557
#, php-format
msgid "%d new guests to approve"
msgstr "%d nuovi ospiti da accettare"
-#: chat.php:2530
+#: index.php:2577 chat.php:2577
+msgid "logging out"
+msgstr ""
+
+#: index.php:2592 chat.php:2592
msgid "Admin:"
msgstr "Amministratore:"
-#: chat.php:2533
+#: index.php:2595 chat.php:2595
msgid "Staff"
msgstr "Staff"
-#: chat.php:2535
+#: index.php:2597 chat.php:2597
msgid "Staff:"
msgstr "Staff:"
-#: chat.php:2540
+#: index.php:2602 chat.php:2602
msgid "Members:"
msgstr "Membri:"
-#: chat.php:2542
+#: index.php:2604 chat.php:2604
msgid "Guests"
msgstr "Ospiti"
-#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092
+#: index.php:2625 index.php:3063 index.php:3267 index.php:4172 chat.php:2625
+#: chat.php:3063 chat.php:3267 chat.php:4172
#, php-format
msgid ""
"Invalid nickname (%1$d characters maximum and has to match the regular "
"expression \"%2$s\")"
msgstr ""
-"Nome sbagliato (%1$d simboli al massimo e deve coincidere con il testo\"%2$s"
-"\")"
+"Nome sbagliato (%1$d simboli al massimo e deve coincidere con il "
+"testo\"%2$s\")"
-#: chat.php:2566 chat.php:2996 chat.php:3162 chat.php:4094
+#: index.php:2628 index.php:3066 index.php:3232 index.php:4174 chat.php:2628
+#: chat.php:3066 chat.php:3232 chat.php:4174
#, php-format
msgid ""
"Invalid password (At least %1$d characters and has to match the regular "
"expression \"%2$s\")"
msgstr ""
-"Password sbagliata (Almeno %1$d simboli e deve coincidere con il testo \"%2$s"
-"\")"
+"Password sbagliata (Almeno %1$d simboli e deve coincidere con il testo "
+"\"%2$s\")"
-#: chat.php:2574 chat.php:2739
+#: index.php:2636 index.php:2806 chat.php:2636 chat.php:2806
msgid "Wrong global Password!"
msgstr "Password globale sbagliata!"
-#: chat.php:2591 chat.php:2612
+#: index.php:2654 index.php:2675 chat.php:2654 chat.php:2675
msgid "Wrong Captcha"
msgstr "Captcha errata"
-#: chat.php:2596 chat.php:2604
+#: index.php:2659 index.php:2667 chat.php:2659 chat.php:2667
msgid "Captcha already used or timed out."
msgstr "Codice di protezione è già in utilizzo oppure tempo scaduto."
-#: chat.php:2652
+#: index.php:2715 chat.php:2715
msgid "A user with this nickname is already logged in."
msgstr "Utilizzatore con questo nome è già in rete."
-#: chat.php:2652 chat.php:2933 chat.php:3176
+#: index.php:2715 index.php:3003 index.php:3246 chat.php:2715 chat.php:3003
+#: chat.php:3246
msgid "Wrong Password!"
msgstr "Password errata!"
-#: chat.php:2696
+#: index.php:2759 chat.php:2759
msgid "Dismiss"
msgstr "Riconosciuto"
-#: chat.php:2747 chat.php:3171 chat.php:4096
+#: index.php:2814 index.php:3241 index.php:4176 chat.php:2814 chat.php:3241
+#: chat.php:4176
msgid "Password confirmation does not match!"
msgstr "Password inserite non coincidono!"
-#: chat.php:2859
+#: index.php:2854 chat.php:2854
+#, fuzzy
+#| msgid "Kickmessage:"
+msgid "no kick message"
+msgstr "Messaggio al bannato:"
+
+#: index.php:2929 chat.php:2929
msgid "Invalid/expired session"
msgstr "Sessione invalida"
-#: chat.php:2875 chat.php:3412
+#: index.php:2945 index.php:3483 chat.php:2945 chat.php:3483
msgid "You have been kicked!"
msgstr "Bannato!"
-#: chat.php:2885
+#: index.php:2955 chat.php:2955
#, php-format
msgid "Currently %d chatter(s) in room:"
msgstr "Attualmente %d partecipante (i) in stanza:"
-#: chat.php:2933
+#: index.php:3003 chat.php:3003
msgid "This nickname is a registered member."
msgstr "Questo nome appartiene già ad un altro."
-#: chat.php:2960 chat.php:3001
+#: index.php:3030 index.php:3071 chat.php:3030 chat.php:3071
#, php-format
msgid "%s is already registered."
msgstr "%s Già registrato."
-#: chat.php:2969 chat.php:2990
+#: index.php:3039 index.php:3060 chat.php:3039 chat.php:3060
#, php-format
msgid "Can't register %s"
msgstr "Non puoi registrarti %s"
-#: chat.php:2978 chat.php:3023
+#: index.php:3048 index.php:3093 chat.php:3048 chat.php:3093
#, php-format
msgid "%s successfully registered."
msgstr "%s Registrato con successo."
-#: chat.php:3031 chat.php:3036
+#: index.php:3101 index.php:3106 chat.php:3101 chat.php:3106
#, php-format
msgid "Can't change status of %s"
msgstr "Impossibile cambiare stato %s"
-#: chat.php:3047
+#: index.php:3117 chat.php:3117
#, php-format
msgid "%s successfully deleted from database."
msgstr "%s eliminato dal database."
-#: chat.php:3056
+#: index.php:3126 chat.php:3126
#, php-format
msgid "Status of %s successfully changed."
msgstr "Stato %s cambaito con successo."
-#: chat.php:3073
+#: index.php:3143 chat.php:3143
#, php-format
msgid "Successfully reset password for %s"
msgstr ""
-#: chat.php:3075
+#: index.php:3145 chat.php:3145
#, php-format
msgid "Can't reset password for %s"
msgstr ""
-#: chat.php:3190
+#: index.php:3260 chat.php:3260
msgid "Your profile has successfully been saved."
msgstr "Tuo profilo è stato salvato."
-#: chat.php:3202
+#: index.php:3272 chat.php:3272
msgid "Nickname is already taken"
msgstr "Nome occupato"
-#: chat.php:3714
+#: index.php:3785 chat.php:3785
msgid "system message"
msgstr "messaggio del sistema"
-#: chat.php:3921
+#: index.php:4001 chat.php:4001
msgid "Beige"
msgstr "Beige"
-#: chat.php:3922
+#: index.php:4002 chat.php:4002
msgid "Black"
msgstr "Nero"
-#: chat.php:3923
+#: index.php:4003 chat.php:4003
msgid "Blue"
msgstr "Blu"
-#: chat.php:3924
+#: index.php:4004 chat.php:4004
msgid "Blue violet"
msgstr "Viola-blu"
-#: chat.php:3925
+#: index.php:4005 chat.php:4005
msgid "Brown"
msgstr "Marrone"
-#: chat.php:3926
+#: index.php:4006 chat.php:4006
msgid "Cyan"
msgstr "Azzurro"
-#: chat.php:3927
+#: index.php:4007 chat.php:4007
msgid "Dark blue"
msgstr "Blu-scuro"
-#: chat.php:3928
+#: index.php:4008 chat.php:4008
msgid "Dark green"
msgstr "Verde-scuro"
-#: chat.php:3929
+#: index.php:4009 chat.php:4009
msgid "Dark red"
msgstr "Rosso-scuro"
-#: chat.php:3930
+#: index.php:4010 chat.php:4010
msgid "Dark violet"
msgstr "Viola-scuro"
-#: chat.php:3931
+#: index.php:4011 chat.php:4011
msgid "Sky blue"
msgstr "Azzurro chiaro"
-#: chat.php:3932
+#: index.php:4012 chat.php:4012
msgid "Gold"
msgstr "Oro"
-#: chat.php:3933
+#: index.php:4013 chat.php:4013
msgid "Grey"
msgstr "Griggio"
-#: chat.php:3934
+#: index.php:4014 chat.php:4014
msgid "Green"
msgstr "Verde"
-#: chat.php:3935
+#: index.php:4015 chat.php:4015
msgid "Hot pink"
msgstr "Rosa-chiaro"
-#: chat.php:3936
+#: index.php:4016 chat.php:4016
msgid "Indigo"
msgstr "Indigo"
-#: chat.php:3937
+#: index.php:4017 chat.php:4017
msgid "Light blue"
msgstr "Blu-chiaro"
-#: chat.php:3938
+#: index.php:4018 chat.php:4018
msgid "Light green"
msgstr "Verde-charo"
-#: chat.php:3939
+#: index.php:4019 chat.php:4019
msgid "Lime green"
msgstr "Verde lime"
-#: chat.php:3940
+#: index.php:4020 chat.php:4020
msgid "Magenta"
msgstr "Magenta"
-#: chat.php:3941
+#: index.php:4021 chat.php:4021
msgid "Olive"
msgstr "Oliva"
-#: chat.php:3942
+#: index.php:4022 chat.php:4022
msgid "Orange"
msgstr "Arancione"
-#: chat.php:3943
+#: index.php:4023 chat.php:4023
msgid "Orange red"
msgstr "Arancione-rosso"
-#: chat.php:3944
+#: index.php:4024 chat.php:4024
msgid "Purple"
msgstr "Viola"
-#: chat.php:3945
+#: index.php:4025 chat.php:4025
msgid "Red"
msgstr "Rosso"
-#: chat.php:3946
+#: index.php:4026 chat.php:4026
msgid "Royal blue"
msgstr "Re blu"
-#: chat.php:3947
+#: index.php:4027 chat.php:4027
msgid "Sea green"
msgstr "Verde mare"
-#: chat.php:3948
+#: index.php:4028 chat.php:4028
msgid "Sienna"
msgstr "Siena"
-#: chat.php:3949
+#: index.php:4029 chat.php:4029
msgid "Silver"
msgstr "Cromato"
-#: chat.php:3950
+#: index.php:4030 chat.php:4030
msgid "Tan"
msgstr "Abbronzato"
-#: chat.php:3951
+#: index.php:4031 chat.php:4031
msgid "Teal"
msgstr "Teal"
-#: chat.php:3952
+#: index.php:4032 chat.php:4032
msgid "Violet"
msgstr "Viola"
-#: chat.php:3953
+#: index.php:4033 chat.php:4033
msgid "White"
msgstr "Bianco"
-#: chat.php:3954
+#: index.php:4034 chat.php:4034
msgid "Yellow"
msgstr "Giallo"
-#: chat.php:3955
+#: index.php:4035 chat.php:4035
msgid "Yellow green"
msgstr "Giallo-verde"
-#: chat.php:4077
+#: index.php:4157 chat.php:4157
msgid "Successfully destroyed chat"
msgstr "Chat distrutto"
-#: chat.php:4086
+#: index.php:4166 chat.php:4166
msgid ""
"Database tables already exist! To continue, you have to delete these tables "
"manually first."
@@ -1515,110 +1579,117 @@ msgstr ""
"Tabelle nel database esistono! Per continuare, prima devi eliminare tabelle "
"manualmente."
-#: chat.php:4089
+#: index.php:4169 chat.php:4169
msgid "A Superadmin already exists!"
msgstr "Super-amministratore è già esistente!"
-#: chat.php:4182 chat.php:4369
+#: index.php:4263 index.php:4451 chat.php:4263 chat.php:4451
#, php-format
msgid "%s - "
msgstr "%s - "
-#: chat.php:4183 chat.php:4369
+#: index.php:4264 index.php:4451 chat.php:4264 chat.php:4451
#, php-format
msgid "[M] %s - "
msgstr "[M] %s - "
-#: chat.php:4184 chat.php:4369
+#: index.php:4265 index.php:4451 chat.php:4265 chat.php:4451
#, php-format
msgid "[Staff] %s - "
msgstr "[Staff] %s - "
-#: chat.php:4185 chat.php:4369
+#: index.php:4266 index.php:4451 chat.php:4266 chat.php:4451
#, php-format
msgid "[Admin] %s - "
msgstr "[Admin] %s - "
-#: chat.php:4186 chat.php:4369
+#: index.php:4267 index.php:4451 chat.php:4267 chat.php:4451
#, php-format
msgid "[%1$s to %2$s] - "
msgstr "[%1$s a %2$s] - "
-#: chat.php:4187
+#: index.php:4268 chat.php:4268
#, php-format
msgid "%s entered the chat."
msgstr "%s entrato in chat."
-#: chat.php:4188
+#: index.php:4269 chat.php:4269
#, php-format
msgid "%s left the chat."
msgstr "%s abbandonato chat."
-#: chat.php:4189
+#: index.php:4270 chat.php:4270
#, php-format
msgid "%s is now a registered member."
msgstr "%s ora registrato membro."
-#: chat.php:4190
+#: index.php:4271 chat.php:4271
#, php-format
msgid "%s is now a registered applicant."
msgstr "%s ora registrato candidato."
-#: chat.php:4191
-#, php-format
-msgid "%s has been kicked."
+#: index.php:4272 chat.php:4272
+#, fuzzy, php-format
+#| msgid "%s has been kicked."
+msgid "%1$s has been kicked: %2$s"
msgstr "%s espcluso dalla chat."
-#: chat.php:4192
-#, php-format
-msgid "%s have been kicked."
+#: index.php:4273 chat.php:4273
+#, fuzzy, php-format
+#| msgid "%s have been kicked."
+msgid "%1$s have been kicked: %2$s"
msgstr "%s esclusi dalla chat."
-#: chat.php:4193
-msgid "All guests have been kicked."
+#: index.php:4274 chat.php:4274
+#, fuzzy, php-format
+#| msgid "All guests have been kicked."
+msgid "All guests have been kicked: %1$s"
msgstr "Tutti ospiti esplusi dalla chat."
-#: chat.php:4194
+#: index.php:4275 chat.php:4275
#, php-format
msgid "%s has been cleaned."
msgstr "%s pulito prima."
-#: chat.php:4202 chat.php:4396
+#: index.php:4283 index.php:4478 chat.php:4283 chat.php:4478
msgid "Temporarily disabled"
msgstr "Attualmente disabilitato"
-#: chat.php:4218 chat.php:4594
+#: index.php:4299 index.php:4676 chat.php:4299 chat.php:4676
msgid "A chat community"
msgstr ""
-#: chat.php:4256
+#: index.php:4338 chat.php:4338
msgid "Successfully registered!"
msgstr "Registrato con successo!"
-#: chat.php:4522 chat.php:4721 chat.php:4728
+#: index.php:4604 index.php:4807 index.php:4814 chat.php:4604 chat.php:4807
+#: chat.php:4814
msgid "No connection to database!"
msgstr "Non cè collegamento al database!"
-#: chat.php:4531
+#: index.php:4613 chat.php:4613
msgid ""
"Note: Default CSS is now hardcoded and can be removed from the CSS setting"
msgstr ""
-#: chat.php:4611
+#: index.php:4697 chat.php:4697
#, php-format
msgid ""
"The %s extension of PHP is required for the encryption feature. Please "
"install it first or set the encrypted setting back to false."
msgstr ""
-#: chat.php:4684 chat.php:4689 chat.php:4694
+#: index.php:4770 index.php:4775 index.php:4780 chat.php:4770 chat.php:4775
+#: chat.php:4780
#, php-format
msgid ""
"The %s extension of PHP is required for the selected database driver. Please "
"install it first."
msgstr ""
-#: chat.php:4707 chat.php:4715 chat.php:4719 chat.php:4726
+#: index.php:4793 index.php:4801 index.php:4805 index.php:4812 chat.php:4793
+#: chat.php:4801 chat.php:4805 chat.php:4812
msgid ""
"No connection to database, please create a database and edit the script to "
"use the correct database with given username and password!"
@@ -1626,7 +1697,7 @@ msgstr ""
"Non cè collegamento con database, perfavore crea il database ed edita lo "
"scipt, per utilizzare database giusto con utente e password creati!"
-#: chat.php:4734
+#: index.php:4820 chat.php:4820
msgid ""
"The memcached extension of PHP is required for the caching feature. Please "
"install it first or set the memcached setting back to false."
diff --git a/locale/ja/LC_MESSAGES/le-chat-php.mo b/locale/ja/LC_MESSAGES/le-chat-php.mo
new file mode 100644
index 0000000..c6565da
Binary files /dev/null and b/locale/ja/LC_MESSAGES/le-chat-php.mo differ
diff --git a/locale/ja/LC_MESSAGES/le-chat-php.po b/locale/ja/LC_MESSAGES/le-chat-php.po
new file mode 100644
index 0000000..d675ab4
--- /dev/null
+++ b/locale/ja/LC_MESSAGES/le-chat-php.po
@@ -0,0 +1,1719 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2025-03-29 17:02+0100\n"
+"PO-Revision-Date: 2024-11-05 01:24+0000\n"
+"Last-Translator: Akira \n"
+"Language-Team: Japanese \n"
+"Language: ja\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Weblate 5.8.2\n"
+
+#: index.php:272 chat.php:272
+msgid "Enable applicants"
+msgstr "応募者を有効にする"
+
+#: index.php:273 index.php:2267 chat.php:273 chat.php:2267
+msgid "Embed images"
+msgstr "画像を埋め込む"
+
+#: index.php:274 index.php:2261 chat.php:274 chat.php:2261
+msgid "Show Timestamps"
+msgstr "タイムスタンプを表示する"
+
+#: index.php:275 chat.php:275
+msgid "Show session-IP"
+msgstr "セッションIPを表示する"
+
+#: index.php:276 chat.php:276
+msgid "Members can kick, if no moderator is present"
+msgstr "モデレーターがいない場合、メンバーはキックできます"
+
+#: index.php:277 chat.php:277
+msgid "Members can always kick"
+msgstr "メンバーは常にキックできます"
+
+#: index.php:278 chat.php:278
+msgid "Force redirection"
+msgstr "リダイレクトを強制する"
+
+#: index.php:279 index.php:2270 chat.php:279 chat.php:2270
+msgid "Incognito mode"
+msgstr "シークレットモード"
+
+#: index.php:280 chat.php:280
+msgid "Send mail on new public message"
+msgstr "新しい公開メッセージがあるときにメールを送信する"
+
+#: index.php:281 chat.php:281
+msgid "Fallback to waiting room, if no moderator is present to approve guests"
+msgstr "モデレーターがいない場合、ゲストを承認するために待機室に戻る"
+
+#: index.php:282 chat.php:282
+msgid "Disable private messages"
+msgstr "プライベートメッセージを無効にする"
+
+#: index.php:283 index.php:2282 chat.php:283 chat.php:2282
+msgid "Enable offline inbox"
+msgstr "オフライン受信箱を有効にする"
+
+#: index.php:284 chat.php:284
+msgid "Show a greeting message before showing the messages"
+msgstr "メッセージを表示する前に挨拶メッセージを表示する"
+
+#: index.php:285 index.php:2263 chat.php:285 chat.php:2263
+msgid "Sort messages from top to bottom"
+msgstr "メッセージを上から下に並べ替える"
+
+#: index.php:286 index.php:2264 chat.php:286 chat.php:2264
+msgid "Hide list of chatters"
+msgstr "チャッターのリストを非表示にする"
+
+#: index.php:287 index.php:1837 index.php:1851 chat.php:287 chat.php:1837
+#: chat.php:1851
+msgid "Personal notes"
+msgstr "個人的なメモ"
+
+#: index.php:288 index.php:1840 index.php:1854 index.php:2169 chat.php:288
+#: chat.php:1840 chat.php:1854 chat.php:2169
+msgid "Public notes"
+msgstr "公開ノート"
+
+#: index.php:289 chat.php:289
+msgid "Apply kick filter on moderators"
+msgstr "モデレーターにキックフィルターを適用する"
+
+#: index.php:290 chat.php:290
+msgid "Show who kicks people or purges all messages."
+msgstr "誰が人をキックしたか、またはすべてのメッセージを削除したかを表示する"
+
+#: index.php:291 chat.php:291
+msgid "Hide reload post box button"
+msgstr "投稿ボックスの再読み込みボタンを隠す"
+
+#: index.php:292 chat.php:292
+msgid "Hide reload messages button"
+msgstr "メッセージの再読み込みボタンを隠す"
+
+#: index.php:293 chat.php:293
+msgid "Hide profile button"
+msgstr "プロフィールボタンを隠す"
+
+#: index.php:294 chat.php:294
+msgid "Hide admin button"
+msgstr "管理者ボタンを隠す"
+
+#: index.php:295 chat.php:295
+msgid "Hide notes button"
+msgstr "ノートボタンを隠す"
+
+#: index.php:296 chat.php:296
+msgid "Hide clone button"
+msgstr "クローンボタンを隠す"
+
+#: index.php:297 chat.php:297
+msgid "Hide rearrange button"
+msgstr "並べ替えボタンを隠す"
+
+#: index.php:298 chat.php:298
+msgid "Hide help button"
+msgstr "ヘルプボタンを隠す"
+
+#: index.php:299 chat.php:299
+msgid "Apply postbox delete button globally"
+msgstr "投稿ボックスの削除ボタンを全体に適用する"
+
+#: index.php:300 chat.php:300
+msgid "Allow enhancing functionality with JavaScript"
+msgstr "JavaScriptで機能を拡張することを許可する"
+
+#: index.php:303 index.php:2229 chat.php:303 chat.php:2229
+msgid "Background colour"
+msgstr "背景色"
+
+#: index.php:304 index.php:2226 chat.php:304 chat.php:2226
+msgid "Font colour"
+msgstr "フォント色"
+
+#: index.php:307 chat.php:307
+msgid "Entrance"
+msgstr "入場"
+
+#: index.php:308 chat.php:308
+msgid "Leaving"
+msgstr "退出"
+
+#: index.php:309 chat.php:309
+msgid "Member registered"
+msgstr "メンバーが登録されました"
+
+#: index.php:310 chat.php:310
+msgid "Applicant registered"
+msgstr "応募者が登録されました"
+
+#: index.php:311 chat.php:311
+msgid "Kicked"
+msgstr "キックされました"
+
+#: index.php:312 chat.php:312
+msgid "Multiple kicked"
+msgstr "複数がキックされました"
+
+#: index.php:313 chat.php:313
+msgid "All kicked"
+msgstr "全員がキックされました"
+
+#: index.php:314 chat.php:314
+msgid "Room cleaned"
+msgstr "部屋が清掃されました"
+
+#: index.php:315 chat.php:315
+msgid "Message to all"
+msgstr "全員へのメッセージ"
+
+#: index.php:316 chat.php:316
+msgid "Message to members only"
+msgstr "メンバーのみへのメッセージ"
+
+#: index.php:317 chat.php:317
+msgid "Message to staff only"
+msgstr "スタッフのみへのメッセージ"
+
+#: index.php:318 chat.php:318
+msgid "Message to admins only"
+msgstr "管理者のみへのメッセージ"
+
+#: index.php:319 chat.php:319
+msgid "Private message"
+msgstr "プライベートメッセージ"
+
+#: index.php:320 chat.php:320
+msgid "Attachement"
+msgstr "添付ファイル"
+
+#: index.php:323 chat.php:323
+msgid "Member timeout (minutes)"
+msgstr "メンバータイムアウト(分)"
+
+#: index.php:324 chat.php:324
+msgid "Guest timeout (minutes)"
+msgstr "ゲストタイムアウト(分)"
+
+#: index.php:325 chat.php:325
+msgid "Kick penalty (minutes)"
+msgstr "キックペナルティ(分)"
+
+#: index.php:326 chat.php:326
+msgid "Waiting room time (seconds)"
+msgstr "待機室の時間(秒)"
+
+#: index.php:327 chat.php:327
+msgid "Logout delay (seconds)"
+msgstr ""
+
+#: index.php:328 chat.php:328
+msgid "Captcha timeout (seconds)"
+msgstr "キャプチャタイムアウト(秒)"
+
+#: index.php:329 chat.php:329
+msgid "Message timeout (minutes)"
+msgstr "メッセージタイムアウト(分)"
+
+#: index.php:330 chat.php:330
+msgid "Message limit (public)"
+msgstr "メッセージ制限(公開)"
+
+#: index.php:331 chat.php:331
+msgid "Maximal message length"
+msgstr "最大メッセージ長"
+
+#: index.php:332 chat.php:332
+msgid "Maximal nickname length"
+msgstr "最大ニックネーム長"
+
+#: index.php:333 chat.php:333
+msgid "Minimal password length"
+msgstr "最小パスワード長"
+
+#: index.php:334 chat.php:334
+msgid "Default message reload time (seconds)"
+msgstr "デフォルトのメッセージ再読み込み時間(秒)"
+
+#: index.php:335 chat.php:335
+msgid "Number of notes revisions to keep"
+msgstr "保持するノートのバージョン数"
+
+#: index.php:336 chat.php:336
+msgid "Maximum upload size in KB"
+msgstr "最大アップロードサイズ(KB)"
+
+#: index.php:337 chat.php:337
+msgid "Enable file uploads"
+msgstr "ファイルアップロードを有効にする"
+
+#: index.php:338 chat.php:338
+msgid "Lowest refresh rate"
+msgstr "最低更新レート"
+
+#: index.php:339 chat.php:339
+msgid "Highest refresh rate"
+msgstr "最高更新レート"
+
+#: index.php:342 chat.php:342
+msgid "Rules (html)"
+msgstr "ルール(html)"
+
+#: index.php:343 chat.php:343
+msgid "CSS Style"
+msgstr "CSSスタイル"
+
+#: index.php:344 chat.php:344
+msgid "Chat disabled message (html)"
+msgstr "チャット無効メッセージ(html)"
+
+#: index.php:347 chat.php:347
+msgid ""
+"Date "
+"formating"
+msgstr ""
+"日付"
+"フォーマット"
+
+#: index.php:348 chat.php:348
+msgid "Characters used in Captcha"
+msgstr "キャプチャに使用される文字"
+
+#: index.php:349 chat.php:349
+msgid "Custom redirection script"
+msgstr "カスタムリダイレクトスクリプト"
+
+#: index.php:350 chat.php:350
+msgid "Chat name"
+msgstr "チャット名"
+
+#: index.php:351 chat.php:351
+msgid "Send mail using this address"
+msgstr "このアドレスを使用してメールを送信"
+
+#: index.php:352 chat.php:352
+msgid "Send mail to this address"
+msgstr "このアドレスにメールを送信"
+
+#: index.php:353 chat.php:353
+msgid "Nickname regex"
+msgstr "ニックネーム正規表現"
+
+#: index.php:354 chat.php:354
+msgid "Password regex"
+msgstr "パスワードの正規表現"
+
+#: index.php:355 chat.php:355
+msgid "Link to external CSS file (on your own server)"
+msgstr "外部CSSファイルへのリンク(自サーバー上)"
+
+#: index.php:356 chat.php:356
+msgid "Meta description (best 50 - 160 characters for SEO)"
+msgstr "メタディスクリプション(SEOに最適な50〜160文字)"
+
+#: index.php:357 chat.php:357
+msgid "Show this text when a user's logout is delayed"
+msgstr ""
+
+#: index.php:358 chat.php:358
+msgid "Prepend this text to system messages"
+msgstr "このテキストをシステムメッセージの前に追加"
+
+#: index.php:361 index.php:780 index.php:1282 chat.php:361 chat.php:780
+#: chat.php:1282
+msgid "Change Guestaccess"
+msgstr "ゲストアクセスを変更"
+
+#: index.php:362 chat.php:362
+msgid "Enable global Password"
+msgstr "グローバルパスワードを有効にする"
+
+#: index.php:363 index.php:810 index.php:2474 index.php:2492 chat.php:363
+#: chat.php:810 chat.php:2474 chat.php:2492
+msgid "Global Password:"
+msgstr "グローバルパスワード:"
+
+#: index.php:364 index.php:871 chat.php:364 chat.php:871
+msgid "Captcha"
+msgstr "キャプチャ"
+
+#: index.php:365 index.php:827 index.php:887 chat.php:365 chat.php:827
+#: chat.php:887
+msgid "Only for guests"
+msgstr "ゲストのみ"
+
+#: index.php:366 index.php:1277 chat.php:366 chat.php:1277
+msgid "Topic"
+msgstr "トピック"
+
+#: index.php:367 index.php:833 chat.php:367 chat.php:833
+msgid "Let guests register themselves"
+msgstr "ゲストが自分で登録できるようにする"
+
+#: index.php:368 index.php:919 chat.php:368 chat.php:919
+msgid "Default time zone"
+msgstr "デフォルトのタイムゾーン"
+
+#: index.php:581 index.php:1157 index.php:4158 index.php:4341 chat.php:581
+#: chat.php:1157 chat.php:4158 chat.php:4341
+msgid "Initial Setup"
+msgstr "初期設定"
+
+#: index.php:601 chat.php:601
+#, php-format
+msgid "Redirecting to: %s"
+msgstr "リダイレクト中: %s"
+
+#: index.php:608 chat.php:608
+#, php-format
+msgid ""
+"Dangerous non-http link requested, copy paste this link if you are really "
+"sure: %s"
+msgstr ""
+"危険な非HTTPリンクが要求されました。本当に確信がある場合は、このリンクをコ"
+"ピーして貼り付けてください: %s"
+
+#: index.php:610 chat.php:610
+#, php-format
+msgid "Non-http link requested: %s"
+msgstr "非HTTPリンクが要求されました: %s"
+
+#: index.php:612 chat.php:612
+#, php-format
+msgid "If it's not working, try this one: %s"
+msgstr "動作しない場合は、こちらを試してみてください: %s"
+
+#: index.php:622 chat.php:622
+msgid "Access denied"
+msgstr "アクセス拒否"
+
+#: index.php:622 chat.php:622
+#, php-format
+msgid "You are logged in as %s and don't have access to this section."
+msgstr "あなたは%sとしてログインしており、このセクションにアクセスできません。"
+
+#: index.php:624 index.php:972 index.php:1268 index.php:1450 chat.php:624
+#: chat.php:972 chat.php:1268 chat.php:1450
+msgid "Logout"
+msgstr "ログアウト"
+
+#: index.php:649 chat.php:649
+msgid "Copy:"
+msgstr "コピー:"
+
+#: index.php:776 chat.php:776
+msgid "Chat Setup"
+msgstr "チャット設定"
+
+#: index.php:786 index.php:1290 chat.php:786 chat.php:1290
+msgid "Allow"
+msgstr "許可"
+
+#: index.php:791 index.php:1295 chat.php:791 chat.php:1295
+msgid "Allow with waitingroom"
+msgstr "待機室を使用して許可"
+
+#: index.php:796 index.php:1300 chat.php:796 chat.php:1300
+msgid "Require moderator approval"
+msgstr "モデレーターの承認が必要"
+
+#: index.php:801 index.php:1305 chat.php:801 chat.php:1305
+msgid "Only members"
+msgstr "メンバーのみ"
+
+#: index.php:806 index.php:1308 chat.php:806 chat.php:1308
+msgid "Disable chat"
+msgstr "チャットを無効にする"
+
+#: index.php:817 index.php:839 index.php:894 index.php:953 index.php:2288
+#: chat.php:817 chat.php:839 chat.php:894 chat.php:953 chat.php:2288
+msgid "Disabled"
+msgstr "無効"
+
+#: index.php:822 index.php:882 index.php:958 index.php:2278 chat.php:822
+#: chat.php:882 chat.php:958 chat.php:2278
+msgid "Enabled"
+msgstr "有効"
+
+#: index.php:844 chat.php:844
+msgid "As applicant"
+msgstr "応募者として"
+
+#: index.php:849 chat.php:849
+msgid "As member"
+msgstr "メンバーとして"
+
+#: index.php:852 chat.php:852
+msgid "System messages"
+msgstr "システムメッセージ"
+
+#: index.php:874 index.php:1110 chat.php:874 chat.php:1110
+#, php-format
+msgid ""
+"The %s extension of PHP is required for this feature. Please install it "
+"first."
+msgstr ""
+"この機能には%sのPHP拡張が必要です。まずそれをインストールしてください。"
+
+#: index.php:899 chat.php:899
+msgid "Simple"
+msgstr "シンプル"
+
+#: index.php:904 chat.php:904
+msgid "Moderate"
+msgstr "中程度"
+
+#: index.php:909 chat.php:909
+msgid "Hard"
+msgstr "ハード"
+
+#: index.php:914 chat.php:914
+msgid "Extreme"
+msgstr "エクストリーム"
+
+#: index.php:963 index.php:1605 index.php:1667 chat.php:963 chat.php:1605
+#: chat.php:1667
+msgid "Apply"
+msgstr "適用"
+
+#: index.php:967 index.php:1107 chat.php:967 chat.php:1107
+msgid "Backup and restore"
+msgstr "バックアップと復元"
+
+#: index.php:969 chat.php:969
+msgid "Destroy chat"
+msgstr "チャットを破壊"
+
+#: index.php:1114 index.php:1123 chat.php:1114 chat.php:1123
+msgid "Settings"
+msgstr "設定"
+
+#: index.php:1115 index.php:1124 index.php:1269 index.php:1595 index.php:1632
+#: index.php:1679 chat.php:1115 chat.php:1124 chat.php:1269 chat.php:1595
+#: chat.php:1632 chat.php:1679
+msgid "Filter"
+msgstr "フィルター"
+
+#: index.php:1116 index.php:1125 index.php:1325 index.php:2600 chat.php:1116
+#: chat.php:1125 chat.php:1325 chat.php:2600
+msgid "Members"
+msgstr "メンバー"
+
+#: index.php:1117 index.php:1126 index.php:2373 index.php:2381 chat.php:1117
+#: chat.php:1126 chat.php:2373 chat.php:2381
+msgid "Notes"
+msgstr "ノート"
+
+#: index.php:1118 chat.php:1118
+msgid "Backup"
+msgstr "バックアップ"
+
+#: index.php:1127 chat.php:1127
+msgid "Restore"
+msgstr "復元"
+
+#: index.php:1131 index.php:1174 index.php:1212 index.php:1242 index.php:4342
+#: chat.php:1131 chat.php:1174 chat.php:1212 chat.php:1242 chat.php:4342
+msgid "Go to the Setup-Page"
+msgstr "設定ページに移動"
+
+#: index.php:1139 index.php:1148 index.php:2006 chat.php:1139 chat.php:1148
+#: chat.php:2006
+msgid "Are you sure?"
+msgstr "本当によろしいですか?"
+
+#: index.php:1140 index.php:1149 index.php:2013 chat.php:1140 chat.php:1149
+#: chat.php:2013
+msgid "Yes"
+msgstr "はい"
+
+#: index.php:1141 index.php:1150 index.php:2020 chat.php:1141 chat.php:1150
+#: chat.php:2020
+msgid "No"
+msgstr "いいえ"
+
+#: index.php:1158 index.php:4341 chat.php:1158 chat.php:4341
+msgid "Superadmin Login"
+msgstr "スーパ管理者ログイン"
+
+#: index.php:1159 chat.php:1159
+msgid "Superadmin Nickname:"
+msgstr "スーパ管理者のニックネーム:"
+
+#: index.php:1160 chat.php:1160
+msgid "Superadmin Password:"
+msgstr "スーパ管理者のパスワード:"
+
+#: index.php:1161 chat.php:1161
+msgid "Confirm Password:"
+msgstr "パスワードを確認:"
+
+#: index.php:1162 chat.php:1162
+msgid "Initialise Chat"
+msgstr "チャットを初期化"
+
+#: index.php:1163 index.php:1187 index.php:1213 index.php:2336 index.php:2498
+#: chat.php:1163 chat.php:1187 chat.php:1213 chat.php:2336 chat.php:2498
+msgid "Change language:"
+msgstr "言語を変更:"
+
+#: index.php:1174 chat.php:1174
+msgid "Database successfully updated!"
+msgstr "データベースが正常に更新されました!"
+
+#: index.php:1182 index.php:1383 index.php:2466 chat.php:1182 chat.php:1383
+#: chat.php:2466
+msgid "Nickname:"
+msgstr "ニックネーム:"
+
+#: index.php:1183 index.php:1384 index.php:2467 chat.php:1183 chat.php:1384
+#: chat.php:2467
+msgid "Password:"
+msgstr "パスワード:"
+
+#: index.php:1185 chat.php:1185
+msgid "Login"
+msgstr "ログイン"
+
+#: index.php:1186 chat.php:1186
+msgid "Forgot login?"
+msgstr "ログイン情報を忘れましたか?"
+
+#: index.php:1199 index.php:1363 chat.php:1199 chat.php:1363
+msgid "Reset password"
+msgstr "パスワードをリセット"
+
+#: index.php:1207 chat.php:1207
+#, php-format
+msgid ""
+"Successfully reset password for username %s. Please remove the password "
+"reset define from the script again."
+msgstr ""
+"ユーザー名%sのパスワードを正常にリセットしました。スクリプトからパスワードリ"
+"セットの定義を再度削除してください。"
+
+#: index.php:1210 chat.php:1210
+msgid ""
+"Please modify the script and put the following at the bottom of it (change "
+"the password). Then refresh this page: define('RESET_SUPERADMIN_PASSWORD', "
+"'changeme');"
+msgstr ""
+"スクリプトを修正し、以下の内容をファイルの最後に追加してください(パスワード"
+"を変更)。その後、このページを更新してください:"
+"define('RESET_SUPERADMIN_PASSWORD', 'changeme');"
+
+#: index.php:1226 index.php:1250 index.php:1315 index.php:1327 index.php:1351
+#: index.php:1365 index.php:1373 index.php:2204 index.php:2212 chat.php:1226
+#: chat.php:1250 chat.php:1315 chat.php:1327 chat.php:1351 chat.php:1365
+#: chat.php:1373 chat.php:2204 chat.php:2212
+msgid "(choose)"
+msgstr "(選択)"
+
+#: index.php:1227 chat.php:1227
+msgid "All guests"
+msgstr "すべてのゲスト"
+
+#: index.php:1239 chat.php:1239
+msgid "Administrative functions"
+msgstr "管理機能"
+
+#: index.php:1245 chat.php:1245
+msgid "Clean messages"
+msgstr "メッセージをクリア"
+
+#: index.php:1248 chat.php:1248
+msgid "Whole room"
+msgstr "全体の部屋"
+
+#: index.php:1249 chat.php:1249
+msgid "Selection"
+msgstr "選択"
+
+#: index.php:1250 chat.php:1250
+msgid "Following nickname:"
+msgstr "以下のニックネーム:"
+
+#: index.php:1257 chat.php:1257
+msgid "Clean"
+msgstr "クリーン"
+
+#: index.php:1259 chat.php:1259
+#, php-format
+msgid "Kick Chatter (%d minutes)"
+msgstr "チャッターをキック (%d 分)"
+
+#: index.php:1261 chat.php:1261
+msgid "Kickmessage:"
+msgstr "キックメッセージ:"
+
+#: index.php:1262 chat.php:1262
+msgid "Purge messages"
+msgstr "メッセージを削除"
+
+#: index.php:1263 index.php:1445 index.php:1603 index.php:1637 index.php:1648
+#: index.php:2101 chat.php:1263 chat.php:1445 chat.php:1603 chat.php:1637
+#: chat.php:1648 chat.php:2101
+msgid "Kick"
+msgstr "キック"
+
+#: index.php:1265 chat.php:1265
+msgid "Logout inactive Chatter"
+msgstr "非アクティブなチャッターをログアウト"
+
+#: index.php:1269 chat.php:1269
+msgid "View active sessions"
+msgstr "アクティブなセッションを表示"
+
+#: index.php:1269 index.php:1660 chat.php:1269 chat.php:1660
+msgid "Linkfilter"
+msgstr "リンクフィルター"
+
+#: index.php:1274 chat.php:1274
+msgid "View"
+msgstr "表示"
+
+#: index.php:1280 index.php:1310 index.php:1361 index.php:1369 index.php:1639
+#: index.php:1683 chat.php:1280 chat.php:1310 chat.php:1361 chat.php:1369
+#: chat.php:1639 chat.php:1683
+msgid "Change"
+msgstr "変更"
+
+#: index.php:1313 chat.php:1313
+msgid "Register applicant"
+msgstr "申請者を登録"
+
+#: index.php:1321 index.php:1379 index.php:1385 chat.php:1321 chat.php:1379
+#: chat.php:1385
+msgid "Register"
+msgstr "登録"
+
+#: index.php:1351 chat.php:1351
+msgid "Delete from database"
+msgstr "データベースから削除"
+
+#: index.php:1351 chat.php:1351
+msgid "Deny access (!)"
+msgstr "アクセスを拒否 (!)"
+
+#: index.php:1353 chat.php:1353
+msgid "Set to applicant (SG)"
+msgstr "申請者に設定 (SG)"
+
+#: index.php:1355 chat.php:1355
+msgid "Set to regular member"
+msgstr "一般会員に設定"
+
+#: index.php:1356 chat.php:1356
+msgid "Set to moderator (M)"
+msgstr "モデレーターに設定 (M)"
+
+#: index.php:1357 chat.php:1357
+msgid "Set to supermod (SM)"
+msgstr "スーパーモデレーターに設定 (SM)"
+
+#: index.php:1359 chat.php:1359
+msgid "Set to admin (A)"
+msgstr "管理者に設定 (A)"
+
+#: index.php:1371 chat.php:1371
+msgid "Register Guest"
+msgstr "ゲストを登録"
+
+#: index.php:1381 chat.php:1381
+msgid "Register new Member"
+msgstr "新しいメンバーを登録"
+
+#: index.php:1389 index.php:1465 index.php:1652 index.php:1693 index.php:1767
+#: index.php:1981 chat.php:1389 chat.php:1465 chat.php:1652 chat.php:1693
+#: chat.php:1767 chat.php:1981
+msgid "Reload"
+msgstr "リロード"
+
+#: index.php:1402 chat.php:1402
+msgid "Active Sessions"
+msgstr "アクティブセッション"
+
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
+msgid "Nickname"
+msgstr "ニックネーム"
+
+#: index.php:1403 chat.php:1403
+msgid "Timeout in"
+msgstr "タイムアウトまで"
+
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
+msgid "User-Agent"
+msgstr "ユーザーエージェント"
+
+#: index.php:1407 chat.php:1407
+msgid "IP-Address"
+msgstr "IPアドレス"
+
+#: index.php:1408 chat.php:1408
+msgid "Actions"
+msgstr "アクション"
+
+#: index.php:1450 chat.php:1450
+msgid "Unban"
+msgstr "禁止解除"
+
+#: index.php:1473 chat.php:1473
+msgid "Incorrect regular expression!"
+msgstr "無効な正規表現です!"
+
+#: index.php:1473 index.php:1481 chat.php:1473 chat.php:1481
+#, php-format
+msgid "Your match was as follows: %s"
+msgstr "あなたの一致は次のとおりです: %s"
+
+#: index.php:1481 chat.php:1481
+msgid ""
+"Your match was too long. You can use max. 255 characters. Try splitting it "
+"up."
+msgstr ""
+"あなたの一致が長すぎました。最大255文字まで使用できます。分割して試してくださ"
+"い。"
+
+#: index.php:1598 index.php:1663 chat.php:1598 chat.php:1663
+msgid "Filter ID:"
+msgstr "フィルターID:"
+
+#: index.php:1599 index.php:1664 chat.php:1599 chat.php:1664
+msgid "Match"
+msgstr "一致"
+
+#: index.php:1600 index.php:1665 chat.php:1600 chat.php:1665
+msgid "Replace"
+msgstr "置き換え"
+
+#: index.php:1601 index.php:1635 index.php:1646 chat.php:1601 chat.php:1635
+#: chat.php:1646
+msgid "Allow in PM"
+msgstr "PMで許可"
+
+#: index.php:1602 index.php:1636 index.php:1647 index.php:1666 index.php:1682
+#: index.php:1690 chat.php:1602 chat.php:1636 chat.php:1647 chat.php:1666
+#: chat.php:1682 chat.php:1690
+msgid "Regex"
+msgstr "正規表現"
+
+#: index.php:1604 index.php:1638 index.php:1649 chat.php:1604 chat.php:1638
+#: chat.php:1649
+msgid "Case sensitive"
+msgstr "大文字と小文字を区別"
+
+#: index.php:1643 index.php:1687 chat.php:1643 chat.php:1687
+msgid "New filter:"
+msgstr "新しいフィルター:"
+
+#: index.php:1650 index.php:1691 chat.php:1650 chat.php:1691
+msgid "Add"
+msgstr "追加"
+
+#: index.php:1748 chat.php:1748
+msgid ""
+"This chat uses frames. Please enable frames in your browser or use a "
+"suitable one!"
+msgstr ""
+"このチャットは frames を使用しています。ブラウザで frames を有"
+"効にするか、適切なものを使用してください!"
+
+#: index.php:1748 index.php:2429 index.php:2516 chat.php:1748 chat.php:2429
+#: chat.php:2516
+msgid "Back to the login page."
+msgstr "ログインページに戻る。"
+
+#: index.php:1766 chat.php:1766
+msgid "Bottom"
+msgstr "下部"
+
+#: index.php:1767 chat.php:1767
+msgid "Manual refresh required"
+msgstr "手動でのリフレッシュが必要"
+
+#: index.php:1783 chat.php:1783
+msgid "Top"
+msgstr "上部"
+
+#: index.php:1791 index.php:1997 index.php:1999 chat.php:1791 chat.php:1997
+#: chat.php:1999
+msgid "Delete selected messages"
+msgstr "選択したメッセージを削除"
+
+#: index.php:1818 index.php:1945 index.php:2160 index.php:2340 chat.php:1818
+#: chat.php:1945 chat.php:2160 chat.php:2340
+msgid "Back to the chat."
+msgstr "チャットに戻る。"
+
+#: index.php:1831 index.php:1848 chat.php:1831 chat.php:1848
+msgid "Admin notes"
+msgstr "管理者ノート"
+
+#: index.php:1834 index.php:1845 chat.php:1834 chat.php:1845
+msgid "Staff notes"
+msgstr "スタッフノート"
+
+#: index.php:1868 chat.php:1868
+msgid "Notes saved!"
+msgstr "ノートが保存されました!"
+
+#: index.php:1892 index.php:2181 chat.php:1892 chat.php:2181
+#, php-format
+msgid "Last edited by %1$s at %2$s"
+msgstr "%1$s によって %2$s に最終編集されました"
+
+#: index.php:1905 chat.php:1905
+msgid "Save notes"
+msgstr "ノートを保存"
+
+#: index.php:1907 chat.php:1907
+msgid "Revisions:"
+msgstr "リビジョン:"
+
+#: index.php:1910 chat.php:1910
+msgid "Older"
+msgstr "古い"
+
+#: index.php:1914 chat.php:1914
+msgid "Newer"
+msgstr "新しい"
+
+#: index.php:1925 index.php:1971 chat.php:1925 chat.php:1971
+msgid "Waiting room"
+msgstr "待機室"
+
+#: index.php:1937 chat.php:1937
+msgid "Allow checked"
+msgstr "選択したものを許可"
+
+#: index.php:1938 chat.php:1938
+msgid "Allow all"
+msgstr "すべてを許可"
+
+#: index.php:1939 chat.php:1939
+msgid "Deny checked"
+msgstr "選択したものを拒否"
+
+#: index.php:1940 chat.php:1940
+msgid "Deny all"
+msgstr "すべてを拒否"
+
+#: index.php:1940 chat.php:1940
+msgid "Send message to denied:"
+msgstr "拒否されたユーザーにメッセージを送信:"
+
+#: index.php:1941 chat.php:1941
+msgid "Submit"
+msgstr "送信"
+
+#: index.php:1943 chat.php:1943
+msgid "No more entry requests to approve."
+msgstr "承認する入場リクエストはありません。"
+
+#: index.php:1973 chat.php:1973
+#, php-format
+msgid ""
+"Welcome %1$s, your login has been delayed, you can access the chat in %2$d "
+"seconds."
+msgstr ""
+"ようこそ %1$s、ログインが遅れています。%2$d 秒後にチャットにアクセスできま"
+"す。"
+
+#: index.php:1975 chat.php:1975
+#, php-format
+msgid ""
+"Welcome %1$s, your login has been delayed, you can access the chat as soon, "
+"as a moderator lets you in."
+msgstr ""
+"ようこそ %1$s、ログインが遅れています。モデレーターがあなたを入れたら、すぐに"
+"チャットにアクセスできます。"
+
+#: index.php:1978 chat.php:1978
+#, php-format
+msgid ""
+"If this page doesn't refresh every %d seconds, use the button below to "
+"reload it manually!"
+msgstr ""
+"このページが%d秒ごとに更新されない場合は、下のボタンを使って手動で再読み込み"
+"してください!"
+
+#: index.php:1983 index.php:2398 chat.php:1983 chat.php:2398
+msgid "Exit Chat"
+msgstr "チャットを退出"
+
+#: index.php:1986 index.php:2133 index.php:2144 index.php:2489 chat.php:1986
+#: chat.php:2133 chat.php:2144 chat.php:2489
+msgid "Rules"
+msgstr "ルール"
+
+#: index.php:2042 chat.php:2042
+msgid "Send to"
+msgstr "送信先"
+
+#: index.php:2047 chat.php:2047
+msgid "All chatters"
+msgstr "すべての参加者"
+
+#: index.php:2053 chat.php:2053
+msgid "Members only"
+msgstr "メンバーのみ"
+
+#: index.php:2060 chat.php:2060
+msgid "Staff only"
+msgstr "スタッフ専用"
+
+#: index.php:2067 chat.php:2067
+msgid "Admin only"
+msgstr "管理者専用"
+
+#: index.php:2076 chat.php:2076
+msgid "(offline)"
+msgstr "(オフライン)"
+
+#: index.php:2078 chat.php:2078
+msgid "(logging out)"
+msgstr ""
+
+#: index.php:2102 chat.php:2102
+msgid "Also purge messages"
+msgstr "メッセージも削除する"
+
+#: index.php:2109 chat.php:2109
+msgid "Delete last message"
+msgstr "最後のメッセージを削除"
+
+#: index.php:2114 chat.php:2114
+msgid "Delete all messages"
+msgstr "すべてのメッセージを削除"
+
+#: index.php:2116 chat.php:2116
+msgid "Switch to single-line"
+msgstr "シングルラインに切り替え"
+
+#: index.php:2118 chat.php:2118
+msgid "Switch to multi-line"
+msgstr "複数行に切り替え"
+
+#: index.php:2129 chat.php:2129
+#, php-format
+msgid "Welcome %s!"
+msgstr "ようこそ %s!"
+
+#: index.php:2130 chat.php:2130
+#, php-format
+msgid ""
+"If this frame does not reload in %d seconds, you'll have to enable automatic "
+"redirection (meta refresh) in your browser. Also make sure no web filter, "
+"local proxy tool or browser plugin is preventing automatic refreshing! This "
+"could be for example \"Polipo\", \"NoScript\", etc. As a workaround (or "
+"in case of server/proxy reload errors) you can always use the buttons at the "
+"bottom to refresh manually."
+msgstr ""
+"このフレームが %d 秒以内にリロードされない場合は、ブラウザで自動リダイレク"
+"ション (メタリフレッシュ)を有効にする必要があります。また、ウェブフィルター、"
+"ローカルプロキシ ツール、またはブラウザプラグインが自動リフレッシュを妨げてい"
+"ないことを確認してください! 例えば \"Polipo\" や \"NoScript\" などです。 "
+"代替手段として (またはサーバー/ プロキシリロードエラーの場合)、下のボタンを"
+"使って手動でリフレッシュできます。"
+
+#: index.php:2146 chat.php:2146
+msgid "Help"
+msgstr "ヘルプ"
+
+#: index.php:2147 chat.php:2147
+msgid ""
+"All functions should be pretty much self-explaining, just use the buttons. "
+"In your profile you can adjust the refresh rate and font colour, as well as "
+"ignore users. Note: This is a chat, so if you don't keep talking, "
+"you will be automatically logged out after a while."
+msgstr ""
+"すべての機能はほとんど自己説明的ですので、ボタンを使ってください。 プロフィー"
+"ルでは、リフレッシュレートやフォントの色を調整したり、ユーザーを無視したり で"
+"きます。 注意: これはチャットですので、話し続けないとしばらく後に"
+"自動的に ログアウトされます。"
+
+#: index.php:2149 chat.php:2149
+msgid ""
+"If you want to embed an image in your post, simply put [img] in front of "
+"your image URL. Example: [img]http://example.com/images/file.jpg will embed "
+"the image in your post."
+msgstr ""
+"投稿に画像を埋め込みたい場合は、画像のURLの前に [img] を追加するだけです。 "
+"例:[img]http://example.com/images/file.jpg とすると、画像が投稿に埋め込まれ"
+"ます。"
+
+#: index.php:2152 chat.php:2152
+msgid ""
+"Members: You'll have some more options in your profile. You can adjust your "
+"font face, change your password anytime and of course you can delete your "
+"account."
+msgstr ""
+"メンバー:プロフィールにはさらにいくつかのオプションがあります。 フォントの種"
+"類を調整したり、パスワードをいつでも変更したり、もちろんアカウントを 削除する"
+"こともできます。"
+
+#: index.php:2154 chat.php:2154
+msgid ""
+"Moderators: Notice the Admin-button at the bottom. It'll bring up a page "
+"where you can clean the room, kick chatters, view all active sessions and "
+"disable guest access completely if needed."
+msgstr ""
+"モデレーター:下部の管理ボタンに注意してください。それを押すと、部屋を掃除し"
+"たり、 チャッターを追い出したり、すべてのアクティブセッションを表示したり、必"
+"要に応じて ゲストアクセスを完全に無効にすることができるページが表示されます。"
+
+#: index.php:2156 chat.php:2156
+msgid ""
+"Admins: You'll be furthermore able to register guests, edit members and "
+"register new nicknames."
+msgstr ""
+"管理者:さらに、ゲストを登録したり、メンバーを編集したり、新しいニックネーム"
+"を 登録することができるようになります。"
+
+#: index.php:2194 chat.php:2194
+msgid "Your Profile"
+msgstr "あなたのプロフィール"
+
+#: index.php:2203 chat.php:2203
+msgid "Don't ignore anymore"
+msgstr "無視しない"
+
+#: index.php:2211 chat.php:2211
+msgid "Ignore"
+msgstr "無視する"
+
+#: index.php:2222 chat.php:2222
+#, php-format
+msgid "Refresh rate (%1$d-%2$d seconds)"
+msgstr "リフレッシュレート (%1$d-%2$d 秒)"
+
+#: index.php:2226 index.php:2229 chat.php:2226 chat.php:2229
+msgid "View examples"
+msgstr "例を表示"
+
+#: index.php:2233 chat.php:2233
+msgid "Fontface"
+msgstr "フォント"
+
+#: index.php:2234 chat.php:2234
+msgid "Room Default"
+msgstr "部屋のデフォルト"
+
+#: index.php:2247 chat.php:2247
+msgid "Bold"
+msgstr "太字"
+
+#: index.php:2251 chat.php:2251
+msgid "Italic"
+msgstr "斜体"
+
+#: index.php:2255 chat.php:2255
+msgid "Small"
+msgstr "小さい"
+
+#: index.php:2258 chat.php:2258
+msgid "Example for your chosen font"
+msgstr "選択したフォントの例"
+
+#: index.php:2262 chat.php:2262
+msgid "Autoscroll (for old browsers or top-to-bottom sort)."
+msgstr "自動スクロール(古いブラウザや上から下へのソート用)"
+
+#: index.php:2293 chat.php:2293
+msgid "For everyone"
+msgstr "誰でも"
+
+#: index.php:2298 chat.php:2298
+msgid "For members only"
+msgstr "メンバーのみ"
+
+#: index.php:2303 chat.php:2303
+msgid "For staff only"
+msgstr "スタッフのみ"
+
+#: index.php:2307 chat.php:2307
+msgid "Time zone"
+msgstr "タイムゾーン"
+
+#: index.php:2320 chat.php:2320
+msgid "Change Password"
+msgstr "パスワードを変更"
+
+#: index.php:2322 chat.php:2322
+msgid "Old password:"
+msgstr "古いパスワード:"
+
+#: index.php:2323 chat.php:2323
+msgid "New password:"
+msgstr "新しいパスワード:"
+
+#: index.php:2324 chat.php:2324
+msgid "Confirm new password:"
+msgstr "新しいパスワードを確認:"
+
+#: index.php:2327 chat.php:2327
+msgid "Change Nickname"
+msgstr "ニックネームを変更"
+
+#: index.php:2328 chat.php:2328
+msgid "New nickname:"
+msgstr "新しいニックネーム:"
+
+#: index.php:2332 chat.php:2332
+msgid "Save changes"
+msgstr "変更を保存"
+
+#: index.php:2334 chat.php:2334
+msgid "Delete account"
+msgstr "アカウントを削除"
+
+#: index.php:2360 chat.php:2360
+msgid "Reload Post Box"
+msgstr "投稿ボックスを再読み込み"
+
+#: index.php:2363 chat.php:2363
+msgid "Reload Messages"
+msgstr "メッセージを再読み込み"
+
+#: index.php:2366 chat.php:2366
+msgid "Profile"
+msgstr "プロフィール"
+
+#: index.php:2370 index.php:2590 chat.php:2370 chat.php:2590
+msgid "Admin"
+msgstr "管理者"
+
+#: index.php:2377 chat.php:2377
+msgid "View public notes"
+msgstr "公開ノートを表示"
+
+#: index.php:2384 chat.php:2384
+msgid "Clone"
+msgstr "クローン"
+
+#: index.php:2393 chat.php:2393
+msgid "Rearrange"
+msgstr "並べ替え"
+
+#: index.php:2396 chat.php:2396
+msgid "Rules & Help"
+msgstr "ルールとヘルプ"
+
+#: index.php:2417 index.php:2421 chat.php:2417 chat.php:2421
+msgid "File not found!"
+msgstr "ファイルが見つかりません!"
+
+#: index.php:2429 chat.php:2429
+#, php-format
+msgid "Bye %s, visit again soon!"
+msgstr "%sさん、さようなら。またすぐにお越しください!"
+
+#: index.php:2436 chat.php:2436
+msgid "Colourtable"
+msgstr "カラーテーブル"
+
+#: index.php:2447 chat.php:2447
+msgid "Back to your Profile"
+msgstr "プロフィールに戻る"
+
+#: index.php:2471 chat.php:2471
+msgid "Repeat password to register"
+msgstr "パスワードを再入力 して登録"
+
+#: index.php:2471 chat.php:2471
+msgid "(optional)"
+msgstr "(任意)"
+
+#: index.php:2476 chat.php:2476
+msgid "Guests, choose a colour:"
+msgstr "ゲストの方、色を選んでください:"
+
+#: index.php:2476 chat.php:2476
+msgid "Random Colour"
+msgstr "ランダムカラー"
+
+#: index.php:2480 index.php:2494 index.php:2631 chat.php:2480 chat.php:2494
+#: chat.php:2631
+msgid "Sorry, currently members only!"
+msgstr "申し訳ありませんが、現在はメンバーのみです!"
+
+#: index.php:2482 index.php:2496 chat.php:2482 chat.php:2496
+msgid "Enter Chat"
+msgstr "チャットに入る"
+
+#: index.php:2516 chat.php:2516
+#, php-format
+msgid "Error: %s"
+msgstr "エラー: %s"
+
+#: index.php:2526 chat.php:2526
+msgid "Fatal error"
+msgstr "致命的なエラー"
+
+#: index.php:2529 chat.php:2529
+#, php-format
+msgid "Fatal error: %s"
+msgstr "致命的なエラー: %s"
+
+#: index.php:2541 index.php:2756 chat.php:2541 chat.php:2756
+msgid "Failed login attempt(s)"
+msgstr "ログイン試行が失敗しました"
+
+#: index.php:2548 chat.php:2548
+#, php-format
+msgid "Read %d messages in your inbox"
+msgstr "受信トレイの%d件のメッセージを読む"
+
+#: index.php:2557 chat.php:2557
+#, php-format
+msgid "%d new guests to approve"
+msgstr "%d件の新しいゲストの承認が必要です"
+
+#: index.php:2577 chat.php:2577
+msgid "logging out"
+msgstr ""
+
+#: index.php:2592 chat.php:2592
+msgid "Admin:"
+msgstr "管理者:"
+
+#: index.php:2595 chat.php:2595
+msgid "Staff"
+msgstr "スタッフ"
+
+#: index.php:2597 chat.php:2597
+msgid "Staff:"
+msgstr "スタッフ:"
+
+#: index.php:2602 chat.php:2602
+msgid "Members:"
+msgstr "メンバー:"
+
+#: index.php:2604 chat.php:2604
+msgid "Guests"
+msgstr "ゲスト"
+
+#: index.php:2625 index.php:3063 index.php:3267 index.php:4172 chat.php:2625
+#: chat.php:3063 chat.php:3267 chat.php:4172
+#, php-format
+msgid ""
+"Invalid nickname (%1$d characters maximum and has to match the regular "
+"expression \"%2$s\")"
+msgstr ""
+"無効なニックネーム(最大%1$d文字で、正規表現\"%2$s\"に一致する必要がありま"
+"す)"
+
+#: index.php:2628 index.php:3066 index.php:3232 index.php:4174 chat.php:2628
+#: chat.php:3066 chat.php:3232 chat.php:4174
+#, php-format
+msgid ""
+"Invalid password (At least %1$d characters and has to match the regular "
+"expression \"%2$s\")"
+msgstr ""
+"無効なパスワード(少なくとも%1$d文字で、正規表現\"%2$s\"に一致する必要があり"
+"ます)"
+
+#: index.php:2636 index.php:2806 chat.php:2636 chat.php:2806
+msgid "Wrong global Password!"
+msgstr "グローバルパスワードが間違っています!"
+
+#: index.php:2654 index.php:2675 chat.php:2654 chat.php:2675
+msgid "Wrong Captcha"
+msgstr "キャプチャが間違っています"
+
+#: index.php:2659 index.php:2667 chat.php:2659 chat.php:2667
+msgid "Captcha already used or timed out."
+msgstr "キャプチャは既に使用されているか、期限切れです。"
+
+#: index.php:2715 chat.php:2715
+msgid "A user with this nickname is already logged in."
+msgstr "このニックネームのユーザーはすでにログインしています。"
+
+#: index.php:2715 index.php:3003 index.php:3246 chat.php:2715 chat.php:3003
+#: chat.php:3246
+msgid "Wrong Password!"
+msgstr "パスワードが間違っています!"
+
+#: index.php:2759 chat.php:2759
+msgid "Dismiss"
+msgstr "閉じる"
+
+#: index.php:2814 index.php:3241 index.php:4176 chat.php:2814 chat.php:3241
+#: chat.php:4176
+msgid "Password confirmation does not match!"
+msgstr "パスワード確認が一致しません!"
+
+#: index.php:2854 chat.php:2854
+#, fuzzy
+#| msgid "Kickmessage:"
+msgid "no kick message"
+msgstr "キックメッセージ:"
+
+#: index.php:2929 chat.php:2929
+msgid "Invalid/expired session"
+msgstr "無効または期限切れのセッション"
+
+#: index.php:2945 index.php:3483 chat.php:2945 chat.php:3483
+msgid "You have been kicked!"
+msgstr "あなたは追い出されました!"
+
+#: index.php:2955 chat.php:2955
+#, php-format
+msgid "Currently %d chatter(s) in room:"
+msgstr "現在、部屋には%d人がチャットしています:"
+
+#: index.php:3003 chat.php:3003
+msgid "This nickname is a registered member."
+msgstr "このニックネームは既に登録されたメンバーです。"
+
+#: index.php:3030 index.php:3071 chat.php:3030 chat.php:3071
+#, php-format
+msgid "%s is already registered."
+msgstr "%sは既に登録されています。"
+
+#: index.php:3039 index.php:3060 chat.php:3039 chat.php:3060
+#, php-format
+msgid "Can't register %s"
+msgstr "%sは登録できません"
+
+#: index.php:3048 index.php:3093 chat.php:3048 chat.php:3093
+#, php-format
+msgid "%s successfully registered."
+msgstr "%sは正常に登録されました。"
+
+#: index.php:3101 index.php:3106 chat.php:3101 chat.php:3106
+#, php-format
+msgid "Can't change status of %s"
+msgstr "%sのステータスを変更できません"
+
+#: index.php:3117 chat.php:3117
+#, php-format
+msgid "%s successfully deleted from database."
+msgstr "%sはデータベースから正常に削除されました。"
+
+#: index.php:3126 chat.php:3126
+#, php-format
+msgid "Status of %s successfully changed."
+msgstr "%sのステータスは正常に変更されました。"
+
+#: index.php:3143 chat.php:3143
+#, php-format
+msgid "Successfully reset password for %s"
+msgstr "%sのパスワードが正常にリセットされました。"
+
+#: index.php:3145 chat.php:3145
+#, php-format
+msgid "Can't reset password for %s"
+msgstr "%sのパスワードをリセットできません"
+
+#: index.php:3260 chat.php:3260
+msgid "Your profile has successfully been saved."
+msgstr "あなたのプロフィールは正常に保存されました。"
+
+#: index.php:3272 chat.php:3272
+msgid "Nickname is already taken"
+msgstr "そのニックネームは既に使われています"
+
+#: index.php:3785 chat.php:3785
+msgid "system message"
+msgstr "システムメッセージ"
+
+#: index.php:4001 chat.php:4001
+msgid "Beige"
+msgstr "ベージュ"
+
+#: index.php:4002 chat.php:4002
+msgid "Black"
+msgstr "ブラック"
+
+#: index.php:4003 chat.php:4003
+msgid "Blue"
+msgstr "ブルー"
+
+#: index.php:4004 chat.php:4004
+msgid "Blue violet"
+msgstr "ブルーバイオレット"
+
+#: index.php:4005 chat.php:4005
+msgid "Brown"
+msgstr "ブラウン"
+
+#: index.php:4006 chat.php:4006
+msgid "Cyan"
+msgstr "シアン"
+
+#: index.php:4007 chat.php:4007
+msgid "Dark blue"
+msgstr "ダークブルー"
+
+#: index.php:4008 chat.php:4008
+msgid "Dark green"
+msgstr "ダークグリーン"
+
+#: index.php:4009 chat.php:4009
+msgid "Dark red"
+msgstr "ダークレッド"
+
+#: index.php:4010 chat.php:4010
+msgid "Dark violet"
+msgstr "ダークバイオレット"
+
+#: index.php:4011 chat.php:4011
+msgid "Sky blue"
+msgstr "スカイブルー"
+
+#: index.php:4012 chat.php:4012
+msgid "Gold"
+msgstr "ゴールド"
+
+#: index.php:4013 chat.php:4013
+msgid "Grey"
+msgstr "グレー"
+
+#: index.php:4014 chat.php:4014
+msgid "Green"
+msgstr "グリーン"
+
+#: index.php:4015 chat.php:4015
+msgid "Hot pink"
+msgstr "ホットピンク"
+
+#: index.php:4016 chat.php:4016
+msgid "Indigo"
+msgstr "インディゴ"
+
+#: index.php:4017 chat.php:4017
+msgid "Light blue"
+msgstr "ライトブルー"
+
+#: index.php:4018 chat.php:4018
+msgid "Light green"
+msgstr "ライトグリーン"
+
+#: index.php:4019 chat.php:4019
+msgid "Lime green"
+msgstr "ライムグリーン"
+
+#: index.php:4020 chat.php:4020
+msgid "Magenta"
+msgstr "マゼンタ"
+
+#: index.php:4021 chat.php:4021
+msgid "Olive"
+msgstr "オリーブ"
+
+#: index.php:4022 chat.php:4022
+msgid "Orange"
+msgstr "オレンジ"
+
+#: index.php:4023 chat.php:4023
+msgid "Orange red"
+msgstr "オレンジレッド"
+
+#: index.php:4024 chat.php:4024
+msgid "Purple"
+msgstr "パープル"
+
+#: index.php:4025 chat.php:4025
+msgid "Red"
+msgstr "レッド"
+
+#: index.php:4026 chat.php:4026
+msgid "Royal blue"
+msgstr "ロイヤルブルー"
+
+#: index.php:4027 chat.php:4027
+msgid "Sea green"
+msgstr "シーグリーン"
+
+#: index.php:4028 chat.php:4028
+msgid "Sienna"
+msgstr "シエナ"
+
+#: index.php:4029 chat.php:4029
+msgid "Silver"
+msgstr "シルバー"
+
+#: index.php:4030 chat.php:4030
+msgid "Tan"
+msgstr "タン"
+
+#: index.php:4031 chat.php:4031
+msgid "Teal"
+msgstr "ティール"
+
+#: index.php:4032 chat.php:4032
+msgid "Violet"
+msgstr "バイオレット"
+
+#: index.php:4033 chat.php:4033
+msgid "White"
+msgstr "ホワイト"
+
+#: index.php:4034 chat.php:4034
+msgid "Yellow"
+msgstr "イエロー"
+
+#: index.php:4035 chat.php:4035
+msgid "Yellow green"
+msgstr "イエローグリーン"
+
+#: index.php:4157 chat.php:4157
+msgid "Successfully destroyed chat"
+msgstr "チャットは正常に破棄されました"
+
+#: index.php:4166 chat.php:4166
+msgid ""
+"Database tables already exist! To continue, you have to delete these tables "
+"manually first."
+msgstr ""
+"データベーステーブルは既に存在します!続行するには、これらのテーブルを先に手"
+"動で削除する必要があります。"
+
+#: index.php:4169 chat.php:4169
+msgid "A Superadmin already exists!"
+msgstr "スーパー管理者は既に存在します!"
+
+#: index.php:4263 index.php:4451 chat.php:4263 chat.php:4451
+#, php-format
+msgid "%s - "
+msgstr ""
+
+#: index.php:4264 index.php:4451 chat.php:4264 chat.php:4451
+#, php-format
+msgid "[M] %s - "
+msgstr ""
+
+#: index.php:4265 index.php:4451 chat.php:4265 chat.php:4451
+#, php-format
+msgid "[Staff] %s - "
+msgstr "[スタッフ] %s - "
+
+#: index.php:4266 index.php:4451 chat.php:4266 chat.php:4451
+#, php-format
+msgid "[Admin] %s - "
+msgstr "[管理者] %s - "
+
+#: index.php:4267 index.php:4451 chat.php:4267 chat.php:4451
+#, php-format
+msgid "[%1$s to %2$s] - "
+msgstr "[%1$s から %2$s へ] - "
+
+#: index.php:4268 chat.php:4268
+#, php-format
+msgid "%s entered the chat."
+msgstr "%s がチャットに参加しました。"
+
+#: index.php:4269 chat.php:4269
+#, php-format
+msgid "%s left the chat."
+msgstr "%s がチャットから退出しました。"
+
+#: index.php:4270 chat.php:4270
+#, php-format
+msgid "%s is now a registered member."
+msgstr "%s は現在、登録されたメンバーです。"
+
+#: index.php:4271 chat.php:4271
+#, php-format
+msgid "%s is now a registered applicant."
+msgstr "%s は現在、登録申請者です。"
+
+#: index.php:4272 chat.php:4272
+#, fuzzy, php-format
+#| msgid "%s has been kicked."
+msgid "%1$s has been kicked: %2$s"
+msgstr "%s はキックされました。"
+
+#: index.php:4273 chat.php:4273
+#, fuzzy, php-format
+#| msgid "%s have been kicked."
+msgid "%1$s have been kicked: %2$s"
+msgstr "%s はキックされました。"
+
+#: index.php:4274 chat.php:4274
+#, fuzzy, php-format
+#| msgid "All guests have been kicked."
+msgid "All guests have been kicked: %1$s"
+msgstr "すべてのゲストがキックされました。"
+
+#: index.php:4275 chat.php:4275
+#, php-format
+msgid "%s has been cleaned."
+msgstr "%s はクリーンアップされました。"
+
+#: index.php:4283 index.php:4478 chat.php:4283 chat.php:4478
+msgid "Temporarily disabled"
+msgstr "一時的に無効化されました"
+
+#: index.php:4299 index.php:4676 chat.php:4299 chat.php:4676
+msgid "A chat community"
+msgstr "チャットコミュニティ"
+
+#: index.php:4338 chat.php:4338
+msgid "Successfully registered!"
+msgstr "登録に成功しました!"
+
+#: index.php:4604 index.php:4807 index.php:4814 chat.php:4604 chat.php:4807
+#: chat.php:4814
+msgid "No connection to database!"
+msgstr "データベースに接続できません!"
+
+#: index.php:4613 chat.php:4613
+msgid ""
+"Note: Default CSS is now hardcoded and can be removed from the CSS setting"
+msgstr ""
+"注意: デフォルトのCSSは現在ハードコーディングされており、CSS設定から削除でき"
+"ます。"
+
+#: index.php:4697 chat.php:4697
+#, php-format
+msgid ""
+"The %s extension of PHP is required for the encryption feature. Please "
+"install it first or set the encrypted setting back to false."
+msgstr ""
+"暗号化機能にはPHPの%s拡張が必要です。まずインストールするか、暗号化設定を"
+"falseに戻してください。"
+
+#: index.php:4770 index.php:4775 index.php:4780 chat.php:4770 chat.php:4775
+#: chat.php:4780
+#, php-format
+msgid ""
+"The %s extension of PHP is required for the selected database driver. Please "
+"install it first."
+msgstr ""
+"選択したデータベースドライバにはPHPの%s拡張が必要です。まずインストールしてく"
+"ださい。"
+
+#: index.php:4793 index.php:4801 index.php:4805 index.php:4812 chat.php:4793
+#: chat.php:4801 chat.php:4805 chat.php:4812
+msgid ""
+"No connection to database, please create a database and edit the script to "
+"use the correct database with given username and password!"
+msgstr ""
+"データベースへの接続がありません。データベースを作成し、スクリプトを編集し"
+"て、指定されたユーザー名とパスワードで正しいデータベースを使用してください!"
+
+#: index.php:4820 chat.php:4820
+msgid ""
+"The memcached extension of PHP is required for the caching feature. Please "
+"install it first or set the memcached setting back to false."
+msgstr ""
+"キャッシュ機能にはPHPのmemcached拡張が必要です。まずインストールするか、"
+"memcached設定をfalseに戻してください。"
diff --git a/locale/le-chat-php.pot b/locale/le-chat-php.pot
index abe99cb..b6f95f0 100644
--- a/locale/le-chat-php.pot
+++ b/locale/le-chat-php.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-01-18 21:32+0100\n"
+"POT-Creation-Date: 2025-03-29 17:02+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -17,933 +17,982 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
-#: chat.php:261
+#: index.php:272 chat.php:272
msgid "Enable applicants"
msgstr ""
-#: chat.php:262
+#: index.php:273 index.php:2267 chat.php:273 chat.php:2267
msgid "Embed images"
msgstr ""
-#: chat.php:263 chat.php:2202
+#: index.php:274 index.php:2261 chat.php:274 chat.php:2261
msgid "Show Timestamps"
msgstr ""
-#: chat.php:264
+#: index.php:275 chat.php:275
msgid "Show session-IP"
msgstr ""
-#: chat.php:265
+#: index.php:276 chat.php:276
msgid "Members can kick, if no moderator is present"
msgstr ""
-#: chat.php:266
+#: index.php:277 chat.php:277
msgid "Members can always kick"
msgstr ""
-#: chat.php:267
+#: index.php:278 chat.php:278
msgid "Force redirection"
msgstr ""
-#: chat.php:268
+#: index.php:279 index.php:2270 chat.php:279 chat.php:2270
msgid "Incognito mode"
msgstr ""
-#: chat.php:269
+#: index.php:280 chat.php:280
msgid "Send mail on new public message"
msgstr ""
-#: chat.php:270
+#: index.php:281 chat.php:281
msgid "Fallback to waiting room, if no moderator is present to approve guests"
msgstr ""
-#: chat.php:271
+#: index.php:282 chat.php:282
msgid "Disable private messages"
msgstr ""
-#: chat.php:272 chat.php:2223
+#: index.php:283 index.php:2282 chat.php:283 chat.php:2282
msgid "Enable offline inbox"
msgstr ""
-#: chat.php:273
+#: index.php:284 chat.php:284
msgid "Show a greeting message before showing the messages"
msgstr ""
-#: chat.php:274 chat.php:2204
+#: index.php:285 index.php:2263 chat.php:285 chat.php:2263
msgid "Sort messages from top to bottom"
msgstr ""
-#: chat.php:275 chat.php:2205
+#: index.php:286 index.php:2264 chat.php:286 chat.php:2264
msgid "Hide list of chatters"
msgstr ""
-#: chat.php:276 chat.php:1780 chat.php:1794
+#: index.php:287 index.php:1837 index.php:1851 chat.php:287 chat.php:1837
+#: chat.php:1851
msgid "Personal notes"
msgstr ""
-#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110
+#: index.php:288 index.php:1840 index.php:1854 index.php:2169 chat.php:288
+#: chat.php:1840 chat.php:1854 chat.php:2169
msgid "Public notes"
msgstr ""
-#: chat.php:278
+#: index.php:289 chat.php:289
msgid "Apply kick filter on moderators"
msgstr ""
-#: chat.php:279
+#: index.php:290 chat.php:290
msgid "Show who kicks people or purges all messages."
msgstr ""
-#: chat.php:280
+#: index.php:291 chat.php:291
msgid "Hide reload post box button"
msgstr ""
-#: chat.php:281
+#: index.php:292 chat.php:292
msgid "Hide reload messages button"
msgstr ""
-#: chat.php:282
+#: index.php:293 chat.php:293
msgid "Hide profile button"
msgstr ""
-#: chat.php:283
+#: index.php:294 chat.php:294
msgid "Hide admin button"
msgstr ""
-#: chat.php:284
+#: index.php:295 chat.php:295
msgid "Hide notes button"
msgstr ""
-#: chat.php:285
+#: index.php:296 chat.php:296
msgid "Hide clone button"
msgstr ""
-#: chat.php:286
+#: index.php:297 chat.php:297
msgid "Hide rearrange button"
msgstr ""
-#: chat.php:287
+#: index.php:298 chat.php:298
msgid "Hide help button"
msgstr ""
-#: chat.php:288
+#: index.php:299 chat.php:299
msgid "Apply postbox delete button globally"
msgstr ""
-#: chat.php:289
+#: index.php:300 chat.php:300
msgid "Allow enhancing functionality with JavaScript"
msgstr ""
-#: chat.php:292 chat.php:2170
+#: index.php:303 index.php:2229 chat.php:303 chat.php:2229
msgid "Background colour"
msgstr ""
-#: chat.php:293 chat.php:2167
+#: index.php:304 index.php:2226 chat.php:304 chat.php:2226
msgid "Font colour"
msgstr ""
-#: chat.php:296
+#: index.php:307 chat.php:307
msgid "Entrance"
msgstr ""
-#: chat.php:297
+#: index.php:308 chat.php:308
msgid "Leaving"
msgstr ""
-#: chat.php:298
+#: index.php:309 chat.php:309
msgid "Member registered"
msgstr ""
-#: chat.php:299
+#: index.php:310 chat.php:310
msgid "Applicant registered"
msgstr ""
-#: chat.php:300
+#: index.php:311 chat.php:311
msgid "Kicked"
msgstr ""
-#: chat.php:301
+#: index.php:312 chat.php:312
msgid "Multiple kicked"
msgstr ""
-#: chat.php:302
+#: index.php:313 chat.php:313
msgid "All kicked"
msgstr ""
-#: chat.php:303
+#: index.php:314 chat.php:314
msgid "Room cleaned"
msgstr ""
-#: chat.php:304
+#: index.php:315 chat.php:315
msgid "Message to all"
msgstr ""
-#: chat.php:305
+#: index.php:316 chat.php:316
msgid "Message to members only"
msgstr ""
-#: chat.php:306
+#: index.php:317 chat.php:317
msgid "Message to staff only"
msgstr ""
-#: chat.php:307
+#: index.php:318 chat.php:318
msgid "Message to admins only"
msgstr ""
-#: chat.php:308
+#: index.php:319 chat.php:319
msgid "Private message"
msgstr ""
-#: chat.php:309
+#: index.php:320 chat.php:320
msgid "Attachement"
msgstr ""
-#: chat.php:312
+#: index.php:323 chat.php:323
msgid "Member timeout (minutes)"
msgstr ""
-#: chat.php:313
+#: index.php:324 chat.php:324
msgid "Guest timeout (minutes)"
msgstr ""
-#: chat.php:314
+#: index.php:325 chat.php:325
msgid "Kick penalty (minutes)"
msgstr ""
-#: chat.php:315
+#: index.php:326 chat.php:326
msgid "Waiting room time (seconds)"
msgstr ""
-#: chat.php:316
+#: index.php:327 chat.php:327
+msgid "Logout delay (seconds)"
+msgstr ""
+
+#: index.php:328 chat.php:328
msgid "Captcha timeout (seconds)"
msgstr ""
-#: chat.php:317
+#: index.php:329 chat.php:329
msgid "Message timeout (minutes)"
msgstr ""
-#: chat.php:318
+#: index.php:330 chat.php:330
msgid "Message limit (public)"
msgstr ""
-#: chat.php:319
+#: index.php:331 chat.php:331
msgid "Maximal message length"
msgstr ""
-#: chat.php:320
+#: index.php:332 chat.php:332
msgid "Maximal nickname length"
msgstr ""
-#: chat.php:321
+#: index.php:333 chat.php:333
msgid "Minimal password length"
msgstr ""
-#: chat.php:322
+#: index.php:334 chat.php:334
msgid "Default message reload time (seconds)"
msgstr ""
-#: chat.php:323
+#: index.php:335 chat.php:335
msgid "Number of notes revisions to keep"
msgstr ""
-#: chat.php:324
+#: index.php:336 chat.php:336
msgid "Maximum upload size in KB"
msgstr ""
-#: chat.php:325
+#: index.php:337 chat.php:337
msgid "Enable file uploads"
msgstr ""
-#: chat.php:326
+#: index.php:338 chat.php:338
msgid "Lowest refresh rate"
msgstr ""
-#: chat.php:327
+#: index.php:339 chat.php:339
msgid "Highest refresh rate"
msgstr ""
-#: chat.php:330
+#: index.php:342 chat.php:342
msgid "Rules (html)"
msgstr ""
-#: chat.php:331
+#: index.php:343 chat.php:343
msgid "CSS Style"
msgstr ""
-#: chat.php:332
+#: index.php:344 chat.php:344
msgid "Chat disabled message (html)"
msgstr ""
-#: chat.php:335
+#: index.php:347 chat.php:347
msgid ""
"Date "
"formating"
msgstr ""
-#: chat.php:336
+#: index.php:348 chat.php:348
msgid "Characters used in Captcha"
msgstr ""
-#: chat.php:337
+#: index.php:349 chat.php:349
msgid "Custom redirection script"
msgstr ""
-#: chat.php:338
+#: index.php:350 chat.php:350
msgid "Chat name"
msgstr ""
-#: chat.php:339
+#: index.php:351 chat.php:351
msgid "Send mail using this address"
msgstr ""
-#: chat.php:340
+#: index.php:352 chat.php:352
msgid "Send mail to this address"
msgstr ""
-#: chat.php:341
+#: index.php:353 chat.php:353
msgid "Nickname regex"
msgstr ""
-#: chat.php:342
+#: index.php:354 chat.php:354
msgid "Password regex"
msgstr ""
-#: chat.php:343
+#: index.php:355 chat.php:355
msgid "Link to external CSS file (on your own server)"
msgstr ""
-#: chat.php:344
+#: index.php:356 chat.php:356
msgid "Meta description (best 50 - 160 characters for SEO)"
msgstr ""
-#: chat.php:345
+#: index.php:357 chat.php:357
+msgid "Show this text when a user's logout is delayed"
+msgstr ""
+
+#: index.php:358 chat.php:358
msgid "Prepend this text to system messages"
msgstr ""
-#: chat.php:348 chat.php:728 chat.php:1225
+#: index.php:361 index.php:780 index.php:1282 chat.php:361 chat.php:780
+#: chat.php:1282
msgid "Change Guestaccess"
msgstr ""
-#: chat.php:349
+#: index.php:362 chat.php:362
msgid "Enable global Password"
msgstr ""
-#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433
+#: index.php:363 index.php:810 index.php:2474 index.php:2492 chat.php:363
+#: chat.php:810 chat.php:2474 chat.php:2492
msgid "Global Password:"
msgstr ""
-#: chat.php:351 chat.php:819
+#: index.php:364 index.php:871 chat.php:364 chat.php:871
msgid "Captcha"
msgstr ""
-#: chat.php:352 chat.php:775 chat.php:835
+#: index.php:365 index.php:827 index.php:887 chat.php:365 chat.php:827
+#: chat.php:887
msgid "Only for guests"
msgstr ""
-#: chat.php:353 chat.php:1220
+#: index.php:366 index.php:1277 chat.php:366 chat.php:1277
msgid "Topic"
msgstr ""
-#: chat.php:354 chat.php:781
+#: index.php:367 index.php:833 chat.php:367 chat.php:833
msgid "Let guests register themselves"
msgstr ""
-#: chat.php:355 chat.php:862
+#: index.php:368 index.php:919 chat.php:368 chat.php:919
msgid "Default time zone"
msgstr ""
-#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259
+#: index.php:581 index.php:1157 index.php:4158 index.php:4341 chat.php:581
+#: chat.php:1157 chat.php:4158 chat.php:4341
msgid "Initial Setup"
msgstr ""
-#: chat.php:588
+#: index.php:601 chat.php:601
#, php-format
msgid "Redirecting to: %s"
msgstr ""
-#: chat.php:595
+#: index.php:608 chat.php:608
#, php-format
msgid ""
"Dangerous non-http link requested, copy paste this link if you are really "
"sure: %s"
msgstr ""
-#: chat.php:597
+#: index.php:610 chat.php:610
#, php-format
msgid "Non-http link requested: %s"
msgstr ""
-#: chat.php:599
+#: index.php:612 chat.php:612
#, php-format
msgid "If it's not working, try this one: %s"
msgstr ""
-#: chat.php:609
+#: index.php:622 chat.php:622
msgid "Access denied"
msgstr ""
-#: chat.php:609
+#: index.php:622 chat.php:622
#, php-format
msgid "You are logged in as %s and don't have access to this section."
msgstr ""
-#: chat.php:611 chat.php:915 chat.php:1211 chat.php:1393
+#: index.php:624 index.php:972 index.php:1268 index.php:1450 chat.php:624
+#: chat.php:972 chat.php:1268 chat.php:1450
msgid "Logout"
msgstr ""
-#: chat.php:636
+#: index.php:649 chat.php:649
msgid "Copy:"
msgstr ""
-#: chat.php:724
+#: index.php:776 chat.php:776
msgid "Chat Setup"
msgstr ""
-#: chat.php:734 chat.php:1233
+#: index.php:786 index.php:1290 chat.php:786 chat.php:1290
msgid "Allow"
msgstr ""
-#: chat.php:739 chat.php:1238
+#: index.php:791 index.php:1295 chat.php:791 chat.php:1295
msgid "Allow with waitingroom"
msgstr ""
-#: chat.php:744 chat.php:1243
+#: index.php:796 index.php:1300 chat.php:796 chat.php:1300
msgid "Require moderator approval"
msgstr ""
-#: chat.php:749 chat.php:1248
+#: index.php:801 index.php:1305 chat.php:801 chat.php:1305
msgid "Only members"
msgstr ""
-#: chat.php:754 chat.php:1251
+#: index.php:806 index.php:1308 chat.php:806 chat.php:1308
msgid "Disable chat"
msgstr ""
-#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229
+#: index.php:817 index.php:839 index.php:894 index.php:953 index.php:2288
+#: chat.php:817 chat.php:839 chat.php:894 chat.php:953 chat.php:2288
msgid "Disabled"
msgstr ""
-#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219
+#: index.php:822 index.php:882 index.php:958 index.php:2278 chat.php:822
+#: chat.php:882 chat.php:958 chat.php:2278
msgid "Enabled"
msgstr ""
-#: chat.php:792
+#: index.php:844 chat.php:844
msgid "As applicant"
msgstr ""
-#: chat.php:797
+#: index.php:849 chat.php:849
msgid "As member"
msgstr ""
-#: chat.php:800
+#: index.php:852 chat.php:852
msgid "System messages"
msgstr ""
-#: chat.php:822 chat.php:1053
+#: index.php:874 index.php:1110 chat.php:874 chat.php:1110
#, php-format
msgid ""
"The %s extension of PHP is required for this feature. Please install it "
"first."
msgstr ""
-#: chat.php:847
+#: index.php:899 chat.php:899
msgid "Simple"
msgstr ""
-#: chat.php:852
+#: index.php:904 chat.php:904
msgid "Moderate"
msgstr ""
-#: chat.php:857
+#: index.php:909 chat.php:909
+msgid "Hard"
+msgstr ""
+
+#: index.php:914 chat.php:914
msgid "Extreme"
msgstr ""
-#: chat.php:906 chat.php:1548 chat.php:1610
+#: index.php:963 index.php:1605 index.php:1667 chat.php:963 chat.php:1605
+#: chat.php:1667
msgid "Apply"
msgstr ""
-#: chat.php:910 chat.php:1050
+#: index.php:967 index.php:1107 chat.php:967 chat.php:1107
msgid "Backup and restore"
msgstr ""
-#: chat.php:912
+#: index.php:969 chat.php:969
msgid "Destroy chat"
msgstr ""
-#: chat.php:1057 chat.php:1066
+#: index.php:1114 index.php:1123 chat.php:1114 chat.php:1123
msgid "Settings"
msgstr ""
-#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575
-#: chat.php:1622
+#: index.php:1115 index.php:1124 index.php:1269 index.php:1595 index.php:1632
+#: index.php:1679 chat.php:1115 chat.php:1124 chat.php:1269 chat.php:1595
+#: chat.php:1632 chat.php:1679
msgid "Filter"
msgstr ""
-#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538
+#: index.php:1116 index.php:1125 index.php:1325 index.php:2600 chat.php:1116
+#: chat.php:1125 chat.php:1325 chat.php:2600
msgid "Members"
msgstr ""
-#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322
+#: index.php:1117 index.php:1126 index.php:2373 index.php:2381 chat.php:1117
+#: chat.php:1126 chat.php:2373 chat.php:2381
msgid "Notes"
msgstr ""
-#: chat.php:1061
+#: index.php:1118 chat.php:1118
msgid "Backup"
msgstr ""
-#: chat.php:1070
+#: index.php:1127 chat.php:1127
msgid "Restore"
msgstr ""
-#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260
+#: index.php:1131 index.php:1174 index.php:1212 index.php:1242 index.php:4342
+#: chat.php:1131 chat.php:1174 chat.php:1212 chat.php:1242 chat.php:4342
msgid "Go to the Setup-Page"
msgstr ""
-#: chat.php:1082 chat.php:1091 chat.php:1949
+#: index.php:1139 index.php:1148 index.php:2006 chat.php:1139 chat.php:1148
+#: chat.php:2006
msgid "Are you sure?"
msgstr ""
-#: chat.php:1083 chat.php:1092 chat.php:1956
+#: index.php:1140 index.php:1149 index.php:2013 chat.php:1140 chat.php:1149
+#: chat.php:2013
msgid "Yes"
msgstr ""
-#: chat.php:1084 chat.php:1093 chat.php:1963
+#: index.php:1141 index.php:1150 index.php:2020 chat.php:1141 chat.php:1150
+#: chat.php:2020
msgid "No"
msgstr ""
-#: chat.php:1101 chat.php:4259
+#: index.php:1158 index.php:4341 chat.php:1158 chat.php:4341
msgid "Superadmin Login"
msgstr ""
-#: chat.php:1102
+#: index.php:1159 chat.php:1159
msgid "Superadmin Nickname:"
msgstr ""
-#: chat.php:1103
+#: index.php:1160 chat.php:1160
msgid "Superadmin Password:"
msgstr ""
-#: chat.php:1104
+#: index.php:1161 chat.php:1161
msgid "Confirm Password:"
msgstr ""
-#: chat.php:1105
+#: index.php:1162 chat.php:1162
msgid "Initialise Chat"
msgstr ""
-#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439
+#: index.php:1163 index.php:1187 index.php:1213 index.php:2336 index.php:2498
+#: chat.php:1163 chat.php:1187 chat.php:1213 chat.php:2336 chat.php:2498
msgid "Change language:"
msgstr ""
-#: chat.php:1117
+#: index.php:1174 chat.php:1174
msgid "Database successfully updated!"
msgstr ""
-#: chat.php:1125 chat.php:1326 chat.php:2407
+#: index.php:1182 index.php:1383 index.php:2466 chat.php:1182 chat.php:1383
+#: chat.php:2466
msgid "Nickname:"
msgstr ""
-#: chat.php:1126 chat.php:1327 chat.php:2408
+#: index.php:1183 index.php:1384 index.php:2467 chat.php:1183 chat.php:1384
+#: chat.php:2467
msgid "Password:"
msgstr ""
-#: chat.php:1128
+#: index.php:1185 chat.php:1185
msgid "Login"
msgstr ""
-#: chat.php:1129
+#: index.php:1186 chat.php:1186
msgid "Forgot login?"
msgstr ""
-#: chat.php:1142 chat.php:1306
+#: index.php:1199 index.php:1363 chat.php:1199 chat.php:1363
msgid "Reset password"
msgstr ""
-#: chat.php:1150
+#: index.php:1207 chat.php:1207
#, php-format
msgid ""
"Successfully reset password for username %s. Please remove the password "
"reset define from the script again."
msgstr ""
-#: chat.php:1153
+#: index.php:1210 chat.php:1210
msgid ""
"Please modify the script and put the following at the bottom of it (change "
"the password). Then refresh this page: define('RESET_SUPERADMIN_PASSWORD', "
"'changeme');"
msgstr ""
-#: chat.php:1169 chat.php:1193 chat.php:1258 chat.php:1270 chat.php:1294
-#: chat.php:1308 chat.php:1316 chat.php:2145 chat.php:2153
+#: index.php:1226 index.php:1250 index.php:1315 index.php:1327 index.php:1351
+#: index.php:1365 index.php:1373 index.php:2204 index.php:2212 chat.php:1226
+#: chat.php:1250 chat.php:1315 chat.php:1327 chat.php:1351 chat.php:1365
+#: chat.php:1373 chat.php:2204 chat.php:2212
msgid "(choose)"
msgstr ""
-#: chat.php:1170
+#: index.php:1227 chat.php:1227
msgid "All guests"
msgstr ""
-#: chat.php:1182
+#: index.php:1239 chat.php:1239
msgid "Administrative functions"
msgstr ""
-#: chat.php:1188
+#: index.php:1245 chat.php:1245
msgid "Clean messages"
msgstr ""
-#: chat.php:1191
+#: index.php:1248 chat.php:1248
msgid "Whole room"
msgstr ""
-#: chat.php:1192
+#: index.php:1249 chat.php:1249
msgid "Selection"
msgstr ""
-#: chat.php:1193
+#: index.php:1250 chat.php:1250
msgid "Following nickname:"
msgstr ""
-#: chat.php:1200
+#: index.php:1257 chat.php:1257
msgid "Clean"
msgstr ""
-#: chat.php:1202
+#: index.php:1259 chat.php:1259
#, php-format
msgid "Kick Chatter (%d minutes)"
msgstr ""
-#: chat.php:1204
+#: index.php:1261 chat.php:1261
msgid "Kickmessage:"
msgstr ""
-#: chat.php:1205
+#: index.php:1262 chat.php:1262
msgid "Purge messages"
msgstr ""
-#: chat.php:1206 chat.php:1388 chat.php:1546 chat.php:1580 chat.php:1591
-#: chat.php:2042
+#: index.php:1263 index.php:1445 index.php:1603 index.php:1637 index.php:1648
+#: index.php:2101 chat.php:1263 chat.php:1445 chat.php:1603 chat.php:1637
+#: chat.php:1648 chat.php:2101
msgid "Kick"
msgstr ""
-#: chat.php:1208
+#: index.php:1265 chat.php:1265
msgid "Logout inactive Chatter"
msgstr ""
-#: chat.php:1212
+#: index.php:1269 chat.php:1269
msgid "View active sessions"
msgstr ""
-#: chat.php:1212 chat.php:1603
+#: index.php:1269 index.php:1660 chat.php:1269 chat.php:1660
msgid "Linkfilter"
msgstr ""
-#: chat.php:1217
+#: index.php:1274 chat.php:1274
msgid "View"
msgstr ""
-#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582
-#: chat.php:1626
+#: index.php:1280 index.php:1310 index.php:1361 index.php:1369 index.php:1639
+#: index.php:1683 chat.php:1280 chat.php:1310 chat.php:1361 chat.php:1369
+#: chat.php:1639 chat.php:1683
msgid "Change"
msgstr ""
-#: chat.php:1256
+#: index.php:1313 chat.php:1313
msgid "Register applicant"
msgstr ""
-#: chat.php:1264 chat.php:1322 chat.php:1328
+#: index.php:1321 index.php:1379 index.php:1385 chat.php:1321 chat.php:1379
+#: chat.php:1385
msgid "Register"
msgstr ""
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Delete from database"
msgstr ""
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Deny access (!)"
msgstr ""
-#: chat.php:1296
+#: index.php:1353 chat.php:1353
msgid "Set to applicant (SG)"
msgstr ""
-#: chat.php:1298
+#: index.php:1355 chat.php:1355
msgid "Set to regular member"
msgstr ""
-#: chat.php:1299
+#: index.php:1356 chat.php:1356
msgid "Set to moderator (M)"
msgstr ""
-#: chat.php:1300
+#: index.php:1357 chat.php:1357
msgid "Set to supermod (SM)"
msgstr ""
-#: chat.php:1302
+#: index.php:1359 chat.php:1359
msgid "Set to admin (A)"
msgstr ""
-#: chat.php:1314
+#: index.php:1371 chat.php:1371
msgid "Register Guest"
msgstr ""
-#: chat.php:1324
+#: index.php:1381 chat.php:1381
msgid "Register new Member"
msgstr ""
-#: chat.php:1332 chat.php:1408 chat.php:1595 chat.php:1636 chat.php:1710
-#: chat.php:1924
+#: index.php:1389 index.php:1465 index.php:1652 index.php:1693 index.php:1767
+#: index.php:1981 chat.php:1389 chat.php:1465 chat.php:1652 chat.php:1693
+#: chat.php:1767 chat.php:1981
msgid "Reload"
msgstr ""
-#: chat.php:1345
+#: index.php:1402 chat.php:1402
msgid "Active Sessions"
msgstr ""
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "Nickname"
msgstr ""
-#: chat.php:1346
+#: index.php:1403 chat.php:1403
msgid "Timeout in"
msgstr ""
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "User-Agent"
msgstr ""
-#: chat.php:1350
+#: index.php:1407 chat.php:1407
msgid "IP-Address"
msgstr ""
-#: chat.php:1351
+#: index.php:1408 chat.php:1408
msgid "Actions"
msgstr ""
-#: chat.php:1393
+#: index.php:1450 chat.php:1450
msgid "Unban"
msgstr ""
-#: chat.php:1416
+#: index.php:1473 chat.php:1473
msgid "Incorrect regular expression!"
msgstr ""
-#: chat.php:1416 chat.php:1424
+#: index.php:1473 index.php:1481 chat.php:1473 chat.php:1481
#, php-format
msgid "Your match was as follows: %s"
msgstr ""
-#: chat.php:1424
+#: index.php:1481 chat.php:1481
msgid ""
"Your match was too long. You can use max. 255 characters. Try splitting it "
"up."
msgstr ""
-#: chat.php:1541 chat.php:1606
+#: index.php:1598 index.php:1663 chat.php:1598 chat.php:1663
msgid "Filter ID:"
msgstr ""
-#: chat.php:1542 chat.php:1607
+#: index.php:1599 index.php:1664 chat.php:1599 chat.php:1664
msgid "Match"
msgstr ""
-#: chat.php:1543 chat.php:1608
+#: index.php:1600 index.php:1665 chat.php:1600 chat.php:1665
msgid "Replace"
msgstr ""
-#: chat.php:1544 chat.php:1578 chat.php:1589
+#: index.php:1601 index.php:1635 index.php:1646 chat.php:1601 chat.php:1635
+#: chat.php:1646
msgid "Allow in PM"
msgstr ""
-#: chat.php:1545 chat.php:1579 chat.php:1590 chat.php:1609 chat.php:1625
-#: chat.php:1633
+#: index.php:1602 index.php:1636 index.php:1647 index.php:1666 index.php:1682
+#: index.php:1690 chat.php:1602 chat.php:1636 chat.php:1647 chat.php:1666
+#: chat.php:1682 chat.php:1690
msgid "Regex"
msgstr ""
-#: chat.php:1547 chat.php:1581 chat.php:1592
+#: index.php:1604 index.php:1638 index.php:1649 chat.php:1604 chat.php:1638
+#: chat.php:1649
msgid "Case sensitive"
msgstr ""
-#: chat.php:1586 chat.php:1630
+#: index.php:1643 index.php:1687 chat.php:1643 chat.php:1687
msgid "New filter:"
msgstr ""
-#: chat.php:1593 chat.php:1634
+#: index.php:1650 index.php:1691 chat.php:1650 chat.php:1691
msgid "Add"
msgstr ""
-#: chat.php:1691
+#: index.php:1748 chat.php:1748
msgid ""
"This chat uses frames. Please enable frames in your browser or use a "
"suitable one!"
msgstr ""
-#: chat.php:1691 chat.php:2370 chat.php:2457
+#: index.php:1748 index.php:2429 index.php:2516 chat.php:1748 chat.php:2429
+#: chat.php:2516
msgid "Back to the login page."
msgstr ""
-#: chat.php:1709
+#: index.php:1766 chat.php:1766
msgid "Bottom"
msgstr ""
-#: chat.php:1710
+#: index.php:1767 chat.php:1767
msgid "Manual refresh required"
msgstr ""
-#: chat.php:1726
+#: index.php:1783 chat.php:1783
msgid "Top"
msgstr ""
-#: chat.php:1734 chat.php:1940 chat.php:1942
+#: index.php:1791 index.php:1997 index.php:1999 chat.php:1791 chat.php:1997
+#: chat.php:1999
msgid "Delete selected messages"
msgstr ""
-#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281
+#: index.php:1818 index.php:1945 index.php:2160 index.php:2340 chat.php:1818
+#: chat.php:1945 chat.php:2160 chat.php:2340
msgid "Back to the chat."
msgstr ""
-#: chat.php:1774 chat.php:1791
+#: index.php:1831 index.php:1848 chat.php:1831 chat.php:1848
msgid "Admin notes"
msgstr ""
-#: chat.php:1777 chat.php:1788
+#: index.php:1834 index.php:1845 chat.php:1834 chat.php:1845
msgid "Staff notes"
msgstr ""
-#: chat.php:1811
+#: index.php:1868 chat.php:1868
msgid "Notes saved!"
msgstr ""
-#: chat.php:1835 chat.php:2122
+#: index.php:1892 index.php:2181 chat.php:1892 chat.php:2181
#, php-format
msgid "Last edited by %1$s at %2$s"
msgstr ""
-#: chat.php:1848
+#: index.php:1905 chat.php:1905
msgid "Save notes"
msgstr ""
-#: chat.php:1850
+#: index.php:1907 chat.php:1907
msgid "Revisions:"
msgstr ""
-#: chat.php:1853
+#: index.php:1910 chat.php:1910
msgid "Older"
msgstr ""
-#: chat.php:1857
+#: index.php:1914 chat.php:1914
msgid "Newer"
msgstr ""
-#: chat.php:1868 chat.php:1914
+#: index.php:1925 index.php:1971 chat.php:1925 chat.php:1971
msgid "Waiting room"
msgstr ""
-#: chat.php:1880
+#: index.php:1937 chat.php:1937
msgid "Allow checked"
msgstr ""
-#: chat.php:1881
+#: index.php:1938 chat.php:1938
msgid "Allow all"
msgstr ""
-#: chat.php:1882
+#: index.php:1939 chat.php:1939
msgid "Deny checked"
msgstr ""
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Deny all"
msgstr ""
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Send message to denied:"
msgstr ""
-#: chat.php:1884
+#: index.php:1941 chat.php:1941
msgid "Submit"
msgstr ""
-#: chat.php:1886
+#: index.php:1943 chat.php:1943
msgid "No more entry requests to approve."
msgstr ""
-#: chat.php:1916
+#: index.php:1973 chat.php:1973
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat in %2$d "
"seconds."
msgstr ""
-#: chat.php:1918
+#: index.php:1975 chat.php:1975
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat as soon, "
"as a moderator lets you in."
msgstr ""
-#: chat.php:1921
+#: index.php:1978 chat.php:1978
#, php-format
msgid ""
"If this page doesn't refresh every %d seconds, use the button below to "
"reload it manually!"
msgstr ""
-#: chat.php:1926 chat.php:2339
+#: index.php:1983 index.php:2398 chat.php:1983 chat.php:2398
msgid "Exit Chat"
msgstr ""
-#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430
+#: index.php:1986 index.php:2133 index.php:2144 index.php:2489 chat.php:1986
+#: chat.php:2133 chat.php:2144 chat.php:2489
msgid "Rules"
msgstr ""
-#: chat.php:1985
+#: index.php:2042 chat.php:2042
msgid "Send to"
msgstr ""
-#: chat.php:1990
+#: index.php:2047 chat.php:2047
msgid "All chatters"
msgstr ""
-#: chat.php:1996
+#: index.php:2053 chat.php:2053
msgid "Members only"
msgstr ""
-#: chat.php:2003
+#: index.php:2060 chat.php:2060
msgid "Staff only"
msgstr ""
-#: chat.php:2010
+#: index.php:2067 chat.php:2067
msgid "Admin only"
msgstr ""
-#: chat.php:2019
+#: index.php:2076 chat.php:2076
msgid "(offline)"
msgstr ""
-#: chat.php:2043
+#: index.php:2078 chat.php:2078
+msgid "(logging out)"
+msgstr ""
+
+#: index.php:2102 chat.php:2102
msgid "Also purge messages"
msgstr ""
-#: chat.php:2050
+#: index.php:2109 chat.php:2109
msgid "Delete last message"
msgstr ""
-#: chat.php:2055
+#: index.php:2114 chat.php:2114
msgid "Delete all messages"
msgstr ""
-#: chat.php:2057
+#: index.php:2116 chat.php:2116
msgid "Switch to single-line"
msgstr ""
-#: chat.php:2059
+#: index.php:2118 chat.php:2118
msgid "Switch to multi-line"
msgstr ""
-#: chat.php:2070
+#: index.php:2129 chat.php:2129
#, php-format
msgid "Welcome %s!"
msgstr ""
-#: chat.php:2071
+#: index.php:2130 chat.php:2130
#, php-format
msgid ""
"If this frame does not reload in %d seconds, you'll have to enable automatic "
@@ -954,11 +1003,11 @@ msgid ""
"bottom to refresh manually."
msgstr ""
-#: chat.php:2087
+#: index.php:2146 chat.php:2146
msgid "Help"
msgstr ""
-#: chat.php:2088
+#: index.php:2147 chat.php:2147
msgid ""
"All functions should be pretty much self-explaining, just use the buttons. "
"In your profile you can adjust the refresh rate and font colour, as well as "
@@ -966,622 +1015,639 @@ msgid ""
"you will be automatically logged out after a while."
msgstr ""
-#: chat.php:2090
+#: index.php:2149 chat.php:2149
msgid ""
"If you want to embed an image in your post, simply put [img] in front of "
"your image URL. Example: [img]http://example.com/images/file.jpg will embed "
"the image in your post."
msgstr ""
-#: chat.php:2093
+#: index.php:2152 chat.php:2152
msgid ""
"Members: You'll have some more options in your profile. You can adjust your "
"font face, change your password anytime and of course you can delete your "
"account."
msgstr ""
-#: chat.php:2095
+#: index.php:2154 chat.php:2154
msgid ""
"Moderators: Notice the Admin-button at the bottom. It'll bring up a page "
"where you can clean the room, kick chatters, view all active sessions and "
"disable guest access completely if needed."
msgstr ""
-#: chat.php:2097
+#: index.php:2156 chat.php:2156
msgid ""
"Admins: You'll be furthermore able to register guests, edit members and "
"register new nicknames."
msgstr ""
-#: chat.php:2135
+#: index.php:2194 chat.php:2194
msgid "Your Profile"
msgstr ""
-#: chat.php:2144
+#: index.php:2203 chat.php:2203
msgid "Don't ignore anymore"
msgstr ""
-#: chat.php:2152
+#: index.php:2211 chat.php:2211
msgid "Ignore"
msgstr ""
-#: chat.php:2163
+#: index.php:2222 chat.php:2222
#, php-format
msgid "Refresh rate (%1$d-%2$d seconds)"
msgstr ""
-#: chat.php:2167 chat.php:2170
+#: index.php:2226 index.php:2229 chat.php:2226 chat.php:2229
msgid "View examples"
msgstr ""
-#: chat.php:2174
+#: index.php:2233 chat.php:2233
msgid "Fontface"
msgstr ""
-#: chat.php:2175
+#: index.php:2234 chat.php:2234
msgid "Room Default"
msgstr ""
-#: chat.php:2188
+#: index.php:2247 chat.php:2247
msgid "Bold"
msgstr ""
-#: chat.php:2192
+#: index.php:2251 chat.php:2251
msgid "Italic"
msgstr ""
-#: chat.php:2196
+#: index.php:2255 chat.php:2255
msgid "Small"
msgstr ""
-#: chat.php:2199
+#: index.php:2258 chat.php:2258
msgid "Example for your chosen font"
msgstr ""
-#: chat.php:2203
+#: index.php:2262 chat.php:2262
msgid "Autoscroll (for old browsers or top-to-bottom sort)."
msgstr ""
-#: chat.php:2234
+#: index.php:2293 chat.php:2293
msgid "For everyone"
msgstr ""
-#: chat.php:2239
+#: index.php:2298 chat.php:2298
msgid "For members only"
msgstr ""
-#: chat.php:2244
+#: index.php:2303 chat.php:2303
msgid "For staff only"
msgstr ""
-#: chat.php:2248
+#: index.php:2307 chat.php:2307
msgid "Time zone"
msgstr ""
-#: chat.php:2261
+#: index.php:2320 chat.php:2320
msgid "Change Password"
msgstr ""
-#: chat.php:2263
+#: index.php:2322 chat.php:2322
msgid "Old password:"
msgstr ""
-#: chat.php:2264
+#: index.php:2323 chat.php:2323
msgid "New password:"
msgstr ""
-#: chat.php:2265
+#: index.php:2324 chat.php:2324
msgid "Confirm new password:"
msgstr ""
-#: chat.php:2268
+#: index.php:2327 chat.php:2327
msgid "Change Nickname"
msgstr ""
-#: chat.php:2269
+#: index.php:2328 chat.php:2328
msgid "New nickname:"
msgstr ""
-#: chat.php:2273
+#: index.php:2332 chat.php:2332
msgid "Save changes"
msgstr ""
-#: chat.php:2275
+#: index.php:2334 chat.php:2334
msgid "Delete account"
msgstr ""
-#: chat.php:2301
+#: index.php:2360 chat.php:2360
msgid "Reload Post Box"
msgstr ""
-#: chat.php:2304
+#: index.php:2363 chat.php:2363
msgid "Reload Messages"
msgstr ""
-#: chat.php:2307
+#: index.php:2366 chat.php:2366
msgid "Profile"
msgstr ""
-#: chat.php:2311 chat.php:2528
+#: index.php:2370 index.php:2590 chat.php:2370 chat.php:2590
msgid "Admin"
msgstr ""
-#: chat.php:2318
+#: index.php:2377 chat.php:2377
msgid "View public notes"
msgstr ""
-#: chat.php:2325
+#: index.php:2384 chat.php:2384
msgid "Clone"
msgstr ""
-#: chat.php:2334
+#: index.php:2393 chat.php:2393
msgid "Rearrange"
msgstr ""
-#: chat.php:2337
+#: index.php:2396 chat.php:2396
msgid "Rules & Help"
msgstr ""
-#: chat.php:2358 chat.php:2362
+#: index.php:2417 index.php:2421 chat.php:2417 chat.php:2421
msgid "File not found!"
msgstr ""
-#: chat.php:2370
+#: index.php:2429 chat.php:2429
#, php-format
msgid "Bye %s, visit again soon!"
msgstr ""
-#: chat.php:2377
+#: index.php:2436 chat.php:2436
msgid "Colourtable"
msgstr ""
-#: chat.php:2388
+#: index.php:2447 chat.php:2447
msgid "Back to your Profile"
msgstr ""
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "Repeat password to register"
msgstr ""
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "(optional)"
msgstr ""
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Guests, choose a colour:"
msgstr ""
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Random Colour"
msgstr ""
-#: chat.php:2421 chat.php:2435 chat.php:2569
+#: index.php:2480 index.php:2494 index.php:2631 chat.php:2480 chat.php:2494
+#: chat.php:2631
msgid "Sorry, currently members only!"
msgstr ""
-#: chat.php:2423 chat.php:2437
+#: index.php:2482 index.php:2496 chat.php:2482 chat.php:2496
msgid "Enter Chat"
msgstr ""
-#: chat.php:2457
+#: index.php:2516 chat.php:2516
#, php-format
msgid "Error: %s"
msgstr ""
-#: chat.php:2467
+#: index.php:2526 chat.php:2526
msgid "Fatal error"
msgstr ""
-#: chat.php:2470
+#: index.php:2529 chat.php:2529
#, php-format
msgid "Fatal error: %s"
msgstr ""
-#: chat.php:2482 chat.php:2693
+#: index.php:2541 index.php:2756 chat.php:2541 chat.php:2756
msgid "Failed login attempt(s)"
msgstr ""
-#: chat.php:2489
+#: index.php:2548 chat.php:2548
#, php-format
msgid "Read %d messages in your inbox"
msgstr ""
-#: chat.php:2498
+#: index.php:2557 chat.php:2557
#, php-format
msgid "%d new guests to approve"
msgstr ""
-#: chat.php:2530
+#: index.php:2577 chat.php:2577
+msgid "logging out"
+msgstr ""
+
+#: index.php:2592 chat.php:2592
msgid "Admin:"
msgstr ""
-#: chat.php:2533
+#: index.php:2595 chat.php:2595
msgid "Staff"
msgstr ""
-#: chat.php:2535
+#: index.php:2597 chat.php:2597
msgid "Staff:"
msgstr ""
-#: chat.php:2540
+#: index.php:2602 chat.php:2602
msgid "Members:"
msgstr ""
-#: chat.php:2542
+#: index.php:2604 chat.php:2604
msgid "Guests"
msgstr ""
-#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092
+#: index.php:2625 index.php:3063 index.php:3267 index.php:4172 chat.php:2625
+#: chat.php:3063 chat.php:3267 chat.php:4172
#, php-format
msgid ""
"Invalid nickname (%1$d characters maximum and has to match the regular "
"expression \"%2$s\")"
msgstr ""
-#: chat.php:2566 chat.php:2996 chat.php:3162 chat.php:4094
+#: index.php:2628 index.php:3066 index.php:3232 index.php:4174 chat.php:2628
+#: chat.php:3066 chat.php:3232 chat.php:4174
#, php-format
msgid ""
"Invalid password (At least %1$d characters and has to match the regular "
"expression \"%2$s\")"
msgstr ""
-#: chat.php:2574 chat.php:2739
+#: index.php:2636 index.php:2806 chat.php:2636 chat.php:2806
msgid "Wrong global Password!"
msgstr ""
-#: chat.php:2591 chat.php:2612
+#: index.php:2654 index.php:2675 chat.php:2654 chat.php:2675
msgid "Wrong Captcha"
msgstr ""
-#: chat.php:2596 chat.php:2604
+#: index.php:2659 index.php:2667 chat.php:2659 chat.php:2667
msgid "Captcha already used or timed out."
msgstr ""
-#: chat.php:2652
+#: index.php:2715 chat.php:2715
msgid "A user with this nickname is already logged in."
msgstr ""
-#: chat.php:2652 chat.php:2933 chat.php:3176
+#: index.php:2715 index.php:3003 index.php:3246 chat.php:2715 chat.php:3003
+#: chat.php:3246
msgid "Wrong Password!"
msgstr ""
-#: chat.php:2696
+#: index.php:2759 chat.php:2759
msgid "Dismiss"
msgstr ""
-#: chat.php:2747 chat.php:3171 chat.php:4096
+#: index.php:2814 index.php:3241 index.php:4176 chat.php:2814 chat.php:3241
+#: chat.php:4176
msgid "Password confirmation does not match!"
msgstr ""
-#: chat.php:2859
+#: index.php:2854 chat.php:2854
+msgid "no kick message"
+msgstr ""
+
+#: index.php:2929 chat.php:2929
msgid "Invalid/expired session"
msgstr ""
-#: chat.php:2875 chat.php:3412
+#: index.php:2945 index.php:3483 chat.php:2945 chat.php:3483
msgid "You have been kicked!"
msgstr ""
-#: chat.php:2885
+#: index.php:2955 chat.php:2955
#, php-format
msgid "Currently %d chatter(s) in room:"
msgstr ""
-#: chat.php:2933
+#: index.php:3003 chat.php:3003
msgid "This nickname is a registered member."
msgstr ""
-#: chat.php:2960 chat.php:3001
+#: index.php:3030 index.php:3071 chat.php:3030 chat.php:3071
#, php-format
msgid "%s is already registered."
msgstr ""
-#: chat.php:2969 chat.php:2990
+#: index.php:3039 index.php:3060 chat.php:3039 chat.php:3060
#, php-format
msgid "Can't register %s"
msgstr ""
-#: chat.php:2978 chat.php:3023
+#: index.php:3048 index.php:3093 chat.php:3048 chat.php:3093
#, php-format
msgid "%s successfully registered."
msgstr ""
-#: chat.php:3031 chat.php:3036
+#: index.php:3101 index.php:3106 chat.php:3101 chat.php:3106
#, php-format
msgid "Can't change status of %s"
msgstr ""
-#: chat.php:3047
+#: index.php:3117 chat.php:3117
#, php-format
msgid "%s successfully deleted from database."
msgstr ""
-#: chat.php:3056
+#: index.php:3126 chat.php:3126
#, php-format
msgid "Status of %s successfully changed."
msgstr ""
-#: chat.php:3073
+#: index.php:3143 chat.php:3143
#, php-format
msgid "Successfully reset password for %s"
msgstr ""
-#: chat.php:3075
+#: index.php:3145 chat.php:3145
#, php-format
msgid "Can't reset password for %s"
msgstr ""
-#: chat.php:3190
+#: index.php:3260 chat.php:3260
msgid "Your profile has successfully been saved."
msgstr ""
-#: chat.php:3202
+#: index.php:3272 chat.php:3272
msgid "Nickname is already taken"
msgstr ""
-#: chat.php:3714
+#: index.php:3785 chat.php:3785
msgid "system message"
msgstr ""
-#: chat.php:3921
+#: index.php:4001 chat.php:4001
msgid "Beige"
msgstr ""
-#: chat.php:3922
+#: index.php:4002 chat.php:4002
msgid "Black"
msgstr ""
-#: chat.php:3923
+#: index.php:4003 chat.php:4003
msgid "Blue"
msgstr ""
-#: chat.php:3924
+#: index.php:4004 chat.php:4004
msgid "Blue violet"
msgstr ""
-#: chat.php:3925
+#: index.php:4005 chat.php:4005
msgid "Brown"
msgstr ""
-#: chat.php:3926
+#: index.php:4006 chat.php:4006
msgid "Cyan"
msgstr ""
-#: chat.php:3927
+#: index.php:4007 chat.php:4007
msgid "Dark blue"
msgstr ""
-#: chat.php:3928
+#: index.php:4008 chat.php:4008
msgid "Dark green"
msgstr ""
-#: chat.php:3929
+#: index.php:4009 chat.php:4009
msgid "Dark red"
msgstr ""
-#: chat.php:3930
+#: index.php:4010 chat.php:4010
msgid "Dark violet"
msgstr ""
-#: chat.php:3931
+#: index.php:4011 chat.php:4011
msgid "Sky blue"
msgstr ""
-#: chat.php:3932
+#: index.php:4012 chat.php:4012
msgid "Gold"
msgstr ""
-#: chat.php:3933
+#: index.php:4013 chat.php:4013
msgid "Grey"
msgstr ""
-#: chat.php:3934
+#: index.php:4014 chat.php:4014
msgid "Green"
msgstr ""
-#: chat.php:3935
+#: index.php:4015 chat.php:4015
msgid "Hot pink"
msgstr ""
-#: chat.php:3936
+#: index.php:4016 chat.php:4016
msgid "Indigo"
msgstr ""
-#: chat.php:3937
+#: index.php:4017 chat.php:4017
msgid "Light blue"
msgstr ""
-#: chat.php:3938
+#: index.php:4018 chat.php:4018
msgid "Light green"
msgstr ""
-#: chat.php:3939
+#: index.php:4019 chat.php:4019
msgid "Lime green"
msgstr ""
-#: chat.php:3940
+#: index.php:4020 chat.php:4020
msgid "Magenta"
msgstr ""
-#: chat.php:3941
+#: index.php:4021 chat.php:4021
msgid "Olive"
msgstr ""
-#: chat.php:3942
+#: index.php:4022 chat.php:4022
msgid "Orange"
msgstr ""
-#: chat.php:3943
+#: index.php:4023 chat.php:4023
msgid "Orange red"
msgstr ""
-#: chat.php:3944
+#: index.php:4024 chat.php:4024
msgid "Purple"
msgstr ""
-#: chat.php:3945
+#: index.php:4025 chat.php:4025
msgid "Red"
msgstr ""
-#: chat.php:3946
+#: index.php:4026 chat.php:4026
msgid "Royal blue"
msgstr ""
-#: chat.php:3947
+#: index.php:4027 chat.php:4027
msgid "Sea green"
msgstr ""
-#: chat.php:3948
+#: index.php:4028 chat.php:4028
msgid "Sienna"
msgstr ""
-#: chat.php:3949
+#: index.php:4029 chat.php:4029
msgid "Silver"
msgstr ""
-#: chat.php:3950
+#: index.php:4030 chat.php:4030
msgid "Tan"
msgstr ""
-#: chat.php:3951
+#: index.php:4031 chat.php:4031
msgid "Teal"
msgstr ""
-#: chat.php:3952
+#: index.php:4032 chat.php:4032
msgid "Violet"
msgstr ""
-#: chat.php:3953
+#: index.php:4033 chat.php:4033
msgid "White"
msgstr ""
-#: chat.php:3954
+#: index.php:4034 chat.php:4034
msgid "Yellow"
msgstr ""
-#: chat.php:3955
+#: index.php:4035 chat.php:4035
msgid "Yellow green"
msgstr ""
-#: chat.php:4077
+#: index.php:4157 chat.php:4157
msgid "Successfully destroyed chat"
msgstr ""
-#: chat.php:4086
+#: index.php:4166 chat.php:4166
msgid ""
"Database tables already exist! To continue, you have to delete these tables "
"manually first."
msgstr ""
-#: chat.php:4089
+#: index.php:4169 chat.php:4169
msgid "A Superadmin already exists!"
msgstr ""
-#: chat.php:4182 chat.php:4369
+#: index.php:4263 index.php:4451 chat.php:4263 chat.php:4451
#, php-format
msgid "%s - "
msgstr ""
-#: chat.php:4183 chat.php:4369
+#: index.php:4264 index.php:4451 chat.php:4264 chat.php:4451
#, php-format
msgid "[M] %s - "
msgstr ""
-#: chat.php:4184 chat.php:4369
+#: index.php:4265 index.php:4451 chat.php:4265 chat.php:4451
#, php-format
msgid "[Staff] %s - "
msgstr ""
-#: chat.php:4185 chat.php:4369
+#: index.php:4266 index.php:4451 chat.php:4266 chat.php:4451
#, php-format
msgid "[Admin] %s - "
msgstr ""
-#: chat.php:4186 chat.php:4369
+#: index.php:4267 index.php:4451 chat.php:4267 chat.php:4451
#, php-format
msgid "[%1$s to %2$s] - "
msgstr ""
-#: chat.php:4187
+#: index.php:4268 chat.php:4268
#, php-format
msgid "%s entered the chat."
msgstr ""
-#: chat.php:4188
+#: index.php:4269 chat.php:4269
#, php-format
msgid "%s left the chat."
msgstr ""
-#: chat.php:4189
+#: index.php:4270 chat.php:4270
#, php-format
msgid "%s is now a registered member."
msgstr ""
-#: chat.php:4190
+#: index.php:4271 chat.php:4271
#, php-format
msgid "%s is now a registered applicant."
msgstr ""
-#: chat.php:4191
+#: index.php:4272 chat.php:4272
#, php-format
-msgid "%s has been kicked."
+msgid "%1$s has been kicked: %2$s"
msgstr ""
-#: chat.php:4192
+#: index.php:4273 chat.php:4273
#, php-format
-msgid "%s have been kicked."
+msgid "%1$s have been kicked: %2$s"
msgstr ""
-#: chat.php:4193
-msgid "All guests have been kicked."
+#: index.php:4274 chat.php:4274
+#, php-format
+msgid "All guests have been kicked: %1$s"
msgstr ""
-#: chat.php:4194
+#: index.php:4275 chat.php:4275
#, php-format
msgid "%s has been cleaned."
msgstr ""
-#: chat.php:4202 chat.php:4396
+#: index.php:4283 index.php:4478 chat.php:4283 chat.php:4478
msgid "Temporarily disabled"
msgstr ""
-#: chat.php:4218 chat.php:4594
+#: index.php:4299 index.php:4676 chat.php:4299 chat.php:4676
msgid "A chat community"
msgstr ""
-#: chat.php:4256
+#: index.php:4338 chat.php:4338
msgid "Successfully registered!"
msgstr ""
-#: chat.php:4522 chat.php:4721 chat.php:4728
+#: index.php:4604 index.php:4807 index.php:4814 chat.php:4604 chat.php:4807
+#: chat.php:4814
msgid "No connection to database!"
msgstr ""
-#: chat.php:4531
+#: index.php:4613 chat.php:4613
msgid ""
"Note: Default CSS is now hardcoded and can be removed from the CSS setting"
msgstr ""
-#: chat.php:4611
+#: index.php:4697 chat.php:4697
#, php-format
msgid ""
"The %s extension of PHP is required for the encryption feature. Please "
"install it first or set the encrypted setting back to false."
msgstr ""
-#: chat.php:4684 chat.php:4689 chat.php:4694
+#: index.php:4770 index.php:4775 index.php:4780 chat.php:4770 chat.php:4775
+#: chat.php:4780
#, php-format
msgid ""
"The %s extension of PHP is required for the selected database driver. Please "
"install it first."
msgstr ""
-#: chat.php:4707 chat.php:4715 chat.php:4719 chat.php:4726
+#: index.php:4793 index.php:4801 index.php:4805 index.php:4812 chat.php:4793
+#: chat.php:4801 chat.php:4805 chat.php:4812
msgid ""
"No connection to database, please create a database and edit the script to "
"use the correct database with given username and password!"
msgstr ""
-#: chat.php:4734
+#: index.php:4820 chat.php:4820
msgid ""
"The memcached extension of PHP is required for the caching feature. Please "
"install it first or set the memcached setting back to false."
diff --git a/locale/nl_NL/LC_MESSAGES/le-chat-php.po b/locale/nl_NL/LC_MESSAGES/le-chat-php.po
index e503aa9..b450ad7 100644
--- a/locale/nl_NL/LC_MESSAGES/le-chat-php.po
+++ b/locale/nl_NL/LC_MESSAGES/le-chat-php.po
@@ -7,11 +7,11 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-01-18 21:32+0100\n"
+"POT-Creation-Date: 2025-03-29 17:02+0100\n"
"PO-Revision-Date: 2023-08-31 16:27+0000\n"
"Last-Translator: Johan Gerards \n"
-"Language-Team: Dutch \n"
+"Language-Team: Dutch \n"
"Language: nl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,358 +19,372 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.18.2\n"
-#: chat.php:261
+#: index.php:272 chat.php:272
msgid "Enable applicants"
msgstr "Schakel aanvragers in"
-#: chat.php:262
+#: index.php:273 index.php:2267 chat.php:273 chat.php:2267
msgid "Embed images"
msgstr "Afbeeldingen embedden"
-#: chat.php:263 chat.php:2202
+#: index.php:274 index.php:2261 chat.php:274 chat.php:2261
msgid "Show Timestamps"
msgstr "Tijdstempels weergeven"
-#: chat.php:264
+#: index.php:275 chat.php:275
msgid "Show session-IP"
msgstr "Sessie-IP weergeven"
-#: chat.php:265
+#: index.php:276 chat.php:276
msgid "Members can kick, if no moderator is present"
msgstr "Leden kunnen kicken als er geen moderator aanwezig is"
-#: chat.php:266
+#: index.php:277 chat.php:277
msgid "Members can always kick"
msgstr "Leden kunnen altijd kicken"
-#: chat.php:267
+#: index.php:278 chat.php:278
msgid "Force redirection"
msgstr "Omleiding forceren"
-#: chat.php:268
+#: index.php:279 index.php:2270 chat.php:279 chat.php:2270
msgid "Incognito mode"
msgstr "Incognitomodus"
-#: chat.php:269
+#: index.php:280 chat.php:280
msgid "Send mail on new public message"
msgstr "E-mail verzenden bij nieuw openbaar bericht"
-#: chat.php:270
+#: index.php:281 chat.php:281
msgid "Fallback to waiting room, if no moderator is present to approve guests"
msgstr ""
"Terugvallen naar wachtkamer als er geen moderator aanwezig is om gasten goed "
"te keuren"
-#: chat.php:271
+#: index.php:282 chat.php:282
msgid "Disable private messages"
msgstr "Schakel privéberichten uit"
-#: chat.php:272 chat.php:2223
+#: index.php:283 index.php:2282 chat.php:283 chat.php:2282
msgid "Enable offline inbox"
msgstr "Schakel offline inbox in"
-#: chat.php:273
+#: index.php:284 chat.php:284
msgid "Show a greeting message before showing the messages"
msgstr ""
"Laat een begroetingsbericht zien voordat de berichten worden weergegeven"
-#: chat.php:274 chat.php:2204
+#: index.php:285 index.php:2263 chat.php:285 chat.php:2263
msgid "Sort messages from top to bottom"
msgstr "Sorteer berichten van boven naar beneden"
-#: chat.php:275 chat.php:2205
+#: index.php:286 index.php:2264 chat.php:286 chat.php:2264
msgid "Hide list of chatters"
msgstr "Lijst met chatters verbergen"
-#: chat.php:276 chat.php:1780 chat.php:1794
+#: index.php:287 index.php:1837 index.php:1851 chat.php:287 chat.php:1837
+#: chat.php:1851
msgid "Personal notes"
msgstr "Persoonlijke notities"
-#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110
+#: index.php:288 index.php:1840 index.php:1854 index.php:2169 chat.php:288
+#: chat.php:1840 chat.php:1854 chat.php:2169
msgid "Public notes"
msgstr "Openbare notities"
-#: chat.php:278
+#: index.php:289 chat.php:289
msgid "Apply kick filter on moderators"
msgstr "Kickfilter toepassen op moderatoren"
-#: chat.php:279
+#: index.php:290 chat.php:290
msgid "Show who kicks people or purges all messages."
msgstr "Laat zien wie mensen kickt of alle berichten verwijdert."
-#: chat.php:280
+#: index.php:291 chat.php:291
msgid "Hide reload post box button"
msgstr "Knop voor het opnieuw laden van het berichtverzendframe verbergen"
-#: chat.php:281
+#: index.php:292 chat.php:292
msgid "Hide reload messages button"
msgstr "Knop voor het opnieuw laden van berichtenframe verbergen"
-#: chat.php:282
+#: index.php:293 chat.php:293
msgid "Hide profile button"
msgstr "Verberg profielknop"
-#: chat.php:283
+#: index.php:294 chat.php:294
msgid "Hide admin button"
msgstr "Verberg adminknop"
-#: chat.php:284
+#: index.php:295 chat.php:295
msgid "Hide notes button"
msgstr "Verberg notitiesknop"
-#: chat.php:285
+#: index.php:296 chat.php:296
msgid "Hide clone button"
msgstr "Verberg kloonknop"
-#: chat.php:286
+#: index.php:297 chat.php:297
msgid "Hide rearrange button"
msgstr "Verberg herschikknop"
-#: chat.php:287
+#: index.php:298 chat.php:298
msgid "Hide help button"
msgstr "Verberg hulpknop"
-#: chat.php:288
+#: index.php:299 chat.php:299
msgid "Apply postbox delete button globally"
msgstr ""
"Pas de knop voor het verwijderen van het berichtverzendframe globaal toe"
-#: chat.php:289
+#: index.php:300 chat.php:300
msgid "Allow enhancing functionality with JavaScript"
msgstr "Laat het verbeteren van de functionaliteit met JavaScript toe"
-#: chat.php:292 chat.php:2170
+#: index.php:303 index.php:2229 chat.php:303 chat.php:2229
msgid "Background colour"
msgstr "Achtergrondkleur"
-#: chat.php:293 chat.php:2167
+#: index.php:304 index.php:2226 chat.php:304 chat.php:2226
msgid "Font colour"
msgstr "Lettertypekleur"
-#: chat.php:296
+#: index.php:307 chat.php:307
msgid "Entrance"
msgstr "Ingang"
-#: chat.php:297
+#: index.php:308 chat.php:308
msgid "Leaving"
msgstr "Verlaten"
-#: chat.php:298
+#: index.php:309 chat.php:309
msgid "Member registered"
msgstr "Lid geregistreerd"
-#: chat.php:299
+#: index.php:310 chat.php:310
msgid "Applicant registered"
msgstr "Aanvrager geregistreerd"
-#: chat.php:300
+#: index.php:311 chat.php:311
msgid "Kicked"
msgstr "Gekickt"
-#: chat.php:301
+#: index.php:312 chat.php:312
msgid "Multiple kicked"
msgstr "Meerdere gekickt"
-#: chat.php:302
+#: index.php:313 chat.php:313
msgid "All kicked"
msgstr "Allen gekickt"
-#: chat.php:303
+#: index.php:314 chat.php:314
msgid "Room cleaned"
msgstr "Kamer opgeschoond"
-#: chat.php:304
+#: index.php:315 chat.php:315
msgid "Message to all"
msgstr "Bericht aan iedereen"
-#: chat.php:305
+#: index.php:316 chat.php:316
msgid "Message to members only"
msgstr "Bericht alleen aan leden"
-#: chat.php:306
+#: index.php:317 chat.php:317
msgid "Message to staff only"
msgstr "Bericht alleen aan personeel"
-#: chat.php:307
+#: index.php:318 chat.php:318
msgid "Message to admins only"
msgstr "Bericht alleen aan administrators"
-#: chat.php:308
+#: index.php:319 chat.php:319
msgid "Private message"
msgstr "Privébericht"
-#: chat.php:309
+#: index.php:320 chat.php:320
msgid "Attachement"
msgstr "Bijlage"
-#: chat.php:312
+#: index.php:323 chat.php:323
msgid "Member timeout (minutes)"
msgstr "Time-out van lid (minuten)"
-#: chat.php:313
+#: index.php:324 chat.php:324
msgid "Guest timeout (minutes)"
msgstr "Time-out van gast (minuten)"
-#: chat.php:314
+#: index.php:325 chat.php:325
msgid "Kick penalty (minutes)"
msgstr "Kickstraf (minuten)"
-#: chat.php:315
+#: index.php:326 chat.php:326
msgid "Waiting room time (seconds)"
msgstr "Wachtkamertijd (seconden)"
-#: chat.php:316
+#: index.php:327 chat.php:327
+msgid "Logout delay (seconds)"
+msgstr ""
+
+#: index.php:328 chat.php:328
msgid "Captcha timeout (seconds)"
msgstr "Time-out captcha (seconden)"
-#: chat.php:317
+#: index.php:329 chat.php:329
msgid "Message timeout (minutes)"
msgstr "Time-out bericht (minuten)"
-#: chat.php:318
+#: index.php:330 chat.php:330
msgid "Message limit (public)"
msgstr "Berichtlimiet (openbaar)"
-#: chat.php:319
+#: index.php:331 chat.php:331
msgid "Maximal message length"
msgstr "Maximale berichtlengte"
-#: chat.php:320
+#: index.php:332 chat.php:332
msgid "Maximal nickname length"
msgstr "Maximale bijnaamlengte"
-#: chat.php:321
+#: index.php:333 chat.php:333
msgid "Minimal password length"
msgstr "Minimum wachtwoordlengte"
-#: chat.php:322
+#: index.php:334 chat.php:334
msgid "Default message reload time (seconds)"
msgstr "Standaard herlaadtijd van bericht (seconden)"
-#: chat.php:323
+#: index.php:335 chat.php:335
msgid "Number of notes revisions to keep"
msgstr "Aantal te behouden notitierevisies"
-#: chat.php:324
+#: index.php:336 chat.php:336
msgid "Maximum upload size in KB"
msgstr "Maximale uploadgrootte in KB"
-#: chat.php:325
+#: index.php:337 chat.php:337
msgid "Enable file uploads"
msgstr "Bestandsuploads inschakelen"
-#: chat.php:326
+#: index.php:338 chat.php:338
msgid "Lowest refresh rate"
msgstr "Laagste vernieuwingsfrequentie"
-#: chat.php:327
+#: index.php:339 chat.php:339
msgid "Highest refresh rate"
msgstr "Hoogste vernieuwingsfrequentie"
-#: chat.php:330
+#: index.php:342 chat.php:342
msgid "Rules (html)"
msgstr "Regels (html)"
-#: chat.php:331
+#: index.php:343 chat.php:343
msgid "CSS Style"
msgstr "CSS-stijl"
-#: chat.php:332
+#: index.php:344 chat.php:344
msgid "Chat disabled message (html)"
msgstr "Bericht voor chat uitgeschakeld (html)"
-#: chat.php:335
+#: index.php:347 chat.php:347
msgid ""
"Date "
"formating"
msgstr ""
"Datumnotatie"
+"php#refsect1-function.date-parameters\" rel=\"noopener "
+"noreferrer\">Datumnotatie"
-#: chat.php:336
+#: index.php:348 chat.php:348
msgid "Characters used in Captcha"
msgstr "Tekens gebruikt in captcha"
-#: chat.php:337
+#: index.php:349 chat.php:349
msgid "Custom redirection script"
msgstr "Aangepast omleidingsscript"
-#: chat.php:338
+#: index.php:350 chat.php:350
msgid "Chat name"
msgstr "Chatnaam"
-#: chat.php:339
+#: index.php:351 chat.php:351
msgid "Send mail using this address"
msgstr "Verstuur e-mail via dit adres"
-#: chat.php:340
+#: index.php:352 chat.php:352
msgid "Send mail to this address"
msgstr "Stuur e-mail naar dit adres"
-#: chat.php:341
+#: index.php:353 chat.php:353
msgid "Nickname regex"
msgstr "Bijnaamregex"
-#: chat.php:342
+#: index.php:354 chat.php:354
msgid "Password regex"
msgstr "Wachtwoordregex"
-#: chat.php:343
+#: index.php:355 chat.php:355
msgid "Link to external CSS file (on your own server)"
msgstr "Link naar extern CSS-bestand (op jouw eigen server)"
-#: chat.php:344
+#: index.php:356 chat.php:356
msgid "Meta description (best 50 - 160 characters for SEO)"
msgstr "Metabeschrijving (beste 50 - 160 tekens voor SEO)"
-#: chat.php:345
+#: index.php:357 chat.php:357
+msgid "Show this text when a user's logout is delayed"
+msgstr ""
+
+#: index.php:358 chat.php:358
msgid "Prepend this text to system messages"
msgstr "Plaats deze tekst vóór systeemberichten"
-#: chat.php:348 chat.php:728 chat.php:1225
+#: index.php:361 index.php:780 index.php:1282 chat.php:361 chat.php:780
+#: chat.php:1282
msgid "Change Guestaccess"
msgstr "Verander gasttoegang"
-#: chat.php:349
+#: index.php:362 chat.php:362
msgid "Enable global Password"
msgstr "Schakel globaal wachtwoord in"
-#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433
+#: index.php:363 index.php:810 index.php:2474 index.php:2492 chat.php:363
+#: chat.php:810 chat.php:2474 chat.php:2492
msgid "Global Password:"
msgstr "Globaal wachtwoord:"
-#: chat.php:351 chat.php:819
+#: index.php:364 index.php:871 chat.php:364 chat.php:871
msgid "Captcha"
msgstr "Captcha"
-#: chat.php:352 chat.php:775 chat.php:835
+#: index.php:365 index.php:827 index.php:887 chat.php:365 chat.php:827
+#: chat.php:887
msgid "Only for guests"
msgstr "Alleen voor gasten"
-#: chat.php:353 chat.php:1220
+#: index.php:366 index.php:1277 chat.php:366 chat.php:1277
msgid "Topic"
msgstr "Onderwerp"
-#: chat.php:354 chat.php:781
+#: index.php:367 index.php:833 chat.php:367 chat.php:833
msgid "Let guests register themselves"
msgstr "Laat gasten zichzelf registreren"
-#: chat.php:355 chat.php:862
+#: index.php:368 index.php:919 chat.php:368 chat.php:919
msgid "Default time zone"
msgstr "Standaard tijdzone"
-#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259
+#: index.php:581 index.php:1157 index.php:4158 index.php:4341 chat.php:581
+#: chat.php:1157 chat.php:4158 chat.php:4341
msgid "Initial Setup"
msgstr "Eerste setup"
-#: chat.php:588
+#: index.php:601 chat.php:601
#, php-format
msgid "Redirecting to: %s"
msgstr "Omleiden naar: %s"
-#: chat.php:595
+#: index.php:608 chat.php:608
#, php-format
msgid ""
"Dangerous non-http link requested, copy paste this link if you are really "
@@ -379,78 +393,81 @@ msgstr ""
"Gevaarlijke niet-http-link gevraagd, kopieer en plak deze link als je het "
"echt zeker weet: %s"
-#: chat.php:597
+#: index.php:610 chat.php:610
#, php-format
msgid "Non-http link requested: %s"
msgstr "Niet-http-link aangevraagd: %s"
-#: chat.php:599
+#: index.php:612 chat.php:612
#, php-format
msgid "If it's not working, try this one: %s"
msgstr "Als het niet werkt, probeer dan deze: %s"
-#: chat.php:609
+#: index.php:622 chat.php:622
msgid "Access denied"
msgstr "Toegang geweigerd"
-#: chat.php:609
+#: index.php:622 chat.php:622
#, php-format
msgid "You are logged in as %s and don't have access to this section."
msgstr "Je bent ingelogd als %s en hebt geen toegang tot deze sectie."
-#: chat.php:611 chat.php:915 chat.php:1211 chat.php:1393
+#: index.php:624 index.php:972 index.php:1268 index.php:1450 chat.php:624
+#: chat.php:972 chat.php:1268 chat.php:1450
msgid "Logout"
msgstr "Uitloggen"
-#: chat.php:636
+#: index.php:649 chat.php:649
msgid "Copy:"
msgstr "Kopieer:"
-#: chat.php:724
+#: index.php:776 chat.php:776
msgid "Chat Setup"
msgstr "Chatsetup"
-#: chat.php:734 chat.php:1233
+#: index.php:786 index.php:1290 chat.php:786 chat.php:1290
msgid "Allow"
msgstr "Toestaan"
-#: chat.php:739 chat.php:1238
+#: index.php:791 index.php:1295 chat.php:791 chat.php:1295
msgid "Allow with waitingroom"
msgstr "Toestaan met wachtkamer"
-#: chat.php:744 chat.php:1243
+#: index.php:796 index.php:1300 chat.php:796 chat.php:1300
msgid "Require moderator approval"
msgstr "Goedkeuring van de moderator vereist"
-#: chat.php:749 chat.php:1248
+#: index.php:801 index.php:1305 chat.php:801 chat.php:1305
msgid "Only members"
msgstr "Alleen leden"
-#: chat.php:754 chat.php:1251
+#: index.php:806 index.php:1308 chat.php:806 chat.php:1308
msgid "Disable chat"
msgstr "Schakel chat uit"
-#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229
+#: index.php:817 index.php:839 index.php:894 index.php:953 index.php:2288
+#: chat.php:817 chat.php:839 chat.php:894 chat.php:953 chat.php:2288
msgid "Disabled"
msgstr "Uitgeschakeld"
-#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219
+#: index.php:822 index.php:882 index.php:958 index.php:2278 chat.php:822
+#: chat.php:882 chat.php:958 chat.php:2278
msgid "Enabled"
msgstr "Ingeschakeld"
-#: chat.php:792
+#: index.php:844 chat.php:844
msgid "As applicant"
msgstr "Als aanvrager"
-#: chat.php:797
+#: index.php:849 chat.php:849
msgid "As member"
msgstr "Als lid"
-#: chat.php:800
+#: index.php:852 chat.php:852
msgid "System messages"
msgstr "Systeemberichten"
-#: chat.php:822 chat.php:1053
+#: index.php:874 index.php:1110 chat.php:874 chat.php:1110
#, php-format
msgid ""
"The %s extension of PHP is required for this feature. Please install it "
@@ -458,120 +475,135 @@ msgid ""
msgstr ""
"The %s-extensie van PHP is vereist voor deze functie. Installeer deze eerst."
-#: chat.php:847
+#: index.php:899 chat.php:899
msgid "Simple"
msgstr "Simpel"
-#: chat.php:852
+#: index.php:904 chat.php:904
msgid "Moderate"
msgstr "Modereren"
-#: chat.php:857
+#: index.php:909 chat.php:909
+msgid "Hard"
+msgstr ""
+
+#: index.php:914 chat.php:914
msgid "Extreme"
msgstr "Extreem"
-#: chat.php:906 chat.php:1548 chat.php:1610
+#: index.php:963 index.php:1605 index.php:1667 chat.php:963 chat.php:1605
+#: chat.php:1667
msgid "Apply"
msgstr "Toepassen"
-#: chat.php:910 chat.php:1050
+#: index.php:967 index.php:1107 chat.php:967 chat.php:1107
msgid "Backup and restore"
msgstr "Backup en herstellen"
-#: chat.php:912
+#: index.php:969 chat.php:969
msgid "Destroy chat"
msgstr "Vernietig chat"
-#: chat.php:1057 chat.php:1066
+#: index.php:1114 index.php:1123 chat.php:1114 chat.php:1123
msgid "Settings"
msgstr "Instellingen"
-#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575
-#: chat.php:1622
+#: index.php:1115 index.php:1124 index.php:1269 index.php:1595 index.php:1632
+#: index.php:1679 chat.php:1115 chat.php:1124 chat.php:1269 chat.php:1595
+#: chat.php:1632 chat.php:1679
msgid "Filter"
msgstr "Filter"
-#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538
+#: index.php:1116 index.php:1125 index.php:1325 index.php:2600 chat.php:1116
+#: chat.php:1125 chat.php:1325 chat.php:2600
msgid "Members"
msgstr "Leden"
-#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322
+#: index.php:1117 index.php:1126 index.php:2373 index.php:2381 chat.php:1117
+#: chat.php:1126 chat.php:2373 chat.php:2381
msgid "Notes"
msgstr "Notities"
-#: chat.php:1061
+#: index.php:1118 chat.php:1118
msgid "Backup"
msgstr "Backup"
-#: chat.php:1070
+#: index.php:1127 chat.php:1127
msgid "Restore"
msgstr "Herstellen"
-#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260
+#: index.php:1131 index.php:1174 index.php:1212 index.php:1242 index.php:4342
+#: chat.php:1131 chat.php:1174 chat.php:1212 chat.php:1242 chat.php:4342
msgid "Go to the Setup-Page"
msgstr "Ga naar de setuppagina"
-#: chat.php:1082 chat.php:1091 chat.php:1949
+#: index.php:1139 index.php:1148 index.php:2006 chat.php:1139 chat.php:1148
+#: chat.php:2006
msgid "Are you sure?"
msgstr "Weet je het zeker?"
-#: chat.php:1083 chat.php:1092 chat.php:1956
+#: index.php:1140 index.php:1149 index.php:2013 chat.php:1140 chat.php:1149
+#: chat.php:2013
msgid "Yes"
msgstr "Ja"
-#: chat.php:1084 chat.php:1093 chat.php:1963
+#: index.php:1141 index.php:1150 index.php:2020 chat.php:1141 chat.php:1150
+#: chat.php:2020
msgid "No"
msgstr "Nee"
-#: chat.php:1101 chat.php:4259
+#: index.php:1158 index.php:4341 chat.php:1158 chat.php:4341
msgid "Superadmin Login"
msgstr "Superadminlogin"
-#: chat.php:1102
+#: index.php:1159 chat.php:1159
msgid "Superadmin Nickname:"
msgstr "Superadminbijnaam:"
-#: chat.php:1103
+#: index.php:1160 chat.php:1160
msgid "Superadmin Password:"
msgstr "Superadminwachtwoord:"
-#: chat.php:1104
+#: index.php:1161 chat.php:1161
msgid "Confirm Password:"
msgstr "Bevestig wachtwoord:"
-#: chat.php:1105
+#: index.php:1162 chat.php:1162
msgid "Initialise Chat"
msgstr "Begin chat"
-#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439
+#: index.php:1163 index.php:1187 index.php:1213 index.php:2336 index.php:2498
+#: chat.php:1163 chat.php:1187 chat.php:1213 chat.php:2336 chat.php:2498
msgid "Change language:"
msgstr "Kies taal:"
-#: chat.php:1117
+#: index.php:1174 chat.php:1174
msgid "Database successfully updated!"
msgstr "Database succesvol bijgewerkt!"
-#: chat.php:1125 chat.php:1326 chat.php:2407
+#: index.php:1182 index.php:1383 index.php:2466 chat.php:1182 chat.php:1383
+#: chat.php:2466
msgid "Nickname:"
msgstr "Bijnaam:"
-#: chat.php:1126 chat.php:1327 chat.php:2408
+#: index.php:1183 index.php:1384 index.php:2467 chat.php:1183 chat.php:1384
+#: chat.php:2467
msgid "Password:"
msgstr "Wachtwoord:"
-#: chat.php:1128
+#: index.php:1185 chat.php:1185
msgid "Login"
msgstr "Login"
-#: chat.php:1129
+#: index.php:1186 chat.php:1186
msgid "Forgot login?"
msgstr "Login vergeten?"
-#: chat.php:1142 chat.php:1306
+#: index.php:1199 index.php:1363 chat.php:1199 chat.php:1363
msgid "Reset password"
msgstr "Wachtwoord opnieuw instellen"
-#: chat.php:1150
+#: index.php:1207 chat.php:1207
#, php-format
msgid ""
"Successfully reset password for username %s. Please remove the password "
@@ -581,175 +613,181 @@ msgstr ""
"definitie voor het opnieuw instellen van het wachtwoord opnieuw uit het "
"script."
-#: chat.php:1153
+#: index.php:1210 chat.php:1210
msgid ""
"Please modify the script and put the following at the bottom of it (change "
"the password). Then refresh this page: define('RESET_SUPERADMIN_PASSWORD', "
"'changeme');"
msgstr ""
-"Pas het script aan en plaats het volgende onderaan (verander het wachtwoord)"
-". Vernieuw vervolgens deze pagina: define('RESET_SUPERADMIN_PASSWORD', "
-"'changeme');"
+"Pas het script aan en plaats het volgende onderaan (verander het "
+"wachtwoord). Vernieuw vervolgens deze pagina: "
+"define('RESET_SUPERADMIN_PASSWORD', 'changeme');"
-#: chat.php:1169 chat.php:1193 chat.php:1258 chat.php:1270 chat.php:1294
-#: chat.php:1308 chat.php:1316 chat.php:2145 chat.php:2153
+#: index.php:1226 index.php:1250 index.php:1315 index.php:1327 index.php:1351
+#: index.php:1365 index.php:1373 index.php:2204 index.php:2212 chat.php:1226
+#: chat.php:1250 chat.php:1315 chat.php:1327 chat.php:1351 chat.php:1365
+#: chat.php:1373 chat.php:2204 chat.php:2212
msgid "(choose)"
msgstr "(kies)"
-#: chat.php:1170
+#: index.php:1227 chat.php:1227
msgid "All guests"
msgstr "Alle gasten"
-#: chat.php:1182
+#: index.php:1239 chat.php:1239
msgid "Administrative functions"
msgstr "Administratieve functies"
-#: chat.php:1188
+#: index.php:1245 chat.php:1245
msgid "Clean messages"
msgstr "Wis berichten"
-#: chat.php:1191
+#: index.php:1248 chat.php:1248
msgid "Whole room"
msgstr "Hele kamer"
-#: chat.php:1192
+#: index.php:1249 chat.php:1249
msgid "Selection"
msgstr "Selectie"
-#: chat.php:1193
+#: index.php:1250 chat.php:1250
msgid "Following nickname:"
msgstr "Volgende bijnaam:"
-#: chat.php:1200
+#: index.php:1257 chat.php:1257
msgid "Clean"
msgstr "Wis"
-#: chat.php:1202
+#: index.php:1259 chat.php:1259
#, php-format
msgid "Kick Chatter (%d minutes)"
msgstr "Kick chatter (%d minuten)"
-#: chat.php:1204
+#: index.php:1261 chat.php:1261
msgid "Kickmessage:"
msgstr "Kickbericht:"
-#: chat.php:1205
+#: index.php:1262 chat.php:1262
msgid "Purge messages"
msgstr "Verwijder berichten"
-#: chat.php:1206 chat.php:1388 chat.php:1546 chat.php:1580 chat.php:1591
-#: chat.php:2042
+#: index.php:1263 index.php:1445 index.php:1603 index.php:1637 index.php:1648
+#: index.php:2101 chat.php:1263 chat.php:1445 chat.php:1603 chat.php:1637
+#: chat.php:1648 chat.php:2101
msgid "Kick"
msgstr "Kick"
-#: chat.php:1208
+#: index.php:1265 chat.php:1265
msgid "Logout inactive Chatter"
msgstr "Log inactieve chatter uit"
-#: chat.php:1212
+#: index.php:1269 chat.php:1269
msgid "View active sessions"
msgstr "Bekijk actieve sessies"
-#: chat.php:1212 chat.php:1603
+#: index.php:1269 index.php:1660 chat.php:1269 chat.php:1660
msgid "Linkfilter"
msgstr "Linkfilter"
-#: chat.php:1217
+#: index.php:1274 chat.php:1274
msgid "View"
msgstr "Bekijk"
-#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582
-#: chat.php:1626
+#: index.php:1280 index.php:1310 index.php:1361 index.php:1369 index.php:1639
+#: index.php:1683 chat.php:1280 chat.php:1310 chat.php:1361 chat.php:1369
+#: chat.php:1639 chat.php:1683
msgid "Change"
msgstr "Verander"
-#: chat.php:1256
+#: index.php:1313 chat.php:1313
msgid "Register applicant"
msgstr "Registreer aanvrager"
-#: chat.php:1264 chat.php:1322 chat.php:1328
+#: index.php:1321 index.php:1379 index.php:1385 chat.php:1321 chat.php:1379
+#: chat.php:1385
msgid "Register"
msgstr "Registreer"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Delete from database"
msgstr "Verwijder uit database"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Deny access (!)"
msgstr "Weiger toegang (!)"
-#: chat.php:1296
+#: index.php:1353 chat.php:1353
msgid "Set to applicant (SG)"
msgstr "Stel in op aanvrager (SG)"
-#: chat.php:1298
+#: index.php:1355 chat.php:1355
msgid "Set to regular member"
msgstr "Stel in op gewoon lid"
-#: chat.php:1299
+#: index.php:1356 chat.php:1356
msgid "Set to moderator (M)"
msgstr "Stel in op moderator (M)"
-#: chat.php:1300
+#: index.php:1357 chat.php:1357
msgid "Set to supermod (SM)"
msgstr "Stel in op supermoderator (SM)"
-#: chat.php:1302
+#: index.php:1359 chat.php:1359
msgid "Set to admin (A)"
msgstr "Stel in op admin (A)"
-#: chat.php:1314
+#: index.php:1371 chat.php:1371
msgid "Register Guest"
msgstr "Registreer gast"
-#: chat.php:1324
+#: index.php:1381 chat.php:1381
msgid "Register new Member"
msgstr "Registreer nieuw lid"
-#: chat.php:1332 chat.php:1408 chat.php:1595 chat.php:1636 chat.php:1710
-#: chat.php:1924
+#: index.php:1389 index.php:1465 index.php:1652 index.php:1693 index.php:1767
+#: index.php:1981 chat.php:1389 chat.php:1465 chat.php:1652 chat.php:1693
+#: chat.php:1767 chat.php:1981
msgid "Reload"
msgstr "Herlaad"
-#: chat.php:1345
+#: index.php:1402 chat.php:1402
msgid "Active Sessions"
msgstr "Actieve sessies"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "Nickname"
msgstr "Bijnaam"
-#: chat.php:1346
+#: index.php:1403 chat.php:1403
msgid "Timeout in"
msgstr "Time-out in"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "User-Agent"
msgstr "User-Agent"
-#: chat.php:1350
+#: index.php:1407 chat.php:1407
msgid "IP-Address"
msgstr "IP-adres"
-#: chat.php:1351
+#: index.php:1408 chat.php:1408
msgid "Actions"
msgstr "Acties"
-#: chat.php:1393
+#: index.php:1450 chat.php:1450
msgid "Unban"
msgstr "Verbanning ongedaan maken"
-#: chat.php:1416
+#: index.php:1473 chat.php:1473
msgid "Incorrect regular expression!"
msgstr "Onjuiste reguliere expressie!"
-#: chat.php:1416 chat.php:1424
+#: index.php:1473 index.php:1481 chat.php:1473 chat.php:1481
#, php-format
msgid "Your match was as follows: %s"
msgstr "Jouw match was als volgt: %s"
-#: chat.php:1424
+#: index.php:1481 chat.php:1481
msgid ""
"Your match was too long. You can use max. 255 characters. Try splitting it "
"up."
@@ -757,40 +795,43 @@ msgstr ""
"Je match was te lang. Je kunt maximaal 255 tekens gebruiken. Probeer het op "
"te splitsen."
-#: chat.php:1541 chat.php:1606
+#: index.php:1598 index.php:1663 chat.php:1598 chat.php:1663
msgid "Filter ID:"
msgstr "Filter-ID:"
-#: chat.php:1542 chat.php:1607
+#: index.php:1599 index.php:1664 chat.php:1599 chat.php:1664
msgid "Match"
msgstr "Match"
-#: chat.php:1543 chat.php:1608
+#: index.php:1600 index.php:1665 chat.php:1600 chat.php:1665
msgid "Replace"
msgstr "Vervangen"
-#: chat.php:1544 chat.php:1578 chat.php:1589
+#: index.php:1601 index.php:1635 index.php:1646 chat.php:1601 chat.php:1635
+#: chat.php:1646
msgid "Allow in PM"
msgstr "Toestaan in PM"
-#: chat.php:1545 chat.php:1579 chat.php:1590 chat.php:1609 chat.php:1625
-#: chat.php:1633
+#: index.php:1602 index.php:1636 index.php:1647 index.php:1666 index.php:1682
+#: index.php:1690 chat.php:1602 chat.php:1636 chat.php:1647 chat.php:1666
+#: chat.php:1682 chat.php:1690
msgid "Regex"
msgstr "Regex"
-#: chat.php:1547 chat.php:1581 chat.php:1592
+#: index.php:1604 index.php:1638 index.php:1649 chat.php:1604 chat.php:1638
+#: chat.php:1649
msgid "Case sensitive"
msgstr "Hoofdlettergevoelig"
-#: chat.php:1586 chat.php:1630
+#: index.php:1643 index.php:1687 chat.php:1643 chat.php:1687
msgid "New filter:"
msgstr "Nieuwe filter:"
-#: chat.php:1593 chat.php:1634
+#: index.php:1650 index.php:1691 chat.php:1650 chat.php:1691
msgid "Add"
msgstr "Voeg toe"
-#: chat.php:1691
+#: index.php:1748 chat.php:1748
msgid ""
"This chat uses frames. Please enable frames in your browser or use a "
"suitable one!"
@@ -798,96 +839,99 @@ msgstr ""
"Deze chat gebruikt frames. Schakel frames in je browser in of gebruik "
"een andere geschikte browser!"
-#: chat.php:1691 chat.php:2370 chat.php:2457
+#: index.php:1748 index.php:2429 index.php:2516 chat.php:1748 chat.php:2429
+#: chat.php:2516
msgid "Back to the login page."
msgstr "Terug naar de loginpagina."
-#: chat.php:1709
+#: index.php:1766 chat.php:1766
msgid "Bottom"
msgstr "Beneden"
-#: chat.php:1710
+#: index.php:1767 chat.php:1767
msgid "Manual refresh required"
msgstr "Handmatig vernieuwen vereist"
-#: chat.php:1726
+#: index.php:1783 chat.php:1783
msgid "Top"
msgstr "Boven"
-#: chat.php:1734 chat.php:1940 chat.php:1942
+#: index.php:1791 index.php:1997 index.php:1999 chat.php:1791 chat.php:1997
+#: chat.php:1999
msgid "Delete selected messages"
msgstr "Verwijder geselecteerde berichten"
-#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281
+#: index.php:1818 index.php:1945 index.php:2160 index.php:2340 chat.php:1818
+#: chat.php:1945 chat.php:2160 chat.php:2340
msgid "Back to the chat."
msgstr "Terug naar de chat."
-#: chat.php:1774 chat.php:1791
+#: index.php:1831 index.php:1848 chat.php:1831 chat.php:1848
msgid "Admin notes"
msgstr "Adminnotities"
-#: chat.php:1777 chat.php:1788
+#: index.php:1834 index.php:1845 chat.php:1834 chat.php:1845
msgid "Staff notes"
msgstr "Personeelnotities"
-#: chat.php:1811
+#: index.php:1868 chat.php:1868
msgid "Notes saved!"
msgstr "Notities opgeslagen!"
-#: chat.php:1835 chat.php:2122
+#: index.php:1892 index.php:2181 chat.php:1892 chat.php:2181
#, php-format
msgid "Last edited by %1$s at %2$s"
msgstr "Laatst aangepast door %1$s op %2$s"
-#: chat.php:1848
+#: index.php:1905 chat.php:1905
msgid "Save notes"
msgstr "Bewaar notities"
-#: chat.php:1850
+#: index.php:1907 chat.php:1907
msgid "Revisions:"
msgstr "Revisies:"
-#: chat.php:1853
+#: index.php:1910 chat.php:1910
msgid "Older"
msgstr "Ouder"
-#: chat.php:1857
+#: index.php:1914 chat.php:1914
msgid "Newer"
msgstr "Nieuwer"
-#: chat.php:1868 chat.php:1914
+#: index.php:1925 index.php:1971 chat.php:1925 chat.php:1971
msgid "Waiting room"
msgstr "Wachtkamer"
-#: chat.php:1880
+#: index.php:1937 chat.php:1937
msgid "Allow checked"
msgstr "Sta aangevinkte toe"
-#: chat.php:1881
+#: index.php:1938 chat.php:1938
msgid "Allow all"
msgstr "Sta alles toe"
-#: chat.php:1882
+#: index.php:1939 chat.php:1939
msgid "Deny checked"
msgstr "Weiger aangevinkte"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Deny all"
msgstr "Weiger alles"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Send message to denied:"
msgstr "Stuur bericht naar geweigerde:"
-#: chat.php:1884
+#: index.php:1941 chat.php:1941
msgid "Submit"
msgstr "Verzenden"
-#: chat.php:1886
+#: index.php:1943 chat.php:1943
msgid "No more entry requests to approve."
msgstr "Geen toegangsverzoeken meer om goed te keuren."
-#: chat.php:1916
+#: index.php:1973 chat.php:1973
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat in %2$d "
@@ -896,7 +940,7 @@ msgstr ""
"Welkom %1$s, je login is vertraagd, je hebt binnen %2$d seconden toegang tot "
"de chat."
-#: chat.php:1918
+#: index.php:1975 chat.php:1975
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat as soon, "
@@ -905,7 +949,7 @@ msgstr ""
"Welkom %1$s, je login is uitgesteld. Je krijgt zo snel mogelijk toegang tot "
"de chat, als een moderator je binnenlaat."
-#: chat.php:1921
+#: index.php:1978 chat.php:1978
#, php-format
msgid ""
"If this page doesn't refresh every %d seconds, use the button below to "
@@ -914,64 +958,69 @@ msgstr ""
"Als deze pagina niet elke %d seconden wordt vernieuwd, gebruik dan de "
"onderstaande knop om deze handmatig te herladen!"
-#: chat.php:1926 chat.php:2339
+#: index.php:1983 index.php:2398 chat.php:1983 chat.php:2398
msgid "Exit Chat"
msgstr "Verlaat chat"
-#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430
+#: index.php:1986 index.php:2133 index.php:2144 index.php:2489 chat.php:1986
+#: chat.php:2133 chat.php:2144 chat.php:2489
msgid "Rules"
msgstr "Regels"
-#: chat.php:1985
+#: index.php:2042 chat.php:2042
msgid "Send to"
msgstr "Verstuur naar"
-#: chat.php:1990
+#: index.php:2047 chat.php:2047
msgid "All chatters"
msgstr "Alle chatters"
-#: chat.php:1996
+#: index.php:2053 chat.php:2053
msgid "Members only"
msgstr "Alleen leden"
-#: chat.php:2003
+#: index.php:2060 chat.php:2060
msgid "Staff only"
msgstr "Alleen personeel"
-#: chat.php:2010
+#: index.php:2067 chat.php:2067
msgid "Admin only"
msgstr "Alleen admin"
-#: chat.php:2019
+#: index.php:2076 chat.php:2076
msgid "(offline)"
msgstr "(offline)"
-#: chat.php:2043
+#: index.php:2078 chat.php:2078
+msgid "(logging out)"
+msgstr ""
+
+#: index.php:2102 chat.php:2102
msgid "Also purge messages"
msgstr "Wis ook berichten"
-#: chat.php:2050
+#: index.php:2109 chat.php:2109
msgid "Delete last message"
msgstr "Verwijder laatste bericht"
-#: chat.php:2055
+#: index.php:2114 chat.php:2114
msgid "Delete all messages"
msgstr "Verwijder alle berichten"
-#: chat.php:2057
+#: index.php:2116 chat.php:2116
msgid "Switch to single-line"
msgstr "Schakel over naar enkellijns"
-#: chat.php:2059
+#: index.php:2118 chat.php:2118
msgid "Switch to multi-line"
msgstr "Schakel over naar meerdere lijnen"
-#: chat.php:2070
+#: index.php:2129 chat.php:2129
#, php-format
msgid "Welcome %s!"
msgstr "Welkom %s!"
-#: chat.php:2071
+#: index.php:2130 chat.php:2130
#, php-format
msgid ""
"If this frame does not reload in %d seconds, you'll have to enable automatic "
@@ -989,11 +1038,11 @@ msgstr ""
"herlaadfouten van de server/proxy) kun je altijd de knoppen onderaan "
"gebruiken om handmatig te vernieuwen."
-#: chat.php:2087
+#: index.php:2146 chat.php:2146
msgid "Help"
msgstr "Hulp"
-#: chat.php:2088
+#: index.php:2147 chat.php:2147
msgid ""
"All functions should be pretty much self-explaining, just use the buttons. "
"In your profile you can adjust the refresh rate and font colour, as well as "
@@ -1006,7 +1055,7 @@ msgstr ""
"chat, dus als je niet blijft praten, word je automatisch na een tijdje "
"uitgelogd."
-#: chat.php:2090
+#: index.php:2149 chat.php:2149
msgid ""
"If you want to embed an image in your post, simply put [img] in front of "
"your image URL. Example: [img]http://example.com/images/file.jpg will embed "
@@ -1017,7 +1066,7 @@ msgstr ""
"file.jpg zal de afbeelding in je bericht insluiten als de admin dit heeft "
"ingeschakeld."
-#: chat.php:2093
+#: index.php:2152 chat.php:2152
msgid ""
"Members: You'll have some more options in your profile. You can adjust your "
"font face, change your password anytime and of course you can delete your "
@@ -1027,7 +1076,7 @@ msgstr ""
"aanpassen, je wachtwoord op elk gewenst moment wijzigen en uiteraard kun je "
"je account verwijderen."
-#: chat.php:2095
+#: index.php:2154 chat.php:2154
msgid ""
"Moderators: Notice the Admin-button at the bottom. It'll bring up a page "
"where you can clean the room, kick chatters, view all active sessions and "
@@ -1037,7 +1086,7 @@ msgstr ""
"de kamer kunt opschonen, chatters kunt kicken, alle actieve sessies kunt "
"bekijken en indien nodig de gasttoegang volledig kunt uitschakelen."
-#: chat.php:2097
+#: index.php:2156 chat.php:2156
msgid ""
"Admins: You'll be furthermore able to register guests, edit members and "
"register new nicknames."
@@ -1045,225 +1094,231 @@ msgstr ""
"Admins: Bovendien kun je gasten registreren, leden bewerken en nieuwe "
"bijnamen registreren."
-#: chat.php:2135
+#: index.php:2194 chat.php:2194
msgid "Your Profile"
msgstr "Jouw profiel"
-#: chat.php:2144
+#: index.php:2203 chat.php:2203
msgid "Don't ignore anymore"
msgstr "Niet meer negeren"
-#: chat.php:2152
+#: index.php:2211 chat.php:2211
msgid "Ignore"
msgstr "Negeren"
-#: chat.php:2163
+#: index.php:2222 chat.php:2222
#, php-format
msgid "Refresh rate (%1$d-%2$d seconds)"
msgstr "Vernieuwingssnelheid (%1$d-%2$d seconden)"
-#: chat.php:2167 chat.php:2170
+#: index.php:2226 index.php:2229 chat.php:2226 chat.php:2229
msgid "View examples"
msgstr "Bekijk voorbeelden"
-#: chat.php:2174
+#: index.php:2233 chat.php:2233
msgid "Fontface"
msgstr "Lettertype"
-#: chat.php:2175
+#: index.php:2234 chat.php:2234
msgid "Room Default"
msgstr "Standaard kamer"
-#: chat.php:2188
+#: index.php:2247 chat.php:2247
msgid "Bold"
msgstr "Vet"
-#: chat.php:2192
+#: index.php:2251 chat.php:2251
msgid "Italic"
msgstr "Cursief"
-#: chat.php:2196
+#: index.php:2255 chat.php:2255
msgid "Small"
msgstr "Klein"
-#: chat.php:2199
+#: index.php:2258 chat.php:2258
msgid "Example for your chosen font"
msgstr "Voorbeeld van het door jou gekozen lettertype"
-#: chat.php:2203
+#: index.php:2262 chat.php:2262
msgid "Autoscroll (for old browsers or top-to-bottom sort)."
msgstr "Autoscrollen (voor oude browsers of van boven naar beneden sorteren)."
-#: chat.php:2234
+#: index.php:2293 chat.php:2293
msgid "For everyone"
msgstr "Voor iedereen"
-#: chat.php:2239
+#: index.php:2298 chat.php:2298
msgid "For members only"
msgstr "Alleen voor leden"
-#: chat.php:2244
+#: index.php:2303 chat.php:2303
msgid "For staff only"
msgstr "Alleen voor personeel"
-#: chat.php:2248
+#: index.php:2307 chat.php:2307
msgid "Time zone"
msgstr "Tijdzone"
-#: chat.php:2261
+#: index.php:2320 chat.php:2320
msgid "Change Password"
msgstr "Verander wachtwoord"
-#: chat.php:2263
+#: index.php:2322 chat.php:2322
msgid "Old password:"
msgstr "Oud wachtwoord:"
-#: chat.php:2264
+#: index.php:2323 chat.php:2323
msgid "New password:"
msgstr "Nieuw wachtwoord:"
-#: chat.php:2265
+#: index.php:2324 chat.php:2324
msgid "Confirm new password:"
msgstr "Bevestig nieuw wachtwoord:"
-#: chat.php:2268
+#: index.php:2327 chat.php:2327
msgid "Change Nickname"
msgstr "Verander bijnaam"
-#: chat.php:2269
+#: index.php:2328 chat.php:2328
msgid "New nickname:"
msgstr "Nieuwe bijnaam:"
-#: chat.php:2273
+#: index.php:2332 chat.php:2332
msgid "Save changes"
msgstr "Sla wijzigingen op"
-#: chat.php:2275
+#: index.php:2334 chat.php:2334
msgid "Delete account"
msgstr "Verwijder account"
-#: chat.php:2301
+#: index.php:2360 chat.php:2360
msgid "Reload Post Box"
msgstr "Herlaad berichtverzendframe"
-#: chat.php:2304
+#: index.php:2363 chat.php:2363
msgid "Reload Messages"
msgstr "Herlaad berichtenframe"
-#: chat.php:2307
+#: index.php:2366 chat.php:2366
msgid "Profile"
msgstr "Profiel"
-#: chat.php:2311 chat.php:2528
+#: index.php:2370 index.php:2590 chat.php:2370 chat.php:2590
msgid "Admin"
msgstr "Admin"
-#: chat.php:2318
+#: index.php:2377 chat.php:2377
msgid "View public notes"
msgstr "Bekijk openbare notities"
-#: chat.php:2325
+#: index.php:2384 chat.php:2384
msgid "Clone"
msgstr "Kloon"
-#: chat.php:2334
+#: index.php:2393 chat.php:2393
msgid "Rearrange"
msgstr "Herschikken"
-#: chat.php:2337
+#: index.php:2396 chat.php:2396
msgid "Rules & Help"
msgstr "Regels & hulp"
-#: chat.php:2358 chat.php:2362
+#: index.php:2417 index.php:2421 chat.php:2417 chat.php:2421
msgid "File not found!"
msgstr "Bestand niet gevonden!"
-#: chat.php:2370
+#: index.php:2429 chat.php:2429
#, php-format
msgid "Bye %s, visit again soon!"
msgstr "Dag %s, bezoek binnenkort opnieuw!"
-#: chat.php:2377
+#: index.php:2436 chat.php:2436
msgid "Colourtable"
msgstr "Kleurentabel"
-#: chat.php:2388
+#: index.php:2447 chat.php:2447
msgid "Back to your Profile"
msgstr "Terug naar je profiel"
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "Repeat password to register"
msgstr "Herhaal wachtwoord om te registreren"
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "(optional)"
msgstr "(optioneel)"
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Guests, choose a colour:"
msgstr "Gasten, kies een kleur:"
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Random Colour"
msgstr "Willekeurige kleur"
-#: chat.php:2421 chat.php:2435 chat.php:2569
+#: index.php:2480 index.php:2494 index.php:2631 chat.php:2480 chat.php:2494
+#: chat.php:2631
msgid "Sorry, currently members only!"
msgstr "Sorry, alleen leden op dit moment!"
-#: chat.php:2423 chat.php:2437
+#: index.php:2482 index.php:2496 chat.php:2482 chat.php:2496
msgid "Enter Chat"
msgstr "Ga naar de chat"
-#: chat.php:2457
+#: index.php:2516 chat.php:2516
#, php-format
msgid "Error: %s"
msgstr "Fout: %s"
-#: chat.php:2467
+#: index.php:2526 chat.php:2526
msgid "Fatal error"
msgstr "Fatale fout"
-#: chat.php:2470
+#: index.php:2529 chat.php:2529
#, php-format
msgid "Fatal error: %s"
msgstr "Fatale fout: %s"
-#: chat.php:2482 chat.php:2693
+#: index.php:2541 index.php:2756 chat.php:2541 chat.php:2756
msgid "Failed login attempt(s)"
msgstr "Mislukte inlogpoging(en)"
-#: chat.php:2489
+#: index.php:2548 chat.php:2548
#, php-format
msgid "Read %d messages in your inbox"
msgstr "Lees %d berichten in je inbox"
-#: chat.php:2498
+#: index.php:2557 chat.php:2557
#, php-format
msgid "%d new guests to approve"
msgstr "%d nieuwe gasten om goed te keuren"
-#: chat.php:2530
+#: index.php:2577 chat.php:2577
+msgid "logging out"
+msgstr ""
+
+#: index.php:2592 chat.php:2592
msgid "Admin:"
msgstr "Admin:"
-#: chat.php:2533
+#: index.php:2595 chat.php:2595
msgid "Staff"
msgstr "Personeel"
-#: chat.php:2535
+#: index.php:2597 chat.php:2597
msgid "Staff:"
msgstr "Personeel:"
-#: chat.php:2540
+#: index.php:2602 chat.php:2602
msgid "Members:"
msgstr "Leden:"
-#: chat.php:2542
+#: index.php:2604 chat.php:2604
msgid "Guests"
msgstr "Gasten"
-#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092
+#: index.php:2625 index.php:3063 index.php:3267 index.php:4172 chat.php:2625
+#: chat.php:3063 chat.php:3267 chat.php:4172
#, php-format
msgid ""
"Invalid nickname (%1$d characters maximum and has to match the regular "
@@ -1272,7 +1327,8 @@ msgstr ""
"Ongeldige bijnaam (maximaal %1$d tekens en moet overeenkomen met de "
"reguliere expressie \"%2$s\")"
-#: chat.php:2566 chat.php:2996 chat.php:3162 chat.php:4094
+#: index.php:2628 index.php:3066 index.php:3232 index.php:4174 chat.php:2628
+#: chat.php:3066 chat.php:3232 chat.php:4174
#, php-format
msgid ""
"Invalid password (At least %1$d characters and has to match the regular "
@@ -1281,248 +1337,256 @@ msgstr ""
"Ongeldig wachtwoord (minstens %1$d tekens en moet overeenkomen met de "
"reguliere expressie \"%2$s\")"
-#: chat.php:2574 chat.php:2739
+#: index.php:2636 index.php:2806 chat.php:2636 chat.php:2806
msgid "Wrong global Password!"
msgstr "Verkeerd globaal wachtwoord!"
-#: chat.php:2591 chat.php:2612
+#: index.php:2654 index.php:2675 chat.php:2654 chat.php:2675
msgid "Wrong Captcha"
msgstr "Verkeerde captcha"
-#: chat.php:2596 chat.php:2604
+#: index.php:2659 index.php:2667 chat.php:2659 chat.php:2667
msgid "Captcha already used or timed out."
msgstr "Captcha al gebruikt of verlopen."
-#: chat.php:2652
+#: index.php:2715 chat.php:2715
msgid "A user with this nickname is already logged in."
msgstr "Een gebruiker met deze bijnaam is al ingelogd."
-#: chat.php:2652 chat.php:2933 chat.php:3176
+#: index.php:2715 index.php:3003 index.php:3246 chat.php:2715 chat.php:3003
+#: chat.php:3246
msgid "Wrong Password!"
msgstr "Verkeerd wachtwoord!"
-#: chat.php:2696
+#: index.php:2759 chat.php:2759
msgid "Dismiss"
msgstr "Afwijzen"
-#: chat.php:2747 chat.php:3171 chat.php:4096
+#: index.php:2814 index.php:3241 index.php:4176 chat.php:2814 chat.php:3241
+#: chat.php:4176
msgid "Password confirmation does not match!"
msgstr "Wachtwoordbevestiging komt niet overeen!"
-#: chat.php:2859
+#: index.php:2854 chat.php:2854
+#, fuzzy
+#| msgid "Kickmessage:"
+msgid "no kick message"
+msgstr "Kickbericht:"
+
+#: index.php:2929 chat.php:2929
msgid "Invalid/expired session"
msgstr "Ongeldige/verlopen sessie"
-#: chat.php:2875 chat.php:3412
+#: index.php:2945 index.php:3483 chat.php:2945 chat.php:3483
msgid "You have been kicked!"
msgstr "Je bent gekickt!"
-#: chat.php:2885
+#: index.php:2955 chat.php:2955
#, php-format
msgid "Currently %d chatter(s) in room:"
msgstr "Momenteel %d chatter(s) in de kamer:"
-#: chat.php:2933
+#: index.php:3003 chat.php:3003
msgid "This nickname is a registered member."
msgstr "Deze bijnaam is een geregistreerd lid."
-#: chat.php:2960 chat.php:3001
+#: index.php:3030 index.php:3071 chat.php:3030 chat.php:3071
#, php-format
msgid "%s is already registered."
msgstr "%s is al geregistreerd."
-#: chat.php:2969 chat.php:2990
+#: index.php:3039 index.php:3060 chat.php:3039 chat.php:3060
#, php-format
msgid "Can't register %s"
msgstr "Kan %s niet registreren"
-#: chat.php:2978 chat.php:3023
+#: index.php:3048 index.php:3093 chat.php:3048 chat.php:3093
#, php-format
msgid "%s successfully registered."
msgstr "%s succesvol geregistreerd."
-#: chat.php:3031 chat.php:3036
+#: index.php:3101 index.php:3106 chat.php:3101 chat.php:3106
#, php-format
msgid "Can't change status of %s"
msgstr "Kan de status van %s niet wijzigen"
-#: chat.php:3047
+#: index.php:3117 chat.php:3117
#, php-format
msgid "%s successfully deleted from database."
msgstr "%s succesvol verwijderd uit de database."
-#: chat.php:3056
+#: index.php:3126 chat.php:3126
#, php-format
msgid "Status of %s successfully changed."
msgstr "Status van %s succesvol gewijzigd."
-#: chat.php:3073
+#: index.php:3143 chat.php:3143
#, php-format
msgid "Successfully reset password for %s"
msgstr "Wachtwoord voor %s succesvol opnieuw ingesteld"
-#: chat.php:3075
+#: index.php:3145 chat.php:3145
#, php-format
msgid "Can't reset password for %s"
msgstr "Kan wachtwoord voor %s niet opnieuw instellen"
-#: chat.php:3190
+#: index.php:3260 chat.php:3260
msgid "Your profile has successfully been saved."
msgstr "Je profiel is succesvol opgeslagen."
-#: chat.php:3202
+#: index.php:3272 chat.php:3272
msgid "Nickname is already taken"
msgstr "Bijnaam is al in gebruik"
-#: chat.php:3714
+#: index.php:3785 chat.php:3785
msgid "system message"
msgstr "systeembericht"
-#: chat.php:3921
+#: index.php:4001 chat.php:4001
msgid "Beige"
msgstr "Beige"
-#: chat.php:3922
+#: index.php:4002 chat.php:4002
msgid "Black"
msgstr "Zwart"
-#: chat.php:3923
+#: index.php:4003 chat.php:4003
msgid "Blue"
msgstr "Blauw"
-#: chat.php:3924
+#: index.php:4004 chat.php:4004
msgid "Blue violet"
msgstr "Blauwviolet"
-#: chat.php:3925
+#: index.php:4005 chat.php:4005
msgid "Brown"
msgstr "Bruin"
-#: chat.php:3926
+#: index.php:4006 chat.php:4006
msgid "Cyan"
msgstr "Cyaan"
-#: chat.php:3927
+#: index.php:4007 chat.php:4007
msgid "Dark blue"
msgstr "Donkerblauw"
-#: chat.php:3928
+#: index.php:4008 chat.php:4008
msgid "Dark green"
msgstr "Donkergroen"
-#: chat.php:3929
+#: index.php:4009 chat.php:4009
msgid "Dark red"
msgstr "Donkerrood"
-#: chat.php:3930
+#: index.php:4010 chat.php:4010
msgid "Dark violet"
msgstr "Donkerviolet"
-#: chat.php:3931
+#: index.php:4011 chat.php:4011
msgid "Sky blue"
msgstr "Luchtblauw"
-#: chat.php:3932
+#: index.php:4012 chat.php:4012
msgid "Gold"
msgstr "Goud"
-#: chat.php:3933
+#: index.php:4013 chat.php:4013
msgid "Grey"
msgstr "Grijs"
-#: chat.php:3934
+#: index.php:4014 chat.php:4014
msgid "Green"
msgstr "Groen"
-#: chat.php:3935
+#: index.php:4015 chat.php:4015
msgid "Hot pink"
msgstr "Felroze"
-#: chat.php:3936
+#: index.php:4016 chat.php:4016
msgid "Indigo"
msgstr "Indigo"
-#: chat.php:3937
+#: index.php:4017 chat.php:4017
msgid "Light blue"
msgstr "Lichtblauw"
-#: chat.php:3938
+#: index.php:4018 chat.php:4018
msgid "Light green"
msgstr "Lichtgroen"
-#: chat.php:3939
+#: index.php:4019 chat.php:4019
msgid "Lime green"
msgstr "Limoengroen"
-#: chat.php:3940
+#: index.php:4020 chat.php:4020
msgid "Magenta"
msgstr "Magenta"
-#: chat.php:3941
+#: index.php:4021 chat.php:4021
msgid "Olive"
msgstr "Olijf"
-#: chat.php:3942
+#: index.php:4022 chat.php:4022
msgid "Orange"
msgstr "Oranje"
-#: chat.php:3943
+#: index.php:4023 chat.php:4023
msgid "Orange red"
msgstr "Oranjerood"
-#: chat.php:3944
+#: index.php:4024 chat.php:4024
msgid "Purple"
msgstr "Paars"
-#: chat.php:3945
+#: index.php:4025 chat.php:4025
msgid "Red"
msgstr "Rood"
-#: chat.php:3946
+#: index.php:4026 chat.php:4026
msgid "Royal blue"
msgstr "Royaalblauw"
-#: chat.php:3947
+#: index.php:4027 chat.php:4027
msgid "Sea green"
msgstr "Zeegroen"
-#: chat.php:3948
+#: index.php:4028 chat.php:4028
msgid "Sienna"
msgstr "Sienna"
-#: chat.php:3949
+#: index.php:4029 chat.php:4029
msgid "Silver"
msgstr "Zilver"
-#: chat.php:3950
+#: index.php:4030 chat.php:4030
msgid "Tan"
msgstr "Huidskleur"
-#: chat.php:3951
+#: index.php:4031 chat.php:4031
msgid "Teal"
msgstr "Blauwgroen"
-#: chat.php:3952
+#: index.php:4032 chat.php:4032
msgid "Violet"
msgstr "Violet"
-#: chat.php:3953
+#: index.php:4033 chat.php:4033
msgid "White"
msgstr "Wit"
-#: chat.php:3954
+#: index.php:4034 chat.php:4034
msgid "Yellow"
msgstr "Geel"
-#: chat.php:3955
+#: index.php:4035 chat.php:4035
msgid "Yellow green"
msgstr "Geelgroen"
-#: chat.php:4077
+#: index.php:4157 chat.php:4157
msgid "Successfully destroyed chat"
msgstr "Chat succesvol vernietigd"
-#: chat.php:4086
+#: index.php:4166 chat.php:4166
msgid ""
"Database tables already exist! To continue, you have to delete these tables "
"manually first."
@@ -1530,98 +1594,103 @@ msgstr ""
"Databasetabellen bestaan al! Om door te gaan, moet je deze tabellen eerst "
"handmatig verwijderen."
-#: chat.php:4089
+#: index.php:4169 chat.php:4169
msgid "A Superadmin already exists!"
msgstr "Er bestaat al een superadmin!"
-#: chat.php:4182 chat.php:4369
+#: index.php:4263 index.php:4451 chat.php:4263 chat.php:4451
#, php-format
msgid "%s - "
msgstr "%s - "
-#: chat.php:4183 chat.php:4369
+#: index.php:4264 index.php:4451 chat.php:4264 chat.php:4451
#, php-format
msgid "[M] %s - "
msgstr "[M] %s - "
-#: chat.php:4184 chat.php:4369
+#: index.php:4265 index.php:4451 chat.php:4265 chat.php:4451
#, php-format
msgid "[Staff] %s - "
msgstr "[Personeel] %s - "
-#: chat.php:4185 chat.php:4369
+#: index.php:4266 index.php:4451 chat.php:4266 chat.php:4451
#, php-format
msgid "[Admin] %s - "
msgstr "[Admin] %s - "
-#: chat.php:4186 chat.php:4369
+#: index.php:4267 index.php:4451 chat.php:4267 chat.php:4451
#, php-format
msgid "[%1$s to %2$s] - "
msgstr "[%1$s naar %2$s] - "
-#: chat.php:4187
+#: index.php:4268 chat.php:4268
#, php-format
msgid "%s entered the chat."
msgstr "%s is de chat binnengekomen."
-#: chat.php:4188
+#: index.php:4269 chat.php:4269
#, php-format
msgid "%s left the chat."
msgstr "%s heeft de chat verlaten."
-#: chat.php:4189
+#: index.php:4270 chat.php:4270
#, php-format
msgid "%s is now a registered member."
msgstr "%s is nu een geregistreerd lid."
-#: chat.php:4190
+#: index.php:4271 chat.php:4271
#, php-format
msgid "%s is now a registered applicant."
msgstr "%s is nu een geregistreerde aanvrager."
-#: chat.php:4191
-#, php-format
-msgid "%s has been kicked."
+#: index.php:4272 chat.php:4272
+#, fuzzy, php-format
+#| msgid "%s has been kicked."
+msgid "%1$s has been kicked: %2$s"
msgstr "%s is gekickt."
-#: chat.php:4192
-#, php-format
-msgid "%s have been kicked."
+#: index.php:4273 chat.php:4273
+#, fuzzy, php-format
+#| msgid "%s have been kicked."
+msgid "%1$s have been kicked: %2$s"
msgstr "%s zijn gekickt."
-#: chat.php:4193
-msgid "All guests have been kicked."
+#: index.php:4274 chat.php:4274
+#, fuzzy, php-format
+#| msgid "All guests have been kicked."
+msgid "All guests have been kicked: %1$s"
msgstr "Alle gasten zijn gekickt."
-#: chat.php:4194
+#: index.php:4275 chat.php:4275
#, php-format
msgid "%s has been cleaned."
msgstr "%s is opgeschoond."
-#: chat.php:4202 chat.php:4396
+#: index.php:4283 index.php:4478 chat.php:4283 chat.php:4478
msgid "Temporarily disabled"
msgstr "Tijdelijk uitgeschakeld"
-#: chat.php:4218 chat.php:4594
+#: index.php:4299 index.php:4676 chat.php:4299 chat.php:4676
msgid "A chat community"
msgstr "Een chatgemeenschap"
-#: chat.php:4256
+#: index.php:4338 chat.php:4338
msgid "Successfully registered!"
msgstr "Succesvol geregistreerd!"
-#: chat.php:4522 chat.php:4721 chat.php:4728
+#: index.php:4604 index.php:4807 index.php:4814 chat.php:4604 chat.php:4807
+#: chat.php:4814
msgid "No connection to database!"
msgstr "Geen verbinding met de database!"
-#: chat.php:4531
+#: index.php:4613 chat.php:4613
msgid ""
"Note: Default CSS is now hardcoded and can be removed from the CSS setting"
msgstr ""
"Opmerking: Standaard CSS is nu hardgecodeerd en kan uit de CSS-instelling "
"worden verwijderd"
-#: chat.php:4611
+#: index.php:4697 chat.php:4697
#, php-format
msgid ""
"The %s extension of PHP is required for the encryption feature. Please "
@@ -1630,7 +1699,8 @@ msgstr ""
"De %s-extensie van PHP is vereist voor de encryptiefunctie. Installeer het "
"eerst of stel de encryptieinstelling weer in op false."
-#: chat.php:4684 chat.php:4689 chat.php:4694
+#: index.php:4770 index.php:4775 index.php:4780 chat.php:4770 chat.php:4775
+#: chat.php:4780
#, php-format
msgid ""
"The %s extension of PHP is required for the selected database driver. Please "
@@ -1639,7 +1709,8 @@ msgstr ""
"De %s-extensie van PHP is vereist voor het geselecteerde "
"databasestuurprogramma. Installeer deze eerst."
-#: chat.php:4707 chat.php:4715 chat.php:4719 chat.php:4726
+#: index.php:4793 index.php:4801 index.php:4805 index.php:4812 chat.php:4793
+#: chat.php:4801 chat.php:4805 chat.php:4812
msgid ""
"No connection to database, please create a database and edit the script to "
"use the correct database with given username and password!"
@@ -1648,7 +1719,7 @@ msgstr ""
"om de juiste database met de opgegeven gebruikersnaam en wachtwoord te "
"gebruiken!"
-#: chat.php:4734
+#: index.php:4820 chat.php:4820
msgid ""
"The memcached extension of PHP is required for the caching feature. Please "
"install it first or set the memcached setting back to false."
diff --git a/locale/pl_PL/LC_MESSAGES/le-chat-php.po b/locale/pl_PL/LC_MESSAGES/le-chat-php.po
index 9e46e43..6b9715f 100644
--- a/locale/pl_PL/LC_MESSAGES/le-chat-php.po
+++ b/locale/pl_PL/LC_MESSAGES/le-chat-php.po
@@ -7,11 +7,11 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-01-18 21:32+0100\n"
+"POT-Creation-Date: 2025-03-29 17:02+0100\n"
"PO-Revision-Date: 2023-05-01 02:04+0000\n"
"Last-Translator: big cat \n"
-"Language-Team: Polish \n"
+"Language-Team: Polish \n"
"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -20,933 +20,982 @@ msgstr ""
"|| n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 4.17\n"
-#: chat.php:261
+#: index.php:272 chat.php:272
msgid "Enable applicants"
msgstr ""
-#: chat.php:262
+#: index.php:273 index.php:2267 chat.php:273 chat.php:2267
msgid "Embed images"
msgstr ""
-#: chat.php:263 chat.php:2202
+#: index.php:274 index.php:2261 chat.php:274 chat.php:2261
msgid "Show Timestamps"
msgstr ""
-#: chat.php:264
+#: index.php:275 chat.php:275
msgid "Show session-IP"
msgstr ""
-#: chat.php:265
+#: index.php:276 chat.php:276
msgid "Members can kick, if no moderator is present"
msgstr ""
-#: chat.php:266
+#: index.php:277 chat.php:277
msgid "Members can always kick"
msgstr ""
-#: chat.php:267
+#: index.php:278 chat.php:278
msgid "Force redirection"
msgstr ""
-#: chat.php:268
+#: index.php:279 index.php:2270 chat.php:279 chat.php:2270
msgid "Incognito mode"
msgstr ""
-#: chat.php:269
+#: index.php:280 chat.php:280
msgid "Send mail on new public message"
msgstr ""
-#: chat.php:270
+#: index.php:281 chat.php:281
msgid "Fallback to waiting room, if no moderator is present to approve guests"
msgstr ""
-#: chat.php:271
+#: index.php:282 chat.php:282
msgid "Disable private messages"
msgstr ""
-#: chat.php:272 chat.php:2223
+#: index.php:283 index.php:2282 chat.php:283 chat.php:2282
msgid "Enable offline inbox"
msgstr ""
-#: chat.php:273
+#: index.php:284 chat.php:284
msgid "Show a greeting message before showing the messages"
msgstr ""
-#: chat.php:274 chat.php:2204
+#: index.php:285 index.php:2263 chat.php:285 chat.php:2263
msgid "Sort messages from top to bottom"
msgstr ""
-#: chat.php:275 chat.php:2205
+#: index.php:286 index.php:2264 chat.php:286 chat.php:2264
msgid "Hide list of chatters"
msgstr ""
-#: chat.php:276 chat.php:1780 chat.php:1794
+#: index.php:287 index.php:1837 index.php:1851 chat.php:287 chat.php:1837
+#: chat.php:1851
msgid "Personal notes"
msgstr ""
-#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110
+#: index.php:288 index.php:1840 index.php:1854 index.php:2169 chat.php:288
+#: chat.php:1840 chat.php:1854 chat.php:2169
msgid "Public notes"
msgstr ""
-#: chat.php:278
+#: index.php:289 chat.php:289
msgid "Apply kick filter on moderators"
msgstr ""
-#: chat.php:279
+#: index.php:290 chat.php:290
msgid "Show who kicks people or purges all messages."
msgstr ""
-#: chat.php:280
+#: index.php:291 chat.php:291
msgid "Hide reload post box button"
msgstr ""
-#: chat.php:281
+#: index.php:292 chat.php:292
msgid "Hide reload messages button"
msgstr ""
-#: chat.php:282
+#: index.php:293 chat.php:293
msgid "Hide profile button"
msgstr ""
-#: chat.php:283
+#: index.php:294 chat.php:294
msgid "Hide admin button"
msgstr ""
-#: chat.php:284
+#: index.php:295 chat.php:295
msgid "Hide notes button"
msgstr ""
-#: chat.php:285
+#: index.php:296 chat.php:296
msgid "Hide clone button"
msgstr ""
-#: chat.php:286
+#: index.php:297 chat.php:297
msgid "Hide rearrange button"
msgstr ""
-#: chat.php:287
+#: index.php:298 chat.php:298
msgid "Hide help button"
msgstr ""
-#: chat.php:288
+#: index.php:299 chat.php:299
msgid "Apply postbox delete button globally"
msgstr ""
-#: chat.php:289
+#: index.php:300 chat.php:300
msgid "Allow enhancing functionality with JavaScript"
msgstr ""
-#: chat.php:292 chat.php:2170
+#: index.php:303 index.php:2229 chat.php:303 chat.php:2229
msgid "Background colour"
msgstr ""
-#: chat.php:293 chat.php:2167
+#: index.php:304 index.php:2226 chat.php:304 chat.php:2226
msgid "Font colour"
msgstr ""
-#: chat.php:296
+#: index.php:307 chat.php:307
msgid "Entrance"
msgstr ""
-#: chat.php:297
+#: index.php:308 chat.php:308
msgid "Leaving"
msgstr ""
-#: chat.php:298
+#: index.php:309 chat.php:309
msgid "Member registered"
msgstr ""
-#: chat.php:299
+#: index.php:310 chat.php:310
msgid "Applicant registered"
msgstr ""
-#: chat.php:300
+#: index.php:311 chat.php:311
msgid "Kicked"
msgstr ""
-#: chat.php:301
+#: index.php:312 chat.php:312
msgid "Multiple kicked"
msgstr ""
-#: chat.php:302
+#: index.php:313 chat.php:313
msgid "All kicked"
msgstr ""
-#: chat.php:303
+#: index.php:314 chat.php:314
msgid "Room cleaned"
msgstr ""
-#: chat.php:304
+#: index.php:315 chat.php:315
msgid "Message to all"
msgstr ""
-#: chat.php:305
+#: index.php:316 chat.php:316
msgid "Message to members only"
msgstr ""
-#: chat.php:306
+#: index.php:317 chat.php:317
msgid "Message to staff only"
msgstr ""
-#: chat.php:307
+#: index.php:318 chat.php:318
msgid "Message to admins only"
msgstr ""
-#: chat.php:308
+#: index.php:319 chat.php:319
msgid "Private message"
msgstr ""
-#: chat.php:309
+#: index.php:320 chat.php:320
msgid "Attachement"
msgstr ""
-#: chat.php:312
+#: index.php:323 chat.php:323
msgid "Member timeout (minutes)"
msgstr ""
-#: chat.php:313
+#: index.php:324 chat.php:324
msgid "Guest timeout (minutes)"
msgstr ""
-#: chat.php:314
+#: index.php:325 chat.php:325
msgid "Kick penalty (minutes)"
msgstr ""
-#: chat.php:315
+#: index.php:326 chat.php:326
msgid "Waiting room time (seconds)"
msgstr ""
-#: chat.php:316
+#: index.php:327 chat.php:327
+msgid "Logout delay (seconds)"
+msgstr ""
+
+#: index.php:328 chat.php:328
msgid "Captcha timeout (seconds)"
msgstr ""
-#: chat.php:317
+#: index.php:329 chat.php:329
msgid "Message timeout (minutes)"
msgstr ""
-#: chat.php:318
+#: index.php:330 chat.php:330
msgid "Message limit (public)"
msgstr ""
-#: chat.php:319
+#: index.php:331 chat.php:331
msgid "Maximal message length"
msgstr ""
-#: chat.php:320
+#: index.php:332 chat.php:332
msgid "Maximal nickname length"
msgstr ""
-#: chat.php:321
+#: index.php:333 chat.php:333
msgid "Minimal password length"
msgstr ""
-#: chat.php:322
+#: index.php:334 chat.php:334
msgid "Default message reload time (seconds)"
msgstr ""
-#: chat.php:323
+#: index.php:335 chat.php:335
msgid "Number of notes revisions to keep"
msgstr ""
-#: chat.php:324
+#: index.php:336 chat.php:336
msgid "Maximum upload size in KB"
msgstr ""
-#: chat.php:325
+#: index.php:337 chat.php:337
msgid "Enable file uploads"
msgstr ""
-#: chat.php:326
+#: index.php:338 chat.php:338
msgid "Lowest refresh rate"
msgstr ""
-#: chat.php:327
+#: index.php:339 chat.php:339
msgid "Highest refresh rate"
msgstr ""
-#: chat.php:330
+#: index.php:342 chat.php:342
msgid "Rules (html)"
msgstr ""
-#: chat.php:331
+#: index.php:343 chat.php:343
msgid "CSS Style"
msgstr ""
-#: chat.php:332
+#: index.php:344 chat.php:344
msgid "Chat disabled message (html)"
msgstr ""
-#: chat.php:335
+#: index.php:347 chat.php:347
msgid ""
"Date "
"formating"
msgstr ""
-#: chat.php:336
+#: index.php:348 chat.php:348
msgid "Characters used in Captcha"
msgstr ""
-#: chat.php:337
+#: index.php:349 chat.php:349
msgid "Custom redirection script"
msgstr ""
-#: chat.php:338
+#: index.php:350 chat.php:350
msgid "Chat name"
msgstr ""
-#: chat.php:339
+#: index.php:351 chat.php:351
msgid "Send mail using this address"
msgstr ""
-#: chat.php:340
+#: index.php:352 chat.php:352
msgid "Send mail to this address"
msgstr ""
-#: chat.php:341
+#: index.php:353 chat.php:353
msgid "Nickname regex"
msgstr ""
-#: chat.php:342
+#: index.php:354 chat.php:354
msgid "Password regex"
msgstr ""
-#: chat.php:343
+#: index.php:355 chat.php:355
msgid "Link to external CSS file (on your own server)"
msgstr ""
-#: chat.php:344
+#: index.php:356 chat.php:356
msgid "Meta description (best 50 - 160 characters for SEO)"
msgstr ""
-#: chat.php:345
+#: index.php:357 chat.php:357
+msgid "Show this text when a user's logout is delayed"
+msgstr ""
+
+#: index.php:358 chat.php:358
msgid "Prepend this text to system messages"
msgstr ""
-#: chat.php:348 chat.php:728 chat.php:1225
+#: index.php:361 index.php:780 index.php:1282 chat.php:361 chat.php:780
+#: chat.php:1282
msgid "Change Guestaccess"
msgstr ""
-#: chat.php:349
+#: index.php:362 chat.php:362
msgid "Enable global Password"
msgstr ""
-#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433
+#: index.php:363 index.php:810 index.php:2474 index.php:2492 chat.php:363
+#: chat.php:810 chat.php:2474 chat.php:2492
msgid "Global Password:"
msgstr ""
-#: chat.php:351 chat.php:819
+#: index.php:364 index.php:871 chat.php:364 chat.php:871
msgid "Captcha"
msgstr ""
-#: chat.php:352 chat.php:775 chat.php:835
+#: index.php:365 index.php:827 index.php:887 chat.php:365 chat.php:827
+#: chat.php:887
msgid "Only for guests"
msgstr ""
-#: chat.php:353 chat.php:1220
+#: index.php:366 index.php:1277 chat.php:366 chat.php:1277
msgid "Topic"
msgstr ""
-#: chat.php:354 chat.php:781
+#: index.php:367 index.php:833 chat.php:367 chat.php:833
msgid "Let guests register themselves"
msgstr ""
-#: chat.php:355 chat.php:862
+#: index.php:368 index.php:919 chat.php:368 chat.php:919
msgid "Default time zone"
msgstr ""
-#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259
+#: index.php:581 index.php:1157 index.php:4158 index.php:4341 chat.php:581
+#: chat.php:1157 chat.php:4158 chat.php:4341
msgid "Initial Setup"
msgstr ""
-#: chat.php:588
+#: index.php:601 chat.php:601
#, php-format
msgid "Redirecting to: %s"
msgstr ""
-#: chat.php:595
+#: index.php:608 chat.php:608
#, php-format
msgid ""
"Dangerous non-http link requested, copy paste this link if you are really "
"sure: %s"
msgstr ""
-#: chat.php:597
+#: index.php:610 chat.php:610
#, php-format
msgid "Non-http link requested: %s"
msgstr ""
-#: chat.php:599
+#: index.php:612 chat.php:612
#, php-format
msgid "If it's not working, try this one: %s"
msgstr ""
-#: chat.php:609
+#: index.php:622 chat.php:622
msgid "Access denied"
msgstr ""
-#: chat.php:609
+#: index.php:622 chat.php:622
#, php-format
msgid "You are logged in as %s and don't have access to this section."
msgstr ""
-#: chat.php:611 chat.php:915 chat.php:1211 chat.php:1393
+#: index.php:624 index.php:972 index.php:1268 index.php:1450 chat.php:624
+#: chat.php:972 chat.php:1268 chat.php:1450
msgid "Logout"
msgstr "Wyloguj się"
-#: chat.php:636
+#: index.php:649 chat.php:649
msgid "Copy:"
msgstr "Kopiuj:"
-#: chat.php:724
+#: index.php:776 chat.php:776
msgid "Chat Setup"
msgstr ""
-#: chat.php:734 chat.php:1233
+#: index.php:786 index.php:1290 chat.php:786 chat.php:1290
msgid "Allow"
msgstr ""
-#: chat.php:739 chat.php:1238
+#: index.php:791 index.php:1295 chat.php:791 chat.php:1295
msgid "Allow with waitingroom"
msgstr ""
-#: chat.php:744 chat.php:1243
+#: index.php:796 index.php:1300 chat.php:796 chat.php:1300
msgid "Require moderator approval"
msgstr ""
-#: chat.php:749 chat.php:1248
+#: index.php:801 index.php:1305 chat.php:801 chat.php:1305
msgid "Only members"
msgstr ""
-#: chat.php:754 chat.php:1251
+#: index.php:806 index.php:1308 chat.php:806 chat.php:1308
msgid "Disable chat"
msgstr ""
-#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229
+#: index.php:817 index.php:839 index.php:894 index.php:953 index.php:2288
+#: chat.php:817 chat.php:839 chat.php:894 chat.php:953 chat.php:2288
msgid "Disabled"
msgstr ""
-#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219
+#: index.php:822 index.php:882 index.php:958 index.php:2278 chat.php:822
+#: chat.php:882 chat.php:958 chat.php:2278
msgid "Enabled"
msgstr ""
-#: chat.php:792
+#: index.php:844 chat.php:844
msgid "As applicant"
msgstr ""
-#: chat.php:797
+#: index.php:849 chat.php:849
msgid "As member"
msgstr ""
-#: chat.php:800
+#: index.php:852 chat.php:852
msgid "System messages"
msgstr ""
-#: chat.php:822 chat.php:1053
+#: index.php:874 index.php:1110 chat.php:874 chat.php:1110
#, php-format
msgid ""
"The %s extension of PHP is required for this feature. Please install it "
"first."
msgstr ""
-#: chat.php:847
+#: index.php:899 chat.php:899
msgid "Simple"
msgstr ""
-#: chat.php:852
+#: index.php:904 chat.php:904
msgid "Moderate"
msgstr ""
-#: chat.php:857
+#: index.php:909 chat.php:909
+msgid "Hard"
+msgstr ""
+
+#: index.php:914 chat.php:914
msgid "Extreme"
msgstr ""
-#: chat.php:906 chat.php:1548 chat.php:1610
+#: index.php:963 index.php:1605 index.php:1667 chat.php:963 chat.php:1605
+#: chat.php:1667
msgid "Apply"
msgstr ""
-#: chat.php:910 chat.php:1050
+#: index.php:967 index.php:1107 chat.php:967 chat.php:1107
msgid "Backup and restore"
msgstr ""
-#: chat.php:912
+#: index.php:969 chat.php:969
msgid "Destroy chat"
msgstr ""
-#: chat.php:1057 chat.php:1066
+#: index.php:1114 index.php:1123 chat.php:1114 chat.php:1123
msgid "Settings"
msgstr "Ustawienia"
-#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575
-#: chat.php:1622
+#: index.php:1115 index.php:1124 index.php:1269 index.php:1595 index.php:1632
+#: index.php:1679 chat.php:1115 chat.php:1124 chat.php:1269 chat.php:1595
+#: chat.php:1632 chat.php:1679
msgid "Filter"
msgstr ""
-#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538
+#: index.php:1116 index.php:1125 index.php:1325 index.php:2600 chat.php:1116
+#: chat.php:1125 chat.php:1325 chat.php:2600
msgid "Members"
msgstr ""
-#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322
+#: index.php:1117 index.php:1126 index.php:2373 index.php:2381 chat.php:1117
+#: chat.php:1126 chat.php:2373 chat.php:2381
msgid "Notes"
msgstr ""
-#: chat.php:1061
+#: index.php:1118 chat.php:1118
msgid "Backup"
msgstr ""
-#: chat.php:1070
+#: index.php:1127 chat.php:1127
msgid "Restore"
msgstr ""
-#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260
+#: index.php:1131 index.php:1174 index.php:1212 index.php:1242 index.php:4342
+#: chat.php:1131 chat.php:1174 chat.php:1212 chat.php:1242 chat.php:4342
msgid "Go to the Setup-Page"
msgstr ""
-#: chat.php:1082 chat.php:1091 chat.php:1949
+#: index.php:1139 index.php:1148 index.php:2006 chat.php:1139 chat.php:1148
+#: chat.php:2006
msgid "Are you sure?"
msgstr ""
-#: chat.php:1083 chat.php:1092 chat.php:1956
+#: index.php:1140 index.php:1149 index.php:2013 chat.php:1140 chat.php:1149
+#: chat.php:2013
msgid "Yes"
msgstr ""
-#: chat.php:1084 chat.php:1093 chat.php:1963
+#: index.php:1141 index.php:1150 index.php:2020 chat.php:1141 chat.php:1150
+#: chat.php:2020
msgid "No"
msgstr ""
-#: chat.php:1101 chat.php:4259
+#: index.php:1158 index.php:4341 chat.php:1158 chat.php:4341
msgid "Superadmin Login"
msgstr ""
-#: chat.php:1102
+#: index.php:1159 chat.php:1159
msgid "Superadmin Nickname:"
msgstr ""
-#: chat.php:1103
+#: index.php:1160 chat.php:1160
msgid "Superadmin Password:"
msgstr ""
-#: chat.php:1104
+#: index.php:1161 chat.php:1161
msgid "Confirm Password:"
msgstr ""
-#: chat.php:1105
+#: index.php:1162 chat.php:1162
msgid "Initialise Chat"
msgstr ""
-#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439
+#: index.php:1163 index.php:1187 index.php:1213 index.php:2336 index.php:2498
+#: chat.php:1163 chat.php:1187 chat.php:1213 chat.php:2336 chat.php:2498
msgid "Change language:"
msgstr ""
-#: chat.php:1117
+#: index.php:1174 chat.php:1174
msgid "Database successfully updated!"
msgstr ""
-#: chat.php:1125 chat.php:1326 chat.php:2407
+#: index.php:1182 index.php:1383 index.php:2466 chat.php:1182 chat.php:1383
+#: chat.php:2466
msgid "Nickname:"
msgstr ""
-#: chat.php:1126 chat.php:1327 chat.php:2408
+#: index.php:1183 index.php:1384 index.php:2467 chat.php:1183 chat.php:1384
+#: chat.php:2467
msgid "Password:"
msgstr "Hasło:"
-#: chat.php:1128
+#: index.php:1185 chat.php:1185
msgid "Login"
msgstr "Zaloguj się"
-#: chat.php:1129
+#: index.php:1186 chat.php:1186
msgid "Forgot login?"
msgstr ""
-#: chat.php:1142 chat.php:1306
+#: index.php:1199 index.php:1363 chat.php:1199 chat.php:1363
msgid "Reset password"
msgstr ""
-#: chat.php:1150
+#: index.php:1207 chat.php:1207
#, php-format
msgid ""
"Successfully reset password for username %s. Please remove the password "
"reset define from the script again."
msgstr ""
-#: chat.php:1153
+#: index.php:1210 chat.php:1210
msgid ""
"Please modify the script and put the following at the bottom of it (change "
"the password). Then refresh this page: define('RESET_SUPERADMIN_PASSWORD', "
"'changeme');"
msgstr ""
-#: chat.php:1169 chat.php:1193 chat.php:1258 chat.php:1270 chat.php:1294
-#: chat.php:1308 chat.php:1316 chat.php:2145 chat.php:2153
+#: index.php:1226 index.php:1250 index.php:1315 index.php:1327 index.php:1351
+#: index.php:1365 index.php:1373 index.php:2204 index.php:2212 chat.php:1226
+#: chat.php:1250 chat.php:1315 chat.php:1327 chat.php:1351 chat.php:1365
+#: chat.php:1373 chat.php:2204 chat.php:2212
msgid "(choose)"
msgstr ""
-#: chat.php:1170
+#: index.php:1227 chat.php:1227
msgid "All guests"
msgstr ""
-#: chat.php:1182
+#: index.php:1239 chat.php:1239
msgid "Administrative functions"
msgstr ""
-#: chat.php:1188
+#: index.php:1245 chat.php:1245
msgid "Clean messages"
msgstr ""
-#: chat.php:1191
+#: index.php:1248 chat.php:1248
msgid "Whole room"
msgstr ""
-#: chat.php:1192
+#: index.php:1249 chat.php:1249
msgid "Selection"
msgstr ""
-#: chat.php:1193
+#: index.php:1250 chat.php:1250
msgid "Following nickname:"
msgstr ""
-#: chat.php:1200
+#: index.php:1257 chat.php:1257
msgid "Clean"
msgstr ""
-#: chat.php:1202
+#: index.php:1259 chat.php:1259
#, php-format
msgid "Kick Chatter (%d minutes)"
msgstr ""
-#: chat.php:1204
+#: index.php:1261 chat.php:1261
msgid "Kickmessage:"
msgstr ""
-#: chat.php:1205
+#: index.php:1262 chat.php:1262
msgid "Purge messages"
msgstr ""
-#: chat.php:1206 chat.php:1388 chat.php:1546 chat.php:1580 chat.php:1591
-#: chat.php:2042
+#: index.php:1263 index.php:1445 index.php:1603 index.php:1637 index.php:1648
+#: index.php:2101 chat.php:1263 chat.php:1445 chat.php:1603 chat.php:1637
+#: chat.php:1648 chat.php:2101
msgid "Kick"
msgstr ""
-#: chat.php:1208
+#: index.php:1265 chat.php:1265
msgid "Logout inactive Chatter"
msgstr ""
-#: chat.php:1212
+#: index.php:1269 chat.php:1269
msgid "View active sessions"
msgstr ""
-#: chat.php:1212 chat.php:1603
+#: index.php:1269 index.php:1660 chat.php:1269 chat.php:1660
msgid "Linkfilter"
msgstr ""
-#: chat.php:1217
+#: index.php:1274 chat.php:1274
msgid "View"
msgstr ""
-#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582
-#: chat.php:1626
+#: index.php:1280 index.php:1310 index.php:1361 index.php:1369 index.php:1639
+#: index.php:1683 chat.php:1280 chat.php:1310 chat.php:1361 chat.php:1369
+#: chat.php:1639 chat.php:1683
msgid "Change"
msgstr ""
-#: chat.php:1256
+#: index.php:1313 chat.php:1313
msgid "Register applicant"
msgstr ""
-#: chat.php:1264 chat.php:1322 chat.php:1328
+#: index.php:1321 index.php:1379 index.php:1385 chat.php:1321 chat.php:1379
+#: chat.php:1385
msgid "Register"
msgstr "Zarejestruj się"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Delete from database"
msgstr ""
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Deny access (!)"
msgstr ""
-#: chat.php:1296
+#: index.php:1353 chat.php:1353
msgid "Set to applicant (SG)"
msgstr ""
-#: chat.php:1298
+#: index.php:1355 chat.php:1355
msgid "Set to regular member"
msgstr ""
-#: chat.php:1299
+#: index.php:1356 chat.php:1356
msgid "Set to moderator (M)"
msgstr ""
-#: chat.php:1300
+#: index.php:1357 chat.php:1357
msgid "Set to supermod (SM)"
msgstr ""
-#: chat.php:1302
+#: index.php:1359 chat.php:1359
msgid "Set to admin (A)"
msgstr ""
-#: chat.php:1314
+#: index.php:1371 chat.php:1371
msgid "Register Guest"
msgstr ""
-#: chat.php:1324
+#: index.php:1381 chat.php:1381
msgid "Register new Member"
msgstr ""
-#: chat.php:1332 chat.php:1408 chat.php:1595 chat.php:1636 chat.php:1710
-#: chat.php:1924
+#: index.php:1389 index.php:1465 index.php:1652 index.php:1693 index.php:1767
+#: index.php:1981 chat.php:1389 chat.php:1465 chat.php:1652 chat.php:1693
+#: chat.php:1767 chat.php:1981
msgid "Reload"
msgstr ""
-#: chat.php:1345
+#: index.php:1402 chat.php:1402
msgid "Active Sessions"
msgstr ""
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "Nickname"
msgstr ""
-#: chat.php:1346
+#: index.php:1403 chat.php:1403
msgid "Timeout in"
msgstr ""
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "User-Agent"
msgstr ""
-#: chat.php:1350
+#: index.php:1407 chat.php:1407
msgid "IP-Address"
msgstr ""
-#: chat.php:1351
+#: index.php:1408 chat.php:1408
msgid "Actions"
msgstr ""
-#: chat.php:1393
+#: index.php:1450 chat.php:1450
msgid "Unban"
msgstr ""
-#: chat.php:1416
+#: index.php:1473 chat.php:1473
msgid "Incorrect regular expression!"
msgstr ""
-#: chat.php:1416 chat.php:1424
+#: index.php:1473 index.php:1481 chat.php:1473 chat.php:1481
#, php-format
msgid "Your match was as follows: %s"
msgstr ""
-#: chat.php:1424
+#: index.php:1481 chat.php:1481
msgid ""
"Your match was too long. You can use max. 255 characters. Try splitting it "
"up."
msgstr ""
-#: chat.php:1541 chat.php:1606
+#: index.php:1598 index.php:1663 chat.php:1598 chat.php:1663
msgid "Filter ID:"
msgstr ""
-#: chat.php:1542 chat.php:1607
+#: index.php:1599 index.php:1664 chat.php:1599 chat.php:1664
msgid "Match"
msgstr ""
-#: chat.php:1543 chat.php:1608
+#: index.php:1600 index.php:1665 chat.php:1600 chat.php:1665
msgid "Replace"
msgstr ""
-#: chat.php:1544 chat.php:1578 chat.php:1589
+#: index.php:1601 index.php:1635 index.php:1646 chat.php:1601 chat.php:1635
+#: chat.php:1646
msgid "Allow in PM"
msgstr ""
-#: chat.php:1545 chat.php:1579 chat.php:1590 chat.php:1609 chat.php:1625
-#: chat.php:1633
+#: index.php:1602 index.php:1636 index.php:1647 index.php:1666 index.php:1682
+#: index.php:1690 chat.php:1602 chat.php:1636 chat.php:1647 chat.php:1666
+#: chat.php:1682 chat.php:1690
msgid "Regex"
msgstr ""
-#: chat.php:1547 chat.php:1581 chat.php:1592
+#: index.php:1604 index.php:1638 index.php:1649 chat.php:1604 chat.php:1638
+#: chat.php:1649
msgid "Case sensitive"
msgstr ""
-#: chat.php:1586 chat.php:1630
+#: index.php:1643 index.php:1687 chat.php:1643 chat.php:1687
msgid "New filter:"
msgstr ""
-#: chat.php:1593 chat.php:1634
+#: index.php:1650 index.php:1691 chat.php:1650 chat.php:1691
msgid "Add"
msgstr ""
-#: chat.php:1691
+#: index.php:1748 chat.php:1748
msgid ""
"This chat uses frames. Please enable frames in your browser or use a "
"suitable one!"
msgstr ""
-#: chat.php:1691 chat.php:2370 chat.php:2457
+#: index.php:1748 index.php:2429 index.php:2516 chat.php:1748 chat.php:2429
+#: chat.php:2516
msgid "Back to the login page."
msgstr ""
-#: chat.php:1709
+#: index.php:1766 chat.php:1766
msgid "Bottom"
msgstr ""
-#: chat.php:1710
+#: index.php:1767 chat.php:1767
msgid "Manual refresh required"
msgstr ""
-#: chat.php:1726
+#: index.php:1783 chat.php:1783
msgid "Top"
msgstr ""
-#: chat.php:1734 chat.php:1940 chat.php:1942
+#: index.php:1791 index.php:1997 index.php:1999 chat.php:1791 chat.php:1997
+#: chat.php:1999
msgid "Delete selected messages"
msgstr ""
-#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281
+#: index.php:1818 index.php:1945 index.php:2160 index.php:2340 chat.php:1818
+#: chat.php:1945 chat.php:2160 chat.php:2340
msgid "Back to the chat."
msgstr ""
-#: chat.php:1774 chat.php:1791
+#: index.php:1831 index.php:1848 chat.php:1831 chat.php:1848
msgid "Admin notes"
msgstr ""
-#: chat.php:1777 chat.php:1788
+#: index.php:1834 index.php:1845 chat.php:1834 chat.php:1845
msgid "Staff notes"
msgstr ""
-#: chat.php:1811
+#: index.php:1868 chat.php:1868
msgid "Notes saved!"
msgstr ""
-#: chat.php:1835 chat.php:2122
+#: index.php:1892 index.php:2181 chat.php:1892 chat.php:2181
#, php-format
msgid "Last edited by %1$s at %2$s"
msgstr ""
-#: chat.php:1848
+#: index.php:1905 chat.php:1905
msgid "Save notes"
msgstr ""
-#: chat.php:1850
+#: index.php:1907 chat.php:1907
msgid "Revisions:"
msgstr ""
-#: chat.php:1853
+#: index.php:1910 chat.php:1910
msgid "Older"
msgstr ""
-#: chat.php:1857
+#: index.php:1914 chat.php:1914
msgid "Newer"
msgstr ""
-#: chat.php:1868 chat.php:1914
+#: index.php:1925 index.php:1971 chat.php:1925 chat.php:1971
msgid "Waiting room"
msgstr ""
-#: chat.php:1880
+#: index.php:1937 chat.php:1937
msgid "Allow checked"
msgstr ""
-#: chat.php:1881
+#: index.php:1938 chat.php:1938
msgid "Allow all"
msgstr ""
-#: chat.php:1882
+#: index.php:1939 chat.php:1939
msgid "Deny checked"
msgstr ""
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Deny all"
msgstr ""
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Send message to denied:"
msgstr ""
-#: chat.php:1884
+#: index.php:1941 chat.php:1941
msgid "Submit"
msgstr ""
-#: chat.php:1886
+#: index.php:1943 chat.php:1943
msgid "No more entry requests to approve."
msgstr ""
-#: chat.php:1916
+#: index.php:1973 chat.php:1973
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat in %2$d "
"seconds."
msgstr ""
-#: chat.php:1918
+#: index.php:1975 chat.php:1975
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat as soon, "
"as a moderator lets you in."
msgstr ""
-#: chat.php:1921
+#: index.php:1978 chat.php:1978
#, php-format
msgid ""
"If this page doesn't refresh every %d seconds, use the button below to "
"reload it manually!"
msgstr ""
-#: chat.php:1926 chat.php:2339
+#: index.php:1983 index.php:2398 chat.php:1983 chat.php:2398
msgid "Exit Chat"
msgstr ""
-#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430
+#: index.php:1986 index.php:2133 index.php:2144 index.php:2489 chat.php:1986
+#: chat.php:2133 chat.php:2144 chat.php:2489
msgid "Rules"
msgstr ""
-#: chat.php:1985
+#: index.php:2042 chat.php:2042
msgid "Send to"
msgstr ""
-#: chat.php:1990
+#: index.php:2047 chat.php:2047
msgid "All chatters"
msgstr ""
-#: chat.php:1996
+#: index.php:2053 chat.php:2053
msgid "Members only"
msgstr ""
-#: chat.php:2003
+#: index.php:2060 chat.php:2060
msgid "Staff only"
msgstr ""
-#: chat.php:2010
+#: index.php:2067 chat.php:2067
msgid "Admin only"
msgstr ""
-#: chat.php:2019
+#: index.php:2076 chat.php:2076
msgid "(offline)"
msgstr ""
-#: chat.php:2043
+#: index.php:2078 chat.php:2078
+msgid "(logging out)"
+msgstr ""
+
+#: index.php:2102 chat.php:2102
msgid "Also purge messages"
msgstr ""
-#: chat.php:2050
+#: index.php:2109 chat.php:2109
msgid "Delete last message"
msgstr ""
-#: chat.php:2055
+#: index.php:2114 chat.php:2114
msgid "Delete all messages"
msgstr ""
-#: chat.php:2057
+#: index.php:2116 chat.php:2116
msgid "Switch to single-line"
msgstr ""
-#: chat.php:2059
+#: index.php:2118 chat.php:2118
msgid "Switch to multi-line"
msgstr ""
-#: chat.php:2070
+#: index.php:2129 chat.php:2129
#, php-format
msgid "Welcome %s!"
msgstr ""
-#: chat.php:2071
+#: index.php:2130 chat.php:2130
#, php-format
msgid ""
"If this frame does not reload in %d seconds, you'll have to enable automatic "
@@ -957,11 +1006,11 @@ msgid ""
"bottom to refresh manually."
msgstr ""
-#: chat.php:2087
+#: index.php:2146 chat.php:2146
msgid "Help"
msgstr ""
-#: chat.php:2088
+#: index.php:2147 chat.php:2147
msgid ""
"All functions should be pretty much self-explaining, just use the buttons. "
"In your profile you can adjust the refresh rate and font colour, as well as "
@@ -969,622 +1018,639 @@ msgid ""
"you will be automatically logged out after a while."
msgstr ""
-#: chat.php:2090
+#: index.php:2149 chat.php:2149
msgid ""
"If you want to embed an image in your post, simply put [img] in front of "
"your image URL. Example: [img]http://example.com/images/file.jpg will embed "
"the image in your post."
msgstr ""
-#: chat.php:2093
+#: index.php:2152 chat.php:2152
msgid ""
"Members: You'll have some more options in your profile. You can adjust your "
"font face, change your password anytime and of course you can delete your "
"account."
msgstr ""
-#: chat.php:2095
+#: index.php:2154 chat.php:2154
msgid ""
"Moderators: Notice the Admin-button at the bottom. It'll bring up a page "
"where you can clean the room, kick chatters, view all active sessions and "
"disable guest access completely if needed."
msgstr ""
-#: chat.php:2097
+#: index.php:2156 chat.php:2156
msgid ""
"Admins: You'll be furthermore able to register guests, edit members and "
"register new nicknames."
msgstr ""
-#: chat.php:2135
+#: index.php:2194 chat.php:2194
msgid "Your Profile"
msgstr ""
-#: chat.php:2144
+#: index.php:2203 chat.php:2203
msgid "Don't ignore anymore"
msgstr ""
-#: chat.php:2152
+#: index.php:2211 chat.php:2211
msgid "Ignore"
msgstr ""
-#: chat.php:2163
+#: index.php:2222 chat.php:2222
#, php-format
msgid "Refresh rate (%1$d-%2$d seconds)"
msgstr ""
-#: chat.php:2167 chat.php:2170
+#: index.php:2226 index.php:2229 chat.php:2226 chat.php:2229
msgid "View examples"
msgstr ""
-#: chat.php:2174
+#: index.php:2233 chat.php:2233
msgid "Fontface"
msgstr ""
-#: chat.php:2175
+#: index.php:2234 chat.php:2234
msgid "Room Default"
msgstr ""
-#: chat.php:2188
+#: index.php:2247 chat.php:2247
msgid "Bold"
msgstr ""
-#: chat.php:2192
+#: index.php:2251 chat.php:2251
msgid "Italic"
msgstr ""
-#: chat.php:2196
+#: index.php:2255 chat.php:2255
msgid "Small"
msgstr ""
-#: chat.php:2199
+#: index.php:2258 chat.php:2258
msgid "Example for your chosen font"
msgstr ""
-#: chat.php:2203
+#: index.php:2262 chat.php:2262
msgid "Autoscroll (for old browsers or top-to-bottom sort)."
msgstr ""
-#: chat.php:2234
+#: index.php:2293 chat.php:2293
msgid "For everyone"
msgstr ""
-#: chat.php:2239
+#: index.php:2298 chat.php:2298
msgid "For members only"
msgstr ""
-#: chat.php:2244
+#: index.php:2303 chat.php:2303
msgid "For staff only"
msgstr ""
-#: chat.php:2248
+#: index.php:2307 chat.php:2307
msgid "Time zone"
msgstr ""
-#: chat.php:2261
+#: index.php:2320 chat.php:2320
msgid "Change Password"
msgstr ""
-#: chat.php:2263
+#: index.php:2322 chat.php:2322
msgid "Old password:"
msgstr ""
-#: chat.php:2264
+#: index.php:2323 chat.php:2323
msgid "New password:"
msgstr ""
-#: chat.php:2265
+#: index.php:2324 chat.php:2324
msgid "Confirm new password:"
msgstr ""
-#: chat.php:2268
+#: index.php:2327 chat.php:2327
msgid "Change Nickname"
msgstr ""
-#: chat.php:2269
+#: index.php:2328 chat.php:2328
msgid "New nickname:"
msgstr ""
-#: chat.php:2273
+#: index.php:2332 chat.php:2332
msgid "Save changes"
msgstr "Zapisz zmiany"
-#: chat.php:2275
+#: index.php:2334 chat.php:2334
msgid "Delete account"
msgstr "Usuń konto"
-#: chat.php:2301
+#: index.php:2360 chat.php:2360
msgid "Reload Post Box"
msgstr ""
-#: chat.php:2304
+#: index.php:2363 chat.php:2363
msgid "Reload Messages"
msgstr ""
-#: chat.php:2307
+#: index.php:2366 chat.php:2366
msgid "Profile"
msgstr ""
-#: chat.php:2311 chat.php:2528
+#: index.php:2370 index.php:2590 chat.php:2370 chat.php:2590
msgid "Admin"
msgstr "Admin"
-#: chat.php:2318
+#: index.php:2377 chat.php:2377
msgid "View public notes"
msgstr ""
-#: chat.php:2325
+#: index.php:2384 chat.php:2384
msgid "Clone"
msgstr ""
-#: chat.php:2334
+#: index.php:2393 chat.php:2393
msgid "Rearrange"
msgstr ""
-#: chat.php:2337
+#: index.php:2396 chat.php:2396
msgid "Rules & Help"
msgstr ""
-#: chat.php:2358 chat.php:2362
+#: index.php:2417 index.php:2421 chat.php:2417 chat.php:2421
msgid "File not found!"
msgstr ""
-#: chat.php:2370
+#: index.php:2429 chat.php:2429
#, php-format
msgid "Bye %s, visit again soon!"
msgstr ""
-#: chat.php:2377
+#: index.php:2436 chat.php:2436
msgid "Colourtable"
msgstr ""
-#: chat.php:2388
+#: index.php:2447 chat.php:2447
msgid "Back to your Profile"
msgstr ""
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "Repeat password to register"
msgstr ""
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "(optional)"
msgstr ""
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Guests, choose a colour:"
msgstr ""
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Random Colour"
msgstr ""
-#: chat.php:2421 chat.php:2435 chat.php:2569
+#: index.php:2480 index.php:2494 index.php:2631 chat.php:2480 chat.php:2494
+#: chat.php:2631
msgid "Sorry, currently members only!"
msgstr ""
-#: chat.php:2423 chat.php:2437
+#: index.php:2482 index.php:2496 chat.php:2482 chat.php:2496
msgid "Enter Chat"
msgstr ""
-#: chat.php:2457
+#: index.php:2516 chat.php:2516
#, php-format
msgid "Error: %s"
msgstr ""
-#: chat.php:2467
+#: index.php:2526 chat.php:2526
msgid "Fatal error"
msgstr ""
-#: chat.php:2470
+#: index.php:2529 chat.php:2529
#, php-format
msgid "Fatal error: %s"
msgstr ""
-#: chat.php:2482 chat.php:2693
+#: index.php:2541 index.php:2756 chat.php:2541 chat.php:2756
msgid "Failed login attempt(s)"
msgstr ""
-#: chat.php:2489
+#: index.php:2548 chat.php:2548
#, php-format
msgid "Read %d messages in your inbox"
msgstr ""
-#: chat.php:2498
+#: index.php:2557 chat.php:2557
#, php-format
msgid "%d new guests to approve"
msgstr ""
-#: chat.php:2530
+#: index.php:2577 chat.php:2577
+msgid "logging out"
+msgstr ""
+
+#: index.php:2592 chat.php:2592
msgid "Admin:"
msgstr ""
-#: chat.php:2533
+#: index.php:2595 chat.php:2595
msgid "Staff"
msgstr ""
-#: chat.php:2535
+#: index.php:2597 chat.php:2597
msgid "Staff:"
msgstr ""
-#: chat.php:2540
+#: index.php:2602 chat.php:2602
msgid "Members:"
msgstr ""
-#: chat.php:2542
+#: index.php:2604 chat.php:2604
msgid "Guests"
msgstr ""
-#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092
+#: index.php:2625 index.php:3063 index.php:3267 index.php:4172 chat.php:2625
+#: chat.php:3063 chat.php:3267 chat.php:4172
#, php-format
msgid ""
"Invalid nickname (%1$d characters maximum and has to match the regular "
"expression \"%2$s\")"
msgstr ""
-#: chat.php:2566 chat.php:2996 chat.php:3162 chat.php:4094
+#: index.php:2628 index.php:3066 index.php:3232 index.php:4174 chat.php:2628
+#: chat.php:3066 chat.php:3232 chat.php:4174
#, php-format
msgid ""
"Invalid password (At least %1$d characters and has to match the regular "
"expression \"%2$s\")"
msgstr ""
-#: chat.php:2574 chat.php:2739
+#: index.php:2636 index.php:2806 chat.php:2636 chat.php:2806
msgid "Wrong global Password!"
msgstr ""
-#: chat.php:2591 chat.php:2612
+#: index.php:2654 index.php:2675 chat.php:2654 chat.php:2675
msgid "Wrong Captcha"
msgstr ""
-#: chat.php:2596 chat.php:2604
+#: index.php:2659 index.php:2667 chat.php:2659 chat.php:2667
msgid "Captcha already used or timed out."
msgstr ""
-#: chat.php:2652
+#: index.php:2715 chat.php:2715
msgid "A user with this nickname is already logged in."
msgstr ""
-#: chat.php:2652 chat.php:2933 chat.php:3176
+#: index.php:2715 index.php:3003 index.php:3246 chat.php:2715 chat.php:3003
+#: chat.php:3246
msgid "Wrong Password!"
msgstr "Nieprawidłowe hasło!"
-#: chat.php:2696
+#: index.php:2759 chat.php:2759
msgid "Dismiss"
msgstr ""
-#: chat.php:2747 chat.php:3171 chat.php:4096
+#: index.php:2814 index.php:3241 index.php:4176 chat.php:2814 chat.php:3241
+#: chat.php:4176
msgid "Password confirmation does not match!"
msgstr ""
-#: chat.php:2859
+#: index.php:2854 chat.php:2854
+msgid "no kick message"
+msgstr ""
+
+#: index.php:2929 chat.php:2929
msgid "Invalid/expired session"
msgstr ""
-#: chat.php:2875 chat.php:3412
+#: index.php:2945 index.php:3483 chat.php:2945 chat.php:3483
msgid "You have been kicked!"
msgstr ""
-#: chat.php:2885
+#: index.php:2955 chat.php:2955
#, php-format
msgid "Currently %d chatter(s) in room:"
msgstr ""
-#: chat.php:2933
+#: index.php:3003 chat.php:3003
msgid "This nickname is a registered member."
msgstr ""
-#: chat.php:2960 chat.php:3001
+#: index.php:3030 index.php:3071 chat.php:3030 chat.php:3071
#, php-format
msgid "%s is already registered."
msgstr ""
-#: chat.php:2969 chat.php:2990
+#: index.php:3039 index.php:3060 chat.php:3039 chat.php:3060
#, php-format
msgid "Can't register %s"
msgstr ""
-#: chat.php:2978 chat.php:3023
+#: index.php:3048 index.php:3093 chat.php:3048 chat.php:3093
#, php-format
msgid "%s successfully registered."
msgstr ""
-#: chat.php:3031 chat.php:3036
+#: index.php:3101 index.php:3106 chat.php:3101 chat.php:3106
#, php-format
msgid "Can't change status of %s"
msgstr ""
-#: chat.php:3047
+#: index.php:3117 chat.php:3117
#, php-format
msgid "%s successfully deleted from database."
msgstr ""
-#: chat.php:3056
+#: index.php:3126 chat.php:3126
#, php-format
msgid "Status of %s successfully changed."
msgstr ""
-#: chat.php:3073
+#: index.php:3143 chat.php:3143
#, php-format
msgid "Successfully reset password for %s"
msgstr ""
-#: chat.php:3075
+#: index.php:3145 chat.php:3145
#, php-format
msgid "Can't reset password for %s"
msgstr ""
-#: chat.php:3190
+#: index.php:3260 chat.php:3260
msgid "Your profile has successfully been saved."
msgstr ""
-#: chat.php:3202
+#: index.php:3272 chat.php:3272
msgid "Nickname is already taken"
msgstr ""
-#: chat.php:3714
+#: index.php:3785 chat.php:3785
msgid "system message"
msgstr ""
-#: chat.php:3921
+#: index.php:4001 chat.php:4001
msgid "Beige"
msgstr ""
-#: chat.php:3922
+#: index.php:4002 chat.php:4002
msgid "Black"
msgstr ""
-#: chat.php:3923
+#: index.php:4003 chat.php:4003
msgid "Blue"
msgstr ""
-#: chat.php:3924
+#: index.php:4004 chat.php:4004
msgid "Blue violet"
msgstr ""
-#: chat.php:3925
+#: index.php:4005 chat.php:4005
msgid "Brown"
msgstr ""
-#: chat.php:3926
+#: index.php:4006 chat.php:4006
msgid "Cyan"
msgstr ""
-#: chat.php:3927
+#: index.php:4007 chat.php:4007
msgid "Dark blue"
msgstr ""
-#: chat.php:3928
+#: index.php:4008 chat.php:4008
msgid "Dark green"
msgstr ""
-#: chat.php:3929
+#: index.php:4009 chat.php:4009
msgid "Dark red"
msgstr ""
-#: chat.php:3930
+#: index.php:4010 chat.php:4010
msgid "Dark violet"
msgstr ""
-#: chat.php:3931
+#: index.php:4011 chat.php:4011
msgid "Sky blue"
msgstr ""
-#: chat.php:3932
+#: index.php:4012 chat.php:4012
msgid "Gold"
msgstr ""
-#: chat.php:3933
+#: index.php:4013 chat.php:4013
msgid "Grey"
msgstr ""
-#: chat.php:3934
+#: index.php:4014 chat.php:4014
msgid "Green"
msgstr ""
-#: chat.php:3935
+#: index.php:4015 chat.php:4015
msgid "Hot pink"
msgstr ""
-#: chat.php:3936
+#: index.php:4016 chat.php:4016
msgid "Indigo"
msgstr ""
-#: chat.php:3937
+#: index.php:4017 chat.php:4017
msgid "Light blue"
msgstr ""
-#: chat.php:3938
+#: index.php:4018 chat.php:4018
msgid "Light green"
msgstr ""
-#: chat.php:3939
+#: index.php:4019 chat.php:4019
msgid "Lime green"
msgstr ""
-#: chat.php:3940
+#: index.php:4020 chat.php:4020
msgid "Magenta"
msgstr ""
-#: chat.php:3941
+#: index.php:4021 chat.php:4021
msgid "Olive"
msgstr ""
-#: chat.php:3942
+#: index.php:4022 chat.php:4022
msgid "Orange"
msgstr ""
-#: chat.php:3943
+#: index.php:4023 chat.php:4023
msgid "Orange red"
msgstr ""
-#: chat.php:3944
+#: index.php:4024 chat.php:4024
msgid "Purple"
msgstr ""
-#: chat.php:3945
+#: index.php:4025 chat.php:4025
msgid "Red"
msgstr ""
-#: chat.php:3946
+#: index.php:4026 chat.php:4026
msgid "Royal blue"
msgstr ""
-#: chat.php:3947
+#: index.php:4027 chat.php:4027
msgid "Sea green"
msgstr ""
-#: chat.php:3948
+#: index.php:4028 chat.php:4028
msgid "Sienna"
msgstr ""
-#: chat.php:3949
+#: index.php:4029 chat.php:4029
msgid "Silver"
msgstr ""
-#: chat.php:3950
+#: index.php:4030 chat.php:4030
msgid "Tan"
msgstr ""
-#: chat.php:3951
+#: index.php:4031 chat.php:4031
msgid "Teal"
msgstr ""
-#: chat.php:3952
+#: index.php:4032 chat.php:4032
msgid "Violet"
msgstr ""
-#: chat.php:3953
+#: index.php:4033 chat.php:4033
msgid "White"
msgstr ""
-#: chat.php:3954
+#: index.php:4034 chat.php:4034
msgid "Yellow"
msgstr ""
-#: chat.php:3955
+#: index.php:4035 chat.php:4035
msgid "Yellow green"
msgstr ""
-#: chat.php:4077
+#: index.php:4157 chat.php:4157
msgid "Successfully destroyed chat"
msgstr ""
-#: chat.php:4086
+#: index.php:4166 chat.php:4166
msgid ""
"Database tables already exist! To continue, you have to delete these tables "
"manually first."
msgstr ""
-#: chat.php:4089
+#: index.php:4169 chat.php:4169
msgid "A Superadmin already exists!"
msgstr ""
-#: chat.php:4182 chat.php:4369
+#: index.php:4263 index.php:4451 chat.php:4263 chat.php:4451
#, php-format
msgid "%s - "
msgstr ""
-#: chat.php:4183 chat.php:4369
+#: index.php:4264 index.php:4451 chat.php:4264 chat.php:4451
#, php-format
msgid "[M] %s - "
msgstr ""
-#: chat.php:4184 chat.php:4369
+#: index.php:4265 index.php:4451 chat.php:4265 chat.php:4451
#, php-format
msgid "[Staff] %s - "
msgstr ""
-#: chat.php:4185 chat.php:4369
+#: index.php:4266 index.php:4451 chat.php:4266 chat.php:4451
#, php-format
msgid "[Admin] %s - "
msgstr ""
-#: chat.php:4186 chat.php:4369
+#: index.php:4267 index.php:4451 chat.php:4267 chat.php:4451
#, php-format
msgid "[%1$s to %2$s] - "
msgstr ""
-#: chat.php:4187
+#: index.php:4268 chat.php:4268
#, php-format
msgid "%s entered the chat."
msgstr ""
-#: chat.php:4188
+#: index.php:4269 chat.php:4269
#, php-format
msgid "%s left the chat."
msgstr ""
-#: chat.php:4189
+#: index.php:4270 chat.php:4270
#, php-format
msgid "%s is now a registered member."
msgstr ""
-#: chat.php:4190
+#: index.php:4271 chat.php:4271
#, php-format
msgid "%s is now a registered applicant."
msgstr ""
-#: chat.php:4191
+#: index.php:4272 chat.php:4272
#, php-format
-msgid "%s has been kicked."
+msgid "%1$s has been kicked: %2$s"
msgstr ""
-#: chat.php:4192
+#: index.php:4273 chat.php:4273
#, php-format
-msgid "%s have been kicked."
+msgid "%1$s have been kicked: %2$s"
msgstr ""
-#: chat.php:4193
-msgid "All guests have been kicked."
+#: index.php:4274 chat.php:4274
+#, php-format
+msgid "All guests have been kicked: %1$s"
msgstr ""
-#: chat.php:4194
+#: index.php:4275 chat.php:4275
#, php-format
msgid "%s has been cleaned."
msgstr ""
-#: chat.php:4202 chat.php:4396
+#: index.php:4283 index.php:4478 chat.php:4283 chat.php:4478
msgid "Temporarily disabled"
msgstr ""
-#: chat.php:4218 chat.php:4594
+#: index.php:4299 index.php:4676 chat.php:4299 chat.php:4676
msgid "A chat community"
msgstr ""
-#: chat.php:4256
+#: index.php:4338 chat.php:4338
msgid "Successfully registered!"
msgstr ""
-#: chat.php:4522 chat.php:4721 chat.php:4728
+#: index.php:4604 index.php:4807 index.php:4814 chat.php:4604 chat.php:4807
+#: chat.php:4814
msgid "No connection to database!"
msgstr ""
-#: chat.php:4531
+#: index.php:4613 chat.php:4613
msgid ""
"Note: Default CSS is now hardcoded and can be removed from the CSS setting"
msgstr ""
-#: chat.php:4611
+#: index.php:4697 chat.php:4697
#, php-format
msgid ""
"The %s extension of PHP is required for the encryption feature. Please "
"install it first or set the encrypted setting back to false."
msgstr ""
-#: chat.php:4684 chat.php:4689 chat.php:4694
+#: index.php:4770 index.php:4775 index.php:4780 chat.php:4770 chat.php:4775
+#: chat.php:4780
#, php-format
msgid ""
"The %s extension of PHP is required for the selected database driver. Please "
"install it first."
msgstr ""
-#: chat.php:4707 chat.php:4715 chat.php:4719 chat.php:4726
+#: index.php:4793 index.php:4801 index.php:4805 index.php:4812 chat.php:4793
+#: chat.php:4801 chat.php:4805 chat.php:4812
msgid ""
"No connection to database, please create a database and edit the script to "
"use the correct database with given username and password!"
msgstr ""
-#: chat.php:4734
+#: index.php:4820 chat.php:4820
msgid ""
"The memcached extension of PHP is required for the caching feature. Please "
"install it first or set the memcached setting back to false."
diff --git a/locale/pt_PT/LC_MESSAGES/le-chat-php.po b/locale/pt_PT/LC_MESSAGES/le-chat-php.po
index 8d932ef..6dcc545 100644
--- a/locale/pt_PT/LC_MESSAGES/le-chat-php.po
+++ b/locale/pt_PT/LC_MESSAGES/le-chat-php.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-01-18 21:32+0100\n"
+"POT-Creation-Date: 2025-03-29 17:02+0100\n"
"PO-Revision-Date: 2023-01-26 18:54+0000\n"
"Last-Translator: Weblate Admin \n"
"Language-Team: Portuguese (Portugal) Date "
"formating"
msgstr ""
"Formatação da data"
+"php#refsect1-function.date-parameters\" rel=\"noopener "
+"noreferrer\">Formatação da data"
-#: chat.php:336
+#: index.php:348 chat.php:348
msgid "Characters used in Captcha"
msgstr "Caracteres usados no Captcha"
-#: chat.php:337
+#: index.php:349 chat.php:349
msgid "Custom redirection script"
msgstr "Personalizar script de redirecionamento"
-#: chat.php:338
+#: index.php:350 chat.php:350
msgid "Chat name"
msgstr "Nome do chat"
-#: chat.php:339
+#: index.php:351 chat.php:351
msgid "Send mail using this address"
msgstr "Envie o e-mail do endereço seguinte"
-#: chat.php:340
+#: index.php:352 chat.php:352
msgid "Send mail to this address"
msgstr "Envie o e-mail ao endereço seguinte"
-#: chat.php:341
+#: index.php:353 chat.php:353
msgid "Nickname regex"
msgstr "Expressão regular da nickname"
-#: chat.php:342
+#: index.php:354 chat.php:354
msgid "Password regex"
msgstr "Expressão regular da senha"
-#: chat.php:343
+#: index.php:355 chat.php:355
msgid "Link to external CSS file (on your own server)"
msgstr "Hiperligação ao arquivo externo CSS (em seu próprio servidor)"
-#: chat.php:344
+#: index.php:356 chat.php:356
msgid "Meta description (best 50 - 160 characters for SEO)"
msgstr ""
"Meta descrição (melhores 50 - 160 caracteras por otimização para motores de "
"busca)"
-#: chat.php:345
+#: index.php:357 chat.php:357
+msgid "Show this text when a user's logout is delayed"
+msgstr ""
+
+#: index.php:358 chat.php:358
msgid "Prepend this text to system messages"
msgstr "Este texto precede mensagens do sistema"
-#: chat.php:348 chat.php:728 chat.php:1225
+#: index.php:361 index.php:780 index.php:1282 chat.php:361 chat.php:780
+#: chat.php:1282
msgid "Change Guestaccess"
msgstr "Mudar Acesso do convidados"
-#: chat.php:349
+#: index.php:362 chat.php:362
msgid "Enable global Password"
msgstr ""
-#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433
+#: index.php:363 index.php:810 index.php:2474 index.php:2492 chat.php:363
+#: chat.php:810 chat.php:2474 chat.php:2492
msgid "Global Password:"
msgstr "Senha global:"
-#: chat.php:351 chat.php:819
+#: index.php:364 index.php:871 chat.php:364 chat.php:871
msgid "Captcha"
msgstr "Captcha"
-#: chat.php:352 chat.php:775 chat.php:835
+#: index.php:365 index.php:827 index.php:887 chat.php:365 chat.php:827
+#: chat.php:887
msgid "Only for guests"
msgstr "Apenas para convidadosSimples"
-#: chat.php:353 chat.php:1220
+#: index.php:366 index.php:1277 chat.php:366 chat.php:1277
msgid "Topic"
msgstr "Assunto"
-#: chat.php:354 chat.php:781
+#: index.php:367 index.php:833 chat.php:367 chat.php:833
msgid "Let guests register themselves"
msgstr "Permitir que os convidados se registrem"
-#: chat.php:355 chat.php:862
+#: index.php:368 index.php:919 chat.php:368 chat.php:919
msgid "Default time zone"
msgstr "Fuso horário padrão"
-#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259
+#: index.php:581 index.php:1157 index.php:4158 index.php:4341 chat.php:581
+#: chat.php:1157 chat.php:4158 chat.php:4341
msgid "Initial Setup"
msgstr "Configuração inicial"
-#: chat.php:588
+#: index.php:601 chat.php:601
#, php-format
msgid "Redirecting to: %s"
msgstr "Redirecionando para: %s"
-#: chat.php:595
+#: index.php:608 chat.php:608
#, php-format
msgid ""
"Dangerous non-http link requested, copy paste this link if you are really "
@@ -379,78 +393,81 @@ msgstr ""
"Hiperligação não http perigoso solicitado, copie e cole esta hiperligação se "
"você tiver certeza: %s"
-#: chat.php:597
+#: index.php:610 chat.php:610
#, php-format
msgid "Non-http link requested: %s"
msgstr "Link não http solicitado: %s"
-#: chat.php:599
+#: index.php:612 chat.php:612
#, php-format
msgid "If it's not working, try this one: %s"
msgstr "Se não estiver funcionando, tente este: %s"
-#: chat.php:609
+#: index.php:622 chat.php:622
msgid "Access denied"
msgstr "Acesso negado"
-#: chat.php:609
+#: index.php:622 chat.php:622
#, php-format
msgid "You are logged in as %s and don't have access to this section."
msgstr "Você está logado como %s e não tem acesso a esta seção."
-#: chat.php:611 chat.php:915 chat.php:1211 chat.php:1393
+#: index.php:624 index.php:972 index.php:1268 index.php:1450 chat.php:624
+#: chat.php:972 chat.php:1268 chat.php:1450
msgid "Logout"
msgstr "Terminar sessão"
-#: chat.php:636
+#: index.php:649 chat.php:649
msgid "Copy:"
msgstr "Copiar:"
-#: chat.php:724
+#: index.php:776 chat.php:776
msgid "Chat Setup"
msgstr "Configuração do Chat"
-#: chat.php:734 chat.php:1233
+#: index.php:786 index.php:1290 chat.php:786 chat.php:1290
msgid "Allow"
msgstr "Permitir"
-#: chat.php:739 chat.php:1238
+#: index.php:791 index.php:1295 chat.php:791 chat.php:1295
msgid "Allow with waitingroom"
msgstr "Permitir com sala de espera"
-#: chat.php:744 chat.php:1243
+#: index.php:796 index.php:1300 chat.php:796 chat.php:1300
msgid "Require moderator approval"
msgstr "Requer aprovação do moderador"
-#: chat.php:749 chat.php:1248
+#: index.php:801 index.php:1305 chat.php:801 chat.php:1305
msgid "Only members"
msgstr "Apenas membros"
-#: chat.php:754 chat.php:1251
+#: index.php:806 index.php:1308 chat.php:806 chat.php:1308
msgid "Disable chat"
msgstr "Desativar chat"
-#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229
+#: index.php:817 index.php:839 index.php:894 index.php:953 index.php:2288
+#: chat.php:817 chat.php:839 chat.php:894 chat.php:953 chat.php:2288
msgid "Disabled"
msgstr "Desativado"
-#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219
+#: index.php:822 index.php:882 index.php:958 index.php:2278 chat.php:822
+#: chat.php:882 chat.php:958 chat.php:2278
msgid "Enabled"
msgstr "Ativado"
-#: chat.php:792
+#: index.php:844 chat.php:844
msgid "As applicant"
msgstr "Como convidado"
-#: chat.php:797
+#: index.php:849 chat.php:849
msgid "As member"
msgstr "Como membro"
-#: chat.php:800
+#: index.php:852 chat.php:852
msgid "System messages"
msgstr "Mensagens do sistema"
-#: chat.php:822 chat.php:1053
+#: index.php:874 index.php:1110 chat.php:874 chat.php:1110
#, php-format
msgid ""
"The %s extension of PHP is required for this feature. Please install it "
@@ -459,120 +476,135 @@ msgstr ""
"La biblioteca de extensão %s da PHP é obrigada por usando esta feição. Por "
"favor instalar isso primeiramente."
-#: chat.php:847
+#: index.php:899 chat.php:899
msgid "Simple"
msgstr "Simples"
-#: chat.php:852
+#: index.php:904 chat.php:904
msgid "Moderate"
msgstr "Médio"
-#: chat.php:857
+#: index.php:909 chat.php:909
+msgid "Hard"
+msgstr ""
+
+#: index.php:914 chat.php:914
msgid "Extreme"
msgstr "Extremo"
-#: chat.php:906 chat.php:1548 chat.php:1610
+#: index.php:963 index.php:1605 index.php:1667 chat.php:963 chat.php:1605
+#: chat.php:1667
msgid "Apply"
msgstr "Aplicar"
-#: chat.php:910 chat.php:1050
+#: index.php:967 index.php:1107 chat.php:967 chat.php:1107
msgid "Backup and restore"
msgstr "Backup e restauração"
-#: chat.php:912
+#: index.php:969 chat.php:969
msgid "Destroy chat"
msgstr "Destruir chat"
-#: chat.php:1057 chat.php:1066
+#: index.php:1114 index.php:1123 chat.php:1114 chat.php:1123
msgid "Settings"
msgstr "Configurações"
-#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575
-#: chat.php:1622
+#: index.php:1115 index.php:1124 index.php:1269 index.php:1595 index.php:1632
+#: index.php:1679 chat.php:1115 chat.php:1124 chat.php:1269 chat.php:1595
+#: chat.php:1632 chat.php:1679
msgid "Filter"
msgstr "Filtro"
-#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538
+#: index.php:1116 index.php:1125 index.php:1325 index.php:2600 chat.php:1116
+#: chat.php:1125 chat.php:1325 chat.php:2600
msgid "Members"
msgstr "Membros"
-#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322
+#: index.php:1117 index.php:1126 index.php:2373 index.php:2381 chat.php:1117
+#: chat.php:1126 chat.php:2373 chat.php:2381
msgid "Notes"
msgstr "Notas"
-#: chat.php:1061
+#: index.php:1118 chat.php:1118
msgid "Backup"
msgstr "Backup"
-#: chat.php:1070
+#: index.php:1127 chat.php:1127
msgid "Restore"
msgstr "Restauração"
-#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260
+#: index.php:1131 index.php:1174 index.php:1212 index.php:1242 index.php:4342
+#: chat.php:1131 chat.php:1174 chat.php:1212 chat.php:1242 chat.php:4342
msgid "Go to the Setup-Page"
msgstr "Ir para a página de configuração"
-#: chat.php:1082 chat.php:1091 chat.php:1949
+#: index.php:1139 index.php:1148 index.php:2006 chat.php:1139 chat.php:1148
+#: chat.php:2006
msgid "Are you sure?"
msgstr "Você tem certeza?"
-#: chat.php:1083 chat.php:1092 chat.php:1956
+#: index.php:1140 index.php:1149 index.php:2013 chat.php:1140 chat.php:1149
+#: chat.php:2013
msgid "Yes"
msgstr "Sim"
-#: chat.php:1084 chat.php:1093 chat.php:1963
+#: index.php:1141 index.php:1150 index.php:2020 chat.php:1141 chat.php:1150
+#: chat.php:2020
msgid "No"
msgstr "Não"
-#: chat.php:1101 chat.php:4259
+#: index.php:1158 index.php:4341 chat.php:1158 chat.php:4341
msgid "Superadmin Login"
msgstr "Superadmin Login"
-#: chat.php:1102
+#: index.php:1159 chat.php:1159
msgid "Superadmin Nickname:"
msgstr "Nickname do Superadmin:"
-#: chat.php:1103
+#: index.php:1160 chat.php:1160
msgid "Superadmin Password:"
msgstr "Senha do Superadmin:"
-#: chat.php:1104
+#: index.php:1161 chat.php:1161
msgid "Confirm Password:"
msgstr "Confirmar senha:"
-#: chat.php:1105
+#: index.php:1162 chat.php:1162
msgid "Initialise Chat"
msgstr "Inicializar Chat"
-#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439
+#: index.php:1163 index.php:1187 index.php:1213 index.php:2336 index.php:2498
+#: chat.php:1163 chat.php:1187 chat.php:1213 chat.php:2336 chat.php:2498
msgid "Change language:"
msgstr "Mudar idioma:"
-#: chat.php:1117
+#: index.php:1174 chat.php:1174
msgid "Database successfully updated!"
msgstr "Banco de dados atualizado com sucesso!"
-#: chat.php:1125 chat.php:1326 chat.php:2407
+#: index.php:1182 index.php:1383 index.php:2466 chat.php:1182 chat.php:1383
+#: chat.php:2466
msgid "Nickname:"
msgstr "Nickname:"
-#: chat.php:1126 chat.php:1327 chat.php:2408
+#: index.php:1183 index.php:1384 index.php:2467 chat.php:1183 chat.php:1384
+#: chat.php:2467
msgid "Password:"
msgstr "Senha:"
-#: chat.php:1128
+#: index.php:1185 chat.php:1185
msgid "Login"
msgstr "Login"
-#: chat.php:1129
+#: index.php:1186 chat.php:1186
msgid "Forgot login?"
msgstr "Esqueceu o login?"
-#: chat.php:1142 chat.php:1306
+#: index.php:1199 index.php:1363 chat.php:1199 chat.php:1363
msgid "Reset password"
msgstr "Redefinir senha"
-#: chat.php:1150
+#: index.php:1207 chat.php:1207
#, php-format
msgid ""
"Successfully reset password for username %s. Please remove the password "
@@ -581,7 +613,7 @@ msgstr ""
"Senha redefinida com sucesso para o nome de usuário %s. Remova a definição "
"de redefinição de senha do script novamente."
-#: chat.php:1153
+#: index.php:1210 chat.php:1210
msgid ""
"Please modify the script and put the following at the bottom of it (change "
"the password). Then refresh this page: define('RESET_SUPERADMIN_PASSWORD', "
@@ -591,165 +623,171 @@ msgstr ""
"Recarregue esta página depois.: define('RESET_SUPERADMIN_PASSWORD', "
"'mudar_esta_senha');"
-#: chat.php:1169 chat.php:1193 chat.php:1258 chat.php:1270 chat.php:1294
-#: chat.php:1308 chat.php:1316 chat.php:2145 chat.php:2153
+#: index.php:1226 index.php:1250 index.php:1315 index.php:1327 index.php:1351
+#: index.php:1365 index.php:1373 index.php:2204 index.php:2212 chat.php:1226
+#: chat.php:1250 chat.php:1315 chat.php:1327 chat.php:1351 chat.php:1365
+#: chat.php:1373 chat.php:2204 chat.php:2212
msgid "(choose)"
msgstr "(escolher)"
-#: chat.php:1170
+#: index.php:1227 chat.php:1227
msgid "All guests"
msgstr "Todos os convidados"
-#: chat.php:1182
+#: index.php:1239 chat.php:1239
msgid "Administrative functions"
msgstr "Funções administrativas"
-#: chat.php:1188
+#: index.php:1245 chat.php:1245
msgid "Clean messages"
msgstr "Limpar mensagens"
-#: chat.php:1191
+#: index.php:1248 chat.php:1248
msgid "Whole room"
msgstr "Sala inteira"
-#: chat.php:1192
+#: index.php:1249 chat.php:1249
msgid "Selection"
msgstr "Selecionar"
-#: chat.php:1193
+#: index.php:1250 chat.php:1250
msgid "Following nickname:"
msgstr "Seguinte nickname:"
-#: chat.php:1200
+#: index.php:1257 chat.php:1257
msgid "Clean"
msgstr "Limpar"
-#: chat.php:1202
+#: index.php:1259 chat.php:1259
#, php-format
msgid "Kick Chatter (%d minutes)"
msgstr "Expulsar usuário (%d minutos)"
-#: chat.php:1204
+#: index.php:1261 chat.php:1261
msgid "Kickmessage:"
msgstr "Mensagem da expulsão:"
-#: chat.php:1205
+#: index.php:1262 chat.php:1262
msgid "Purge messages"
msgstr "Limpar mensagens"
-#: chat.php:1206 chat.php:1388 chat.php:1546 chat.php:1580 chat.php:1591
-#: chat.php:2042
+#: index.php:1263 index.php:1445 index.php:1603 index.php:1637 index.php:1648
+#: index.php:2101 chat.php:1263 chat.php:1445 chat.php:1603 chat.php:1637
+#: chat.php:1648 chat.php:2101
msgid "Kick"
msgstr "Expulsar"
-#: chat.php:1208
+#: index.php:1265 chat.php:1265
msgid "Logout inactive Chatter"
msgstr "Terminar sessão da pessoa inativa"
-#: chat.php:1212
+#: index.php:1269 chat.php:1269
msgid "View active sessions"
msgstr "Ver sessões ativas"
-#: chat.php:1212 chat.php:1603
+#: index.php:1269 index.php:1660 chat.php:1269 chat.php:1660
msgid "Linkfilter"
msgstr "Filtro das hiperligações"
-#: chat.php:1217
+#: index.php:1274 chat.php:1274
msgid "View"
msgstr "Ver"
-#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582
-#: chat.php:1626
+#: index.php:1280 index.php:1310 index.php:1361 index.php:1369 index.php:1639
+#: index.php:1683 chat.php:1280 chat.php:1310 chat.php:1361 chat.php:1369
+#: chat.php:1639 chat.php:1683
msgid "Change"
msgstr "Alterar"
-#: chat.php:1256
+#: index.php:1313 chat.php:1313
msgid "Register applicant"
msgstr "Registrar candidato"
-#: chat.php:1264 chat.php:1322 chat.php:1328
+#: index.php:1321 index.php:1379 index.php:1385 chat.php:1321 chat.php:1379
+#: chat.php:1385
msgid "Register"
msgstr "Registrar"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Delete from database"
msgstr "Excluir do banco de dados"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Deny access (!)"
msgstr "Negar acesso (!)"
-#: chat.php:1296
+#: index.php:1353 chat.php:1353
msgid "Set to applicant (SG)"
msgstr "Definir como candidato (SG)"
-#: chat.php:1298
+#: index.php:1355 chat.php:1355
msgid "Set to regular member"
msgstr "Definir como membro regular"
-#: chat.php:1299
+#: index.php:1356 chat.php:1356
msgid "Set to moderator (M)"
msgstr "Definir como moderador (M)"
-#: chat.php:1300
+#: index.php:1357 chat.php:1357
msgid "Set to supermod (SM)"
msgstr "Definir como supermod (SM)"
-#: chat.php:1302
+#: index.php:1359 chat.php:1359
msgid "Set to admin (A)"
msgstr "Definir como administrador (A)"
-#: chat.php:1314
+#: index.php:1371 chat.php:1371
msgid "Register Guest"
msgstr "Registrar convidado"
-#: chat.php:1324
+#: index.php:1381 chat.php:1381
msgid "Register new Member"
msgstr "Registrar novo Membro"
-#: chat.php:1332 chat.php:1408 chat.php:1595 chat.php:1636 chat.php:1710
-#: chat.php:1924
+#: index.php:1389 index.php:1465 index.php:1652 index.php:1693 index.php:1767
+#: index.php:1981 chat.php:1389 chat.php:1465 chat.php:1652 chat.php:1693
+#: chat.php:1767 chat.php:1981
msgid "Reload"
msgstr "Recarregar"
-#: chat.php:1345
+#: index.php:1402 chat.php:1402
msgid "Active Sessions"
msgstr "Sessões ativas"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "Nickname"
msgstr "Nickname"
-#: chat.php:1346
+#: index.php:1403 chat.php:1403
msgid "Timeout in"
msgstr "Tempo restante"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "User-Agent"
msgstr "User-Agent"
-#: chat.php:1350
+#: index.php:1407 chat.php:1407
msgid "IP-Address"
msgstr "Endereço de IP"
-#: chat.php:1351
+#: index.php:1408 chat.php:1408
msgid "Actions"
msgstr "Ações"
-#: chat.php:1393
+#: index.php:1450 chat.php:1450
msgid "Unban"
msgstr "Permitir"
-#: chat.php:1416
+#: index.php:1473 chat.php:1473
msgid "Incorrect regular expression!"
msgstr "Expressão regular incorreta!"
-#: chat.php:1416 chat.php:1424
+#: index.php:1473 index.php:1481 chat.php:1473 chat.php:1481
#, php-format
msgid "Your match was as follows: %s"
msgstr "O texto correspondente é o seguinte: %s"
-#: chat.php:1424
+#: index.php:1481 chat.php:1481
msgid ""
"Your match was too long. You can use max. 255 characters. Try splitting it "
"up."
@@ -757,40 +795,43 @@ msgstr ""
"O texto correspondente é muito longo. Você pode usar de 255 caracteres ou "
"menos. Você pode tentar dividi-lo."
-#: chat.php:1541 chat.php:1606
+#: index.php:1598 index.php:1663 chat.php:1598 chat.php:1663
msgid "Filter ID:"
msgstr "Número do filtro:"
-#: chat.php:1542 chat.php:1607
+#: index.php:1599 index.php:1664 chat.php:1599 chat.php:1664
msgid "Match"
msgstr "Match"
-#: chat.php:1543 chat.php:1608
+#: index.php:1600 index.php:1665 chat.php:1600 chat.php:1665
msgid "Replace"
msgstr "Substituir"
-#: chat.php:1544 chat.php:1578 chat.php:1589
+#: index.php:1601 index.php:1635 index.php:1646 chat.php:1601 chat.php:1635
+#: chat.php:1646
msgid "Allow in PM"
msgstr "Permitir MP"
-#: chat.php:1545 chat.php:1579 chat.php:1590 chat.php:1609 chat.php:1625
-#: chat.php:1633
+#: index.php:1602 index.php:1636 index.php:1647 index.php:1666 index.php:1682
+#: index.php:1690 chat.php:1602 chat.php:1636 chat.php:1647 chat.php:1666
+#: chat.php:1682 chat.php:1690
msgid "Regex"
msgstr "Expressão regular"
-#: chat.php:1547 chat.php:1581 chat.php:1592
+#: index.php:1604 index.php:1638 index.php:1649 chat.php:1604 chat.php:1638
+#: chat.php:1649
msgid "Case sensitive"
msgstr "Sensível à caixa das letras"
-#: chat.php:1586 chat.php:1630
+#: index.php:1643 index.php:1687 chat.php:1643 chat.php:1687
msgid "New filter:"
msgstr "Novo filtro:"
-#: chat.php:1593 chat.php:1634
+#: index.php:1650 index.php:1691 chat.php:1650 chat.php:1691
msgid "Add"
msgstr "Adicionar"
-#: chat.php:1691
+#: index.php:1748 chat.php:1748
msgid ""
"This chat uses frames. Please enable frames in your browser or use a "
"suitable one!"
@@ -798,96 +839,99 @@ msgstr ""
"Esse chat usa frames. Por favor, habilite os frames em seu navegador "
"ou use um adequado!"
-#: chat.php:1691 chat.php:2370 chat.php:2457
+#: index.php:1748 index.php:2429 index.php:2516 chat.php:1748 chat.php:2429
+#: chat.php:2516
msgid "Back to the login page."
msgstr "Voltar para a página de login."
-#: chat.php:1709
+#: index.php:1766 chat.php:1766
msgid "Bottom"
msgstr "Base"
-#: chat.php:1710
+#: index.php:1767 chat.php:1767
msgid "Manual refresh required"
msgstr "Recarregar a página manualmente"
-#: chat.php:1726
+#: index.php:1783 chat.php:1783
msgid "Top"
msgstr "Topo"
-#: chat.php:1734 chat.php:1940 chat.php:1942
+#: index.php:1791 index.php:1997 index.php:1999 chat.php:1791 chat.php:1997
+#: chat.php:1999
msgid "Delete selected messages"
msgstr "Excluir mensagens selecionadas"
-#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281
+#: index.php:1818 index.php:1945 index.php:2160 index.php:2340 chat.php:1818
+#: chat.php:1945 chat.php:2160 chat.php:2340
msgid "Back to the chat."
msgstr "Voltar para o chat."
-#: chat.php:1774 chat.php:1791
+#: index.php:1831 index.php:1848 chat.php:1831 chat.php:1848
msgid "Admin notes"
msgstr "Notas dos administradores"
-#: chat.php:1777 chat.php:1788
+#: index.php:1834 index.php:1845 chat.php:1834 chat.php:1845
msgid "Staff notes"
msgstr "Notas do equipe"
-#: chat.php:1811
+#: index.php:1868 chat.php:1868
msgid "Notes saved!"
msgstr "Notas salvadas!"
-#: chat.php:1835 chat.php:2122
+#: index.php:1892 index.php:2181 chat.php:1892 chat.php:2181
#, php-format
msgid "Last edited by %1$s at %2$s"
msgstr "Última edição por %1$s em %2$s"
-#: chat.php:1848
+#: index.php:1905 chat.php:1905
msgid "Save notes"
msgstr "Salvar Notas"
-#: chat.php:1850
+#: index.php:1907 chat.php:1907
msgid "Revisions:"
msgstr "Revisões:"
-#: chat.php:1853
+#: index.php:1910 chat.php:1910
msgid "Older"
msgstr "Mais velho"
-#: chat.php:1857
+#: index.php:1914 chat.php:1914
msgid "Newer"
msgstr "Mais recente"
-#: chat.php:1868 chat.php:1914
+#: index.php:1925 index.php:1971 chat.php:1925 chat.php:1971
msgid "Waiting room"
msgstr "Sala de espera"
-#: chat.php:1880
+#: index.php:1937 chat.php:1937
msgid "Allow checked"
msgstr "Permitir selecionado"
-#: chat.php:1881
+#: index.php:1938 chat.php:1938
msgid "Allow all"
msgstr "Permitir todos"
-#: chat.php:1882
+#: index.php:1939 chat.php:1939
msgid "Deny checked"
msgstr "Negar selecionado"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Deny all"
msgstr "Negar todos"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Send message to denied:"
msgstr "Enviar mensagem para negado:"
-#: chat.php:1884
+#: index.php:1941 chat.php:1941
msgid "Submit"
msgstr "Enviar"
-#: chat.php:1886
+#: index.php:1943 chat.php:1943
msgid "No more entry requests to approve."
msgstr "Não há mais solicitações de entrada para aprovar."
-#: chat.php:1916
+#: index.php:1973 chat.php:1973
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat in %2$d "
@@ -896,7 +940,7 @@ msgstr ""
"Bem-vindo %1$s, seu login foi atrasado, você pode acessar o chat em %2$d "
"segundos."
-#: chat.php:1918
+#: index.php:1975 chat.php:1975
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat as soon, "
@@ -905,7 +949,7 @@ msgstr ""
"Bem-vindo %1$s, seu login foi atrasado, você pode acessar o chat assim que "
"um moderador permitir que você entre."
-#: chat.php:1921
+#: index.php:1978 chat.php:1978
#, php-format
msgid ""
"If this page doesn't refresh every %d seconds, use the button below to "
@@ -914,64 +958,69 @@ msgstr ""
"Se esta página não atualizar a cada %d segundos, use o botão abaixo para "
"recarregá-la manualmente!"
-#: chat.php:1926 chat.php:2339
+#: index.php:1983 index.php:2398 chat.php:1983 chat.php:2398
msgid "Exit Chat"
msgstr "Sair do chat"
-#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430
+#: index.php:1986 index.php:2133 index.php:2144 index.php:2489 chat.php:1986
+#: chat.php:2133 chat.php:2144 chat.php:2489
msgid "Rules"
msgstr "Regras"
-#: chat.php:1985
+#: index.php:2042 chat.php:2042
msgid "Send to"
msgstr "Enviar para"
-#: chat.php:1990
+#: index.php:2047 chat.php:2047
msgid "All chatters"
msgstr "Todos"
-#: chat.php:1996
+#: index.php:2053 chat.php:2053
msgid "Members only"
msgstr "Apenas membros"
-#: chat.php:2003
+#: index.php:2060 chat.php:2060
msgid "Staff only"
msgstr "Apenas equipe"
-#: chat.php:2010
+#: index.php:2067 chat.php:2067
msgid "Admin only"
msgstr "Apenas administradores"
-#: chat.php:2019
+#: index.php:2076 chat.php:2076
msgid "(offline)"
msgstr "(offline)"
-#: chat.php:2043
+#: index.php:2078 chat.php:2078
+msgid "(logging out)"
+msgstr ""
+
+#: index.php:2102 chat.php:2102
msgid "Also purge messages"
msgstr "Também limpar mensagens"
-#: chat.php:2050
+#: index.php:2109 chat.php:2109
msgid "Delete last message"
msgstr "Apagar a última mensagem"
-#: chat.php:2055
+#: index.php:2114 chat.php:2114
msgid "Delete all messages"
msgstr "Apagar todas as mensagens"
-#: chat.php:2057
+#: index.php:2116 chat.php:2116
msgid "Switch to single-line"
msgstr "Mudar para linha única"
-#: chat.php:2059
+#: index.php:2118 chat.php:2118
msgid "Switch to multi-line"
msgstr "Mudar para multilinhas"
-#: chat.php:2070
+#: index.php:2129 chat.php:2129
#, php-format
msgid "Welcome %s!"
msgstr "Bem-vindo %s!"
-#: chat.php:2071
+#: index.php:2130 chat.php:2130
#, php-format
msgid ""
"If this frame does not reload in %d seconds, you'll have to enable automatic "
@@ -989,11 +1038,11 @@ msgstr ""
"você pode usar os botoes na parte inferior da página para atualizar "
"manualmente."
-#: chat.php:2087
+#: index.php:2146 chat.php:2146
msgid "Help"
msgstr "Ajuda"
-#: chat.php:2088
+#: index.php:2147 chat.php:2147
msgid ""
"All functions should be pretty much self-explaining, just use the buttons. "
"In your profile you can adjust the refresh rate and font colour, as well as "
@@ -1005,7 +1054,7 @@ msgstr ""
"ignorar os usuários. Observação: Isso é um chat, então se você não "
"continuar falando, será automaticamente desconectado depois de um tempo."
-#: chat.php:2090
+#: index.php:2149 chat.php:2149
msgid ""
"If you want to embed an image in your post, simply put [img] in front of "
"your image URL. Example: [img]http://example.com/images/file.jpg will embed "
@@ -1015,7 +1064,7 @@ msgstr ""
"frente do URL da imagem. Exemplo: [img]http://example.com/images/file.jpg "
"irá incorporar a imagem em sua postagem."
-#: chat.php:2093
+#: index.php:2152 chat.php:2152
msgid ""
"Members: You'll have some more options in your profile. You can adjust your "
"font face, change your password anytime and of course you can delete your "
@@ -1025,7 +1074,7 @@ msgstr ""
"sua fonte, alterar sua senha a qualquer momento e, claro, você pode excluir "
"sua conta."
-#: chat.php:2095
+#: index.php:2154 chat.php:2154
msgid ""
"Moderators: Notice the Admin-button at the bottom. It'll bring up a page "
"where you can clean the room, kick chatters, view all active sessions and "
@@ -1035,7 +1084,7 @@ msgstr ""
"onde você pode limpar a sala, interromper as conversas, ver todas as sessões "
"ativas e desabilitar o acesso de convidados completamente, se necessário."
-#: chat.php:2097
+#: index.php:2156 chat.php:2156
msgid ""
"Admins: You'll be furthermore able to register guests, edit members and "
"register new nicknames."
@@ -1043,227 +1092,233 @@ msgstr ""
"Admins: Além de tudo isso, você poderá registrar convidados, editar membros "
"e registrar novas nicknames."
-#: chat.php:2135
+#: index.php:2194 chat.php:2194
msgid "Your Profile"
msgstr "Seu perfil"
-#: chat.php:2144
+#: index.php:2203 chat.php:2203
msgid "Don't ignore anymore"
msgstr "Não ignorar mais"
-#: chat.php:2152
+#: index.php:2211 chat.php:2211
msgid "Ignore"
msgstr "Ignorar"
-#: chat.php:2163
+#: index.php:2222 chat.php:2222
#, php-format
msgid "Refresh rate (%1$d-%2$d seconds)"
msgstr "Taxa de recarregar (%1$d-%2$d segundos)"
-#: chat.php:2167 chat.php:2170
+#: index.php:2226 index.php:2229 chat.php:2226 chat.php:2229
msgid "View examples"
msgstr "Ver exemplos"
-#: chat.php:2174
+#: index.php:2233 chat.php:2233
msgid "Fontface"
msgstr "Tipo de letra"
-#: chat.php:2175
+#: index.php:2234 chat.php:2234
msgid "Room Default"
msgstr "Padrão"
-#: chat.php:2188
+#: index.php:2247 chat.php:2247
msgid "Bold"
msgstr "Negrito"
-#: chat.php:2192
+#: index.php:2251 chat.php:2251
msgid "Italic"
msgstr "Itálico"
-#: chat.php:2196
+#: index.php:2255 chat.php:2255
msgid "Small"
msgstr "Pequeno"
-#: chat.php:2199
+#: index.php:2258 chat.php:2258
msgid "Example for your chosen font"
msgstr "Exemplo para a fonte escolhida"
-#: chat.php:2203
+#: index.php:2262 chat.php:2262
msgid "Autoscroll (for old browsers or top-to-bottom sort)."
msgstr ""
"Rolagem automática (para navegadores antigos ou quando mostra as mensagens "
"mais novas no alto)"
-#: chat.php:2234
+#: index.php:2293 chat.php:2293
msgid "For everyone"
msgstr "Para todos"
-#: chat.php:2239
+#: index.php:2298 chat.php:2298
msgid "For members only"
msgstr "Apenas para membros"
-#: chat.php:2244
+#: index.php:2303 chat.php:2303
msgid "For staff only"
msgstr "Apenas para equipe"
-#: chat.php:2248
+#: index.php:2307 chat.php:2307
msgid "Time zone"
msgstr "Fuso horário"
-#: chat.php:2261
+#: index.php:2320 chat.php:2320
msgid "Change Password"
msgstr "Mudar Senha"
-#: chat.php:2263
+#: index.php:2322 chat.php:2322
msgid "Old password:"
msgstr "Senha Antiga:"
-#: chat.php:2264
+#: index.php:2323 chat.php:2323
msgid "New password:"
msgstr "Nova senha:"
-#: chat.php:2265
+#: index.php:2324 chat.php:2324
msgid "Confirm new password:"
msgstr "Confirmar nova senha:"
-#: chat.php:2268
+#: index.php:2327 chat.php:2327
msgid "Change Nickname"
msgstr "Mudar nickname"
-#: chat.php:2269
+#: index.php:2328 chat.php:2328
msgid "New nickname:"
msgstr "Nova nickname:"
-#: chat.php:2273
+#: index.php:2332 chat.php:2332
msgid "Save changes"
msgstr "Salvar alterações"
-#: chat.php:2275
+#: index.php:2334 chat.php:2334
msgid "Delete account"
msgstr "Deletar conta"
-#: chat.php:2301
+#: index.php:2360 chat.php:2360
msgid "Reload Post Box"
msgstr "Recarregar caixa de postagem"
-#: chat.php:2304
+#: index.php:2363 chat.php:2363
msgid "Reload Messages"
msgstr "Recarregar Mensagens"
-#: chat.php:2307
+#: index.php:2366 chat.php:2366
msgid "Profile"
msgstr "Perfil"
-#: chat.php:2311 chat.php:2528
+#: index.php:2370 index.php:2590 chat.php:2370 chat.php:2590
msgid "Admin"
msgstr "Admin"
-#: chat.php:2318
+#: index.php:2377 chat.php:2377
msgid "View public notes"
msgstr "Ler notas públicas"
-#: chat.php:2325
+#: index.php:2384 chat.php:2384
msgid "Clone"
msgstr "Clonar"
-#: chat.php:2334
+#: index.php:2393 chat.php:2393
msgid "Rearrange"
msgstr "Rearrumar"
-#: chat.php:2337
+#: index.php:2396 chat.php:2396
msgid "Rules & Help"
msgstr "Regras & Ajuda"
-#: chat.php:2358 chat.php:2362
+#: index.php:2417 index.php:2421 chat.php:2417 chat.php:2421
msgid "File not found!"
msgstr "Arquivo não encontrado!"
-#: chat.php:2370
+#: index.php:2429 chat.php:2429
#, php-format
msgid "Bye %s, visit again soon!"
msgstr "Tchau %s, te vejo em breve!"
-#: chat.php:2377
+#: index.php:2436 chat.php:2436
msgid "Colourtable"
msgstr ""
-#: chat.php:2388
+#: index.php:2447 chat.php:2447
msgid "Back to your Profile"
msgstr "Voltar para o seu Perfil"
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "Repeat password to register"
msgstr "Repita a senha para registrar"
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "(optional)"
msgstr "(opcional)"
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Guests, choose a colour:"
msgstr "Convidados, escolham uma cor:"
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Random Colour"
msgstr "Cor Aleatória"
-#: chat.php:2421 chat.php:2435 chat.php:2569
+#: index.php:2480 index.php:2494 index.php:2631 chat.php:2480 chat.php:2494
+#: chat.php:2631
msgid "Sorry, currently members only!"
msgstr "Desculpe, atualmente apenas membros!"
-#: chat.php:2423 chat.php:2437
+#: index.php:2482 index.php:2496 chat.php:2482 chat.php:2496
msgid "Enter Chat"
msgstr "Entrar no Chat"
-#: chat.php:2457
+#: index.php:2516 chat.php:2516
#, php-format
msgid "Error: %s"
msgstr "Erro: %s"
-#: chat.php:2467
+#: index.php:2526 chat.php:2526
msgid "Fatal error"
msgstr "Erro fatal"
-#: chat.php:2470
+#: index.php:2529 chat.php:2529
#, php-format
msgid "Fatal error: %s"
msgstr "Erro fatal: %s"
-#: chat.php:2482 chat.php:2693
+#: index.php:2541 index.php:2756 chat.php:2541 chat.php:2756
msgid "Failed login attempt(s)"
msgstr "Tentativas de login falhada(s)"
-#: chat.php:2489
+#: index.php:2548 chat.php:2548
#, php-format
msgid "Read %d messages in your inbox"
msgstr "Leia %d mensagens na sua caixa de entrada"
-#: chat.php:2498
+#: index.php:2557 chat.php:2557
#, php-format
msgid "%d new guests to approve"
msgstr "%d novos convidados para aprovar"
-#: chat.php:2530
+#: index.php:2577 chat.php:2577
+msgid "logging out"
+msgstr ""
+
+#: index.php:2592 chat.php:2592
msgid "Admin:"
msgstr "Admin:"
-#: chat.php:2533
+#: index.php:2595 chat.php:2595
msgid "Staff"
msgstr "Equipe"
-#: chat.php:2535
+#: index.php:2597 chat.php:2597
msgid "Staff:"
msgstr "Equipe:"
-#: chat.php:2540
+#: index.php:2602 chat.php:2602
msgid "Members:"
msgstr "Membros:"
-#: chat.php:2542
+#: index.php:2604 chat.php:2604
msgid "Guests"
msgstr "Convidados"
-#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092
+#: index.php:2625 index.php:3063 index.php:3267 index.php:4172 chat.php:2625
+#: chat.php:3063 chat.php:3267 chat.php:4172
#, php-format
msgid ""
"Invalid nickname (%1$d characters maximum and has to match the regular "
@@ -1272,7 +1327,8 @@ msgstr ""
"Nickname inválido (%1$d caracteres no máximo e deve corresponder à expressão "
"regular \"%2$s\")"
-#: chat.php:2566 chat.php:2996 chat.php:3162 chat.php:4094
+#: index.php:2628 index.php:3066 index.php:3232 index.php:4174 chat.php:2628
+#: chat.php:3066 chat.php:3232 chat.php:4174
#, php-format
msgid ""
"Invalid password (At least %1$d characters and has to match the regular "
@@ -1281,248 +1337,256 @@ msgstr ""
"Senha inválida (Pelo menos %1$d caracteres e tem que corresponder à "
"expressão regular \"%2$s\")"
-#: chat.php:2574 chat.php:2739
+#: index.php:2636 index.php:2806 chat.php:2636 chat.php:2806
msgid "Wrong global Password!"
msgstr "Senha global incorreta!"
-#: chat.php:2591 chat.php:2612
+#: index.php:2654 index.php:2675 chat.php:2654 chat.php:2675
msgid "Wrong Captcha"
msgstr "Captcha Errado"
-#: chat.php:2596 chat.php:2604
+#: index.php:2659 index.php:2667 chat.php:2659 chat.php:2667
msgid "Captcha already used or timed out."
msgstr "Captcha já usado ou expirou."
-#: chat.php:2652
+#: index.php:2715 chat.php:2715
msgid "A user with this nickname is already logged in."
msgstr "Um usuário com este nickname já está logado."
-#: chat.php:2652 chat.php:2933 chat.php:3176
+#: index.php:2715 index.php:3003 index.php:3246 chat.php:2715 chat.php:3003
+#: chat.php:3246
msgid "Wrong Password!"
msgstr "Senha errada!"
-#: chat.php:2696
+#: index.php:2759 chat.php:2759
msgid "Dismiss"
msgstr "Reconhecido"
-#: chat.php:2747 chat.php:3171 chat.php:4096
+#: index.php:2814 index.php:3241 index.php:4176 chat.php:2814 chat.php:3241
+#: chat.php:4176
msgid "Password confirmation does not match!"
msgstr "A confirmação da senha não corresponde!"
-#: chat.php:2859
+#: index.php:2854 chat.php:2854
+#, fuzzy
+#| msgid "Kickmessage:"
+msgid "no kick message"
+msgstr "Mensagem da expulsão:"
+
+#: index.php:2929 chat.php:2929
msgid "Invalid/expired session"
msgstr "Sessão inválida/expirada"
-#: chat.php:2875 chat.php:3412
+#: index.php:2945 index.php:3483 chat.php:2945 chat.php:3483
msgid "You have been kicked!"
msgstr "Você foi expulso!"
-#: chat.php:2885
+#: index.php:2955 chat.php:2955
#, php-format
msgid "Currently %d chatter(s) in room:"
msgstr "Atualmente %d usuário(s) na sala:"
-#: chat.php:2933
+#: index.php:3003 chat.php:3003
msgid "This nickname is a registered member."
msgstr "Este nickname é de um membro registrado."
-#: chat.php:2960 chat.php:3001
+#: index.php:3030 index.php:3071 chat.php:3030 chat.php:3071
#, php-format
msgid "%s is already registered."
msgstr "%s já está registrado."
-#: chat.php:2969 chat.php:2990
+#: index.php:3039 index.php:3060 chat.php:3039 chat.php:3060
#, php-format
msgid "Can't register %s"
msgstr "Não é possível registrar %s"
-#: chat.php:2978 chat.php:3023
+#: index.php:3048 index.php:3093 chat.php:3048 chat.php:3093
#, php-format
msgid "%s successfully registered."
msgstr "%s registrado com sucesso."
-#: chat.php:3031 chat.php:3036
+#: index.php:3101 index.php:3106 chat.php:3101 chat.php:3106
#, php-format
msgid "Can't change status of %s"
msgstr "Não é possível alterar o status de %s"
-#: chat.php:3047
+#: index.php:3117 chat.php:3117
#, php-format
msgid "%s successfully deleted from database."
msgstr "%s excluído com sucesso do banco de dados."
-#: chat.php:3056
+#: index.php:3126 chat.php:3126
#, php-format
msgid "Status of %s successfully changed."
msgstr "Status de %s alterado com sucesso."
-#: chat.php:3073
+#: index.php:3143 chat.php:3143
#, php-format
msgid "Successfully reset password for %s"
msgstr ""
-#: chat.php:3075
+#: index.php:3145 chat.php:3145
#, php-format
msgid "Can't reset password for %s"
msgstr ""
-#: chat.php:3190
+#: index.php:3260 chat.php:3260
msgid "Your profile has successfully been saved."
msgstr "Seu perfil foi salvo com sucesso."
-#: chat.php:3202
+#: index.php:3272 chat.php:3272
msgid "Nickname is already taken"
msgstr "A nickname já foi escolhida"
-#: chat.php:3714
+#: index.php:3785 chat.php:3785
msgid "system message"
msgstr "mensagem do sistema"
-#: chat.php:3921
+#: index.php:4001 chat.php:4001
msgid "Beige"
msgstr "Bege"
-#: chat.php:3922
+#: index.php:4002 chat.php:4002
msgid "Black"
msgstr "Preto"
-#: chat.php:3923
+#: index.php:4003 chat.php:4003
msgid "Blue"
msgstr "Azul"
-#: chat.php:3924
+#: index.php:4004 chat.php:4004
msgid "Blue violet"
msgstr "Violeta azul"
-#: chat.php:3925
+#: index.php:4005 chat.php:4005
msgid "Brown"
msgstr "Marrom"
-#: chat.php:3926
+#: index.php:4006 chat.php:4006
msgid "Cyan"
msgstr "Ciano"
-#: chat.php:3927
+#: index.php:4007 chat.php:4007
msgid "Dark blue"
msgstr "Azul escuro"
-#: chat.php:3928
+#: index.php:4008 chat.php:4008
msgid "Dark green"
msgstr "Verde escuro"
-#: chat.php:3929
+#: index.php:4009 chat.php:4009
msgid "Dark red"
msgstr "Vermelho escuro"
-#: chat.php:3930
+#: index.php:4010 chat.php:4010
msgid "Dark violet"
msgstr "Violeta escuro"
-#: chat.php:3931
+#: index.php:4011 chat.php:4011
msgid "Sky blue"
msgstr "Azul-celeste"
-#: chat.php:3932
+#: index.php:4012 chat.php:4012
msgid "Gold"
msgstr "Dourado"
-#: chat.php:3933
+#: index.php:4013 chat.php:4013
msgid "Grey"
msgstr "Cinza"
-#: chat.php:3934
+#: index.php:4014 chat.php:4014
msgid "Green"
msgstr "Verde"
-#: chat.php:3935
+#: index.php:4015 chat.php:4015
msgid "Hot pink"
msgstr "Rosa quente"
-#: chat.php:3936
+#: index.php:4016 chat.php:4016
msgid "Indigo"
msgstr "Índigo"
-#: chat.php:3937
+#: index.php:4017 chat.php:4017
msgid "Light blue"
msgstr "Azul claro"
-#: chat.php:3938
+#: index.php:4018 chat.php:4018
msgid "Light green"
msgstr "Verde claro"
-#: chat.php:3939
+#: index.php:4019 chat.php:4019
msgid "Lime green"
msgstr "Verde limão"
-#: chat.php:3940
+#: index.php:4020 chat.php:4020
msgid "Magenta"
msgstr "Magenta"
-#: chat.php:3941
+#: index.php:4021 chat.php:4021
msgid "Olive"
msgstr "Oliva"
-#: chat.php:3942
+#: index.php:4022 chat.php:4022
msgid "Orange"
msgstr "Laranja"
-#: chat.php:3943
+#: index.php:4023 chat.php:4023
msgid "Orange red"
msgstr "Vermelho alaranjado"
-#: chat.php:3944
+#: index.php:4024 chat.php:4024
msgid "Purple"
msgstr "Roxo"
-#: chat.php:3945
+#: index.php:4025 chat.php:4025
msgid "Red"
msgstr "Vermelho"
-#: chat.php:3946
+#: index.php:4026 chat.php:4026
msgid "Royal blue"
msgstr "Azul royal"
-#: chat.php:3947
+#: index.php:4027 chat.php:4027
msgid "Sea green"
msgstr "Verde Mar"
-#: chat.php:3948
+#: index.php:4028 chat.php:4028
msgid "Sienna"
msgstr "Sienna"
-#: chat.php:3949
+#: index.php:4029 chat.php:4029
msgid "Silver"
msgstr "Prata"
-#: chat.php:3950
+#: index.php:4030 chat.php:4030
msgid "Tan"
msgstr "Bronzeado"
-#: chat.php:3951
+#: index.php:4031 chat.php:4031
msgid "Teal"
msgstr "Cerceta"
-#: chat.php:3952
+#: index.php:4032 chat.php:4032
msgid "Violet"
msgstr "Violeta"
-#: chat.php:3953
+#: index.php:4033 chat.php:4033
msgid "White"
msgstr "Branco"
-#: chat.php:3954
+#: index.php:4034 chat.php:4034
msgid "Yellow"
msgstr "Amarelo"
-#: chat.php:3955
+#: index.php:4035 chat.php:4035
msgid "Yellow green"
msgstr "Amarelo verde"
-#: chat.php:4077
+#: index.php:4157 chat.php:4157
msgid "Successfully destroyed chat"
msgstr "Chat destruído com sucesso"
-#: chat.php:4086
+#: index.php:4166 chat.php:4166
msgid ""
"Database tables already exist! To continue, you have to delete these tables "
"manually first."
@@ -1530,98 +1594,103 @@ msgstr ""
"As tabelas de banco de dados já existem! Para continuar, você deve primeiro "
"excluir essas tabelas manualmente."
-#: chat.php:4089
+#: index.php:4169 chat.php:4169
msgid "A Superadmin already exists!"
msgstr "Já existe um Superadmin!"
-#: chat.php:4182 chat.php:4369
+#: index.php:4263 index.php:4451 chat.php:4263 chat.php:4451
#, php-format
msgid "%s - "
msgstr "%s - "
-#: chat.php:4183 chat.php:4369
+#: index.php:4264 index.php:4451 chat.php:4264 chat.php:4451
#, php-format
msgid "[M] %s - "
msgstr "[M] %s - "
-#: chat.php:4184 chat.php:4369
+#: index.php:4265 index.php:4451 chat.php:4265 chat.php:4451
#, php-format
msgid "[Staff] %s - "
msgstr "[Equipe] %s - "
-#: chat.php:4185 chat.php:4369
+#: index.php:4266 index.php:4451 chat.php:4266 chat.php:4451
#, php-format
msgid "[Admin] %s - "
msgstr "[Admin] %s - "
-#: chat.php:4186 chat.php:4369
+#: index.php:4267 index.php:4451 chat.php:4267 chat.php:4451
#, php-format
msgid "[%1$s to %2$s] - "
msgstr "[%1$s a %2$s] - "
-#: chat.php:4187
+#: index.php:4268 chat.php:4268
#, php-format
msgid "%s entered the chat."
msgstr "%s entrou no chat."
-#: chat.php:4188
+#: index.php:4269 chat.php:4269
#, php-format
msgid "%s left the chat."
msgstr "%s saiu do chat."
-#: chat.php:4189
+#: index.php:4270 chat.php:4270
#, php-format
msgid "%s is now a registered member."
msgstr "%s agora é um membro registrado."
-#: chat.php:4190
+#: index.php:4271 chat.php:4271
#, php-format
msgid "%s is now a registered applicant."
msgstr "%s agora é um candidato registrado."
-#: chat.php:4191
-#, php-format
-msgid "%s has been kicked."
+#: index.php:4272 chat.php:4272
+#, fuzzy, php-format
+#| msgid "%s has been kicked."
+msgid "%1$s has been kicked: %2$s"
msgstr "%s foi kickado."
-#: chat.php:4192
-#, php-format
-msgid "%s have been kicked."
+#: index.php:4273 chat.php:4273
+#, fuzzy, php-format
+#| msgid "%s have been kicked."
+msgid "%1$s have been kicked: %2$s"
msgstr "%s foram kickados."
-#: chat.php:4193
-msgid "All guests have been kicked."
+#: index.php:4274 chat.php:4274
+#, fuzzy, php-format
+#| msgid "All guests have been kicked."
+msgid "All guests have been kicked: %1$s"
msgstr "Todos os convidados foram expulsos."
-#: chat.php:4194
+#: index.php:4275 chat.php:4275
#, php-format
msgid "%s has been cleaned."
msgstr "%s foi limpa."
-#: chat.php:4202 chat.php:4396
+#: index.php:4283 index.php:4478 chat.php:4283 chat.php:4478
msgid "Temporarily disabled"
msgstr "Temporariamente desativado"
-#: chat.php:4218 chat.php:4594
+#: index.php:4299 index.php:4676 chat.php:4299 chat.php:4676
msgid "A chat community"
msgstr "Uma comunidade de bate-papo"
-#: chat.php:4256
+#: index.php:4338 chat.php:4338
msgid "Successfully registered!"
msgstr "Registrado com sucesso!"
-#: chat.php:4522 chat.php:4721 chat.php:4728
+#: index.php:4604 index.php:4807 index.php:4814 chat.php:4604 chat.php:4807
+#: chat.php:4814
msgid "No connection to database!"
msgstr "Sem conexão com o banco de dados!"
-#: chat.php:4531
+#: index.php:4613 chat.php:4613
msgid ""
"Note: Default CSS is now hardcoded and can be removed from the CSS setting"
msgstr ""
"Nota: CSS padrão agora está codificado e pode ser removido da configuração "
"CSS"
-#: chat.php:4611
+#: index.php:4697 chat.php:4697
#, php-format
msgid ""
"The %s extension of PHP is required for the encryption feature. Please "
@@ -1630,7 +1699,8 @@ msgstr ""
"La biblioteca de extensão %s da PHP é obrigada por usando criptografia. Por "
"favor instalar isso primeiramente ou altere a opção MSGENCRYPTED para false."
-#: chat.php:4684 chat.php:4689 chat.php:4694
+#: index.php:4770 index.php:4775 index.php:4780 chat.php:4770 chat.php:4775
+#: chat.php:4780
#, php-format
msgid ""
"The %s extension of PHP is required for the selected database driver. Please "
@@ -1639,7 +1709,8 @@ msgstr ""
"La biblioteca de extensão %s da PHP é obrigada por usando o banco de dados "
"escolhido (MySQL ou MariaDB). Por favor instalar isso primeiramente."
-#: chat.php:4707 chat.php:4715 chat.php:4719 chat.php:4726
+#: index.php:4793 index.php:4801 index.php:4805 index.php:4812 chat.php:4793
+#: chat.php:4801 chat.php:4805 chat.php:4812
msgid ""
"No connection to database, please create a database and edit the script to "
"use the correct database with given username and password!"
@@ -1648,7 +1719,7 @@ msgstr ""
"para usar o banco de dados correto com o nome de usuário e a senha "
"fornecidos!"
-#: chat.php:4734
+#: index.php:4820 chat.php:4820
msgid ""
"The memcached extension of PHP is required for the caching feature. Please "
"install it first or set the memcached setting back to false."
diff --git a/locale/ru_RU/LC_MESSAGES/le-chat-php.po b/locale/ru_RU/LC_MESSAGES/le-chat-php.po
index 6b4252a..72381c1 100644
--- a/locale/ru_RU/LC_MESSAGES/le-chat-php.po
+++ b/locale/ru_RU/LC_MESSAGES/le-chat-php.po
@@ -7,11 +7,11 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-01-18 21:32+0100\n"
+"POT-Creation-Date: 2025-03-29 17:02+0100\n"
"PO-Revision-Date: 2023-07-17 16:08+0000\n"
"Last-Translator: Goatli \n"
-"Language-Team: Russian \n"
+"Language-Team: Russian \n"
"Language: ru_RU\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -20,265 +20,271 @@ msgstr ""
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 4.18.1\n"
-#: chat.php:261
+#: index.php:272 chat.php:272
msgid "Enable applicants"
msgstr "Разрешить гостей"
-#: chat.php:262
+#: index.php:273 index.php:2267 chat.php:273 chat.php:2267
msgid "Embed images"
msgstr "Вставить изображения"
-#: chat.php:263 chat.php:2202
+#: index.php:274 index.php:2261 chat.php:274 chat.php:2261
msgid "Show Timestamps"
msgstr "Показать отметки времени"
-#: chat.php:264
+#: index.php:275 chat.php:275
msgid "Show session-IP"
msgstr "Показать IP-сессию"
-#: chat.php:265
+#: index.php:276 chat.php:276
msgid "Members can kick, if no moderator is present"
msgstr "Пользователи могут исключать, если не присутствует модератор"
-#: chat.php:266
+#: index.php:277 chat.php:277
msgid "Members can always kick"
msgstr "Пользователи могут всегда́ исключать"
-#: chat.php:267
+#: index.php:278 chat.php:278
msgid "Force redirection"
msgstr "Принудительное перенаправление"
-#: chat.php:268
+#: index.php:279 index.php:2270 chat.php:279 chat.php:2270
msgid "Incognito mode"
msgstr "Режим инкогнито"
-#: chat.php:269
+#: index.php:280 chat.php:280
msgid "Send mail on new public message"
msgstr "Отправить сообщение как новое публичное"
-#: chat.php:270
+#: index.php:281 chat.php:281
msgid "Fallback to waiting room, if no moderator is present to approve guests"
msgstr ""
"Вернуться в комнату ожидания, если отстутсвует модератор для подтверждения "
"гостей"
-#: chat.php:271
+#: index.php:282 chat.php:282
msgid "Disable private messages"
msgstr "Отключить личные сообщения"
-#: chat.php:272 chat.php:2223
+#: index.php:283 index.php:2282 chat.php:283 chat.php:2282
msgid "Enable offline inbox"
msgstr "Включить оффлайн-почту"
-#: chat.php:273
+#: index.php:284 chat.php:284
msgid "Show a greeting message before showing the messages"
msgstr "Показывать приветственное сообщение перед остальными сообщениями"
-#: chat.php:274 chat.php:2204
+#: index.php:285 index.php:2263 chat.php:285 chat.php:2263
msgid "Sort messages from top to bottom"
msgstr "Сортировать сообщения сверху вниз"
-#: chat.php:275 chat.php:2205
+#: index.php:286 index.php:2264 chat.php:286 chat.php:2264
msgid "Hide list of chatters"
msgstr "Спрятать список людей в чате"
-#: chat.php:276 chat.php:1780 chat.php:1794
+#: index.php:287 index.php:1837 index.php:1851 chat.php:287 chat.php:1837
+#: chat.php:1851
msgid "Personal notes"
msgstr "Личные заметки"
-#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110
+#: index.php:288 index.php:1840 index.php:1854 index.php:2169 chat.php:288
+#: chat.php:1840 chat.php:1854 chat.php:2169
msgid "Public notes"
msgstr "Профиля пользователяь"
-#: chat.php:278
+#: index.php:289 chat.php:289
msgid "Apply kick filter on moderators"
msgstr "Применить фильтр исключения для модераторов"
-#: chat.php:279
+#: index.php:290 chat.php:290
msgid "Show who kicks people or purges all messages."
msgstr "Покажите, кто изгоняет людей или очищает все сообщения."
-#: chat.php:280
+#: index.php:291 chat.php:291
msgid "Hide reload post box button"
msgstr "Скрыть кнопку перезагрузки почтового ящика"
-#: chat.php:281
+#: index.php:292 chat.php:292
msgid "Hide reload messages button"
msgstr "Скрыть кнопку перезагрузки сообщений"
-#: chat.php:282
+#: index.php:293 chat.php:293
msgid "Hide profile button"
msgstr "Кнопка скрыть профиль"
-#: chat.php:283
+#: index.php:294 chat.php:294
msgid "Hide admin button"
msgstr ""
-#: chat.php:284
+#: index.php:295 chat.php:295
msgid "Hide notes button"
msgstr ""
-#: chat.php:285
+#: index.php:296 chat.php:296
msgid "Hide clone button"
msgstr ""
-#: chat.php:286
+#: index.php:297 chat.php:297
msgid "Hide rearrange button"
msgstr ""
-#: chat.php:287
+#: index.php:298 chat.php:298
msgid "Hide help button"
msgstr ""
-#: chat.php:288
+#: index.php:299 chat.php:299
msgid "Apply postbox delete button globally"
msgstr ""
-#: chat.php:289
+#: index.php:300 chat.php:300
msgid "Allow enhancing functionality with JavaScript"
msgstr ""
-#: chat.php:292 chat.php:2170
+#: index.php:303 index.php:2229 chat.php:303 chat.php:2229
msgid "Background colour"
msgstr "Фоновый цвет"
-#: chat.php:293 chat.php:2167
+#: index.php:304 index.php:2226 chat.php:304 chat.php:2226
msgid "Font colour"
msgstr "Цвет шрифта"
-#: chat.php:296
+#: index.php:307 chat.php:307
msgid "Entrance"
msgstr "Вход"
-#: chat.php:297
+#: index.php:308 chat.php:308
msgid "Leaving"
msgstr "Выход"
-#: chat.php:298
+#: index.php:309 chat.php:309
msgid "Member registered"
msgstr "Зарегистрированные"
-#: chat.php:299
+#: index.php:310 chat.php:310
msgid "Applicant registered"
msgstr "Заявитель зарегистрирован"
-#: chat.php:300
+#: index.php:311 chat.php:311
msgid "Kicked"
msgstr "Забаненые"
-#: chat.php:301
+#: index.php:312 chat.php:312
msgid "Multiple kicked"
msgstr "Многократно забаненые"
-#: chat.php:302
+#: index.php:313 chat.php:313
msgid "All kicked"
msgstr "Все забаненые"
-#: chat.php:303
+#: index.php:314 chat.php:314
msgid "Room cleaned"
msgstr "Очистка чата"
-#: chat.php:304
+#: index.php:315 chat.php:315
msgid "Message to all"
msgstr "Сообщение всем"
-#: chat.php:305
+#: index.php:316 chat.php:316
msgid "Message to members only"
msgstr "Сообщение только членам"
-#: chat.php:306
+#: index.php:317 chat.php:317
msgid "Message to staff only"
msgstr "Сообщение только модераторам"
-#: chat.php:307
+#: index.php:318 chat.php:318
msgid "Message to admins only"
msgstr "Сообщение только администраторам"
-#: chat.php:308
+#: index.php:319 chat.php:319
msgid "Private message"
msgstr "Личное сообщение"
-#: chat.php:309
+#: index.php:320 chat.php:320
msgid "Attachement"
msgstr "Прикрепление"
-#: chat.php:312
+#: index.php:323 chat.php:323
msgid "Member timeout (minutes)"
msgstr "Тайм-аут пользователей (минут)"
-#: chat.php:313
+#: index.php:324 chat.php:324
msgid "Guest timeout (minutes)"
msgstr "Тайм-аут гостей (минут)"
-#: chat.php:314
+#: index.php:325 chat.php:325
msgid "Kick penalty (minutes)"
msgstr "Бан (минут)"
-#: chat.php:315
+#: index.php:326 chat.php:326
msgid "Waiting room time (seconds)"
msgstr "Время ожидания в гостевой (секунд)"
-#: chat.php:316
+#: index.php:327 chat.php:327
+msgid "Logout delay (seconds)"
+msgstr ""
+
+#: index.php:328 chat.php:328
msgid "Captcha timeout (seconds)"
msgstr "Тайм-аут Captcha (секунд)"
-#: chat.php:317
+#: index.php:329 chat.php:329
msgid "Message timeout (minutes)"
msgstr "Тайм-аут сообщения (минут)"
-#: chat.php:318
+#: index.php:330 chat.php:330
msgid "Message limit (public)"
msgstr "Лимит сообщений (общих)"
-#: chat.php:319
+#: index.php:331 chat.php:331
msgid "Maximal message length"
msgstr "Максимальная длина сообщения"
-#: chat.php:320
+#: index.php:332 chat.php:332
msgid "Maximal nickname length"
msgstr "Максимальная длина имени"
-#: chat.php:321
+#: index.php:333 chat.php:333
msgid "Minimal password length"
msgstr "Минимальная длина пароля"
-#: chat.php:322
+#: index.php:334 chat.php:334
msgid "Default message reload time (seconds)"
msgstr "По умолчанию время перезагрузки сообщения (секунды)"
-#: chat.php:323
+#: index.php:335 chat.php:335
msgid "Number of notes revisions to keep"
msgstr "Число исправлений для сохранения"
-#: chat.php:324
+#: index.php:336 chat.php:336
msgid "Maximum upload size in KB"
msgstr "Максимальный размер файла в КБ"
-#: chat.php:325
+#: index.php:337 chat.php:337
msgid "Enable file uploads"
msgstr "Разрешить файловые загрузки"
-#: chat.php:326
+#: index.php:338 chat.php:338
msgid "Lowest refresh rate"
msgstr ""
-#: chat.php:327
+#: index.php:339 chat.php:339
msgid "Highest refresh rate"
msgstr ""
-#: chat.php:330
+#: index.php:342 chat.php:342
msgid "Rules (html)"
msgstr "Правила (html)"
-#: chat.php:331
+#: index.php:343 chat.php:343
msgid "CSS Style"
msgstr "CSS стили"
-#: chat.php:332
+#: index.php:344 chat.php:344
msgid "Chat disabled message (html)"
msgstr "Чат отключил сообщение (html)"
-#: chat.php:335
+#: index.php:347 chat.php:347
msgid ""
"Date "
@@ -288,166 +294,177 @@ msgstr ""
"php#refsect1-function.date-parameters\" rel=\"noopener noreferrer\">Формат "
"даты"
-#: chat.php:336
+#: index.php:348 chat.php:348
msgid "Characters used in Captcha"
msgstr "Символы, используемые в Captcha"
-#: chat.php:337
+#: index.php:349 chat.php:349
msgid "Custom redirection script"
msgstr "Пользовательский скрипт перенаправления"
-#: chat.php:338
+#: index.php:350 chat.php:350
msgid "Chat name"
msgstr "Название чата"
-#: chat.php:339
+#: index.php:351 chat.php:351
msgid "Send mail using this address"
msgstr "Отправить сообщение на этот адрес"
-#: chat.php:340
+#: index.php:352 chat.php:352
msgid "Send mail to this address"
msgstr "Отправить сообщение по этому адресу"
-#: chat.php:341
+#: index.php:353 chat.php:353
msgid "Nickname regex"
msgstr "Ник regex"
-#: chat.php:342
+#: index.php:354 chat.php:354
msgid "Password regex"
msgstr "Пароль regex"
-#: chat.php:343
+#: index.php:355 chat.php:355
msgid "Link to external CSS file (on your own server)"
msgstr "Ссылка на внешний CSS файл"
-#: chat.php:344
+#: index.php:356 chat.php:356
msgid "Meta description (best 50 - 160 characters for SEO)"
msgstr ""
-#: chat.php:345
+#: index.php:357 chat.php:357
+msgid "Show this text when a user's logout is delayed"
+msgstr ""
+
+#: index.php:358 chat.php:358
msgid "Prepend this text to system messages"
msgstr "Этот текст предшествует сообщениям из системы"
-#: chat.php:348 chat.php:728 chat.php:1225
+#: index.php:361 index.php:780 index.php:1282 chat.php:361 chat.php:780
+#: chat.php:1282
msgid "Change Guestaccess"
msgstr "Изменить гостевой доступ"
-#: chat.php:349
+#: index.php:362 chat.php:362
msgid "Enable global Password"
msgstr ""
-#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433
+#: index.php:363 index.php:810 index.php:2474 index.php:2492 chat.php:363
+#: chat.php:810 chat.php:2474 chat.php:2492
msgid "Global Password:"
msgstr "Глобальный пароль:"
-#: chat.php:351 chat.php:819
+#: index.php:364 index.php:871 chat.php:364 chat.php:871
msgid "Captcha"
msgstr "Captcha"
-#: chat.php:352 chat.php:775 chat.php:835
+#: index.php:365 index.php:827 index.php:887 chat.php:365 chat.php:827
+#: chat.php:887
msgid "Only for guests"
msgstr "Только для гостей"
-#: chat.php:353 chat.php:1220
+#: index.php:366 index.php:1277 chat.php:366 chat.php:1277
msgid "Topic"
msgstr "Тема"
-#: chat.php:354 chat.php:781
+#: index.php:367 index.php:833 chat.php:367 chat.php:833
msgid "Let guests register themselves"
msgstr "Разрешить гостям регистрироваться самостоятельно"
-#: chat.php:355 chat.php:862
+#: index.php:368 index.php:919 chat.php:368 chat.php:919
msgid "Default time zone"
msgstr "Часовой пояс по умолчанию"
-#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259
+#: index.php:581 index.php:1157 index.php:4158 index.php:4341 chat.php:581
+#: chat.php:1157 chat.php:4158 chat.php:4341
msgid "Initial Setup"
msgstr "Начальная установка"
-#: chat.php:588
+#: index.php:601 chat.php:601
#, php-format
msgid "Redirecting to: %s"
msgstr "Перенаправление на: %s"
-#: chat.php:595
+#: index.php:608 chat.php:608
#, php-format
msgid ""
"Dangerous non-http link requested, copy paste this link if you are really "
"sure: %s"
msgstr ""
-#: chat.php:597
+#: index.php:610 chat.php:610
#, php-format
msgid "Non-http link requested: %s"
msgstr "Запрошенная ссылка не http: %s"
-#: chat.php:599
+#: index.php:612 chat.php:612
#, php-format
msgid "If it's not working, try this one: %s"
msgstr "Если это не работает, попробуйте это: %s"
-#: chat.php:609
+#: index.php:622 chat.php:622
msgid "Access denied"
msgstr "В доступе отказано"
-#: chat.php:609
+#: index.php:622 chat.php:622
#, php-format
msgid "You are logged in as %s and don't have access to this section."
msgstr "Вы вошли как %s и не имеете доступа к этой секции."
-#: chat.php:611 chat.php:915 chat.php:1211 chat.php:1393
+#: index.php:624 index.php:972 index.php:1268 index.php:1450 chat.php:624
+#: chat.php:972 chat.php:1268 chat.php:1450
msgid "Logout"
msgstr "Выйти"
-#: chat.php:636
+#: index.php:649 chat.php:649
msgid "Copy:"
msgstr "Код с картинки:"
-#: chat.php:724
+#: index.php:776 chat.php:776
msgid "Chat Setup"
msgstr "Установка чата"
-#: chat.php:734 chat.php:1233
+#: index.php:786 index.php:1290 chat.php:786 chat.php:1290
msgid "Allow"
msgstr "Позволить"
-#: chat.php:739 chat.php:1238
+#: index.php:791 index.php:1295 chat.php:791 chat.php:1295
msgid "Allow with waitingroom"
msgstr "Разрешить с гостевой"
-#: chat.php:744 chat.php:1243
+#: index.php:796 index.php:1300 chat.php:796 chat.php:1300
msgid "Require moderator approval"
msgstr "Требовать одобрения модератора"
-#: chat.php:749 chat.php:1248
+#: index.php:801 index.php:1305 chat.php:801 chat.php:1305
msgid "Only members"
msgstr "Только участники"
-#: chat.php:754 chat.php:1251
+#: index.php:806 index.php:1308 chat.php:806 chat.php:1308
msgid "Disable chat"
msgstr "Отключить чат"
-#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229
+#: index.php:817 index.php:839 index.php:894 index.php:953 index.php:2288
+#: chat.php:817 chat.php:839 chat.php:894 chat.php:953 chat.php:2288
msgid "Disabled"
msgstr "Выключен"
-#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219
+#: index.php:822 index.php:882 index.php:958 index.php:2278 chat.php:822
+#: chat.php:882 chat.php:958 chat.php:2278
msgid "Enabled"
msgstr "Включен"
-#: chat.php:792
+#: index.php:844 chat.php:844
msgid "As applicant"
msgstr "Как заявитель"
-#: chat.php:797
+#: index.php:849 chat.php:849
msgid "As member"
msgstr "Как член"
-#: chat.php:800
+#: index.php:852 chat.php:852
msgid "System messages"
msgstr "Системные сообщения"
-#: chat.php:822 chat.php:1053
+#: index.php:874 index.php:1110 chat.php:874 chat.php:1110
#, php-format
msgid ""
"The %s extension of PHP is required for this feature. Please install it "
@@ -456,292 +473,313 @@ msgstr ""
"%s расширение для PHP требуетса для етой функции. Пожалуйста установите его "
"сначала."
-#: chat.php:847
+#: index.php:899 chat.php:899
msgid "Simple"
msgstr "Простая"
-#: chat.php:852
+#: index.php:904 chat.php:904
msgid "Moderate"
msgstr "Умеренная"
-#: chat.php:857
+#: index.php:909 chat.php:909
+msgid "Hard"
+msgstr ""
+
+#: index.php:914 chat.php:914
msgid "Extreme"
msgstr "Сильная"
-#: chat.php:906 chat.php:1548 chat.php:1610
+#: index.php:963 index.php:1605 index.php:1667 chat.php:963 chat.php:1605
+#: chat.php:1667
msgid "Apply"
msgstr "Применить"
-#: chat.php:910 chat.php:1050
+#: index.php:967 index.php:1107 chat.php:967 chat.php:1107
msgid "Backup and restore"
msgstr "Бэкап и восстановление"
-#: chat.php:912
+#: index.php:969 chat.php:969
msgid "Destroy chat"
msgstr "Уничтожить чат"
-#: chat.php:1057 chat.php:1066
+#: index.php:1114 index.php:1123 chat.php:1114 chat.php:1123
msgid "Settings"
msgstr "Настройки"
-#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575
-#: chat.php:1622
+#: index.php:1115 index.php:1124 index.php:1269 index.php:1595 index.php:1632
+#: index.php:1679 chat.php:1115 chat.php:1124 chat.php:1269 chat.php:1595
+#: chat.php:1632 chat.php:1679
msgid "Filter"
msgstr "Фильтр"
-#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538
+#: index.php:1116 index.php:1125 index.php:1325 index.php:2600 chat.php:1116
+#: chat.php:1125 chat.php:1325 chat.php:2600
msgid "Members"
msgstr "Участники"
-#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322
+#: index.php:1117 index.php:1126 index.php:2373 index.php:2381 chat.php:1117
+#: chat.php:1126 chat.php:2373 chat.php:2381
msgid "Notes"
msgstr "Примечания"
-#: chat.php:1061
+#: index.php:1118 chat.php:1118
msgid "Backup"
msgstr "Бэкап"
-#: chat.php:1070
+#: index.php:1127 chat.php:1127
msgid "Restore"
msgstr "Восстановление"
-#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260
+#: index.php:1131 index.php:1174 index.php:1212 index.php:1242 index.php:4342
+#: chat.php:1131 chat.php:1174 chat.php:1212 chat.php:1242 chat.php:4342
msgid "Go to the Setup-Page"
msgstr "Перейти к странице установки"
-#: chat.php:1082 chat.php:1091 chat.php:1949
+#: index.php:1139 index.php:1148 index.php:2006 chat.php:1139 chat.php:1148
+#: chat.php:2006
msgid "Are you sure?"
msgstr "Вы уверены?"
-#: chat.php:1083 chat.php:1092 chat.php:1956
+#: index.php:1140 index.php:1149 index.php:2013 chat.php:1140 chat.php:1149
+#: chat.php:2013
msgid "Yes"
msgstr "Да"
-#: chat.php:1084 chat.php:1093 chat.php:1963
+#: index.php:1141 index.php:1150 index.php:2020 chat.php:1141 chat.php:1150
+#: chat.php:2020
msgid "No"
msgstr "Нет"
-#: chat.php:1101 chat.php:4259
+#: index.php:1158 index.php:4341 chat.php:1158 chat.php:4341
msgid "Superadmin Login"
msgstr "Вход для суперадминистратора"
-#: chat.php:1102
+#: index.php:1159 chat.php:1159
msgid "Superadmin Nickname:"
msgstr "Пароль суперадминистратора:"
-#: chat.php:1103
+#: index.php:1160 chat.php:1160
msgid "Superadmin Password:"
msgstr "Подтверждение пароля:"
-#: chat.php:1104
+#: index.php:1161 chat.php:1161
msgid "Confirm Password:"
msgstr "Успешно зарегистрирован:"
-#: chat.php:1105
+#: index.php:1162 chat.php:1162
msgid "Initialise Chat"
msgstr "Инициализация чата"
-#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439
+#: index.php:1163 index.php:1187 index.php:1213 index.php:2336 index.php:2498
+#: chat.php:1163 chat.php:1187 chat.php:1213 chat.php:2336 chat.php:2498
msgid "Change language:"
msgstr "Изменить язык:"
-#: chat.php:1117
+#: index.php:1174 chat.php:1174
msgid "Database successfully updated!"
msgstr "База данных успешно обновлена!"
-#: chat.php:1125 chat.php:1326 chat.php:2407
+#: index.php:1182 index.php:1383 index.php:2466 chat.php:1182 chat.php:1383
+#: chat.php:2466
msgid "Nickname:"
msgstr "Ник:"
-#: chat.php:1126 chat.php:1327 chat.php:2408
+#: index.php:1183 index.php:1384 index.php:2467 chat.php:1183 chat.php:1384
+#: chat.php:2467
msgid "Password:"
msgstr "Пароль:"
-#: chat.php:1128
+#: index.php:1185 chat.php:1185
msgid "Login"
msgstr "Войти"
-#: chat.php:1129
+#: index.php:1186 chat.php:1186
msgid "Forgot login?"
msgstr ""
-#: chat.php:1142 chat.php:1306
+#: index.php:1199 index.php:1363 chat.php:1199 chat.php:1363
msgid "Reset password"
msgstr "Сброс пароля"
-#: chat.php:1150
+#: index.php:1207 chat.php:1207
#, php-format
msgid ""
"Successfully reset password for username %s. Please remove the password "
"reset define from the script again."
msgstr ""
-#: chat.php:1153
+#: index.php:1210 chat.php:1210
msgid ""
"Please modify the script and put the following at the bottom of it (change "
"the password). Then refresh this page: define('RESET_SUPERADMIN_PASSWORD', "
"'changeme');"
msgstr ""
-#: chat.php:1169 chat.php:1193 chat.php:1258 chat.php:1270 chat.php:1294
-#: chat.php:1308 chat.php:1316 chat.php:2145 chat.php:2153
+#: index.php:1226 index.php:1250 index.php:1315 index.php:1327 index.php:1351
+#: index.php:1365 index.php:1373 index.php:2204 index.php:2212 chat.php:1226
+#: chat.php:1250 chat.php:1315 chat.php:1327 chat.php:1351 chat.php:1365
+#: chat.php:1373 chat.php:2204 chat.php:2212
msgid "(choose)"
msgstr "(выбрать)"
-#: chat.php:1170
+#: index.php:1227 chat.php:1227
msgid "All guests"
msgstr "Все гости"
-#: chat.php:1182
+#: index.php:1239 chat.php:1239
msgid "Administrative functions"
msgstr "Административные функции"
-#: chat.php:1188
+#: index.php:1245 chat.php:1245
msgid "Clean messages"
msgstr "Очистка сообщений"
-#: chat.php:1191
+#: index.php:1248 chat.php:1248
msgid "Whole room"
msgstr "Общая комната"
-#: chat.php:1192
+#: index.php:1249 chat.php:1249
msgid "Selection"
msgstr "Выбор"
-#: chat.php:1193
+#: index.php:1250 chat.php:1250
msgid "Following nickname:"
msgstr "По нику:"
-#: chat.php:1200
+#: index.php:1257 chat.php:1257
msgid "Clean"
msgstr "Очистить"
-#: chat.php:1202
+#: index.php:1259 chat.php:1259
#, php-format
msgid "Kick Chatter (%d minutes)"
msgstr "Бан (%d минут)"
-#: chat.php:1204
+#: index.php:1261 chat.php:1261
msgid "Kickmessage:"
msgstr "Сообщение забаненому:"
-#: chat.php:1205
+#: index.php:1262 chat.php:1262
msgid "Purge messages"
msgstr "Очистка сообщений"
-#: chat.php:1206 chat.php:1388 chat.php:1546 chat.php:1580 chat.php:1591
-#: chat.php:2042
+#: index.php:1263 index.php:1445 index.php:1603 index.php:1637 index.php:1648
+#: index.php:2101 chat.php:1263 chat.php:1445 chat.php:1603 chat.php:1637
+#: chat.php:1648 chat.php:2101
msgid "Kick"
msgstr "Бан"
-#: chat.php:1208
+#: index.php:1265 chat.php:1265
msgid "Logout inactive Chatter"
msgstr "Выход неактивного чата"
-#: chat.php:1212
+#: index.php:1269 chat.php:1269
msgid "View active sessions"
msgstr "Активные сеансы"
-#: chat.php:1212 chat.php:1603
+#: index.php:1269 index.php:1660 chat.php:1269 chat.php:1660
msgid "Linkfilter"
msgstr "Фильтрация ссылок"
-#: chat.php:1217
+#: index.php:1274 chat.php:1274
msgid "View"
msgstr "Просмотр"
-#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582
-#: chat.php:1626
+#: index.php:1280 index.php:1310 index.php:1361 index.php:1369 index.php:1639
+#: index.php:1683 chat.php:1280 chat.php:1310 chat.php:1361 chat.php:1369
+#: chat.php:1639 chat.php:1683
msgid "Change"
msgstr "Изменить"
-#: chat.php:1256
+#: index.php:1313 chat.php:1313
msgid "Register applicant"
msgstr "Добавить заявителя"
-#: chat.php:1264 chat.php:1322 chat.php:1328
+#: index.php:1321 index.php:1379 index.php:1385 chat.php:1321 chat.php:1379
+#: chat.php:1385
msgid "Register"
msgstr "Регистрация"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Delete from database"
msgstr "Удалить из базы данных"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Deny access (!)"
msgstr "Запретить доступ (!)"
-#: chat.php:1296
+#: index.php:1353 chat.php:1353
msgid "Set to applicant (SG)"
msgstr "Набор к претенденту (SG)"
-#: chat.php:1298
+#: index.php:1355 chat.php:1355
msgid "Set to regular member"
msgstr "Установить участника"
-#: chat.php:1299
+#: index.php:1356 chat.php:1356
msgid "Set to moderator (M)"
msgstr "Набор модератора (M)"
-#: chat.php:1300
+#: index.php:1357 chat.php:1357
msgid "Set to supermod (SM)"
msgstr "Набор супермодератора (SM)"
-#: chat.php:1302
+#: index.php:1359 chat.php:1359
msgid "Set to admin (A)"
msgstr "Набор администратора (A)"
-#: chat.php:1314
+#: index.php:1371 chat.php:1371
msgid "Register Guest"
msgstr "Регистрация гостей"
-#: chat.php:1324
+#: index.php:1381 chat.php:1381
msgid "Register new Member"
msgstr "Регистрация новых участников"
-#: chat.php:1332 chat.php:1408 chat.php:1595 chat.php:1636 chat.php:1710
-#: chat.php:1924
+#: index.php:1389 index.php:1465 index.php:1652 index.php:1693 index.php:1767
+#: index.php:1981 chat.php:1389 chat.php:1465 chat.php:1652 chat.php:1693
+#: chat.php:1767 chat.php:1981
msgid "Reload"
msgstr "Перезагрузить"
-#: chat.php:1345
+#: index.php:1402 chat.php:1402
msgid "Active Sessions"
msgstr "Активные сессии"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "Nickname"
msgstr "Ник"
-#: chat.php:1346
+#: index.php:1403 chat.php:1403
msgid "Timeout in"
msgstr "Время ожидания в"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "User-Agent"
msgstr "User-Agent"
-#: chat.php:1350
+#: index.php:1407 chat.php:1407
msgid "IP-Address"
msgstr "IP-адрес"
-#: chat.php:1351
+#: index.php:1408 chat.php:1408
msgid "Actions"
msgstr "Действия"
-#: chat.php:1393
+#: index.php:1450 chat.php:1450
msgid "Unban"
msgstr "Разблокировать"
-#: chat.php:1416
+#: index.php:1473 chat.php:1473
msgid "Incorrect regular expression!"
msgstr "Неправильное регулярное выражение!"
-#: chat.php:1416 chat.php:1424
+#: index.php:1473 index.php:1481 chat.php:1473 chat.php:1481
#, php-format
msgid "Your match was as follows: %s"
msgstr "Тексты в полях совпадают: %s"
-#: chat.php:1424
+#: index.php:1481 chat.php:1481
msgid ""
"Your match was too long. You can use max. 255 characters. Try splitting it "
"up."
@@ -749,40 +787,43 @@ msgstr ""
"Текст в поле слишком длинний. Можно использовать максимум 255 символов, "
"попробуйте разбить поле на части."
-#: chat.php:1541 chat.php:1606
+#: index.php:1598 index.php:1663 chat.php:1598 chat.php:1663
msgid "Filter ID:"
msgstr "Фильтр ID:"
-#: chat.php:1542 chat.php:1607
+#: index.php:1599 index.php:1664 chat.php:1599 chat.php:1664
msgid "Match"
msgstr "Совпадение"
-#: chat.php:1543 chat.php:1608
+#: index.php:1600 index.php:1665 chat.php:1600 chat.php:1665
msgid "Replace"
msgstr "Заменять"
-#: chat.php:1544 chat.php:1578 chat.php:1589
+#: index.php:1601 index.php:1635 index.php:1646 chat.php:1601 chat.php:1635
+#: chat.php:1646
msgid "Allow in PM"
msgstr "Разрешить в личку"
-#: chat.php:1545 chat.php:1579 chat.php:1590 chat.php:1609 chat.php:1625
-#: chat.php:1633
+#: index.php:1602 index.php:1636 index.php:1647 index.php:1666 index.php:1682
+#: index.php:1690 chat.php:1602 chat.php:1636 chat.php:1647 chat.php:1666
+#: chat.php:1682 chat.php:1690
msgid "Regex"
msgstr "Регулярное выражение"
-#: chat.php:1547 chat.php:1581 chat.php:1592
+#: index.php:1604 index.php:1638 index.php:1649 chat.php:1604 chat.php:1638
+#: chat.php:1649
msgid "Case sensitive"
msgstr "Регистр-чувствительный"
-#: chat.php:1586 chat.php:1630
+#: index.php:1643 index.php:1687 chat.php:1643 chat.php:1687
msgid "New filter:"
msgstr "Новый фильтр:"
-#: chat.php:1593 chat.php:1634
+#: index.php:1650 index.php:1691 chat.php:1650 chat.php:1691
msgid "Add"
msgstr "Добавить"
-#: chat.php:1691
+#: index.php:1748 chat.php:1748
msgid ""
"This chat uses frames. Please enable frames in your browser or use a "
"suitable one!"
@@ -790,96 +831,99 @@ msgstr ""
"Этот чат использует frames. Пожалуйста, включите поддержку в Вашем "
"браузере или используйте подходящий!"
-#: chat.php:1691 chat.php:2370 chat.php:2457
+#: index.php:1748 index.php:2429 index.php:2516 chat.php:1748 chat.php:2429
+#: chat.php:2516
msgid "Back to the login page."
msgstr "Вернуться на страницу входа."
-#: chat.php:1709
+#: index.php:1766 chat.php:1766
msgid "Bottom"
msgstr "Вниз"
-#: chat.php:1710
+#: index.php:1767 chat.php:1767
msgid "Manual refresh required"
msgstr "Требуется обновить страницу вручную"
-#: chat.php:1726
+#: index.php:1783 chat.php:1783
msgid "Top"
msgstr ""
-#: chat.php:1734 chat.php:1940 chat.php:1942
+#: index.php:1791 index.php:1997 index.php:1999 chat.php:1791 chat.php:1997
+#: chat.php:1999
msgid "Delete selected messages"
msgstr "Удалить выбранные сообщения"
-#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281
+#: index.php:1818 index.php:1945 index.php:2160 index.php:2340 chat.php:1818
+#: chat.php:1945 chat.php:2160 chat.php:2340
msgid "Back to the chat."
msgstr "Вернуться в чат."
-#: chat.php:1774 chat.php:1791
+#: index.php:1831 index.php:1848 chat.php:1831 chat.php:1848
msgid "Admin notes"
msgstr "Примечания администратора"
-#: chat.php:1777 chat.php:1788
+#: index.php:1834 index.php:1845 chat.php:1834 chat.php:1845
msgid "Staff notes"
msgstr "Служебные заметки"
-#: chat.php:1811
+#: index.php:1868 chat.php:1868
msgid "Notes saved!"
msgstr "Заметки сохранены!"
-#: chat.php:1835 chat.php:2122
+#: index.php:1892 index.php:2181 chat.php:1892 chat.php:2181
#, php-format
msgid "Last edited by %1$s at %2$s"
msgstr "Последний раз редактировал %1$s %2$s"
-#: chat.php:1848
+#: index.php:1905 chat.php:1905
msgid "Save notes"
msgstr "Сохранить заметки"
-#: chat.php:1850
+#: index.php:1907 chat.php:1907
msgid "Revisions:"
msgstr "Исправления:"
-#: chat.php:1853
+#: index.php:1910 chat.php:1910
msgid "Older"
msgstr "Старые"
-#: chat.php:1857
+#: index.php:1914 chat.php:1914
msgid "Newer"
msgstr "Новые"
-#: chat.php:1868 chat.php:1914
+#: index.php:1925 index.php:1971 chat.php:1925 chat.php:1971
msgid "Waiting room"
msgstr "Гостевая"
-#: chat.php:1880
+#: index.php:1937 chat.php:1937
msgid "Allow checked"
msgstr "Разрешить проверку"
-#: chat.php:1881
+#: index.php:1938 chat.php:1938
msgid "Allow all"
msgstr "Разрешить всем"
-#: chat.php:1882
+#: index.php:1939 chat.php:1939
msgid "Deny checked"
msgstr "Запретить проверку"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Deny all"
msgstr "Запретить всем"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Send message to denied:"
msgstr "Отправить сообщение с отказом:"
-#: chat.php:1884
+#: index.php:1941 chat.php:1941
msgid "Submit"
msgstr "Отправить"
-#: chat.php:1886
+#: index.php:1943 chat.php:1943
msgid "No more entry requests to approve."
msgstr "Больше запросов для одобрения нет."
-#: chat.php:1916
+#: index.php:1973 chat.php:1973
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat in %2$d "
@@ -888,7 +932,7 @@ msgstr ""
"Добро пожаловать %1$s, наблюдается задержка входа, доступ к чату будет "
"осуществлен через %2$d секунд."
-#: chat.php:1918
+#: index.php:1975 chat.php:1975
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat as soon, "
@@ -897,7 +941,7 @@ msgstr ""
"Добро пожаловать %1$s, наблюдается задержка входа, доступ к чату будет "
"доступен после подтверждения модератором."
-#: chat.php:1921
+#: index.php:1978 chat.php:1978
#, php-format
msgid ""
"If this page doesn't refresh every %d seconds, use the button below to "
@@ -906,64 +950,69 @@ msgstr ""
"Если эта страница не отвечает, не обновляется каждые %d секунд, используйте "
"кнопку ниже, чтобы перезагрузить ее вручную!"
-#: chat.php:1926 chat.php:2339
+#: index.php:1983 index.php:2398 chat.php:1983 chat.php:2398
msgid "Exit Chat"
msgstr "Выход"
-#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430
+#: index.php:1986 index.php:2133 index.php:2144 index.php:2489 chat.php:1986
+#: chat.php:2133 chat.php:2144 chat.php:2489
msgid "Rules"
msgstr "Правила"
-#: chat.php:1985
+#: index.php:2042 chat.php:2042
msgid "Send to"
msgstr "Отправить"
-#: chat.php:1990
+#: index.php:2047 chat.php:2047
msgid "All chatters"
msgstr "Все в чате"
-#: chat.php:1996
+#: index.php:2053 chat.php:2053
msgid "Members only"
msgstr "Участники"
-#: chat.php:2003
+#: index.php:2060 chat.php:2060
msgid "Staff only"
msgstr "Служебные"
-#: chat.php:2010
+#: index.php:2067 chat.php:2067
msgid "Admin only"
msgstr "Администратор"
-#: chat.php:2019
+#: index.php:2076 chat.php:2076
msgid "(offline)"
msgstr "(оффлайн)"
-#: chat.php:2043
+#: index.php:2078 chat.php:2078
+msgid "(logging out)"
+msgstr ""
+
+#: index.php:2102 chat.php:2102
msgid "Also purge messages"
msgstr "Также очистить сообщения"
-#: chat.php:2050
+#: index.php:2109 chat.php:2109
msgid "Delete last message"
msgstr "Удалить последнее сообщение"
-#: chat.php:2055
+#: index.php:2114 chat.php:2114
msgid "Delete all messages"
msgstr "Удалить все сообщения"
-#: chat.php:2057
+#: index.php:2116 chat.php:2116
msgid "Switch to single-line"
msgstr "Включить однострочный режим"
-#: chat.php:2059
+#: index.php:2118 chat.php:2118
msgid "Switch to multi-line"
msgstr "Включить многострочный режим"
-#: chat.php:2070
+#: index.php:2129 chat.php:2129
#, php-format
msgid "Welcome %s!"
msgstr "Добро пожаловать %s!"
-#: chat.php:2071
+#: index.php:2130 chat.php:2130
#, php-format
msgid ""
"If this frame does not reload in %d seconds, you'll have to enable automatic "
@@ -981,11 +1030,11 @@ msgstr ""
"из-за сервера/прокси) вы всегда можете использовать кнопки внизу страницы "
"для ручного обновления страницыы."
-#: chat.php:2087
+#: index.php:2146 chat.php:2146
msgid "Help"
msgstr "Помощь"
-#: chat.php:2088
+#: index.php:2147 chat.php:2147
msgid ""
"All functions should be pretty much self-explaining, just use the buttons. "
"In your profile you can adjust the refresh rate and font colour, as well as "
@@ -998,7 +1047,7 @@ msgstr ""
"ничего не пишете, то будет автоматически зарегистрировано через некоторое "
"время."
-#: chat.php:2090
+#: index.php:2149 chat.php:2149
msgid ""
"If you want to embed an image in your post, simply put [img] in front of "
"your image URL. Example: [img]http://example.com/images/file.jpg will embed "
@@ -1008,7 +1057,7 @@ msgstr ""
"вашим URL-изображением. Пример: [img]http://example.com/images/file.jpg "
"будет прикреплять картинку к вашему сообщению."
-#: chat.php:2093
+#: index.php:2152 chat.php:2152
msgid ""
"Members: You'll have some more options in your profile. You can adjust your "
"font face, change your password anytime and of course you can delete your "
@@ -1017,7 +1066,7 @@ msgstr ""
"Участники: У вас есть несколько вариантов настроек в вашем профиле. Можно "
"настроить шрифт и изменить свой пароль в любое время."
-#: chat.php:2095
+#: index.php:2154 chat.php:2154
msgid ""
"Moderators: Notice the Admin-button at the bottom. It'll bring up a page "
"where you can clean the room, kick chatters, view all active sessions and "
@@ -1027,7 +1076,7 @@ msgstr ""
"на страницу, где вы можете очистить комнату, забанить, просмотреть все "
"активные сеансы и отключить гостевой доступ полностью, если необходимо."
-#: chat.php:2097
+#: index.php:2156 chat.php:2156
msgid ""
"Admins: You'll be furthermore able to register guests, edit members and "
"register new nicknames."
@@ -1035,225 +1084,231 @@ msgstr ""
"Администраторы: Вы способны регистрировать гостей и новые ники без их "
"присутствия в комнате а также редактировать пользователей."
-#: chat.php:2135
+#: index.php:2194 chat.php:2194
msgid "Your Profile"
msgstr "Ваш профиль"
-#: chat.php:2144
+#: index.php:2203 chat.php:2203
msgid "Don't ignore anymore"
msgstr "Больше не игнорировать"
-#: chat.php:2152
+#: index.php:2211 chat.php:2211
msgid "Ignore"
msgstr "Игнорировать"
-#: chat.php:2163
+#: index.php:2222 chat.php:2222
#, php-format
msgid "Refresh rate (%1$d-%2$d seconds)"
msgstr "Частота обновления (%1$d-%2$d секунд)"
-#: chat.php:2167 chat.php:2170
+#: index.php:2226 index.php:2229 chat.php:2226 chat.php:2229
msgid "View examples"
msgstr "Посмотреть примеры"
-#: chat.php:2174
+#: index.php:2233 chat.php:2233
msgid "Fontface"
msgstr "Шрифт"
-#: chat.php:2175
+#: index.php:2234 chat.php:2234
msgid "Room Default"
msgstr "По умолчанию"
-#: chat.php:2188
+#: index.php:2247 chat.php:2247
msgid "Bold"
msgstr "Жирный"
-#: chat.php:2192
+#: index.php:2251 chat.php:2251
msgid "Italic"
msgstr "Курсив"
-#: chat.php:2196
+#: index.php:2255 chat.php:2255
msgid "Small"
msgstr "Маленький"
-#: chat.php:2199
+#: index.php:2258 chat.php:2258
msgid "Example for your chosen font"
msgstr "Пример выбранного вами шрифта"
-#: chat.php:2203
+#: index.php:2262 chat.php:2262
msgid "Autoscroll (for old browsers or top-to-bottom sort)."
msgstr "Автозагрузка (для старых браузеров, для сортрировки сверху-вниз)."
-#: chat.php:2234
+#: index.php:2293 chat.php:2293
msgid "For everyone"
msgstr "Для всех"
-#: chat.php:2239
+#: index.php:2298 chat.php:2298
msgid "For members only"
msgstr "Только для членов"
-#: chat.php:2244
+#: index.php:2303 chat.php:2303
msgid "For staff only"
msgstr "Только для модераторов"
-#: chat.php:2248
+#: index.php:2307 chat.php:2307
msgid "Time zone"
msgstr "Часовой пояс"
-#: chat.php:2261
+#: index.php:2320 chat.php:2320
msgid "Change Password"
msgstr "Изменить пароль"
-#: chat.php:2263
+#: index.php:2322 chat.php:2322
msgid "Old password:"
msgstr "Старый пароль:"
-#: chat.php:2264
+#: index.php:2323 chat.php:2323
msgid "New password:"
msgstr "Новый пароль:"
-#: chat.php:2265
+#: index.php:2324 chat.php:2324
msgid "Confirm new password:"
msgstr "Подтверждение:"
-#: chat.php:2268
+#: index.php:2327 chat.php:2327
msgid "Change Nickname"
msgstr "Изменить имя"
-#: chat.php:2269
+#: index.php:2328 chat.php:2328
msgid "New nickname:"
msgstr "Новое имя:"
-#: chat.php:2273
+#: index.php:2332 chat.php:2332
msgid "Save changes"
msgstr "Сохранить изменения"
-#: chat.php:2275
+#: index.php:2334 chat.php:2334
msgid "Delete account"
msgstr "Удалить аккаунт"
-#: chat.php:2301
+#: index.php:2360 chat.php:2360
msgid "Reload Post Box"
msgstr "Перезагрузить почтовый ящик"
-#: chat.php:2304
+#: index.php:2363 chat.php:2363
msgid "Reload Messages"
msgstr "Обновить"
-#: chat.php:2307
+#: index.php:2366 chat.php:2366
msgid "Profile"
msgstr "Профиль"
-#: chat.php:2311 chat.php:2528
+#: index.php:2370 index.php:2590 chat.php:2370 chat.php:2590
msgid "Admin"
msgstr "Администратор"
-#: chat.php:2318
+#: index.php:2377 chat.php:2377
msgid "View public notes"
msgstr "Читать профили пользователей"
-#: chat.php:2325
+#: index.php:2384 chat.php:2384
msgid "Clone"
msgstr "Клонировать"
-#: chat.php:2334
+#: index.php:2393 chat.php:2393
msgid "Rearrange"
msgstr "Перестроить"
-#: chat.php:2337
+#: index.php:2396 chat.php:2396
msgid "Rules & Help"
msgstr "Правила и помощь"
-#: chat.php:2358 chat.php:2362
+#: index.php:2417 index.php:2421 chat.php:2417 chat.php:2421
msgid "File not found!"
msgstr "Файл не обнаружен!"
-#: chat.php:2370
+#: index.php:2429 chat.php:2429
#, php-format
msgid "Bye %s, visit again soon!"
msgstr "Пока %s, заходите снова!"
-#: chat.php:2377
+#: index.php:2436 chat.php:2436
msgid "Colourtable"
msgstr "Примеры цветов"
-#: chat.php:2388
+#: index.php:2447 chat.php:2447
msgid "Back to your Profile"
msgstr "Вернуться к вашему профилю"
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "Repeat password to register"
msgstr "Повторите пароль Зарегистрироваться"
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "(optional)"
msgstr "(опционально)"
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Guests, choose a colour:"
msgstr "Выберите ваш цвет:"
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Random Colour"
msgstr "Случайный цвет"
-#: chat.php:2421 chat.php:2435 chat.php:2569
+#: index.php:2480 index.php:2494 index.php:2631 chat.php:2480 chat.php:2494
+#: chat.php:2631
msgid "Sorry, currently members only!"
msgstr "Извините, входят только зарегистрированные!"
-#: chat.php:2423 chat.php:2437
+#: index.php:2482 index.php:2496 chat.php:2482 chat.php:2496
msgid "Enter Chat"
msgstr "Войти в чат"
-#: chat.php:2457
+#: index.php:2516 chat.php:2516
#, php-format
msgid "Error: %s"
msgstr "Ошибка: %s"
-#: chat.php:2467
+#: index.php:2526 chat.php:2526
msgid "Fatal error"
msgstr "Фатальная ошибка"
-#: chat.php:2470
+#: index.php:2529 chat.php:2529
#, php-format
msgid "Fatal error: %s"
msgstr "Фатальная ошибка: %s"
-#: chat.php:2482 chat.php:2693
+#: index.php:2541 index.php:2756 chat.php:2541 chat.php:2756
msgid "Failed login attempt(s)"
msgstr "Неудачная попытка входа (ы)"
-#: chat.php:2489
+#: index.php:2548 chat.php:2548
#, php-format
msgid "Read %d messages in your inbox"
msgstr "Прочитайте %d входящих сообщений"
-#: chat.php:2498
+#: index.php:2557 chat.php:2557
#, php-format
msgid "%d new guests to approve"
msgstr "%d новые гости для одобрения"
-#: chat.php:2530
+#: index.php:2577 chat.php:2577
+msgid "logging out"
+msgstr ""
+
+#: index.php:2592 chat.php:2592
msgid "Admin:"
msgstr "Администратор:"
-#: chat.php:2533
+#: index.php:2595 chat.php:2595
msgid "Staff"
msgstr "Служебные"
-#: chat.php:2535
+#: index.php:2597 chat.php:2597
msgid "Staff:"
msgstr "Служебные:"
-#: chat.php:2540
+#: index.php:2602 chat.php:2602
msgid "Members:"
msgstr "Участники:"
-#: chat.php:2542
+#: index.php:2604 chat.php:2604
msgid "Guests"
msgstr "Гости"
-#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092
+#: index.php:2625 index.php:3063 index.php:3267 index.php:4172 chat.php:2625
+#: chat.php:3063 chat.php:3267 chat.php:4172
#, php-format
msgid ""
"Invalid nickname (%1$d characters maximum and has to match the regular "
@@ -1262,7 +1317,8 @@ msgstr ""
"Некорректное имя (%1$d символов максимум и оно должно совпадать с выражением "
"\"%2$s\")"
-#: chat.php:2566 chat.php:2996 chat.php:3162 chat.php:4094
+#: index.php:2628 index.php:3066 index.php:3232 index.php:4174 chat.php:2628
+#: chat.php:3066 chat.php:3232 chat.php:4174
#, php-format
msgid ""
"Invalid password (At least %1$d characters and has to match the regular "
@@ -1271,248 +1327,256 @@ msgstr ""
"Некорректный пароль (Хотя бы %1$d символов и он должен совпадать с "
"выражением \"%2$s\")"
-#: chat.php:2574 chat.php:2739
+#: index.php:2636 index.php:2806 chat.php:2636 chat.php:2806
msgid "Wrong global Password!"
msgstr "Неправильный глобальный пароль!"
-#: chat.php:2591 chat.php:2612
+#: index.php:2654 index.php:2675 chat.php:2654 chat.php:2675
msgid "Wrong Captcha"
msgstr "Неверная капча"
-#: chat.php:2596 chat.php:2604
+#: index.php:2659 index.php:2667 chat.php:2659 chat.php:2667
msgid "Captcha already used or timed out."
msgstr "Защитный код уже используется или время истекло."
-#: chat.php:2652
+#: index.php:2715 chat.php:2715
msgid "A user with this nickname is already logged in."
msgstr "Пользователь с текущим именем уже в сети."
-#: chat.php:2652 chat.php:2933 chat.php:3176
+#: index.php:2715 index.php:3003 index.php:3246 chat.php:2715 chat.php:3003
+#: chat.php:3246
msgid "Wrong Password!"
msgstr "Неверный пароль!"
-#: chat.php:2696
+#: index.php:2759 chat.php:2759
msgid "Dismiss"
msgstr "Признал"
-#: chat.php:2747 chat.php:3171 chat.php:4096
+#: index.php:2814 index.php:3241 index.php:4176 chat.php:2814 chat.php:3241
+#: chat.php:4176
msgid "Password confirmation does not match!"
msgstr "Введенные пароли не совпадают!"
-#: chat.php:2859
+#: index.php:2854 chat.php:2854
+#, fuzzy
+#| msgid "Kickmessage:"
+msgid "no kick message"
+msgstr "Сообщение забаненому:"
+
+#: index.php:2929 chat.php:2929
msgid "Invalid/expired session"
msgstr "Недействительная/с истекшим сроком сессия"
-#: chat.php:2875 chat.php:3412
+#: index.php:2945 index.php:3483 chat.php:2945 chat.php:3483
msgid "You have been kicked!"
msgstr "Забанен!"
-#: chat.php:2885
+#: index.php:2955 chat.php:2955
#, php-format
msgid "Currently %d chatter(s) in room:"
msgstr "Сейчас %d разговор (ов) в комнате:"
-#: chat.php:2933
+#: index.php:3003 chat.php:3003
msgid "This nickname is a registered member."
msgstr "Это имя принадлежит зарегистрированному пользователю."
-#: chat.php:2960 chat.php:3001
+#: index.php:3030 index.php:3071 chat.php:3030 chat.php:3071
#, php-format
msgid "%s is already registered."
msgstr "%s уже зарегистрирован."
-#: chat.php:2969 chat.php:2990
+#: index.php:3039 index.php:3060 chat.php:3039 chat.php:3060
#, php-format
msgid "Can't register %s"
msgstr "Вы не можете зарегистрироваться %s"
-#: chat.php:2978 chat.php:3023
+#: index.php:3048 index.php:3093 chat.php:3048 chat.php:3093
#, php-format
msgid "%s successfully registered."
msgstr "%s успешно зарегистрирован."
-#: chat.php:3031 chat.php:3036
+#: index.php:3101 index.php:3106 chat.php:3101 chat.php:3106
#, php-format
msgid "Can't change status of %s"
msgstr "Невозможно изменить статус %s"
-#: chat.php:3047
+#: index.php:3117 chat.php:3117
#, php-format
msgid "%s successfully deleted from database."
msgstr "%s успешно удален из базы данных."
-#: chat.php:3056
+#: index.php:3126 chat.php:3126
#, php-format
msgid "Status of %s successfully changed."
msgstr "Статус %s успешно изменен."
-#: chat.php:3073
+#: index.php:3143 chat.php:3143
#, php-format
msgid "Successfully reset password for %s"
msgstr ""
-#: chat.php:3075
+#: index.php:3145 chat.php:3145
#, php-format
msgid "Can't reset password for %s"
msgstr ""
-#: chat.php:3190
+#: index.php:3260 chat.php:3260
msgid "Your profile has successfully been saved."
msgstr "Ваш профиль был успешно сохранен."
-#: chat.php:3202
+#: index.php:3272 chat.php:3272
msgid "Nickname is already taken"
msgstr "Имя уже занято"
-#: chat.php:3714
+#: index.php:3785 chat.php:3785
msgid "system message"
msgstr "системное сообщение"
-#: chat.php:3921
+#: index.php:4001 chat.php:4001
msgid "Beige"
msgstr "Бежевый"
-#: chat.php:3922
+#: index.php:4002 chat.php:4002
msgid "Black"
msgstr "Черный"
-#: chat.php:3923
+#: index.php:4003 chat.php:4003
msgid "Blue"
msgstr "Синий"
-#: chat.php:3924
+#: index.php:4004 chat.php:4004
msgid "Blue violet"
msgstr "Фиолетово-синий"
-#: chat.php:3925
+#: index.php:4005 chat.php:4005
msgid "Brown"
msgstr "Коричневый"
-#: chat.php:3926
+#: index.php:4006 chat.php:4006
msgid "Cyan"
msgstr "Голубой"
-#: chat.php:3927
+#: index.php:4007 chat.php:4007
msgid "Dark blue"
msgstr "Темно-синий"
-#: chat.php:3928
+#: index.php:4008 chat.php:4008
msgid "Dark green"
msgstr "Темно-зеленый"
-#: chat.php:3929
+#: index.php:4009 chat.php:4009
msgid "Dark red"
msgstr "Темно-красный"
-#: chat.php:3930
+#: index.php:4010 chat.php:4010
msgid "Dark violet"
msgstr "Темно-фиолетовый"
-#: chat.php:3931
+#: index.php:4011 chat.php:4011
msgid "Sky blue"
msgstr "Голубое небо"
-#: chat.php:3932
+#: index.php:4012 chat.php:4012
msgid "Gold"
msgstr "Золотой"
-#: chat.php:3933
+#: index.php:4013 chat.php:4013
msgid "Grey"
msgstr "Серый"
-#: chat.php:3934
+#: index.php:4014 chat.php:4014
msgid "Green"
msgstr "Зеленый"
-#: chat.php:3935
+#: index.php:4015 chat.php:4015
msgid "Hot pink"
msgstr "Ярко-розовый"
-#: chat.php:3936
+#: index.php:4016 chat.php:4016
msgid "Indigo"
msgstr "Индиго"
-#: chat.php:3937
+#: index.php:4017 chat.php:4017
msgid "Light blue"
msgstr "Светло-синий"
-#: chat.php:3938
+#: index.php:4018 chat.php:4018
msgid "Light green"
msgstr "Светло-зеленый"
-#: chat.php:3939
+#: index.php:4019 chat.php:4019
msgid "Lime green"
msgstr "Зеленый лайм"
-#: chat.php:3940
+#: index.php:4020 chat.php:4020
msgid "Magenta"
msgstr "Пурпурный"
-#: chat.php:3941
+#: index.php:4021 chat.php:4021
msgid "Olive"
msgstr "Оливковый"
-#: chat.php:3942
+#: index.php:4022 chat.php:4022
msgid "Orange"
msgstr "Оранжевый"
-#: chat.php:3943
+#: index.php:4023 chat.php:4023
msgid "Orange red"
msgstr "Оранжево-красный"
-#: chat.php:3944
+#: index.php:4024 chat.php:4024
msgid "Purple"
msgstr "Фиолетовый"
-#: chat.php:3945
+#: index.php:4025 chat.php:4025
msgid "Red"
msgstr "Красный"
-#: chat.php:3946
+#: index.php:4026 chat.php:4026
msgid "Royal blue"
msgstr "Королевский синий"
-#: chat.php:3947
+#: index.php:4027 chat.php:4027
msgid "Sea green"
msgstr "Морской зеленый"
-#: chat.php:3948
+#: index.php:4028 chat.php:4028
msgid "Sienna"
msgstr "Сиена"
-#: chat.php:3949
+#: index.php:4029 chat.php:4029
msgid "Silver"
msgstr "Серебряный"
-#: chat.php:3950
+#: index.php:4030 chat.php:4030
msgid "Tan"
msgstr "Загар"
-#: chat.php:3951
+#: index.php:4031 chat.php:4031
msgid "Teal"
msgstr "Чирок"
-#: chat.php:3952
+#: index.php:4032 chat.php:4032
msgid "Violet"
msgstr "Фиолетовый"
-#: chat.php:3953
+#: index.php:4033 chat.php:4033
msgid "White"
msgstr "Белый"
-#: chat.php:3954
+#: index.php:4034 chat.php:4034
msgid "Yellow"
msgstr "Желтый"
-#: chat.php:3955
+#: index.php:4035 chat.php:4035
msgid "Yellow green"
msgstr "Желто-зеленый"
-#: chat.php:4077
+#: index.php:4157 chat.php:4157
msgid "Successfully destroyed chat"
msgstr "Чат успешно уничтожен"
-#: chat.php:4086
+#: index.php:4166 chat.php:4166
msgid ""
"Database tables already exist! To continue, you have to delete these tables "
"manually first."
@@ -1520,104 +1584,110 @@ msgstr ""
"Таблицы базы данных уже существуют! Чтобы продолжить, вы должны сначала "
"удалить эти таблицы вручную."
-#: chat.php:4089
+#: index.php:4169 chat.php:4169
msgid "A Superadmin already exists!"
msgstr "Суперадминистратор уже существует!"
-#: chat.php:4182 chat.php:4369
+#: index.php:4263 index.php:4451 chat.php:4263 chat.php:4451
#, php-format
msgid "%s - "
msgstr "%s - "
-#: chat.php:4183 chat.php:4369
+#: index.php:4264 index.php:4451 chat.php:4264 chat.php:4451
#, php-format
msgid "[M] %s - "
msgstr "[M] %s - "
-#: chat.php:4184 chat.php:4369
+#: index.php:4265 index.php:4451 chat.php:4265 chat.php:4451
#, php-format
msgid "[Staff] %s - "
msgstr "[Staff] %s - "
-#: chat.php:4185 chat.php:4369
+#: index.php:4266 index.php:4451 chat.php:4266 chat.php:4451
#, php-format
msgid "[Admin] %s - "
msgstr "[Admin] %s - "
-#: chat.php:4186 chat.php:4369
+#: index.php:4267 index.php:4451 chat.php:4267 chat.php:4451
#, php-format
msgid "[%1$s to %2$s] - "
msgstr "[%1$s to %2$s] - "
-#: chat.php:4187
+#: index.php:4268 chat.php:4268
#, php-format
msgid "%s entered the chat."
msgstr "%s вошел в чат."
-#: chat.php:4188
+#: index.php:4269 chat.php:4269
#, php-format
msgid "%s left the chat."
msgstr "%s покинул чат."
-#: chat.php:4189
+#: index.php:4270 chat.php:4270
#, php-format
msgid "%s is now a registered member."
msgstr "%s теперь зарегистрированный член."
-#: chat.php:4190
+#: index.php:4271 chat.php:4271
#, php-format
msgid "%s is now a registered applicant."
msgstr "%s теперь зарегистрированный заявитель."
-#: chat.php:4191
-#, php-format
-msgid "%s has been kicked."
+#: index.php:4272 chat.php:4272
+#, fuzzy, php-format
+#| msgid "%s has been kicked."
+msgid "%1$s has been kicked: %2$s"
msgstr "%s исключен из чата."
-#: chat.php:4192
-#, php-format
-msgid "%s have been kicked."
+#: index.php:4273 chat.php:4273
+#, fuzzy, php-format
+#| msgid "%s have been kicked."
+msgid "%1$s have been kicked: %2$s"
msgstr "%s исключены из чата."
-#: chat.php:4193
-msgid "All guests have been kicked."
+#: index.php:4274 chat.php:4274
+#, fuzzy, php-format
+#| msgid "All guests have been kicked."
+msgid "All guests have been kicked: %1$s"
msgstr "Все гости исключены из чата."
-#: chat.php:4194
+#: index.php:4275 chat.php:4275
#, php-format
msgid "%s has been cleaned."
msgstr "%s был очищен."
-#: chat.php:4202 chat.php:4396
+#: index.php:4283 index.php:4478 chat.php:4283 chat.php:4478
msgid "Temporarily disabled"
msgstr "Временно отключен"
-#: chat.php:4218 chat.php:4594
+#: index.php:4299 index.php:4676 chat.php:4299 chat.php:4676
msgid "A chat community"
msgstr ""
-#: chat.php:4256
+#: index.php:4338 chat.php:4338
msgid "Successfully registered!"
msgstr ""
-#: chat.php:4522 chat.php:4721 chat.php:4728
+#: index.php:4604 index.php:4807 index.php:4814 chat.php:4604 chat.php:4807
+#: chat.php:4814
msgid "No connection to database!"
msgstr "Нет соединения с базой данных!"
-#: chat.php:4531
+#: index.php:4613 chat.php:4613
msgid ""
"Note: Default CSS is now hardcoded and can be removed from the CSS setting"
msgstr ""
"Заметка: по установлению CSS он тяжелый и можна убрать его в CSS настройках"
-#: chat.php:4611
+#: index.php:4697 chat.php:4697
#, php-format
msgid ""
"The %s extension of PHP is required for the encryption feature. Please "
"install it first or set the encrypted setting back to false."
msgstr ""
-#: chat.php:4684 chat.php:4689 chat.php:4694
+#: index.php:4770 index.php:4775 index.php:4780 chat.php:4770 chat.php:4775
+#: chat.php:4780
#, php-format
msgid ""
"The %s extension of PHP is required for the selected database driver. Please "
@@ -1626,7 +1696,8 @@ msgstr ""
"%s расширение для PHP требуетса для драйверов базы данных. Пожалуйста "
"установите его сначала."
-#: chat.php:4707 chat.php:4715 chat.php:4719 chat.php:4726
+#: index.php:4793 index.php:4801 index.php:4805 index.php:4812 chat.php:4793
+#: chat.php:4801 chat.php:4805 chat.php:4812
msgid ""
"No connection to database, please create a database and edit the script to "
"use the correct database with given username and password!"
@@ -1635,7 +1706,7 @@ msgstr ""
"сценарий, чтобы использовать правильную базу данных с заданными именем "
"пользователя и паролем!"
-#: chat.php:4734
+#: index.php:4820 chat.php:4820
msgid ""
"The memcached extension of PHP is required for the caching feature. Please "
"install it first or set the memcached setting back to false."
diff --git a/locale/tr_TR/LC_MESSAGES/le-chat-php.po b/locale/tr_TR/LC_MESSAGES/le-chat-php.po
index 3ab01ae..fef907a 100644
--- a/locale/tr_TR/LC_MESSAGES/le-chat-php.po
+++ b/locale/tr_TR/LC_MESSAGES/le-chat-php.po
@@ -7,11 +7,11 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-01-18 21:32+0100\n"
+"POT-Creation-Date: 2025-03-29 17:02+0100\n"
"PO-Revision-Date: 2023-05-04 00:25+0000\n"
"Last-Translator: Haydar Erdoğan \n"
-"Language-Team: Turkish \n"
+"Language-Team: Turkish \n"
"Language: tr_TR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,265 +19,271 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.17\n"
-#: chat.php:261
+#: index.php:272 chat.php:272
msgid "Enable applicants"
msgstr "Başvuranları etkinleştir"
-#: chat.php:262
+#: index.php:273 index.php:2267 chat.php:273 chat.php:2267
msgid "Embed images"
msgstr "Gömülü görseller"
-#: chat.php:263 chat.php:2202
+#: index.php:274 index.php:2261 chat.php:274 chat.php:2261
msgid "Show Timestamps"
msgstr "Zaman damgalarını göster"
-#: chat.php:264
+#: index.php:275 chat.php:275
msgid "Show session-IP"
msgstr "Oturum IP\\'sini göster"
-#: chat.php:265
+#: index.php:276 chat.php:276
msgid "Members can kick, if no moderator is present"
msgstr "Eğer herhangi bir moderatör yoksa, üyeler birini atabilir"
-#: chat.php:266
+#: index.php:277 chat.php:277
msgid "Members can always kick"
msgstr "Üyeler her zaman birini atabilir"
-#: chat.php:267
+#: index.php:278 chat.php:278
msgid "Force redirection"
msgstr "Yönlendirmeye zorla"
-#: chat.php:268
+#: index.php:279 index.php:2270 chat.php:279 chat.php:2270
msgid "Incognito mode"
msgstr "Incognito modu"
-#: chat.php:269
+#: index.php:280 chat.php:280
msgid "Send mail on new public message"
msgstr "Yeni herkese açık mesajla posta gönder"
-#: chat.php:270
+#: index.php:281 chat.php:281
msgid "Fallback to waiting room, if no moderator is present to approve guests"
msgstr "Eğer konukları onaylayacak moderatör yoksa, bekleme odasına düş"
-#: chat.php:271
+#: index.php:282 chat.php:282
msgid "Disable private messages"
msgstr "Özel mesajları devre dışı bırak"
-#: chat.php:272 chat.php:2223
+#: index.php:283 index.php:2282 chat.php:283 chat.php:2282
msgid "Enable offline inbox"
msgstr "Çevrimdışı gelen kutusunu etkinleştir"
-#: chat.php:273
+#: index.php:284 chat.php:284
msgid "Show a greeting message before showing the messages"
msgstr "İletileri göstermeden önce selamlama mesajı göster"
-#: chat.php:274 chat.php:2204
+#: index.php:285 index.php:2263 chat.php:285 chat.php:2263
msgid "Sort messages from top to bottom"
msgstr "İletileri yukarıdan aşağıya doğru sırala"
-#: chat.php:275 chat.php:2205
+#: index.php:286 index.php:2264 chat.php:286 chat.php:2264
msgid "Hide list of chatters"
msgstr "Sohbet edenlerin listesini gizle"
-#: chat.php:276 chat.php:1780 chat.php:1794
+#: index.php:287 index.php:1837 index.php:1851 chat.php:287 chat.php:1837
+#: chat.php:1851
msgid "Personal notes"
msgstr "Kişisel notlar"
-#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110
+#: index.php:288 index.php:1840 index.php:1854 index.php:2169 chat.php:288
+#: chat.php:1840 chat.php:1854 chat.php:2169
msgid "Public notes"
msgstr "Kamu profiller"
-#: chat.php:278
+#: index.php:289 chat.php:289
msgid "Apply kick filter on moderators"
msgstr "Moderatörler için atma filtresini etkinleştir"
-#: chat.php:279
+#: index.php:290 chat.php:290
msgid "Show who kicks people or purges all messages."
msgstr ""
"İnsanları kimin dışarı attığını veya tüm iletileri kimin temizlediğini "
"gösterin."
-#: chat.php:280
+#: index.php:291 chat.php:291
msgid "Hide reload post box button"
msgstr "Posta kutusunu yeniden yükle düğmesini gizle"
-#: chat.php:281
+#: index.php:292 chat.php:292
msgid "Hide reload messages button"
msgstr "Mesajları yeniden yükle düğmesini gizle"
-#: chat.php:282
+#: index.php:293 chat.php:293
msgid "Hide profile button"
msgstr "Profili gizle düğmesi"
-#: chat.php:283
+#: index.php:294 chat.php:294
msgid "Hide admin button"
msgstr "Yönetici düğmesini gizle"
-#: chat.php:284
+#: index.php:295 chat.php:295
msgid "Hide notes button"
msgstr "Notları gizle düğmesi"
-#: chat.php:285
+#: index.php:296 chat.php:296
msgid "Hide clone button"
msgstr "Klon düğmesini gizle"
-#: chat.php:286
+#: index.php:297 chat.php:297
msgid "Hide rearrange button"
msgstr "Yeniden düzenleme düğmesini gizle"
-#: chat.php:287
+#: index.php:298 chat.php:298
msgid "Hide help button"
msgstr "Yardım düğmesini gizle"
-#: chat.php:288
+#: index.php:299 chat.php:299
msgid "Apply postbox delete button globally"
msgstr "Posta kutusu silme düğmesini genel olarak uygula"
-#: chat.php:289
+#: index.php:300 chat.php:300
msgid "Allow enhancing functionality with JavaScript"
msgstr "JavaScript ile işlevselliği geliştirmeye izin ver"
-#: chat.php:292 chat.php:2170
+#: index.php:303 index.php:2229 chat.php:303 chat.php:2229
msgid "Background colour"
msgstr "Arkaplan rengi"
-#: chat.php:293 chat.php:2167
+#: index.php:304 index.php:2226 chat.php:304 chat.php:2226
msgid "Font colour"
msgstr "Yazı tipi rengi"
-#: chat.php:296
+#: index.php:307 chat.php:307
msgid "Entrance"
msgstr "Giriş"
-#: chat.php:297
+#: index.php:308 chat.php:308
msgid "Leaving"
msgstr "Ayrılınıyor"
-#: chat.php:298
+#: index.php:309 chat.php:309
msgid "Member registered"
msgstr "Üye kaydedildi"
-#: chat.php:299
+#: index.php:310 chat.php:310
msgid "Applicant registered"
msgstr "Başvuru kaydedildi"
-#: chat.php:300
+#: index.php:311 chat.php:311
msgid "Kicked"
msgstr "Atıldı"
-#: chat.php:301
+#: index.php:312 chat.php:312
msgid "Multiple kicked"
msgstr "Toplu atıldı"
-#: chat.php:302
+#: index.php:313 chat.php:313
msgid "All kicked"
msgstr "Hepsi atıldı"
-#: chat.php:303
+#: index.php:314 chat.php:314
msgid "Room cleaned"
msgstr "Oda temizlendi"
-#: chat.php:304
+#: index.php:315 chat.php:315
msgid "Message to all"
msgstr "Herkese gönder"
-#: chat.php:305
+#: index.php:316 chat.php:316
msgid "Message to members only"
msgstr "Sadece üyelere gönder"
-#: chat.php:306
+#: index.php:317 chat.php:317
msgid "Message to staff only"
msgstr "Sadece yetkililere gönder"
-#: chat.php:307
+#: index.php:318 chat.php:318
msgid "Message to admins only"
msgstr "Sadece yöneticilere gönder"
-#: chat.php:308
+#: index.php:319 chat.php:319
msgid "Private message"
msgstr "Özel ileti"
-#: chat.php:309
+#: index.php:320 chat.php:320
msgid "Attachement"
msgstr "Ek"
-#: chat.php:312
+#: index.php:323 chat.php:323
msgid "Member timeout (minutes)"
msgstr "Üye zaman aşımı (dakika)"
-#: chat.php:313
+#: index.php:324 chat.php:324
msgid "Guest timeout (minutes)"
msgstr "Konuk zaman aşımı (dakika)"
-#: chat.php:314
+#: index.php:325 chat.php:325
msgid "Kick penalty (minutes)"
msgstr "Atım cezası (dakika)"
-#: chat.php:315
+#: index.php:326 chat.php:326
msgid "Waiting room time (seconds)"
msgstr "Bekleme odası zamanı (saniye)"
-#: chat.php:316
+#: index.php:327 chat.php:327
+msgid "Logout delay (seconds)"
+msgstr ""
+
+#: index.php:328 chat.php:328
msgid "Captcha timeout (seconds)"
msgstr "Captcha zaman aşımı (saniye)"
-#: chat.php:317
+#: index.php:329 chat.php:329
msgid "Message timeout (minutes)"
msgstr "İleti zaman aşımı (dakika)"
-#: chat.php:318
+#: index.php:330 chat.php:330
msgid "Message limit (public)"
msgstr "İleti sınırı (herkese açık)"
-#: chat.php:319
+#: index.php:331 chat.php:331
msgid "Maximal message length"
msgstr "Maksimum ileti uzunluğu"
-#: chat.php:320
+#: index.php:332 chat.php:332
msgid "Maximal nickname length"
msgstr "Maksimum şifre uzunluğu"
-#: chat.php:321
+#: index.php:333 chat.php:333
msgid "Minimal password length"
msgstr "Minimum şifre uzunluğu"
-#: chat.php:322
+#: index.php:334 chat.php:334
msgid "Default message reload time (seconds)"
msgstr "Varsayılan mesaj yenileme süresi (saniye)"
-#: chat.php:323
+#: index.php:335 chat.php:335
msgid "Number of notes revisions to keep"
msgstr "Saklanacak not revizyonlarının sayısı"
-#: chat.php:324
+#: index.php:336 chat.php:336
msgid "Maximum upload size in KB"
msgstr "KB olarak en fazla yükleme boyutu"
-#: chat.php:325
+#: index.php:337 chat.php:337
msgid "Enable file uploads"
msgstr "Dosya yüklemelerine izin ver"
-#: chat.php:326
+#: index.php:338 chat.php:338
msgid "Lowest refresh rate"
msgstr "En düşük yenileme hızı"
-#: chat.php:327
+#: index.php:339 chat.php:339
msgid "Highest refresh rate"
msgstr "En yüksek yenileme hızı"
-#: chat.php:330
+#: index.php:342 chat.php:342
msgid "Rules (html)"
msgstr "Kurallar (html)"
-#: chat.php:331
+#: index.php:343 chat.php:343
msgid "CSS Style"
msgstr "CSS Stili"
-#: chat.php:332
+#: index.php:344 chat.php:344
msgid "Chat disabled message (html)"
msgstr "Sohbet mesajı devre dışı bıraktı (html)"
-#: chat.php:335
+#: index.php:347 chat.php:347
msgid ""
"Date "
@@ -287,88 +293,96 @@ msgstr ""
"php#refsect1-function.date-parameters\" rel=\"noopener noreferrer\">Tarih "
"biçimlendirme"
-#: chat.php:336
+#: index.php:348 chat.php:348
msgid "Characters used in Captcha"
msgstr "Captcha'da kullanılan harfler"
-#: chat.php:337
+#: index.php:349 chat.php:349
msgid "Custom redirection script"
msgstr "Özel yönlendirme script'i"
-#: chat.php:338
+#: index.php:350 chat.php:350
msgid "Chat name"
msgstr "Sohbet ismi"
-#: chat.php:339
+#: index.php:351 chat.php:351
msgid "Send mail using this address"
msgstr "Bu adresi kullanarak posta gönder"
-#: chat.php:340
+#: index.php:352 chat.php:352
msgid "Send mail to this address"
msgstr "Bu adrese posta gönder"
-#: chat.php:341
+#: index.php:353 chat.php:353
msgid "Nickname regex"
msgstr "Kullanıcı adı regex"
-#: chat.php:342
+#: index.php:354 chat.php:354
msgid "Password regex"
msgstr "Şifre regex"
-#: chat.php:343
+#: index.php:355 chat.php:355
msgid "Link to external CSS file (on your own server)"
msgstr "Dış CSS dosyasının bağlantısı"
-#: chat.php:344
+#: index.php:356 chat.php:356
msgid "Meta description (best 50 - 160 characters for SEO)"
msgstr "Meta açıklama (SEO için en iyi 50 - 160 karakter)"
-#: chat.php:345
+#: index.php:357 chat.php:357
+msgid "Show this text when a user's logout is delayed"
+msgstr ""
+
+#: index.php:358 chat.php:358
msgid "Prepend this text to system messages"
msgstr "Bu metin, sistemden gelen iletilerden önce gelir"
-#: chat.php:348 chat.php:728 chat.php:1225
+#: index.php:361 index.php:780 index.php:1282 chat.php:361 chat.php:780
+#: chat.php:1282
msgid "Change Guestaccess"
msgstr "Konuk erişimini değiştir"
-#: chat.php:349
+#: index.php:362 chat.php:362
msgid "Enable global Password"
msgstr "Genel Parolayı etkinleştir"
-#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433
+#: index.php:363 index.php:810 index.php:2474 index.php:2492 chat.php:363
+#: chat.php:810 chat.php:2474 chat.php:2492
msgid "Global Password:"
msgstr "Global şifre:"
-#: chat.php:351 chat.php:819
+#: index.php:364 index.php:871 chat.php:364 chat.php:871
msgid "Captcha"
msgstr "Captcha"
-#: chat.php:352 chat.php:775 chat.php:835
+#: index.php:365 index.php:827 index.php:887 chat.php:365 chat.php:827
+#: chat.php:887
msgid "Only for guests"
msgstr "Sadece konuklar için"
-#: chat.php:353 chat.php:1220
+#: index.php:366 index.php:1277 chat.php:366 chat.php:1277
msgid "Topic"
msgstr "Konu"
-#: chat.php:354 chat.php:781
+#: index.php:367 index.php:833 chat.php:367 chat.php:833
msgid "Let guests register themselves"
msgstr "Konukların kendilerini kayıt etmelerine izin ver"
-#: chat.php:355 chat.php:862
+#: index.php:368 index.php:919 chat.php:368 chat.php:919
msgid "Default time zone"
msgstr "Varsayılan zaman dilimi"
-#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259
+#: index.php:581 index.php:1157 index.php:4158 index.php:4341 chat.php:581
+#: chat.php:1157 chat.php:4158 chat.php:4341
msgid "Initial Setup"
msgstr "İlk kurulum"
-#: chat.php:588
+#: index.php:601 chat.php:601
#, php-format
msgid "Redirecting to: %s"
msgstr "Şuna yönlendiriliyor: %s"
-#: chat.php:595
+#: index.php:608 chat.php:608
#, php-format
msgid ""
"Dangerous non-http link requested, copy paste this link if you are really "
@@ -377,198 +391,216 @@ msgstr ""
"Tehlikeli HTTP olmayan bağlantı istenildi, eğer eminseniz bu bağlantıyı "
"kopyalayıp yapıştırın: %s"
-#: chat.php:597
+#: index.php:610 chat.php:610
#, php-format
msgid "Non-http link requested: %s"
msgstr "HTTP olmayan bağlantı istenildi: %s"
-#: chat.php:599
+#: index.php:612 chat.php:612
#, php-format
msgid "If it's not working, try this one: %s"
msgstr "Eğer çalışmıyorsa, bunu deneyin: %s"
-#: chat.php:609
+#: index.php:622 chat.php:622
msgid "Access denied"
msgstr "Erişin reddedildi"
-#: chat.php:609
+#: index.php:622 chat.php:622
#, php-format
msgid "You are logged in as %s and don't have access to this section."
msgstr "%s olarak giriş yaptınız ve bu bölüme erişiminiz yok."
-#: chat.php:611 chat.php:915 chat.php:1211 chat.php:1393
+#: index.php:624 index.php:972 index.php:1268 index.php:1450 chat.php:624
+#: chat.php:972 chat.php:1268 chat.php:1450
msgid "Logout"
msgstr "Çıkış Yap"
-#: chat.php:636
+#: index.php:649 chat.php:649
msgid "Copy:"
msgstr "Kopyala:"
-#: chat.php:724
+#: index.php:776 chat.php:776
msgid "Chat Setup"
msgstr "Sohbet kurulumu"
-#: chat.php:734 chat.php:1233
+#: index.php:786 index.php:1290 chat.php:786 chat.php:1290
msgid "Allow"
msgstr "İzin ver"
-#: chat.php:739 chat.php:1238
+#: index.php:791 index.php:1295 chat.php:791 chat.php:1295
msgid "Allow with waitingroom"
msgstr "Bekleme odasına izin ver"
-#: chat.php:744 chat.php:1243
+#: index.php:796 index.php:1300 chat.php:796 chat.php:1300
msgid "Require moderator approval"
msgstr "Moderatör onayı gerekiyor"
-#: chat.php:749 chat.php:1248
+#: index.php:801 index.php:1305 chat.php:801 chat.php:1305
msgid "Only members"
msgstr "Sadece üyeler"
-#: chat.php:754 chat.php:1251
+#: index.php:806 index.php:1308 chat.php:806 chat.php:1308
msgid "Disable chat"
msgstr "Sohbeti devre dışı bırak"
-#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229
+#: index.php:817 index.php:839 index.php:894 index.php:953 index.php:2288
+#: chat.php:817 chat.php:839 chat.php:894 chat.php:953 chat.php:2288
msgid "Disabled"
msgstr "Devre dışı"
-#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219
+#: index.php:822 index.php:882 index.php:958 index.php:2278 chat.php:822
+#: chat.php:882 chat.php:958 chat.php:2278
msgid "Enabled"
msgstr "Etkinleştirildi"
-#: chat.php:792
+#: index.php:844 chat.php:844
msgid "As applicant"
msgstr "Başvuru sahibi olarak"
-#: chat.php:797
+#: index.php:849 chat.php:849
msgid "As member"
msgstr "Üye olarak"
-#: chat.php:800
+#: index.php:852 chat.php:852
msgid "System messages"
msgstr "Sistem iletileri"
-#: chat.php:822 chat.php:1053
+#: index.php:874 index.php:1110 chat.php:874 chat.php:1110
#, php-format
msgid ""
"The %s extension of PHP is required for this feature. Please install it "
"first."
msgstr "Bu özellik için PHP'nin %s uzantısı gerekiyor. Lütfen önce onu kurun."
-#: chat.php:847
+#: index.php:899 chat.php:899
msgid "Simple"
msgstr "Basit"
-#: chat.php:852
+#: index.php:904 chat.php:904
msgid "Moderate"
msgstr "Orta"
-#: chat.php:857
+#: index.php:909 chat.php:909
+msgid "Hard"
+msgstr ""
+
+#: index.php:914 chat.php:914
msgid "Extreme"
msgstr "Aşırı"
-#: chat.php:906 chat.php:1548 chat.php:1610
+#: index.php:963 index.php:1605 index.php:1667 chat.php:963 chat.php:1605
+#: chat.php:1667
msgid "Apply"
msgstr "Uygula"
-#: chat.php:910 chat.php:1050
+#: index.php:967 index.php:1107 chat.php:967 chat.php:1107
msgid "Backup and restore"
msgstr "Yedekle ve onar"
-#: chat.php:912
+#: index.php:969 chat.php:969
msgid "Destroy chat"
msgstr "Sohbeti yok et"
-#: chat.php:1057 chat.php:1066
+#: index.php:1114 index.php:1123 chat.php:1114 chat.php:1123
msgid "Settings"
msgstr "Ayarlar"
-#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575
-#: chat.php:1622
+#: index.php:1115 index.php:1124 index.php:1269 index.php:1595 index.php:1632
+#: index.php:1679 chat.php:1115 chat.php:1124 chat.php:1269 chat.php:1595
+#: chat.php:1632 chat.php:1679
msgid "Filter"
msgstr "Filtrele"
-#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538
+#: index.php:1116 index.php:1125 index.php:1325 index.php:2600 chat.php:1116
+#: chat.php:1125 chat.php:1325 chat.php:2600
msgid "Members"
msgstr "Üyeler"
-#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322
+#: index.php:1117 index.php:1126 index.php:2373 index.php:2381 chat.php:1117
+#: chat.php:1126 chat.php:2373 chat.php:2381
msgid "Notes"
msgstr "Notlar"
-#: chat.php:1061
+#: index.php:1118 chat.php:1118
msgid "Backup"
msgstr "Yedekle"
-#: chat.php:1070
+#: index.php:1127 chat.php:1127
msgid "Restore"
msgstr "Onar"
-#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260
+#: index.php:1131 index.php:1174 index.php:1212 index.php:1242 index.php:4342
+#: chat.php:1131 chat.php:1174 chat.php:1212 chat.php:1242 chat.php:4342
msgid "Go to the Setup-Page"
msgstr "Kurulum sayfasına git"
-#: chat.php:1082 chat.php:1091 chat.php:1949
+#: index.php:1139 index.php:1148 index.php:2006 chat.php:1139 chat.php:1148
+#: chat.php:2006
msgid "Are you sure?"
msgstr "Emin misiniz?"
-#: chat.php:1083 chat.php:1092 chat.php:1956
+#: index.php:1140 index.php:1149 index.php:2013 chat.php:1140 chat.php:1149
+#: chat.php:2013
msgid "Yes"
msgstr "Evet"
-#: chat.php:1084 chat.php:1093 chat.php:1963
+#: index.php:1141 index.php:1150 index.php:2020 chat.php:1141 chat.php:1150
+#: chat.php:2020
msgid "No"
msgstr "Hayır"
-#: chat.php:1101 chat.php:4259
+#: index.php:1158 index.php:4341 chat.php:1158 chat.php:4341
msgid "Superadmin Login"
msgstr "Superadmin Girişi"
-#: chat.php:1102
+#: index.php:1159 chat.php:1159
msgid "Superadmin Nickname:"
msgstr "Superadmin Kullanıcı adı:"
-#: chat.php:1103
+#: index.php:1160 chat.php:1160
msgid "Superadmin Password:"
msgstr "Superadmin Şifre:"
-#: chat.php:1104
+#: index.php:1161 chat.php:1161
msgid "Confirm Password:"
msgstr "Şifreyi doğrula:"
-#: chat.php:1105
+#: index.php:1162 chat.php:1162
msgid "Initialise Chat"
msgstr "Sohbeti Başlat"
-#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439
+#: index.php:1163 index.php:1187 index.php:1213 index.php:2336 index.php:2498
+#: chat.php:1163 chat.php:1187 chat.php:1213 chat.php:2336 chat.php:2498
msgid "Change language:"
msgstr "Dili değiştir:"
-#: chat.php:1117
+#: index.php:1174 chat.php:1174
msgid "Database successfully updated!"
msgstr "Veritabanı başarıyla güncellendi!"
-#: chat.php:1125 chat.php:1326 chat.php:2407
+#: index.php:1182 index.php:1383 index.php:2466 chat.php:1182 chat.php:1383
+#: chat.php:2466
msgid "Nickname:"
msgstr "Kullanıcı adı:"
-#: chat.php:1126 chat.php:1327 chat.php:2408
+#: index.php:1183 index.php:1384 index.php:2467 chat.php:1183 chat.php:1384
+#: chat.php:2467
msgid "Password:"
msgstr "Şifre:"
-#: chat.php:1128
+#: index.php:1185 chat.php:1185
msgid "Login"
msgstr "Giriş"
-#: chat.php:1129
+#: index.php:1186 chat.php:1186
msgid "Forgot login?"
msgstr "Oturum açmayı mı unuttunuz?"
-#: chat.php:1142 chat.php:1306
+#: index.php:1199 index.php:1363 chat.php:1199 chat.php:1363
msgid "Reset password"
msgstr "Şifreyi değiştir"
-#: chat.php:1150
+#: index.php:1207 chat.php:1207
#, php-format
msgid ""
"Successfully reset password for username %s. Please remove the password "
@@ -577,7 +609,7 @@ msgstr ""
"%s kullanıcı adının şifresi başarıyla sıfırlandı. Lütfen şifre sıfırlama "
"tanımını komut dosyasından tekrar kaldırın."
-#: chat.php:1153
+#: index.php:1210 chat.php:1210
msgid ""
"Please modify the script and put the following at the bottom of it (change "
"the password). Then refresh this page: define('RESET_SUPERADMIN_PASSWORD', "
@@ -587,205 +619,214 @@ msgstr ""
"Ardından bu sayfayı yenileyin: define('RESET SUPERADMIN PASSWORD', "
"'changeme');"
-#: chat.php:1169 chat.php:1193 chat.php:1258 chat.php:1270 chat.php:1294
-#: chat.php:1308 chat.php:1316 chat.php:2145 chat.php:2153
+#: index.php:1226 index.php:1250 index.php:1315 index.php:1327 index.php:1351
+#: index.php:1365 index.php:1373 index.php:2204 index.php:2212 chat.php:1226
+#: chat.php:1250 chat.php:1315 chat.php:1327 chat.php:1351 chat.php:1365
+#: chat.php:1373 chat.php:2204 chat.php:2212
msgid "(choose)"
msgstr "(seç)"
-#: chat.php:1170
+#: index.php:1227 chat.php:1227
msgid "All guests"
msgstr "Tüm konuklar"
-#: chat.php:1182
+#: index.php:1239 chat.php:1239
msgid "Administrative functions"
msgstr "Yönetici işlemleri"
-#: chat.php:1188
+#: index.php:1245 chat.php:1245
msgid "Clean messages"
msgstr "İletileri temizle"
-#: chat.php:1191
+#: index.php:1248 chat.php:1248
msgid "Whole room"
msgstr "Tüm oda"
-#: chat.php:1192
+#: index.php:1249 chat.php:1249
msgid "Selection"
msgstr "Seçim"
-#: chat.php:1193
+#: index.php:1250 chat.php:1250
msgid "Following nickname:"
msgstr "Şu kullanıcı adını:"
-#: chat.php:1200
+#: index.php:1257 chat.php:1257
msgid "Clean"
msgstr "Temizle"
-#: chat.php:1202
+#: index.php:1259 chat.php:1259
#, php-format
msgid "Kick Chatter (%d minutes)"
msgstr "Kullanıcıyı at (%d dakika)"
-#: chat.php:1204
+#: index.php:1261 chat.php:1261
msgid "Kickmessage:"
msgstr "Atılma nedeni:"
-#: chat.php:1205
+#: index.php:1262 chat.php:1262
msgid "Purge messages"
msgstr "İletileri temizle"
-#: chat.php:1206 chat.php:1388 chat.php:1546 chat.php:1580 chat.php:1591
-#: chat.php:2042
+#: index.php:1263 index.php:1445 index.php:1603 index.php:1637 index.php:1648
+#: index.php:2101 chat.php:1263 chat.php:1445 chat.php:1603 chat.php:1637
+#: chat.php:1648 chat.php:2101
msgid "Kick"
msgstr "At"
-#: chat.php:1208
+#: index.php:1265 chat.php:1265
msgid "Logout inactive Chatter"
msgstr "İnaktif kişiyi oturumdan çıkar"
-#: chat.php:1212
+#: index.php:1269 chat.php:1269
msgid "View active sessions"
msgstr "Aktif oturumlara bak"
-#: chat.php:1212 chat.php:1603
+#: index.php:1269 index.php:1660 chat.php:1269 chat.php:1660
msgid "Linkfilter"
msgstr "Bağlantı filtresi"
-#: chat.php:1217
+#: index.php:1274 chat.php:1274
msgid "View"
msgstr "Görüntüle"
-#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582
-#: chat.php:1626
+#: index.php:1280 index.php:1310 index.php:1361 index.php:1369 index.php:1639
+#: index.php:1683 chat.php:1280 chat.php:1310 chat.php:1361 chat.php:1369
+#: chat.php:1639 chat.php:1683
msgid "Change"
msgstr "Değiştir"
-#: chat.php:1256
+#: index.php:1313 chat.php:1313
msgid "Register applicant"
msgstr "Başvuru kayıt et"
-#: chat.php:1264 chat.php:1322 chat.php:1328
+#: index.php:1321 index.php:1379 index.php:1385 chat.php:1321 chat.php:1379
+#: chat.php:1385
msgid "Register"
msgstr "Kayıt ol"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Delete from database"
msgstr "Veritabanından sil"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Deny access (!)"
msgstr "Erişimi reddet (!)"
-#: chat.php:1296
+#: index.php:1353 chat.php:1353
msgid "Set to applicant (SG)"
msgstr "Başvuru sahibine ayarla (SG)"
-#: chat.php:1298
+#: index.php:1355 chat.php:1355
msgid "Set to regular member"
msgstr "Normal üye yap"
-#: chat.php:1299
+#: index.php:1356 chat.php:1356
msgid "Set to moderator (M)"
msgstr "Moderatör yap (Ü)"
-#: chat.php:1300
+#: index.php:1357 chat.php:1357
msgid "Set to supermod (SM)"
msgstr "Süpermod yap (SM)"
-#: chat.php:1302
+#: index.php:1359 chat.php:1359
msgid "Set to admin (A)"
msgstr "Yönetici yap (Y)"
-#: chat.php:1314
+#: index.php:1371 chat.php:1371
msgid "Register Guest"
msgstr "Misafir kaydet"
-#: chat.php:1324
+#: index.php:1381 chat.php:1381
msgid "Register new Member"
msgstr "Yeni Üye kaydet"
-#: chat.php:1332 chat.php:1408 chat.php:1595 chat.php:1636 chat.php:1710
-#: chat.php:1924
+#: index.php:1389 index.php:1465 index.php:1652 index.php:1693 index.php:1767
+#: index.php:1981 chat.php:1389 chat.php:1465 chat.php:1652 chat.php:1693
+#: chat.php:1767 chat.php:1981
msgid "Reload"
msgstr "Yenile"
-#: chat.php:1345
+#: index.php:1402 chat.php:1402
msgid "Active Sessions"
msgstr "Aktif Oturumlar"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "Nickname"
msgstr "Kullanıcı adı"
-#: chat.php:1346
+#: index.php:1403 chat.php:1403
msgid "Timeout in"
msgstr "Zaman aşımı"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "User-Agent"
msgstr "User-Agent"
-#: chat.php:1350
+#: index.php:1407 chat.php:1407
msgid "IP-Address"
msgstr "IP Adresi"
-#: chat.php:1351
+#: index.php:1408 chat.php:1408
msgid "Actions"
msgstr "Eylemler"
-#: chat.php:1393
+#: index.php:1450 chat.php:1450
msgid "Unban"
msgstr "Yasaklamayı kaldır"
-#: chat.php:1416
+#: index.php:1473 chat.php:1473
msgid "Incorrect regular expression!"
msgstr "Yanlış normal ifade!"
-#: chat.php:1416 chat.php:1424
+#: index.php:1473 index.php:1481 chat.php:1473 chat.php:1481
#, php-format
msgid "Your match was as follows: %s"
msgstr "Eşleşmeniz aşağıdaki gibiydi: %s"
-#: chat.php:1424
+#: index.php:1481 chat.php:1481
msgid ""
"Your match was too long. You can use max. 255 characters. Try splitting it "
"up."
msgstr ""
"Eşleşmeniz çok uzundu. En fazla 255 harf kullanabilirsiniz. Bölmeyi deneyin."
-#: chat.php:1541 chat.php:1606
+#: index.php:1598 index.php:1663 chat.php:1598 chat.php:1663
msgid "Filter ID:"
msgstr "ID Filtrele:"
-#: chat.php:1542 chat.php:1607
+#: index.php:1599 index.php:1664 chat.php:1599 chat.php:1664
msgid "Match"
msgstr "Eşleş"
-#: chat.php:1543 chat.php:1608
+#: index.php:1600 index.php:1665 chat.php:1600 chat.php:1665
msgid "Replace"
msgstr "Değiştir"
-#: chat.php:1544 chat.php:1578 chat.php:1589
+#: index.php:1601 index.php:1635 index.php:1646 chat.php:1601 chat.php:1635
+#: chat.php:1646
msgid "Allow in PM"
msgstr "PM'ye izin ver"
-#: chat.php:1545 chat.php:1579 chat.php:1590 chat.php:1609 chat.php:1625
-#: chat.php:1633
+#: index.php:1602 index.php:1636 index.php:1647 index.php:1666 index.php:1682
+#: index.php:1690 chat.php:1602 chat.php:1636 chat.php:1647 chat.php:1666
+#: chat.php:1682 chat.php:1690
msgid "Regex"
msgstr "Normal ifade"
-#: chat.php:1547 chat.php:1581 chat.php:1592
+#: index.php:1604 index.php:1638 index.php:1649 chat.php:1604 chat.php:1638
+#: chat.php:1649
msgid "Case sensitive"
msgstr "Büyük harf/küçük harf duyarlı"
-#: chat.php:1586 chat.php:1630
+#: index.php:1643 index.php:1687 chat.php:1643 chat.php:1687
msgid "New filter:"
msgstr "Yeni filtre:"
-#: chat.php:1593 chat.php:1634
+#: index.php:1650 index.php:1691 chat.php:1650 chat.php:1691
msgid "Add"
msgstr "Ekle"
-#: chat.php:1691
+#: index.php:1748 chat.php:1748
msgid ""
"This chat uses frames. Please enable frames in your browser or use a "
"suitable one!"
@@ -793,96 +834,99 @@ msgstr ""
"Bu sohbet çerçeveleri kullanıyor. Please enable frames in your "
"browser or use a suitable one!"
-#: chat.php:1691 chat.php:2370 chat.php:2457
+#: index.php:1748 index.php:2429 index.php:2516 chat.php:1748 chat.php:2429
+#: chat.php:2516
msgid "Back to the login page."
msgstr "Giriş ekranına geri dön."
-#: chat.php:1709
+#: index.php:1766 chat.php:1766
msgid "Bottom"
msgstr "Alt"
-#: chat.php:1710
+#: index.php:1767 chat.php:1767
msgid "Manual refresh required"
msgstr "Manuel yenileme gerekli"
-#: chat.php:1726
+#: index.php:1783 chat.php:1783
msgid "Top"
msgstr "Üst"
-#: chat.php:1734 chat.php:1940 chat.php:1942
+#: index.php:1791 index.php:1997 index.php:1999 chat.php:1791 chat.php:1997
+#: chat.php:1999
msgid "Delete selected messages"
msgstr "Seçili iletileri sil"
-#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281
+#: index.php:1818 index.php:1945 index.php:2160 index.php:2340 chat.php:1818
+#: chat.php:1945 chat.php:2160 chat.php:2340
msgid "Back to the chat."
msgstr "Sohbete geri dön."
-#: chat.php:1774 chat.php:1791
+#: index.php:1831 index.php:1848 chat.php:1831 chat.php:1848
msgid "Admin notes"
msgstr "Yönetici notları"
-#: chat.php:1777 chat.php:1788
+#: index.php:1834 index.php:1845 chat.php:1834 chat.php:1845
msgid "Staff notes"
msgstr "Yetkili notları"
-#: chat.php:1811
+#: index.php:1868 chat.php:1868
msgid "Notes saved!"
msgstr "Notlar kaydedildi!"
-#: chat.php:1835 chat.php:2122
+#: index.php:1892 index.php:2181 chat.php:1892 chat.php:2181
#, php-format
msgid "Last edited by %1$s at %2$s"
msgstr "Son düzenleme %1$s tarafından %2$s tarihinde"
-#: chat.php:1848
+#: index.php:1905 chat.php:1905
msgid "Save notes"
msgstr "Notları kaydet"
-#: chat.php:1850
+#: index.php:1907 chat.php:1907
msgid "Revisions:"
msgstr "Revizyonlar:"
-#: chat.php:1853
+#: index.php:1910 chat.php:1910
msgid "Older"
msgstr "Daha eski"
-#: chat.php:1857
+#: index.php:1914 chat.php:1914
msgid "Newer"
msgstr "Daha yeni"
-#: chat.php:1868 chat.php:1914
+#: index.php:1925 index.php:1971 chat.php:1925 chat.php:1971
msgid "Waiting room"
msgstr "Bekleme odası"
-#: chat.php:1880
+#: index.php:1937 chat.php:1937
msgid "Allow checked"
msgstr "Kontrol edilenlere izin ver"
-#: chat.php:1881
+#: index.php:1938 chat.php:1938
msgid "Allow all"
msgstr "Hepsine izin ver"
-#: chat.php:1882
+#: index.php:1939 chat.php:1939
msgid "Deny checked"
msgstr "Kontrol edilenleri reddet"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Deny all"
msgstr "Hepsini reddet"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Send message to denied:"
msgstr "Reddedilene ileti gönder:"
-#: chat.php:1884
+#: index.php:1941 chat.php:1941
msgid "Submit"
msgstr "Gönder"
-#: chat.php:1886
+#: index.php:1943 chat.php:1943
msgid "No more entry requests to approve."
msgstr "Onaylanacak daha fazla giriş isteği yok."
-#: chat.php:1916
+#: index.php:1973 chat.php:1973
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat in %2$d "
@@ -891,7 +935,7 @@ msgstr ""
"Hoş geldiniz %1$s, girişiniz geciktirildi, sohbete %2$d saniye içinde "
"erişebilirsiniz."
-#: chat.php:1918
+#: index.php:1975 chat.php:1975
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat as soon, "
@@ -900,7 +944,7 @@ msgstr ""
"Hoş geldiniz %1$s, girişiniz geciktirildi, sohbete bir moderatör girmenize "
"izin verirse erişebilirsiniz."
-#: chat.php:1921
+#: index.php:1978 chat.php:1978
#, php-format
msgid ""
"If this page doesn't refresh every %d seconds, use the button below to "
@@ -909,64 +953,69 @@ msgstr ""
"Eğer sayfa %d saniye içinde yenilenmiyorsa, elinizle yenilemek için alttaki "
"düğmeyi kullanın!"
-#: chat.php:1926 chat.php:2339
+#: index.php:1983 index.php:2398 chat.php:1983 chat.php:2398
msgid "Exit Chat"
msgstr "Sohbetten çık"
-#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430
+#: index.php:1986 index.php:2133 index.php:2144 index.php:2489 chat.php:1986
+#: chat.php:2133 chat.php:2144 chat.php:2489
msgid "Rules"
msgstr "Kurallar"
-#: chat.php:1985
+#: index.php:2042 chat.php:2042
msgid "Send to"
msgstr "Şuna gönder"
-#: chat.php:1990
+#: index.php:2047 chat.php:2047
msgid "All chatters"
msgstr "Tüm kullanıcılar"
-#: chat.php:1996
+#: index.php:2053 chat.php:2053
msgid "Members only"
msgstr "Sadece üyeler"
-#: chat.php:2003
+#: index.php:2060 chat.php:2060
msgid "Staff only"
msgstr "Sadece yetkililer"
-#: chat.php:2010
+#: index.php:2067 chat.php:2067
msgid "Admin only"
msgstr "Sadece yönetici"
-#: chat.php:2019
+#: index.php:2076 chat.php:2076
msgid "(offline)"
msgstr "(çevrimdışı)"
-#: chat.php:2043
+#: index.php:2078 chat.php:2078
+msgid "(logging out)"
+msgstr ""
+
+#: index.php:2102 chat.php:2102
msgid "Also purge messages"
msgstr "Ayrıca iletileri temizle"
-#: chat.php:2050
+#: index.php:2109 chat.php:2109
msgid "Delete last message"
msgstr "Son iletiyi sil"
-#: chat.php:2055
+#: index.php:2114 chat.php:2114
msgid "Delete all messages"
msgstr "Tüm iletileri sil"
-#: chat.php:2057
+#: index.php:2116 chat.php:2116
msgid "Switch to single-line"
msgstr "Tek-satıra geç"
-#: chat.php:2059
+#: index.php:2118 chat.php:2118
msgid "Switch to multi-line"
msgstr "Çoklu-satıra geç"
-#: chat.php:2070
+#: index.php:2129 chat.php:2129
#, php-format
msgid "Welcome %s!"
msgstr "Hoş geldin %s!"
-#: chat.php:2071
+#: index.php:2130 chat.php:2130
#, php-format
msgid ""
"If this frame does not reload in %d seconds, you'll have to enable automatic "
@@ -983,11 +1032,11 @@ msgstr ""
"verilebilir Geçici bir çözüm olarak (veya sunucu/proxy yenileme hataları "
"olursa) her zaman aşağıdaki düğmeler ile manuel olarak yenileyebilirsiniz."
-#: chat.php:2087
+#: index.php:2146 chat.php:2146
msgid "Help"
msgstr "Yardım"
-#: chat.php:2088
+#: index.php:2147 chat.php:2147
msgid ""
"All functions should be pretty much self-explaining, just use the buttons. "
"In your profile you can adjust the refresh rate and font colour, as well as "
@@ -999,7 +1048,7 @@ msgstr ""
"ardı edebilirsiniz. Not: Bu bir sohbet, eğer konuşmayı "
"bırakırsanız, bir süre sonra otomatik olarak oturumdan atılırsınız."
-#: chat.php:2090
+#: index.php:2149 chat.php:2149
msgid ""
"If you want to embed an image in your post, simply put [img] in front of "
"your image URL. Example: [img]http://example.com/images/file.jpg will embed "
@@ -1009,7 +1058,7 @@ msgstr ""
"URL'sinin önüne [img] koyun. Örnek: [img]http://example.com/images/file.jpg "
"yazmak iletinizdeki görseli ekler."
-#: chat.php:2093
+#: index.php:2152 chat.php:2152
msgid ""
"Members: You'll have some more options in your profile. You can adjust your "
"font face, change your password anytime and of course you can delete your "
@@ -1019,7 +1068,7 @@ msgstr ""
"şifrenizi istediğiniz zaman değiştirebilir ve tabii ki hesabınızı "
"silebilirsiniz."
-#: chat.php:2095
+#: index.php:2154 chat.php:2154
msgid ""
"Moderators: Notice the Admin-button at the bottom. It'll bring up a page "
"where you can clean the room, kick chatters, view all active sessions and "
@@ -1029,7 +1078,7 @@ msgstr ""
"temizleyebileceğiniz, kişileri atabileceğiniz, aktif oturumları "
"görebileceğiniz ve konuk erişimini kapatabileceğiniz bir sayfa gelecektir."
-#: chat.php:2097
+#: index.php:2156 chat.php:2156
msgid ""
"Admins: You'll be furthermore able to register guests, edit members and "
"register new nicknames."
@@ -1037,226 +1086,232 @@ msgstr ""
"Yöneticiler: Konukları kaydedebilir, üyeleri düzenleyebilir ve yeni "
"kullanıcı adları kaydedebilirsiniz."
-#: chat.php:2135
+#: index.php:2194 chat.php:2194
msgid "Your Profile"
msgstr "Profiliniz"
-#: chat.php:2144
+#: index.php:2203 chat.php:2203
msgid "Don't ignore anymore"
msgstr "Görmezden gelmeyi bırak"
-#: chat.php:2152
+#: index.php:2211 chat.php:2211
msgid "Ignore"
msgstr "Görmezden gel"
-#: chat.php:2163
+#: index.php:2222 chat.php:2222
#, php-format
msgid "Refresh rate (%1$d-%2$d seconds)"
msgstr "Yenileme aralığı (%1$d-%2$d saniye)"
-#: chat.php:2167 chat.php:2170
+#: index.php:2226 index.php:2229 chat.php:2226 chat.php:2229
msgid "View examples"
msgstr "Örnekleri görüntüle"
-#: chat.php:2174
+#: index.php:2233 chat.php:2233
msgid "Fontface"
msgstr "Yazıtipi yüzü"
-#: chat.php:2175
+#: index.php:2234 chat.php:2234
msgid "Room Default"
msgstr "Oda Varsayılanı"
-#: chat.php:2188
+#: index.php:2247 chat.php:2247
msgid "Bold"
msgstr "Kalın"
-#: chat.php:2192
+#: index.php:2251 chat.php:2251
msgid "Italic"
msgstr "İtalik"
-#: chat.php:2196
+#: index.php:2255 chat.php:2255
msgid "Small"
msgstr "Küçük"
-#: chat.php:2199
+#: index.php:2258 chat.php:2258
msgid "Example for your chosen font"
msgstr "Seçtiğin yazı tipi için örnek"
-#: chat.php:2203
+#: index.php:2262 chat.php:2262
msgid "Autoscroll (for old browsers or top-to-bottom sort)."
msgstr ""
"Otomatik kaydırma (eski tarayıclar veya yukarıdan-aşağıya görüntüleme için)."
-#: chat.php:2234
+#: index.php:2293 chat.php:2293
msgid "For everyone"
msgstr "Herkes için"
-#: chat.php:2239
+#: index.php:2298 chat.php:2298
msgid "For members only"
msgstr "Sadece üyeler için"
-#: chat.php:2244
+#: index.php:2303 chat.php:2303
msgid "For staff only"
msgstr "Sadece yetkililer için"
-#: chat.php:2248
+#: index.php:2307 chat.php:2307
msgid "Time zone"
msgstr "Zaman dilimi"
-#: chat.php:2261
+#: index.php:2320 chat.php:2320
msgid "Change Password"
msgstr "Şifreyi değiştir"
-#: chat.php:2263
+#: index.php:2322 chat.php:2322
msgid "Old password:"
msgstr "Eski şifre:"
-#: chat.php:2264
+#: index.php:2323 chat.php:2323
msgid "New password:"
msgstr "Yeni şifre:"
-#: chat.php:2265
+#: index.php:2324 chat.php:2324
msgid "Confirm new password:"
msgstr "Yeni şifreyi doğrula:"
-#: chat.php:2268
+#: index.php:2327 chat.php:2327
msgid "Change Nickname"
msgstr "Kullanıcı adını değiştir"
-#: chat.php:2269
+#: index.php:2328 chat.php:2328
msgid "New nickname:"
msgstr "Yeni kullanıcı adı:"
-#: chat.php:2273
+#: index.php:2332 chat.php:2332
msgid "Save changes"
msgstr "Değişiklikleri kaydet"
-#: chat.php:2275
+#: index.php:2334 chat.php:2334
msgid "Delete account"
msgstr "Hesabı sil"
-#: chat.php:2301
+#: index.php:2360 chat.php:2360
msgid "Reload Post Box"
msgstr "Posta Kutusunu Yenile"
-#: chat.php:2304
+#: index.php:2363 chat.php:2363
msgid "Reload Messages"
msgstr "İletileri yenile"
-#: chat.php:2307
+#: index.php:2366 chat.php:2366
msgid "Profile"
msgstr "Profil"
-#: chat.php:2311 chat.php:2528
+#: index.php:2370 index.php:2590 chat.php:2370 chat.php:2590
msgid "Admin"
msgstr "Yönetici"
-#: chat.php:2318
+#: index.php:2377 chat.php:2377
msgid "View public notes"
msgstr "Oku kamu profilim"
-#: chat.php:2325
+#: index.php:2384 chat.php:2384
msgid "Clone"
msgstr "Klonla"
-#: chat.php:2334
+#: index.php:2393 chat.php:2393
msgid "Rearrange"
msgstr "Yeniden düzenle"
-#: chat.php:2337
+#: index.php:2396 chat.php:2396
msgid "Rules & Help"
msgstr "Kurallar & Yardım"
-#: chat.php:2358 chat.php:2362
+#: index.php:2417 index.php:2421 chat.php:2417 chat.php:2421
msgid "File not found!"
msgstr "Dosya bulunamadı!"
-#: chat.php:2370
+#: index.php:2429 chat.php:2429
#, php-format
msgid "Bye %s, visit again soon!"
msgstr "Görüşürüz %s, en yakın zamanda yine uğra!"
-#: chat.php:2377
+#: index.php:2436 chat.php:2436
msgid "Colourtable"
msgstr "Renk tablosu"
-#: chat.php:2388
+#: index.php:2447 chat.php:2447
msgid "Back to your Profile"
msgstr "Profiline geri dön"
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "Repeat password to register"
msgstr "Kayıt olmak için şifreyi tekrarla"
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "(optional)"
msgstr "(isteğe bağlı)"
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Guests, choose a colour:"
msgstr "Konuklar, bir renk seçin:"
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Random Colour"
msgstr "Rastgele renk"
-#: chat.php:2421 chat.php:2435 chat.php:2569
+#: index.php:2480 index.php:2494 index.php:2631 chat.php:2480 chat.php:2494
+#: chat.php:2631
msgid "Sorry, currently members only!"
msgstr "Üzgünüm, şu anlık sadece üyeler!"
-#: chat.php:2423 chat.php:2437
+#: index.php:2482 index.php:2496 chat.php:2482 chat.php:2496
msgid "Enter Chat"
msgstr "Sohbete gir"
-#: chat.php:2457
+#: index.php:2516 chat.php:2516
#, php-format
msgid "Error: %s"
msgstr "Hata: %s"
-#: chat.php:2467
+#: index.php:2526 chat.php:2526
msgid "Fatal error"
msgstr "Kritik hata"
-#: chat.php:2470
+#: index.php:2529 chat.php:2529
#, php-format
msgid "Fatal error: %s"
msgstr "Kritik hata: %s"
-#: chat.php:2482 chat.php:2693
+#: index.php:2541 index.php:2756 chat.php:2541 chat.php:2756
msgid "Failed login attempt(s)"
msgstr "Başarısız oturum açma girişimleri"
-#: chat.php:2489
+#: index.php:2548 chat.php:2548
#, php-format
msgid "Read %d messages in your inbox"
msgstr "Gelen kutunuzdaki %d mesajı okuyun"
-#: chat.php:2498
+#: index.php:2557 chat.php:2557
#, php-format
msgid "%d new guests to approve"
msgstr "%d tane onaylanacak konuk"
-#: chat.php:2530
+#: index.php:2577 chat.php:2577
+msgid "logging out"
+msgstr ""
+
+#: index.php:2592 chat.php:2592
msgid "Admin:"
msgstr "Yönetici:"
-#: chat.php:2533
+#: index.php:2595 chat.php:2595
msgid "Staff"
msgstr "Yetkili"
-#: chat.php:2535
+#: index.php:2597 chat.php:2597
msgid "Staff:"
msgstr "Yetkili:"
-#: chat.php:2540
+#: index.php:2602 chat.php:2602
msgid "Members:"
msgstr "Üyeler:"
-#: chat.php:2542
+#: index.php:2604 chat.php:2604
msgid "Guests"
msgstr "Konuklar"
-#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092
+#: index.php:2625 index.php:3063 index.php:3267 index.php:4172 chat.php:2625
+#: chat.php:3063 chat.php:3267 chat.php:4172
#, php-format
msgid ""
"Invalid nickname (%1$d characters maximum and has to match the regular "
@@ -1265,7 +1320,8 @@ msgstr ""
"Geçersiz kullanıcı adı (En fazla %1$d harf ve normal ifade \"%2$s\" ile "
"eşleşmeli)"
-#: chat.php:2566 chat.php:2996 chat.php:3162 chat.php:4094
+#: index.php:2628 index.php:3066 index.php:3232 index.php:4174 chat.php:2628
+#: chat.php:3066 chat.php:3232 chat.php:4174
#, php-format
msgid ""
"Invalid password (At least %1$d characters and has to match the regular "
@@ -1273,248 +1329,256 @@ msgid ""
msgstr ""
"Geçersiz şifre (En az %1$d harf ve normal ifade \"%2$s\" ile eşleşmeli)"
-#: chat.php:2574 chat.php:2739
+#: index.php:2636 index.php:2806 chat.php:2636 chat.php:2806
msgid "Wrong global Password!"
msgstr "Yanlış global şifre!"
-#: chat.php:2591 chat.php:2612
+#: index.php:2654 index.php:2675 chat.php:2654 chat.php:2675
msgid "Wrong Captcha"
msgstr "Yanlış captcha"
-#: chat.php:2596 chat.php:2604
+#: index.php:2659 index.php:2667 chat.php:2659 chat.php:2667
msgid "Captcha already used or timed out."
msgstr "Captcha zaten kullanılmış veya zamanı aşılmış."
-#: chat.php:2652
+#: index.php:2715 chat.php:2715
msgid "A user with this nickname is already logged in."
msgstr "Bu kullanıcı ismine sahip birisi zaten giriş yapmış."
-#: chat.php:2652 chat.php:2933 chat.php:3176
+#: index.php:2715 index.php:3003 index.php:3246 chat.php:2715 chat.php:3003
+#: chat.php:3246
msgid "Wrong Password!"
msgstr "Yanlış şifre!"
-#: chat.php:2696
+#: index.php:2759 chat.php:2759
msgid "Dismiss"
msgstr "Anlaşıldı"
-#: chat.php:2747 chat.php:3171 chat.php:4096
+#: index.php:2814 index.php:3241 index.php:4176 chat.php:2814 chat.php:3241
+#: chat.php:4176
msgid "Password confirmation does not match!"
msgstr "Şifreler birbirleriyle eşleşmiyor!"
-#: chat.php:2859
+#: index.php:2854 chat.php:2854
+#, fuzzy
+#| msgid "Kickmessage:"
+msgid "no kick message"
+msgstr "Atılma nedeni:"
+
+#: index.php:2929 chat.php:2929
msgid "Invalid/expired session"
msgstr "Geçersiz/tarihi geçmiş oturum"
-#: chat.php:2875 chat.php:3412
+#: index.php:2945 index.php:3483 chat.php:2945 chat.php:3483
msgid "You have been kicked!"
msgstr "Atıldınız!"
-#: chat.php:2885
+#: index.php:2955 chat.php:2955
#, php-format
msgid "Currently %d chatter(s) in room:"
msgstr "Şu anda odada %d kişi var:"
-#: chat.php:2933
+#: index.php:3003 chat.php:3003
msgid "This nickname is a registered member."
msgstr "Bu kullanıcı adı kayıtlı bir üyeye ait."
-#: chat.php:2960 chat.php:3001
+#: index.php:3030 index.php:3071 chat.php:3030 chat.php:3071
#, php-format
msgid "%s is already registered."
msgstr "%s zaten kayıtlı."
-#: chat.php:2969 chat.php:2990
+#: index.php:3039 index.php:3060 chat.php:3039 chat.php:3060
#, php-format
msgid "Can't register %s"
msgstr "%s kayıt edilemiyor"
-#: chat.php:2978 chat.php:3023
+#: index.php:3048 index.php:3093 chat.php:3048 chat.php:3093
#, php-format
msgid "%s successfully registered."
msgstr "%s kayıt oldu."
-#: chat.php:3031 chat.php:3036
+#: index.php:3101 index.php:3106 chat.php:3101 chat.php:3106
#, php-format
msgid "Can't change status of %s"
msgstr "%s'ın statüsü değiştirilemiyor"
-#: chat.php:3047
+#: index.php:3117 chat.php:3117
#, php-format
msgid "%s successfully deleted from database."
msgstr "%s başarılı bir şekilde veritabanından silindi."
-#: chat.php:3056
+#: index.php:3126 chat.php:3126
#, php-format
msgid "Status of %s successfully changed."
msgstr "%s'ın statüsü başarıyla değiştirildi."
-#: chat.php:3073
+#: index.php:3143 chat.php:3143
#, php-format
msgid "Successfully reset password for %s"
msgstr "%s için parola başarıyla sıfırlandı"
-#: chat.php:3075
+#: index.php:3145 chat.php:3145
#, php-format
msgid "Can't reset password for %s"
msgstr "%s için şifre sıfırlanamıyor"
-#: chat.php:3190
+#: index.php:3260 chat.php:3260
msgid "Your profile has successfully been saved."
msgstr "Profiliniz başarıyla kaydedildi."
-#: chat.php:3202
+#: index.php:3272 chat.php:3272
msgid "Nickname is already taken"
msgstr "Kullanıcı adı zaten alınmış"
-#: chat.php:3714
+#: index.php:3785 chat.php:3785
msgid "system message"
msgstr "Sistem ileti"
-#: chat.php:3921
+#: index.php:4001 chat.php:4001
msgid "Beige"
msgstr "Bej"
-#: chat.php:3922
+#: index.php:4002 chat.php:4002
msgid "Black"
msgstr "Kahverengi"
-#: chat.php:3923
+#: index.php:4003 chat.php:4003
msgid "Blue"
msgstr "Mavi"
-#: chat.php:3924
+#: index.php:4004 chat.php:4004
msgid "Blue violet"
msgstr "Mavi mor"
-#: chat.php:3925
+#: index.php:4005 chat.php:4005
msgid "Brown"
msgstr "Kahverengi"
-#: chat.php:3926
+#: index.php:4006 chat.php:4006
msgid "Cyan"
msgstr "Camgöbeği"
-#: chat.php:3927
+#: index.php:4007 chat.php:4007
msgid "Dark blue"
msgstr "Koyu mavi"
-#: chat.php:3928
+#: index.php:4008 chat.php:4008
msgid "Dark green"
msgstr "Koyu yeşil"
-#: chat.php:3929
+#: index.php:4009 chat.php:4009
msgid "Dark red"
msgstr "Koyu red"
-#: chat.php:3930
+#: index.php:4010 chat.php:4010
msgid "Dark violet"
msgstr "Koyu mor"
-#: chat.php:3931
+#: index.php:4011 chat.php:4011
msgid "Sky blue"
msgstr "Gökyüzü mavisi"
-#: chat.php:3932
+#: index.php:4012 chat.php:4012
msgid "Gold"
msgstr "Altın"
-#: chat.php:3933
+#: index.php:4013 chat.php:4013
msgid "Grey"
msgstr "Gri"
-#: chat.php:3934
+#: index.php:4014 chat.php:4014
msgid "Green"
msgstr "Yeşil"
-#: chat.php:3935
+#: index.php:4015 chat.php:4015
msgid "Hot pink"
msgstr "Sıcak pembe"
-#: chat.php:3936
+#: index.php:4016 chat.php:4016
msgid "Indigo"
msgstr "Indigo"
-#: chat.php:3937
+#: index.php:4017 chat.php:4017
msgid "Light blue"
msgstr "Açık mavi"
-#: chat.php:3938
+#: index.php:4018 chat.php:4018
msgid "Light green"
msgstr "Açık yeşil"
-#: chat.php:3939
+#: index.php:4019 chat.php:4019
msgid "Lime green"
msgstr "Limon yeşili"
-#: chat.php:3940
+#: index.php:4020 chat.php:4020
msgid "Magenta"
msgstr "Magenta"
-#: chat.php:3941
+#: index.php:4021 chat.php:4021
msgid "Olive"
msgstr "Zeytin"
-#: chat.php:3942
+#: index.php:4022 chat.php:4022
msgid "Orange"
msgstr "Turuncu"
-#: chat.php:3943
+#: index.php:4023 chat.php:4023
msgid "Orange red"
msgstr "Turuncu kırmızı"
-#: chat.php:3944
+#: index.php:4024 chat.php:4024
msgid "Purple"
msgstr "Mor"
-#: chat.php:3945
+#: index.php:4025 chat.php:4025
msgid "Red"
msgstr "Kırmızı"
-#: chat.php:3946
+#: index.php:4026 chat.php:4026
msgid "Royal blue"
msgstr "Kraliyet mavisi"
-#: chat.php:3947
+#: index.php:4027 chat.php:4027
msgid "Sea green"
msgstr "Deniz yeşili"
-#: chat.php:3948
+#: index.php:4028 chat.php:4028
msgid "Sienna"
msgstr "Koyu kahverengi"
-#: chat.php:3949
+#: index.php:4029 chat.php:4029
msgid "Silver"
msgstr "Gümüş"
-#: chat.php:3950
+#: index.php:4030 chat.php:4030
msgid "Tan"
msgstr "Tan"
-#: chat.php:3951
+#: index.php:4031 chat.php:4031
msgid "Teal"
msgstr "Deniz mavisi"
-#: chat.php:3952
+#: index.php:4032 chat.php:4032
msgid "Violet"
msgstr "Mor"
-#: chat.php:3953
+#: index.php:4033 chat.php:4033
msgid "White"
msgstr "Beyaz"
-#: chat.php:3954
+#: index.php:4034 chat.php:4034
msgid "Yellow"
msgstr "Sarı"
-#: chat.php:3955
+#: index.php:4035 chat.php:4035
msgid "Yellow green"
msgstr "Sarı yeşil"
-#: chat.php:4077
+#: index.php:4157 chat.php:4157
msgid "Successfully destroyed chat"
msgstr "Sohbet başarıyla yok edildi"
-#: chat.php:4086
+#: index.php:4166 chat.php:4166
msgid ""
"Database tables already exist! To continue, you have to delete these tables "
"manually first."
@@ -1522,97 +1586,102 @@ msgstr ""
"Veritabanı tabloları zaten bulunuyor! Devam etmek için, tabloları manuel "
"olarak silmeniz lazım."
-#: chat.php:4089
+#: index.php:4169 chat.php:4169
msgid "A Superadmin already exists!"
msgstr "Bir Superadmin zaten bulunuyor!"
-#: chat.php:4182 chat.php:4369
+#: index.php:4263 index.php:4451 chat.php:4263 chat.php:4451
#, php-format
msgid "%s - "
msgstr "%s - "
-#: chat.php:4183 chat.php:4369
+#: index.php:4264 index.php:4451 chat.php:4264 chat.php:4451
#, php-format
msgid "[M] %s - "
msgstr "[Ü] %s - "
-#: chat.php:4184 chat.php:4369
+#: index.php:4265 index.php:4451 chat.php:4265 chat.php:4451
#, php-format
msgid "[Staff] %s - "
msgstr "[Yetkili] %s - "
-#: chat.php:4185 chat.php:4369
+#: index.php:4266 index.php:4451 chat.php:4266 chat.php:4451
#, php-format
msgid "[Admin] %s - "
msgstr "[Yönetici] %s - "
-#: chat.php:4186 chat.php:4369
+#: index.php:4267 index.php:4451 chat.php:4267 chat.php:4451
#, php-format
msgid "[%1$s to %2$s] - "
msgstr "[%1$s to %2$s] - "
-#: chat.php:4187
+#: index.php:4268 chat.php:4268
#, php-format
msgid "%s entered the chat."
msgstr "%s sohbete katıldı."
-#: chat.php:4188
+#: index.php:4269 chat.php:4269
#, php-format
msgid "%s left the chat."
msgstr "%s sohbetten çıktı."
-#: chat.php:4189
+#: index.php:4270 chat.php:4270
#, php-format
msgid "%s is now a registered member."
msgstr "%s artık bir kayıtlı üye."
-#: chat.php:4190
+#: index.php:4271 chat.php:4271
#, php-format
msgid "%s is now a registered applicant."
msgstr "%s artık başvuru sahibi."
-#: chat.php:4191
-#, php-format
-msgid "%s has been kicked."
+#: index.php:4272 chat.php:4272
+#, fuzzy, php-format
+#| msgid "%s has been kicked."
+msgid "%1$s has been kicked: %2$s"
msgstr "%s atıldı."
-#: chat.php:4192
-#, php-format
-msgid "%s have been kicked."
+#: index.php:4273 chat.php:4273
+#, fuzzy, php-format
+#| msgid "%s have been kicked."
+msgid "%1$s have been kicked: %2$s"
msgstr "%s atıldı."
-#: chat.php:4193
-msgid "All guests have been kicked."
+#: index.php:4274 chat.php:4274
+#, fuzzy, php-format
+#| msgid "All guests have been kicked."
+msgid "All guests have been kicked: %1$s"
msgstr "Tüm konuklar atıldı."
-#: chat.php:4194
+#: index.php:4275 chat.php:4275
#, php-format
msgid "%s has been cleaned."
msgstr "%s temizlendi."
-#: chat.php:4202 chat.php:4396
+#: index.php:4283 index.php:4478 chat.php:4283 chat.php:4478
msgid "Temporarily disabled"
msgstr "Geçici olarak devre dışı"
-#: chat.php:4218 chat.php:4594
+#: index.php:4299 index.php:4676 chat.php:4299 chat.php:4676
msgid "A chat community"
msgstr "sohbet topluluğu"
-#: chat.php:4256
+#: index.php:4338 chat.php:4338
msgid "Successfully registered!"
msgstr "Başarılı bir şekilde kayıt olundu!"
-#: chat.php:4522 chat.php:4721 chat.php:4728
+#: index.php:4604 index.php:4807 index.php:4814 chat.php:4604 chat.php:4807
+#: chat.php:4814
msgid "No connection to database!"
msgstr "Veritabanına bağlantı yok!"
-#: chat.php:4531
+#: index.php:4613 chat.php:4613
msgid ""
"Note: Default CSS is now hardcoded and can be removed from the CSS setting"
msgstr ""
"Not: Default CSS is now hardcoded and can be removed from the CSS setting"
-#: chat.php:4611
+#: index.php:4697 chat.php:4697
#, php-format
msgid ""
"The %s extension of PHP is required for the encryption feature. Please "
@@ -1621,7 +1690,8 @@ msgstr ""
"Şifreleme için PHP'nin %s uzantısı gerekiyor. Lütfen ilk önce onu kurun veya "
"şifreleme özelliğini devre dışı bırakın."
-#: chat.php:4684 chat.php:4689 chat.php:4694
+#: index.php:4770 index.php:4775 index.php:4780 chat.php:4770 chat.php:4775
+#: chat.php:4780
#, php-format
msgid ""
"The %s extension of PHP is required for the selected database driver. Please "
@@ -1630,7 +1700,8 @@ msgstr ""
"Seçili veritabanı sürücüsü için PHP'nin %s uzantısı gerekiyor. Lütfen ilk "
"önce onu kurun."
-#: chat.php:4707 chat.php:4715 chat.php:4719 chat.php:4726
+#: index.php:4793 index.php:4801 index.php:4805 index.php:4812 chat.php:4793
+#: chat.php:4801 chat.php:4805 chat.php:4812
msgid ""
"No connection to database, please create a database and edit the script to "
"use the correct database with given username and password!"
@@ -1639,7 +1710,7 @@ msgstr ""
"veritabanını kullanmak için script'i verilen kullanıcı adı ve şifre ile "
"düzenleyin!"
-#: chat.php:4734
+#: index.php:4820 chat.php:4820
msgid ""
"The memcached extension of PHP is required for the caching feature. Please "
"install it first or set the memcached setting back to false."
diff --git a/locale/uk_UA/LC_MESSAGES/le-chat-php.po b/locale/uk_UA/LC_MESSAGES/le-chat-php.po
index b8affbc..934d636 100644
--- a/locale/uk_UA/LC_MESSAGES/le-chat-php.po
+++ b/locale/uk_UA/LC_MESSAGES/le-chat-php.po
@@ -7,11 +7,11 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-01-18 21:32+0100\n"
+"POT-Creation-Date: 2025-03-29 17:02+0100\n"
"PO-Revision-Date: 2023-10-14 17:51+0000\n"
"Last-Translator: Анонім \n"
-"Language-Team: Ukrainian \n"
+"Language-Team: Ukrainian \n"
"Language: uk_UA\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -20,265 +20,271 @@ msgstr ""
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 5.0.2\n"
-#: chat.php:261
+#: index.php:272 chat.php:272
msgid "Enable applicants"
msgstr "Дозволити гостей"
-#: chat.php:262
+#: index.php:273 index.php:2267 chat.php:273 chat.php:2267
msgid "Embed images"
msgstr "Вставити зображення"
-#: chat.php:263 chat.php:2202
+#: index.php:274 index.php:2261 chat.php:274 chat.php:2261
msgid "Show Timestamps"
msgstr "Показувати позначки часу"
-#: chat.php:264
+#: index.php:275 chat.php:275
msgid "Show session-IP"
msgstr "Показати IP-сесію"
-#: chat.php:265
+#: index.php:276 chat.php:276
msgid "Members can kick, if no moderator is present"
msgstr "Користувачі можуть виключати, якщо не є модератор"
-#: chat.php:266
+#: index.php:277 chat.php:277
msgid "Members can always kick"
msgstr "Користувачі можуть завжди виключати"
-#: chat.php:267
+#: index.php:278 chat.php:278
msgid "Force redirection"
msgstr "Примусове перенаправлення"
-#: chat.php:268
+#: index.php:279 index.php:2270 chat.php:279 chat.php:2270
msgid "Incognito mode"
msgstr "Режим інкогніто"
-#: chat.php:269
+#: index.php:280 chat.php:280
msgid "Send mail on new public message"
msgstr "Надіслати повідомлення як нове публічне"
-#: chat.php:270
+#: index.php:281 chat.php:281
msgid "Fallback to waiting room, if no moderator is present to approve guests"
msgstr ""
"Повернутися в кімнату очікування, якщо модератор відстутсвує для "
"підтвердження гостей"
-#: chat.php:271
+#: index.php:282 chat.php:282
msgid "Disable private messages"
msgstr "Вимкнути особисті повідомлення"
-#: chat.php:272 chat.php:2223
+#: index.php:283 index.php:2282 chat.php:283 chat.php:2282
msgid "Enable offline inbox"
msgstr "Включити офлайн-пошту"
-#: chat.php:273
+#: index.php:284 chat.php:284
msgid "Show a greeting message before showing the messages"
msgstr "Показувати вітальне повідомлення перед іншими повідомленнями"
-#: chat.php:274 chat.php:2204
+#: index.php:285 index.php:2263 chat.php:285 chat.php:2263
msgid "Sort messages from top to bottom"
msgstr "Сортувати повідомлення зверху вниз"
-#: chat.php:275 chat.php:2205
+#: index.php:286 index.php:2264 chat.php:286 chat.php:2264
msgid "Hide list of chatters"
msgstr "Приховати список людей у чаті'"
-#: chat.php:276 chat.php:1780 chat.php:1794
+#: index.php:287 index.php:1837 index.php:1851 chat.php:287 chat.php:1837
+#: chat.php:1851
msgid "Personal notes"
msgstr "Особисті нотатки"
-#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110
+#: index.php:288 index.php:1840 index.php:1854 index.php:2169 chat.php:288
+#: chat.php:1840 chat.php:1854 chat.php:2169
msgid "Public notes"
msgstr "Профіль користувача"
-#: chat.php:278
+#: index.php:289 chat.php:289
msgid "Apply kick filter on moderators"
msgstr "Застосувати фільтр виключення для модераторів"
-#: chat.php:279
+#: index.php:290 chat.php:290
msgid "Show who kicks people or purges all messages."
msgstr "Покажіть, хто виганяє людей або очищає всі повідомлення."
-#: chat.php:280
+#: index.php:291 chat.php:291
msgid "Hide reload post box button"
msgstr "Приховати кнопку перезавантаження поштової скриньки"
-#: chat.php:281
+#: index.php:292 chat.php:292
msgid "Hide reload messages button"
msgstr "Приховати кнопку перезавантаження повідомлень"
-#: chat.php:282
+#: index.php:293 chat.php:293
msgid "Hide profile button"
msgstr "Кнопка приховання профілю"
-#: chat.php:283
+#: index.php:294 chat.php:294
msgid "Hide admin button"
msgstr ""
-#: chat.php:284
+#: index.php:295 chat.php:295
msgid "Hide notes button"
msgstr ""
-#: chat.php:285
+#: index.php:296 chat.php:296
msgid "Hide clone button"
msgstr ""
-#: chat.php:286
+#: index.php:297 chat.php:297
msgid "Hide rearrange button"
msgstr ""
-#: chat.php:287
+#: index.php:298 chat.php:298
msgid "Hide help button"
msgstr ""
-#: chat.php:288
+#: index.php:299 chat.php:299
msgid "Apply postbox delete button globally"
msgstr ""
-#: chat.php:289
+#: index.php:300 chat.php:300
msgid "Allow enhancing functionality with JavaScript"
msgstr ""
-#: chat.php:292 chat.php:2170
+#: index.php:303 index.php:2229 chat.php:303 chat.php:2229
msgid "Background colour"
msgstr "Фоновий колір"
-#: chat.php:293 chat.php:2167
+#: index.php:304 index.php:2226 chat.php:304 chat.php:2226
msgid "Font colour"
msgstr "Колір шрифту"
-#: chat.php:296
+#: index.php:307 chat.php:307
msgid "Entrance"
msgstr "Вхід"
-#: chat.php:297
+#: index.php:308 chat.php:308
msgid "Leaving"
msgstr "Вихід"
-#: chat.php:298
+#: index.php:309 chat.php:309
msgid "Member registered"
msgstr "Зареєстровані"
-#: chat.php:299
+#: index.php:310 chat.php:310
msgid "Applicant registered"
msgstr "Заявник зареєстрований"
-#: chat.php:300
+#: index.php:311 chat.php:311
msgid "Kicked"
msgstr "Забанені"
-#: chat.php:301
+#: index.php:312 chat.php:312
msgid "Multiple kicked"
msgstr "Багаторазово забанені"
-#: chat.php:302
+#: index.php:313 chat.php:313
msgid "All kicked"
msgstr "Всі забанені"
-#: chat.php:303
+#: index.php:314 chat.php:314
msgid "Room cleaned"
msgstr "Очищення чату"
-#: chat.php:304
+#: index.php:315 chat.php:315
msgid "Message to all"
msgstr "Повідомлення всім"
-#: chat.php:305
+#: index.php:316 chat.php:316
msgid "Message to members only"
msgstr "Повідомлення лише членам"
-#: chat.php:306
+#: index.php:317 chat.php:317
msgid "Message to staff only"
msgstr "Повідомлення лише модераторам"
-#: chat.php:307
+#: index.php:318 chat.php:318
msgid "Message to admins only"
msgstr "Повідомлення лише адміністраторам"
-#: chat.php:308
+#: index.php:319 chat.php:319
msgid "Private message"
msgstr "Особисте повідомлення"
-#: chat.php:309
+#: index.php:320 chat.php:320
msgid "Attachement"
msgstr "Прикріплення"
-#: chat.php:312
+#: index.php:323 chat.php:323
msgid "Member timeout (minutes)"
msgstr "Тайм-аут користувачів (хвилин)"
-#: chat.php:313
+#: index.php:324 chat.php:324
msgid "Guest timeout (minutes)"
msgstr "Тайм-аут гостей (хвилин)"
-#: chat.php:314
+#: index.php:325 chat.php:325
msgid "Kick penalty (minutes)"
msgstr "Бан (хвилин)"
-#: chat.php:315
+#: index.php:326 chat.php:326
msgid "Waiting room time (seconds)"
msgstr "Час очікування в гостьовий (секунд)"
-#: chat.php:316
+#: index.php:327 chat.php:327
+msgid "Logout delay (seconds)"
+msgstr ""
+
+#: index.php:328 chat.php:328
msgid "Captcha timeout (seconds)"
msgstr "Тайм-аут Captcha (секунд)"
-#: chat.php:317
+#: index.php:329 chat.php:329
msgid "Message timeout (minutes)"
msgstr "Тайм-аут повідомлення (хвилин)"
-#: chat.php:318
+#: index.php:330 chat.php:330
msgid "Message limit (public)"
msgstr "Ліміт повідомлень (загальних)"
-#: chat.php:319
+#: index.php:331 chat.php:331
msgid "Maximal message length"
msgstr "Максимальна довжина повідомлення"
-#: chat.php:320
+#: index.php:332 chat.php:332
msgid "Maximal nickname length"
msgstr "Максимальна довжина імені"
-#: chat.php:321
+#: index.php:333 chat.php:333
msgid "Minimal password length"
msgstr "Мінімальна довжина пароля"
-#: chat.php:322
+#: index.php:334 chat.php:334
msgid "Default message reload time (seconds)"
msgstr "За замовчуванням час перезавантаження повідомлення (секунди)"
-#: chat.php:323
+#: index.php:335 chat.php:335
msgid "Number of notes revisions to keep"
msgstr "Число виправлень для збереження"
-#: chat.php:324
+#: index.php:336 chat.php:336
msgid "Maximum upload size in KB"
msgstr "Максимальний розмір файлу в КБ"
-#: chat.php:325
+#: index.php:337 chat.php:337
msgid "Enable file uploads"
msgstr "Дозволити файлові завантаження"
-#: chat.php:326
+#: index.php:338 chat.php:338
msgid "Lowest refresh rate"
msgstr ""
-#: chat.php:327
+#: index.php:339 chat.php:339
msgid "Highest refresh rate"
msgstr ""
-#: chat.php:330
+#: index.php:342 chat.php:342
msgid "Rules (html)"
msgstr "Правила (html)"
-#: chat.php:331
+#: index.php:343 chat.php:343
msgid "CSS Style"
msgstr "CSS стилі"
-#: chat.php:332
+#: index.php:344 chat.php:344
msgid "Chat disabled message (html)"
msgstr "Чат відключив повідомлення (html)"
-#: chat.php:335
+#: index.php:347 chat.php:347
msgid ""
"Date "
@@ -288,166 +294,177 @@ msgstr ""
"php#refsect1-function.date-parameters\" rel=\"noopener noreferrer\">Формат "
"дати"
-#: chat.php:336
+#: index.php:348 chat.php:348
msgid "Characters used in Captcha"
msgstr "Символи, що використовуються в Captcha"
-#: chat.php:337
+#: index.php:349 chat.php:349
msgid "Custom redirection script"
msgstr "Скрипт користувача перенаправлення"
-#: chat.php:338
+#: index.php:350 chat.php:350
msgid "Chat name"
msgstr "Назва чату"
-#: chat.php:339
+#: index.php:351 chat.php:351
msgid "Send mail using this address"
msgstr "Надіслати повідомлення на цю адресу"
-#: chat.php:340
+#: index.php:352 chat.php:352
msgid "Send mail to this address"
msgstr "Надіслати повідомлення за цією адресою"
-#: chat.php:341
+#: index.php:353 chat.php:353
msgid "Nickname regex"
msgstr "Нік regex"
-#: chat.php:342
+#: index.php:354 chat.php:354
msgid "Password regex"
msgstr "Пароль regex"
-#: chat.php:343
+#: index.php:355 chat.php:355
msgid "Link to external CSS file (on your own server)"
msgstr "Посилання на зовнішній CSS файл"
-#: chat.php:344
+#: index.php:356 chat.php:356
msgid "Meta description (best 50 - 160 characters for SEO)"
msgstr ""
-#: chat.php:345
+#: index.php:357 chat.php:357
+msgid "Show this text when a user's logout is delayed"
+msgstr ""
+
+#: index.php:358 chat.php:358
msgid "Prepend this text to system messages"
msgstr "Цей текст передує повідомленням із системи"
-#: chat.php:348 chat.php:728 chat.php:1225
+#: index.php:361 index.php:780 index.php:1282 chat.php:361 chat.php:780
+#: chat.php:1282
msgid "Change Guestaccess"
msgstr "Змінити гостьовий доступ"
-#: chat.php:349
+#: index.php:362 chat.php:362
msgid "Enable global Password"
msgstr ""
-#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433
+#: index.php:363 index.php:810 index.php:2474 index.php:2492 chat.php:363
+#: chat.php:810 chat.php:2474 chat.php:2492
msgid "Global Password:"
msgstr "Глобальний пароль:"
-#: chat.php:351 chat.php:819
+#: index.php:364 index.php:871 chat.php:364 chat.php:871
msgid "Captcha"
msgstr "Captcha"
-#: chat.php:352 chat.php:775 chat.php:835
+#: index.php:365 index.php:827 index.php:887 chat.php:365 chat.php:827
+#: chat.php:887
msgid "Only for guests"
msgstr "Тільки для гостей"
-#: chat.php:353 chat.php:1220
+#: index.php:366 index.php:1277 chat.php:366 chat.php:1277
msgid "Topic"
msgstr "Тема"
-#: chat.php:354 chat.php:781
+#: index.php:367 index.php:833 chat.php:367 chat.php:833
msgid "Let guests register themselves"
msgstr "Дозволити гостям реєструватися самостійно"
-#: chat.php:355 chat.php:862
+#: index.php:368 index.php:919 chat.php:368 chat.php:919
msgid "Default time zone"
msgstr "Годинний пояс за промовчанням"
-#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259
+#: index.php:581 index.php:1157 index.php:4158 index.php:4341 chat.php:581
+#: chat.php:1157 chat.php:4158 chat.php:4341
msgid "Initial Setup"
msgstr "Початкова установка"
-#: chat.php:588
+#: index.php:601 chat.php:601
#, php-format
msgid "Redirecting to: %s"
msgstr "Перенаправлення на: %s"
-#: chat.php:595
+#: index.php:608 chat.php:608
#, php-format
msgid ""
"Dangerous non-http link requested, copy paste this link if you are really "
"sure: %s"
msgstr ""
-#: chat.php:597
+#: index.php:610 chat.php:610
#, php-format
msgid "Non-http link requested: %s"
msgstr "Запитане посилання не http: %s"
-#: chat.php:599
+#: index.php:612 chat.php:612
#, php-format
msgid "If it's not working, try this one: %s"
msgstr "Якщо це не працює, спробуйте це: %s"
-#: chat.php:609
+#: index.php:622 chat.php:622
msgid "Access denied"
msgstr "У доступі відмовлено"
-#: chat.php:609
+#: index.php:622 chat.php:622
#, php-format
msgid "You are logged in as %s and don't have access to this section."
msgstr "Ви увійшли як %s і не маєте доступу до цієї секції."
-#: chat.php:611 chat.php:915 chat.php:1211 chat.php:1393
+#: index.php:624 index.php:972 index.php:1268 index.php:1450 chat.php:624
+#: chat.php:972 chat.php:1268 chat.php:1450
msgid "Logout"
msgstr "Вийти"
-#: chat.php:636
+#: index.php:649 chat.php:649
msgid "Copy:"
msgstr "Перепишіть:"
-#: chat.php:724
+#: index.php:776 chat.php:776
msgid "Chat Setup"
msgstr "Установка чату"
-#: chat.php:734 chat.php:1233
+#: index.php:786 index.php:1290 chat.php:786 chat.php:1290
msgid "Allow"
msgstr "Дозволити"
-#: chat.php:739 chat.php:1238
+#: index.php:791 index.php:1295 chat.php:791 chat.php:1295
msgid "Allow with waitingroom"
msgstr "Дозволити з гостьовою"
-#: chat.php:744 chat.php:1243
+#: index.php:796 index.php:1300 chat.php:796 chat.php:1300
msgid "Require moderator approval"
msgstr "Вимагати схвалення модератора"
-#: chat.php:749 chat.php:1248
+#: index.php:801 index.php:1305 chat.php:801 chat.php:1305
msgid "Only members"
msgstr "Лише учасники"
-#: chat.php:754 chat.php:1251
+#: index.php:806 index.php:1308 chat.php:806 chat.php:1308
msgid "Disable chat"
msgstr "Вимкнути чат"
-#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229
+#: index.php:817 index.php:839 index.php:894 index.php:953 index.php:2288
+#: chat.php:817 chat.php:839 chat.php:894 chat.php:953 chat.php:2288
msgid "Disabled"
msgstr "Вимкнено"
-#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219
+#: index.php:822 index.php:882 index.php:958 index.php:2278 chat.php:822
+#: chat.php:882 chat.php:958 chat.php:2278
msgid "Enabled"
msgstr "Увімкнено"
-#: chat.php:792
+#: index.php:844 chat.php:844
msgid "As applicant"
msgstr "Як заявник"
-#: chat.php:797
+#: index.php:849 chat.php:849
msgid "As member"
msgstr "Як член"
-#: chat.php:800
+#: index.php:852 chat.php:852
msgid "System messages"
msgstr "Системні повідомлення"
-#: chat.php:822 chat.php:1053
+#: index.php:874 index.php:1110 chat.php:874 chat.php:1110
#, php-format
msgid ""
"The %s extension of PHP is required for this feature. Please install it "
@@ -456,293 +473,314 @@ msgstr ""
"%s розширення для PHP вимагається для цієї функції. Будь ласка, встановіть "
"його спочатку."
-#: chat.php:847
+#: index.php:899 chat.php:899
msgid "Simple"
msgstr "Проста"
-#: chat.php:852
+#: index.php:904 chat.php:904
msgid "Moderate"
msgstr "Помірна"
-#: chat.php:857
+#: index.php:909 chat.php:909
+msgid "Hard"
+msgstr ""
+
+#: index.php:914 chat.php:914
msgid "Extreme"
msgstr "Сильна"
-#: chat.php:906 chat.php:1548 chat.php:1610
+#: index.php:963 index.php:1605 index.php:1667 chat.php:963 chat.php:1605
+#: chat.php:1667
msgid "Apply"
msgstr "Застосувати"
-#: chat.php:910 chat.php:1050
+#: index.php:967 index.php:1107 chat.php:967 chat.php:1107
msgid "Backup and restore"
msgstr "Бекап та відновлення"
-#: chat.php:912
+#: index.php:969 chat.php:969
msgid "Destroy chat"
msgstr "Знищити чат"
-#: chat.php:1057 chat.php:1066
+#: index.php:1114 index.php:1123 chat.php:1114 chat.php:1123
msgid "Settings"
msgstr "Налаштування"
-#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575
-#: chat.php:1622
+#: index.php:1115 index.php:1124 index.php:1269 index.php:1595 index.php:1632
+#: index.php:1679 chat.php:1115 chat.php:1124 chat.php:1269 chat.php:1595
+#: chat.php:1632 chat.php:1679
msgid "Filter"
msgstr "Фільтр"
-#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538
+#: index.php:1116 index.php:1125 index.php:1325 index.php:2600 chat.php:1116
+#: chat.php:1125 chat.php:1325 chat.php:2600
msgid "Members"
msgstr "Учасники"
-#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322
+#: index.php:1117 index.php:1126 index.php:2373 index.php:2381 chat.php:1117
+#: chat.php:1126 chat.php:2373 chat.php:2381
msgid "Notes"
msgstr "Примітки"
-#: chat.php:1061
+#: index.php:1118 chat.php:1118
msgid "Backup"
msgstr "Бекап"
-#: chat.php:1070
+#: index.php:1127 chat.php:1127
msgid "Restore"
msgstr "Відновлення"
-#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260
+#: index.php:1131 index.php:1174 index.php:1212 index.php:1242 index.php:4342
+#: chat.php:1131 chat.php:1174 chat.php:1212 chat.php:1242 chat.php:4342
msgid "Go to the Setup-Page"
msgstr "Перейти до сторінки установки"
-#: chat.php:1082 chat.php:1091 chat.php:1949
+#: index.php:1139 index.php:1148 index.php:2006 chat.php:1139 chat.php:1148
+#: chat.php:2006
msgid "Are you sure?"
msgstr "Ви впевнені?"
-#: chat.php:1083 chat.php:1092 chat.php:1956
+#: index.php:1140 index.php:1149 index.php:2013 chat.php:1140 chat.php:1149
+#: chat.php:2013
msgid "Yes"
msgstr "Так"
-#: chat.php:1084 chat.php:1093 chat.php:1963
+#: index.php:1141 index.php:1150 index.php:2020 chat.php:1141 chat.php:1150
+#: chat.php:2020
msgid "No"
msgstr "Ні"
-#: chat.php:1101 chat.php:4259
+#: index.php:1158 index.php:4341 chat.php:1158 chat.php:4341
msgid "Superadmin Login"
msgstr "Вхід для суперадміністратора"
-#: chat.php:1102
+#: index.php:1159 chat.php:1159
msgid "Superadmin Nickname:"
msgstr "Нік суперадміністратора:"
-#: chat.php:1103
+#: index.php:1160 chat.php:1160
msgid "Superadmin Password:"
msgstr "Пароль суперадміністратора:"
-#: chat.php:1104
+#: index.php:1161 chat.php:1161
msgid "Confirm Password:"
msgstr "Підтвердження пароля:"
-#: chat.php:1105
+#: index.php:1162 chat.php:1162
#, fuzzy
msgid "Initialise Chat"
msgstr "Ініціалізація чату"
-#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439
+#: index.php:1163 index.php:1187 index.php:1213 index.php:2336 index.php:2498
+#: chat.php:1163 chat.php:1187 chat.php:1213 chat.php:2336 chat.php:2498
msgid "Change language:"
msgstr "Змінити мову:"
-#: chat.php:1117
+#: index.php:1174 chat.php:1174
msgid "Database successfully updated!"
msgstr "База даних успішно оновлена!"
-#: chat.php:1125 chat.php:1326 chat.php:2407
+#: index.php:1182 index.php:1383 index.php:2466 chat.php:1182 chat.php:1383
+#: chat.php:2466
msgid "Nickname:"
msgstr "Нік:"
-#: chat.php:1126 chat.php:1327 chat.php:2408
+#: index.php:1183 index.php:1384 index.php:2467 chat.php:1183 chat.php:1384
+#: chat.php:2467
msgid "Password:"
msgstr "Пароль:"
-#: chat.php:1128
+#: index.php:1185 chat.php:1185
msgid "Login"
msgstr "Увійти"
-#: chat.php:1129
+#: index.php:1186 chat.php:1186
msgid "Forgot login?"
msgstr ""
-#: chat.php:1142 chat.php:1306
+#: index.php:1199 index.php:1363 chat.php:1199 chat.php:1363
msgid "Reset password"
msgstr "Скидання пароля"
-#: chat.php:1150
+#: index.php:1207 chat.php:1207
#, php-format
msgid ""
"Successfully reset password for username %s. Please remove the password "
"reset define from the script again."
msgstr ""
-#: chat.php:1153
+#: index.php:1210 chat.php:1210
msgid ""
"Please modify the script and put the following at the bottom of it (change "
"the password). Then refresh this page: define('RESET_SUPERADMIN_PASSWORD', "
"'changeme');"
msgstr ""
-#: chat.php:1169 chat.php:1193 chat.php:1258 chat.php:1270 chat.php:1294
-#: chat.php:1308 chat.php:1316 chat.php:2145 chat.php:2153
+#: index.php:1226 index.php:1250 index.php:1315 index.php:1327 index.php:1351
+#: index.php:1365 index.php:1373 index.php:2204 index.php:2212 chat.php:1226
+#: chat.php:1250 chat.php:1315 chat.php:1327 chat.php:1351 chat.php:1365
+#: chat.php:1373 chat.php:2204 chat.php:2212
msgid "(choose)"
msgstr "(вибрати)"
-#: chat.php:1170
+#: index.php:1227 chat.php:1227
msgid "All guests"
msgstr "Всі гості"
-#: chat.php:1182
+#: index.php:1239 chat.php:1239
msgid "Administrative functions"
msgstr "Адміністративні функції"
-#: chat.php:1188
+#: index.php:1245 chat.php:1245
msgid "Clean messages"
msgstr "Очищення повідомлень"
-#: chat.php:1191
+#: index.php:1248 chat.php:1248
msgid "Whole room"
msgstr "Спільна кімната"
-#: chat.php:1192
+#: index.php:1249 chat.php:1249
msgid "Selection"
msgstr "Вибір"
-#: chat.php:1193
+#: index.php:1250 chat.php:1250
msgid "Following nickname:"
msgstr "За ніком:"
-#: chat.php:1200
+#: index.php:1257 chat.php:1257
msgid "Clean"
msgstr "Очистити"
-#: chat.php:1202
+#: index.php:1259 chat.php:1259
#, php-format
msgid "Kick Chatter (%d minutes)"
msgstr "Бан (%d хвилин)"
-#: chat.php:1204
+#: index.php:1261 chat.php:1261
msgid "Kickmessage:"
msgstr "Повідомлення забаненому:"
-#: chat.php:1205
+#: index.php:1262 chat.php:1262
msgid "Purge messages"
msgstr "Очищення повідомлень"
-#: chat.php:1206 chat.php:1388 chat.php:1546 chat.php:1580 chat.php:1591
-#: chat.php:2042
+#: index.php:1263 index.php:1445 index.php:1603 index.php:1637 index.php:1648
+#: index.php:2101 chat.php:1263 chat.php:1445 chat.php:1603 chat.php:1637
+#: chat.php:1648 chat.php:2101
msgid "Kick"
msgstr "Бан"
-#: chat.php:1208
+#: index.php:1265 chat.php:1265
msgid "Logout inactive Chatter"
msgstr "Вихід неактивного чату"
-#: chat.php:1212
+#: index.php:1269 chat.php:1269
msgid "View active sessions"
msgstr "Активні сесії"
-#: chat.php:1212 chat.php:1603
+#: index.php:1269 index.php:1660 chat.php:1269 chat.php:1660
msgid "Linkfilter"
msgstr "Фільтрування посилань"
-#: chat.php:1217
+#: index.php:1274 chat.php:1274
msgid "View"
msgstr "Перегляд"
-#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582
-#: chat.php:1626
+#: index.php:1280 index.php:1310 index.php:1361 index.php:1369 index.php:1639
+#: index.php:1683 chat.php:1280 chat.php:1310 chat.php:1361 chat.php:1369
+#: chat.php:1639 chat.php:1683
msgid "Change"
msgstr "Змінити"
-#: chat.php:1256
+#: index.php:1313 chat.php:1313
msgid "Register applicant"
msgstr "Додати заявника"
-#: chat.php:1264 chat.php:1322 chat.php:1328
+#: index.php:1321 index.php:1379 index.php:1385 chat.php:1321 chat.php:1379
+#: chat.php:1385
msgid "Register"
msgstr "Реєстрація"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Delete from database"
msgstr "Видалити з бази даних"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Deny access (!)"
msgstr "Заборонити доступ (!)"
-#: chat.php:1296
+#: index.php:1353 chat.php:1353
msgid "Set to applicant (SG)"
msgstr "Набір до претендента (SG)"
-#: chat.php:1298
+#: index.php:1355 chat.php:1355
msgid "Set to regular member"
msgstr "Встановити учасника"
-#: chat.php:1299
+#: index.php:1356 chat.php:1356
msgid "Set to moderator (M)"
msgstr "Набір модератора (M)"
-#: chat.php:1300
+#: index.php:1357 chat.php:1357
msgid "Set to supermod (SM)"
msgstr "Набір супермодератора (SM)"
-#: chat.php:1302
+#: index.php:1359 chat.php:1359
msgid "Set to admin (A)"
msgstr "Набір адміністратора (A)"
-#: chat.php:1314
+#: index.php:1371 chat.php:1371
msgid "Register Guest"
msgstr "Реєстрація гостей"
-#: chat.php:1324
+#: index.php:1381 chat.php:1381
msgid "Register new Member"
msgstr "Реєстрація нових учасників"
-#: chat.php:1332 chat.php:1408 chat.php:1595 chat.php:1636 chat.php:1710
-#: chat.php:1924
+#: index.php:1389 index.php:1465 index.php:1652 index.php:1693 index.php:1767
+#: index.php:1981 chat.php:1389 chat.php:1465 chat.php:1652 chat.php:1693
+#: chat.php:1767 chat.php:1981
msgid "Reload"
msgstr "Перезавантажити"
-#: chat.php:1345
+#: index.php:1402 chat.php:1402
msgid "Active Sessions"
msgstr "Активні сеанси"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "Nickname"
msgstr "Нік"
-#: chat.php:1346
+#: index.php:1403 chat.php:1403
msgid "Timeout in"
msgstr "Час очікування"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "User-Agent"
msgstr "Користувач-Агент"
-#: chat.php:1350
+#: index.php:1407 chat.php:1407
msgid "IP-Address"
msgstr "IP-адреса"
-#: chat.php:1351
+#: index.php:1408 chat.php:1408
msgid "Actions"
msgstr "Дії"
-#: chat.php:1393
+#: index.php:1450 chat.php:1450
msgid "Unban"
msgstr "Розблокувати"
-#: chat.php:1416
+#: index.php:1473 chat.php:1473
msgid "Incorrect regular expression!"
msgstr "Неправильний регулярний вираз!"
-#: chat.php:1416 chat.php:1424
+#: index.php:1473 index.php:1481 chat.php:1473 chat.php:1481
#, php-format
msgid "Your match was as follows: %s"
msgstr "Тексти в полях збігаються: %s"
-#: chat.php:1424
+#: index.php:1481 chat.php:1481
msgid ""
"Your match was too long. You can use max. 255 characters. Try splitting it "
"up."
@@ -750,40 +788,43 @@ msgstr ""
"Текст у полі занадто довгий. Можна використати максимум 255 символів, "
"спробуйте розбити поле на частини."
-#: chat.php:1541 chat.php:1606
+#: index.php:1598 index.php:1663 chat.php:1598 chat.php:1663
msgid "Filter ID:"
msgstr "Фільтр ID:"
-#: chat.php:1542 chat.php:1607
+#: index.php:1599 index.php:1664 chat.php:1599 chat.php:1664
msgid "Match"
msgstr "Збіг"
-#: chat.php:1543 chat.php:1608
+#: index.php:1600 index.php:1665 chat.php:1600 chat.php:1665
msgid "Replace"
msgstr "Замінювати"
-#: chat.php:1544 chat.php:1578 chat.php:1589
+#: index.php:1601 index.php:1635 index.php:1646 chat.php:1601 chat.php:1635
+#: chat.php:1646
msgid "Allow in PM"
msgstr "Дозволити в личку"
-#: chat.php:1545 chat.php:1579 chat.php:1590 chat.php:1609 chat.php:1625
-#: chat.php:1633
+#: index.php:1602 index.php:1636 index.php:1647 index.php:1666 index.php:1682
+#: index.php:1690 chat.php:1602 chat.php:1636 chat.php:1647 chat.php:1666
+#: chat.php:1682 chat.php:1690
msgid "Regex"
msgstr "Регулярний вираз"
-#: chat.php:1547 chat.php:1581 chat.php:1592
+#: index.php:1604 index.php:1638 index.php:1649 chat.php:1604 chat.php:1638
+#: chat.php:1649
msgid "Case sensitive"
msgstr "Регістр-чутливий"
-#: chat.php:1586 chat.php:1630
+#: index.php:1643 index.php:1687 chat.php:1643 chat.php:1687
msgid "New filter:"
msgstr "Новий фільтр:"
-#: chat.php:1593 chat.php:1634
+#: index.php:1650 index.php:1691 chat.php:1650 chat.php:1691
msgid "Add"
msgstr "Додати"
-#: chat.php:1691
+#: index.php:1748 chat.php:1748
msgid ""
"This chat uses frames. Please enable frames in your browser or use a "
"suitable one!"
@@ -791,96 +832,99 @@ msgstr ""
"Цей чат використовує frames. Будь ласка, увімкніть підтримку у вашому "
"браузері або використовуйте відповідний!"
-#: chat.php:1691 chat.php:2370 chat.php:2457
+#: index.php:1748 index.php:2429 index.php:2516 chat.php:1748 chat.php:2429
+#: chat.php:2516
msgid "Back to the login page."
msgstr "Повернутися до сторінки входу."
-#: chat.php:1709
+#: index.php:1766 chat.php:1766
msgid "Bottom"
msgstr "Вниз"
-#: chat.php:1710
+#: index.php:1767 chat.php:1767
msgid "Manual refresh required"
msgstr "Потрібно оновити сторінку вручну"
-#: chat.php:1726
+#: index.php:1783 chat.php:1783
msgid "Top"
msgstr "Вгору"
-#: chat.php:1734 chat.php:1940 chat.php:1942
+#: index.php:1791 index.php:1997 index.php:1999 chat.php:1791 chat.php:1997
+#: chat.php:1999
msgid "Delete selected messages"
msgstr "Видалити вибрані повідомлення"
-#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281
+#: index.php:1818 index.php:1945 index.php:2160 index.php:2340 chat.php:1818
+#: chat.php:1945 chat.php:2160 chat.php:2340
msgid "Back to the chat."
msgstr "Повернутися до чату."
-#: chat.php:1774 chat.php:1791
+#: index.php:1831 index.php:1848 chat.php:1831 chat.php:1848
msgid "Admin notes"
msgstr "Примітки адміністратора"
-#: chat.php:1777 chat.php:1788
+#: index.php:1834 index.php:1845 chat.php:1834 chat.php:1845
msgid "Staff notes"
msgstr "Службові нотатки"
-#: chat.php:1811
+#: index.php:1868 chat.php:1868
msgid "Notes saved!"
msgstr "Нотатки збережені!"
-#: chat.php:1835 chat.php:2122
+#: index.php:1892 index.php:2181 chat.php:1892 chat.php:2181
#, php-format
msgid "Last edited by %1$s at %2$s"
msgstr "Востаннє редагував %1$s %2$s"
-#: chat.php:1848
+#: index.php:1905 chat.php:1905
msgid "Save notes"
msgstr "Зберегти нотатки"
-#: chat.php:1850
+#: index.php:1907 chat.php:1907
msgid "Revisions:"
msgstr "Виправлення:"
-#: chat.php:1853
+#: index.php:1910 chat.php:1910
msgid "Older"
msgstr "Старі"
-#: chat.php:1857
+#: index.php:1914 chat.php:1914
msgid "Newer"
msgstr "Нові"
-#: chat.php:1868 chat.php:1914
+#: index.php:1925 index.php:1971 chat.php:1925 chat.php:1971
msgid "Waiting room"
msgstr "Гостьова"
-#: chat.php:1880
+#: index.php:1937 chat.php:1937
msgid "Allow checked"
msgstr "Дозволити перевірку"
-#: chat.php:1881
+#: index.php:1938 chat.php:1938
msgid "Allow all"
msgstr "Дозволити всім"
-#: chat.php:1882
+#: index.php:1939 chat.php:1939
msgid "Deny checked"
msgstr "Заборонити перевірку"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Deny all"
msgstr "Заборонити всім"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Send message to denied:"
msgstr "Надіслати повідомлення з відмовою:"
-#: chat.php:1884
+#: index.php:1941 chat.php:1941
msgid "Submit"
msgstr "Надіслати"
-#: chat.php:1886
+#: index.php:1943 chat.php:1943
msgid "No more entry requests to approve."
msgstr "Більш запитів для затвердження немає."
-#: chat.php:1916
+#: index.php:1973 chat.php:1973
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat in %2$d "
@@ -889,7 +933,7 @@ msgstr ""
"Ласкаво просимо %1$s, спостерігається затримка входу, доступ до чату буде "
"здійснено через %2$d секунд."
-#: chat.php:1918
+#: index.php:1975 chat.php:1975
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat as soon, "
@@ -898,7 +942,7 @@ msgstr ""
"Ласкаво просимо %1$s, спостерігається затримка входу, доступ до чату буде "
"доступний після підтвердження модератором."
-#: chat.php:1921
+#: index.php:1978 chat.php:1978
#, php-format
msgid ""
"If this page doesn't refresh every %d seconds, use the button below to "
@@ -907,64 +951,69 @@ msgstr ""
"Якщо ця сторінка не відповідає, не оновлюється кожні %d секунд, "
"використовуйте кнопку нижче, щоб перезавантажити її вручну!"
-#: chat.php:1926 chat.php:2339
+#: index.php:1983 index.php:2398 chat.php:1983 chat.php:2398
msgid "Exit Chat"
msgstr "Вихід"
-#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430
+#: index.php:1986 index.php:2133 index.php:2144 index.php:2489 chat.php:1986
+#: chat.php:2133 chat.php:2144 chat.php:2489
msgid "Rules"
msgstr "Правила"
-#: chat.php:1985
+#: index.php:2042 chat.php:2042
msgid "Send to"
msgstr "Надіслати"
-#: chat.php:1990
+#: index.php:2047 chat.php:2047
msgid "All chatters"
msgstr "Все в чаті"
-#: chat.php:1996
+#: index.php:2053 chat.php:2053
msgid "Members only"
msgstr "Учасники"
-#: chat.php:2003
+#: index.php:2060 chat.php:2060
msgid "Staff only"
msgstr "Службові"
-#: chat.php:2010
+#: index.php:2067 chat.php:2067
msgid "Admin only"
msgstr "Адміністратор"
-#: chat.php:2019
+#: index.php:2076 chat.php:2076
msgid "(offline)"
msgstr "(оффлайн)"
-#: chat.php:2043
+#: index.php:2078 chat.php:2078
+msgid "(logging out)"
+msgstr ""
+
+#: index.php:2102 chat.php:2102
msgid "Also purge messages"
msgstr "Також очистити повідомлення"
-#: chat.php:2050
+#: index.php:2109 chat.php:2109
msgid "Delete last message"
msgstr "Видалити останнє повідомлення"
-#: chat.php:2055
+#: index.php:2114 chat.php:2114
msgid "Delete all messages"
msgstr "Видалити всі повідомлення"
-#: chat.php:2057
+#: index.php:2116 chat.php:2116
msgid "Switch to single-line"
msgstr "Включити однорядковий режим"
-#: chat.php:2059
+#: index.php:2118 chat.php:2118
msgid "Switch to multi-line"
msgstr "Увімкнути багаторядковий режим"
-#: chat.php:2070
+#: index.php:2129 chat.php:2129
#, php-format
msgid "Welcome %s!"
msgstr "Ласкаво просимо %s!"
-#: chat.php:2071
+#: index.php:2130 chat.php:2130
#, php-format
msgid ""
"If this frame does not reload in %d seconds, you'll have to enable automatic "
@@ -977,16 +1026,16 @@ msgstr ""
"Якщо це вікно не оновиться протягом %d секунд, Вам потрібно увімкнути "
"автоматичне оновлення (meta refresh) у вашому браузері. Також переконайтеся "
"у відсутності веб-фільтра, перевірте налаштування проксі або плагіни "
-"браузера на блокування автоматичного оновлення! Приклади плагінів: \"Polipo"
-"\", \"NoScript\", і т.д. Проте, (у разі помилок перезавантаження сторінок "
-"через сервер/проксі) ви завжди можете використовувати кнопки внизу сторінки "
-"для ручного оновлення сторінки."
+"браузера на блокування автоматичного оновлення! Приклади плагінів: "
+"\"Polipo\", \"NoScript\", і т.д. Проте, (у разі помилок перезавантаження "
+"сторінок через сервер/проксі) ви завжди можете використовувати кнопки внизу "
+"сторінки для ручного оновлення сторінки."
-#: chat.php:2087
+#: index.php:2146 chat.php:2146
msgid "Help"
msgstr "Допомога"
-#: chat.php:2088
+#: index.php:2147 chat.php:2147
msgid ""
"All functions should be pretty much self-explaining, just use the buttons. "
"In your profile you can adjust the refresh rate and font colour, as well as "
@@ -999,7 +1048,7 @@ msgstr ""
"навіть якщо ви нічого не пишете, то буде автоматично зареєстровано через "
"деякий час."
-#: chat.php:2090
+#: index.php:2149 chat.php:2149
msgid ""
"If you want to embed an image in your post, simply put [img] in front of "
"your image URL. Example: [img]http://example.com/images/file.jpg will embed "
@@ -1009,7 +1058,7 @@ msgstr ""
"вашим URL-зображенням. Приклад: [img]http://example.com/images/file.jpg "
"прикріплюватиме картинку до вашого повідомлення."
-#: chat.php:2093
+#: index.php:2152 chat.php:2152
msgid ""
"Members: You'll have some more options in your profile. You can adjust your "
"font face, change your password anytime and of course you can delete your "
@@ -1018,7 +1067,7 @@ msgstr ""
"Учасники: Ви маєте кілька варіантів налаштувань у вашому профілі. Можна "
"настроїти шрифт та змінити свій пароль у будь-який час."
-#: chat.php:2095
+#: index.php:2154 chat.php:2154
msgid ""
"Moderators: Notice the Admin-button at the bottom. It'll bring up a page "
"where you can clean the room, kick chatters, view all active sessions and "
@@ -1028,7 +1077,7 @@ msgstr ""
"на сторінку, де ви можете очистити кімнату, забанити, переглянути всі "
"активні сеанси та відключити гостьовий доступ, якщо необхідно."
-#: chat.php:2097
+#: index.php:2156 chat.php:2156
msgid ""
"Admins: You'll be furthermore able to register guests, edit members and "
"register new nicknames."
@@ -1036,225 +1085,231 @@ msgstr ""
"Адміністратори: Ви здатні реєструвати гостей та нові ніки без їх присутності "
"в кімнаті, а також редагувати користувачів."
-#: chat.php:2135
+#: index.php:2194 chat.php:2194
msgid "Your Profile"
msgstr "Ваш профіль"
-#: chat.php:2144
+#: index.php:2203 chat.php:2203
msgid "Don't ignore anymore"
msgstr "Більше не ігнорувати"
-#: chat.php:2152
+#: index.php:2211 chat.php:2211
msgid "Ignore"
msgstr "Ігнорувати"
-#: chat.php:2163
+#: index.php:2222 chat.php:2222
#, php-format
msgid "Refresh rate (%1$d-%2$d seconds)"
msgstr "Частота оновлення (%1$d-%2$d секунд)"
-#: chat.php:2167 chat.php:2170
+#: index.php:2226 index.php:2229 chat.php:2226 chat.php:2229
msgid "View examples"
msgstr "Подивитися приклади"
-#: chat.php:2174
+#: index.php:2233 chat.php:2233
msgid "Fontface"
msgstr "Шрифт"
-#: chat.php:2175
+#: index.php:2234 chat.php:2234
msgid "Room Default"
msgstr "За замовчуванням"
-#: chat.php:2188
+#: index.php:2247 chat.php:2247
msgid "Bold"
msgstr "Жирний"
-#: chat.php:2192
+#: index.php:2251 chat.php:2251
msgid "Italic"
msgstr "Курсів"
-#: chat.php:2196
+#: index.php:2255 chat.php:2255
msgid "Small"
msgstr "Маленький"
-#: chat.php:2199
+#: index.php:2258 chat.php:2258
msgid "Example for your chosen font"
msgstr "Приклад вибраного вами шрифту"
-#: chat.php:2203
+#: index.php:2262 chat.php:2262
msgid "Autoscroll (for old browsers or top-to-bottom sort)."
msgstr "Автозавантаження (для старих браузерів, для сортування зверху-вниз)."
-#: chat.php:2234
+#: index.php:2293 chat.php:2293
msgid "For everyone"
msgstr "Для всіх"
-#: chat.php:2239
+#: index.php:2298 chat.php:2298
msgid "For members only"
msgstr "Тільки для членів"
-#: chat.php:2244
+#: index.php:2303 chat.php:2303
msgid "For staff only"
msgstr "Тільки для модераторів"
-#: chat.php:2248
+#: index.php:2307 chat.php:2307
msgid "Time zone"
msgstr "Годинний пояс"
-#: chat.php:2261
+#: index.php:2320 chat.php:2320
msgid "Change Password"
msgstr "Змінити пароль"
-#: chat.php:2263
+#: index.php:2322 chat.php:2322
msgid "Old password:"
msgstr "Старий пароль:"
-#: chat.php:2264
+#: index.php:2323 chat.php:2323
msgid "New password:"
msgstr "Новий пароль:"
-#: chat.php:2265
+#: index.php:2324 chat.php:2324
msgid "Confirm new password:"
msgstr "Підтвердження:"
-#: chat.php:2268
+#: index.php:2327 chat.php:2327
msgid "Change Nickname"
msgstr "Змінити ім`я"
-#: chat.php:2269
+#: index.php:2328 chat.php:2328
msgid "New nickname:"
msgstr "Нове ім`я:"
-#: chat.php:2273
+#: index.php:2332 chat.php:2332
msgid "Save changes"
msgstr "Зберегти зміни"
-#: chat.php:2275
+#: index.php:2334 chat.php:2334
msgid "Delete account"
msgstr "Видалити обліковий запис"
-#: chat.php:2301
+#: index.php:2360 chat.php:2360
msgid "Reload Post Box"
msgstr "Перезавантажити поштову скриньку"
-#: chat.php:2304
+#: index.php:2363 chat.php:2363
msgid "Reload Messages"
msgstr "Оновити"
-#: chat.php:2307
+#: index.php:2366 chat.php:2366
msgid "Profile"
msgstr "Профіль"
-#: chat.php:2311 chat.php:2528
+#: index.php:2370 index.php:2590 chat.php:2370 chat.php:2590
msgid "Admin"
msgstr "Адміністратор"
-#: chat.php:2318
+#: index.php:2377 chat.php:2377
msgid "View public notes"
msgstr "Читати профілі користувачів"
-#: chat.php:2325
+#: index.php:2384 chat.php:2384
msgid "Clone"
msgstr "Клонувати"
-#: chat.php:2334
+#: index.php:2393 chat.php:2393
msgid "Rearrange"
msgstr "Перебудувати"
-#: chat.php:2337
+#: index.php:2396 chat.php:2396
msgid "Rules & Help"
msgstr "Правила та допомога"
-#: chat.php:2358 chat.php:2362
+#: index.php:2417 index.php:2421 chat.php:2417 chat.php:2421
msgid "File not found!"
msgstr "Файл не виявлено!"
-#: chat.php:2370
+#: index.php:2429 chat.php:2429
#, php-format
msgid "Bye %s, visit again soon!"
msgstr "Поки %s, заходьте знову!"
-#: chat.php:2377
+#: index.php:2436 chat.php:2436
msgid "Colourtable"
msgstr "Приклади кольорів"
-#: chat.php:2388
+#: index.php:2447 chat.php:2447
msgid "Back to your Profile"
msgstr "Повернутися до вашого профілю"
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "Repeat password to register"
msgstr "Повторіть пароль Зареєструватися"
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "(optional)"
msgstr "(опціонально)"
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Guests, choose a colour:"
msgstr "Виберіть колір:"
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Random Colour"
msgstr "Випадковий колір"
-#: chat.php:2421 chat.php:2435 chat.php:2569
+#: index.php:2480 index.php:2494 index.php:2631 chat.php:2480 chat.php:2494
+#: chat.php:2631
msgid "Sorry, currently members only!"
msgstr "Вибачте, входять лише зареєстровані!"
-#: chat.php:2423 chat.php:2437
+#: index.php:2482 index.php:2496 chat.php:2482 chat.php:2496
msgid "Enter Chat"
msgstr "Увійти в чат"
-#: chat.php:2457
+#: index.php:2516 chat.php:2516
#, php-format
msgid "Error: %s"
msgstr "Помилка: %s"
-#: chat.php:2467
+#: index.php:2526 chat.php:2526
msgid "Fatal error"
msgstr "Фатальна помилка"
-#: chat.php:2470
+#: index.php:2529 chat.php:2529
#, php-format
msgid "Fatal error: %s"
msgstr "Фатальна помилка: %s"
-#: chat.php:2482 chat.php:2693
+#: index.php:2541 index.php:2756 chat.php:2541 chat.php:2756
msgid "Failed login attempt(s)"
msgstr "Невдала спроба входу(и)"
-#: chat.php:2489
+#: index.php:2548 chat.php:2548
#, php-format
msgid "Read %d messages in your inbox"
msgstr "Прочитайте %d вхідних повідомлень"
-#: chat.php:2498
+#: index.php:2557 chat.php:2557
#, php-format
msgid "%d new guests to approve"
msgstr "%d нові гості для схвалення"
-#: chat.php:2530
+#: index.php:2577 chat.php:2577
+msgid "logging out"
+msgstr ""
+
+#: index.php:2592 chat.php:2592
msgid "Admin:"
msgstr "Адміністратор:"
-#: chat.php:2533
+#: index.php:2595 chat.php:2595
msgid "Staff"
msgstr "Службові"
-#: chat.php:2535
+#: index.php:2597 chat.php:2597
msgid "Staff:"
msgstr "Службові:"
-#: chat.php:2540
+#: index.php:2602 chat.php:2602
msgid "Members:"
msgstr "Учасники:"
-#: chat.php:2542
+#: index.php:2604 chat.php:2604
msgid "Guests"
msgstr "Гості"
-#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092
+#: index.php:2625 index.php:3063 index.php:3267 index.php:4172 chat.php:2625
+#: chat.php:3063 chat.php:3267 chat.php:4172
#, php-format
msgid ""
"Invalid nickname (%1$d characters maximum and has to match the regular "
@@ -1263,7 +1318,8 @@ msgstr ""
"Некоректне ім`я (%1$d символів максимум і воно має співпадати з виразом "
"\"%2$s\")"
-#: chat.php:2566 chat.php:2996 chat.php:3162 chat.php:4094
+#: index.php:2628 index.php:3066 index.php:3232 index.php:4174 chat.php:2628
+#: chat.php:3066 chat.php:3232 chat.php:4174
#, php-format
msgid ""
"Invalid password (At least %1$d characters and has to match the regular "
@@ -1272,248 +1328,256 @@ msgstr ""
"Некоректний пароль (Хоча %1$d символів і він повинен співпадати з виразом "
"\"%2$s\")"
-#: chat.php:2574 chat.php:2739
+#: index.php:2636 index.php:2806 chat.php:2636 chat.php:2806
msgid "Wrong global Password!"
msgstr "Неправильний глобальний пароль!"
-#: chat.php:2591 chat.php:2612
+#: index.php:2654 index.php:2675 chat.php:2654 chat.php:2675
msgid "Wrong Captcha"
msgstr "Неправильна капча"
-#: chat.php:2596 chat.php:2604
+#: index.php:2659 index.php:2667 chat.php:2659 chat.php:2667
msgid "Captcha already used or timed out."
msgstr "Захистний код вже використовується або час закінчився."
-#: chat.php:2652
+#: index.php:2715 chat.php:2715
msgid "A user with this nickname is already logged in."
msgstr "Користувач з поточним ім`ям вже в мережі."
-#: chat.php:2652 chat.php:2933 chat.php:3176
+#: index.php:2715 index.php:3003 index.php:3246 chat.php:2715 chat.php:3003
+#: chat.php:3246
msgid "Wrong Password!"
msgstr "Неправильний пароль!"
-#: chat.php:2696
+#: index.php:2759 chat.php:2759
msgid "Dismiss"
msgstr "Визнав"
-#: chat.php:2747 chat.php:3171 chat.php:4096
+#: index.php:2814 index.php:3241 index.php:4176 chat.php:2814 chat.php:3241
+#: chat.php:4176
msgid "Password confirmation does not match!"
msgstr "Введені паролі не співпадають!"
-#: chat.php:2859
+#: index.php:2854 chat.php:2854
+#, fuzzy
+#| msgid "Kickmessage:"
+msgid "no kick message"
+msgstr "Повідомлення забаненому:"
+
+#: index.php:2929 chat.php:2929
msgid "Invalid/expired session"
msgstr "Недійсна/з терміном сесія"
-#: chat.php:2875 chat.php:3412
+#: index.php:2945 index.php:3483 chat.php:2945 chat.php:3483
msgid "You have been kicked!"
msgstr "Забанен!"
-#: chat.php:2885
+#: index.php:2955 chat.php:2955
#, php-format
msgid "Currently %d chatter(s) in room:"
msgstr "Зараз %d розмова(ів) у кімнаті:"
-#: chat.php:2933
+#: index.php:3003 chat.php:3003
msgid "This nickname is a registered member."
msgstr "Це ім`я належить зареєстрованому користувачеві."
-#: chat.php:2960 chat.php:3001
+#: index.php:3030 index.php:3071 chat.php:3030 chat.php:3071
#, php-format
msgid "%s is already registered."
msgstr "%s вже зареєстрований."
-#: chat.php:2969 chat.php:2990
+#: index.php:3039 index.php:3060 chat.php:3039 chat.php:3060
#, php-format
msgid "Can't register %s"
msgstr "Ви не можете реєструватися %s"
-#: chat.php:2978 chat.php:3023
+#: index.php:3048 index.php:3093 chat.php:3048 chat.php:3093
#, php-format
msgid "%s successfully registered."
msgstr "%s успішно зареєстрований."
-#: chat.php:3031 chat.php:3036
+#: index.php:3101 index.php:3106 chat.php:3101 chat.php:3106
#, php-format
msgid "Can't change status of %s"
msgstr "Неможливо змінити статус %s"
-#: chat.php:3047
+#: index.php:3117 chat.php:3117
#, php-format
msgid "%s successfully deleted from database."
msgstr "%s успішно видалено з бази даних."
-#: chat.php:3056
+#: index.php:3126 chat.php:3126
#, php-format
msgid "Status of %s successfully changed."
msgstr "Статус %s успішно змінено."
-#: chat.php:3073
+#: index.php:3143 chat.php:3143
#, php-format
msgid "Successfully reset password for %s"
msgstr ""
-#: chat.php:3075
+#: index.php:3145 chat.php:3145
#, php-format
msgid "Can't reset password for %s"
msgstr ""
-#: chat.php:3190
+#: index.php:3260 chat.php:3260
msgid "Your profile has successfully been saved."
msgstr "Ваш профіль був успішно збережений."
-#: chat.php:3202
+#: index.php:3272 chat.php:3272
msgid "Nickname is already taken"
msgstr "Ім`я вже зайняте"
-#: chat.php:3714
+#: index.php:3785 chat.php:3785
msgid "system message"
msgstr "системне повідомлення"
-#: chat.php:3921
+#: index.php:4001 chat.php:4001
msgid "Beige"
msgstr "Бежевий"
-#: chat.php:3922
+#: index.php:4002 chat.php:4002
msgid "Black"
msgstr "Чорний"
-#: chat.php:3923
+#: index.php:4003 chat.php:4003
msgid "Blue"
msgstr "Синій"
-#: chat.php:3924
+#: index.php:4004 chat.php:4004
msgid "Blue violet"
msgstr "Фіолетово-синій"
-#: chat.php:3925
+#: index.php:4005 chat.php:4005
msgid "Brown"
msgstr "Коричневий"
-#: chat.php:3926
+#: index.php:4006 chat.php:4006
msgid "Cyan"
msgstr "Блакитний"
-#: chat.php:3927
+#: index.php:4007 chat.php:4007
msgid "Dark blue"
msgstr "Темно-синій"
-#: chat.php:3928
+#: index.php:4008 chat.php:4008
msgid "Dark green"
msgstr "Темно-зелений"
-#: chat.php:3929
+#: index.php:4009 chat.php:4009
msgid "Dark red"
msgstr "Темно-червоний"
-#: chat.php:3930
+#: index.php:4010 chat.php:4010
msgid "Dark violet"
msgstr "Темно-фіолетовий"
-#: chat.php:3931
+#: index.php:4011 chat.php:4011
msgid "Sky blue"
msgstr "Блакитне небо"
-#: chat.php:3932
+#: index.php:4012 chat.php:4012
msgid "Gold"
msgstr "Золотий"
-#: chat.php:3933
+#: index.php:4013 chat.php:4013
msgid "Grey"
msgstr "Сірий"
-#: chat.php:3934
+#: index.php:4014 chat.php:4014
msgid "Green"
msgstr "Зелений"
-#: chat.php:3935
+#: index.php:4015 chat.php:4015
msgid "Hot pink"
msgstr "Яскраво-рожевий"
-#: chat.php:3936
+#: index.php:4016 chat.php:4016
msgid "Indigo"
msgstr "Індиго"
-#: chat.php:3937
+#: index.php:4017 chat.php:4017
msgid "Light blue"
msgstr "Світло-синій"
-#: chat.php:3938
+#: index.php:4018 chat.php:4018
msgid "Light green"
msgstr "Світло-зелений"
-#: chat.php:3939
+#: index.php:4019 chat.php:4019
msgid "Lime green"
msgstr "Зелений лайм"
-#: chat.php:3940
+#: index.php:4020 chat.php:4020
msgid "Magenta"
msgstr "Пурпурний"
-#: chat.php:3941
+#: index.php:4021 chat.php:4021
msgid "Olive"
msgstr "Оливковий"
-#: chat.php:3942
+#: index.php:4022 chat.php:4022
msgid "Orange"
msgstr "Помаранчевий"
-#: chat.php:3943
+#: index.php:4023 chat.php:4023
msgid "Orange red"
msgstr "Оранжево-червоний"
-#: chat.php:3944
+#: index.php:4024 chat.php:4024
msgid "Purple"
msgstr "Фіолетовий"
-#: chat.php:3945
+#: index.php:4025 chat.php:4025
msgid "Red"
msgstr "Червоний"
-#: chat.php:3946
+#: index.php:4026 chat.php:4026
msgid "Royal blue"
msgstr "Королівський синій"
-#: chat.php:3947
+#: index.php:4027 chat.php:4027
msgid "Sea green"
msgstr "Морський зелений"
-#: chat.php:3948
+#: index.php:4028 chat.php:4028
msgid "Sienna"
msgstr "Сієна"
-#: chat.php:3949
+#: index.php:4029 chat.php:4029
msgid "Silver"
msgstr "Срібний"
-#: chat.php:3950
+#: index.php:4030 chat.php:4030
msgid "Tan"
msgstr "Засмага"
-#: chat.php:3951
+#: index.php:4031 chat.php:4031
msgid "Teal"
msgstr "Чирок"
-#: chat.php:3952
+#: index.php:4032 chat.php:4032
msgid "Violet"
msgstr "Фіолетовий"
-#: chat.php:3953
+#: index.php:4033 chat.php:4033
msgid "White"
msgstr "Білий"
-#: chat.php:3954
+#: index.php:4034 chat.php:4034
msgid "Yellow"
msgstr "Жовтий"
-#: chat.php:3955
+#: index.php:4035 chat.php:4035
msgid "Yellow green"
msgstr "Жовто-зелений"
-#: chat.php:4077
+#: index.php:4157 chat.php:4157
msgid "Successfully destroyed chat"
msgstr "Чат успішно знищено"
-#: chat.php:4086
+#: index.php:4166 chat.php:4166
msgid ""
"Database tables already exist! To continue, you have to delete these tables "
"manually first."
@@ -1521,105 +1585,111 @@ msgstr ""
"Таблиці бази даних вже є! Щоб продовжити, ви повинні спочатку видалити ці "
"таблиці вручну."
-#: chat.php:4089
+#: index.php:4169 chat.php:4169
msgid "A Superadmin already exists!"
msgstr "Суперадміністратор вже існує!"
-#: chat.php:4182 chat.php:4369
+#: index.php:4263 index.php:4451 chat.php:4263 chat.php:4451
#, php-format
msgid "%s - "
msgstr "%s - "
-#: chat.php:4183 chat.php:4369
+#: index.php:4264 index.php:4451 chat.php:4264 chat.php:4451
#, php-format
msgid "[M] %s - "
msgstr ""
-#: chat.php:4184 chat.php:4369
+#: index.php:4265 index.php:4451 chat.php:4265 chat.php:4451
#, php-format
msgid "[Staff] %s - "
msgstr ""
-#: chat.php:4185 chat.php:4369
+#: index.php:4266 index.php:4451 chat.php:4266 chat.php:4451
#, php-format
msgid "[Admin] %s - "
msgstr ""
-#: chat.php:4186 chat.php:4369
+#: index.php:4267 index.php:4451 chat.php:4267 chat.php:4451
#, php-format
msgid "[%1$s to %2$s] - "
msgstr ""
-#: chat.php:4187
+#: index.php:4268 chat.php:4268
#, php-format
msgid "%s entered the chat."
msgstr "%s увійшов до чату."
-#: chat.php:4188
+#: index.php:4269 chat.php:4269
#, php-format
msgid "%s left the chat."
msgstr "%s залишив чат."
-#: chat.php:4189
+#: index.php:4270 chat.php:4270
#, php-format
msgid "%s is now a registered member."
msgstr "%s тепер зареєстрований член."
-#: chat.php:4190
+#: index.php:4271 chat.php:4271
#, php-format
msgid "%s is now a registered applicant."
msgstr "%s тепер зареєстрований заявник."
-#: chat.php:4191
-#, php-format
-msgid "%s has been kicked."
+#: index.php:4272 chat.php:4272
+#, fuzzy, php-format
+#| msgid "%s has been kicked."
+msgid "%1$s has been kicked: %2$s"
msgstr "%s виключено з чату."
-#: chat.php:4192
-#, php-format
-msgid "%s have been kicked."
+#: index.php:4273 chat.php:4273
+#, fuzzy, php-format
+#| msgid "%s have been kicked."
+msgid "%1$s have been kicked: %2$s"
msgstr "%s виключено з чату."
-#: chat.php:4193
-msgid "All guests have been kicked."
+#: index.php:4274 chat.php:4274
+#, fuzzy, php-format
+#| msgid "All guests have been kicked."
+msgid "All guests have been kicked: %1$s"
msgstr "Всі гості виключені з чату."
-#: chat.php:4194
+#: index.php:4275 chat.php:4275
#, php-format
msgid "%s has been cleaned."
msgstr "%s було очищено."
-#: chat.php:4202 chat.php:4396
+#: index.php:4283 index.php:4478 chat.php:4283 chat.php:4478
msgid "Temporarily disabled"
msgstr "Тимчасово вимкнено"
-#: chat.php:4218 chat.php:4594
+#: index.php:4299 index.php:4676 chat.php:4299 chat.php:4676
msgid "A chat community"
msgstr ""
-#: chat.php:4256
+#: index.php:4338 chat.php:4338
msgid "Successfully registered!"
msgstr "Успішно зареєстровано!"
-#: chat.php:4522 chat.php:4721 chat.php:4728
+#: index.php:4604 index.php:4807 index.php:4814 chat.php:4604 chat.php:4807
+#: chat.php:4814
msgid "No connection to database!"
msgstr "Немає з'єднання з базою даних!"
-#: chat.php:4531
+#: index.php:4613 chat.php:4613
msgid ""
"Note: Default CSS is now hardcoded and can be removed from the CSS setting"
msgstr ""
"Замітка: по встановленню CSS він важкий і можна прибрати його в CSS "
"налаштуваннях"
-#: chat.php:4611
+#: index.php:4697 chat.php:4697
#, php-format
msgid ""
"The %s extension of PHP is required for the encryption feature. Please "
"install it first or set the encrypted setting back to false."
msgstr ""
-#: chat.php:4684 chat.php:4689 chat.php:4694
+#: index.php:4770 index.php:4775 index.php:4780 chat.php:4770 chat.php:4775
+#: chat.php:4780
#, php-format
msgid ""
"The %s extension of PHP is required for the selected database driver. Please "
@@ -1628,7 +1698,8 @@ msgstr ""
"%s розширення для PHP вимагається для драйверів бази даних. Будь ласка, "
"встановіть його спочатку."
-#: chat.php:4707 chat.php:4715 chat.php:4719 chat.php:4726
+#: index.php:4793 index.php:4801 index.php:4805 index.php:4812 chat.php:4793
+#: chat.php:4801 chat.php:4805 chat.php:4812
msgid ""
"No connection to database, please create a database and edit the script to "
"use the correct database with given username and password!"
@@ -1637,7 +1708,7 @@ msgstr ""
"сценарій, щоб використовувати правильну базу даних із заданим ім`ям "
"користувача та паролем!"
-#: chat.php:4734
+#: index.php:4820 chat.php:4820
msgid ""
"The memcached extension of PHP is required for the caching feature. Please "
"install it first or set the memcached setting back to false."
diff --git a/locale/zh_CN/LC_MESSAGES/le-chat-php.po b/locale/zh_CN/LC_MESSAGES/le-chat-php.po
index 70df235..ef45e90 100644
--- a/locale/zh_CN/LC_MESSAGES/le-chat-php.po
+++ b/locale/zh_CN/LC_MESSAGES/le-chat-php.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-01-18 21:32+0100\n"
+"POT-Creation-Date: 2025-03-29 17:02+0100\n"
"PO-Revision-Date: 2023-01-18 21:40+0100\n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -18,263 +18,269 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Poedit 3.1.1\n"
-#: chat.php:261
+#: index.php:272 chat.php:272
msgid "Enable applicants"
msgstr "启用申请人"
-#: chat.php:262
+#: index.php:273 index.php:2267 chat.php:273 chat.php:2267
msgid "Embed images"
msgstr "嵌入图像"
-#: chat.php:263 chat.php:2202
+#: index.php:274 index.php:2261 chat.php:274 chat.php:2261
msgid "Show Timestamps"
msgstr "显示时间戳"
-#: chat.php:264
+#: index.php:275 chat.php:275
msgid "Show session-IP"
msgstr "显示会话-IP"
-#: chat.php:265
+#: index.php:276 chat.php:276
msgid "Members can kick, if no moderator is present"
msgstr "如果没有主持人,会员可以踢"
-#: chat.php:266
+#: index.php:277 chat.php:277
msgid "Members can always kick"
msgstr "会员总是可以驱逐客人"
-#: chat.php:267
+#: index.php:278 chat.php:278
msgid "Force redirection"
msgstr "强制重定向"
-#: chat.php:268
+#: index.php:279 index.php:2270 chat.php:279 chat.php:2270
msgid "Incognito mode"
msgstr "隐身模式"
-#: chat.php:269
+#: index.php:280 chat.php:280
msgid "Send mail on new public message"
msgstr "发送新公共邮件的邮件"
-#: chat.php:270
+#: index.php:281 chat.php:281
msgid "Fallback to waiting room, if no moderator is present to approve guests"
msgstr "如果没有主持人来批准客人,请回到候诊室"
-#: chat.php:271
+#: index.php:282 chat.php:282
msgid "Disable private messages"
msgstr "禁用私人消息"
-#: chat.php:272 chat.php:2223
+#: index.php:283 index.php:2282 chat.php:283 chat.php:2282
msgid "Enable offline inbox"
msgstr "启用离线收件箱"
-#: chat.php:273
+#: index.php:284 chat.php:284
msgid "Show a greeting message before showing the messages"
msgstr "在显示消息之前显示问候消息"
-#: chat.php:274 chat.php:2204
+#: index.php:285 index.php:2263 chat.php:285 chat.php:2263
msgid "Sort messages from top to bottom"
msgstr "从上到下对消息进行排序"
-#: chat.php:275 chat.php:2205
+#: index.php:286 index.php:2264 chat.php:286 chat.php:2264
msgid "Hide list of chatters"
msgstr "隐藏聊天列表"
-#: chat.php:276 chat.php:1780 chat.php:1794
+#: index.php:287 index.php:1837 index.php:1851 chat.php:287 chat.php:1837
+#: chat.php:1851
msgid "Personal notes"
msgstr ""
-#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110
+#: index.php:288 index.php:1840 index.php:1854 index.php:2169 chat.php:288
+#: chat.php:1840 chat.php:1854 chat.php:2169
msgid "Public notes"
msgstr "用户配置文件"
-#: chat.php:278
+#: index.php:289 chat.php:289
msgid "Apply kick filter on moderators"
msgstr ""
-#: chat.php:279
+#: index.php:290 chat.php:290
msgid "Show who kicks people or purges all messages."
msgstr "显示谁驱逐人或清除所有消息。"
-#: chat.php:280
+#: index.php:291 chat.php:291
msgid "Hide reload post box button"
msgstr ""
-#: chat.php:281
+#: index.php:292 chat.php:292
msgid "Hide reload messages button"
msgstr ""
-#: chat.php:282
+#: index.php:293 chat.php:293
msgid "Hide profile button"
msgstr ""
-#: chat.php:283
+#: index.php:294 chat.php:294
msgid "Hide admin button"
msgstr ""
-#: chat.php:284
+#: index.php:295 chat.php:295
msgid "Hide notes button"
msgstr ""
-#: chat.php:285
+#: index.php:296 chat.php:296
msgid "Hide clone button"
msgstr ""
-#: chat.php:286
+#: index.php:297 chat.php:297
msgid "Hide rearrange button"
msgstr ""
-#: chat.php:287
+#: index.php:298 chat.php:298
msgid "Hide help button"
msgstr ""
-#: chat.php:288
+#: index.php:299 chat.php:299
msgid "Apply postbox delete button globally"
msgstr ""
-#: chat.php:289
+#: index.php:300 chat.php:300
msgid "Allow enhancing functionality with JavaScript"
msgstr ""
-#: chat.php:292 chat.php:2170
+#: index.php:303 index.php:2229 chat.php:303 chat.php:2229
msgid "Background colour"
msgstr "背景色"
-#: chat.php:293 chat.php:2167
+#: index.php:304 index.php:2226 chat.php:304 chat.php:2226
msgid "Font colour"
msgstr "字体颜色"
-#: chat.php:296
+#: index.php:307 chat.php:307
msgid "Entrance"
msgstr "入口"
-#: chat.php:297
+#: index.php:308 chat.php:308
msgid "Leaving"
msgstr "离开"
-#: chat.php:298
+#: index.php:309 chat.php:309
msgid "Member registered"
msgstr "成员注册"
-#: chat.php:299
+#: index.php:310 chat.php:310
msgid "Applicant registered"
msgstr "邀请人注册"
-#: chat.php:300
+#: index.php:311 chat.php:311
msgid "Kicked"
msgstr "踢出"
-#: chat.php:301
+#: index.php:312 chat.php:312
msgid "Multiple kicked"
msgstr "批量踢出"
-#: chat.php:302
+#: index.php:313 chat.php:313
msgid "All kicked"
msgstr "全部踢出"
-#: chat.php:303
+#: index.php:314 chat.php:314
msgid "Room cleaned"
msgstr "房间清理"
-#: chat.php:304
+#: index.php:315 chat.php:315
msgid "Message to all"
msgstr "给所有人的信息"
-#: chat.php:305
+#: index.php:316 chat.php:316
msgid "Message to members only"
msgstr "仅向会员发送消息"
-#: chat.php:306
+#: index.php:317 chat.php:317
msgid "Message to staff only"
msgstr "仅向员工发送消息"
-#: chat.php:307
+#: index.php:318 chat.php:318
msgid "Message to admins only"
msgstr "仅向管理员发送消息"
-#: chat.php:308
+#: index.php:319 chat.php:319
msgid "Private message"
msgstr "私人信息"
-#: chat.php:309
+#: index.php:320 chat.php:320
msgid "Attachement"
msgstr "附件"
-#: chat.php:312
+#: index.php:323 chat.php:323
msgid "Member timeout (minutes)"
msgstr "会员超时(分钟)"
-#: chat.php:313
+#: index.php:324 chat.php:324
msgid "Guest timeout (minutes)"
msgstr "访客超时(分钟)"
-#: chat.php:314
+#: index.php:325 chat.php:325
msgid "Kick penalty (minutes)"
msgstr "踢罚(分钟)"
-#: chat.php:315
+#: index.php:326 chat.php:326
msgid "Waiting room time (seconds)"
msgstr "等候室时间(秒)"
-#: chat.php:316
+#: index.php:327 chat.php:327
+msgid "Logout delay (seconds)"
+msgstr ""
+
+#: index.php:328 chat.php:328
msgid "Captcha timeout (seconds)"
msgstr "验证码超时(秒)"
-#: chat.php:317
+#: index.php:329 chat.php:329
msgid "Message timeout (minutes)"
msgstr "消息超时(分钟)"
-#: chat.php:318
+#: index.php:330 chat.php:330
msgid "Message limit (public)"
msgstr "消息限制(公开)"
-#: chat.php:319
+#: index.php:331 chat.php:331
msgid "Maximal message length"
msgstr "最大消息长度"
-#: chat.php:320
+#: index.php:332 chat.php:332
msgid "Maximal nickname length"
msgstr "最大昵称长度"
-#: chat.php:321
+#: index.php:333 chat.php:333
msgid "Minimal password length"
msgstr "最小密码长度"
-#: chat.php:322
+#: index.php:334 chat.php:334
msgid "Default message reload time (seconds)"
msgstr "默认消息重新加载时间(秒)"
-#: chat.php:323
+#: index.php:335 chat.php:335
msgid "Number of notes revisions to keep"
msgstr "要保留的备注数量"
-#: chat.php:324
+#: index.php:336 chat.php:336
msgid "Maximum upload size in KB"
msgstr "最大上载大小(KB)"
-#: chat.php:325
+#: index.php:337 chat.php:337
msgid "Enable file uploads"
msgstr "启用文件上载"
-#: chat.php:326
+#: index.php:338 chat.php:338
msgid "Lowest refresh rate"
msgstr ""
-#: chat.php:327
+#: index.php:339 chat.php:339
msgid "Highest refresh rate"
msgstr ""
-#: chat.php:330
+#: index.php:342 chat.php:342
msgid "Rules (html)"
msgstr "规则(html)"
-#: chat.php:331
+#: index.php:343 chat.php:343
msgid "CSS Style"
msgstr "CSS风格"
-#: chat.php:332
+#: index.php:344 chat.php:344
msgid "Chat disabled message (html)"
msgstr "聊天禁用消息(html)"
-#: chat.php:335
+#: index.php:347 chat.php:347
msgid ""
"Date "
@@ -284,497 +290,532 @@ msgstr ""
"php#refsect1-function.date-parameters\" rel=\"noopener noreferrer\">日期格式"
""
-#: chat.php:336
+#: index.php:348 chat.php:348
msgid "Characters used in Captcha"
msgstr "验证码中使用的字符"
-#: chat.php:337
+#: index.php:349 chat.php:349
msgid "Custom redirection script"
msgstr "自定义重定向脚本"
-#: chat.php:338
+#: index.php:350 chat.php:350
msgid "Chat name"
msgstr "聊天名称"
-#: chat.php:339
+#: index.php:351 chat.php:351
msgid "Send mail using this address"
msgstr "使用此地址发送邮件"
-#: chat.php:340
+#: index.php:352 chat.php:352
msgid "Send mail to this address"
msgstr "发送邮件到这个地址"
-#: chat.php:341
+#: index.php:353 chat.php:353
msgid "Nickname regex"
msgstr "昵称正则表达式"
-#: chat.php:342
+#: index.php:354 chat.php:354
msgid "Password regex"
msgstr "密码正则表达式"
-#: chat.php:343
+#: index.php:355 chat.php:355
msgid "Link to external CSS file (on your own server)"
msgstr "链接到外部CSS文件"
-#: chat.php:344
+#: index.php:356 chat.php:356
msgid "Meta description (best 50 - 160 characters for SEO)"
msgstr ""
-#: chat.php:345
+#: index.php:357 chat.php:357
+msgid "Show this text when a user's logout is delayed"
+msgstr ""
+
+#: index.php:358 chat.php:358
msgid "Prepend this text to system messages"
msgstr "此文本先于来自系统的消息"
-#: chat.php:348 chat.php:728 chat.php:1225
+#: index.php:361 index.php:780 index.php:1282 chat.php:361 chat.php:780
+#: chat.php:1282
msgid "Change Guestaccess"
msgstr "修改游客访问"
-#: chat.php:349
+#: index.php:362 chat.php:362
msgid "Enable global Password"
msgstr ""
-#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433
+#: index.php:363 index.php:810 index.php:2474 index.php:2492 chat.php:363
+#: chat.php:810 chat.php:2474 chat.php:2492
msgid "Global Password:"
msgstr "全局密码:"
-#: chat.php:351 chat.php:819
+#: index.php:364 index.php:871 chat.php:364 chat.php:871
msgid "Captcha"
msgstr "验证码"
-#: chat.php:352 chat.php:775 chat.php:835
+#: index.php:365 index.php:827 index.php:887 chat.php:365 chat.php:827
+#: chat.php:887
msgid "Only for guests"
msgstr "只仅游客"
-#: chat.php:353 chat.php:1220
+#: index.php:366 index.php:1277 chat.php:366 chat.php:1277
msgid "Topic"
msgstr "话题"
-#: chat.php:354 chat.php:781
+#: index.php:367 index.php:833 chat.php:367 chat.php:833
msgid "Let guests register themselves"
msgstr "让客人自己注册"
-#: chat.php:355 chat.php:862
+#: index.php:368 index.php:919 chat.php:368 chat.php:919
msgid "Default time zone"
msgstr "默认时区"
-#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259
+#: index.php:581 index.php:1157 index.php:4158 index.php:4341 chat.php:581
+#: chat.php:1157 chat.php:4158 chat.php:4341
msgid "Initial Setup"
msgstr "初始化设置"
-#: chat.php:588
+#: index.php:601 chat.php:601
#, php-format
msgid "Redirecting to: %s"
msgstr "重定向到: %s"
-#: chat.php:595
+#: index.php:608 chat.php:608
#, php-format
msgid ""
"Dangerous non-http link requested, copy paste this link if you are really "
"sure: %s"
msgstr ""
-#: chat.php:597
+#: index.php:610 chat.php:610
#, php-format
msgid "Non-http link requested: %s"
msgstr "请求非http链接: %s"
-#: chat.php:599
+#: index.php:612 chat.php:612
#, php-format
msgid "If it's not working, try this one: %s"
msgstr "如果它不起作用,试试这个: %s"
-#: chat.php:609
+#: index.php:622 chat.php:622
msgid "Access denied"
msgstr "拒绝访问"
-#: chat.php:609
+#: index.php:622 chat.php:622
#, php-format
msgid "You are logged in as %s and don't have access to this section."
msgstr "您以%s身份登录,无法访问此部分。"
-#: chat.php:611 chat.php:915 chat.php:1211 chat.php:1393
+#: index.php:624 index.php:972 index.php:1268 index.php:1450 chat.php:624
+#: chat.php:972 chat.php:1268 chat.php:1450
msgid "Logout"
msgstr "登出"
-#: chat.php:636
+#: index.php:649 chat.php:649
msgid "Copy:"
msgstr "验证码:"
-#: chat.php:724
+#: index.php:776 chat.php:776
msgid "Chat Setup"
msgstr "安装程序"
-#: chat.php:734 chat.php:1233
+#: index.php:786 index.php:1290 chat.php:786 chat.php:1290
msgid "Allow"
msgstr "允许"
-#: chat.php:739 chat.php:1238
+#: index.php:791 index.php:1295 chat.php:791 chat.php:1295
msgid "Allow with waitingroom"
msgstr "等候室允许"
-#: chat.php:744 chat.php:1243
+#: index.php:796 index.php:1300 chat.php:796 chat.php:1300
msgid "Require moderator approval"
msgstr "请求审核人批准"
-#: chat.php:749 chat.php:1248
+#: index.php:801 index.php:1305 chat.php:801 chat.php:1305
msgid "Only members"
msgstr "只仅正式成员"
-#: chat.php:754 chat.php:1251
+#: index.php:806 index.php:1308 chat.php:806 chat.php:1308
msgid "Disable chat"
msgstr "禁用聊天"
-#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229
+#: index.php:817 index.php:839 index.php:894 index.php:953 index.php:2288
+#: chat.php:817 chat.php:839 chat.php:894 chat.php:953 chat.php:2288
msgid "Disabled"
msgstr "禁用"
-#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219
+#: index.php:822 index.php:882 index.php:958 index.php:2278 chat.php:822
+#: chat.php:882 chat.php:958 chat.php:2278
msgid "Enabled"
msgstr "启用"
-#: chat.php:792
+#: index.php:844 chat.php:844
msgid "As applicant"
msgstr "作为申请人"
-#: chat.php:797
+#: index.php:849 chat.php:849
msgid "As member"
msgstr "作为会员"
-#: chat.php:800
+#: index.php:852 chat.php:852
msgid "System messages"
msgstr "系统信息"
-#: chat.php:822 chat.php:1053
+#: index.php:874 index.php:1110 chat.php:874 chat.php:1110
#, php-format
msgid ""
"The %s extension of PHP is required for this feature. Please install it "
"first."
msgstr "此功能需要PHP的%s扩展名。 请先安装它。"
-#: chat.php:847
+#: index.php:899 chat.php:899
msgid "Simple"
msgstr "简单"
-#: chat.php:852
+#: index.php:904 chat.php:904
msgid "Moderate"
msgstr "中等"
-#: chat.php:857
+#: index.php:909 chat.php:909
+msgid "Hard"
+msgstr ""
+
+#: index.php:914 chat.php:914
msgid "Extreme"
msgstr "超级"
-#: chat.php:906 chat.php:1548 chat.php:1610
+#: index.php:963 index.php:1605 index.php:1667 chat.php:963 chat.php:1605
+#: chat.php:1667
msgid "Apply"
msgstr "应用"
-#: chat.php:910 chat.php:1050
+#: index.php:967 index.php:1107 chat.php:967 chat.php:1107
msgid "Backup and restore"
msgstr "备份还原"
-#: chat.php:912
+#: index.php:969 chat.php:969
msgid "Destroy chat"
msgstr "摧毁聊天"
-#: chat.php:1057 chat.php:1066
+#: index.php:1114 index.php:1123 chat.php:1114 chat.php:1123
msgid "Settings"
msgstr "设置"
-#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575
-#: chat.php:1622
+#: index.php:1115 index.php:1124 index.php:1269 index.php:1595 index.php:1632
+#: index.php:1679 chat.php:1115 chat.php:1124 chat.php:1269 chat.php:1595
+#: chat.php:1632 chat.php:1679
msgid "Filter"
msgstr "过滤"
-#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538
+#: index.php:1116 index.php:1125 index.php:1325 index.php:2600 chat.php:1116
+#: chat.php:1125 chat.php:1325 chat.php:2600
msgid "Members"
msgstr "正式成员"
-#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322
+#: index.php:1117 index.php:1126 index.php:2373 index.php:2381 chat.php:1117
+#: chat.php:1126 chat.php:2373 chat.php:2381
msgid "Notes"
msgstr "公告"
-#: chat.php:1061
+#: index.php:1118 chat.php:1118
msgid "Backup"
msgstr "备用"
-#: chat.php:1070
+#: index.php:1127 chat.php:1127
msgid "Restore"
msgstr "恢复"
-#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260
+#: index.php:1131 index.php:1174 index.php:1212 index.php:1242 index.php:4342
+#: chat.php:1131 chat.php:1174 chat.php:1212 chat.php:1242 chat.php:4342
msgid "Go to the Setup-Page"
msgstr "去设置界面"
-#: chat.php:1082 chat.php:1091 chat.php:1949
+#: index.php:1139 index.php:1148 index.php:2006 chat.php:1139 chat.php:1148
+#: chat.php:2006
msgid "Are you sure?"
msgstr "你确定吗?"
-#: chat.php:1083 chat.php:1092 chat.php:1956
+#: index.php:1140 index.php:1149 index.php:2013 chat.php:1140 chat.php:1149
+#: chat.php:2013
msgid "Yes"
msgstr "是"
-#: chat.php:1084 chat.php:1093 chat.php:1963
+#: index.php:1141 index.php:1150 index.php:2020 chat.php:1141 chat.php:1150
+#: chat.php:2020
msgid "No"
msgstr "否"
-#: chat.php:1101 chat.php:4259
+#: index.php:1158 index.php:4341 chat.php:1158 chat.php:4341
msgid "Superadmin Login"
msgstr "超级管理员登录"
-#: chat.php:1102
+#: index.php:1159 chat.php:1159
msgid "Superadmin Nickname:"
msgstr "超级管理员用户名:"
-#: chat.php:1103
+#: index.php:1160 chat.php:1160
msgid "Superadmin Password:"
msgstr "超级管理员密码:"
-#: chat.php:1104
+#: index.php:1161 chat.php:1161
msgid "Confirm Password:"
msgstr "重复密码:"
-#: chat.php:1105
+#: index.php:1162 chat.php:1162
msgid "Initialise Chat"
msgstr "初始化聊天室"
-#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439
+#: index.php:1163 index.php:1187 index.php:1213 index.php:2336 index.php:2498
+#: chat.php:1163 chat.php:1187 chat.php:1213 chat.php:2336 chat.php:2498
msgid "Change language:"
msgstr "修改语言:"
-#: chat.php:1117
+#: index.php:1174 chat.php:1174
msgid "Database successfully updated!"
msgstr "数据库更新成功!"
-#: chat.php:1125 chat.php:1326 chat.php:2407
+#: index.php:1182 index.php:1383 index.php:2466 chat.php:1182 chat.php:1383
+#: chat.php:2466
msgid "Nickname:"
msgstr "用户名:"
-#: chat.php:1126 chat.php:1327 chat.php:2408
+#: index.php:1183 index.php:1384 index.php:2467 chat.php:1183 chat.php:1384
+#: chat.php:2467
msgid "Password:"
msgstr "密码:"
-#: chat.php:1128
+#: index.php:1185 chat.php:1185
msgid "Login"
msgstr "登录"
-#: chat.php:1129
+#: index.php:1186 chat.php:1186
msgid "Forgot login?"
msgstr ""
-#: chat.php:1142 chat.php:1306
+#: index.php:1199 index.php:1363 chat.php:1199 chat.php:1363
msgid "Reset password"
msgstr "重设密码"
-#: chat.php:1150
+#: index.php:1207 chat.php:1207
#, php-format
msgid ""
"Successfully reset password for username %s. Please remove the password "
"reset define from the script again."
msgstr ""
-#: chat.php:1153
+#: index.php:1210 chat.php:1210
msgid ""
"Please modify the script and put the following at the bottom of it (change "
"the password). Then refresh this page: define('RESET_SUPERADMIN_PASSWORD', "
"'changeme');"
msgstr ""
-#: chat.php:1169 chat.php:1193 chat.php:1258 chat.php:1270 chat.php:1294
-#: chat.php:1308 chat.php:1316 chat.php:2145 chat.php:2153
+#: index.php:1226 index.php:1250 index.php:1315 index.php:1327 index.php:1351
+#: index.php:1365 index.php:1373 index.php:2204 index.php:2212 chat.php:1226
+#: chat.php:1250 chat.php:1315 chat.php:1327 chat.php:1351 chat.php:1365
+#: chat.php:1373 chat.php:2204 chat.php:2212
msgid "(choose)"
msgstr "(选择)"
-#: chat.php:1170
+#: index.php:1227 chat.php:1227
msgid "All guests"
msgstr "全部游客"
-#: chat.php:1182
+#: index.php:1239 chat.php:1239
msgid "Administrative functions"
msgstr "管理员功能"
-#: chat.php:1188
+#: index.php:1245 chat.php:1245
msgid "Clean messages"
msgstr "清理消息"
-#: chat.php:1191
+#: index.php:1248 chat.php:1248
msgid "Whole room"
msgstr "整个房间"
-#: chat.php:1192
+#: index.php:1249 chat.php:1249
msgid "Selection"
msgstr "选择"
-#: chat.php:1193
+#: index.php:1250 chat.php:1250
msgid "Following nickname:"
msgstr "下面的名称:"
-#: chat.php:1200
+#: index.php:1257 chat.php:1257
msgid "Clean"
msgstr "清理"
-#: chat.php:1202
+#: index.php:1259 chat.php:1259
#, php-format
msgid "Kick Chatter (%d minutes)"
msgstr ""
-#: chat.php:1204
+#: index.php:1261 chat.php:1261
msgid "Kickmessage:"
msgstr "踢出信息:"
-#: chat.php:1205
+#: index.php:1262 chat.php:1262
msgid "Purge messages"
msgstr "清除信息"
-#: chat.php:1206 chat.php:1388 chat.php:1546 chat.php:1580 chat.php:1591
-#: chat.php:2042
+#: index.php:1263 index.php:1445 index.php:1603 index.php:1637 index.php:1648
+#: index.php:2101 chat.php:1263 chat.php:1445 chat.php:1603 chat.php:1637
+#: chat.php:1648 chat.php:2101
msgid "Kick"
msgstr "踢出"
-#: chat.php:1208
+#: index.php:1265 chat.php:1265
msgid "Logout inactive Chatter"
msgstr "注销非活动聊天者"
-#: chat.php:1212
+#: index.php:1269 chat.php:1269
msgid "View active sessions"
msgstr "查看活动聊天"
-#: chat.php:1212 chat.php:1603
+#: index.php:1269 index.php:1660 chat.php:1269 chat.php:1660
msgid "Linkfilter"
msgstr "链接过滤器"
-#: chat.php:1217
+#: index.php:1274 chat.php:1274
msgid "View"
msgstr "显示"
-#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582
-#: chat.php:1626
+#: index.php:1280 index.php:1310 index.php:1361 index.php:1369 index.php:1639
+#: index.php:1683 chat.php:1280 chat.php:1310 chat.php:1361 chat.php:1369
+#: chat.php:1639 chat.php:1683
msgid "Change"
msgstr "修改"
-#: chat.php:1256
+#: index.php:1313 chat.php:1313
msgid "Register applicant"
msgstr "注册申请员"
-#: chat.php:1264 chat.php:1322 chat.php:1328
+#: index.php:1321 index.php:1379 index.php:1385 chat.php:1321 chat.php:1379
+#: chat.php:1385
msgid "Register"
msgstr "注册"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Delete from database"
msgstr "从数据库删除"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Deny access (!)"
msgstr "拒绝访问 (!)"
-#: chat.php:1296
+#: index.php:1353 chat.php:1353
msgid "Set to applicant (SG)"
msgstr "申请为申请人 (SG)"
-#: chat.php:1298
+#: index.php:1355 chat.php:1355
msgid "Set to regular member"
msgstr "设置为正式成员"
-#: chat.php:1299
+#: index.php:1356 chat.php:1356
msgid "Set to moderator (M)"
msgstr "设置为主持人 (M)"
-#: chat.php:1300
+#: index.php:1357 chat.php:1357
msgid "Set to supermod (SM)"
msgstr "设置为0.5 (SM)"
-#: chat.php:1302
+#: index.php:1359 chat.php:1359
msgid "Set to admin (A)"
msgstr "设置为管理员 (A)"
-#: chat.php:1314
+#: index.php:1371 chat.php:1371
msgid "Register Guest"
msgstr "注册游客"
-#: chat.php:1324
+#: index.php:1381 chat.php:1381
msgid "Register new Member"
msgstr "注册新成员"
-#: chat.php:1332 chat.php:1408 chat.php:1595 chat.php:1636 chat.php:1710
-#: chat.php:1924
+#: index.php:1389 index.php:1465 index.php:1652 index.php:1693 index.php:1767
+#: index.php:1981 chat.php:1389 chat.php:1465 chat.php:1652 chat.php:1693
+#: chat.php:1767 chat.php:1981
msgid "Reload"
msgstr "刷新"
-#: chat.php:1345
+#: index.php:1402 chat.php:1402
msgid "Active Sessions"
msgstr "活动会话"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "Nickname"
msgstr "用户名"
-#: chat.php:1346
+#: index.php:1403 chat.php:1403
msgid "Timeout in"
msgstr "超时"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "User-Agent"
msgstr "用户代理"
-#: chat.php:1350
+#: index.php:1407 chat.php:1407
msgid "IP-Address"
msgstr "IP地址"
-#: chat.php:1351
+#: index.php:1408 chat.php:1408
msgid "Actions"
msgstr "操作"
-#: chat.php:1393
+#: index.php:1450 chat.php:1450
msgid "Unban"
msgstr "取消禁止"
-#: chat.php:1416
+#: index.php:1473 chat.php:1473
msgid "Incorrect regular expression!"
msgstr "正则表达式错误!"
-#: chat.php:1416 chat.php:1424
+#: index.php:1473 index.php:1481 chat.php:1473 chat.php:1481
#, php-format
msgid "Your match was as follows: %s"
msgstr "你的申请如下: %s"
-#: chat.php:1424
+#: index.php:1481 chat.php:1481
msgid ""
"Your match was too long. You can use max. 255 characters. Try splitting it "
"up."
msgstr "你的申请太长了。 你可以用max。 255个字符。 尝试拆分它."
-#: chat.php:1541 chat.php:1606
+#: index.php:1598 index.php:1663 chat.php:1598 chat.php:1663
msgid "Filter ID:"
msgstr "过滤器ID:"
-#: chat.php:1542 chat.php:1607
+#: index.php:1599 index.php:1664 chat.php:1599 chat.php:1664
msgid "Match"
msgstr "匹配"
-#: chat.php:1543 chat.php:1608
+#: index.php:1600 index.php:1665 chat.php:1600 chat.php:1665
msgid "Replace"
msgstr "替换"
-#: chat.php:1544 chat.php:1578 chat.php:1589
+#: index.php:1601 index.php:1635 index.php:1646 chat.php:1601 chat.php:1635
+#: chat.php:1646
msgid "Allow in PM"
msgstr "允许在PM"
-#: chat.php:1545 chat.php:1579 chat.php:1590 chat.php:1609 chat.php:1625
-#: chat.php:1633
+#: index.php:1602 index.php:1636 index.php:1647 index.php:1666 index.php:1682
+#: index.php:1690 chat.php:1602 chat.php:1636 chat.php:1647 chat.php:1666
+#: chat.php:1682 chat.php:1690
msgid "Regex"
msgstr "正则表达式"
-#: chat.php:1547 chat.php:1581 chat.php:1592
+#: index.php:1604 index.php:1638 index.php:1649 chat.php:1604 chat.php:1638
+#: chat.php:1649
msgid "Case sensitive"
msgstr "大小写"
-#: chat.php:1586 chat.php:1630
+#: index.php:1643 index.php:1687 chat.php:1643 chat.php:1687
msgid "New filter:"
msgstr "新过滤器:"
-#: chat.php:1593 chat.php:1634
+#: index.php:1650 index.php:1691 chat.php:1650 chat.php:1691
msgid "Add"
msgstr "添加"
-#: chat.php:1691
+#: index.php:1748 chat.php:1748
msgid ""
"This chat uses frames. Please enable frames in your browser or use a "
"suitable one!"
@@ -782,103 +823,106 @@ msgstr ""
"这个聊天室使用 frames. 请在浏览器中启用frames或使用合适的"
"frames!"
-#: chat.php:1691 chat.php:2370 chat.php:2457
+#: index.php:1748 index.php:2429 index.php:2516 chat.php:1748 chat.php:2429
+#: chat.php:2516
msgid "Back to the login page."
msgstr "返回登录页面."
-#: chat.php:1709
+#: index.php:1766 chat.php:1766
msgid "Bottom"
msgstr "底部"
-#: chat.php:1710
+#: index.php:1767 chat.php:1767
msgid "Manual refresh required"
msgstr ""
-#: chat.php:1726
+#: index.php:1783 chat.php:1783
msgid "Top"
msgstr "顶部"
-#: chat.php:1734 chat.php:1940 chat.php:1942
+#: index.php:1791 index.php:1997 index.php:1999 chat.php:1791 chat.php:1997
+#: chat.php:1999
msgid "Delete selected messages"
msgstr "删除所选信息"
-#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281
+#: index.php:1818 index.php:1945 index.php:2160 index.php:2340 chat.php:1818
+#: chat.php:1945 chat.php:2160 chat.php:2340
msgid "Back to the chat."
msgstr "回到聊天室."
-#: chat.php:1774 chat.php:1791
+#: index.php:1831 index.php:1848 chat.php:1831 chat.php:1848
msgid "Admin notes"
msgstr "管理员说明"
-#: chat.php:1777 chat.php:1788
+#: index.php:1834 index.php:1845 chat.php:1834 chat.php:1845
msgid "Staff notes"
msgstr "工作人员说明"
-#: chat.php:1811
+#: index.php:1868 chat.php:1868
msgid "Notes saved!"
msgstr "说明已保存!"
-#: chat.php:1835 chat.php:2122
+#: index.php:1892 index.php:2181 chat.php:1892 chat.php:2181
#, php-format
msgid "Last edited by %1$s at %2$s"
msgstr "上次由%1$s编辑 时间为%2$s"
-#: chat.php:1848
+#: index.php:1905 chat.php:1905
msgid "Save notes"
msgstr "保存说明"
-#: chat.php:1850
+#: index.php:1907 chat.php:1907
msgid "Revisions:"
msgstr "修订:"
-#: chat.php:1853
+#: index.php:1910 chat.php:1910
msgid "Older"
msgstr "旧的"
-#: chat.php:1857
+#: index.php:1914 chat.php:1914
msgid "Newer"
msgstr "较新"
-#: chat.php:1868 chat.php:1914
+#: index.php:1925 index.php:1971 chat.php:1925 chat.php:1971
msgid "Waiting room"
msgstr "等候室"
-#: chat.php:1880
+#: index.php:1937 chat.php:1937
msgid "Allow checked"
msgstr "允许检查"
-#: chat.php:1881
+#: index.php:1938 chat.php:1938
msgid "Allow all"
msgstr "允许全部"
-#: chat.php:1882
+#: index.php:1939 chat.php:1939
msgid "Deny checked"
msgstr "拒绝检查"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Deny all"
msgstr "全部拒绝"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Send message to denied:"
msgstr "发送消息给拒绝:"
-#: chat.php:1884
+#: index.php:1941 chat.php:1941
msgid "Submit"
msgstr "提交"
-#: chat.php:1886
+#: index.php:1943 chat.php:1943
msgid "No more entry requests to approve."
msgstr "不再需要批准入场申请."
-#: chat.php:1916
+#: index.php:1973 chat.php:1973
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat in %2$d "
"seconds."
msgstr "欢迎%1$s, 您的登录信息已被延迟,您可以访问聊天记录%2$d秒."
-#: chat.php:1918
+#: index.php:1975 chat.php:1975
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat as soon, "
@@ -886,71 +930,76 @@ msgid ""
msgstr ""
"欢迎%1$s, 您的登录信息已被延迟,您可以尽快访问聊天内容,因为主持人会让您进入."
-#: chat.php:1921
+#: index.php:1978 chat.php:1978
#, php-format
msgid ""
"If this page doesn't refresh every %d seconds, use the button below to "
"reload it manually!"
msgstr "如果这个页面没有刷新%d秒, 使用下面的按钮手动重新加载!"
-#: chat.php:1926 chat.php:2339
+#: index.php:1983 index.php:2398 chat.php:1983 chat.php:2398
msgid "Exit Chat"
msgstr "退出聊天室"
-#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430
+#: index.php:1986 index.php:2133 index.php:2144 index.php:2489 chat.php:1986
+#: chat.php:2133 chat.php:2144 chat.php:2489
msgid "Rules"
msgstr "规则"
-#: chat.php:1985
+#: index.php:2042 chat.php:2042
msgid "Send to"
msgstr "发送至"
-#: chat.php:1990
+#: index.php:2047 chat.php:2047
msgid "All chatters"
msgstr "所有的聊天者"
-#: chat.php:1996
+#: index.php:2053 chat.php:2053
msgid "Members only"
msgstr "内部使用"
-#: chat.php:2003
+#: index.php:2060 chat.php:2060
msgid "Staff only"
msgstr "只供职员使用"
-#: chat.php:2010
+#: index.php:2067 chat.php:2067
msgid "Admin only"
msgstr "仅限管理员"
-#: chat.php:2019
+#: index.php:2076 chat.php:2076
msgid "(offline)"
msgstr "(离线)"
-#: chat.php:2043
+#: index.php:2078 chat.php:2078
+msgid "(logging out)"
+msgstr ""
+
+#: index.php:2102 chat.php:2102
msgid "Also purge messages"
msgstr "同时清除消息"
-#: chat.php:2050
+#: index.php:2109 chat.php:2109
msgid "Delete last message"
msgstr "删除上一条消息"
-#: chat.php:2055
+#: index.php:2114 chat.php:2114
msgid "Delete all messages"
msgstr "删除所有信息"
-#: chat.php:2057
+#: index.php:2116 chat.php:2116
msgid "Switch to single-line"
msgstr "切换到单行"
-#: chat.php:2059
+#: index.php:2118 chat.php:2118
msgid "Switch to multi-line"
msgstr "切换到多行"
-#: chat.php:2070
+#: index.php:2129 chat.php:2129
#, php-format
msgid "Welcome %s!"
msgstr "欢迎%s!"
-#: chat.php:2071
+#: index.php:2130 chat.php:2130
#, php-format
msgid ""
"If this frame does not reload in %d seconds, you'll have to enable automatic "
@@ -961,11 +1010,11 @@ msgid ""
"bottom to refresh manually."
msgstr ""
-#: chat.php:2087
+#: index.php:2146 chat.php:2146
msgid "Help"
msgstr "帮助"
-#: chat.php:2088
+#: index.php:2147 chat.php:2147
msgid ""
"All functions should be pretty much self-explaining, just use the buttons. "
"In your profile you can adjust the refresh rate and font colour, as well as "
@@ -976,7 +1025,7 @@ msgstr ""
"体颜色和首选输入框大小. 注意: 这是一个聊天室,所以如果你不再说话,"
"你会在一段时间后自动退出."
-#: chat.php:2090
+#: index.php:2149 chat.php:2149
msgid ""
"If you want to embed an image in your post, simply put [img] in front of "
"your image URL. Example: [img]http://example.com/images/file.jpg will embed "
@@ -985,7 +1034,7 @@ msgstr ""
"如果您想在帖子中嵌入图片,只需将[img]放在图片网址前面即可。示例:[img]http://"
"example.com/images/file.jpg会将图片嵌入到您的帖子中."
-#: chat.php:2093
+#: index.php:2152 chat.php:2152
msgid ""
"Members: You'll have some more options in your profile. You can adjust your "
"font face, change your password anytime and of course you can delete your "
@@ -994,7 +1043,7 @@ msgstr ""
"成员:您的个人资料中还有更多选项。 您可以随时调整字体,更改密码,当然也可以删"
"除您的帐户."
-#: chat.php:2095
+#: index.php:2154 chat.php:2154
msgid ""
"Moderators: Notice the Admin-button at the bottom. It'll bring up a page "
"where you can clean the room, kick chatters, view all active sessions and "
@@ -1003,602 +1052,624 @@ msgstr ""
"版主:请注意底部。 它将打开一个页面,您可以在其中清理房间,踢聊天,查看所有活"
"动会话并在需要时完全禁用访客访问权限."
-#: chat.php:2097
+#: index.php:2156 chat.php:2156
msgid ""
"Admins: You'll be furthermore able to register guests, edit members and "
"register new nicknames."
msgstr "管理员:您还可以注册客人,编辑成员并注册新的昵称。"
-#: chat.php:2135
+#: index.php:2194 chat.php:2194
msgid "Your Profile"
msgstr "你的个人资料"
-#: chat.php:2144
+#: index.php:2203 chat.php:2203
msgid "Don't ignore anymore"
msgstr "取消忽略"
-#: chat.php:2152
+#: index.php:2211 chat.php:2211
msgid "Ignore"
msgstr "忽略"
-#: chat.php:2163
+#: index.php:2222 chat.php:2222
#, php-format
msgid "Refresh rate (%1$d-%2$d seconds)"
msgstr "刷新时间(%1$d秒-%2$d秒)"
-#: chat.php:2167 chat.php:2170
+#: index.php:2226 index.php:2229 chat.php:2226 chat.php:2229
msgid "View examples"
msgstr "查看示例"
-#: chat.php:2174
+#: index.php:2233 chat.php:2233
msgid "Fontface"
msgstr "字体"
-#: chat.php:2175
+#: index.php:2234 chat.php:2234
msgid "Room Default"
msgstr "默认房间"
-#: chat.php:2188
+#: index.php:2247 chat.php:2247
msgid "Bold"
msgstr "大胆"
-#: chat.php:2192
+#: index.php:2251 chat.php:2251
msgid "Italic"
msgstr "斜体"
-#: chat.php:2196
+#: index.php:2255 chat.php:2255
msgid "Small"
msgstr ""
-#: chat.php:2199
+#: index.php:2258 chat.php:2258
msgid "Example for your chosen font"
msgstr "您选择的字体的示例"
-#: chat.php:2203
+#: index.php:2262 chat.php:2262
msgid "Autoscroll (for old browsers or top-to-bottom sort)."
msgstr "自动滚动(适用于旧浏览器或从上到下排序)."
-#: chat.php:2234
+#: index.php:2293 chat.php:2293
msgid "For everyone"
msgstr "所以人"
-#: chat.php:2239
+#: index.php:2298 chat.php:2298
msgid "For members only"
msgstr "仅限会员"
-#: chat.php:2244
+#: index.php:2303 chat.php:2303
msgid "For staff only"
msgstr "仅限员工"
-#: chat.php:2248
+#: index.php:2307 chat.php:2307
msgid "Time zone"
msgstr "时区"
-#: chat.php:2261
+#: index.php:2320 chat.php:2320
msgid "Change Password"
msgstr "更改密码"
-#: chat.php:2263
+#: index.php:2322 chat.php:2322
msgid "Old password:"
msgstr "旧密码:"
-#: chat.php:2264
+#: index.php:2323 chat.php:2323
msgid "New password:"
msgstr "新密码:"
-#: chat.php:2265
+#: index.php:2324 chat.php:2324
msgid "Confirm new password:"
msgstr "在重复一次新密码:"
-#: chat.php:2268
+#: index.php:2327 chat.php:2327
msgid "Change Nickname"
msgstr ""
-#: chat.php:2269
+#: index.php:2328 chat.php:2328
msgid "New nickname:"
msgstr "新昵称:"
-#: chat.php:2273
+#: index.php:2332 chat.php:2332
msgid "Save changes"
msgstr "保存更改"
-#: chat.php:2275
+#: index.php:2334 chat.php:2334
msgid "Delete account"
msgstr "删除帐户"
-#: chat.php:2301
+#: index.php:2360 chat.php:2360
msgid "Reload Post Box"
msgstr "刷新缓存"
-#: chat.php:2304
+#: index.php:2363 chat.php:2363
msgid "Reload Messages"
msgstr "刷新一下消息"
-#: chat.php:2307
+#: index.php:2366 chat.php:2366
msgid "Profile"
msgstr "个人资料"
-#: chat.php:2311 chat.php:2528
+#: index.php:2370 index.php:2590 chat.php:2370 chat.php:2590
msgid "Admin"
msgstr "管理"
-#: chat.php:2318
+#: index.php:2377 chat.php:2377
msgid "View public notes"
msgstr "阅读用户配置文件"
-#: chat.php:2325
+#: index.php:2384 chat.php:2384
msgid "Clone"
msgstr "打开新标签"
-#: chat.php:2334
+#: index.php:2393 chat.php:2393
msgid "Rearrange"
msgstr "改变方向"
-#: chat.php:2337
+#: index.php:2396 chat.php:2396
msgid "Rules & Help"
msgstr "条款 & 帮助"
-#: chat.php:2358 chat.php:2362
+#: index.php:2417 index.php:2421 chat.php:2417 chat.php:2421
msgid "File not found!"
msgstr "找不到文件!"
-#: chat.php:2370
+#: index.php:2429 chat.php:2429
#, php-format
msgid "Bye %s, visit again soon!"
msgstr "再见%s, 欢迎你再此访问!"
-#: chat.php:2377
+#: index.php:2436 chat.php:2436
msgid "Colourtable"
msgstr "颜色表"
-#: chat.php:2388
+#: index.php:2447 chat.php:2447
msgid "Back to your Profile"
msgstr "回到你的个人资料"
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "Repeat password to register"
msgstr "重复密码 注册"
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "(optional)"
msgstr "(可选的)"
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Guests, choose a colour:"
msgstr "客人,选择一种颜色:"
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Random Colour"
msgstr "随机颜色"
-#: chat.php:2421 chat.php:2435 chat.php:2569
+#: index.php:2480 index.php:2494 index.php:2631 chat.php:2480 chat.php:2494
+#: chat.php:2631
msgid "Sorry, currently members only!"
msgstr "对不起,目前仅限会员!"
-#: chat.php:2423 chat.php:2437
+#: index.php:2482 index.php:2496 chat.php:2482 chat.php:2496
msgid "Enter Chat"
msgstr "回车"
-#: chat.php:2457
+#: index.php:2516 chat.php:2516
#, php-format
msgid "Error: %s"
msgstr "错误: %s"
-#: chat.php:2467
+#: index.php:2526 chat.php:2526
msgid "Fatal error"
msgstr "致命错误"
-#: chat.php:2470
+#: index.php:2529 chat.php:2529
#, php-format
msgid "Fatal error: %s"
msgstr "致命错误: %s"
-#: chat.php:2482 chat.php:2693
+#: index.php:2541 index.php:2756 chat.php:2541 chat.php:2756
msgid "Failed login attempt(s)"
msgstr "登录尝试失败"
-#: chat.php:2489
+#: index.php:2548 chat.php:2548
#, php-format
msgid "Read %d messages in your inbox"
msgstr "阅读收件箱中的%d条消息"
-#: chat.php:2498
+#: index.php:2557 chat.php:2557
#, php-format
msgid "%d new guests to approve"
msgstr "%d新客人批准"
-#: chat.php:2530
+#: index.php:2577 chat.php:2577
+msgid "logging out"
+msgstr ""
+
+#: index.php:2592 chat.php:2592
msgid "Admin:"
msgstr "管理:"
-#: chat.php:2533
+#: index.php:2595 chat.php:2595
msgid "Staff"
msgstr "工作人员"
-#: chat.php:2535
+#: index.php:2597 chat.php:2597
msgid "Staff:"
msgstr "工作人员:"
-#: chat.php:2540
+#: index.php:2602 chat.php:2602
msgid "Members:"
msgstr "正式成员:"
-#: chat.php:2542
+#: index.php:2604 chat.php:2604
msgid "Guests"
msgstr "游客"
-#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092
+#: index.php:2625 index.php:3063 index.php:3267 index.php:4172 chat.php:2625
+#: chat.php:3063 chat.php:3267 chat.php:4172
#, php-format
msgid ""
"Invalid nickname (%1$d characters maximum and has to match the regular "
"expression \"%2$s\")"
msgstr "无效的用户名 (最多%1$d个字符,必须与正则表达式\"%2$s\"匹配)"
-#: chat.php:2566 chat.php:2996 chat.php:3162 chat.php:4094
+#: index.php:2628 index.php:3066 index.php:3232 index.php:4174 chat.php:2628
+#: chat.php:3066 chat.php:3232 chat.php:4174
#, php-format
msgid ""
"Invalid password (At least %1$d characters and has to match the regular "
"expression \"%2$s\")"
msgstr "无效的密码 (至少包含%1$d个字符,并且必须与正则表达式\"%2$s\"匹配)"
-#: chat.php:2574 chat.php:2739
+#: index.php:2636 index.php:2806 chat.php:2636 chat.php:2806
msgid "Wrong global Password!"
msgstr "错误的全球密码!"
-#: chat.php:2591 chat.php:2612
+#: index.php:2654 index.php:2675 chat.php:2654 chat.php:2675
msgid "Wrong Captcha"
msgstr "错误验证码"
-#: chat.php:2596 chat.php:2604
+#: index.php:2659 index.php:2667 chat.php:2659 chat.php:2667
msgid "Captcha already used or timed out."
msgstr "验证码已经使用或超时."
-#: chat.php:2652
+#: index.php:2715 chat.php:2715
msgid "A user with this nickname is already logged in."
msgstr "具有此昵称的用户已登录。"
-#: chat.php:2652 chat.php:2933 chat.php:3176
+#: index.php:2715 index.php:3003 index.php:3246 chat.php:2715 chat.php:3003
+#: chat.php:3246
msgid "Wrong Password!"
msgstr "密码错误!"
-#: chat.php:2696
+#: index.php:2759 chat.php:2759
msgid "Dismiss"
msgstr "承认"
-#: chat.php:2747 chat.php:3171 chat.php:4096
+#: index.php:2814 index.php:3241 index.php:4176 chat.php:2814 chat.php:3241
+#: chat.php:4176
msgid "Password confirmation does not match!"
msgstr "重复密码不匹配!"
-#: chat.php:2859
+#: index.php:2854 chat.php:2854
+#, fuzzy
+#| msgid "Kickmessage:"
+msgid "no kick message"
+msgstr "踢出信息:"
+
+#: index.php:2929 chat.php:2929
msgid "Invalid/expired session"
msgstr "无效/已过期的会话"
-#: chat.php:2875 chat.php:3412
+#: index.php:2945 index.php:3483 chat.php:2945 chat.php:3483
msgid "You have been kicked!"
msgstr "你被踢出该聊天室!"
-#: chat.php:2885
+#: index.php:2955 chat.php:2955
#, php-format
msgid "Currently %d chatter(s) in room:"
msgstr "目前%d人在房间里聊天:"
-#: chat.php:2933
+#: index.php:3003 chat.php:3003
msgid "This nickname is a registered member."
msgstr "这个昵称是注册会员."
-#: chat.php:2960 chat.php:3001
+#: index.php:3030 index.php:3071 chat.php:3030 chat.php:3071
#, php-format
msgid "%s is already registered."
msgstr "%s已经注册。"
-#: chat.php:2969 chat.php:2990
+#: index.php:3039 index.php:3060 chat.php:3039 chat.php:3060
#, php-format
msgid "Can't register %s"
msgstr "无法注册%s"
-#: chat.php:2978 chat.php:3023
+#: index.php:3048 index.php:3093 chat.php:3048 chat.php:3093
#, php-format
msgid "%s successfully registered."
msgstr "%s成功注册."
-#: chat.php:3031 chat.php:3036
+#: index.php:3101 index.php:3106 chat.php:3101 chat.php:3106
#, php-format
msgid "Can't change status of %s"
msgstr "无法改变状态%s"
-#: chat.php:3047
+#: index.php:3117 chat.php:3117
#, php-format
msgid "%s successfully deleted from database."
msgstr "%s已成功从数据库中删除."
-#: chat.php:3056
+#: index.php:3126 chat.php:3126
#, php-format
msgid "Status of %s successfully changed."
msgstr "%s的状态已更改."
-#: chat.php:3073
+#: index.php:3143 chat.php:3143
#, php-format
msgid "Successfully reset password for %s"
msgstr ""
-#: chat.php:3075
+#: index.php:3145 chat.php:3145
#, php-format
msgid "Can't reset password for %s"
msgstr ""
-#: chat.php:3190
+#: index.php:3260 chat.php:3260
msgid "Your profile has successfully been saved."
msgstr "您的个人资料已成功保存."
-#: chat.php:3202
+#: index.php:3272 chat.php:3272
msgid "Nickname is already taken"
msgstr "昵称已被取消"
-#: chat.php:3714
+#: index.php:3785 chat.php:3785
msgid "system message"
msgstr "系统信息"
-#: chat.php:3921
+#: index.php:4001 chat.php:4001
msgid "Beige"
msgstr "米色"
-#: chat.php:3922
+#: index.php:4002 chat.php:4002
msgid "Black"
msgstr "黑色"
-#: chat.php:3923
+#: index.php:4003 chat.php:4003
msgid "Blue"
msgstr "蓝色"
-#: chat.php:3924
+#: index.php:4004 chat.php:4004
msgid "Blue violet"
msgstr "紫罗兰色"
-#: chat.php:3925
+#: index.php:4005 chat.php:4005
msgid "Brown"
msgstr "棕色"
-#: chat.php:3926
+#: index.php:4006 chat.php:4006
msgid "Cyan"
msgstr "青色"
-#: chat.php:3927
+#: index.php:4007 chat.php:4007
msgid "Dark blue"
msgstr "深蓝"
-#: chat.php:3928
+#: index.php:4008 chat.php:4008
msgid "Dark green"
msgstr "深绿色"
-#: chat.php:3929
+#: index.php:4009 chat.php:4009
msgid "Dark red"
msgstr "深红"
-#: chat.php:3930
+#: index.php:4010 chat.php:4010
msgid "Dark violet"
msgstr "深紫罗兰"
-#: chat.php:3931
+#: index.php:4011 chat.php:4011
msgid "Sky blue"
msgstr "天蓝色"
-#: chat.php:3932
+#: index.php:4012 chat.php:4012
msgid "Gold"
msgstr "金"
-#: chat.php:3933
+#: index.php:4013 chat.php:4013
msgid "Grey"
msgstr "灰色"
-#: chat.php:3934
+#: index.php:4014 chat.php:4014
msgid "Green"
msgstr "绿色"
-#: chat.php:3935
+#: index.php:4015 chat.php:4015
msgid "Hot pink"
msgstr "亮粉色"
-#: chat.php:3936
+#: index.php:4016 chat.php:4016
msgid "Indigo"
msgstr "靛青"
-#: chat.php:3937
+#: index.php:4017 chat.php:4017
msgid "Light blue"
msgstr "浅蓝"
-#: chat.php:3938
+#: index.php:4018 chat.php:4018
msgid "Light green"
msgstr "浅绿色"
-#: chat.php:3939
+#: index.php:4019 chat.php:4019
msgid "Lime green"
msgstr "柠檬绿"
-#: chat.php:3940
+#: index.php:4020 chat.php:4020
msgid "Magenta"
msgstr "品红"
-#: chat.php:3941
+#: index.php:4021 chat.php:4021
msgid "Olive"
msgstr "橄榄"
-#: chat.php:3942
+#: index.php:4022 chat.php:4022
msgid "Orange"
msgstr "橙子"
-#: chat.php:3943
+#: index.php:4023 chat.php:4023
msgid "Orange red"
msgstr "橙红色"
-#: chat.php:3944
+#: index.php:4024 chat.php:4024
msgid "Purple"
msgstr "紫色"
-#: chat.php:3945
+#: index.php:4025 chat.php:4025
msgid "Red"
msgstr "红色"
-#: chat.php:3946
+#: index.php:4026 chat.php:4026
msgid "Royal blue"
msgstr "宝蓝色"
-#: chat.php:3947
+#: index.php:4027 chat.php:4027
msgid "Sea green"
msgstr "海绿色"
-#: chat.php:3948
+#: index.php:4028 chat.php:4028
msgid "Sienna"
msgstr "黄土"
-#: chat.php:3949
+#: index.php:4029 chat.php:4029
msgid "Silver"
msgstr "银色"
-#: chat.php:3950
+#: index.php:4030 chat.php:4030
msgid "Tan"
msgstr "黄褐色"
-#: chat.php:3951
+#: index.php:4031 chat.php:4031
msgid "Teal"
msgstr "蓝绿色"
-#: chat.php:3952
+#: index.php:4032 chat.php:4032
msgid "Violet"
msgstr "紫色"
-#: chat.php:3953
+#: index.php:4033 chat.php:4033
msgid "White"
msgstr "白色"
-#: chat.php:3954
+#: index.php:4034 chat.php:4034
msgid "Yellow"
msgstr "黄色"
-#: chat.php:3955
+#: index.php:4035 chat.php:4035
msgid "Yellow green"
msgstr "黄绿色"
-#: chat.php:4077
+#: index.php:4157 chat.php:4157
msgid "Successfully destroyed chat"
msgstr "成功破坏了聊天"
-#: chat.php:4086
+#: index.php:4166 chat.php:4166
msgid ""
"Database tables already exist! To continue, you have to delete these tables "
"manually first."
msgstr "数据库表已经存在!,要继续,您必须先手动删除这些表。"
-#: chat.php:4089
+#: index.php:4169 chat.php:4169
msgid "A Superadmin already exists!"
msgstr "超级管理员已经存在!"
-#: chat.php:4182 chat.php:4369
+#: index.php:4263 index.php:4451 chat.php:4263 chat.php:4451
#, php-format
msgid "%s - "
msgstr "%s - "
-#: chat.php:4183 chat.php:4369
+#: index.php:4264 index.php:4451 chat.php:4264 chat.php:4451
#, php-format
msgid "[M] %s - "
msgstr ""
-#: chat.php:4184 chat.php:4369
+#: index.php:4265 index.php:4451 chat.php:4265 chat.php:4451
#, php-format
msgid "[Staff] %s - "
msgstr ""
-#: chat.php:4185 chat.php:4369
+#: index.php:4266 index.php:4451 chat.php:4266 chat.php:4451
#, php-format
msgid "[Admin] %s - "
msgstr ""
-#: chat.php:4186 chat.php:4369
+#: index.php:4267 index.php:4451 chat.php:4267 chat.php:4451
#, php-format
msgid "[%1$s to %2$s] - "
msgstr ""
-#: chat.php:4187
+#: index.php:4268 chat.php:4268
#, php-format
msgid "%s entered the chat."
msgstr "%s进入聊天室."
-#: chat.php:4188
+#: index.php:4269 chat.php:4269
#, php-format
msgid "%s left the chat."
msgstr "%s离开了聊天室。"
-#: chat.php:4189
+#: index.php:4270 chat.php:4270
#, php-format
msgid "%s is now a registered member."
msgstr "%s现在是注册会员."
-#: chat.php:4190
+#: index.php:4271 chat.php:4271
#, php-format
msgid "%s is now a registered applicant."
msgstr "%s现在是注册申请人."
-#: chat.php:4191
-#, php-format
-msgid "%s has been kicked."
+#: index.php:4272 chat.php:4272
+#, fuzzy, php-format
+#| msgid "%s has been kicked."
+msgid "%1$s has been kicked: %2$s"
msgstr "%s被踢了."
-#: chat.php:4192
-#, php-format
-msgid "%s have been kicked."
+#: index.php:4273 chat.php:4273
+#, fuzzy, php-format
+#| msgid "%s have been kicked."
+msgid "%1$s have been kicked: %2$s"
msgstr "%s被踢了."
-#: chat.php:4193
-msgid "All guests have been kicked."
+#: index.php:4274 chat.php:4274
+#, fuzzy, php-format
+#| msgid "All guests have been kicked."
+msgid "All guests have been kicked: %1$s"
msgstr "所有客人都被踢了."
-#: chat.php:4194
+#: index.php:4275 chat.php:4275
#, php-format
msgid "%s has been cleaned."
msgstr "%s已经清理干净了."
-#: chat.php:4202 chat.php:4396
+#: index.php:4283 index.php:4478 chat.php:4283 chat.php:4478
msgid "Temporarily disabled"
msgstr "暂时禁用"
-#: chat.php:4218 chat.php:4594
+#: index.php:4299 index.php:4676 chat.php:4299 chat.php:4676
msgid "A chat community"
msgstr ""
-#: chat.php:4256
+#: index.php:4338 chat.php:4338
msgid "Successfully registered!"
msgstr "成功注册!"
-#: chat.php:4522 chat.php:4721 chat.php:4728
+#: index.php:4604 index.php:4807 index.php:4814 chat.php:4604 chat.php:4807
+#: chat.php:4814
msgid "No connection to database!"
msgstr "没有连接到数据库!"
-#: chat.php:4531
+#: index.php:4613 chat.php:4613
msgid ""
"Note: Default CSS is now hardcoded and can be removed from the CSS setting"
msgstr "注意:默认的CSS现在是硬编码的,可以从CSS设置中删除"
-#: chat.php:4611
+#: index.php:4697 chat.php:4697
#, php-format
msgid ""
"The %s extension of PHP is required for the encryption feature. Please "
"install it first or set the encrypted setting back to false."
msgstr "加密功能需要PHP的%s扩展。 请先安装它或将加密设置恢复为false."
-#: chat.php:4684 chat.php:4689 chat.php:4694
+#: index.php:4770 index.php:4775 index.php:4780 chat.php:4770 chat.php:4775
+#: chat.php:4780
#, php-format
msgid ""
"The %s extension of PHP is required for the selected database driver. Please "
"install it first."
msgstr "所选数据库驱动程序需要PHP的%s扩展名。 请先安装它."
-#: chat.php:4707 chat.php:4715 chat.php:4719 chat.php:4726
+#: index.php:4793 index.php:4801 index.php:4805 index.php:4812 chat.php:4793
+#: chat.php:4801 chat.php:4805 chat.php:4812
msgid ""
"No connection to database, please create a database and edit the script to "
"use the correct database with given username and password!"
msgstr ""
"没有连接到数据库,请创建一个数据库并编辑脚本并修改为用户名密码正确的数据库!"
-#: chat.php:4734
+#: index.php:4820 chat.php:4820
msgid ""
"The memcached extension of PHP is required for the caching feature. Please "
"install it first or set the memcached setting back to false."
diff --git a/locale/zh_TW/LC_MESSAGES/le-chat-php.po b/locale/zh_TW/LC_MESSAGES/le-chat-php.po
index 9b1cce7..2530dce 100644
--- a/locale/zh_TW/LC_MESSAGES/le-chat-php.po
+++ b/locale/zh_TW/LC_MESSAGES/le-chat-php.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-01-18 21:32+0100\n"
+"POT-Creation-Date: 2025-03-29 17:02+0100\n"
"PO-Revision-Date: 2023-01-18 21:41+0100\n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -18,263 +18,269 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Poedit 3.1.1\n"
-#: chat.php:261
+#: index.php:272 chat.php:272
msgid "Enable applicants"
msgstr "啓用申請人"
-#: chat.php:262
+#: index.php:273 index.php:2267 chat.php:273 chat.php:2267
msgid "Embed images"
msgstr "嵌入圖像"
-#: chat.php:263 chat.php:2202
+#: index.php:274 index.php:2261 chat.php:274 chat.php:2261
msgid "Show Timestamps"
msgstr "顯示時間戳"
-#: chat.php:264
+#: index.php:275 chat.php:275
msgid "Show session-IP"
msgstr "顯示會話-IP"
-#: chat.php:265
+#: index.php:276 chat.php:276
msgid "Members can kick, if no moderator is present"
msgstr "如果沒有主持人,會員可以踢"
-#: chat.php:266
+#: index.php:277 chat.php:277
msgid "Members can always kick"
msgstr "會員總是可以驅逐客人"
-#: chat.php:267
+#: index.php:278 chat.php:278
msgid "Force redirection"
msgstr "強制重定向"
-#: chat.php:268
+#: index.php:279 index.php:2270 chat.php:279 chat.php:2270
msgid "Incognito mode"
msgstr "隱身模式"
-#: chat.php:269
+#: index.php:280 chat.php:280
msgid "Send mail on new public message"
msgstr "發送新公共郵件的郵件"
-#: chat.php:270
+#: index.php:281 chat.php:281
msgid "Fallback to waiting room, if no moderator is present to approve guests"
msgstr "如果沒有主持人來批准客人,請回到候診室"
-#: chat.php:271
+#: index.php:282 chat.php:282
msgid "Disable private messages"
msgstr "禁用私人消息"
-#: chat.php:272 chat.php:2223
+#: index.php:283 index.php:2282 chat.php:283 chat.php:2282
msgid "Enable offline inbox"
msgstr "啓用離線收件箱"
-#: chat.php:273
+#: index.php:284 chat.php:284
msgid "Show a greeting message before showing the messages"
msgstr "在顯示消息之前顯示問候消息"
-#: chat.php:274 chat.php:2204
+#: index.php:285 index.php:2263 chat.php:285 chat.php:2263
msgid "Sort messages from top to bottom"
msgstr "從上到下對消息進行排序"
-#: chat.php:275 chat.php:2205
+#: index.php:286 index.php:2264 chat.php:286 chat.php:2264
msgid "Hide list of chatters"
msgstr "隱藏聊天列表"
-#: chat.php:276 chat.php:1780 chat.php:1794
+#: index.php:287 index.php:1837 index.php:1851 chat.php:287 chat.php:1837
+#: chat.php:1851
msgid "Personal notes"
msgstr ""
-#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110
+#: index.php:288 index.php:1840 index.php:1854 index.php:2169 chat.php:288
+#: chat.php:1840 chat.php:1854 chat.php:2169
msgid "Public notes"
msgstr "用戶配置文件"
-#: chat.php:278
+#: index.php:289 chat.php:289
msgid "Apply kick filter on moderators"
msgstr ""
-#: chat.php:279
+#: index.php:290 chat.php:290
msgid "Show who kicks people or purges all messages."
msgstr "顯示誰驅逐人或清除所有消息。"
-#: chat.php:280
+#: index.php:291 chat.php:291
msgid "Hide reload post box button"
msgstr ""
-#: chat.php:281
+#: index.php:292 chat.php:292
msgid "Hide reload messages button"
msgstr ""
-#: chat.php:282
+#: index.php:293 chat.php:293
msgid "Hide profile button"
msgstr ""
-#: chat.php:283
+#: index.php:294 chat.php:294
msgid "Hide admin button"
msgstr ""
-#: chat.php:284
+#: index.php:295 chat.php:295
msgid "Hide notes button"
msgstr ""
-#: chat.php:285
+#: index.php:296 chat.php:296
msgid "Hide clone button"
msgstr ""
-#: chat.php:286
+#: index.php:297 chat.php:297
msgid "Hide rearrange button"
msgstr ""
-#: chat.php:287
+#: index.php:298 chat.php:298
msgid "Hide help button"
msgstr ""
-#: chat.php:288
+#: index.php:299 chat.php:299
msgid "Apply postbox delete button globally"
msgstr ""
-#: chat.php:289
+#: index.php:300 chat.php:300
msgid "Allow enhancing functionality with JavaScript"
msgstr ""
-#: chat.php:292 chat.php:2170
+#: index.php:303 index.php:2229 chat.php:303 chat.php:2229
msgid "Background colour"
msgstr "背景色"
-#: chat.php:293 chat.php:2167
+#: index.php:304 index.php:2226 chat.php:304 chat.php:2226
msgid "Font colour"
msgstr "字體顏色"
-#: chat.php:296
+#: index.php:307 chat.php:307
msgid "Entrance"
msgstr "入口"
-#: chat.php:297
+#: index.php:308 chat.php:308
msgid "Leaving"
msgstr "離開"
-#: chat.php:298
+#: index.php:309 chat.php:309
msgid "Member registered"
msgstr "成員註冊"
-#: chat.php:299
+#: index.php:310 chat.php:310
msgid "Applicant registered"
msgstr "邀請人註冊"
-#: chat.php:300
+#: index.php:311 chat.php:311
msgid "Kicked"
msgstr "踢出"
-#: chat.php:301
+#: index.php:312 chat.php:312
msgid "Multiple kicked"
msgstr "批量踢出"
-#: chat.php:302
+#: index.php:313 chat.php:313
msgid "All kicked"
msgstr "全部踢出"
-#: chat.php:303
+#: index.php:314 chat.php:314
msgid "Room cleaned"
msgstr "房間清理"
-#: chat.php:304
+#: index.php:315 chat.php:315
msgid "Message to all"
msgstr "給所有人的信息"
-#: chat.php:305
+#: index.php:316 chat.php:316
msgid "Message to members only"
msgstr "僅向會員發送消息"
-#: chat.php:306
+#: index.php:317 chat.php:317
msgid "Message to staff only"
msgstr "僅向員工發送消息"
-#: chat.php:307
+#: index.php:318 chat.php:318
msgid "Message to admins only"
msgstr "僅向管理員發送消息"
-#: chat.php:308
+#: index.php:319 chat.php:319
msgid "Private message"
msgstr "私人信息"
-#: chat.php:309
+#: index.php:320 chat.php:320
msgid "Attachement"
msgstr "附件"
-#: chat.php:312
+#: index.php:323 chat.php:323
msgid "Member timeout (minutes)"
msgstr "會員超時(分鐘)"
-#: chat.php:313
+#: index.php:324 chat.php:324
msgid "Guest timeout (minutes)"
msgstr "訪客超時(分鐘)"
-#: chat.php:314
+#: index.php:325 chat.php:325
msgid "Kick penalty (minutes)"
msgstr "踢罰(分鐘)"
-#: chat.php:315
+#: index.php:326 chat.php:326
msgid "Waiting room time (seconds)"
msgstr "等候室時間(秒)"
-#: chat.php:316
+#: index.php:327 chat.php:327
+msgid "Logout delay (seconds)"
+msgstr ""
+
+#: index.php:328 chat.php:328
msgid "Captcha timeout (seconds)"
msgstr "驗證碼超時(秒)"
-#: chat.php:317
+#: index.php:329 chat.php:329
msgid "Message timeout (minutes)"
msgstr "消息超時(分鐘)"
-#: chat.php:318
+#: index.php:330 chat.php:330
msgid "Message limit (public)"
msgstr "消息限制(公開)"
-#: chat.php:319
+#: index.php:331 chat.php:331
msgid "Maximal message length"
msgstr "最大消息長度"
-#: chat.php:320
+#: index.php:332 chat.php:332
msgid "Maximal nickname length"
msgstr "最大暱稱長度"
-#: chat.php:321
+#: index.php:333 chat.php:333
msgid "Minimal password length"
msgstr "最小密碼長度"
-#: chat.php:322
+#: index.php:334 chat.php:334
msgid "Default message reload time (seconds)"
msgstr "默認消息重新加載時間(秒)"
-#: chat.php:323
+#: index.php:335 chat.php:335
msgid "Number of notes revisions to keep"
msgstr "要保留的備註數量"
-#: chat.php:324
+#: index.php:336 chat.php:336
msgid "Maximum upload size in KB"
msgstr "最大上載大小(KB)"
-#: chat.php:325
+#: index.php:337 chat.php:337
msgid "Enable file uploads"
msgstr "啓用文件上載"
-#: chat.php:326
+#: index.php:338 chat.php:338
msgid "Lowest refresh rate"
msgstr ""
-#: chat.php:327
+#: index.php:339 chat.php:339
msgid "Highest refresh rate"
msgstr ""
-#: chat.php:330
+#: index.php:342 chat.php:342
msgid "Rules (html)"
msgstr "規則(html)"
-#: chat.php:331
+#: index.php:343 chat.php:343
msgid "CSS Style"
msgstr "CSS風格"
-#: chat.php:332
+#: index.php:344 chat.php:344
msgid "Chat disabled message (html)"
msgstr "聊天禁用消息(html)"
-#: chat.php:335
+#: index.php:347 chat.php:347
msgid ""
"Date "
@@ -284,497 +290,532 @@ msgstr ""
"php#refsect1-function.date-parameters\" rel=\"noopener noreferrer\">日期格式"
""
-#: chat.php:336
+#: index.php:348 chat.php:348
msgid "Characters used in Captcha"
msgstr "驗證碼中使用的字符"
-#: chat.php:337
+#: index.php:349 chat.php:349
msgid "Custom redirection script"
msgstr "自定義重定向腳本"
-#: chat.php:338
+#: index.php:350 chat.php:350
msgid "Chat name"
msgstr "聊天名稱"
-#: chat.php:339
+#: index.php:351 chat.php:351
msgid "Send mail using this address"
msgstr "使用此地址發送郵件"
-#: chat.php:340
+#: index.php:352 chat.php:352
msgid "Send mail to this address"
msgstr "發送郵件到這個地址"
-#: chat.php:341
+#: index.php:353 chat.php:353
msgid "Nickname regex"
msgstr "暱稱正則表達式"
-#: chat.php:342
+#: index.php:354 chat.php:354
msgid "Password regex"
msgstr "密碼正則表達式"
-#: chat.php:343
+#: index.php:355 chat.php:355
msgid "Link to external CSS file (on your own server)"
msgstr "鏈接到外部CSS文件"
-#: chat.php:344
+#: index.php:356 chat.php:356
msgid "Meta description (best 50 - 160 characters for SEO)"
msgstr ""
-#: chat.php:345
+#: index.php:357 chat.php:357
+msgid "Show this text when a user's logout is delayed"
+msgstr ""
+
+#: index.php:358 chat.php:358
msgid "Prepend this text to system messages"
msgstr "此文本先於來自系統的消息"
-#: chat.php:348 chat.php:728 chat.php:1225
+#: index.php:361 index.php:780 index.php:1282 chat.php:361 chat.php:780
+#: chat.php:1282
msgid "Change Guestaccess"
msgstr "修改遊客訪問"
-#: chat.php:349
+#: index.php:362 chat.php:362
msgid "Enable global Password"
msgstr ""
-#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433
+#: index.php:363 index.php:810 index.php:2474 index.php:2492 chat.php:363
+#: chat.php:810 chat.php:2474 chat.php:2492
msgid "Global Password:"
msgstr "全局密碼:"
-#: chat.php:351 chat.php:819
+#: index.php:364 index.php:871 chat.php:364 chat.php:871
msgid "Captcha"
msgstr "驗證碼"
-#: chat.php:352 chat.php:775 chat.php:835
+#: index.php:365 index.php:827 index.php:887 chat.php:365 chat.php:827
+#: chat.php:887
msgid "Only for guests"
msgstr "只僅遊客"
-#: chat.php:353 chat.php:1220
+#: index.php:366 index.php:1277 chat.php:366 chat.php:1277
msgid "Topic"
msgstr "話題"
-#: chat.php:354 chat.php:781
+#: index.php:367 index.php:833 chat.php:367 chat.php:833
msgid "Let guests register themselves"
msgstr "讓客人自己註冊"
-#: chat.php:355 chat.php:862
+#: index.php:368 index.php:919 chat.php:368 chat.php:919
msgid "Default time zone"
msgstr "默認時區"
-#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259
+#: index.php:581 index.php:1157 index.php:4158 index.php:4341 chat.php:581
+#: chat.php:1157 chat.php:4158 chat.php:4341
msgid "Initial Setup"
msgstr "初始化設置"
-#: chat.php:588
+#: index.php:601 chat.php:601
#, php-format
msgid "Redirecting to: %s"
msgstr "重定向到: %s"
-#: chat.php:595
+#: index.php:608 chat.php:608
#, php-format
msgid ""
"Dangerous non-http link requested, copy paste this link if you are really "
"sure: %s"
msgstr ""
-#: chat.php:597
+#: index.php:610 chat.php:610
#, php-format
msgid "Non-http link requested: %s"
msgstr "請求非http鏈接: %s"
-#: chat.php:599
+#: index.php:612 chat.php:612
#, php-format
msgid "If it's not working, try this one: %s"
msgstr "如果它不起作用,試試這個: %s"
-#: chat.php:609
+#: index.php:622 chat.php:622
msgid "Access denied"
msgstr "拒絕訪問"
-#: chat.php:609
+#: index.php:622 chat.php:622
#, php-format
msgid "You are logged in as %s and don't have access to this section."
msgstr "您以%s身份登錄,無法訪問此部分。"
-#: chat.php:611 chat.php:915 chat.php:1211 chat.php:1393
+#: index.php:624 index.php:972 index.php:1268 index.php:1450 chat.php:624
+#: chat.php:972 chat.php:1268 chat.php:1450
msgid "Logout"
msgstr "登出"
-#: chat.php:636
+#: index.php:649 chat.php:649
msgid "Copy:"
msgstr "驗證碼:"
-#: chat.php:724
+#: index.php:776 chat.php:776
msgid "Chat Setup"
msgstr "安裝程序"
-#: chat.php:734 chat.php:1233
+#: index.php:786 index.php:1290 chat.php:786 chat.php:1290
msgid "Allow"
msgstr "允許"
-#: chat.php:739 chat.php:1238
+#: index.php:791 index.php:1295 chat.php:791 chat.php:1295
msgid "Allow with waitingroom"
msgstr "等候室允許"
-#: chat.php:744 chat.php:1243
+#: index.php:796 index.php:1300 chat.php:796 chat.php:1300
msgid "Require moderator approval"
msgstr "請求審覈人批准"
-#: chat.php:749 chat.php:1248
+#: index.php:801 index.php:1305 chat.php:801 chat.php:1305
msgid "Only members"
msgstr "只僅正式成員"
-#: chat.php:754 chat.php:1251
+#: index.php:806 index.php:1308 chat.php:806 chat.php:1308
msgid "Disable chat"
msgstr "禁用聊天"
-#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229
+#: index.php:817 index.php:839 index.php:894 index.php:953 index.php:2288
+#: chat.php:817 chat.php:839 chat.php:894 chat.php:953 chat.php:2288
msgid "Disabled"
msgstr "禁用"
-#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219
+#: index.php:822 index.php:882 index.php:958 index.php:2278 chat.php:822
+#: chat.php:882 chat.php:958 chat.php:2278
msgid "Enabled"
msgstr "啓用"
-#: chat.php:792
+#: index.php:844 chat.php:844
msgid "As applicant"
msgstr "作爲申請人"
-#: chat.php:797
+#: index.php:849 chat.php:849
msgid "As member"
msgstr "作爲會員"
-#: chat.php:800
+#: index.php:852 chat.php:852
msgid "System messages"
msgstr "系統信息"
-#: chat.php:822 chat.php:1053
+#: index.php:874 index.php:1110 chat.php:874 chat.php:1110
#, php-format
msgid ""
"The %s extension of PHP is required for this feature. Please install it "
"first."
msgstr "此功能需要PHP的%s擴展名。 請先安裝它。"
-#: chat.php:847
+#: index.php:899 chat.php:899
msgid "Simple"
msgstr "簡單"
-#: chat.php:852
+#: index.php:904 chat.php:904
msgid "Moderate"
msgstr "中等"
-#: chat.php:857
+#: index.php:909 chat.php:909
+msgid "Hard"
+msgstr ""
+
+#: index.php:914 chat.php:914
msgid "Extreme"
msgstr "超級"
-#: chat.php:906 chat.php:1548 chat.php:1610
+#: index.php:963 index.php:1605 index.php:1667 chat.php:963 chat.php:1605
+#: chat.php:1667
msgid "Apply"
msgstr "應用"
-#: chat.php:910 chat.php:1050
+#: index.php:967 index.php:1107 chat.php:967 chat.php:1107
msgid "Backup and restore"
msgstr "備份還原"
-#: chat.php:912
+#: index.php:969 chat.php:969
msgid "Destroy chat"
msgstr "摧毀聊天"
-#: chat.php:1057 chat.php:1066
+#: index.php:1114 index.php:1123 chat.php:1114 chat.php:1123
msgid "Settings"
msgstr "設置"
-#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575
-#: chat.php:1622
+#: index.php:1115 index.php:1124 index.php:1269 index.php:1595 index.php:1632
+#: index.php:1679 chat.php:1115 chat.php:1124 chat.php:1269 chat.php:1595
+#: chat.php:1632 chat.php:1679
msgid "Filter"
msgstr "過濾"
-#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538
+#: index.php:1116 index.php:1125 index.php:1325 index.php:2600 chat.php:1116
+#: chat.php:1125 chat.php:1325 chat.php:2600
msgid "Members"
msgstr "正式成員"
-#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322
+#: index.php:1117 index.php:1126 index.php:2373 index.php:2381 chat.php:1117
+#: chat.php:1126 chat.php:2373 chat.php:2381
msgid "Notes"
msgstr "公告"
-#: chat.php:1061
+#: index.php:1118 chat.php:1118
msgid "Backup"
msgstr "備用"
-#: chat.php:1070
+#: index.php:1127 chat.php:1127
msgid "Restore"
msgstr "恢復"
-#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260
+#: index.php:1131 index.php:1174 index.php:1212 index.php:1242 index.php:4342
+#: chat.php:1131 chat.php:1174 chat.php:1212 chat.php:1242 chat.php:4342
msgid "Go to the Setup-Page"
msgstr "去設置界面"
-#: chat.php:1082 chat.php:1091 chat.php:1949
+#: index.php:1139 index.php:1148 index.php:2006 chat.php:1139 chat.php:1148
+#: chat.php:2006
msgid "Are you sure?"
msgstr "你確定嗎?"
-#: chat.php:1083 chat.php:1092 chat.php:1956
+#: index.php:1140 index.php:1149 index.php:2013 chat.php:1140 chat.php:1149
+#: chat.php:2013
msgid "Yes"
msgstr "是"
-#: chat.php:1084 chat.php:1093 chat.php:1963
+#: index.php:1141 index.php:1150 index.php:2020 chat.php:1141 chat.php:1150
+#: chat.php:2020
msgid "No"
msgstr "否"
-#: chat.php:1101 chat.php:4259
+#: index.php:1158 index.php:4341 chat.php:1158 chat.php:4341
msgid "Superadmin Login"
msgstr "超級管理員登錄"
-#: chat.php:1102
+#: index.php:1159 chat.php:1159
msgid "Superadmin Nickname:"
msgstr "超級管理員用戶名:"
-#: chat.php:1103
+#: index.php:1160 chat.php:1160
msgid "Superadmin Password:"
msgstr "超級管理員密碼:"
-#: chat.php:1104
+#: index.php:1161 chat.php:1161
msgid "Confirm Password:"
msgstr "重複密碼:"
-#: chat.php:1105
+#: index.php:1162 chat.php:1162
msgid "Initialise Chat"
msgstr "初始化聊天室"
-#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439
+#: index.php:1163 index.php:1187 index.php:1213 index.php:2336 index.php:2498
+#: chat.php:1163 chat.php:1187 chat.php:1213 chat.php:2336 chat.php:2498
msgid "Change language:"
msgstr "修改語言:"
-#: chat.php:1117
+#: index.php:1174 chat.php:1174
msgid "Database successfully updated!"
msgstr "數據庫更新成功!"
-#: chat.php:1125 chat.php:1326 chat.php:2407
+#: index.php:1182 index.php:1383 index.php:2466 chat.php:1182 chat.php:1383
+#: chat.php:2466
msgid "Nickname:"
msgstr "用戶名:"
-#: chat.php:1126 chat.php:1327 chat.php:2408
+#: index.php:1183 index.php:1384 index.php:2467 chat.php:1183 chat.php:1384
+#: chat.php:2467
msgid "Password:"
msgstr "密碼:"
-#: chat.php:1128
+#: index.php:1185 chat.php:1185
msgid "Login"
msgstr "登錄"
-#: chat.php:1129
+#: index.php:1186 chat.php:1186
msgid "Forgot login?"
msgstr ""
-#: chat.php:1142 chat.php:1306
+#: index.php:1199 index.php:1363 chat.php:1199 chat.php:1363
msgid "Reset password"
msgstr "重設密碼"
-#: chat.php:1150
+#: index.php:1207 chat.php:1207
#, php-format
msgid ""
"Successfully reset password for username %s. Please remove the password "
"reset define from the script again."
msgstr ""
-#: chat.php:1153
+#: index.php:1210 chat.php:1210
msgid ""
"Please modify the script and put the following at the bottom of it (change "
"the password). Then refresh this page: define('RESET_SUPERADMIN_PASSWORD', "
"'changeme');"
msgstr ""
-#: chat.php:1169 chat.php:1193 chat.php:1258 chat.php:1270 chat.php:1294
-#: chat.php:1308 chat.php:1316 chat.php:2145 chat.php:2153
+#: index.php:1226 index.php:1250 index.php:1315 index.php:1327 index.php:1351
+#: index.php:1365 index.php:1373 index.php:2204 index.php:2212 chat.php:1226
+#: chat.php:1250 chat.php:1315 chat.php:1327 chat.php:1351 chat.php:1365
+#: chat.php:1373 chat.php:2204 chat.php:2212
msgid "(choose)"
msgstr "(選擇)"
-#: chat.php:1170
+#: index.php:1227 chat.php:1227
msgid "All guests"
msgstr "全部遊客"
-#: chat.php:1182
+#: index.php:1239 chat.php:1239
msgid "Administrative functions"
msgstr "管理員功能"
-#: chat.php:1188
+#: index.php:1245 chat.php:1245
msgid "Clean messages"
msgstr "清理消息"
-#: chat.php:1191
+#: index.php:1248 chat.php:1248
msgid "Whole room"
msgstr "整個房間"
-#: chat.php:1192
+#: index.php:1249 chat.php:1249
msgid "Selection"
msgstr "選擇"
-#: chat.php:1193
+#: index.php:1250 chat.php:1250
msgid "Following nickname:"
msgstr "下面的名稱:"
-#: chat.php:1200
+#: index.php:1257 chat.php:1257
msgid "Clean"
msgstr "清理"
-#: chat.php:1202
+#: index.php:1259 chat.php:1259
#, php-format
msgid "Kick Chatter (%d minutes)"
msgstr ""
-#: chat.php:1204
+#: index.php:1261 chat.php:1261
msgid "Kickmessage:"
msgstr "踢出信息:"
-#: chat.php:1205
+#: index.php:1262 chat.php:1262
msgid "Purge messages"
msgstr "清除信息"
-#: chat.php:1206 chat.php:1388 chat.php:1546 chat.php:1580 chat.php:1591
-#: chat.php:2042
+#: index.php:1263 index.php:1445 index.php:1603 index.php:1637 index.php:1648
+#: index.php:2101 chat.php:1263 chat.php:1445 chat.php:1603 chat.php:1637
+#: chat.php:1648 chat.php:2101
msgid "Kick"
msgstr "踢出"
-#: chat.php:1208
+#: index.php:1265 chat.php:1265
msgid "Logout inactive Chatter"
msgstr "註銷非活動聊天者"
-#: chat.php:1212
+#: index.php:1269 chat.php:1269
msgid "View active sessions"
msgstr "查看活動聊天"
-#: chat.php:1212 chat.php:1603
+#: index.php:1269 index.php:1660 chat.php:1269 chat.php:1660
msgid "Linkfilter"
msgstr "鏈接過濾器"
-#: chat.php:1217
+#: index.php:1274 chat.php:1274
msgid "View"
msgstr "顯示"
-#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582
-#: chat.php:1626
+#: index.php:1280 index.php:1310 index.php:1361 index.php:1369 index.php:1639
+#: index.php:1683 chat.php:1280 chat.php:1310 chat.php:1361 chat.php:1369
+#: chat.php:1639 chat.php:1683
msgid "Change"
msgstr "修改"
-#: chat.php:1256
+#: index.php:1313 chat.php:1313
msgid "Register applicant"
msgstr "註冊申請員"
-#: chat.php:1264 chat.php:1322 chat.php:1328
+#: index.php:1321 index.php:1379 index.php:1385 chat.php:1321 chat.php:1379
+#: chat.php:1385
msgid "Register"
msgstr "註冊"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Delete from database"
msgstr "從數據庫刪除"
-#: chat.php:1294
+#: index.php:1351 chat.php:1351
msgid "Deny access (!)"
msgstr "拒絕訪問 (!)"
-#: chat.php:1296
+#: index.php:1353 chat.php:1353
msgid "Set to applicant (SG)"
msgstr "申請爲申請人 (SG)"
-#: chat.php:1298
+#: index.php:1355 chat.php:1355
msgid "Set to regular member"
msgstr "設置爲正式成員"
-#: chat.php:1299
+#: index.php:1356 chat.php:1356
msgid "Set to moderator (M)"
msgstr "設置爲主持人 (M)"
-#: chat.php:1300
+#: index.php:1357 chat.php:1357
msgid "Set to supermod (SM)"
msgstr "設置爲0.5 (SM)"
-#: chat.php:1302
+#: index.php:1359 chat.php:1359
msgid "Set to admin (A)"
msgstr "設置爲管理員 (A)"
-#: chat.php:1314
+#: index.php:1371 chat.php:1371
msgid "Register Guest"
msgstr "註冊遊客"
-#: chat.php:1324
+#: index.php:1381 chat.php:1381
msgid "Register new Member"
msgstr "註冊新成員"
-#: chat.php:1332 chat.php:1408 chat.php:1595 chat.php:1636 chat.php:1710
-#: chat.php:1924
+#: index.php:1389 index.php:1465 index.php:1652 index.php:1693 index.php:1767
+#: index.php:1981 chat.php:1389 chat.php:1465 chat.php:1652 chat.php:1693
+#: chat.php:1767 chat.php:1981
msgid "Reload"
msgstr "刷新"
-#: chat.php:1345
+#: index.php:1402 chat.php:1402
msgid "Active Sessions"
msgstr "活動會話"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "Nickname"
msgstr "用戶名"
-#: chat.php:1346
+#: index.php:1403 chat.php:1403
msgid "Timeout in"
msgstr "超時"
-#: chat.php:1346 chat.php:1873
+#: index.php:1403 index.php:1930 chat.php:1403 chat.php:1930
msgid "User-Agent"
msgstr "用戶代理"
-#: chat.php:1350
+#: index.php:1407 chat.php:1407
msgid "IP-Address"
msgstr "IP地址"
-#: chat.php:1351
+#: index.php:1408 chat.php:1408
msgid "Actions"
msgstr "操作"
-#: chat.php:1393
+#: index.php:1450 chat.php:1450
msgid "Unban"
msgstr "取消禁止"
-#: chat.php:1416
+#: index.php:1473 chat.php:1473
msgid "Incorrect regular expression!"
msgstr "正則表達式錯誤!"
-#: chat.php:1416 chat.php:1424
+#: index.php:1473 index.php:1481 chat.php:1473 chat.php:1481
#, php-format
msgid "Your match was as follows: %s"
msgstr "你的申請如下: %s"
-#: chat.php:1424
+#: index.php:1481 chat.php:1481
msgid ""
"Your match was too long. You can use max. 255 characters. Try splitting it "
"up."
msgstr "你的申請太長了。 你可以用max。 255個字符。 嘗試拆分它."
-#: chat.php:1541 chat.php:1606
+#: index.php:1598 index.php:1663 chat.php:1598 chat.php:1663
msgid "Filter ID:"
msgstr "過濾器ID:"
-#: chat.php:1542 chat.php:1607
+#: index.php:1599 index.php:1664 chat.php:1599 chat.php:1664
msgid "Match"
msgstr "匹配"
-#: chat.php:1543 chat.php:1608
+#: index.php:1600 index.php:1665 chat.php:1600 chat.php:1665
msgid "Replace"
msgstr "替換"
-#: chat.php:1544 chat.php:1578 chat.php:1589
+#: index.php:1601 index.php:1635 index.php:1646 chat.php:1601 chat.php:1635
+#: chat.php:1646
msgid "Allow in PM"
msgstr "允許在PM"
-#: chat.php:1545 chat.php:1579 chat.php:1590 chat.php:1609 chat.php:1625
-#: chat.php:1633
+#: index.php:1602 index.php:1636 index.php:1647 index.php:1666 index.php:1682
+#: index.php:1690 chat.php:1602 chat.php:1636 chat.php:1647 chat.php:1666
+#: chat.php:1682 chat.php:1690
msgid "Regex"
msgstr "正則表達式"
-#: chat.php:1547 chat.php:1581 chat.php:1592
+#: index.php:1604 index.php:1638 index.php:1649 chat.php:1604 chat.php:1638
+#: chat.php:1649
msgid "Case sensitive"
msgstr "大小寫"
-#: chat.php:1586 chat.php:1630
+#: index.php:1643 index.php:1687 chat.php:1643 chat.php:1687
msgid "New filter:"
msgstr "新過濾器:"
-#: chat.php:1593 chat.php:1634
+#: index.php:1650 index.php:1691 chat.php:1650 chat.php:1691
msgid "Add"
msgstr "添加"
-#: chat.php:1691
+#: index.php:1748 chat.php:1748
msgid ""
"This chat uses frames. Please enable frames in your browser or use a "
"suitable one!"
@@ -782,103 +823,106 @@ msgstr ""
"這個聊天室使用 frames. 請在瀏覽器中啓用frames或使用合適的"
"frames!"
-#: chat.php:1691 chat.php:2370 chat.php:2457
+#: index.php:1748 index.php:2429 index.php:2516 chat.php:1748 chat.php:2429
+#: chat.php:2516
msgid "Back to the login page."
msgstr "返回登錄頁面."
-#: chat.php:1709
+#: index.php:1766 chat.php:1766
msgid "Bottom"
msgstr "底部"
-#: chat.php:1710
+#: index.php:1767 chat.php:1767
msgid "Manual refresh required"
msgstr ""
-#: chat.php:1726
+#: index.php:1783 chat.php:1783
msgid "Top"
msgstr "頂部"
-#: chat.php:1734 chat.php:1940 chat.php:1942
+#: index.php:1791 index.php:1997 index.php:1999 chat.php:1791 chat.php:1997
+#: chat.php:1999
msgid "Delete selected messages"
msgstr "刪除所選信息"
-#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281
+#: index.php:1818 index.php:1945 index.php:2160 index.php:2340 chat.php:1818
+#: chat.php:1945 chat.php:2160 chat.php:2340
msgid "Back to the chat."
msgstr "回到聊天室."
-#: chat.php:1774 chat.php:1791
+#: index.php:1831 index.php:1848 chat.php:1831 chat.php:1848
msgid "Admin notes"
msgstr "管理員說明"
-#: chat.php:1777 chat.php:1788
+#: index.php:1834 index.php:1845 chat.php:1834 chat.php:1845
msgid "Staff notes"
msgstr "工作人員說明"
-#: chat.php:1811
+#: index.php:1868 chat.php:1868
msgid "Notes saved!"
msgstr ""
-#: chat.php:1835 chat.php:2122
+#: index.php:1892 index.php:2181 chat.php:1892 chat.php:2181
#, php-format
msgid "Last edited by %1$s at %2$s"
msgstr "上次由%1$s編輯 時間爲%2$s"
-#: chat.php:1848
+#: index.php:1905 chat.php:1905
msgid "Save notes"
msgstr "保存說明"
-#: chat.php:1850
+#: index.php:1907 chat.php:1907
msgid "Revisions:"
msgstr "修訂:"
-#: chat.php:1853
+#: index.php:1910 chat.php:1910
msgid "Older"
msgstr "舊的"
-#: chat.php:1857
+#: index.php:1914 chat.php:1914
msgid "Newer"
msgstr "較新"
-#: chat.php:1868 chat.php:1914
+#: index.php:1925 index.php:1971 chat.php:1925 chat.php:1971
msgid "Waiting room"
msgstr "等候室"
-#: chat.php:1880
+#: index.php:1937 chat.php:1937
msgid "Allow checked"
msgstr "允許檢查"
-#: chat.php:1881
+#: index.php:1938 chat.php:1938
msgid "Allow all"
msgstr "允許全部"
-#: chat.php:1882
+#: index.php:1939 chat.php:1939
msgid "Deny checked"
msgstr "拒絕檢查"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Deny all"
msgstr "全部拒絕"
-#: chat.php:1883
+#: index.php:1940 chat.php:1940
msgid "Send message to denied:"
msgstr "發送消息給拒絕:"
-#: chat.php:1884
+#: index.php:1941 chat.php:1941
msgid "Submit"
msgstr "提交"
-#: chat.php:1886
+#: index.php:1943 chat.php:1943
msgid "No more entry requests to approve."
msgstr "不再需要批准入場申請."
-#: chat.php:1916
+#: index.php:1973 chat.php:1973
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat in %2$d "
"seconds."
msgstr "歡迎%1$s, 您的登錄信息已被延遲,您可以訪問聊天記錄%2$d秒."
-#: chat.php:1918
+#: index.php:1975 chat.php:1975
#, php-format
msgid ""
"Welcome %1$s, your login has been delayed, you can access the chat as soon, "
@@ -886,71 +930,76 @@ msgid ""
msgstr ""
"歡迎%1$s, 您的登錄信息已被延遲,您可以儘快訪問聊天內容,因爲主持人會讓您進入."
-#: chat.php:1921
+#: index.php:1978 chat.php:1978
#, php-format
msgid ""
"If this page doesn't refresh every %d seconds, use the button below to "
"reload it manually!"
msgstr "如果這個頁面沒有刷新%d秒, 使用下面的按鈕手動重新加載!"
-#: chat.php:1926 chat.php:2339
+#: index.php:1983 index.php:2398 chat.php:1983 chat.php:2398
msgid "Exit Chat"
msgstr "退出聊天室"
-#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430
+#: index.php:1986 index.php:2133 index.php:2144 index.php:2489 chat.php:1986
+#: chat.php:2133 chat.php:2144 chat.php:2489
msgid "Rules"
msgstr "規則"
-#: chat.php:1985
+#: index.php:2042 chat.php:2042
msgid "Send to"
msgstr "發送至"
-#: chat.php:1990
+#: index.php:2047 chat.php:2047
msgid "All chatters"
msgstr "所有的聊天者"
-#: chat.php:1996
+#: index.php:2053 chat.php:2053
msgid "Members only"
msgstr "內部使用"
-#: chat.php:2003
+#: index.php:2060 chat.php:2060
msgid "Staff only"
msgstr "只供職員使用"
-#: chat.php:2010
+#: index.php:2067 chat.php:2067
msgid "Admin only"
msgstr "僅限管理員"
-#: chat.php:2019
+#: index.php:2076 chat.php:2076
msgid "(offline)"
msgstr "(離線)"
-#: chat.php:2043
+#: index.php:2078 chat.php:2078
+msgid "(logging out)"
+msgstr ""
+
+#: index.php:2102 chat.php:2102
msgid "Also purge messages"
msgstr "同時清除消息"
-#: chat.php:2050
+#: index.php:2109 chat.php:2109
msgid "Delete last message"
msgstr "刪除上一條消息"
-#: chat.php:2055
+#: index.php:2114 chat.php:2114
msgid "Delete all messages"
msgstr "刪除所有信息"
-#: chat.php:2057
+#: index.php:2116 chat.php:2116
msgid "Switch to single-line"
msgstr "切換到單行"
-#: chat.php:2059
+#: index.php:2118 chat.php:2118
msgid "Switch to multi-line"
msgstr "切換到多行"
-#: chat.php:2070
+#: index.php:2129 chat.php:2129
#, php-format
msgid "Welcome %s!"
msgstr "歡迎%s!"
-#: chat.php:2071
+#: index.php:2130 chat.php:2130
#, php-format
msgid ""
"If this frame does not reload in %d seconds, you'll have to enable automatic "
@@ -961,11 +1010,11 @@ msgid ""
"bottom to refresh manually."
msgstr ""
-#: chat.php:2087
+#: index.php:2146 chat.php:2146
msgid "Help"
msgstr "幫助"
-#: chat.php:2088
+#: index.php:2147 chat.php:2147
msgid ""
"All functions should be pretty much self-explaining, just use the buttons. "
"In your profile you can adjust the refresh rate and font colour, as well as "
@@ -976,7 +1025,7 @@ msgstr ""
"體顏色和首選輸入框大小. 注意: 這是一個聊天室,所以如果你不再說話,"
"你會在一段時間後自動退出."
-#: chat.php:2090
+#: index.php:2149 chat.php:2149
msgid ""
"If you want to embed an image in your post, simply put [img] in front of "
"your image URL. Example: [img]http://example.com/images/file.jpg will embed "
@@ -985,7 +1034,7 @@ msgstr ""
"如果您想在帖子中嵌入圖片,只需將[img]放在圖片網址前面即可。示例:[img]http://"
"example.com/images/file.jpg會將圖片嵌入到您的帖子中."
-#: chat.php:2093
+#: index.php:2152 chat.php:2152
msgid ""
"Members: You'll have some more options in your profile. You can adjust your "
"font face, change your password anytime and of course you can delete your "
@@ -994,7 +1043,7 @@ msgstr ""
"成員:您的個人資料中還有更多選項。 您可以隨時調整字體,更改密碼,當然也可以刪"
"除您的帳戶."
-#: chat.php:2095
+#: index.php:2154 chat.php:2154
msgid ""
"Moderators: Notice the Admin-button at the bottom. It'll bring up a page "
"where you can clean the room, kick chatters, view all active sessions and "
@@ -1003,602 +1052,624 @@ msgstr ""
"版主:請注意底部。 它將打開一個頁面,您可以在其中清理房間,踢聊天,查看所有活"
"動會話並在需要時完全禁用訪客訪問權限."
-#: chat.php:2097
+#: index.php:2156 chat.php:2156
msgid ""
"Admins: You'll be furthermore able to register guests, edit members and "
"register new nicknames."
msgstr "管理員:您還可以註冊客人,編輯成員並註冊新的暱稱。"
-#: chat.php:2135
+#: index.php:2194 chat.php:2194
msgid "Your Profile"
msgstr "你的個人資料"
-#: chat.php:2144
+#: index.php:2203 chat.php:2203
msgid "Don't ignore anymore"
msgstr "取消忽略"
-#: chat.php:2152
+#: index.php:2211 chat.php:2211
msgid "Ignore"
msgstr "忽略"
-#: chat.php:2163
+#: index.php:2222 chat.php:2222
#, php-format
msgid "Refresh rate (%1$d-%2$d seconds)"
msgstr "刷新時間(%1$d秒-%2$d秒)"
-#: chat.php:2167 chat.php:2170
+#: index.php:2226 index.php:2229 chat.php:2226 chat.php:2229
msgid "View examples"
msgstr "查看示例"
-#: chat.php:2174
+#: index.php:2233 chat.php:2233
msgid "Fontface"
msgstr "字體"
-#: chat.php:2175
+#: index.php:2234 chat.php:2234
msgid "Room Default"
msgstr "默認房間"
-#: chat.php:2188
+#: index.php:2247 chat.php:2247
msgid "Bold"
msgstr "大膽"
-#: chat.php:2192
+#: index.php:2251 chat.php:2251
msgid "Italic"
msgstr "斜體"
-#: chat.php:2196
+#: index.php:2255 chat.php:2255
msgid "Small"
msgstr ""
-#: chat.php:2199
+#: index.php:2258 chat.php:2258
msgid "Example for your chosen font"
msgstr "您選擇的字體的示例"
-#: chat.php:2203
+#: index.php:2262 chat.php:2262
msgid "Autoscroll (for old browsers or top-to-bottom sort)."
msgstr "自動滾動(適用於舊瀏覽器或從上到下排序)."
-#: chat.php:2234
+#: index.php:2293 chat.php:2293
msgid "For everyone"
msgstr "所以人"
-#: chat.php:2239
+#: index.php:2298 chat.php:2298
msgid "For members only"
msgstr "僅限會員"
-#: chat.php:2244
+#: index.php:2303 chat.php:2303
msgid "For staff only"
msgstr "僅限員工"
-#: chat.php:2248
+#: index.php:2307 chat.php:2307
msgid "Time zone"
msgstr "時區"
-#: chat.php:2261
+#: index.php:2320 chat.php:2320
msgid "Change Password"
msgstr "更改密碼"
-#: chat.php:2263
+#: index.php:2322 chat.php:2322
msgid "Old password:"
msgstr "舊密碼:"
-#: chat.php:2264
+#: index.php:2323 chat.php:2323
msgid "New password:"
msgstr "新密碼:"
-#: chat.php:2265
+#: index.php:2324 chat.php:2324
msgid "Confirm new password:"
msgstr "在重複一次新密碼:"
-#: chat.php:2268
+#: index.php:2327 chat.php:2327
msgid "Change Nickname"
msgstr ""
-#: chat.php:2269
+#: index.php:2328 chat.php:2328
msgid "New nickname:"
msgstr "新暱稱:"
-#: chat.php:2273
+#: index.php:2332 chat.php:2332
msgid "Save changes"
msgstr "保存更改"
-#: chat.php:2275
+#: index.php:2334 chat.php:2334
msgid "Delete account"
msgstr "刪除帳戶"
-#: chat.php:2301
+#: index.php:2360 chat.php:2360
msgid "Reload Post Box"
msgstr "刷新緩存"
-#: chat.php:2304
+#: index.php:2363 chat.php:2363
msgid "Reload Messages"
msgstr "刷新一下消息"
-#: chat.php:2307
+#: index.php:2366 chat.php:2366
msgid "Profile"
msgstr "個人資料"
-#: chat.php:2311 chat.php:2528
+#: index.php:2370 index.php:2590 chat.php:2370 chat.php:2590
msgid "Admin"
msgstr "管理"
-#: chat.php:2318
+#: index.php:2377 chat.php:2377
msgid "View public notes"
msgstr "閱讀用戶配置文件"
-#: chat.php:2325
+#: index.php:2384 chat.php:2384
msgid "Clone"
msgstr "打開新標籤"
-#: chat.php:2334
+#: index.php:2393 chat.php:2393
msgid "Rearrange"
msgstr "改變方向"
-#: chat.php:2337
+#: index.php:2396 chat.php:2396
msgid "Rules & Help"
msgstr "條款 & 幫助"
-#: chat.php:2358 chat.php:2362
+#: index.php:2417 index.php:2421 chat.php:2417 chat.php:2421
msgid "File not found!"
msgstr "找不到文件!"
-#: chat.php:2370
+#: index.php:2429 chat.php:2429
#, php-format
msgid "Bye %s, visit again soon!"
msgstr "再見%s, 歡迎你再此訪問!"
-#: chat.php:2377
+#: index.php:2436 chat.php:2436
msgid "Colourtable"
msgstr "顏色表"
-#: chat.php:2388
+#: index.php:2447 chat.php:2447
msgid "Back to your Profile"
msgstr "回到你的個人資料"
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "Repeat password to register"
msgstr "重複密碼 註冊"
-#: chat.php:2412
+#: index.php:2471 chat.php:2471
msgid "(optional)"
msgstr "(可選的)"
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Guests, choose a colour:"
msgstr "客人,選擇一種顏色:"
-#: chat.php:2417
+#: index.php:2476 chat.php:2476
msgid "Random Colour"
msgstr "隨機顏色"
-#: chat.php:2421 chat.php:2435 chat.php:2569
+#: index.php:2480 index.php:2494 index.php:2631 chat.php:2480 chat.php:2494
+#: chat.php:2631
msgid "Sorry, currently members only!"
msgstr "對不起,目前僅限會員!"
-#: chat.php:2423 chat.php:2437
+#: index.php:2482 index.php:2496 chat.php:2482 chat.php:2496
msgid "Enter Chat"
msgstr "回車"
-#: chat.php:2457
+#: index.php:2516 chat.php:2516
#, php-format
msgid "Error: %s"
msgstr "錯誤: %s"
-#: chat.php:2467
+#: index.php:2526 chat.php:2526
msgid "Fatal error"
msgstr "致命錯誤"
-#: chat.php:2470
+#: index.php:2529 chat.php:2529
#, php-format
msgid "Fatal error: %s"
msgstr "致命錯誤: %s"
-#: chat.php:2482 chat.php:2693
+#: index.php:2541 index.php:2756 chat.php:2541 chat.php:2756
msgid "Failed login attempt(s)"
msgstr "登錄嘗試失敗"
-#: chat.php:2489
+#: index.php:2548 chat.php:2548
#, php-format
msgid "Read %d messages in your inbox"
msgstr "閱讀收件箱中的%d條消息"
-#: chat.php:2498
+#: index.php:2557 chat.php:2557
#, php-format
msgid "%d new guests to approve"
msgstr "%d新客人批准"
-#: chat.php:2530
+#: index.php:2577 chat.php:2577
+msgid "logging out"
+msgstr ""
+
+#: index.php:2592 chat.php:2592
msgid "Admin:"
msgstr "管理:"
-#: chat.php:2533
+#: index.php:2595 chat.php:2595
msgid "Staff"
msgstr "工作人員"
-#: chat.php:2535
+#: index.php:2597 chat.php:2597
msgid "Staff:"
msgstr "工作人員:"
-#: chat.php:2540
+#: index.php:2602 chat.php:2602
msgid "Members:"
msgstr "正式成員:"
-#: chat.php:2542
+#: index.php:2604 chat.php:2604
msgid "Guests"
msgstr "遊客"
-#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092
+#: index.php:2625 index.php:3063 index.php:3267 index.php:4172 chat.php:2625
+#: chat.php:3063 chat.php:3267 chat.php:4172
#, php-format
msgid ""
"Invalid nickname (%1$d characters maximum and has to match the regular "
"expression \"%2$s\")"
msgstr "無效的用戶名 (最多%1$d個字符,必須與正則表達式\"%2$s\"匹配)"
-#: chat.php:2566 chat.php:2996 chat.php:3162 chat.php:4094
+#: index.php:2628 index.php:3066 index.php:3232 index.php:4174 chat.php:2628
+#: chat.php:3066 chat.php:3232 chat.php:4174
#, php-format
msgid ""
"Invalid password (At least %1$d characters and has to match the regular "
"expression \"%2$s\")"
msgstr "無效的密碼 (至少包含%1$d個字符,並且必須與正則表達式\"%2$s\"匹配)"
-#: chat.php:2574 chat.php:2739
+#: index.php:2636 index.php:2806 chat.php:2636 chat.php:2806
msgid "Wrong global Password!"
msgstr "錯誤的全球密碼!"
-#: chat.php:2591 chat.php:2612
+#: index.php:2654 index.php:2675 chat.php:2654 chat.php:2675
msgid "Wrong Captcha"
msgstr "錯誤驗證碼"
-#: chat.php:2596 chat.php:2604
+#: index.php:2659 index.php:2667 chat.php:2659 chat.php:2667
msgid "Captcha already used or timed out."
msgstr "驗證碼已經使用或超時."
-#: chat.php:2652
+#: index.php:2715 chat.php:2715
msgid "A user with this nickname is already logged in."
msgstr "具有此暱稱的用戶已登錄."
-#: chat.php:2652 chat.php:2933 chat.php:3176
+#: index.php:2715 index.php:3003 index.php:3246 chat.php:2715 chat.php:3003
+#: chat.php:3246
msgid "Wrong Password!"
msgstr "密碼錯誤!"
-#: chat.php:2696
+#: index.php:2759 chat.php:2759
msgid "Dismiss"
msgstr "承認"
-#: chat.php:2747 chat.php:3171 chat.php:4096
+#: index.php:2814 index.php:3241 index.php:4176 chat.php:2814 chat.php:3241
+#: chat.php:4176
msgid "Password confirmation does not match!"
msgstr "重複密碼不匹配!"
-#: chat.php:2859
+#: index.php:2854 chat.php:2854
+#, fuzzy
+#| msgid "Kickmessage:"
+msgid "no kick message"
+msgstr "踢出信息:"
+
+#: index.php:2929 chat.php:2929
msgid "Invalid/expired session"
msgstr "無效/已過期的會話"
-#: chat.php:2875 chat.php:3412
+#: index.php:2945 index.php:3483 chat.php:2945 chat.php:3483
msgid "You have been kicked!"
msgstr "你被踢出該聊天室!"
-#: chat.php:2885
+#: index.php:2955 chat.php:2955
#, php-format
msgid "Currently %d chatter(s) in room:"
msgstr "目前%d人在房間裏聊天:"
-#: chat.php:2933
+#: index.php:3003 chat.php:3003
msgid "This nickname is a registered member."
msgstr "這個暱稱是註冊會員."
-#: chat.php:2960 chat.php:3001
+#: index.php:3030 index.php:3071 chat.php:3030 chat.php:3071
#, php-format
msgid "%s is already registered."
msgstr "%s已經註冊。"
-#: chat.php:2969 chat.php:2990
+#: index.php:3039 index.php:3060 chat.php:3039 chat.php:3060
#, php-format
msgid "Can't register %s"
msgstr "無法註冊%s"
-#: chat.php:2978 chat.php:3023
+#: index.php:3048 index.php:3093 chat.php:3048 chat.php:3093
#, php-format
msgid "%s successfully registered."
msgstr "%s成功註冊."
-#: chat.php:3031 chat.php:3036
+#: index.php:3101 index.php:3106 chat.php:3101 chat.php:3106
#, php-format
msgid "Can't change status of %s"
msgstr "無法改變狀態%s"
-#: chat.php:3047
+#: index.php:3117 chat.php:3117
#, php-format
msgid "%s successfully deleted from database."
msgstr "%s已成功從數據庫中刪除."
-#: chat.php:3056
+#: index.php:3126 chat.php:3126
#, php-format
msgid "Status of %s successfully changed."
msgstr "%s的狀態已更改."
-#: chat.php:3073
+#: index.php:3143 chat.php:3143
#, php-format
msgid "Successfully reset password for %s"
msgstr ""
-#: chat.php:3075
+#: index.php:3145 chat.php:3145
#, php-format
msgid "Can't reset password for %s"
msgstr ""
-#: chat.php:3190
+#: index.php:3260 chat.php:3260
msgid "Your profile has successfully been saved."
msgstr "您的個人資料已成功保存."
-#: chat.php:3202
+#: index.php:3272 chat.php:3272
msgid "Nickname is already taken"
msgstr "暱稱已被取消"
-#: chat.php:3714
+#: index.php:3785 chat.php:3785
msgid "system message"
msgstr "系統信息"
-#: chat.php:3921
+#: index.php:4001 chat.php:4001
msgid "Beige"
msgstr "米色"
-#: chat.php:3922
+#: index.php:4002 chat.php:4002
msgid "Black"
msgstr "黑色"
-#: chat.php:3923
+#: index.php:4003 chat.php:4003
msgid "Blue"
msgstr "藍色"
-#: chat.php:3924
+#: index.php:4004 chat.php:4004
msgid "Blue violet"
msgstr "紫羅蘭色"
-#: chat.php:3925
+#: index.php:4005 chat.php:4005
msgid "Brown"
msgstr "棕色"
-#: chat.php:3926
+#: index.php:4006 chat.php:4006
msgid "Cyan"
msgstr "青色"
-#: chat.php:3927
+#: index.php:4007 chat.php:4007
msgid "Dark blue"
msgstr "深藍"
-#: chat.php:3928
+#: index.php:4008 chat.php:4008
msgid "Dark green"
msgstr "深綠色"
-#: chat.php:3929
+#: index.php:4009 chat.php:4009
msgid "Dark red"
msgstr "深紅"
-#: chat.php:3930
+#: index.php:4010 chat.php:4010
msgid "Dark violet"
msgstr "深紫羅蘭"
-#: chat.php:3931
+#: index.php:4011 chat.php:4011
msgid "Sky blue"
msgstr "天藍色"
-#: chat.php:3932
+#: index.php:4012 chat.php:4012
msgid "Gold"
msgstr "金"
-#: chat.php:3933
+#: index.php:4013 chat.php:4013
msgid "Grey"
msgstr "灰色"
-#: chat.php:3934
+#: index.php:4014 chat.php:4014
msgid "Green"
msgstr "綠色"
-#: chat.php:3935
+#: index.php:4015 chat.php:4015
msgid "Hot pink"
msgstr "亮粉色"
-#: chat.php:3936
+#: index.php:4016 chat.php:4016
msgid "Indigo"
msgstr "靛青"
-#: chat.php:3937
+#: index.php:4017 chat.php:4017
msgid "Light blue"
msgstr "淺藍"
-#: chat.php:3938
+#: index.php:4018 chat.php:4018
msgid "Light green"
msgstr "淺綠色"
-#: chat.php:3939
+#: index.php:4019 chat.php:4019
msgid "Lime green"
msgstr "檸檬綠"
-#: chat.php:3940
+#: index.php:4020 chat.php:4020
msgid "Magenta"
msgstr "品紅"
-#: chat.php:3941
+#: index.php:4021 chat.php:4021
msgid "Olive"
msgstr "橄欖"
-#: chat.php:3942
+#: index.php:4022 chat.php:4022
msgid "Orange"
msgstr "橙子"
-#: chat.php:3943
+#: index.php:4023 chat.php:4023
msgid "Orange red"
msgstr "橙紅色"
-#: chat.php:3944
+#: index.php:4024 chat.php:4024
msgid "Purple"
msgstr "紫色"
-#: chat.php:3945
+#: index.php:4025 chat.php:4025
msgid "Red"
msgstr "紅色"
-#: chat.php:3946
+#: index.php:4026 chat.php:4026
msgid "Royal blue"
msgstr "寶藍色"
-#: chat.php:3947
+#: index.php:4027 chat.php:4027
msgid "Sea green"
msgstr "海綠色"
-#: chat.php:3948
+#: index.php:4028 chat.php:4028
msgid "Sienna"
msgstr "黃土"
-#: chat.php:3949
+#: index.php:4029 chat.php:4029
msgid "Silver"
msgstr "銀色"
-#: chat.php:3950
+#: index.php:4030 chat.php:4030
msgid "Tan"
msgstr "黃褐色"
-#: chat.php:3951
+#: index.php:4031 chat.php:4031
msgid "Teal"
msgstr "藍綠色"
-#: chat.php:3952
+#: index.php:4032 chat.php:4032
msgid "Violet"
msgstr "紫色"
-#: chat.php:3953
+#: index.php:4033 chat.php:4033
msgid "White"
msgstr "白色"
-#: chat.php:3954
+#: index.php:4034 chat.php:4034
msgid "Yellow"
msgstr "黃色"
-#: chat.php:3955
+#: index.php:4035 chat.php:4035
msgid "Yellow green"
msgstr "黃綠色"
-#: chat.php:4077
+#: index.php:4157 chat.php:4157
msgid "Successfully destroyed chat"
msgstr "成功破壞了聊天"
-#: chat.php:4086
+#: index.php:4166 chat.php:4166
msgid ""
"Database tables already exist! To continue, you have to delete these tables "
"manually first."
msgstr "數據庫表已經存在!,要繼續,您必須先手動刪除這些表。"
-#: chat.php:4089
+#: index.php:4169 chat.php:4169
msgid "A Superadmin already exists!"
msgstr "超級管理員已經存在!"
-#: chat.php:4182 chat.php:4369
+#: index.php:4263 index.php:4451 chat.php:4263 chat.php:4451
#, php-format
msgid "%s - "
msgstr ""
-#: chat.php:4183 chat.php:4369
+#: index.php:4264 index.php:4451 chat.php:4264 chat.php:4451
#, php-format
msgid "[M] %s - "
msgstr ""
-#: chat.php:4184 chat.php:4369
+#: index.php:4265 index.php:4451 chat.php:4265 chat.php:4451
#, php-format
msgid "[Staff] %s - "
msgstr ""
-#: chat.php:4185 chat.php:4369
+#: index.php:4266 index.php:4451 chat.php:4266 chat.php:4451
#, php-format
msgid "[Admin] %s - "
msgstr ""
-#: chat.php:4186 chat.php:4369
+#: index.php:4267 index.php:4451 chat.php:4267 chat.php:4451
#, php-format
msgid "[%1$s to %2$s] - "
msgstr ""
-#: chat.php:4187
+#: index.php:4268 chat.php:4268
#, php-format
msgid "%s entered the chat."
msgstr "%s進入聊天室."
-#: chat.php:4188
+#: index.php:4269 chat.php:4269
#, php-format
msgid "%s left the chat."
msgstr "%s離開了聊天室。"
-#: chat.php:4189
+#: index.php:4270 chat.php:4270
#, php-format
msgid "%s is now a registered member."
msgstr "%s現在是註冊會員."
-#: chat.php:4190
+#: index.php:4271 chat.php:4271
#, php-format
msgid "%s is now a registered applicant."
msgstr "%s現在是註冊申請人."
-#: chat.php:4191
-#, php-format
-msgid "%s has been kicked."
+#: index.php:4272 chat.php:4272
+#, fuzzy, php-format
+#| msgid "%s has been kicked."
+msgid "%1$s has been kicked: %2$s"
msgstr "%s被踢了."
-#: chat.php:4192
-#, php-format
-msgid "%s have been kicked."
+#: index.php:4273 chat.php:4273
+#, fuzzy, php-format
+#| msgid "%s have been kicked."
+msgid "%1$s have been kicked: %2$s"
msgstr "%s被踢了."
-#: chat.php:4193
-msgid "All guests have been kicked."
+#: index.php:4274 chat.php:4274
+#, fuzzy, php-format
+#| msgid "All guests have been kicked."
+msgid "All guests have been kicked: %1$s"
msgstr "所有客人都被踢了."
-#: chat.php:4194
+#: index.php:4275 chat.php:4275
#, php-format
msgid "%s has been cleaned."
msgstr "%s已經清理乾淨了."
-#: chat.php:4202 chat.php:4396
+#: index.php:4283 index.php:4478 chat.php:4283 chat.php:4478
msgid "Temporarily disabled"
msgstr "暫時禁用"
-#: chat.php:4218 chat.php:4594
+#: index.php:4299 index.php:4676 chat.php:4299 chat.php:4676
msgid "A chat community"
msgstr ""
-#: chat.php:4256
+#: index.php:4338 chat.php:4338
msgid "Successfully registered!"
msgstr "成功註冊!"
-#: chat.php:4522 chat.php:4721 chat.php:4728
+#: index.php:4604 index.php:4807 index.php:4814 chat.php:4604 chat.php:4807
+#: chat.php:4814
msgid "No connection to database!"
msgstr "沒有連接到數據庫!"
-#: chat.php:4531
+#: index.php:4613 chat.php:4613
msgid ""
"Note: Default CSS is now hardcoded and can be removed from the CSS setting"
msgstr "注意:默認的CSS現在是硬編碼的,可以從CSS設置中刪除"
-#: chat.php:4611
+#: index.php:4697 chat.php:4697
#, php-format
msgid ""
"The %s extension of PHP is required for the encryption feature. Please "
"install it first or set the encrypted setting back to false."
msgstr "加密功能需要PHP的%s擴展。 請先安裝它或將加密設置恢復爲false."
-#: chat.php:4684 chat.php:4689 chat.php:4694
+#: index.php:4770 index.php:4775 index.php:4780 chat.php:4770 chat.php:4775
+#: chat.php:4780
#, php-format
msgid ""
"The %s extension of PHP is required for the selected database driver. Please "
"install it first."
msgstr "所選數據庫驅動程序需要PHP的%s擴展名。 請先安裝它."
-#: chat.php:4707 chat.php:4715 chat.php:4719 chat.php:4726
+#: index.php:4793 index.php:4801 index.php:4805 index.php:4812 chat.php:4793
+#: chat.php:4801 chat.php:4805 chat.php:4812
msgid ""
"No connection to database, please create a database and edit the script to "
"use the correct database with given username and password!"
msgstr ""
"沒有連接到數據庫,請創建一個數據庫並編輯腳本並修改爲用戶名密碼正確的數據庫!"
-#: chat.php:4734
+#: index.php:4820 chat.php:4820
msgid ""
"The memcached extension of PHP is required for the caching feature. Please "
"install it first or set the memcached setting back to false."
|
---|
|