diff --git a/README.md b/README.md index 8537820..5a1df7b 100644 --- a/README.md +++ b/README.md @@ -57,14 +57,10 @@ Note: If you updated the script, please visit http://(server)/(script-name).php? Translating: ------------ -Copy `lang_en.php` and rename it to `lang_YOUR_LANGCODE.php` -Then edit the file and translate the messages into your language and change `$I` to `$T` at the top. -If you ever use a `'` character, you have to escape it by using `\'` instead or the script will fail. -When you are done, you have to edit the chat script, to include your translation. Simply add a line with -`'lang_code' =>'Language name',` -to the `$L` array in the load_lang() function at the bottom, similar to what I did for the German translation. -Please share your translation with me, so I can add it to the official version. -To update your translation, you can copy each new string to your translation file or edit the automated `lang_update.php` script to reflect you language and run it. +Translations are managed in [Weblate](https://weblate.danwin1210.de/projects/DanWin/le-chat-php). +If you prefer manually submitting translations, the script `update-translations.sh` can be used to update the language template and translation files from source. +It will generate the file `locale/le-chat-php.pot` which you can then use as basis to create a new language file in `YOUR_LANG_CODE/LC_MESSAGES/le-chat-php.po` and edit it with a translation program, such as [Poedit](https://poedit.net/). +Once you are done, you can open a pull request, or [email me](mailto:daniel@danwin1210.de), to include the translation. Regex: ------ diff --git a/chat.php b/chat.php index d555fc1..c44576e 100644 --- a/chat.php +++ b/chat.php @@ -33,13 +33,31 @@ */ // initialize and load variables/configuration +const LANGUAGES = [ + 'ar' => ['name' => 'العربية', 'locale' => 'ar', 'dir' => 'rtl'], + 'bg' => ['name' => 'Български', 'locale' => 'bg_BG', 'dir' => 'ltr'], + 'cs' => ['name' => 'čeština', 'locale' => 'cs_CZ', 'dir' => 'ltr'], + 'de' => ['name' => 'Deutsch', 'locale' => 'de_DE', 'dir' => 'ltr'], + 'en' => ['name' => 'English', 'locale' => 'en_GB', 'dir' => 'ltr'], + 'es' => ['name' => 'Español', 'locale' => 'es_ES', 'dir' => 'ltr'], + 'fi' => ['name' => 'Suomi', 'locale' => 'fi_FI', 'dir' => 'ltr'], + 'fr' => ['name' => 'Français', 'locale' => 'fr_FR', 'dir' => 'ltr'], + 'id' => ['name' => 'Bahasa Indonesia', 'locale' => 'id_ID', 'dir' => 'ltr'], + 'it' => ['name' => 'Italiano', 'locale' => 'it_IT', 'dir' => 'ltr'], + 'pt' => ['name' => 'Português', 'locale' => 'pt_PT', 'dir' => 'ltr'], + 'ru' => ['name' => 'Русский', 'locale' => 'ru_RU', 'dir' => 'ltr'], + 'tr' => ['name' => 'Türkçe', 'locale' => 'tr_TR', 'dir' => 'ltr'], + 'uk' => ['name' => 'Українська', 'locale' => 'uk_UA', 'dir' => 'ltr'], + 'zh-Hans' => ['name' => '简体中文', 'locale' => 'zh_CN', 'dir' => 'ltr'], + 'zh-Hant' => ['name' => '正體中文', 'locale' => 'zh_TW', 'dir' => 'ltr'], +]; load_config(); -$I=[];// Translations -$L=[];// Languages $U=[];// This user data $db = null;// Database connection $memcached = null;// Memcached connection $language = LANG;// user selected language +$locale = LANGUAGES[LANG]['locale'];// user selected locale +$dir = LANGUAGES[LANG]['dir'];// user selected language direction $scripts = []; //js enhancements $styles = []; //css styles $session = $_REQUEST['session'] ?? ''; //requested session @@ -239,13 +257,104 @@ function route_setup(): void if(!valid_admin()){ send_alogin(); } - $C['bool_settings']=['suguests', 'imgembed', 'timestamps', 'trackip', 'memkick', 'memkickalways', 'forceredirect', 'incognito', 'sendmail', 'modfallback', 'disablepm', 'eninbox', 'enablegreeting', 'sortupdown', 'hidechatters', 'personalnotes', 'publicnotes', 'filtermodkick', 'namedoers', 'hide_reload_post_box', 'hide_reload_messages', 'hide_profile', 'hide_admin', 'hide_notes', 'hide_clone', 'hide_rearrange', 'hide_help', 'postbox_delete_globally', 'allow_js']; - $C['colour_settings']=['colbg', 'coltxt']; - $C['msg_settings']=['msgenter', 'msgexit', 'msgmemreg', 'msgsureg', 'msgkick', 'msgmultikick', 'msgallkick', 'msgclean', 'msgsendall', 'msgsendmem', 'msgsendmod', 'msgsendadm', 'msgsendprv', 'msgattache']; - $C['number_settings']=['memberexpire', 'guestexpire', 'kickpenalty', 'entrywait', 'captchatime', 'messageexpire', 'messagelimit', 'maxmessage', 'maxname', 'minpass', 'defaultrefresh', 'numnotes', 'maxuploadsize', 'enfileupload', 'max_refresh_rate', 'min_refresh_rate']; - $C['textarea_settings']=['rulestxt', 'css', 'disabletext']; - $C['text_settings']=['dateformat', 'captchachars', 'redirect', 'chatname', 'mailsender', 'mailreceiver', 'nickregex', 'passregex', 'externalcss', 'metadescription', 'sysmessagetxt']; - $C['settings']=array_merge(['guestaccess', 'englobalpass', 'globalpass', 'captcha', 'dismemcaptcha', 'topic', 'guestreg', 'defaulttz'], $C['bool_settings'], $C['colour_settings'], $C['msg_settings'], $C['number_settings'], $C['textarea_settings'], $C['text_settings']); // All settings in the database + $C['bool_settings']=[ + 'suguests' => _('Enable applicants'), + 'imgembed' => _('Embed images'), + 'timestamps' => _('Show Timestamps'), + 'trackip' => _('Show session-IP'), + 'memkick' => _('Members can kick, if no moderator is present'), + 'memkickalways' => _('Members can always kick'), + 'forceredirect' => _('Force redirection'), + 'incognito' => _('Incognito mode'), + 'sendmail' => _('Send mail on new public message'), + 'modfallback' => _('Fallback to waiting room, if no moderator is present to approve guests'), + 'disablepm' => _('Disable private messages'), + 'eninbox' => _('Enable offline inbox'), + 'enablegreeting' => _('Show a greeting message before showing the messages'), + 'sortupdown' => _('Sort messages from top to bottom'), + 'hidechatters' => _('Hide list of chatters'), + 'personalnotes' => _('Personal notes'), + 'publicnotes' => _('Public notes'), + 'filtermodkick' => _('Apply kick filter on moderators'), + 'namedoers' => _('Show who kicks people or purges all messages.'), + 'hide_reload_post_box' => _('Hide reload post box button'), + 'hide_reload_messages' => _('Hide reload messages button'), + 'hide_profile' => _('Hide profile button'), + 'hide_admin' => _('Hide admin button'), + 'hide_notes' => _('Hide notes button'), + 'hide_clone' => _('Hide clone button'), + 'hide_rearrange' => _('Hide rearrange button'), + 'hide_help' => _('Hide help button'), + 'postbox_delete_globally' => _('Apply postbox delete button globally'), + 'allow_js' => _('Allow enhancing functionality with JavaScript'), + ]; + $C['colour_settings']=[ + 'colbg' => _('Background colour'), + 'coltxt' => _('Font colour'), + ]; + $C['msg_settings']=[ + 'msgenter' => _('Entrance'), + 'msgexit' => _('Leaving'), + 'msgmemreg' => _('Member registered'), + 'msgsureg' => _('Applicant registered'), + 'msgkick' => _('Kicked'), + 'msgmultikick' => _('Multiple kicked'), + 'msgallkick' => _('All kicked'), + 'msgclean' => _('Room cleaned'), + 'msgsendall' => _('Message to all'), + 'msgsendmem' => _('Message to members only'), + 'msgsendmod' => _('Message to staff only'), + 'msgsendadm' => _('Message to admins only'), + 'msgsendprv' => _('Private message'), + 'msgattache' => _('Attachement'), + ]; + $C['number_settings']=[ + 'memberexpire' => _('Member timeout (minutes)'), + 'guestexpire' => _('Guest timeout (minutes)'), + 'kickpenalty' => _('Kick penalty (minutes)'), + 'entrywait' => _('Waiting room time (seconds)'), + 'captchatime' => _('Captcha timeout (seconds)'), + 'messageexpire' => _('Message timeout (minutes)'), + 'messagelimit' => _('Message limit (public)'), + 'maxmessage' => _('Maximal message length'), + 'maxname' => _('Maximal nickname length'), + 'minpass' => _('Minimal password length'), + 'defaultrefresh' => _('Default message reload time (seconds)'), + 'numnotes' => _('Number of notes revisions to keep'), + 'maxuploadsize' => _('Maximum upload size in KB'), + 'enfileupload' => _('Enable file uploads'), + 'max_refresh_rate' => _('Lowest refresh rate'), + 'min_refresh_rate' => _('Highest refresh rate'), + ]; + $C['textarea_settings']=[ + 'rulestxt' => _('Rules (html)'), + 'css' => _('CSS Style'), + 'disabletext' => _('Chat disabled message (html)'), + ]; + $C['text_settings']=[ + 'dateformat' => _('Date formating'), + 'captchachars' => _('Characters used in Captcha'), + 'redirect' => _('Custom redirection script'), + 'chatname' => _('Chat name'), + 'mailsender' => _('Send mail using this address'), + 'mailreceiver' => _('Send mail to this address'), + 'nickregex' => _('Nickname regex'), + 'passregex' => _('Password regex'), + 'externalcss' => _('Link to external CSS file (on your own server)'), + 'metadescription' => _('Meta description (best 50 - 160 characters for SEO)'), + 'sysmessagetxt' => _('Prepend this text to system messages'), + ]; + $extra_settings=[ + 'guestaccess' => _('Change Guestaccess'), + 'englobalpass' => _('Enable global Password'), + 'globalpass' => _('Global Password:'), + 'captcha' => _('Captcha'), + 'dismemcaptcha' => _('Only for guests'), + 'topic' => _('Topic'), + 'guestreg' => _('Let guests register themselves'), + 'defaulttz' => _('Default time zone'), + ]; + $C['settings']=array_keys(array_merge($extra_settings, $C['bool_settings'], $C['colour_settings'], $C['msg_settings'], $C['number_settings'], $C['textarea_settings'], $C['text_settings'])); // All settings in the database if(!isset($_POST['do'])){ }elseif($_POST['do']==='save'){ save_setup($C); @@ -444,19 +553,19 @@ function thr(): void function print_start(string $class='', int $ref=0, string $url=''): void { - global $I, $language; + global $language, $dir; prepare_stylesheets($class); send_headers(); if(!empty($url)){ $url=str_replace('&', '&', $url);// Don't escape "&" in URLs here, it breaks some (older) browsers and js refresh! header("Refresh: $ref; URL=$url"); } - echo ''.meta_html(); + echo ''.meta_html(); if(!empty($url)){ echo ""; } if($class==='init'){ - echo "$I[init]"; + echo ''._('Initial Setup').''; }else{ echo ''.get_setting('chatname').''; } @@ -470,43 +579,42 @@ function print_start(string $class='', int $ref=0, string $url=''): void function send_redirect(string $url): void { - global $I; $url=trim(htmlspecialchars_decode(rawurldecode($url))); preg_match('~^(.*)://~u', $url, $match); $url=preg_replace('~^(.*)://~u', '', $url); $escaped=htmlspecialchars($url); if(isset($match[1]) && ($match[1]==='http' || $match[1]==='https')){ print_start('redirect', 0, $match[0].$escaped); - echo "

$I[redirectto] $match[0]$escaped.

"; + echo '

'.sprintf(_('Redirecting to: %s'), "$match[0]$escaped").'

'; }else{ print_start('redirect'); if(!isset($match[0])){ $match[0]=''; } if(preg_match('~^(javascript|blob|data):~', $url)){ - echo "

$I[dangerousnonhttp] $match[0]$escaped

"; + echo '

'.sprintf(_('Dangerous non-http link requested, copy paste this link if you are really sure: %s'), "$match[0]$escaped").'

'; } else { - echo "

$I[nonhttp] $match[0]$escaped.

"; + echo '

'.sprintf(_('Non-http link requested: %s'), "$match[0]$escaped").'

'; } - echo "

$I[httpredir] http://$escaped.

"; + echo '

'.sprintf(_("If it's not working, try this one: %s"), "http://$escaped").'

'; } print_end(); } function send_access_denied(): void { - global $I, $U; + global $U; http_response_code(403); print_start('access_denied'); - echo "

$I[accessdenied]

".sprintf($I['loggedinas'], style_this(htmlspecialchars($U['nickname']), $U['style'])).'
'; + echo '

'._('Access denied').'

'.sprintf(_("You are logged in as %s and don't have access to this section."), style_this(htmlspecialchars($U['nickname']), $U['style'])).'
'; echo form('logout'); - echo submit($I['logout'], 'id="exitbutton"').""; + echo submit(_('Logout'), 'id="exitbutton"').""; print_end(); } function send_captcha(): void { - global $I, $db, $memcached; + global $db, $memcached; $difficulty=(int) get_setting('captcha'); if($difficulty===0 || !extension_loaded('gd')){ return; @@ -525,7 +633,7 @@ function send_captcha(): void $stmt=$db->prepare('INSERT INTO ' . PREFIX . 'captcha (id, time, code) VALUES (?, ?, ?);'); $stmt->execute([$randid, $time, $code]); } - echo "$I[copy]
"; + echo ''._('Copy:').'
'; if($difficulty===1){ $im=imagecreatetruecolor(55, 24); $bg=imagecolorallocate($im, 0, 0, 0); @@ -611,107 +719,107 @@ function send_captcha(): void function send_setup(array $C): void { - global $I, $U; + global $U; print_start('setup'); - echo "

$I[setup]

".form('setup', 'save'); + echo '

'._('Chat Setup').'

'.form('setup', 'save'); echo ''; thr(); $ga=(int) get_setting('guestaccess'); - echo "'; thr(); } echo "
'; thr(); $englobal=(int) get_setting('englobalpass'); - echo "'; thr(); if(get_setting('suguests')){ - echo "'; thr(); } if($U['status']>=7){ - echo "'; thr(); - echo "'; thr(); - echo "'; thr(); - echo "
$I[guestacc]"; + echo '
'._('Change Guestaccess').''; echo '
'; thr(); $ga=(int) get_setting('guestreg'); - echo "'; thr(); - echo "
$I[globalloginpass]"; + echo '
'._('Global Password:').''; echo ''; echo ''; echo ''; echo '
 
'; thr(); - echo "'; + $views=['sessions' => _('View active sessions'), 'filter' => _('Filter'), 'linkfilter' => _('Linkfilter')]; + foreach($views as $view => $title){ thr(); - echo "'; } thr(); - echo "
$I[guestreg]"; + echo '
'._('Let guests register themselves').''; echo '
'; - foreach($C['text_settings'] as $setting){ + foreach($C['text_settings'] as $setting => $title){ thr(); - echo "'; thr(); - echo "
$I[sysmessages]"; + echo '
'._('System messages').''; echo ''; - foreach($C['msg_settings'] as $setting){ - echo "'; + foreach($C['msg_settings'] as $setting => $title){ + echo "'; } echo '
 $I[$setting] 
 $title 
'; } - foreach($C['colour_settings'] as $setting){ + foreach($C['colour_settings'] as $setting => $title){ thr(); - echo "'; thr(); - echo '
".$I[$setting].''; + echo "
".$title.''; echo "'; echo '
'; } thr(); - echo "
".$I[$setting].''; + echo "
".$title.''; echo "'; echo '
'; thr(); - echo "'; } thr(); - echo '"; + echo '"; echo '
$I[captcha]"; + echo '
'._('Captcha').''; echo ''; if(!extension_loaded('gd')){ - echo ""; + echo ''; }else{ echo ''; } echo '
$I[gdextrequired]
'.sprintf(_('The %s extension of PHP is required for this feature. Please install it first.'), 'gd').'
'; - foreach($C['textarea_settings'] as $setting){ + foreach($C['textarea_settings'] as $setting => $title){ thr(); - echo "'; thr(); echo ''; + echo '
$I[defaulttz]"; - echo "
'._('Default time zone').''; + echo ''; echo '
'; } - foreach($C['number_settings'] as $setting){ + foreach($C['number_settings'] as $setting => $title){ thr(); - echo "
".$I[$setting].''; + echo "
".$title.''; echo "'; echo '
'; } - foreach($C['bool_settings'] as $setting){ + foreach($C['bool_settings'] as $setting => $title){ thr(); - echo "
".$I[$setting].''; + echo "
".$title.''; echo "'; echo '
'; } thr(); - echo '
".$I[$setting].''; + echo "
'; echo '
".$title.''; echo "
'.submit($I['apply']).'

'; + echo '
'.submit(_('Apply')).'

'; if($U['status']==8){ echo '
'; echo form('setup', 'backup'); - echo submit($I['backuprestore']).''; + echo submit(_('Backup and restore')).''; echo form('setup', 'destroy'); - echo submit($I['destroy'], 'class="delbutton"').'

'; + echo submit(_('Destroy chat'), 'class="delbutton"').'

'; } echo form_target('_parent', 'logout'); - echo submit($I['logout'], 'id="exitbutton"').''.credit(); + echo submit(_('Logout'), 'id="exitbutton"').''.credit(); print_end(); } @@ -880,7 +988,7 @@ function restore_backup(array $C): void function send_backup(array $C): void { - global $I, $db; + global $db; $code=[]; if($_POST['do']==='backup'){ if(isset($_POST['settings'])){ @@ -939,68 +1047,65 @@ function send_backup(array $C): void $chknotes=''; } print_start('backup'); - echo "

$I[backuprestore]

"; + echo '

'._('Backup and restore').'

'; thr(); if(!extension_loaded('json')){ - echo ""; + echo ''; }else{ echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo '
$I[jsonextrequired]
'.sprintf(_('The %s extension of PHP is required for this feature. Please install it first.'), 'json').'
'.form('setup', 'backup'); echo '
'; - echo ""; - echo ""; - echo ""; - echo ""; - echo ''.submit($I['backup']).'
'.submit(_('Backup')).'
'.form('setup', 'restore'); echo ''; - echo "'; - echo "
"; - echo ""; - echo ""; - echo ""; - echo ''.submit($I['restore']).'
'; + echo '
'; + echo ''; + echo ''; + echo ''; + echo ''.submit(_('Restore')).'
'; echo '
'.form('setup').submit($I['initgosetup'], 'class="backbutton"')."
'.form('setup').submit(_('Go to the Setup-Page'), 'class="backbutton"')."
'; print_end(); } function send_destroy_chat(): void { - global $I; print_start('destroy_chat'); - echo "
$I[confirm]
"; - echo form_target('_parent', 'setup', 'destroy').hidden('confirm', 'yes').submit($I['yes'], 'class="delbutton"').''; - echo form('setup').submit($I['no'], 'class="backbutton"').'
'; + echo '
'._('Are you sure?').'
'; + echo form_target('_parent', 'setup', 'destroy').hidden('confirm', 'yes').submit(_('Yes'), 'class="delbutton"').''; + echo form('setup').submit(_('No'), 'class="backbutton"').'
'; print_end(); } function send_delete_account(): void { - global $I; print_start('delete_account'); - echo "
$I[confirm]
"; - echo form('profile', 'delete').hidden('confirm', 'yes').submit($I['yes'], 'class="delbutton"').''; - echo form('profile').submit($I['no'], 'class="backbutton"').'
'; + echo '
'._('Are you sure?').'
'; + echo form('profile', 'delete').hidden('confirm', 'yes').submit(_('Yes'), 'class="delbutton"').''; + echo form('profile').submit(_('No'), 'class="backbutton"').'
'; print_end(); } function send_init(): void { - global $I, $L; print_start('init'); - echo "

$I[init]

"; - echo form('init')."

$I[sulogin]

"; - echo ""; - echo ""; - echo ""; - echo '
$I[sunick]
$I[supass]
$I[suconfirm]

'.submit($I['initbtn']).'
'; - echo "

$I[changelang]"; - foreach($L as $lang=>$name){ - echo " $name"; + echo '

'._('Initial Setup').'

'; + echo form('init').'

'._('Superadmin Login').'

'; + echo ''; + echo ''; + echo ''; + echo '
'._('Superadmin Nickname:').'
'._('Superadmin Password:').'
'._('Confirm Password:').'

'.submit(_('Initialise Chat')).'
'; + echo '

'._('Change language:'); + foreach(LANGUAGES as $lang=>$data){ + echo " $data[name]"; } echo '

'.credit(); print_end(); @@ -1008,25 +1113,23 @@ function send_init(): void function send_update(string $msg): void { - global $I; print_start('update'); - echo "

$I[dbupdate]


".form('setup').submit($I['initgosetup'])."$msg
".credit(); + echo '

'._('Database successfully updated!',).'


'.form('setup').submit(_('Go to the Setup-Page'))."$msg
".credit(); print_end(); } function send_alogin(): void { - global $I, $L; print_start('alogin'); echo form('setup').''; - echo ""; - echo ""; + echo ''; + echo ''; send_captcha(); - echo '
$I[nick]
$I[pass]
'._('Nickname:').'
'._('Password:').'
'.submit($I['login']).'
'; - echo '
'.$I['forgotlogin'].'
'; - echo "

$I[changelang]"; - foreach($L as $lang=>$name){ - echo " $name"; + echo '

'.submit(_('Login')).'
'; + echo '
'._('Forgot login?').'
'; + echo '

'._('Change language:'); + foreach(LANGUAGES as $lang=>$data){ + echo " $data[name]"; } echo '

'.credit(); print_end(); @@ -1034,9 +1137,9 @@ function send_alogin(): void function send_sa_password_reset(): void { - global $I, $L, $db; + global $db; print_start('sa_password_reset'); - echo "

$I[resetpassword]

"; + echo '

'._('Reset password').'

'; if(defined('RESET_SUPERADMIN_PASSWORD') && !empty(RESET_SUPERADMIN_PASSWORD)){ $stmt = $db->query('SELECT nickname FROM ' . PREFIX . 'members WHERE status = 8 LIMIT 1;'); if($user = $stmt->fetch(PDO::FETCH_ASSOC)){ @@ -1044,15 +1147,15 @@ function send_sa_password_reset(): void $mem_update->execute([password_hash(RESET_SUPERADMIN_PASSWORD, PASSWORD_DEFAULT), $user['nickname']]); $sess_delete = $db->prepare('DELETE FROM ' . PREFIX . 'sessions WHERE nickname = ?;'); $sess_delete->execute([$user['nickname']]); - printf("

$I[resetsucc]

", $user['nickname']); + printf('

'._('Successfully reset password for username %s. Please remove the password reset define from the script again.').'

', $user['nickname']); } } else { - echo "

$I[resetinstruction]

"; + echo '

'._("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');").'

'; } - echo "$I[backtosetup]"; - echo "

$I[changelang]"; - foreach($L as $lang=>$name){ - echo " $name"; + echo ''._('Go to the Setup-Page').''; + echo '

'._('Change language:'); + foreach(LANGUAGES as $lang=>$data){ + echo " $data[name]"; } echo '

'.credit(); print_end(); @@ -1060,11 +1163,11 @@ function send_sa_password_reset(): void function send_admin(string $arg): void { - global $I, $U, $db; + global $U, $db; $ga=(int) get_setting('guestaccess'); print_start('admin'); - $chlist="'; + $chlist.=''; $users=[]; $stmt=$db->query('SELECT nickname, style, status FROM ' . PREFIX . 'sessions WHERE entry!=0 AND status>0 ORDER BY LOWER(nickname);'); while($user=$stmt->fetch(PDO::FETCH_NUM)){ @@ -1076,50 +1179,50 @@ function send_admin(string $arg): void } } $chlist.=''; - echo "

$I[admfunc]

$arg"; + echo '

'._('Administrative functions')."

$arg
"; if($U['status']>=7){ thr(); - echo ''; + echo ''; } thr(); - echo "
'.form_target('view', 'setup').submit($I['initgosetup']).'
'.form_target('view', 'setup').submit(_('Go to the Setup-Page')).'
'; + echo submit(_('Clean'), 'class="delbutton"').'
$I[cleanmsgs]"; + echo '
'._('Clean messages').''; echo form('admin', 'clean'); echo '
  
  
'; - echo submit($I['clean'], 'class="delbutton"').'
'; + echo '
'.sprintf($I['kickchat'], get_setting('kickpenalty')).'
'; + echo '
'.sprintf(_('Kick Chatter (%d minutes)'), get_setting('kickpenalty')).'
'; echo form('admin', 'kick'); - echo ""; - echo "
$I[kickreason] 
$chlist"; - echo submit($I['kick']).'
'; + echo '
'._('Kickmessage:').' 
'.$chlist.''; + echo submit(_('Kick')).'
'; - $views=['sessions', 'filter', 'linkfilter']; - foreach($views as $view){ + echo submit(_('Logout')).'
$I[logoutinact]"; + echo '
'._('Logout inactive Chatter').''; echo form('admin', 'logout'); echo "
$chlist"; - echo submit($I['logout']).'
'; + echo submit(_('View')).'
".$I[$view].''; + echo "
".$title.''; echo form('admin', $view); - echo submit($I['view']).'
'; + echo submit(_('Change')).'
$I[topic]"; + echo '
'._('Topic').''; echo form('admin', 'topic'); echo '
'; - echo submit($I['change']).'
'; + echo '
$I[guestacc]"; + echo '"
'._('Change Guestaccess').'"'; echo form('admin', 'guestaccess'); echo ''; echo '
'.submit($I['change']).'
'.submit(_('Change')).'
$I[addsuguest]"; + echo '
'; + echo '
'._('Register applicant').''; echo form('admin', 'superguest'); - echo "
'.submit($I['register']).'
'.submit(_('Register')).'
$I[admmembers]"; + echo '
'; + echo '
'._('Members').''; echo form('admin', 'status'); - echo "
'.submit($I['change']).'
'.submit(_('Change')).'
$I[passreset]"; + echo '
'; + echo '
'._('Reset password').''; echo form('admin', 'passreset'); - echo "
'.submit($I['change']).'
'.submit(_('Change')).'
$I[regguest]"; + echo '
'; + echo '
'._('Register Guest').''; echo form('admin', 'register'); - echo "
'.submit($I['register']).'
'.submit(_('Register')).'
'; + echo '
$I[regmem]
"; + echo '
'._('Register new Member').'
'; echo form('admin', 'regnew'); - echo ""; - echo "
$I[nick]  
$I[pass] "; - echo submit($I['register']).'
'; + echo '
'._('Nickname:').'  
'._('Password:').' '; + echo submit(_('Register')).'

"; - echo form('admin').submit($I['reload']).''; + echo form('admin').submit(_('Reload')).''; print_end(); } function send_sessions(): void { - global $I, $U, $db; + global $U, $db; $stmt=$db->prepare('SELECT nickname, style, lastpost, status, useragent, ip FROM ' . PREFIX . 'sessions WHERE entry!=0 AND (incognito=0 OR statusexecute([$U['status'], $U['nickname']]); if(!$lines=$stmt->fetchAll(PDO::FETCH_ASSOC)){ $lines=[]; } print_start('sessions'); - echo "

$I[sessact]

"; - echo ""; + echo '

'._('Active Sessions').'

$I[sessnick]$I[sesstimeout]$I[sessua]
'; + echo ''; $trackip=(bool) get_setting('trackip'); $memexpire=(int) get_setting('memberexpire'); $guestexpire=(int) get_setting('guestexpire'); - if($trackip) echo ""; - echo ""; + if($trackip) echo ''; + echo ''; foreach($lines as $temp){ if($temp['status']==0){ $s=' (K)'; @@ -1282,12 +1385,12 @@ function send_sessions(): void if($temp['status']!=0){ echo ''; } echo '
'._('Nickname').''._('Timeout in').''._('User-Agent').'$I[sesip]$I[actions]
'._('IP-Address').''._('Actions').'
'; echo form('admin', 'sessions'); - echo hidden('kick', '1').hidden('nick', htmlspecialchars($temp['nickname'])).submit($I['kick']).''; + echo hidden('kick', '1').hidden('nick', htmlspecialchars($temp['nickname'])).submit(_('Kick')).''; echo ''; echo form('admin', 'sessions'); - echo hidden('logout', '1').hidden('nick', htmlspecialchars($temp['nickname'])).submit($temp['status']==0 ? $I['unban'] : $I['logout']).''; + echo hidden('logout', '1').hidden('nick', htmlspecialchars($temp['nickname'])).submit($temp['status']==0 ? _('Unban') : _('Logout')).''; echo '
'; }else{ echo '-'; @@ -1302,16 +1405,15 @@ function send_sessions(): void } } echo "
"; - echo form('admin', 'sessions').submit($I['reload']).''; + echo form('admin', 'sessions').submit(_('Reload')).''; print_end(); } function check_filter_match(int &$reg) : string { - global $I; $_POST['match']=htmlspecialchars($_POST['match']); if(isset($_POST['regex']) && $_POST['regex']==1){ if(!valid_regex($_POST['match'])){ - return "$I[incorregex]
$I[prevmatch]: " . htmlspecialchars($_POST['match']); + return _('Incorrect regular expression!').'
'.sprintf(_('Your match was as follows: %s'), htmlspecialchars($_POST['match'])); } $reg=1; }else{ @@ -1319,7 +1421,7 @@ function check_filter_match(int &$reg) : string { $reg=0; } if(mb_strlen($_POST['match'])>255){ - return "$I[matchtoolong]
$I[prevmatch]: " . htmlspecialchars($_POST['match']); + return _('Your match was too long. You can use max. 255 characters. Try splitting it up.')."
".sprintf(_('Your match was as follows: %s'), htmlspecialchars($_POST['match'])); } return ''; } @@ -1431,19 +1533,19 @@ function get_linkfilters() : array { function send_filter(string $arg=''): void { - global $I, $U; + global $U; print_start('filter'); - echo "

$I[filter]

$arg"; + echo '

'._('Filter')."

$arg
"; thr(); echo ''; $filters=get_filters(); foreach($filters as $filter){ @@ -1470,42 +1572,42 @@ function send_filter(string $arg=''): void } echo ''; + echo '
'; - echo ""; - echo ""; - echo ""; - echo ""; - echo ""; - echo ""; - echo ""; - echo ""; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; echo '
$I[fid]$I[match]$I[replace]$I[allowpm]$I[regex]$I[kick]$I[cs]$I[apply]'._('Filter ID:').''._('Match').''._('Replace').''._('Allow in PM').''._('Regex').''._('Kick').''._('Case sensitive').''._('Apply').'
'; echo form('admin', 'filter').hidden('id', $filter['id']); - echo ""; - echo ""; - echo '"; - echo ""; - echo ""; - echo ""; - echo ""; - echo '
$I[filter] $filter[id]:'.submit($I['change']).'
"; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo '
'._('Filter')." $filter[id]:'.submit(_('Change')).'
'; } echo ''; echo form('admin', 'filter').hidden('id', '+'); - echo ""; - echo ""; - echo ""; - echo ""; - echo ""; - echo ""; - echo ""; - echo '
$I[newfilter]'.submit($I['add']).'
'; - echo "
"; - echo form('admin', 'filter').submit($I['reload']).''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo '
'._('New filter:').''.submit(_('Add')).'
'; + echo '
'; + echo form('admin', 'filter').submit(_('Reload')).''; print_end(); } function send_linkfilter(string $arg=''): void { - global $I, $U; + global $U; print_start('linkfilter'); - echo "

$I[linkfilter]

$arg"; + echo '

'._('Linkfilter')."

$arg
"; thr(); echo ''; $filters=get_linkfilters(); foreach($filters as $filter){ @@ -1517,30 +1619,30 @@ function send_linkfilter(string $arg=''): void } echo ''; + echo '
'; - echo ""; - echo ""; - echo ""; - echo ""; - echo ""; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; echo '
$I[fid]$I[match]$I[replace]$I[regex]$I[apply]'._('Filter ID:').''._('Match').''._('Replace').''._('Regex').''._('Apply').'
'; echo form('admin', 'linkfilter').hidden('id', $filter['id']); - echo ""; - echo ""; - echo '"; - echo ""; - echo '
$I[filter] $filter[id]:'.submit($I['change']).'
"; + echo ''; + echo ''; + echo ''; + echo '
'._('Filter')." $filter[id]:'.submit(_('Change')).'
'; } echo ''; echo form('admin', 'linkfilter').hidden('id', '+'); - echo ""; - echo ""; - echo ""; - echo ""; - echo '
$I[newfilter]'.submit($I['add']).'
'; - echo "
"; - echo form('admin', 'linkfilter').submit($I['reload']).''; + echo ''; + echo ''; + echo ''; + echo ''; + echo '
'._('New filter:').''.submit(_('Add')).'
'; + echo '
'; + echo form('admin', 'linkfilter').submit(_('Reload')).''; print_end(); } function send_frameset(): void { - global $U, $db, $language; + global $U, $db, $language, $dir; prepare_stylesheets('frameset'); send_headers(); - echo ''.meta_html(); + echo ''.meta_html(); echo ''.get_setting('chatname').''; print_stylesheet('frameset'); echo ''; @@ -1586,13 +1688,12 @@ function send_frameset(): void } function noframe_html() : string { - global $I; - return "$I[noframes]".form_target('_parent', '').submit($I['backtologin'], 'class="backbutton"').''; + return _('This chat uses frames. Please enable frames in your browser or use a suitable one!').form_target('_parent', '').submit(_('Back to the login page.'), 'class="backbutton"').''; } function send_messages(): void { - global $I, $U, $language; + global $U, $language; if($U['nocache']){ $nocache='&nc='.substr(time(), -6); }else{ @@ -1605,8 +1706,8 @@ function send_messages(): void } print_start('messages', (int) $U['refresh'], "$_SERVER[SCRIPT_NAME]?action=view&session=$U[session]&lang=$language$nocache$sort"); echo ''; - echo "$I[bottom]"; - echo "

$I[manualrefresh]
".form('view').submit($I['reload']).'
'; + echo ''._('Bottom').''; + echo '

'._('Manual refresh required').'
'.form('view').submit(_('Reload')).'
'; if(!$U['sortupdown']){ echo '
'; echo get_setting('topic'); @@ -1622,15 +1723,15 @@ function send_messages(): void echo get_setting('topic'); echo '
'; } - echo "$I[top]"; + echo ''._('Top').''; print_end(); } function send_inbox(): void { - global $I, $U, $db; + global $U, $db; print_start('inbox'); - echo form('inbox', 'clean').submit($I['delselmes'], 'class="delbutton"').'

'; + echo form('inbox', 'clean').submit(_('Delete selected messages'), 'class="delbutton"').'

'; $dateformat=get_setting('dateformat'); if(!$U['embed'] && get_setting('imgembed')){ $removeEmbed=true; @@ -1657,43 +1758,43 @@ function send_inbox(): void } echo " $message[text]"; } - echo '
'.form('view').submit($I['backtochat'], 'class="backbutton"').''; + echo '
'.form('view').submit(_('Back to the chat.'), 'class="backbutton"').''; print_end(); } function send_notes(int $type): void { - global $I, $U, $db; + global $U, $db; print_start('notes'); $personalnotes=(bool) get_setting('personalnotes'); $publicnotes=(bool) get_setting('publicnotes'); if($U['status']>=3 && ($personalnotes || $publicnotes)){ echo ''; if($U['status']>6){ - echo ''; + echo ''; } if($U['status']>=5){ - echo ''; + echo ''; } if($personalnotes){ - echo ''; + echo ''; } if($publicnotes){ - echo ''; + echo ''; } echo '
'.form_target('view', 'notes', 'admin').submit($I['admnotes']).''.form_target('view', 'notes', 'admin').submit(_('Admin notes')).''.form_target('view', 'notes', 'staff').submit($I['staffnotes']).''.form_target('view', 'notes', 'staff').submit(_('Staff notes')).''.form_target('view', 'notes').submit($I['personalnotes']).''.form_target('view', 'notes').submit(_('Personal notes')).''.form_target('view', 'notes', 'public').submit($I['publicnotes']).''.form_target('view', 'notes', 'public').submit(_('Public notes')).'
'; } if($type===1){ - echo "

$I[staffnotes]

"; + echo '

'._('Staff notes').'

'; $hiddendo=hidden('do', 'staff'); }elseif($type===0){ - echo "

$I[adminnotes]

"; + echo '

'._('Admin notes').'

'; $hiddendo=hidden('do', 'admin'); }elseif($type===2){ - echo "

$I[personalnotes]

"; + echo '

'._('Personal notes').'

'; $hiddendo=''; }elseif($type===3){ - echo "

$I[publicnotes]

"; + echo '

'._('Public notes').'

'; $hiddendo=hidden('do', 'public'); } if(isset($_POST['text'])){ @@ -1707,7 +1808,7 @@ function send_notes(int $type): void $time=time(); $stmt=$db->prepare('INSERT INTO ' . PREFIX . 'notes (type, lastedited, editedby, text) VALUES (?, ?, ?, ?);'); $stmt->execute([$type, $time, $U['nickname'], $_POST['text']]); - echo "$I[notessaved] "; + echo ''._('Notes saved!').' '; } $dateformat=get_setting('dateformat'); if(($type!==2) && ($type !==3)){ @@ -1731,7 +1832,7 @@ function send_notes(int $type): void $stmt->execute([$type, $U['nickname']]); } if($note=$stmt->fetch(PDO::FETCH_ASSOC)){ - printf($I['lastedited'], htmlspecialchars($note['editedby']), date($dateformat, $note['lastedited'])); + printf(_('Last edited by %1$s at %2$s'), htmlspecialchars($note['editedby']), date($dateformat, $note['lastedited'])); }else{ $note['text']=''; } @@ -1744,16 +1845,16 @@ function send_notes(int $type): void } echo "

".form('notes'); echo "$hiddendo
'; - echo submit($I['savenotes']).'
'; + echo submit(_('Save notes')).'
'; if($num[0]>1){ - echo "
"; + echo '
$I[revisions]
'; if($revision<$num[0]-1){ echo ''; + echo $hiddendo.submit(_('Older')).''; } if($revision>0){ echo ''; + echo $hiddendo.submit(_('Newer')).''; } echo '
'._('Revisions:').''.form('notes').hidden('revision', $revision+1); - echo $hiddendo.submit($I['older']).''.form('notes').hidden('revision', $revision-1); - echo $hiddendo.submit($I['newer']).'
'; } @@ -1762,35 +1863,35 @@ function send_notes(int $type): void function send_approve_waiting(): void { - global $I, $db; + global $db; print_start('approve_waiting'); - echo "

$I[waitingroom]

"; + echo '

'._('Waiting room').'

'; $result=$db->query('SELECT * FROM ' . PREFIX . 'sessions WHERE entry=0 AND status=1 ORDER BY id LIMIT 100;'); if($tmp=$result->fetchAll(PDO::FETCH_ASSOC)){ echo form('admin', 'approve'); echo ''; - echo ""; + echo ''; foreach($tmp as $temp){ echo ''.hidden('alls[]', htmlspecialchars($temp['nickname'])); echo ''; echo ""; } - echo "
$I[sessnick]$I[sessua]
'._('Nickname').''._('User-Agent').'
$temp[useragent]

"; - echo ""; - echo ""; - echo ""; - echo '
$I[denymessage]
'.submit($I['butallowdeny']).'
'; + echo '
'; + echo ''; + echo ''; + echo ''; + echo '
'._('Send message to denied:').'
'.submit(_('Submit')).'
'; }else{ - echo "$I[waitempty]
"; + echo _('No more entry requests to approve.').'
'; } - echo '
'.form('view').submit($I['backtochat'], 'class="backbutton"').''; + echo '
'.form('view').submit(_('Back to the chat.'), 'class="backbutton"').''; print_end(); } function send_waiting_room(): void { - global $I, $U, $db, $language; + global $U, $db, $language; $ga=(int) get_setting('guestaccess'); if($ga===3 && (get_count_mods()>0 || !get_setting('modfallback'))){ $wait=false; @@ -1810,22 +1911,22 @@ function send_waiting_room(): void }else{ $refresh=(int) get_setting('defaultrefresh'); print_start('waitingroom', $refresh, "$_SERVER[SCRIPT_NAME]?action=wait&session=$U[session]&lang=$language&nc=".substr(time(),-6)); - echo "

$I[waitingroom]

"; + echo '

'._('Waiting room').'

'; if($wait){ - printf($I['waittext'], style_this(htmlspecialchars($U['nickname']), $U['style']), $timeleft); + printf(_('Welcome %1$s, your login has been delayed, you can access the chat in %2$d seconds.'), style_this(htmlspecialchars($U['nickname']), $U['style']), $timeleft); }else{ - printf($I['admwaittext'], style_this(htmlspecialchars($U['nickname']), $U['style'])); + printf(_('Welcome %1$s, your login has been delayed, you can access the chat as soon, as a moderator lets you in.'), style_this(htmlspecialchars($U['nickname']), $U['style'])); } echo '


'; - printf($I['waitreload'], $refresh); + printf(_("If this page doesn't refresh every %d seconds, use the button below to reload it manually!"), $refresh); echo '



'; echo '
'.form('wait'); - echo submit($I['reload']).'
'; + echo submit(_('Reload')).'
'; echo form('logout'); - echo submit($I['exit'], 'id="exitbutton"').''; + echo submit(_('Exit Chat'), 'id="exitbutton"').''; $rulestxt=get_setting('rulestxt'); if(!empty($rulestxt)){ - echo "

$I[rules]

$rulestxt
"; + echo '

'._('Rules')."

$rulestxt
"; } print_end(); } @@ -1833,40 +1934,39 @@ function send_waiting_room(): void function send_choose_messages(): void { - global $I, $U; + global $U; print_start('choose_messages'); echo form('admin', 'clean'); - echo hidden('what', 'selected').submit($I['delselmes'], 'class="delbutton"').'

'; + echo hidden('what', 'selected').submit(_('Delete selected messages'), 'class="delbutton"').'

'; print_messages((int) $U['status']); - echo '
'.submit($I['delselmes'], 'class="delbutton"').""; + echo '
'.submit(_('Delete selected messages'), 'class="delbutton"').""; print_end(); } function send_del_confirm(): void { - global $I; print_start('del_confirm'); - echo "
$I[confirm]
".form('delete'); + echo '
'._('Are you sure?').'
'.form('delete'); if(isset($_POST['multi'])){ echo hidden('multi', 'on'); } if(isset($_POST['sendto'])){ echo hidden('sendto', $_POST['sendto']); } - echo hidden('confirm', 'yes').hidden('what', $_POST['what']).submit($I['yes'], 'class="delbutton"').''.form('post'); + echo hidden('confirm', 'yes').hidden('what', $_POST['what']).submit(_('Yes'), 'class="delbutton"').''.form('post'); if(isset($_POST['multi'])){ echo hidden('multi', 'on'); } if(isset($_POST['sendto'])){ echo hidden('sendto', $_POST['sendto']); } - echo submit($I['no'], 'class="backbutton"').'
'; + echo submit(_('No'), 'class="backbutton"').'
'; print_end(); } function send_post(string $rejected=''): void { - global $I, $U, $db; + global $U, $db; print_start('post'); if(!isset($_REQUEST['sendto'])){ $_REQUEST['sendto']=''; @@ -1882,32 +1982,32 @@ function send_post(string $rejected=''): void }else{ echo ""; } - echo ''.submit($I['talkto']).''; echo '"; + echo 'value="s *">-'._('All chatters').'-'; if($U['status']>=3){ echo '"; + echo 'value="s ?">-'._('Members only').'-'; } if($U['status']>=5){ echo '"; + echo 'value="s %">-'._('Staff only').'-'; } if($U['status']>=6){ echo '"; + echo 'value="s _">-'._('Admin only').'-'; } $disablepm=(bool) get_setting('disablepm'); if(!$disablepm){ @@ -1916,7 +2016,7 @@ function send_post(string $rejected=''): void $stmt->execute([$U['status'], $U['nickname'], $U['nickname']]); while($tmp=$stmt->fetch(PDO::FETCH_ASSOC)){ if($tmp['offline']){ - $users[]=["$tmp[nickname] $I[offline]", $tmp['style'], $tmp['nickname']]; + $users[]=["$tmp[nickname] "._('(offline)'), $tmp['style'], $tmp['nickname']]; }else{ $users[]=[$tmp['nickname'], $tmp['style'], $tmp['nickname']]; } @@ -1936,27 +2036,27 @@ function send_post(string $rejected=''): void if(!$disablepm && ($U['status']>=5 || ($U['status']>=3 && (get_setting('memkickalways') || (get_count_mods()==0 && get_setting('memkick')))))){ echo ''; } - printf("", get_setting('maxuploadsize')); + printf('', get_setting('maxuploadsize')); } if(!$disablepm && ($U['status']>=5 || ($U['status']>=3 && (get_setting('memkickalways') || (get_count_mods()==0 && get_setting('memkick')))))){ - echo ""; - echo ""; + echo ''; + echo ''; } echo '
$I[maxsize]'.('Max %d KB').'
'; echo '
'.form('delete'); if(isset($_POST['multi'])){ echo hidden('multi', 'on'); } echo hidden('sendto', htmlspecialchars($_REQUEST['sendto'])).hidden('what', 'last'); - echo submit($I['dellast'], 'class="delbutton"').''.form('delete'); + echo submit(_('Delete last message'), 'class="delbutton"').''.form('delete'); if(isset($_POST['multi'])){ echo hidden('multi', 'on'); } echo hidden('sendto', htmlspecialchars($_REQUEST['sendto'])).hidden('what', 'all'); - echo submit($I['delall'], 'class="delbutton"').''.form('post'); + echo submit(_('Delete all messages'), 'class="delbutton"').''.form('post'); if(isset($_POST['multi'])){ - echo submit($I['switchsingle']); + echo submit(_('Switch to single-line')); }else{ - echo hidden('multi', 'on').submit($I['switchmulti']); + echo hidden('multi', 'on').submit(_('Switch to multi-line')); } echo hidden('sendto', htmlspecialchars($_REQUEST['sendto'])).'
'; @@ -1965,48 +2065,49 @@ function send_post(string $rejected=''): void function send_greeting(): void { - global $I, $U, $language; + global $U, $language; print_start('greeting', (int) $U['refresh'], "$_SERVER[SCRIPT_NAME]?action=view&session=$U[session]&lang=$language"); - printf("

$I[greetingmsg]

", style_this(htmlspecialchars($U['nickname']), $U['style'])); - printf("
$I[entryhelp]", $U['refresh']); + printf('

'._('Welcome %s!').'

', style_this(htmlspecialchars($U['nickname']), $U['style'])); + printf('
'._('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.').'
', $U['refresh']); $rulestxt=get_setting('rulestxt'); if(!empty($rulestxt)){ - echo "

$I[rules]

$rulestxt
"; + echo '

'._('Rules')."

$rulestxt
"; } print_end(); } function send_help(): void { - global $I, $U; + global $U; print_start('help'); $rulestxt=get_setting('rulestxt'); if(!empty($rulestxt)){ - echo "

$I[rules]

$rulestxt

"; + echo '

'._('Rules')."

$rulestxt

"; } - echo "

$I[help]

$I[helpguest]"; + echo '

'._('Help').'

'; + echo _("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."); if(get_setting('imgembed')){ - echo "
$I[helpembed]"; + echo '
'._('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.'); } if($U['status']>=3){ - echo "
$I[helpmem]
"; + echo '
'._("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.").'
'; if($U['status']>=5){ - echo "
$I[helpmod]
"; + echo '
'._("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.").'
'; if($U['status']>=7){ - echo "
$I[helpadm]
"; + echo '
'._("Admins: You'll be furthermore able to register guests, edit members and register new nicknames.").'
'; } } } - echo '

'.form('view').submit($I['backtochat'], 'class="backbutton"').''.credit().'
'; + echo '

'.form('view').submit(_('Back to the chat.'), 'class="backbutton"').''.credit().'
'; print_end(); } function view_publicnotes(): void { - global $I, $db; + global $db; $dateformat = get_setting('dateformat'); print_start('publicnotes'); - echo "

$I[publicnotes]

"; + echo '

'._('Public notes').'

'; $query = $db->query('SELECT lastedited, editedby, text FROM ' . PREFIX . 'notes INNER JOIN (SELECT MAX(id) AS latest FROM ' . PREFIX . 'notes WHERE type=3 GROUP BY editedby) AS t ON t.latest = id;'); while($result = $query->fetch(PDO::FETCH_OBJ)){ if (!empty($result->text)) { @@ -2018,7 +2119,7 @@ function view_publicnotes(): void } } echo '


'; - printf($I['lastedited'], htmlspecialchars($result->editedby), date($dateformat, $result->lastedited)); + printf(_('Last edited by %1$s at %2$s'), htmlspecialchars($result->editedby), date($dateformat, $result->lastedited)); echo '
'; echo ''; echo '
'; @@ -2029,9 +2130,9 @@ function view_publicnotes(): void function send_profile(string $arg=''): void { - global $I, $L, $U, $db, $language; + global $U, $db, $language; print_start('profile'); - echo form('profile', 'save')."

$I[profile]

$arg"; + echo form('profile', 'save').'

'._('Your Profile')."

$arg
"; thr(); $ignored=[]; $stmt=$db->prepare('SELECT ign FROM ' . PREFIX . 'ignored WHERE ignby=? ORDER BY LOWER(ign);'); @@ -2040,16 +2141,16 @@ function send_profile(string $arg=''): void $ignored[]=htmlspecialchars($tmp['ign']); } if(count($ignored)>0){ - echo "
'; thr(); } - echo "
$I[unignore]"; - echo "
'._("Don't ignore anymore").''; + echo '
$I[ignore]"; - echo "
'._('Ignore').''; + echo '
'; thr(); preg_match('/#([0-9a-f]{6})/i', $U['style'], $matches); - echo "
'.sprintf($I['refreshrate'], $min_refresh_rate, $max_refresh_rate).''; + echo '
'.sprintf(_('Refresh rate (%1$d-%2$d seconds)'), $min_refresh_rate, $max_refresh_rate).''; echo '
"; thr(); - echo "
$I[fontcolour] ($I[viewexample])"; + echo '
'._('Font colour')." ("._('View examples').')'; echo "
"; thr(); if($U['status']>=3){ - echo "'; thr(); } - echo ''; + echo ''; thr(); - $bool_settings=['timestamps', 'nocache', 'sortupdown', 'hidechatters']; + $bool_settings=[ + 'timestamps' => _('Show Timestamps'), + 'nocache' => _('Autoscroll (for old browsers or top-to-bottom sort).'), + 'sortupdown' => _('Sort messages from top to bottom'), + 'hidechatters' => _('Hide list of chatters'), + ]; if(get_setting('imgembed')){ $bool_settings[]='embed'; } if($U['status']>=5 && get_setting('incognito')){ $bool_settings[]='incognito'; } - foreach($bool_settings as $setting){ - echo "'; thr(); } if($U['status']>=2 && get_setting('eninbox')){ - echo "'; + echo form_target('_self', 'login').submit(_('Dismiss')).''; print_end(); } } @@ -2627,13 +2730,13 @@ function approve_session(): void function check_login(): void { - global $I, $U; + global $U; $ga=(int) get_setting('guestaccess'); parse_sessions(); if(isset($U['session'])){ check_kicked(); }elseif(get_setting('englobalpass')==1 && (!isset($_POST['globalpass']) || $_POST['globalpass']!=get_setting('globalpass'))){ - send_error($I['wrongglobalpass']); + send_error(_('Wrong global Password!')); }elseif(!isset($_POST['nick']) || !isset($_POST['pass'])){ send_login(); }else{ @@ -2641,7 +2744,7 @@ function check_login(): void send_chat_disabled(); } if(!empty($_POST['regpass']) && $_POST['regpass']!==$_POST['pass']){ - send_error($I['noconfirm']); + send_error(_('Password confirmation does not match!')); } create_session(false, $_POST['nick'], $_POST['pass']); if(!empty($_POST['regpass'])){ @@ -2749,11 +2852,11 @@ function check_session(): void function check_expired(): void { - global $I, $U, $session; + global $U, $session; if(!isset($U['session'])){ setcookie(COOKIENAME, false); $session = ''; - send_error($I['expire']); + send_error(_('Invalid/expired session')); } } @@ -2765,21 +2868,21 @@ function get_count_mods() : int { function check_kicked(): void { - global $I, $U, $session; + global $U, $session; if($U['status']==0){ setcookie(COOKIENAME, false); $session = ''; - send_error("$I[kicked]
$U[kickmessage]"); + send_error(_('You have been kicked!')."
$U[kickmessage]"); } } function get_nowchatting(): void { - global $I, $db; + global $db; parse_sessions(); $stmt=$db->query('SELECT COUNT(*) FROM ' . PREFIX . 'sessions WHERE entry!=0 AND status>0 AND incognito=0;'); $count=$stmt->fetch(PDO::FETCH_NUM); - echo '
'.sprintf($I['curchat'], $count[0]).'
'; + echo '
'.sprintf(_('Currently %d chatter(s) in room:'), $count[0]).'
'; if(!get_setting('hidechatters')){ $stmt=$db->query('SELECT nickname, style FROM ' . PREFIX . 'sessions WHERE entry!=0 AND status>0 AND incognito=0 ORDER BY status DESC, lastpost DESC;'); while($user=$stmt->fetch(PDO::FETCH_NUM)){ @@ -2806,7 +2909,7 @@ function parse_sessions(): void // member handling function check_member(string $password) : bool { - global $I, $U, $db; + global $U, $db; $stmt=$db->prepare('SELECT * FROM ' . PREFIX . 'members WHERE nickname=?;'); $stmt->execute([$U['nickname']]); if($temp=$stmt->fetch(PDO::FETCH_ASSOC)){ @@ -2827,7 +2930,7 @@ function check_member(string $password) : bool { }else{ $stmt=$db->prepare('UPDATE ' . PREFIX . 'members SET loginfails=? WHERE nickname=?;'); $stmt->execute([$temp['loginfails']+1, $temp['nickname']]); - send_error("$I[regednick]
$I[wrongpass]"); + send_error(_('This nickname is a registered member.')."
"._('Wrong Password!')); } } return false; @@ -2850,11 +2953,11 @@ function delete_account(): void } function register_guest(int $status, string $nick) : string { - global $I, $U, $db; + global $U, $db; $stmt=$db->prepare('SELECT style FROM ' . PREFIX . 'members WHERE nickname=?'); $stmt->execute([$nick]); if($tmp=$stmt->fetch(PDO::FETCH_NUM)){ - return sprintf($I['alreadyreged'], style_this(htmlspecialchars($nick), $tmp[0])); + return sprintf(_('%s is already registered.'), style_this(htmlspecialchars($nick), $tmp[0])); } $stmt=$db->prepare('SELECT * FROM ' . PREFIX . 'sessions WHERE nickname=? AND status=1;'); $stmt->execute([$nick]); @@ -2863,7 +2966,7 @@ function register_guest(int $status, string $nick) : string { $stmt=$db->prepare('UPDATE ' . PREFIX . 'sessions SET status=? WHERE session=?;'); $stmt->execute([$reg['status'], $reg['session']]); }else{ - return sprintf($I['cantreg'], htmlspecialchars($nick)); + return sprintf(_("Can't register %s"), htmlspecialchars($nick)); } $stmt=$db->prepare('INSERT INTO ' . PREFIX . 'members (nickname, passhash, status, refresh, bgcolour, regedby, timestamps, embed, style, incognito, nocache, tz, eninbox, sortupdown, hidechatters, nocache_old) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?);'); $stmt->execute([$reg['nickname'], $reg['passhash'], $reg['status'], $reg['refresh'], $reg['bgcolour'], $U['nickname'], $reg['timestamps'], $reg['embed'], $reg['style'], $reg['incognito'], $reg['nocache'], $reg['tz'], $reg['eninbox'], $reg['sortupdown'], $reg['hidechatters'], $reg['nocache_old']]); @@ -2872,11 +2975,11 @@ function register_guest(int $status, string $nick) : string { }else{ add_system_message(sprintf(get_setting('msgsureg'), style_this(htmlspecialchars($reg['nickname']), $reg['style'])), $U['nickname']); } - return sprintf($I['successreg'], style_this(htmlspecialchars($reg['nickname']), $reg['style'])); + return sprintf(_('%s successfully registered.'), style_this(htmlspecialchars($reg['nickname']), $reg['style'])); } function register_new(string $nick, string $pass) : string { - global $I, $U, $db; + global $U, $db; $nick=preg_replace('/\s/', '', $nick); if(empty($nick)){ return ''; @@ -2884,18 +2987,18 @@ function register_new(string $nick, string $pass) : string { $stmt=$db->prepare('SELECT null FROM ' . PREFIX . 'sessions WHERE nickname=?'); $stmt->execute([$nick]); if($stmt->fetch(PDO::FETCH_NUM)){ - return sprintf($I['cantreg'], htmlspecialchars($nick)); + return sprintf(_("Can't register %s"), htmlspecialchars($nick)); } if(!valid_nick($nick)){ - return sprintf($I['invalnick'], get_setting('maxname'), get_setting('nickregex')); + return sprintf(_('Invalid nickname (%1$d characters maximum and has to match the regular expression "%2$s")'), get_setting('maxname'), get_setting('nickregex')); } if(!valid_pass($pass)){ - return sprintf($I['invalpass'], get_setting('minpass'), get_setting('passregex')); + return sprintf(_('Invalid password (At least %1$d characters and has to match the regular expression "%2$s")'), get_setting('minpass'), get_setting('passregex')); } $stmt=$db->prepare('SELECT null FROM ' . PREFIX . 'members WHERE nickname=?'); $stmt->execute([$nick]); if($stmt->fetch(PDO::FETCH_NUM)){ - return sprintf($I['alreadyreged'], htmlspecialchars($nick)); + return sprintf(_('%s is already registered.'), htmlspecialchars($nick)); } $reg=[ 'nickname' =>$nick, @@ -2917,20 +3020,20 @@ function register_new(string $nick, string $pass) : string { ]; $stmt=$db->prepare('INSERT INTO ' . PREFIX . 'members (nickname, passhash, status, refresh, bgcolour, regedby, timestamps, style, embed, incognito, nocache, tz, eninbox, sortupdown, hidechatters, nocache_old) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?);'); $stmt->execute([$reg['nickname'], $reg['passhash'], $reg['status'], $reg['refresh'], $reg['bgcolour'], $reg['regedby'], $reg['timestamps'], $reg['style'], $reg['embed'], $reg['incognito'], $reg['nocache'], $reg['tz'], $reg['eninbox'], $reg['sortupdown'], $reg['hidechatters'], $reg['nocache_old']]); - return sprintf($I['successreg'], htmlspecialchars($reg['nickname'])); + return sprintf(_('%s successfully registered.'), htmlspecialchars($reg['nickname'])); } function change_status(string $nick, string $status) : string { - global $I, $U, $db; + global $U, $db; if(empty($nick)){ return ''; }elseif($U['status']<=$status || !preg_match('/^[023567\-]$/', $status)){ - return sprintf($I['cantchgstat'], htmlspecialchars($nick)); + return sprintf(_("Can't change status of %s"), htmlspecialchars($nick)); } $stmt=$db->prepare('SELECT incognito, style FROM ' . PREFIX . 'members WHERE nickname=? AND statusexecute([$nick, $U['status']]); if(!$old=$stmt->fetch(PDO::FETCH_NUM)){ - return sprintf($I['cantchgstat'], htmlspecialchars($nick)); + return sprintf(_("Can't change status of %s"), htmlspecialchars($nick)); } if($status==='-'){ $stmt=$db->prepare('DELETE FROM ' . PREFIX . 'members WHERE nickname=?;'); @@ -2941,7 +3044,7 @@ function change_status(string $nick, string $status) : string { $stmt->execute([$nick]); $stmt=$db->prepare('DELETE FROM ' . PREFIX . 'notes WHERE (type=2 OR type=3) AND editedby=?;'); $stmt->execute([$nick]); - return sprintf($I['succdel'], style_this(htmlspecialchars($nick), $old[1])); + return sprintf(_('%s successfully deleted from database.'), style_this(htmlspecialchars($nick), $old[1])); }else{ if($status<5){ $old[0]=0; @@ -2950,12 +3053,12 @@ function change_status(string $nick, string $status) : string { $stmt->execute([$status, $old[0], $nick]); $stmt=$db->prepare('UPDATE ' . PREFIX . 'sessions SET status=?, incognito=? WHERE nickname=?;'); $stmt->execute([$status, $old[0], $nick]); - return sprintf($I['succchg'], style_this(htmlspecialchars($nick), $old[1])); + return sprintf(_('Status of %s successfully changed.'), style_this(htmlspecialchars($nick), $old[1])); } } function passreset(string $nick, string $pass) : string { - global $I, $U, $db; + global $U, $db; if(empty($nick)){ return ''; } @@ -2967,9 +3070,9 @@ function passreset(string $nick, string $pass) : string { $stmt->execute([$passhash, $nick]); $stmt=$db->prepare('UPDATE ' . PREFIX . 'sessions SET passhash=? WHERE nickname=?;'); $stmt->execute([$passhash, $nick]); - return sprintf($I['succpassreset'], htmlspecialchars($nick)); + return sprintf(_('Successfully reset password for %s'), htmlspecialchars($nick)); }else{ - return sprintf($I['cantresetpass'], htmlspecialchars($nick)); + return sprintf(_("Can't reset password for %s"), htmlspecialchars($nick)); } } @@ -3034,7 +3137,7 @@ function amend_profile(): void } function save_profile() : string { - global $I, $U, $db; + global $U, $db; amend_profile(); $stmt=$db->prepare('UPDATE ' . PREFIX . 'sessions SET refresh=?, style=?, bgcolour=?, timestamps=?, embed=?, incognito=?, nocache=?, tz=?, eninbox=?, sortupdown=?, hidechatters=? WHERE session=?;'); $stmt->execute([$U['refresh'], $U['style'], $U['bgcolour'], $U['timestamps'], $U['embed'], $U['incognito'], $U['nocache'], $U['tz'], $U['eninbox'], $U['sortupdown'], $U['hidechatters'], $U['session']]); @@ -3056,7 +3159,7 @@ function save_profile() : string { } if($U['status']>1 && !empty($_POST['newpass'])){ if(!valid_pass($_POST['newpass'])){ - return sprintf($I['invalpass'], get_setting('minpass'), get_setting('passregex')); + return sprintf(_('Invalid password (At least %1$d characters and has to match the regular expression "%2$s")'), get_setting('minpass'), get_setting('passregex')); } if(!isset($_POST['oldpass'])){ $_POST['oldpass']=''; @@ -3065,12 +3168,12 @@ function save_profile() : string { $_POST['confirmpass']=''; } if($_POST['newpass']!==$_POST['confirmpass']){ - return $I['noconfirm']; + return _('Password confirmation does not match!'); }else{ $U['newhash']=password_hash($_POST['newpass'], PASSWORD_DEFAULT); } if(!password_verify($_POST['oldpass'], $U['passhash'])){ - return $I['wrongpass']; + return _('Wrong Password!'); } $U['passhash']=$U['newhash']; $stmt=$db->prepare('UPDATE ' . PREFIX . 'sessions SET passhash=? WHERE session=?;'); @@ -3084,19 +3187,19 @@ function save_profile() : string { return $msg; } } - return $I['succprofile']; + return _('Your profile has successfully been saved.'); } function set_new_nickname() : string { - global $I, $U, $db; + global $U, $db; $_POST['newnickname']=preg_replace('/\s/', '', $_POST['newnickname']); if(!valid_nick($_POST['newnickname'])){ - return sprintf($I['invalnick'], get_setting('maxname'), get_setting('nickregex')); + return sprintf(_('Invalid nickname (%1$d characters maximum and has to match the regular expression "%2$s")'), get_setting('maxname'), get_setting('nickregex')); } $stmt=$db->prepare('SELECT id FROM ' . PREFIX . 'sessions WHERE nickname=? UNION SELECT id FROM ' . PREFIX . 'members WHERE nickname=?;'); $stmt->execute([$_POST['newnickname'], $_POST['newnickname']]); if($stmt->fetch(PDO::FETCH_NUM)){ - return $I['nicknametaken']; + return _('Nickname is already taken'); }else{ // Make sure members can not read private messages of previous guests with the same name $stmt=$db->prepare('UPDATE ' . PREFIX . 'messages SET poster = "" WHERE poster = ? AND poststatus = 9;'); @@ -3290,7 +3393,7 @@ function validate_input() : string { } function apply_filter(string $message, int $poststatus, string $nickname) : string { - global $I, $U, $session; + global $U, $session; $message=str_replace('
', "\n", $message); $message=apply_mention($message); $filters=get_filters(); @@ -3306,7 +3409,7 @@ function apply_filter(string $message, int $poststatus, string $nickname) : stri kick_chatter([$nickname], $filter['replace'], false); setcookie(COOKIENAME, false); $session = ''; - send_error("$I[kicked]
$filter[replace]"); + send_error(_('You have been kicked!')."
$filter[replace]"); } } $message=str_replace("\n", '
', $message); @@ -3561,7 +3664,7 @@ function del_last_message(): void function print_messages(int $delstatus=0): void { - global $I, $U, $db; + global $U, $db; $dateformat=get_setting('dateformat'); if(!$U['embed'] && get_setting('imgembed')){ $removeEmbed=true; @@ -3608,7 +3711,7 @@ function print_messages(int $delstatus=0): void echo ''.date($dateformat, $message['postdate']).' - '; } if ($message['poststatus']==4) { - echo "".get_setting('sysmessagetxt')."$message[text]
"; + echo ''.get_setting('sysmessagetxt')."$message[text]
"; } else { echo "$message[text]"; } @@ -3811,15 +3914,50 @@ function get_timeout(int $lastpost, int $expire): void function print_colours(): void { - global $I; // Prints a short list with selected named HTML colours and filters out illegible text colours for the given background. // It's a simple comparison of weighted grey values. This is not very accurate but gets the job done well enough. - // name=>[colour, greyval(colour)] - $colours=['Beige'=>['F5F5DC', 242.25], 'Black'=>['000000', 0], 'Blue'=>['0000FF', 28.05], 'BlueViolet'=>['8A2BE2', 91.63], 'Brown'=>['A52A2A', 78.9], 'Cyan'=>['00FFFF', 178.5], 'DarkBlue'=>['00008B', 15.29], 'DarkGreen'=>['006400', 59], 'DarkRed'=>['8B0000', 41.7], 'DarkViolet'=>['9400D3', 67.61], 'DeepSkyBlue'=>['00BFFF', 140.74], 'Gold'=>['FFD700', 203.35], 'Grey'=>['808080', 128], 'Green'=>['008000', 75.52], 'HotPink'=>['FF69B4', 158.25], 'Indigo'=>['4B0082', 36.8], 'LightBlue'=>['ADD8E6', 204.64], 'LightGreen'=>['90EE90', 199.46], 'LimeGreen'=>['32CD32', 141.45], 'Magenta'=>['FF00FF', 104.55], 'Olive'=>['808000', 113.92], 'Orange'=>['FFA500', 173.85], 'OrangeRed'=>['FF4500', 117.21], 'Purple'=>['800080', 52.48], 'Red'=>['FF0000', 76.5], 'RoyalBlue'=>['4169E1', 106.2], 'SeaGreen'=>['2E8B57', 105.38], 'Sienna'=>['A0522D', 101.33], 'Silver'=>['C0C0C0', 192], 'Tan'=>['D2B48C', 184.6], 'Teal'=>['008080', 89.6], 'Violet'=>['EE82EE', 174.28], 'White'=>['FFFFFF', 255], 'Yellow'=>['FFFF00', 226.95], 'YellowGreen'=>['9ACD32', 172.65]]; + // name=>[colour, greyval(colour), translated name] + $colours=[ + 'Beige'=>['F5F5DC', 242.25, _('Beige')], + 'Black'=>['000000', 0, _('Black')], + 'Blue'=>['0000FF', 28.05, _('Blue')], + 'BlueViolet'=>['8A2BE2', 91.63, _('Blue violet')], + 'Brown'=>['A52A2A', 78.9, _('Brown')], + 'Cyan'=>['00FFFF', 178.5, _('Cyan')], + 'DarkBlue'=>['00008B', 15.29, _('Dark blue')], + 'DarkGreen'=>['006400', 59, _('Dark green')], + 'DarkRed'=>['8B0000', 41.7, _('Dark red')], + 'DarkViolet'=>['9400D3', 67.61, _('Dark violet')], + 'DeepSkyBlue'=>['00BFFF', 140.74, _('Sky blue')], + 'Gold'=>['FFD700', 203.35, _('Gold')], + 'Grey'=>['808080', 128, _('Grey')], + 'Green'=>['008000', 75.52, _('Green')], + 'HotPink'=>['FF69B4', 158.25, _('Hot pink')], + 'Indigo'=>['4B0082', 36.8, _('Indigo')], + 'LightBlue'=>['ADD8E6', 204.64, _('Light blue')], + 'LightGreen'=>['90EE90', 199.46, _('Light green')], + 'LimeGreen'=>['32CD32', 141.45, _('Lime green')], + 'Magenta'=>['FF00FF', 104.55, _('Magenta')], + 'Olive'=>['808000', 113.92, _('Olive')], + 'Orange'=>['FFA500', 173.85, _('Orange')], + 'OrangeRed'=>['FF4500', 117.21, _('Orange red')], + 'Purple'=>['800080', 52.48, _('Purple')], + 'Red'=>['FF0000', 76.5, _('Red')], + 'RoyalBlue'=>['4169E1', 106.2, _('Royal blue')], + 'SeaGreen'=>['2E8B57', 105.38, _('Sea green')], + 'Sienna'=>['A0522D', 101.33, _('Sienna')], + 'Silver'=>['C0C0C0', 192, _('Silver')], + 'Tan'=>['D2B48C', 184.6, _('Tan')], + 'Teal'=>['008080', 89.6, _('Teal')], + 'Violet'=>['EE82EE', 174.28, _('Violet')], + 'White'=>['FFFFFF', 255, _('White')], + 'Yellow'=>['FFFF00', 226.95, _('Yellow')], + 'YellowGreen'=>['9ACD32', 172.65, _('Yellow green')], + ]; $greybg=greyval(get_setting('colbg')); foreach($colours as $name=>$colour){ if(abs($greybg-$colour[1])>75){ - echo ""; + echo ""; } } } @@ -3911,7 +4049,7 @@ function cron(): void function destroy_chat(array $C): void { - global $I, $db, $memcached, $session; + global $db, $memcached, $session; setcookie(COOKIENAME, false); $session = ''; print_start('destroy'); @@ -3936,26 +4074,26 @@ function destroy_chat(array $C): void $memcached->delete(DBNAME . '-' . PREFIX . 'settings-msgencrypted'); $memcached->delete(DBNAME . '-' . PREFIX . 'settings-nextcron'); } - echo "

$I[destroyed]




"; - echo form('setup').submit($I['init']).''.credit(); + echo '

'._('Successfully destroyed chat').'




'; + echo form('setup').submit(_('Initial Setup')).''.credit(); print_end(); } function init_chat(): void { - global $I, $db; + global $db; if(check_init()){ - $suwrite=$I['initdbexist']; + $suwrite=_('Database tables already exist! To continue, you have to delete these tables manually first.'); $result=$db->query('SELECT null FROM ' . PREFIX . 'members WHERE status=8;'); if($result->fetch(PDO::FETCH_NUM)){ - $suwrite=$I['initsuexist']; + $suwrite=_('A Superadmin already exists!'); } }elseif(!preg_match('/^[a-z0-9]{1,20}$/i', $_POST['sunick'])){ - $suwrite=sprintf($I['invalnick'], 20, '^[A-Za-z1-9]*$'); + $suwrite=sprintf(_('Invalid nickname (%1$d characters maximum and has to match the regular expression "%2$s")'), 20, '^[A-Za-z1-9]*$'); }elseif(mb_strlen($_POST['supass'])<5){ - $suwrite=sprintf($I['invalpass'], 5, '.*'); + $suwrite=sprintf(_('Invalid password (At least %1$d characters and has to match the regular expression "%2$s")'), 5, '.*'); }elseif($_POST['supass']!==$_POST['supassc']){ - $suwrite=$I['noconfirm']; + $suwrite=_('Password confirmation does not match!'); }else{ ignore_user_abort(true); set_time_limit(0); @@ -4041,19 +4179,19 @@ function init_chat(): void ['incognito', '1'], ['chatname', 'My Chat'], ['topic', ''], - ['msgsendall', $I['sendallmsg']], - ['msgsendmem', $I['sendmemmsg']], - ['msgsendmod', $I['sendmodmsg']], - ['msgsendadm', $I['sendadmmsg']], - ['msgsendprv', $I['sendprvmsg']], - ['msgenter', $I['entermsg']], - ['msgexit', $I['exitmsg']], - ['msgmemreg', $I['memregmsg']], - ['msgsureg', $I['suregmsg']], - ['msgkick', $I['kickmsg']], - ['msgmultikick', $I['multikickmsg']], - ['msgallkick', $I['allkickmsg']], - ['msgclean', $I['cleanmsg']], + ['msgsendall', _('%s - ')], + ['msgsendmem', _('[M] %s - ')], + ['msgsendmod', _('[Staff] %s - ')], + ['msgsendadm', _('[Admin] %s - ')], + ['msgsendprv', _('[%1$s to %2$s] - ')], + ['msgenter', _('%s entered the chat.')], + ['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.')], + ['msgclean', _('%s has been cleaned.')], ['numnotes', '3'], ['mailsender', 'www-data '], ['mailreceiver', 'Webmaster '], @@ -4061,7 +4199,7 @@ function init_chat(): void ['modfallback', '1'], ['guestreg', '0'], ['disablepm', '0'], - ['disabletext', "

$I[disabledtext]

"], + ['disabletext', '

'._('Temporarily disabled').'

'], ['defaulttz', 'UTC'], ['eninbox', '0'], ['passregex', '.*'], @@ -4077,7 +4215,7 @@ function init_chat(): void ['personalnotes', '1'], ['publicnotes', '1'], ['filtermodkick', '0'], - ['metadescription', $I['defaultmetadescription']], + ['metadescription', _('A chat community')], ['sysmessagetxt', 'ℹ️  '], ['hide_reload_post_box', '0'], ['hide_reload_messages', '0'], @@ -4115,17 +4253,17 @@ function init_chat(): void ]; $stmt=$db->prepare('INSERT INTO ' . PREFIX . 'members (nickname, passhash, status, refresh, bgcolour, timestamps, style, embed, incognito, nocache, tz, eninbox, sortupdown, hidechatters, nocache_old) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?);'); $stmt->execute([$reg['nickname'], $reg['passhash'], $reg['status'], $reg['refresh'], $reg['bgcolour'], $reg['timestamps'], $reg['style'], $reg['embed'], $reg['incognito'], $reg['nocache'], $reg['tz'], $reg['eninbox'], $reg['sortupdown'], $reg['hidechatters'], $reg['nocache_old']]); - $suwrite=$I['susuccess']; + $suwrite=_('Successfully registered!'); } print_start('init'); - echo "

$I[init]


$I[sulogin]

$suwrite


"; - echo form('setup').submit($I['initgosetup']).''.credit(); + echo '

'._('Initial Setup').'


'._('Superadmin Login')."

$suwrite


"; + echo form('setup').submit(_('Go to the Setup-Page')).''.credit(); print_end(); } function update_db(): void { - global $I, $db, $memcached; + global $db, $memcached; $dbversion=(int) get_setting('dbversion'); $msgencrypted=(bool) get_setting('msgencrypted'); if($dbversion>=DBVERSION && $msgencrypted===MSGENCRYPTED){ @@ -4227,7 +4365,8 @@ 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);'); - $db->exec('INSERT INTO ' . PREFIX . "settings (setting, value) VALUES ('chatname', 'My Chat'), ('topic', ''), ('msgsendall', '$I[sendallmsg]'), ('msgsendmem', '$I[sendmemmsg]'), ('msgsendmod', '$I[sendmodmsg]'), ('msgsendadm', '$I[sendadmmsg]'), ('msgsendprv', '$I[sendprvmsg]'), ('numnotes', '3');"); + $stmt = $db->exec('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){ $db->exec('ALTER TABLE ' . PREFIX . 'filter CHANGE `match` filtermatch varchar(255) NOT NULL, CHANGE `replace` filterreplace varchar(20000) NOT NULL;'); @@ -4253,7 +4392,8 @@ function update_db(): void $db->exec('INSERT INTO ' . PREFIX . "settings (setting, value) VALUES ('disablepm', '0');"); } if($dbversion<19){ - $db->exec('INSERT INTO ' . PREFIX . "settings (setting, value) VALUES ('disabletext', '

$I[disabledtext]

');"); + $stmt = $db->prepare('INSERT INTO ' . PREFIX . "settings (setting, value) VALUES ('disabletext', ?);"); + $stmt->execute(['

'._('Temporarily disabled').'

']); } if($dbversion<20){ $db->exec('ALTER TABLE ' . PREFIX . 'members ADD COLUMN tz smallint NOT NULL DEFAULT 0;'); @@ -4379,7 +4519,7 @@ function update_db(): void $stmt->execute($tmp); } }catch(PDOException $e){ - send_fatal_error($I['nodb']); + send_fatal_error(_('No connection to database!')); } } if($dbversion<33){ @@ -4388,7 +4528,7 @@ function update_db(): void $db->exec('INSERT INTO ' . PREFIX . "settings (setting, value) VALUES ('enfileupload', '0'), ('msgattache', '%2\$s [%1\$s]'), ('maxuploadsize', '1024');"); } if($dbversion<34){ - $msg.="
$I[cssupdate]"; + $msg.='
'._('Note: Default CSS is now hardcoded and can be removed from the CSS setting'); $db->exec('ALTER TABLE ' . PREFIX . 'members ADD COLUMN nocache_old smallint NOT NULL DEFAULT 0;'); } if($dbversion<37){ @@ -4450,7 +4590,8 @@ function update_db(): void $db->exec('INSERT IGNORE INTO ' . PREFIX . "settings (setting, value) VALUES ('filtermodkick', '1');"); } if($dbversion<43){ - $db->exec('INSERT IGNORE INTO ' . PREFIX . "settings (setting, value) VALUES ('metadescription', '$I[defaultmetadescription]');"); + $stmt = $db->prepare('INSERT IGNORE INTO ' . PREFIX . "settings (setting, value) VALUES ('metadescription', ?);"); + $stmt->execute([_('A chat community')]); } if($dbversion<44){ $db->exec('INSERT INTO ' . PREFIX . "settings (setting,value) VALUES ('publicnotes', '0');"); @@ -4467,7 +4608,7 @@ function update_db(): void update_setting('dbversion', DBVERSION); if($msgencrypted!==MSGENCRYPTED){ if(!extension_loaded('sodium')){ - send_fatal_error($I['sodiumextrequired']); + send_fatal_error(sprintf(_('The %s extension of PHP is required for the encryption feature. Please install it first or set the encrypted setting back to false.'), 'sodium')); } $result=$db->query('SELECT id, text FROM ' . PREFIX . 'messages;'); $stmt=$db->prepare('UPDATE ' . PREFIX . 'messages SET text=? WHERE id=?;'); @@ -4535,22 +4676,22 @@ function update_setting(string $setting, $value): void function check_db(): void { - global $I, $db, $memcached; + global $db, $memcached; $options=[PDO::ATTR_ERRMODE=>PDO::ERRMODE_EXCEPTION, PDO::ATTR_PERSISTENT=>PERSISTENT]; try{ if(DBDRIVER===0){ if(!extension_loaded('pdo_mysql')){ - send_fatal_error($I['pdo_mysqlextrequired']); + send_fatal_error(sprintf(_('The %s extension of PHP is required for the selected database driver. Please install it first.'), 'pdo_mysql')); } $db=new PDO('mysql:host=' . DBHOST . ';dbname=' . DBNAME . ';charset=utf8mb4', DBUSER, DBPASS, $options); }elseif(DBDRIVER===1){ if(!extension_loaded('pdo_pgsql')){ - send_fatal_error($I['pdo_pgsqlextrequired']); + send_fatal_error(sprintf(_('The %s extension of PHP is required for the selected database driver. Please install it first.'), 'pdo_pgsql')); } $db=new PDO('pgsql:host=' . DBHOST . ';dbname=' . DBNAME, DBUSER, DBPASS, $options); }else{ if(!extension_loaded('pdo_sqlite')){ - send_fatal_error($I['pdo_sqliteextrequired']); + send_fatal_error(sprintf(_('The %s extension of PHP is required for the selected database driver. Please install it first.'), 'pdo_sqlite')); } $db=new PDO('sqlite:' . SQLITEDBFILE, NULL, NULL, $options); $db->exec('PRAGMA foreign_keys = ON;'); @@ -4563,7 +4704,7 @@ function check_db(): void if(false!==$db->exec('CREATE DATABASE ' . DBNAME)){ $db=new PDO('mysql:host=' . DBHOST . ';dbname=' . DBNAME . ';charset=utf8mb4', DBUSER, DBPASS, $options); }else{ - send_fatal_error($I['nodbsetup']); + send_fatal_error(_('No connection to database, please create a database and edit the script to use the correct database with given username and password!')); } }elseif(DBDRIVER===1){ @@ -4571,26 +4712,26 @@ function check_db(): void if(false!==$db->exec('CREATE DATABASE ' . DBNAME)){ $db=new PDO('pgsql:host=' . DBHOST . ';dbname=' . DBNAME, DBUSER, DBPASS, $options); }else{ - send_fatal_error($I['nodbsetup']); + send_fatal_error(_('No connection to database, please create a database and edit the script to use the correct database with given username and password!')); } }else{ if(isset($_REQUEST['action']) && $_REQUEST['action']==='setup'){ - send_fatal_error($I['nodbsetup']); + send_fatal_error(_('No connection to database, please create a database and edit the script to use the correct database with given username and password!')); }else{ - send_fatal_error($I['nodb']); + send_fatal_error(_('No connection to database!')); } } }catch(PDOException $e){ if(isset($_REQUEST['action']) && $_REQUEST['action']==='setup'){ - send_fatal_error($I['nodbsetup']); + send_fatal_error(_('No connection to database, please create a database and edit the script to use the correct database with given username and password!')); }else{ - send_fatal_error($I['nodb']); + send_fatal_error(_('No connection to database!')); } } } if(MEMCACHED){ if(!extension_loaded('memcached')){ - send_fatal_error($I['memcachedextrequired']); + send_fatal_error(_('The memcached extension of PHP is required for the caching feature. Please install it first or set the memcached setting back to false.')); } $memcached=new Memcached(); $memcached->addServer(MEMCACHEDHOST, MEMCACHEDPORT); @@ -4624,42 +4765,34 @@ function load_fonts() : array { function load_lang(): void { - global $I, $L, $language; - $L=[ - 'ar' =>'العربية', - 'bg' =>'Български', - 'cs' =>'čeština', - 'de' =>'Deutsch', - 'en' =>'English', - 'es' =>'Español', - 'fi' =>'Suomi', - 'fr' =>'Français', - 'id' =>'Bahasa Indonesia', - 'it' =>'Italiano', - 'pt' =>'Português', - 'ru' =>'Русский', - 'tr' =>'Türkçe', - 'uk' =>'Українська', - 'zh-Hans' =>'简体中文', - 'zh-Hant' =>'正體中文', - ]; - if(isset($_REQUEST['lang']) && isset($L[$_REQUEST['lang']])){ - $language=$_REQUEST['lang']; - if(!isset($_COOKIE['language']) || $_COOKIE['language']!==$language){ - set_secure_cookie('language', $language); - } - }elseif(isset($_COOKIE['language']) && isset($L[$_COOKIE['language']])){ - $language=$_COOKIE['language']; - }else{ - $language=LANG; + global $language, $locale, $dir; + if(isset($_REQUEST['lang']) && isset(LANGUAGES[$_REQUEST['lang']])){ + $locale = LANGUAGES[$_REQUEST['lang']]['locale']; + $language = $_REQUEST['lang']; + $dir = LANGUAGES[$_REQUEST['lang']]['dir']; set_secure_cookie('language', $language); - } - require_once('lang_en.php'); //always include English - if($language!=='en'){ - $T=[]; - require_once("lang_$language.php"); //replace with translation if available - foreach($T as $name=>$translation){ - $I[$name]=$translation; + }elseif(isset($_COOKIE['language']) && isset(LANGUAGES[$_COOKIE['language']])){ + $locale = LANGUAGES[$_COOKIE['language']]['locale']; + $language = $_COOKIE['language']; + $dir = LANGUAGES[$_COOKIE['language']]['dir']; + }elseif(!empty($_SERVER['HTTP_ACCEPT_LANGUAGE'])){ + $prefLocales = array_reduce( + explode(',', $_SERVER['HTTP_ACCEPT_LANGUAGE']), + function (array $res, string $el) { + list($l, $q) = array_merge(explode(';q=', $el), [1]); + $res[$l] = (float) $q; + return $res; + }, []); + arsort($prefLocales); + foreach($prefLocales as $l => $q){ + $lang = locale_lookup(array_keys(LANGUAGES), $l); + if(!empty($lang)){ + $locale = LANGUAGES[$lang]['locale']; + $language = $lang; + $dir = LANGUAGES[$lang]['dir']; + set_secure_cookie('language', $language); + break; + } } } } diff --git a/lang_ar.php b/lang_ar.php deleted file mode 100644 index b1a02ba..0000000 --- a/lang_ar.php +++ /dev/null @@ -1,302 +0,0 @@ - -* -* This program is free software: you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. -* -* This program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with this program. If not, see . -*/ - -//Native language name: العربية -$T=[ - 'nodb' => 'لا يوجد اتصال بقاعدة البيانات!', - 'nodbsetup' => 'لا يوجد اتصال بقاعدة البيانات ، يرجى إنشاء قاعدة بيانات وتعديل البرنامج النصي لاستخدام قاعدة البيانات بشكل صحيح مع اسم المستخدم وكلمة المرور!', - 'changelang' => 'غير اللغة:', - 'expire' => 'صفحة غير صالحة / منتهية الصلاحية', - 'kicked' => 'محظور / طرد!', - 'noconfirm' => 'تأكيد كلمة المرور غير متطابق! ', - 'incorregex' => 'تعبير عادي غير صحيح!', - 'bottom' => 'تحت', - 'top' => 'فوق', - 'choose' => '(اختار)', - 'setup' => 'تثبيت الدردشة', - 'init' => 'التهيئة', - 'sulogin' => 'تسجيل دخول المشرف المتميز', - 'sunick' => 'لقب المشرف المتميز:', - 'supass' => 'كلمة مرور المشرف المتميز:', - 'suconfirm' => 'أكد كلمة المرور:', - 'susuccess' => 'سجلت بنجاح!', - 'initbtn' => 'بدء الدردشة', - 'initdbexist' => 'جداول قاعدة البيانات موجودة بالفعل! للمتابعة ، يجب عليك إسقاط الجداول يدويًا.', - 'initsuexist' => 'مشرف متميز موجود بالفعل!', - 'initgosetup' => 'اذهب إلى صفحة التثبيت', - 'captcha' => 'كلمة التحقق', - 'enabled' => 'مثبت', - 'onlyguests' => 'فقط الضيوف', - 'disabled' => 'غير مثبت', - 'simple' => 'بسيط', - 'moderate' => 'معتدل', - 'extreme' => 'شديد', - 'nick' => 'مستعار:', - 'pass' => 'كلمة السر:', - 'globalloginpass' => 'كلمة المرور العامة:', - 'login' => 'تسجيل الدخول', - 'dbupdate' => 'تم تثبيت قاعدة البيانات!', - 'sysmessage' => 'رسالة النظام', - 'sysmessages' => 'رسائل النظام', - 'sysmessagetxt' => 'هذا النص يسبق رسائل النظام.', - 'msgenter' => 'يدخل', - 'msgexit' => 'غادر', - 'msgmemreg' => 'عضو مسجل', - 'msgsureg' => 'المرشح المسجل', - 'msgkick' => 'محظور / طرد!', - 'msgmultikick' => 'قذفات متعددة', - 'msgallkick' => 'طرد عالمي', - 'msgclean' => 'رسائل نظيفة', - 'dateformat' => 'صيغة التاريخ', - 'admfunc' => 'وظائف الإدارة', - 'allguests' => 'كل الضيوف', - 'cleanmsgs' => 'رسائل نظيفة', - 'room' => 'غرفة', - 'selection' => 'اختيار', - 'cleannick' => 'اتبع اللقب:', - 'clean' => 'نظيف', - 'kickchat' => 'تم إخراج الألقاب (٪d دقيقة)', - 'kickreason' => 'الرسائل الممنوعة:', - 'kickpurge' => 'تطهير الرسائل', - 'kick' => 'محظور / مطرود', - 'logoutinact' => 'فصل مستخدم غير نشط', - 'logout' => 'تسجيل خروج', - 'sessions' => 'عرض الجلسات النشطة', - 'view' => 'انظر', - 'filter' => 'فصل', - 'guestacc' => 'تغيير وصول الضيف', - 'guestallow' => 'السماح', - 'guestwait' => 'يسمح بالانتظار في غرفة', - 'adminallow' => 'طلب موافقة الوسيط', - 'guestdisallow' => 'الأعضاء فقط', - 'addsuguest' => 'أضف مرشحًا', - 'register' => 'حفظ', - 'admmembers' => 'عضو', - 'memdel' => 'حذف من قاعدة البيانات', - 'memdeny' => 'الوصول ممنوع (!)', - 'memsuguest' => 'إضافة كمرشح (SG)', - 'memreg' => 'أضف كعضو عادي', - 'memmod' => 'إضافة كوسيط (م)', - 'memsumod' => 'إضافة كوسيط فائق (SM)', - 'memadm' => 'إضافة كمسؤول (أ)', - 'change' => 'تغيير', - 'regguest' => 'سجل ضيف', - 'regmem' => 'تسجيل عضو جديد', - 'sessact' => ' جلسات نشطة', - 'sessnick' => 'مستعار', - 'sesstimeout' => 'ينتهي في', - 'sessua' => 'وكيل المستخدم', - 'fid' => 'معرّف الفلتر:', - 'match' => 'يتوافق', - 'replace' => 'تم استبداله', - 'allowpm' => 'أذن في PM', - 'regex' => 'Regex', - 'apply' => 'مطبق', - 'newfilter' => 'مرشح جديد:', - 'add' => 'اضف', - 'noframes' =>' يرجى السماح بإطارات في متصفحك', - 'delselmes' => 'حذف الرسائل المختارة', - 'staffnotes' => 'ملاحظات المدير', - 'adminnotes' => 'ملاحظات المسؤول', - 'notessaved' => 'تم تسجيل الملاحظات!', - 'lastedited' => 'Dernière édition fait par %1$s à %2$s', - 'savenotes' => 'حفظ الملاحظات', - 'waitingroom' => 'قاعة انتظار', - 'waittext' => 'مرحبًا٪ 1 $ s ، تم تعليق اتصالك ، وصولك إلى الدردشة في٪ 2 $ d ثانية.', - 'reload' => 'معاد شحنه', - 'rules' => 'قواعد', - 'talkto' => 'أرسل إلى', - 'toall' => 'لجميع المدردشين', - 'tomem' => 'الأعضاء فقط', - 'tostaff' => 'مدير فقط', - 'toadmin' => 'المسؤول فقط', - 'alsopurge' => 'تطهير الرسائل', - 'dellast' => 'احذف الرسائل الأخيرة', - 'delall' => 'امسح كل الرسائل', - 'switchsingle' => 'خط واحد', - 'switchmulti' => 'قم بالتبديل إلى خطوط متعددة', - 'help' => 'مساعدة', - 'helpmem' => 'الأعضاء: سيكون لديك المزيد من الخيارات في ملفك الشخصي. يمكنك ضبط نوع الخط الخاص بك ويمكنك تغيير كلمة المرور الخاصة بك في أي وقت.', - 'helpmod' => 'الوسطاء: لاحظ زر المسؤول في الأسفل. ستقوم بإعداد صفحة حيث يمكنك تنظيف غرفة المعيشة ، وطرد الدردشة ، ومشاهدة جميع الجلسات النشطة ، وتعطيل وصول الضيف تمامًا إذا لزم الأمر.', - 'helpadm' => 'المسؤولون: ستتمكن من تسجيل الضيوف وتعديل الأعضاء الجدد وتسجيلهم دون تواجدهم في الصالة.', - 'profile' => 'ملفك الشخصي', - 'ignore' => 'تم التجاهل', - 'unignore' => 'لا تتجاهل مرة أخرى', - 'refreshrate' => 'معدل التحديث (%1$d-%2$d ثانية)', - 'fontcolour' => 'لون الخط', - 'viewexample' => 'اعرض الأمثلة', - 'bgcolour' => 'لون الخلفية', - 'fontface' => 'تعديل الخط', - 'roomdefault' => 'الصالة الافتراضية', - 'bold' => 'سمين', - 'italic' => 'مائل', - 'fontexample' => 'مثال على اختيار الخط', - 'timestamps' => 'عرض الطابع الزمني', - 'embed' => 'الصور المتداخلة', - 'incognito' => 'الوضع المخفي', - 'changepass' => 'تغيير كلمة المرور', - 'oldpass' => 'كلمة سر قديمة:', - 'newpass' => 'كلمة مرور جديدة:', - 'confirmpass' => 'قم بتأكيد كلمة المرور الجديدة الخاصة بك:', - 'savechanges' => 'احفظ التغييرات', - 'reloadpb' => 'أعد تحميل مربع النص', - 'reloadmsgs' => 'إعادة تحميل الرسائل', - 'viewpublicnotes' => 'انظر الملاحظات العامة', - 'publicnotes' => 'ملاحظات عامة', - 'chgprofile' => 'الملف الشخصي', - 'adminbtn' => 'مدير', - 'admnotes' => 'ملاحظات المسؤول', - 'notes' => 'ملاحظات', - 'clone' => 'استنساخ', - 'randh' => 'القواعد والمساعدة', - 'exit' => 'الخروج من الدردشة', - 'bye' => 'Au revoir %s, revenez nous voir bientôt!', - 'colourtable' => 'جدول الألوان', - 'backtoprofile' => 'العودة إلى ملف التعريف الخاص بك', - 'copy' => 'ينسخ:', - 'choosecol' => 'ضيف ، اختر لونًا:', - 'randomcol' => 'لون عشوائي', - 'enter' => 'يدخل', - 'error' => 'خطأ', - 'admin' => 'مدير', - 'staff' => 'مدير', - 'members' => 'أعضاء', - 'guests' => 'ضيوف', - 'allowchecked' => 'السماح للحفظ', - 'allowall' => 'اسمح للجميع', - 'denychecked' => 'رفض الحفظ', - 'denyall' => 'ينكر الجميع', - 'denymessage' => 'إرسال رسالة ممنوعة:', - 'butallowdeny' => 'بث', - 'waitempty' => 'لا مزيد من الإدخالات للموافقة عليها.', - 'wrongcaptcha' => 'كلمة التحقق السيئة', - 'captchaexpire' => 'تم استخدام كلمة التحقق بالفعل أو منتهية الصلاحية.', - 'noguests' => 'آسف ، متاح فقط للأعضاء!', - 'wrongpass' => 'كلمة مرور سيئة!', - 'wrongglobalpass' => 'كلمة مرور عالمية سيئة!', - 'succprofile' => 'تم تسجيل ملف التعريف الخاص بك.', - 'backtologin' => 'العودة إلى صفحة المصادقة.', - 'backtochat' => 'العودة إلى الدردشة.', - 'Beige' => 'اللون البيج', - 'Black' => 'اسود', - 'Blue' => 'ازرق', - 'BlueViolet' => 'ازرق فاتح', - 'Brown' => 'بني', - 'Cyan' => 'سيان', - 'DarkBlue' => 'ازرق غامق', - 'DarkGreen' => 'اخضر غامق', - 'DarkRed' => 'احمر غامق', - 'DarkViolet' => 'الأرجواني الداكن', - 'DeepSkyBlue' => 'ازرق سماوي', - 'Gold' => 'ذهبي', - 'Grey' => 'رمادي', - 'Green' => 'اخضر', - 'HotPink' => 'الوردي', - 'Indigo' => 'نيلي', - 'LightBlue' => 'أزرق شاحب', - 'LightGreen' => 'أخضر شاحب', - 'LimeGreen' => 'ليمون اخضر', - 'Magenta' => 'أرجواني', - 'Olive' => 'زيتي', - 'Orange' => 'برتقالي', - 'OrangeRed' => 'أحمر برتقالي', - 'Purple' => 'خبازي', - 'Red' => 'أحمر', - 'RoyalBlue' => 'ازرق ملكي', - 'SeaGreen' => 'أخضر المحيط', - 'Sienna' => 'سيينا', - 'Silver' => 'فضي', - 'Teal' => 'الأزرق الداكن والأخضر', - 'Violet' => 'نفسجي', - 'White' => 'ابيض', - 'Yellow' => 'الأصفر', - 'YellowGreen' => 'اصفر مائل للخضرة ', - 'redirectto' => 'إعادة التوجيه إلى:', - 'nonhttp' => 'مطلوب ارتباط غير http:', - 'httpredir' => 'إذا لم يفلح ذلك ، فجرّب الخيار إذا:', - 'actions' => 'أجراءات', - 'sesip' => 'عنوان IP', - 'css' => 'أسلوب Css', - 'memberexpire' => 'انتهت المهلة المحددة للعضو (بالدقائق)', - 'guestexpire' => 'انتهت المهلة المحددة للزائر (بالدقائق)', - 'kickpenalty' => 'عقوبة الطرد (بالدقائق)', - 'entrywait' => 'حان الوقت لدخول الدردشة (بالثواني)', - 'captchatime' => 'انتهى وقت كلمة التحقق (بالثواني)', - 'messageexpire' => 'انتهت مهلة الرسالة (بالدقائق)', - 'messagelimit' => 'حد الرسالة (عام)', - 'maxmessage' => 'أقصى طول للرسالة', - 'confirm' => 'هل أنت واثق؟', - 'yes' => 'نعم', - 'no' => 'لا', - 'colbg' => 'لون الخلفية', - 'coltxt' => 'لون الخط', - 'maxname' => 'أقصى طول للكنية', - 'minpass' => 'الحد الأدنى لطول كلمة المرور', - 'defaultrefresh' => 'وقت إعادة تحميل الرسالة الافتراضي (بالثواني)', - 'suguests' => 'أذن مرشح', - 'rulestxt' => 'القواعد (html)', - 'imgembed' => 'الصور المتداخلة', - 'trackip' => 'مشاهدة جلسة- IP', - 'captchachars' => 'الأحرف المستخدمة في Captcha', - 'memkick' => 'يمكن طرد الأعضاء في حالة غياب الوسيط', - 'memkickalways' => 'يمكن للأعضاء دائما طرد', - 'forceredirect' => 'فرض إعادة التوجيه', - 'redirect' => 'تخصيص نص إعادة التوجيه', - 'backuprestore' => 'احفظ واسترد', - 'backup' => 'Sauvegarder', - 'restore' => 'استعادة', - 'settings' => 'اعدادات', - 'linkfilter' => 'ارتباط تمت تصفيته', - 'chatname' => 'اسم القط', - 'destroy' => 'تدمير القط', - 'destroyed' => 'تم حذف الدردشة', - 'topic' => 'فاعل', - 'passreset' => 'إعادة تعيين كلمة المرور', - 'cantresetpass' => 'لا يمكن إعادة تعيين كلمة المرور', - 'succpassreset' => 'إعادة تعيين كلمة المرور موافق! ', - 'entermsg' => 'وصل٪s إلى المحادثة.', - 'exitmsg' => 'خرج من الدردشة %s', - 'memregmsg' => 'الان عضو مسجل %s', - 'suregmsg' => 'الان مرشح مسجل %s', - 'kickmsg' => 'من الدردشة %s طرد', - 'multikickmsg' => 'من الدردشة %s طرد', - 'allkickmsg' => 'تم طرد جميع الدردشات.', - 'cleanmsg' => '%s لقد شطب', - 'sendallmsg' => '%s - ', - 'sendmemmsg' => '[عضو] %s - ', - 'sendmodmsg' => '[مدير] %s - ', - 'sendadmmsg' => '[ادمن] %s - ', - 'sendprvmsg' => '[%1$s to %2$s] - ', - 'msgsendall' => 'رسالة للجميع', - 'msgsendmem' => 'رسالة للأعضاء فقط', - 'msgsendmod' => 'رسالة للمديرين فقط', - 'msgsendadm' => 'رسالة للمسؤولين فقط', - 'msgsendprv' => 'رسالة خاصة', - 'numnotes' => 'عدد المذكرات المنقحة للاحتفاظ بها', - 'revisions' => 'التنقيحات:', - 'older' => 'سابق', - 'newer' => 'جديد', - 'accessdenied' => 'الوصول ممنوع', - 'newnickname' => 'اللقب الجديد:', - 'nicknametaken' => 'اللقب مأخوذ بالفعل', - 'namedoers' => 'أظهر من يركل الأشخاص أو ينظف كل الرسائل.', - 'failednotice' => 'محاولات الاتصال الفاشلة', - 'dismiss' => 'معروف', -]; diff --git a/lang_bg.php b/lang_bg.php deleted file mode 100644 index 24e03db..0000000 --- a/lang_bg.php +++ /dev/null @@ -1,378 +0,0 @@ - -* -* This program is free software: you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. -* -* This program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with this program. If not, see . -*/ - -//Native language name: Български -$T=[ - 'nodb' => 'Няма връзка с базата данни!', - 'nodbsetup' => 'Няма връзка с базата данни, моля създайте база данни и редактирайте скрипта да използва правилната база данни със съответния потребител и парола.', - 'changelang' => 'Смени езика:', - 'expire' => 'Невалидна/изтекла сесия', - 'kicked' => 'Ти беше изгонен от чата!', - 'invalnick' => 'Невалиден ник (Максимум %1$d символа и трябва да съвпада с регулярния израз "%2$s")', - 'invalpass' => 'Невалидна парола (Най-малко %1$d символа и трябва да съвпада с регулярния израз "%2$s")', - 'noconfirm' => 'Полето за потвърждение на паролата не съвпада!', - 'incorregex' => 'Невалиден регулярен израз!', - 'bottom' => 'Най-долу', - 'top' => 'Горе', - 'choose' => '(избери)', - 'setup' => 'Инсталация на чата', - 'init' => 'Първоначална инсталация', - 'sulogin' => 'Потребителско име на супер-администратора:', - 'sunick' => 'Ник на супер-администратора:', - 'supass' => 'Парола на супер-администратора:', - 'suconfirm' => 'Потвърди паролата:', - 'susuccess' => 'Успешна регистрация!', - 'initbtn' => 'Инициализация на чата', - 'initdbexist' => 'Таблиците в базата данни вече съществуват! За да продължите, моля първо изтрийте тези таблици ръчно.', - 'initsuexist' => 'Вече съществува супер-администратор!', - 'initgosetup' => 'Отиди към страницата за инсталация', - 'captcha' => 'Captcha', - 'enabled' => 'Разрешено', - 'onlyguests' => 'Само за гости', - 'disabled' => 'Забранено', - 'simple' => 'Просто', - 'moderate' => 'Умерено', - 'extreme' => 'Екстремно', - 'nick' => 'Ник:', - 'pass' => 'Парола:', - 'globalloginpass' => 'Глобална парола:', - 'login' => 'Вход', - 'dbupdate' => 'Базата данни бе успешно обновена!', - 'sysmessage' => 'съобщение от системата', - 'sysmessages' => 'Системни съобщения', - 'sysmessagetxt' => 'Този текст предшества съобщенията от системата.', - 'msgenter' => 'Влизане', - 'msgexit' => 'Напускане', - 'msgmemreg' => 'Членът е регистриран', - 'msgsureg' => 'Кандидатът е регистриран', - 'msgkick' => 'Изгонен', - 'msgmultikick' => 'Множество изгонени', - 'msgallkick' => 'Всички са изгонени', - 'msgclean' => 'Стаята беше почистена', - 'dateformat' => 'Формат на дата', - 'admfunc' => 'Административни функции', - 'allguests' => 'Всички гости', - 'cleanmsgs' => 'Изчисти съобщенията', - 'room' => 'Цялата стая', - 'selection' => 'Избор', - 'cleannick' => 'Следния ник:', - 'clean' => 'Изчисти', - 'kickchat' => 'Изгони потребител (%d минути)', - 'kickreason' => 'Причина:', - 'kickpurge' => 'Заличи съобщенията', - 'kick' => 'Изгони', - 'logoutinact' => 'Изкарай неактивен потребител от чата', - 'logout' => 'Изкарай', - 'sessions' => 'Виж активните сесии', - 'view' => 'Виж', - 'filter' => 'Филтър', - 'guestacc' => 'Промени достъпа за гост', - 'guestallow' => 'Позволи', - 'guestwait' => 'Позволи с чакалня', - 'adminallow' => 'Изисквай одобрение от модератор', - 'guestdisallow' => 'Само членове', - 'addsuguest' => 'Регистрирай кандидат', - 'register' => 'Регистрирай', - 'admmembers' => 'Членове', - 'memdel' => 'Изтрий от базата данни', - 'memdeny' => 'Забрани достъп (!)', - 'memsuguest' => 'Направи кандидат (SG)', - 'memreg' => 'Направи обикновен член', - 'memmod' => 'Направи модератор (M)', - 'memsumod' => 'Направи супер-модератор (SM)', - 'memadm' => 'Направи администратор (A)', - 'change' => 'Промени', - 'regguest' => 'Регистрирай гост', - 'regmem' => 'Регистрирай нов член', - 'sessact' => 'Активни сесии', - 'sessnick' => 'Ник', - 'sesstimeout' => 'Изтичане след', - 'sessua' => 'User-Agent', - 'fid' => 'Филтър ID:', - 'match' => 'Съвпадение', - 'replace' => 'Замени', - 'allowpm' => 'Разреши в ЛС', - 'regex' => 'Регулярен израз', - 'apply' => 'Приложи', - 'newfilter' => 'Нов филтър:', - 'add' => 'Добави', - 'noframes' => 'Този чат използва фреймове. Моля позволете фреймовете във вашия браузър или използвайте друг, подходящ.', - 'delselmes' => 'Изтрий избраните съобщения', - 'staffnotes' => 'Бележки на екипа', - 'adminnotes' => 'Администраторски бележки', - 'notessaved' => 'Бележките са запазени!', - 'lastedited' => 'Последна редакция от %1$s на %2$s', - 'savenotes' => 'Запази бележките', - 'waitingroom' => 'Чакалня', - 'waittext' => 'Добре дошъл, %1$s, влизането ти беше отложено, ще можеш да влезеш в чата след %2$d секунди.', - 'admwaittext' => 'Добре дошъл, %1$s, влизането ти беше отложено, ще можеш да влезеш в чата след като бъдеш одобрен от модератор.', - 'waitreload' => 'Ако тази страница не се презарежда сама на всеки %d секунди, моля използвайте бутона за презареждане по-долу за да я презаредите ръчно', - 'reload' => 'Презареди', - 'rules' => 'Правила', - 'talkto' => 'Изпрати до', - 'toall' => 'Всички в чата', - 'tomem' => 'Само до членовете', - 'tostaff' => 'Само до екипа', - 'toadmin' => 'Само до админ', - 'alsopurge' => 'Също заличи съобщенията', - 'dellast' => 'Изтрий последното съобщение', - 'delall' => 'Изтрий всички съобщения', - 'switchsingle' => 'Превключи на многоредово поле', - 'switchmulti' => 'Превключи на едноредово поле', - 'help' => 'Помощ', - 'helpguest' => 'Предназначението на всички функции трябва да е ясно, просто използвай бутоните. В профила си можеш да променяш интервала на опресняване на чата и цвета на шрифта, а също така и да игнорираш потребители.
Забележка: Това е чат, така че ако спреш да чатиш, след известно време ще бъдеш амтоматично изкаран от чата.', - 'helpembed' => 'Ако искаш да вградиш изображение в поста си, просто използвай тага [img] пред линка с изображението. Пример: [img]http://example.com/images/file.jpg ще вгради изображението в поста ти.', - 'helpmem' => 'Членове: Вие ще имате някои допълнителни опции. Може да променяте цвета на фона, да променяте паролата си по всяко време, и разбира се, да изтриете акаунта си.', - 'helpmod' => 'Модератори: Забележете админ бутона най-долу. Натискането му ще изведе страница, през която ще можете да почистите стаята, да гоните потребители, да преглеждате всички активни сесии и да забраните напълно достъпа на гости, ако е необходимо.', - 'helpadm' => 'Администратори: Вие ще можете допълнително да регистрирате гости, да редактирате профили на членове и да регистрирате нови никове.', - 'profile' => 'Твоят профил', - 'ignore' => 'Игнорирай', - 'unignore' => 'Спри да игнорираш', - 'refreshrate' => 'Честота на опресняване (%1$d-%2$d секунди)', - 'fontcolour' => 'Цвят на шрифта', - 'viewexample' => 'Виж примери', - 'bgcolour' => 'Цвят на фона', - 'fontface' => 'Облик на шрифта', - 'roomdefault' => 'По подразбиране за стаята', - 'bold' => 'Получер', - 'italic' => 'Курсив', - 'small' => 'Малък', - 'fontexample' => 'Пример за избрания шрифт', - 'timestamps' => 'Покажи времеви маркери', - 'embed' => 'Вграждане на изображения', - 'incognito' => 'Режим Инкогнито', - 'changenick' => 'Промени ник', - 'changepass' => 'Промени парола', - 'oldpass' => 'Стара парола:', - 'newpass' => 'Нова парола:', - 'confirmpass' => 'Потвърди новата парола:', - 'savechanges' => 'Запази промените', - 'reloadpb' => 'Презареди пощенската кутия', - 'reloadmsgs' => 'Презареди съобщенията', - 'viewpublicnotes' => 'Чета́ обще́ствен Бележки', - 'chgprofile' => 'Профил', - 'adminbtn' => 'Администрация', - 'admnotes' => 'Администраторски бележки', - 'notes' => 'Бележки', - 'clone' => 'Клонирай', - 'randh' => 'Правила & Помощ', - 'exit' => 'Изход от чата', - 'bye' => 'Чао, драги %s, скоро те очакваме отново!', - 'colourtable' => 'Таблица с цветове', - 'backtoprofile' => 'Обратно в твоя профил', - 'copy' => 'Препиши:', - 'choosecol' => 'Гости, изберете цвят:', - 'randomcol' => 'Произволен цвят', - 'enter' => 'Влез в чата', - 'error' => 'Грешка', - 'admin' => 'Админ', - 'staff' => 'екипа', - 'members' => 'Членове', - 'guests' => 'Гости', - 'approveguests' => '%d нови гости чакат одобрение', - 'allowchecked' => 'Допусни избраните', - 'allowall' => 'Допусни всички', - 'denychecked' => 'Не допускай избраните', - 'denyall' => 'Не допускай никого', - 'denymessage' => 'Изпрати съобщение до недопуснатите:', - 'butallowdeny' => 'Изпрати', - 'waitempty' => 'Няма повече заявки за присъединяване, чакащи одобрение.', - 'wrongcaptcha' => 'Грешна Captcha', - 'captchaexpire' => 'Captcha-та е вече използвана или е изтекла.', - 'noguests' => 'Съжаляваме, но в момента се допускат само членове!', - 'curchat' => 'В стаята има %d потребители:', - 'cantreg' => 'Не мога да регистрирам %s', - 'alreadyreged' => '%s е вече регистриран.', - 'successreg' => '%s е успешно регистриран.', - 'cantchgstat' => 'Не мога да променя статуса на %s', - 'succdel' => '%s е успешно изтрит от базата данни.', - 'succchg' => 'Статусът за %s бе успешно променен.', - 'wrongpass' => 'Грешна парола!', - 'wrongglobalpass' => 'Грешна глобална парола!', - 'succprofile' => 'Профилът ти беше успешно съхранен.', - 'backtologin' => 'Обратно към страницата за вход.', - 'backtochat' => 'Обратно към чата.', - 'Beige' => 'Бежово', - 'Black' => 'Черно', - 'Blue' => 'Синьо', - 'BlueViolet' => 'Виолетово-синьо', - 'Brown' => 'Кафяво', - 'Cyan' => 'Зелено-синьо', - 'DarkBlue' => 'Тъмносиньо', - 'DarkGreen' => 'Тъмнозелено', - 'DarkRed' => 'Тъмночервено', - 'DarkViolet' => 'Тъмновиолетово', - 'DeepSkyBlue' => 'Небесно синьо', - 'Gold' => 'Златно', - 'Grey' => 'Сиво', - 'Green' => 'Зелено', - 'HotPink' => 'Топло розово', - 'Indigo' => 'Индиго', - 'LightBlue' => 'Светлосиньо', - 'LightGreen' => 'Светлозелено', - 'LimeGreen' => 'Липовозелено', - 'Magenta' => 'Лилаво-червено (Маджента)', - 'Olive' => 'Тъмно жълто-зелено', - 'Orange' => 'Оранжево', - 'OrangeRed' => 'Оранжево-червено', - 'Purple' => 'Лилаво', - 'Red' => 'Червено', - 'RoyalBlue' => 'Кралско синьо', - 'SeaGreen' => 'Морско зелено', - 'Sienna' => 'Златисто-жълто (Охра)', - 'Silver' => 'Сребърно', - 'Tan' => 'Жълто-кафяво', - 'Teal' => 'Синьо-зелено', - 'Violet' => 'Виолетово', - 'White' => 'Бяло', - 'Yellow' => 'Жълто', - 'YellowGreen' => 'Жълто-зелено', - 'redirectto' => 'Пренасочване към:', - 'nonhttp' => 'Заявен е не-http линк:', - 'httpredir' => 'Ако не работи, опитай това:', - 'actions' => 'Действия', - 'sesip' => 'IP-адрес', - 'css' => 'CSS стил', - 'memberexpire' => 'Изтичане на сесията на членове (минути)', - 'guestexpire' => 'Изтичане на сесията за гости (минути)', - 'kickpenalty' => 'Наказание с изгонване (минути)', - 'entrywait' => 'Време за изчакване в чакалнята (секунди)', - 'captchatime' => 'Валидност на Captcha-та (секунди)', - 'messageexpire' => 'Съобщенията изтичат след (минути)', - 'messagelimit' => 'Лимит на съобщенията (публичен)', - 'maxmessage' => 'Максимална дължина на съобщението', - 'confirm' => 'Сигурен ли си?', - 'yes' => 'Да', - 'no' => 'Не', - 'colbg' => 'Цвят на фона', - 'coltxt' => 'Цвят на текста', - 'maxname' => 'Максимална дължина на ник', - 'minpass' => 'Минимална дължина на паролата', - 'defaultrefresh' => 'Интервал на опресняване на съобщенията по подразбиране (секунди)', - 'suguests' => 'Позволи кандидати', - 'rulestxt' => 'Правила (html)', - 'imgembed' => 'Вгради изображения', - 'trackip' => 'Покажи IP-то на сесията', - 'captchachars' => 'Символи, използвани за Captcha-та', - 'memkick' => 'Членовете могат да гонят, ако няма модератор в стаята', - 'memkickalways' => 'Членовете могат вся́кога да гонят', - 'forceredirect' => 'Пренасочване', - 'redirect' => 'Мой скрипт за пренасочване', - 'backuprestore' => 'Бекъп и възстановяване', - 'backup' => 'Направи бекъп', - 'restore' => 'Възстанови', - 'settings' => 'Настройки', - 'linkfilter' => 'Филтър за линкове', - 'chatname' => 'Име на чата', - 'destroy' => 'Унищожи чата', - 'destroyed' => 'Успешно унищожи чата', - 'topic' => 'Тема', - 'passreset' => 'Нулирай парола', - 'cantresetpass' => 'Не мога да нулирам паролата', - 'succpassreset' => 'Успешно нулира паролата', - 'entermsg' => '%s влезе в чата.', - 'exitmsg' => '%s напусна чата.', - 'memregmsg' => '%s вече е регистриран член.', - 'suregmsg' => '%s вече е регистриран кандидат.', - 'kickmsg' => '%s беше изгонен.', - 'multikickmsg' => '%s бяха изгонени.', - 'allkickmsg' => 'Всички гости бяха изгонени.', - 'cleanmsg' => '%s беше почистена.', - 'sendallmsg' => '%s - ', - 'sendmemmsg' => '[М] %s - ', - 'sendmodmsg' => '[Екип] %s - ', - 'sendadmmsg' => '[Админ] %s - ', - 'sendprvmsg' => '[%1$s до %2$s] - ', - 'msgsendall' => 'Съобщение до всички', - 'msgsendmem' => 'Съобщение само до членовете', - 'msgsendmod' => 'Съобщение само до екипа', - 'msgsendadm' => 'Съобщение само до администраторите', - 'msgsendprv' => 'Лично съобщение', - 'numnotes' => 'Брой версии на бележки, които да се пазят', - 'revisions' => 'Версии:', - 'older' => 'По-стари', - 'newer' => 'По-нови', - 'accessdenied' => 'Достъпът е забранен', - 'loggedinas' => 'В момента си логнат като %s и нямаш достъп до тази част.', - 'newnickname' => 'Нов ник:', - 'nicknametaken' => 'Този ник се използва от друг', - 'nopass' => 'Невалидна парола (поне %d символа), не променям ника', - 'gdextrequired' => 'Добавката gd за PHP е необходима за тази функционалност. Моля, първо я инсталирайте.', - 'memcachedextrequired' => 'Добавката memcached за PHP е необходима за кеш функционалностите. Моля, първо я инсталирайте или върнете настройките за memcached обратно на false.', - 'sodiumextrequired' => 'Добавката libsodium за PHP е необходима the криптиращата функционалност. Моля, първо я инсталирайте или върнете настройките за криптиране обратно на false.', - 'pdo_mysqlextrequired' => 'Добавката pdo_mysql за PHP е необходима за избрания драйвер за базата данни. Моля, първо я инсталирайте.', - 'pdo_pgsqlextrequired' => 'Добавката pdo_pgsql за PHP е необходима за избрания драйвер за базата данни. Моля, първо я инсталирайте.', - 'pdo_sqliteextrequired' => 'Добавката pdo_sqlite за PHP е необходима за избрния драйвер за базата данни. Моля, първо я инсталирайте.', - 'jsonextrequired' => 'Добавката json за PHP е необходима за тази функционалност. Моля, първо я инсталирайте.', - 'sendmail' => 'Изпрати мейл при ново публично съобщение', - 'mailsender' => 'Изпрати мейл, използвайки този адрес', - 'mailreceiver' => 'Изпрати мейл до този адрес', - 'modfallback' => 'Използвай чакалня, ако няма модератор да одобрява гостите', - 'regpass' => 'Повтори паролата
за да се регистрираш', - 'guestreg' => 'Разреши на гостите да се регистрират сами', - 'asmember' => 'Като член', - 'assuguest' => 'Като кандидат', - 'fatalerror' => 'Фатална грешка', - 'prevmatch' => 'Съвпадението ти беше както следва', - 'matchtoolong' => 'Съвпадението ти беше прекалено дълго. Може да използваш най-много 255 символа. Опитай се да го разделиш.', - 'nocache' => 'Автоматично скролиране (за старите браузъри или сортиране от горе надолу).', - 'disablepm' => 'Забрани личните съобщения', - 'disablechat' => 'Забрани чата', - 'disabletext' => 'Съобщение относно забранения чат (html)', - 'disabledtext' => 'Временно забранен', - 'defaulttz' => 'Часова зона по подрзбиране', - 'tz' => 'Часова зона', - 'optional' => '(опционално)', - 'userloggedin' => 'Потребителят с това потребителско име е вече логнат.', - 'regednick' => 'Този ник е на регистриран член.', - 'failednotice' => 'неуспешен опит за влизане', - 'dismiss' => 'призна', - 'eninbox' => 'Позволи офлайн пощенска кутия', - 'inboxmsgs' => 'Прочети %d съобщения в пощенската ти кутия', - 'offline' => '(офлайн)', - 'deleteacc' => 'Изтрий акаунт', - 'eninnone' => 'За никого', - 'eninall' => 'За всички', - 'eninmem' => 'Само за членове', - 'eninstaff' => 'Само за екипа', - 'eninadmin' => 'Само за администратори', - 'nickregex' => 'Регулярен израз за никове', - 'passregex' => 'Регулярен израз за пароли', - 'externalcss' => 'Линк към външен CSS файл', - 'greetingmsg' => 'Добре дошъл, %s!', - 'entryhelp' => 'Ако този фрейм не се презареди след %d секунди, ще е необходимо да позволите автоматичното презареждане (meta презареждане) в своя браузър. Също се уверете, че нямате уеб филтър, локален филтър или добавка за браузъра, която да блокира автоматичното презареждане! Такива са например "Polipo", "NoScript", и други.
Възможно решение е (също в случай на грешки при презареждане на ниво сървър/прокси) да използвате бутона за ръчно презареждане на вашия браузър.', - 'enablegreeting' => 'Покажи приветствено съобщение преди да покажеш самото съобщение', - 'unban' => 'Премахни бан', - 'sortupdown' => 'Подреди съобщенията от горе надолу', - 'sortframe' => 'Преподредба', - 'cs' => 'Чувствително към малки и големи букви', - 'hidechatters' => 'Скрий списъка с потребители', - 'enfileupload' => 'Позволи качването на файлове', - 'msgattache' => 'Прикачен файл', - 'filenotfound' => 'Файлът не е намерен!', - 'maxuploadsize' => 'Максимален размер на файл в KB', - 'maxsize' => 'Макс %d KB', - 'cssupdate' => 'Забележка: CSS-ът по подразбиране е вече вграден в кода и може да бъде премахнат от CSS настройките', - 'manualrefresh' => 'Необходимо ръчно опресняване', - 'personalnotes' => 'Лични бележки', - 'publicnotes' => 'Обще́ствен Бележки', - 'filtermodkick' => 'Прилагай филтъра за изгонване и за модераторите', - 'namedoers' => 'Показване кой изхвърля хора или пречиства всички съобщения.', -]; diff --git a/lang_cs.php b/lang_cs.php deleted file mode 100644 index ab95e23..0000000 --- a/lang_cs.php +++ /dev/null @@ -1,378 +0,0 @@ - -* -* This program is free software: you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. -* -* This program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with this program. If not, see . -*/ - -//Native language name: čeština -$T=[ - 'nodb' => 'Chyba databáze!', - 'nodbsetup' => 'Žá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!', - 'changelang' => 'Změnit jazyk:', - 'expire' => 'Neplatná/relace vypršela', - 'kicked' => 'Byl jsi vyhozen!', - 'invalnick' => 'Neplatná přezdívka (%1$d znaků maximální a musí odpovídat regulární výraz "%2$s")', - 'invalpass' => 'Neplatné heslo (Alespoň %1$d znaků a musí odpovídat regulární výraz "%2$s")', - 'noconfirm' => 'Hesla se neshodují!', - 'incorregex' => 'Nesprávný regulární výraz!', - 'bottom' => 'Dolní', - 'top' => 'Horní', - 'choose' => '(vybrat)', - 'setup' => 'Nastavení Chatu', - 'init' => 'Počáteční nastavení', - 'sulogin' => 'Superadmin Přihlášení', - 'sunick' => 'Superadmin Přezdívka:', - 'supass' => 'Superadmin Heslo:', - 'suconfirm' => 'Potvrzení hesla:', - 'susuccess' => 'Byl jsi úspěšně zaregistrován!', - 'initbtn' => 'Inicializace chatu', - 'initdbexist' => 'Databázové tabulky již existují! Chcete-li pokračovat, musíte tyto tabulky nejprve ručně odstranit.', - 'initsuexist' => 'Superadmin již existuje!', - 'initgosetup' => 'Přejděte na stránku nastavení', - 'captcha' => 'Captcha', - 'enabled' => 'Povoleno', - 'onlyguests' => 'Pouze pro hosty', - 'disabled' => 'Zakázáno', - 'simple' => 'Jednoduchý', - 'moderate' => 'Moderate', - 'extreme' => 'Extrémní', - 'nick' => 'Přezdívka:', - 'pass' => 'Heslo:', - 'globalloginpass' => 'Globální heslo:', - 'login' => 'Přihlásit se', - 'dbupdate' => 'Databáze byla úspěšně aktualizována!', - 'sysmessage' => 'systémová zpráva', - 'sysmessages' => 'Systémové zprávy', - 'sysmessagetxt' => 'Tento text předchází zprávám ze systému.', - 'msgenter' => 'Vstup', - 'msgexit' => 'Odchod', - 'msgmemreg' => 'Registrovaný člen', - 'msgsureg' => 'Žadatel se zaregistroval', - 'msgkick' => 'Vyhozen', - 'msgmultikick' => 'Vyhozeno více členů', - 'msgallkick' => 'Všichni byli vyhozeni', - 'msgclean' => 'Místnost byla vyčištěna', - 'dateformat' => 'Formát datumu', - 'admfunc' => 'Administrativní funkce', - 'allguests' => 'Všichni hosté', - 'cleanmsgs' => 'Vyčistit zprávy', - 'room' => 'Celá místnost', - 'selection' => 'Výběr', - 'cleannick' => 'Následující přezdívka:', - 'clean' => 'Vyčistit', - 'kickchat' => 'Vyhodit chatujícího (%d minutes)', - 'kickreason' => 'Důvod vyhození:', - 'kickpurge' => 'Vyčistit zprávy', - 'kick' => 'Vyhodit', - 'logoutinact' => 'Odhlásit neaktivní chatující', - 'logout' => 'Odhlásit', - 'sessions' => 'Zobrazit aktivní relace', - 'view' => 'Zobrazit', - 'filter' => 'Filtr', - 'guestacc' => 'Změnit přístup pro hosty', - 'guestallow' => 'Povolit', - 'guestwait' => 'Povolit s čekající možností', - 'adminallow' => 'Požadovat schválení moderátorem', - 'guestdisallow' => 'Jen členové', - 'addsuguest' => 'Zaregistrovat žadatele', - 'register' => 'Registrovat', - 'admmembers' => 'Členové', - 'memdel' => 'Odstranit z databáze', - 'memdeny' => 'Zamítnout přístup (!)', - 'memsuguest' => 'Nastavit na žadatele (SG)', - 'memreg' => 'Nastavte na řádného člena', - 'memmod' => 'Nastavit na moderátory (M)', - 'memsumod' => 'Nastavit na supermod (SM)', - 'memadm' => 'Nastavit pro Administrátory (A)', - 'change' => 'Změnit', - 'regguest' => 'Registrovat hosta', - 'regmem' => 'Registrovat nového Člena', - 'sessact' => 'Aktivní relace', - 'sessnick' => 'Přezdívka', - 'sesstimeout' => 'Časový limit (Timeout) v', - 'sessua' => 'User-Agent', - 'fid' => 'ID filtru:', - 'match' => 'Match', - 'replace' => 'Nahradit', - 'allowpm' => 'Povolit v PM', - 'regex' => 'Regex', - 'apply' => 'Použít', - 'newfilter' => 'Nový filtr:', - 'add' => 'Přidat', - 'noframes' => 'Tento chat používá rámeček . Povolte rámečky ve vašem prohlížeči nebo použijte jiný!', - 'delselmes' => 'Odstranit vybrané zprávy', - 'staffnotes' => 'Poznámky zaměstnanců', - 'adminnotes' => 'Poznámky Administrátorů', - 'notessaved' => 'Poznámky uloženy!', - 'lastedited' => 'Naposledy upraveno %1$s at %2$s', - 'savenotes' => 'Uložit poznámky', - 'waitingroom' => 'Čekárna', - 'waittext' => 'Vítejte %1$s, vaše přihlášení bylo odloženo, přístup k chatu je možný v %2$d sekundách.', - 'admwaittext' => 'Vítejte %1$s, vaše přihlašovací údaje byly odloženy, můžete k chatu přistupovat až to moderátor dovolí.', - 'waitreload' => 'Pokud se tato stránka neobnoví každých %d sekund, použijte tlačítko níže, abyste ji znovu načítali ručně!', - 'reload' => 'Znovu načíst', - 'rules' => 'Pravidla', - 'talkto' => 'Mluvit s', - 'toall' => 'Všem', - 'tomem' => 'Jen členové', - 'tostaff' => 'Jen zaměstnanci', - 'toadmin' => 'Jen administrátoři', - 'alsopurge' => 'Také vyčistit zprávy', - 'dellast' => 'Vymazat poslední zprávu', - 'delall' => 'Vymazat všechny zprávy', - 'switchsingle' => 'Přepnout na jednorázovou linku', - 'switchmulti' => 'Přepnout na víceřádkový', - 'help' => 'Pomoc', - 'helpguest' => 'Všechny funkce by měly být docela samo vysvětlující, stačí použít tlačítka. Ve vašem profilu můžete nastavit obnovovací frekvenci a barvu písma a ignorovat uživatele.
Poznámka: Jedná se o chat, takže pokud nebudete mluvit, budete automaticky po chvíli odhlášeni.', - 'helpembed' => 'Pokud chcete vložit obrázek do příspěvku, jednoduše jej vložte [img] před vaší adresou URL obrázku. Například: [img]http://example.com/images/file.jpg vloží obrázek do příspěvku.', - 'helpmem' => 'Č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.', - 'helpmod' => 'Moderátoři: Uvidíte správce v dolní části. Zobrazí se stránka, ve které 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.', - 'helpadm' => 'Administrátoři: Budete dále moci registrovat hosty, editovat členy a registrovat nové přezdívky.', - 'profile' => 'Váš profil', - 'ignore' => 'Ignorovat', - 'unignore' => 'Již neignorovat', - 'refreshrate' => 'Obnovovací frekvence (%1$d-%2$d sekund)', - 'fontcolour' => 'Barva písma', - 'viewexample' => 'Zobrazit příklady', - 'bgcolour' => 'Barva pozadí', - 'fontface' => 'Tvar písma', - 'roomdefault' => 'Výchozí místnost', - 'bold' => 'Tučně', - 'italic' => 'Kurzíva', - 'small' => 'Malý', - 'fontexample' => 'Příklad vybraného písma', - 'timestamps' => 'Zobrazit časové značky', - 'embed' => 'Embed obzrázky', - 'incognito' => 'Režim inkognito', - 'changenick' => 'Změnit přezdívku', - 'changepass' => 'Změnit heslo', - 'oldpass' => 'Staré heslo:', - 'newpass' => 'Nové heslo:', - 'confirmpass' => 'Potvrdit nové heslo:', - 'savechanges' => 'Uložit', - 'reloadpb' => 'Znovu načíst poštovní schránku', - 'reloadmsgs' => 'Znovu načíst zprávy', - 'viewpublicnotes' => 'Zobrazit poznámky publikovaný', - 'chgprofile' => 'Profil', - 'adminbtn' => 'Admin', - 'admnotes' => 'Admin poznámky', - 'notes' => 'Poznámky', - 'clone' => 'Klonovat', - 'randh' => 'Pravidla & Pomoc', - 'exit' => 'Opustit chat', - 'bye' => 'Sbohem %s, navštivte nás brzy!', - 'colourtable' => 'Barevný', - 'backtoprofile' => 'Zpět do profilu', - 'copy' => 'Kopírovat:', - 'choosecol' => 'Hosté, vyberte barvu:', - 'randomcol' => 'Náhodná barva', - 'enter' => 'Vstoupit', - 'error' => 'Chyba', - 'admin' => 'Admin', - 'staff' => 'Stnanc', - 'members' => 'Členové', - 'guests' => 'Hosté', - 'approveguests' => '%d noví hsté ke schválení', - 'allowchecked' => 'Povolit vybrané', - 'allowall' => 'Povolit vše', - 'denychecked' => 'Zakázat vybrané', - 'denyall' => 'Zakázat vše', - 'denymessage' => 'Poslat zprávu odepřeným:', - 'butallowdeny' => 'Odeslat', - 'waitempty' => 'Žádná další žádost o schválení', - 'wrongcaptcha' => 'Špatná Captcha', - 'captchaexpire' => 'Captcha byla již použitá nebo vypršel čas', - 'noguests' => 'Omlouváme se, v současné době pouze členové!', - 'curchat' => 'Právě teď %d chatujících v místnosti:', - 'cantreg' => 'Nelze zaregistrovat %s', - 'alreadyreged' => '%s je již zaregistrovaný.', - 'successreg' => '%s byl úspěšně zaregistrován..', - 'cantchgstat' => 'Nelze změnit status uživatele %s', - 'succdel' => '%s byl úspěšně vymazán z databáze.', - 'succchg' => 'Status %s byl úspěšně změněn.', - 'wrongpass' => 'Špatné heslo!', - 'wrongglobalpass' => 'Špatné globální heslo!', - 'succprofile' => 'Váš profil byl úspěšně uložen.', - 'backtologin' => 'Zpět na přihlašovací stránku.', - 'backtochat' => 'Zpět do chatu.', - 'Beige' => 'Béžový', - 'Black' => 'Černý', - 'Blue' => 'Modrý', - 'BlueViolet' => 'Modro-fialová', - 'Brown' => 'Hnědá', - 'Cyan' => 'Tyrkysová', - 'DarkBlue' => 'Tmavě modrá', - 'DarkGreen' => 'Tmavě zelená', - 'DarkRed' => 'Tmavě červená', - 'DarkViolet' => 'Tmavě fialová', - 'DeepSkyBlue' => 'Modré nebe', - 'Gold' => 'Zlatá', - 'Grey' => 'Šedá', - 'Green' => 'Zelená', - 'HotPink' => 'Hot růžová', - 'Indigo' => 'Indigo', - 'LightBlue' => 'Světle modrá', - 'LightGreen' => 'Světle zelená', - 'LimeGreen' => 'Limetkově zelená', - 'Magenta' => 'Purpurová', - 'Olive' => 'Olivová', - 'Orange' => 'Oranžová', - 'OrangeRed' => 'oranžově-červená', - 'Purple' => 'Purpurová', - 'Red' => 'Červená', - 'RoyalBlue' => 'Královsky modrá', - 'SeaGreen' => 'Zelené moře', - 'Sienna' => 'Oranžově žlutá', - 'Silver' => 'Stříbrný', - 'Tan' => 'Bronz', - 'Teal' => 'Teal', - 'Violet' => 'Fialová', - 'White' => 'Bílá', - 'Yellow' => 'Žlutá', - 'YellowGreen' => 'Žluto zelená', - 'redirectto' => 'Přesměrování na:', - 'nonhttp' => 'Požadovaný odkaz bez http:', - 'httpredir' => 'Pokud to nefunguje, zkuste tohle:', - 'actions' => 'Akce', - 'sesip' => 'IP-Addresa', - 'css' => 'CSS Styl', - 'memberexpire' => 'Členský časový limit (minut)', - 'guestexpire' => 'Host timeout (minut)', - 'kickpenalty' => 'Kick penalty (minut)', - 'entrywait' => 'Čas čekací místnosti (sekund)', - 'captchatime' => 'Časový limit Captcha (sekund)', - 'messageexpire' => 'Časový limit zprávy (minut)', - 'messagelimit' => 'Limit zprávy (veřejnost)', - 'maxmessage' => 'Maximální délka zprávy', - 'confirm' => 'Jsi si jistý?', - 'yes' => 'Ano', - 'no' => 'Ne', - 'colbg' => 'Barva pozadí', - 'coltxt' => 'Barva textu', - 'maxname' => 'Maximální délka přezdívky', - 'minpass' => 'Minimální délka hesla', - 'defaultrefresh' => 'Výchozí doba načtení zprávy (reload) (sekund)', - 'suguests' => 'Povolit žadatele', - 'rulestxt' => 'Pravidla (html)', - 'imgembed' => 'Obrázky v rámečku (embed)', - 'trackip' => 'Zobrazit IP relace', - 'captchachars' => 'Znaky použité v Captcha', - 'memkick' => 'Členové mohou vyhazovat, pokud není přítomen žádný moderátor', - 'memkickalways' => 'Členové mohou vždy vyhazovat', - 'forceredirect' => 'Vynucené přesměrování', - 'redirect' => 'Vlastní skript přesměrování', - 'backuprestore' => 'Zálohování a obnovení', - 'backup' => 'Zalohování', - 'restore' => 'Obnovení', - 'settings' => 'Nastavení', - 'linkfilter' => 'Filtr odkazů', - 'chatname' => 'Název chatu', - 'destroy' => 'Zničit chat', - 'destroyed' => 'Chat byl úspěšně zničen', - 'topic' => 'Téma', - 'passreset' => 'Reset hesla', - 'cantresetpass' => 'Nelze resetovat heslo', - 'succpassreset' => 'Heslo bylo úspěšně resetováno', - 'entermsg' => '%s vstoupil do chatu.', - 'exitmsg' => '%s opustil chat.', - 'memregmsg' => '%s se stal registrovaným členem.', - 'suregmsg' => '%s je nyní registrovaným žadatelem.', - 'kickmsg' => '%s byl vyhozen.', - 'multikickmsg' => '%s byli vyhozeni..', - 'allkickmsg' => 'Všichni hosté byli vyhozeni.', - 'cleanmsg' => '%s byl vyčištěn.', - 'sendallmsg' => '%s - ', - 'sendmemmsg' => '[M] %s - ', - 'sendmodmsg' => '[Personál] %s - ', - 'sendadmmsg' => '[Administrátor] %s - ', - 'sendprvmsg' => '[%1$s do %2$s] - ', - 'msgsendall' => 'Zpráva všem', - 'msgsendmem' => 'Zpráva jen pro členy', - 'msgsendmod' => 'Zpráva jen pro personál', - 'msgsendadm' => 'Zpráva jen Administrátorům', - 'msgsendprv' => 'Soukromá zpráva', - 'numnotes' => 'Počet poznámek, které je nutné zachovat', - 'revisions' => 'Revize:', - 'older' => 'Starší', - 'newer' => 'Novější', - 'accessdenied' => 'Přístup zamítnut', - 'loggedinas' => 'Jste přihlášeni jako %s a nemáte přístup k této části.', - 'newnickname' => 'Nová přezdívka:', - 'nicknametaken' => 'Přezdívku již někdo používá', - 'nopass' => 'Chybné heslo (Nejméně %d znaků), přezdívka zůstala stejná', - 'gdextrequired' => 'Rozšíření PHP gd je pro tuto funkci vyžadováno. Nejprve ho nainstalujte.', - 'memcachedextrequired' => 'Pro funkci ukládání do mezipaměti je vyžadováno memcached rozšíření PHP. Nejprve ho nainstalujte, nebo nastavte parametr memcached na hodnotu false.', - 'sodiumextrequired' => 'Pro funkci šifrování je vyžadováno rozšíření PHP libsodium. Nejprve ho nainstalujte nebo nastavte šifrované nastavení zpět na hodnotu false.', - 'pdo_mysqlextrequired' => 'Rozšíření pdo_mysql PHP je vyžadováno pro zvolený ovladač databáze. Nejprve ho nainstalujte.', - 'pdo_pgsqlextrequired' => 'Pro zvolený databázový ovladač je vyžadováno rozšíření PHP pdo_pgsql. Nejprve ho nainstalujte.', - 'pdo_sqliteextrequired' => 'Rozšíření pdo_sqlite PHP je vyžadováno pro zvolený ovladač databáze. Nejprve ho nainstalujte.', - 'jsonextrequired' => 'Pro tuto funkci je vyžadováno rozšíření PHP json. Nejprve ho nainstalujte.', - 'sendmail' => 'Odeslat mail na novou veřejnou zprávu', - 'mailsender' => 'Odeslat mail pomocí této adresy', - 'mailreceiver' => 'Odeslat mail do této adresy', - 'modfallback' => 'Zpět do čekaí místnosti, pokud není přítomen žádný moderátor, který schvaluje hosty', - 'regpass' => 'Zopakujte heslo
pro registraci', - 'guestreg' => 'Nechte hosty zaregistrovat se', - 'asmember' => 'Jako členové', - 'assuguest' => 'Jako žadatel', - 'fatalerror' => 'Fatal error', - 'prevmatch' => 'Vaše hledání bylo následující', - 'matchtoolong' => 'Vaše hledání bylo příliš dlouhé. Můžete použít max. 255 znaků. Zkuste to rozdělit.', - 'nocache' => 'Automatické procházení (pro staré prohlížeče nebo třídění od nejvyššího dole).', - 'disablepm' => 'Zakázat soukromé zprávy', - 'disablechat' => 'Vypnout chat', - 'disabletext' => 'Deaktivovat zprávu v chatu (html)', - 'disabledtext' => 'Dočasně zakázáno', - 'defaulttz' => 'Výchozí časové pásmo', - 'tz' => 'Časové pásmo', - 'optional' => '(volitelný)', - 'userloggedin' => 'Uživatel s touto přezdívkou je již přihlášen.', - 'regednick' => 'Tato přezdívka používá registrovaný člen.', - 'failednotice' => 'neúspěšné pokusy o přihlášení', - 'dismiss' => 'uznal', - 'eninbox' => 'Povolit offline doručenou poštu ', - 'inboxmsgs' => 'Přečtěte si %d zprávy ve vaší doručené poště', - 'offline' => '(offline)', - 'deleteacc' => 'Odstranit účet', - 'eninnone' => 'Pro nikoho', - 'eninall' => 'Pro všechny', - 'eninmem' => 'Jen pro členy', - 'eninstaff' => 'Jen pro personál', - 'eninadmin' => 'Jen pro Administrátory', - 'nickregex' => 'Přezdívka regex', - 'passregex' => 'Heslo regex', - 'externalcss' => 'Link pro externí CSS soubor', - 'greetingmsg' => 'Vítej %s!', - 'entryhelp' => 'Pokud tento snímek není znovu načten v% d sekundách, bude muset v prohlížeči povolit automatické přesměrování (meta refresh). Také se ujistěte, že žádný webový filtr, místní proxy nástroj nebo plugin pro prohlížeč nebrání automatickému obnovení! Mohlo by to být například "Polipo", "NoScript" atd.
Jako řešení (nebo v případě chyby načtení serveru / serveru proxy) můžete ručně obnovit tlačítka v dolní části.', - 'enablegreeting' => 'Před zobrazením zpráv zobrazte uvítací zprávu', - 'unban' => 'Odbanovat', - 'sortupdown' => 'Seřadit zprávy shora dolů', - 'sortframe' => 'Změňit uspořádání', - 'cs' => 'Velká a malá písmena', - 'hidechatters' => 'Skrýt seznam chatujících', - 'enfileupload' => 'Povolit nahrávání souborů', - 'msgattache' => 'Příloha', - 'filenotfound' => 'Soubor nebyl nalezen!', - 'maxuploadsize' => 'Maximální velikost nahrávaných souborů v KB', - 'maxsize' => 'Max. %d KB', - 'cssupdate' => 'Poznámka: Výchozí CSS je nyní napevno a může být odstraněn z nastavení CSS', - 'manualrefresh' => 'Nutná ruční aktualizace ', - 'personalnotes' => 'Osobní poznámky', - 'publicnotes' => 'Poznámky publikovaný', - 'filtermodkick' => 'Použít vyhazovací filtr na moderátory', - 'namedoers' => 'Ukažte, kdo vyloučí lidi nebo vyčistí všechny zprávy.', -]; diff --git a/lang_de.php b/lang_de.php deleted file mode 100644 index f9058c1..0000000 --- a/lang_de.php +++ /dev/null @@ -1,398 +0,0 @@ - -* -* This program is free software: you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. -* -* This program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with this program. If not, see . -*/ - -//Native language name: Deutsch -$T=[ - 'nodb' => 'Keine Verbindung zur Datenbank!', - 'nodbsetup' => 'Keine Verbindung zur Datenbank, bitte erstelle eine Datenbank und bearbeite das Skript, um die korrekte Datenbank mit angegebenem Benutzernamen und Passwort zu benutzen.', - 'changelang' => 'Sprache ändern:', - 'expire' => 'Ungültige/abgelaufene Sitzung', - 'kicked' => 'Du wurdest rausgeschmissen!', - 'invalnick' => 'Ungültiger Nickname (Maximal %1$d Zeichen und muss dem regulären Ausdruck "%2$s" entsprechen)', - 'invalpass' => 'Ungültiges Passwort (Mindestens %1$d Zeichen und muss dem regulären Ausdruck "%2$s" entsprechen)', - 'noconfirm' => 'Passwortbestätigung stimmt nicht überein!', - 'incorregex' => 'Ungültiger regulärer Ausdruck!', - 'bottom' => 'Unten', - 'top' => 'Oben', - 'choose' => '(auswählen)', - 'setup' => 'Chat Einrichtung', - 'init' => 'Erste Einrichtung', - 'sulogin' => 'Superadmin Anmeldung', - 'sunick' => 'Superadmin Nickname:', - 'supass' => 'Superadmin Passwort:', - 'suconfirm' => 'Passowrt bestätigen:', - 'susuccess' => 'Erfolgreich registriert!', - 'initbtn' => 'Chat initalisieren', - 'initdbexist' => 'Datenbanktabellen existieren bereits! Um vortzufahren, müssem Sie diese Tabellen zuerst manuell löschen.', - 'initsuexist' => 'Ein Superadmin existiert bereits!', - 'initgosetup' => 'Zur Einrichtungsseite gehen', - 'dbupdate' => 'Datenbank erfolgreich aktualisiert!', - 'sysmessage' => 'Systemnachricht', - 'sysmessages' => 'Systemnachrichten', - 'sysmessagetxt' => 'Dieser Text geht Nachrichten aus dem System voraus.', - 'msgenter' => 'Eintritt', - 'msgexit' => 'Verlassen', - 'msgmemreg' => 'Mitglied registriert', - 'msgsureg' => 'Anwerber registriert', - 'msgkick' => 'Rauswurf', - 'msgmultikick' => 'Mehrere rausgeworfen', - 'msgallkick' => 'Alle rausgeworfen', - 'msgclean' => 'Raum geleert', - 'dateformat' => 'Datums-Formatierung', - 'captcha' => 'Captcha', - 'enabled' => 'Aktiviert', - 'onlyguests' => 'Nur für Gäste', - 'disabled' => 'Deaktiviert', - 'simple' => 'Einfach', - 'moderate' => 'Mittel', - 'extreme' => 'Extrem', - 'nick' => 'Nickname:', - 'pass' => 'Passwort:', - 'globalloginpass' => 'Globales Passwort:', - 'login' => 'Anmelden', - 'admfunc' => 'Administrative Funktionen', - 'allguests' => 'Alle Gäste', - 'cleanmsgs' => 'Nachrichten löschen', - 'room' => 'Gesamten Raum', - 'selection' => 'Auswahl', - 'cleannick' => 'Folgender Nickname:', - 'clean' => 'Löschen', - 'kickchat' => 'Teilnehmer rausschmeißen (%d Minuten)', - 'kickreason' => 'Begründung:', - 'kickpurge' => 'Nachrichten löschen', - 'kick' => 'Rausschmeißen', - 'logoutinact' => 'Inaktive Teilnehmer abmelden', - 'logout' => 'Abmelden', - 'sessions' => 'Aktive Sitzungen anzeigen', - 'view' => 'Anzeigen', - 'filter' => 'Filter', - 'guestacc' => 'Gastzugriff ändern', - 'guestallow' => 'Erlauben', - 'guestwait' => 'Mit Warteraum erlauben', - 'adminallow' => 'Moderator-Erlaubnis benötigen', - 'guestdisallow' => 'Nur Mitglieder', - 'addsuguest' => 'Anwerber registrieren', - 'register' => 'Registrieren', - 'admmembers' => 'Mitglieder', - 'memdel' => 'Aus der Datenbank löschen', - 'memdeny' => 'Zugriff verweigern (!)', - 'memsuguest' => 'Zu Anwerber machen (SG)', - 'memreg' => 'Zu regulärem Mitglied machen', - 'memmod' => 'Zu Moderator machen (M)', - 'memsumod' => 'Zu Supermod machen (SM)', - 'memadm' => 'Zu Admin machen (A)', - 'change' => 'Ändern', - 'regguest' => 'Gast registrieren', - 'regmem' => 'Mitglied registrieren', - 'sessact' => 'Aktive Sitzungen', - 'sessnick' => 'Nickname', - 'sesstimeout' => 'Ablauf in', - 'sessua' => 'User-Agent', - 'fid' => 'Filter ID:', - 'match' => 'Entsprechung', - 'replace' => 'Ersetzen', - 'allowpm' => 'In PM zulassen', - 'regex' => 'Regex', - 'apply' => 'Anwenden', - 'newfilter' => 'Neuer Filter:', - 'add' => 'Hinzufügen', - 'noframes' => 'Dieser Chat benutzt Frames. Bitte aktivieren Sie Frames in Ihrem Browser oder benutzen Sie einen dafür geeigneten!', - 'delselmes' => 'Ausgewählte Nachrichten löschen', - 'staffnotes' => 'Moderatornotizen', - 'adminnotes' => 'Adminnotizen', - 'notessaved' => 'Notizen gespeichert!', - 'lastedited' => 'Zuletzt bearbeitet von %1$s um %2$s', - 'savenotes' => 'Notizen speichern', - 'waitingroom' => 'Warteraum', - 'waittext' => 'Wilkommen %1$s, Ihre Anmeldung wurde verzögert, Sie können den Chat in %2$d Sekunden benutzen.', - 'admwaittext' => 'Wilkommen %1$s, Ihre Anmeldung wurde verzögert, Sie könnent den Chat benutzen, sobald ein Moderator Sie hereinlässt.', - 'waitreload' => 'Wenn diese Seite sich nicht alle %d Sekunden aktualisiert, benutze den Knopf unten, um die Seite manuell neu zu laden!', - 'reload' => 'Aktualisieren', - 'rules' => 'Regeln', - 'talkto' => 'Senden an', - 'toall' => 'Alle Teilnehmer', - 'tomem' => 'Nur Mitglieder', - 'tostaff' => 'Nur Moderatoren', - 'toadmin' => 'Nur Admins', - 'alsopurge' => 'Auch Nachrichten löschen', - 'dellast' => 'Letzte Nachricht löschen', - 'delall' => 'Alle Nachrichten löschen', - 'switchsingle' => 'Zu Einzel-Zeile wechseln', - 'switchmulti' => 'Zu Mehrfach-Zeilen wechseln', - 'help' => 'Hilfe', - 'helpguest' => 'Alle Funktionen sollten recht selbsterklärend sein, benutze einfach die Knöpfe. In Ihrem Profil könnsen Sie die Aktualisierungsrate und Schriftfarbe anpassen, sowie Nutzer ignorieren.
Hinweis: Dies ist ein Chat, wenn Sie also nichts schreiben, werden Sie automatisch nach einiger Zeit abgemeldet.', - 'helpembed' => 'Wenn Sie ein Bild einbetten möchten, fügen Sie einfach ein [img] vor die Adresse des Bildes. Beispiel: [img]http://example.com/images/file.jpg bettet das Bild in Ihrem Beitrag ein.', - 'helpmem' => 'Mitglieder: Sie werden einige zusätzliche Optionen in Ihrem Profil haben. Sie können Ihre Schriftart ändern, Ihr Passwort jederzeit ändern und natürlich können Sie auch Ihr Profil löschen.', - 'helpmod' => 'Moderatoren: Achten Sie auf den Admin-Knof unten. Er ruft eine Seite auf, auf der Sie Nachrichten löschen können, Teilnehmer rausschmeißen können, alle aktive Sitzungen anzeigen lassen können und den Gastzugriff deaktivieren können, falls dies nötig sein sollte.', - 'helpadm' => 'Admins: Sie werden zusätzlich in der Lage sein Gäste zu registrieren, Mitglieder zu verwalten und neue Nicknanem zu registrieren.', - 'profile' => 'Ihr Profil', - 'ignore' => 'Ignorieren', - 'unignore' => 'Nicht mehr ignorieren', - 'refreshrate' => 'Aktualisierungsrate (%1$d-%2$d Sekunden)', - 'fontcolour' => 'Schriftfarbe', - 'viewexample' => 'Beispiele anzeigen', - 'bgcolour' => 'Hintergrundfarbe', - 'fontface' => 'Schriftart', - 'roomdefault' => 'Raumstandard', - 'bold' => 'Fett', - 'italic' => 'Kursiv', - 'small' => 'Klein', - 'fontexample' => 'Beispiel für Ihre gewählte Schrift', - 'timestamps' => 'Zeitstempel anzeigen', - 'embed' => 'Bilder einbetten', - 'incognito' => 'Inkognito Modus', - 'changenick' => 'Nickname ändern', - 'changepass' => 'Passwort ändern', - 'oldpass' => 'Altes Passwort:', - 'newpass' => 'Neues Passwort:', - 'confirmpass' => 'Passwort bestätigen:', - 'savechanges' => 'Änderungen speichern', - 'reloadpb' => 'Postbox neu laden', - 'reloadmsgs' => 'Nachrichten neu laden', - 'viewpublicnotes' => 'Öffentliche Notizen anzeigen', - 'chgprofile' => 'Profil', - 'adminbtn' => 'Admin', - 'admnotes' => 'Adminnotizen', - 'notes' => 'Notizen', - 'clone' => 'Klonen', - 'randh' => 'Regeln & Hilfe', - 'exit' => 'Verlassen', - 'bye' => 'Auf Wiedersehen %s, besuche uns bald wieder!', - 'colourtable' => 'Farbtabelle', - 'backtoprofile' => 'Zurück zu Ihrem Profil', - 'copy' => 'Kopiere:', - 'choosecol' => 'Textfarbe auswählen:', - 'randomcol' => 'Zufällige Farbe', - 'enter' => 'Chat beitreten', - 'error' => 'Fehler', - 'admin' => 'Admin', - 'staff' => 'Moderatoren', - 'members' => 'Mitglieder', - 'guests' => 'Gäste', - 'approveguests' => '%d neue Gäste zum Hereinlassen', - 'allowchecked' => 'Ausgewählte erlauben', - 'allowall' => 'Alle erlauben', - 'denychecked' => 'Ausgewählte abweisen', - 'denyall' => 'Alle abweisen', - 'denymessage' => 'Nachricht an abgewiesene senden:', - 'butallowdeny' => 'Senden', - 'waitempty' => 'Keine weiteren Beitrittsanfragen zu akzeptieren.', - 'wrongcaptcha' => 'Falsches Captcha', - 'captchaexpire' => 'Captcha wurde bereits verwendet oder ist abgelaufen.', - 'noguests' => 'Entschuldigung, zur Zeit nur Mitglieder!', - 'curchat' => 'Zurzeit sind %d Teilnehmer im Raum:', - 'cantreg' => '%s kann nicht registriert werden', - 'alreadyreged' => '%s ist bereits registriert.', - 'successreg' => '%s wurde erfolgreich registriert.', - 'cantchgstat' => 'Der Status von %s kann nicht geändert werden.', - 'succdel' => '%s wurde erfolgriech aus der Datenbank gelöscht.', - 'succchg' => 'Status of %s successfully changed.', - 'wrongpass' => 'Falsches Passwort!', - 'wrongglobalpass' => 'Falsches gloables Passwort!', - 'succprofile' => 'Ihr Profil wurde erfolgreich gespeichert.', - 'backtologin' => 'Zurück zur Anmeldeseite.', - 'backtochat' => 'Zurück zum Chat.', - 'Beige' => 'Beige', - 'Black' => 'Schwarz', - 'Blue' => 'Blau', - 'BlueViolet' => 'Blauviolett', - 'Brown' => 'Braun', - 'Cyan' => 'Türkis', - 'DarkBlue' => 'Dunkelblau', - 'DarkGreen' => 'Dunkelgrün', - 'DarkRed' => 'Dunkelrot', - 'DarkViolet' => 'Dunkelviolett', - 'DeepSkyBlue' => 'Himmelsblau', - 'Gold' => 'Gold', - 'Grey' => 'Grau', - 'Green' => 'Grün', - 'HotPink' => 'Pink', - 'Indigo' => 'Indigoblau', - 'LightBlue' => 'Hellblau', - 'LightGreen' => 'Hellgrün', - 'LimeGreen' => 'Lindgrün', - 'Magenta' => 'Magenta', - 'Olive' => 'Oliv', - 'Orange' => 'Orange', - 'OrangeRed' => 'Orangerot', - 'Purple' => 'Lila', - 'Red' => 'Rot', - 'RoyalBlue' => 'Königsblau', - 'SeaGreen' => 'Seegrün', - 'Sienna' => 'Siena', - 'Silver' => 'Silber', - 'Tan' => 'Hellbraun', - 'Teal' => 'Blaugrün', - 'Violet' => 'Violett', - 'White' => 'Weiß', - 'Yellow' => 'Gelb', - 'YellowGreen' => 'Gelbgrün', - 'redirectto' => 'Leite weiter zu:', - 'nonhttp' => 'Nicht-http Adresse angefordert:', - 'dangerousnonhttp' => 'Nicht-http Adresse angefordert. Kopieren Sie diesen Link und fügen ihn ein, falls Sie wirklich sicher sind.:', - 'httpredir' => 'Wenn sie nicht funktioniert, probiere diese:', - 'actions' => 'Aktionen', - 'sesip' => 'IP-Adresse', - 'css' => 'CSS Style', - 'memberexpire' => 'Mitglieder-Ablaufzeit (Minuten)', - 'guestexpire' => 'Gast-Ablaufzeit (Minuten)', - 'kickpenalty' => 'Rausschmiss-Strafzeit (Minuten)', - 'entrywait' => 'Warteraum-Zeit (Sekunden)', - 'captchatime' => 'Captcha-Ablaufzeit (Sekunden)', - 'messageexpire' => 'Nachrichten-Ablaufzeit (Minuten)', - 'messagelimit' => 'Nachrichtenlimit (öffentliche)', - 'maxmessage' => 'Maximale Nachrichenlänge', - 'confirm' => 'Sind Sie sicher?', - 'yes' => 'Ja', - 'no' => 'Nein', - 'colbg' => 'Hintergrundfarbe', - 'coltxt' => 'Schriftfarbe', - 'maxname' => 'Maximale Nicknamen-Länge', - 'minpass' => 'Minimale Passwortlänge', - 'defaultrefresh' => 'Standardzeit zum Neuladen der Nachrichten (Sekunden)', - 'suguests' => 'Anwerber aktivieren', - 'rulestxt' => 'Regeln (html)', - 'imgembed' => 'Bilder einbetten', - 'trackip' => 'Sitzungs-IP anzeigen', - 'captchachars' => 'Im Captcha benutzte Zeichen', - 'memkick' => 'Mitglieder dürfen Rasusschmeißen, wenn kein Moderator da ist', - 'memkickalways' => 'Mitglieder dürfen immer Rasusschmeißen', - 'forceredirect' => 'Umleitung erzwingen', - 'redirect' => 'Benutzerdefinierte Umleitungsadresse', - 'backuprestore' => 'Sichern und wiederherstellen', - 'backup' => 'Sichern', - 'restore' => 'Wiederherstellen', - 'settings' => 'Einstellungen', - 'linkfilter' => 'Linkfilter', - 'chatname' => 'Chatname', - 'destroy' => 'Chat zerstören', - 'destroyed' => 'Chat erfolgreich zerstört', - 'topic' => 'Thema', - 'passreset' => 'Passwort zurücksetzen', - 'cantresetpass' => 'Passwort kann nicht zurückgesetzt werden', - 'succpassreset' => 'Passwort erfolgreich zurückgesetzt', - 'entermsg' => '%s hat den Chat betreten.', - 'exitmsg' => '%s hat den Chat verlassen.', - 'memregmsg' => '%s ist jetzt ein registriertes Mitglied.', - 'suregmsg' => '%s ist jetzt ein registrierter Anwerber.', - 'kickmsg' => '%s wurde rausgeschmissen.', - 'multikickmsg' => '%s wurden rausgeschmissen.', - 'allkickmsg' => 'Alle Gäste wurden rausgeschmissen.', - 'cleanmsg' => '%s wurde geleert.', - 'sendallmsg' => '%s - ', - 'sendmemmsg' => '[M] %s - ', - 'sendmodmsg' => '[Moderatoren] %s - ', - 'sendadmmsg' => '[Admin] %s - ', - 'sendprvmsg' => '[%1$s an %2$s] - ', - 'msgsendall' => 'Nachricht an alle', - 'msgsendmem' => 'Nachricht nur an Mitglieder', - 'msgsendmod' => 'Nachricht nur an Moderatoren', - 'msgsendadm' => 'Nachricht nur an Admins', - 'msgsendprv' => 'Private Nachricht', - 'numnotes' => 'Anzahl an zu behaltenden Notizversionen', - 'revisions' => 'Revisionen:', - 'older' => 'Älter', - 'newer' => 'Neuer', - 'accessdenied' => 'Zugriff verweigert', - 'loggedinas' => 'Sie sind als %s angemeldet und haben keinen Zugriff auf diesen Bereich.', - 'newnickname' => 'Neuer Nickname:', - 'nicknametaken' => 'Nickname ist bereits vergeben', - 'nopass' => 'Ungültiges Passwort (Mindestens %d Zeichen), Nickname nicht geändert', - 'gdextrequired' => 'Für diese Funktion wird die gd Erweiterung von PHP benötigt. Bitte installieren Sie diese zuerst.', - 'memcachedextrequired' => 'Die memcached Erweiterung von PHP wird benötigt, um die Cache-Funktion zu benutzen. Bitte installieren Sie diese zuerst oder setzen Sie die memcached Einstellung zurück auf false.', - 'sodiumextrequired' => 'Die libsodium Erweiterung von PHP wird benötigt, um die Verschlüsselungs-Funktion zu benutzen. Bitte installieren Sie diese zuerst oder setzen Sie die encrypted Einstellung zurück auf false.', - 'pdo_mysqlextrequired' => 'Die pdo_mysql Erweiterung von PHP wird für den ausgewählten Datenbanktreiber benötigt. Bitte installieren Sie diese zuerst.', - 'pdo_pgsqlextrequired' => 'Die pdo_pgsql Erweiterung von PHP wird für den ausgewählten Datenbanktreiber benötigt. Bitte installieren Sie diese zuerst.', - 'pdo_sqliteextrequired' => 'Die pdo_sqlite Erweiterung von PHP wird für den ausgewählten Datenbanktreiber benötigt. Bitte installieren Sie diese zuerst.', - 'jsonextrequired' => 'Für diese Funktion wird die json Erweiterung von PHP benötigt. Bitte installieren Sie diese zuerst.', - 'sendmail' => 'E-Mail bei neuer Nachricht senden', - 'mailsender' => 'E-Mail mit dieser Adresse versenden', - 'mailreceiver' => 'E-Mail and diese Adresse senden', - 'modfallback' => 'Auf Warteraum rückgreifen, falls kein Moderator anwesend ist, um Gäste hereinzulassen', - 'regpass' => 'Passwortwiederholung
(zur Neuregistrierung)', - 'guestreg' => 'Gäste sich selbst registrieren lassen', - 'asmember' => 'Als Mitglied', - 'assuguest' => 'Als Anwerber', - 'fatalerror' => 'Fataler Fehler', - 'prevmatch' => 'Ihr regex war folgender', - 'matchtoolong' => 'Ihr Match war zu lang. Sie können max. 255 Zeichen benutzen. Versuchen Sie diesen aufzuteilen.', - 'nocache' => 'Autoscrollen (für alte Browser oder oben nach unten Sortierung).', - 'disablepm' => 'Private Nachrichten deaktivieren', - 'disablechat' => 'Chat deaktivieren', - 'disabletext' => 'Chat deaktiviert Nachricht (html)', - 'disabledtext' => 'Kurzzeitig deaktiviert', - 'defaulttz' => 'Standard Zeitzone', - 'tz' => 'Zeitzone', - 'optional' => '(optional)', - 'userloggedin' => 'Ein Nutzer mit diesem Nicknamen ist bereits angemeldet.', - 'regednick' => 'Dieser Nickname ist bereits ein registriertes Mitglied.', - 'failednotice' => 'Fehlgeschlagener Anmeldeversuch(n)', - 'dismiss' => 'entlassen', - 'eninbox' => 'Offline Posteingang aktivieren', - 'inboxmsgs' => '%d Nachrichten im Posteingang lesen', - 'offline' => '(offline)', - 'deleteacc' => 'Konto löschen', - 'eninnone' => 'Für niemanden', - 'eninall' => 'Für jeden', - 'eninmem' => 'Nur für Mitglieder', - 'eninstaff' => 'Nur für Moderatoren', - 'eninadmin' => 'Nur für Administratoren', - 'nickregex' => 'Nickname-Regex', - 'passregex' => 'Passwort-Regex', - 'externalcss' => 'Link zu externer CSS Datei (auf Ihrem eigenen Server)', - 'greetingmsg' => 'Willkommen %s!', - 'entryhelp' => '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.', - 'enablegreeting' => 'Zeige eine Begrüßungsnachricht an, befor die Nachrichten geladen werden', - 'unban' => 'Entsperren', - 'sortupdown' => 'Nachrichten von oben nach unten sortieren', - 'sortframe' => 'Umordnen', - 'cs' => 'Groß-/Kleinschreibung beachten', - 'hidechatters' => 'Teilnehmerlist ausblenden', - 'enfileupload' => 'Dateien hochladen aktivieren', - 'msgattache' => 'Anhang', - 'filenotfound' => 'Datei nicht gefunden!', - 'maxuploadsize' => 'Maximal hochgeladene Dateigröße in KB', - 'maxsize' => 'Max %d KB', - 'cssupdate' => 'Hinweis: Standard CSS ist jetzt hardcoded und kann aus der CSS Einstellung entfernt werden', - 'manualrefresh' => 'Manuelles Neuladen erforderlich', - 'personalnotes' => 'Persönliche Notizen', - 'publicnotes' => 'Öffentliche Notizen', - 'filtermodkick' => 'Kickfilter auf Moderatoren anwenden', - 'namedoers' => 'Zeigen Sie, wer Menschen vertreibt oder alle Nachrichten löscht.', - 'forgotlogin' => 'Zugangsdaten vergessen?', - 'resetinstruction' => 'Bitte bearbeiten Sie das Skript und fügen Sie folgendes am Ende der Datei hinzu (und ändern Sie das Passwort "changeme"). Danach aktualisieren Sie die Seite bitte: define(\'RESET_SUPERADMIN_PASSWORD\', \'changeme\');', - 'resetpassword' => 'Passwort zurücksetzen', - 'resetsucc' => 'Passwort erfolgreich für Nutzer %s zurückgesetzt. Bitte entfernen Sie das Passwort zurücksetzen define wieder aus dem Skript.', - 'Zurück zur Einrichtungsseite', - 'defaultmetadescription' => 'Eine Chatgemeinschaft', - 'metadescription' => 'Metabeschreibung (Am Besten 50 - 160 Zeichen für SEO)', - 'hide_reload_post_box' => 'Postbox neu Laden Knopf verstecken', - 'hide_reload_messages' => 'Nachrichten neu laden Knopf verstecken', - 'hide_profile' => 'Profil-Knopf verstecken', - 'hide_admin' => 'Admin-Knopf verstecken', - 'hide_notes' => 'Notizen-Knopf verstecken', - 'hide_clone' => 'Klonen-Knopf verstecken', - 'hide_rearrange' => 'Umordnen-Knopf verstecken', - 'hide_help' => 'Hilfe-Knopf verstecken', - 'max_refresh_rate' => 'Niedrigste Aktualisierungsrate', - 'min_refresh_rate' => 'Höchste Aktualisierungsrate', - 'postbox_delete_globally' => 'Postbox Löschknöpfe global anwenden', - 'allow_js' => 'Verbessern der Funktionalität mit JavaScript erlauben', -]; diff --git a/lang_en.php b/lang_en.php deleted file mode 100644 index 74cd857..0000000 --- a/lang_en.php +++ /dev/null @@ -1,398 +0,0 @@ - -* -* This program is free software: you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. -* -* This program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with this program. If not, see . -*/ - -//Native language name: English -$I=[ - 'nodb' => 'No connection to database!', - 'nodbsetup' => 'No connection to database, please create a database and edit the script to use the correct database with given username and password!', - 'changelang' => 'Change language:', - 'expire' => 'Invalid/expired session', - 'kicked' => 'You have been kicked!', - 'invalnick' => 'Invalid nickname (%1$d characters maximum and has to match the regular expression "%2$s")', - 'invalpass' => 'Invalid password (At least %1$d characters and has to match the regular expression "%2$s")', - 'noconfirm' => 'Password confirmation does not match!', - 'incorregex' => 'Incorrect regular expression!', - 'bottom' => 'Bottom', - 'top' => 'Top', - 'choose' => '(choose)', - 'setup' => 'Chat Setup', - 'init' => 'Initial Setup', - 'sulogin' => 'Superadmin Login', - 'sunick' => 'Superadmin Nickname:', - 'supass' => 'Superadmin Password:', - 'suconfirm' => 'Confirm Password:', - 'susuccess' => 'Successfully registered!', - 'initbtn' => 'Initalise Chat', - 'initdbexist' => 'Database tables already exist! To continue, you have to delete these tables manually first.', - 'initsuexist' => 'A Superadmin already exists!', - 'initgosetup' => 'Go to the Setup-Page', - 'captcha' => 'Captcha', - 'enabled' => 'Enabled', - 'onlyguests' => 'Only for guests', - 'disabled' => 'Disabled', - 'simple' => 'Simple', - 'moderate' => 'Moderate', - 'extreme' => 'Extreme', - 'nick' => 'Nickname:', - 'pass' => 'Password:', - 'globalloginpass' => 'Global Password:', - 'login' => 'Login', - 'dbupdate' => 'Database successfully updated!', - 'sysmessage' => 'system message', - 'sysmessages' => 'System messages', - 'sysmessagetxt' => 'Prepend this text to system messages', - 'msgenter' => 'Entrance', - 'msgexit' => 'Leaving', - 'msgmemreg' => 'Member registered', - 'msgsureg' => 'Applicant registered', - 'msgkick' => 'Kicked', - 'msgmultikick' => 'Multiple kicked', - 'msgallkick' => 'All kicked', - 'msgclean' => 'Room cleaned', - 'dateformat' => 'Date formating', - 'admfunc' => 'Administrative functions', - 'allguests' => 'All guests', - 'cleanmsgs' => 'Clean messages', - 'room' => 'Whole room', - 'selection' => 'Selection', - 'cleannick' => 'Following nickname:', - 'clean' => 'Clean', - 'kickchat' => 'Kick Chatter (%d minutes)', - 'kickreason' => 'Kickmessage:', - 'kickpurge' => 'Purge messages', - 'kick' => 'Kick', - 'logoutinact' => 'Logout inactive Chatter', - 'logout' => 'Logout', - 'sessions' => 'View active sessions', - 'view' => 'View', - 'filter' => 'Filter', - 'guestacc' => 'Change Guestaccess', - 'guestallow' => 'Allow', - 'guestwait' => 'Allow with waitingroom', - 'adminallow' => 'Require moderator approval', - 'guestdisallow' => 'Only members', - 'addsuguest' => 'Register applicant', - 'register' => 'Register', - 'admmembers' => 'Members', - 'memdel' => 'Delete from database', - 'memdeny' => 'Deny access (!)', - 'memsuguest' => 'Set to applicant (SG)', - 'memreg' => 'Set to regular member', - 'memmod' => 'Set to moderator (M)', - 'memsumod' => 'Set to supermod (SM)', - 'memadm' => 'Set to admin (A)', - 'change' => 'Change', - 'regguest' => 'Register Guest', - 'regmem' => 'Register new Member', - 'sessact' => 'Active Sessions', - 'sessnick' => 'Nickname', - 'sesstimeout' => 'Timeout in', - 'sessua' => 'User-Agent', - 'fid' => 'Filter ID:', - 'match' => 'Match', - 'replace' => 'Replace', - 'allowpm' => 'Allow in PM', - 'regex' => 'Regex', - 'apply' => 'Apply', - 'newfilter' => 'New filter:', - 'add' => 'Add', - 'noframes' => 'This chat uses frames. Please enable frames in your browser or use a suitable one!', - 'delselmes' => 'Delete selected messages', - 'staffnotes' => 'Staff notes', - 'adminnotes' => 'Admin notes', - 'notessaved' => 'Notes saved!', - 'lastedited' => 'Last edited by %1$s at %2$s', - 'savenotes' => 'Save Notes', - 'waitingroom' => 'Waiting room', - 'waittext' => 'Welcome %1$s, your login has been delayed, you can access the chat in %2$d seconds.', - 'admwaittext' => 'Welcome %1$s, your login has been delayed, you can access the chat as soon, as a moderator lets you in.', - 'waitreload' => 'If this page doesn\'t refresh every %d seconds, use the button below to reload it manually!', - 'reload' => 'Reload', - 'rules' => 'Rules', - 'talkto' => 'Send to', - 'toall' => 'All chatters', - 'tomem' => 'Members only', - 'tostaff' => 'Staff only', - 'toadmin' => 'Admin only', - 'alsopurge' => 'Also purge messages', - 'dellast' => 'Delete last message', - 'delall' => 'Delete all messages', - 'switchsingle' => 'Switch to single-line', - 'switchmulti' => 'Switch to multi-line', - 'help' => 'Help', - 'helpguest' => '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.', - 'helpembed' => '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.', - 'helpmem' => '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.', - 'helpmod' => '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.', - 'helpadm' => 'Admins: You\'ll be furthermore able to register guests, edit members and register new nicknames.', - 'profile' => 'Your Profile', - 'ignore' => 'Ignore', - 'unignore' => 'Don\'t ignore anymore', - 'refreshrate' => 'Refresh rate (%1$d-%2$d seconds)', - 'fontcolour' => 'Font colour', - 'viewexample' => 'View examples', - 'bgcolour' => 'Background colour', - 'fontface' => 'Fontface', - 'roomdefault' => 'Room Default', - 'bold' => 'Bold', - 'italic' => 'Italic', - 'small' => 'Small', - 'fontexample' => 'Example for your chosen font', - 'timestamps' => 'Show Timestamps', - 'embed' => 'Embed images', - 'incognito' => 'Incognito mode', - 'changenick' => 'Change Nickname', - 'changepass' => 'Change Password', - 'oldpass' => 'Old password:', - 'newpass' => 'New password:', - 'confirmpass' => 'Confirm new password:', - 'savechanges' => 'Save changes', - 'reloadpb' => 'Reload Post Box', - 'reloadmsgs' => 'Reload Messages', - 'viewpublicnotes' => 'View public notes', - 'chgprofile' => 'Profile', - 'adminbtn' => 'Admin', - 'admnotes' => 'Admin Notes', - 'notes' => 'Notes', - 'clone' => 'Clone', - 'randh' => 'Rules & Help', - 'exit' => 'Exit Chat', - 'bye' => 'Bye %s, visit again soon!', - 'colourtable' => 'Colourtable', - 'backtoprofile' => 'Back to your Profile', - 'copy' => 'Copy:', - 'choosecol' => 'Guests, choose a colour:', - 'randomcol' => 'Random Colour', - 'enter' => 'Enter Chat', - 'error' => 'Error', - 'admin' => 'Admin', - 'staff' => 'Staff', - 'members' => 'Members', - 'guests' => 'Guests', - 'approveguests' => '%d new guests to approve', - 'allowchecked' => 'Allow checked', - 'allowall' => 'Allow all', - 'denychecked' => 'Deny checked', - 'denyall' => 'Deny all', - 'denymessage' => 'Send message to denied:', - 'butallowdeny' => 'Submit', - 'waitempty' => 'No more entry requests to approve.', - 'wrongcaptcha' => 'Wrong Captcha', - 'captchaexpire' => 'Captcha already used or timed out.', - 'noguests' => 'Sorry, currently members only!', - 'curchat' => 'Currently %d chatter(s) in room:', - 'cantreg' => 'Can\'t register %s', - 'alreadyreged' => '%s is already registered.', - 'successreg' => '%s successfully registered.', - 'cantchgstat' => 'Can\'t change status of %s', - 'succdel' => '%s successfully deleted from database.', - 'succchg' => 'Status of %s successfully changed.', - 'wrongpass' => 'Wrong Password!', - 'wrongglobalpass' => 'Wrong global Password!', - 'succprofile' => 'Your profile has successfully been saved.', - 'backtologin' => 'Back to the login page.', - 'backtochat' => 'Back to the chat.', - 'Beige' => 'Beige', - 'Black' => 'Black', - 'Blue' => 'Blue', - 'BlueViolet' => 'Blue violet', - 'Brown' => 'Brown', - 'Cyan' => 'Cyan', - 'DarkBlue' => 'Dark blue', - 'DarkGreen' => 'Dark green', - 'DarkRed' => 'Dark red', - 'DarkViolet' => 'Dark violet', - 'DeepSkyBlue' => 'Sky blue', - 'Gold' => 'Gold', - 'Grey' => 'Grey', - 'Green' => 'Green', - 'HotPink' => 'Hot pink', - 'Indigo' => 'Indigo', - 'LightBlue' => 'Light blue', - 'LightGreen' => 'Light green', - 'LimeGreen' => 'Lime green', - 'Magenta' => 'Magenta', - 'Olive' => 'Olive', - 'Orange' => 'Orange', - 'OrangeRed' => 'Orange red', - 'Purple' => 'Purple', - 'Red' => 'Red', - 'RoyalBlue' => 'Royal blue', - 'SeaGreen' => 'Sea green', - 'Sienna' => 'Sienna', - 'Silver' => 'Silver', - 'Tan' => 'Tan', - 'Teal' => 'Teal', - 'Violet' => 'Violet', - 'White' => 'White', - 'Yellow' => 'Yellow', - 'YellowGreen' => 'Yellow green', - 'redirectto' => 'Redirecting to:', - 'nonhttp' => 'Non-http link requested:', - 'dangerousnonhttp' => 'Dangerous non-http link requested, copy paste this link if you are really sure:', - 'httpredir' => 'If it\'s not working, try this one:', - 'actions' => 'Actions', - 'sesip' => 'IP-Address', - 'css' => 'CSS Style', - 'memberexpire' => 'Member timeout (minutes)', - 'guestexpire' => 'Guest timeout (minutes)', - 'kickpenalty' => 'Kick penalty (minutes)', - 'entrywait' => 'Waiting room time (seconds)', - 'captchatime' => 'Captcha timeout (seconds)', - 'messageexpire' => 'Message timeout (minutes)', - 'messagelimit' => 'Message limit (public)', - 'maxmessage' => 'Maximal message length', - 'confirm' => 'Are you sure?', - 'yes' => 'Yes', - 'no' => 'No', - 'colbg' => 'Background colour', - 'coltxt' => 'Text colour', - 'maxname' => 'Maximal nickname length', - 'minpass' => 'Minimal password length', - 'defaultrefresh' => 'Default message reload time (seconds)', - 'suguests' => 'Enable applicants', - 'rulestxt' => 'Rules (html)', - 'imgembed' => 'Embed images', - 'trackip' => 'Show session-IP', - 'captchachars' => 'Characters used in Captcha', - 'memkick' => 'Members can kick, if no moderator is present', - 'memkickalways' => 'Members can always kick', - 'forceredirect' => 'Force redirection', - 'redirect' => 'Custom redirection script', - 'backuprestore' => 'Backup and restore', - 'backup' => 'Backup', - 'restore' => 'Restore', - 'settings' => 'Settings', - 'linkfilter' => 'Linkfilter', - 'chatname' => 'Chat name', - 'destroy' => 'Destroy chat', - 'destroyed' => 'Successfully destroyed chat', - 'topic' => 'Topic', - 'passreset' => 'Reset password', - 'cantresetpass' => 'Can\'t reset password', - 'succpassreset' => 'Successfully reset password', - 'entermsg' => '%s entered the chat.', - 'exitmsg' => '%s left the chat.', - 'memregmsg' => '%s is now a registered member.', - 'suregmsg' => '%s is now a registered applicant.', - 'kickmsg' => '%s has been kicked.', - 'multikickmsg' => '%s have been kicked.', - 'allkickmsg' => 'All guests have been kicked.', - 'cleanmsg' => '%s has been cleaned.', - 'sendallmsg' => '%s - ', - 'sendmemmsg' => '[M] %s - ', - 'sendmodmsg' => '[Staff] %s - ', - 'sendadmmsg' => '[Admin] %s - ', - 'sendprvmsg' => '[%1$s to %2$s] - ', - 'msgsendall' => 'Message to all', - 'msgsendmem' => 'Message to members only', - 'msgsendmod' => 'Message to staff only', - 'msgsendadm' => 'Message to admins only', - 'msgsendprv' => 'Private message', - 'numnotes' => 'Number of notes revisions to keep', - 'revisions' => 'Revisions:', - 'older' => 'Older', - 'newer' => 'Newer', - 'accessdenied' => 'Access denied', - 'loggedinas' => 'You are logged in as %s and don\'t have access to this section.', - 'newnickname' => 'New nickname:', - 'nicknametaken' => 'Nickname is already taken', - 'nopass' => 'Invalid password (At least %d characters), not changing nickname', - 'gdextrequired' => 'The gd extension of PHP is required for this feature. Please install it first.', - 'memcachedextrequired' => 'The memcached extension of PHP is required for the caching feature. Please install it first or set the memcached setting back to false.', - 'sodiumextrequired' => 'The libsodium extension of PHP is required for the encryption feature. Please install it first or set the encrypted setting back to false.', - 'pdo_mysqlextrequired' => 'The pdo_mysql extension of PHP is required for the selected database driver. Please install it first.', - 'pdo_pgsqlextrequired' => 'The pdo_pgsql extension of PHP is required for the selected database driver. Please install it first.', - 'pdo_sqliteextrequired' => 'The pdo_sqlite extension of PHP is required for the selected database driver. Please install it first.', - 'jsonextrequired' => 'The json extension of PHP is required for this feature. Please install it first.', - 'sendmail' => 'Send mail on new public message', - 'mailsender' => 'Send mail using this address', - 'mailreceiver' => 'Send mail to this address', - 'modfallback' => 'Fallback to waiting room, if no moderator is present to approve guests', - 'regpass' => 'Repeat password
to register', - 'guestreg' => 'Let guests register themselves', - 'asmember' => 'As member', - 'assuguest' => 'As applicant', - 'fatalerror' => 'Fatal error', - 'prevmatch' => 'Your match was as follows', - 'matchtoolong' => 'Your match was too long. You can use max. 255 characters. Try splitting it up.', - 'nocache' => 'Autoscroll (for old browsers or top-to-bottom sort).', - 'disablepm' => 'Disable private messages', - 'disablechat' => 'Disable chat', - 'disabletext' => 'Chat disabled message (html)', - 'disabledtext' => 'Temporarily disabled', - 'defaulttz' => 'Default time zone', - 'tz' => 'Time zone', - 'optional' => '(optional)', - 'userloggedin' => 'A user with this nickname is already logged in.', - 'regednick' => 'This nickname is a registered member.', - 'failednotice' => 'failed login attempt(s)', - 'dismiss' => 'dismiss', - 'eninbox' => 'Enable offline inbox', - 'inboxmsgs' => 'Read %d messages in your inbox', - 'offline' => '(offline)', - 'deleteacc' => 'Delete account', - 'eninnone' => 'For no one', - 'eninall' => 'For everyone', - 'eninmem' => 'For members only', - 'eninstaff' => 'For staff only', - 'eninadmin' => 'For admins only', - 'nickregex' => 'Nickname regex', - 'passregex' => 'Password regex', - 'externalcss' => 'Link to external CSS file (on your own server)', - 'greetingmsg' => 'Welcome %s!', - 'entryhelp' => '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.', - 'enablegreeting' => 'Show a greeting message before showing the messages', - 'unban' => 'Unban', - 'sortupdown' => 'Sort messages from top to bottom', - 'sortframe' => 'Rearrange', - 'cs' => 'Case sensitive', - 'hidechatters' => 'Hide list of chatters', - 'enfileupload' => 'Enable file uploads', - 'msgattache' => 'Attachement', - 'filenotfound' => 'File not found!', - 'maxuploadsize' => 'Maximum upload size in KB', - 'maxsize' => 'Max %d KB', - 'cssupdate' => 'Note: Default CSS is now hardcoded and can be removed from the CSS setting', - 'manualrefresh' => 'Manual refresh required', - 'personalnotes' => 'Personal notes', - 'publicnotes' => 'Public notes', - 'filtermodkick' => 'Apply kick filter on moderators', - 'namedoers' => 'Show who kicks people or purges all messages.', - 'forgotlogin' => 'Forgot login?', - 'resetinstruction' => '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\');', - 'resetpassword' => 'Reset password', - 'resetsucc' => 'Successfully reset password for username %s. Please remove the password reset define from the script again.', - 'backtosetup' => 'Back to setup', - 'defaultmetadescription' => 'A chat community', - 'metadescription' => 'Meta description (best 50 - 160 characters for SEO)', - 'hide_reload_post_box' => 'Hide reload post box button', - 'hide_reload_messages' => 'Hide reload messages button', - 'hide_profile' => 'Hide profile button', - 'hide_admin' => 'Hide admin button', - 'hide_notes' => 'Hide notes button', - 'hide_clone' => 'Hide clone button', - 'hide_rearrange' => 'Hide rearrange button', - 'hide_help' => 'Hide help button', - 'max_refresh_rate' => 'Lowest refresh rate', - 'min_refresh_rate' => 'Highest refresh rate', - 'postbox_delete_globally' => 'Apply postbox delete button globally', - 'allow_js' => 'Allow enhancing functionality with JavaScript', -]; diff --git a/lang_es.php b/lang_es.php deleted file mode 100644 index ec08ae3..0000000 --- a/lang_es.php +++ /dev/null @@ -1,378 +0,0 @@ - -* -* This program is free software: you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. -* -* This program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with this program. If not, see . -*/ - -//Native language name: Español -$T=[ - 'nodb' => '¡Sin conexión a la base de datos!', - 'nodbsetup' => '¡No pudo conectarse a la base de datos! Por favor creá la base de datos y editá el script para usarla con el nombre de usuario y clave dados.', - 'changelang' => 'Cambiar idioma:', - 'expire' => 'La sesión es inválida o expiró', - 'kicked' => '¡Te expulsaron!', - 'invalnick' => 'NickName inválido (%1$d characters maximum and has to match the regular expression "%2$s")', - 'invalpass' => 'Contraseña erronea(At least %1$d characters and has to match the regular expression "%2$s")', - 'noconfirm' => '¡La contraseña y su confirmación no coinciden!', - 'incorregex' => '¡Expresión regular incorrecta!', - 'bottom' => 'Inicio', - 'top' => 'Fin', - 'choose' => '(elegí)', - 'setup' => 'Configuración del chat', - 'init' => 'Configuración inicial', - 'sulogin' => 'Registro de Superadministrador', - 'sunick' => 'Apodo del superadmin:', - 'supass' => 'Contraseña del superadmin:', - 'suconfirm' => 'Confirmar contraseña:', - 'susuccess' => '¡Registrado con éxito!', - 'initbtn' => 'Inicializar chat', - 'initdbexist' => '¡La base de datos ya existe! Para continuar, primero tenés que borrar esas tablas manualmente.', - 'initsuexist' => '¡Ya existe un superadministrador!', - 'initgosetup' => 'Ir a la página de configuración', - 'captcha' => 'Captcha', - 'enabled' => 'Habilitado', - 'onlyguests' => 'Sólo para invitados', - 'disabled' => 'Deshabilitado', - 'simple' => 'Simple', - 'moderate' => 'Moderado', - 'extreme' => 'Extremo', - 'nick' => 'Apodo:', - 'pass' => 'Contraseña:', - 'globalloginpass' => 'Contraseña global:', - 'login' => 'Identificarse', - 'dbupdate' => '¡La base de datos fue actualizada con éxito!', - 'sysmessage' => 'mensaje de sistema', - 'sysmessages' => 'Mensajes de sistema', - 'sysmessagetxt' => 'Este texto precede a los mensajes del sistema.', - 'msgenter' => 'Entrando', - 'msgexit' => 'Saliendo', - 'msgmemreg' => 'Miembro registrado', - 'msgsureg' => 'Aplicante registrado', - 'msgkick' => 'Expulsado', - 'msgmultikick' => 'Expulsión múltiple', - 'msgallkick' => 'Todos expulsados', - 'msgclean' => 'Sala limpiada', - 'dateformat' => 'Formato de fechas', - 'admfunc' => 'Funciones administrativas', - 'allguests' => 'Todos invitados', - 'cleanmsgs' => 'Limpiar mensajes', - 'room' => 'Sala entera', - 'selection' => 'Selección', - 'cleannick' => 'Siguiente Nick:', - 'clean' => 'Limpiar', - 'kickchat' => 'Expulsado (%d minutos)', - 'kickreason' => 'Motivo de expulsión:', - 'kickpurge' => 'Mensaje de purga', - 'kick' => 'Expulsar', - 'logoutinact' => 'Desconectar persona inactiva', - 'logout' => 'Desconectar', - 'sessions' => 'Ver sesiones activas', - 'view' => 'Ver', - 'filter' => 'Filtro', - 'guestacc' => 'Cambiar acceso de invitado', - 'guestallow' => 'Permitir', - 'guestwait' => 'Permitir con sala de espera', - 'adminallow' => 'Requiere aprobación del moderator', - 'guestdisallow' => 'Sólo miembros', - 'addsuguest' => 'Agregar aplicante', - 'register' => 'Registrar', - 'admmembers' => 'Miembros', - 'memdel' => 'Borrar de la base de datos', - 'memdeny' => 'Prohibir acceso (!)', - 'memsuguest' => 'Convertir en aplicante (SG)', - 'memreg' => 'Convertir en miembro regular', - 'memmod' => 'Convertir en moderador (M)', - 'memsumod' => 'Convertir en supermoderador (SM)', - 'memadm' => 'Convertir administrador (A)', - 'change' => 'Cambiar', - 'regguest' => 'Registrar invitado', - 'regmem' => 'Registrar miembro nuevo', - 'sessact' => 'Sesiones activas', - 'sessnick' => 'Apodo', - 'sesstimeout' => 'Vencimiento', - 'sessua' => 'Navegador', - 'fid' => 'ID del filtro:', - 'match' => 'Coincidencia', - 'replace' => 'Reemplazar', - 'allowpm' => 'Permitir en MP', - 'regex' => 'Expresión regular', - 'apply' => 'Aplicar', - 'newfilter' => 'Filtro nuevo:', - 'add' => 'Agregar', - 'noframes' => 'Este chat usa frames. ¡Por favor, habilitalos en tu navegador o usá uno que los permita!', - 'delselmes' => 'Borrar mensajes seleccionados', - 'staffnotes' => 'Notas del equipo', - 'adminnotes' => 'Notas de administrador', - 'notessaved' => '¡Notas guardadas!', - 'lastedited' => 'Editada por última vez por %1$s el %2$s', - 'savenotes' => 'Guardar notas', - 'waitingroom' => 'Sala de espera', - 'waittext' => 'Bienvenido %1$s, tu identificación fue demorada, podrás acceder a la sala en %2$d segundos.', - 'admwaittext' => 'Bienvenido %1$s, tu identificación fue demorada, podrás acceder a la sala en cuanto un administrador lo permita.', - 'waitreload' => 'Si esta página no se actualiza cada %d segundos, usa el botón de abajo para hacerlo manualmente.', - 'reload' => 'Recargar', - 'rules' => 'Reglas', - 'talkto' => 'Enviar a', - 'toall' => 'Todos', - 'tomem' => 'Sólo miembros', - 'tostaff' => 'Sólo equipo', - 'toadmin' => 'Sólo administradores', - 'alsopurge' => 'Además purgar mensajes', - 'dellast' => 'Eliminar el último mensaje', - 'delall' => 'Eliminar todos los mensajes', - 'switchsingle' => 'Cambiar a una sola línea', - 'switchmulti' => 'Cambiar a múltiples líneas', - 'help' => 'Ayuda', - 'helpguest' => 'Todas las funciones deberían ser auto-explicativas, sólo usa los botones. En tu perfil puedes ajustar el tiempo de actualización, el color del texto y el tamaño de caja que prefieras.
Nota: Esto es una sala de chat, así que si no te mantenés hablando, vas a ser expulsado automáticamente después de un tiempo.', - 'helpembed' => 'Si querés incluir una imagen en tu publicación, simplemente poné [img] al 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.', - 'helpmem' => '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.', - 'helpmod' => 'Moderadores: Notá el botón de administración al final de la página. Te va a llevar a una página donde podés limpiar la sala, expulsar personas, ver todas las sesiones activas y deshabilitar el acceso a invitados totalmente si fuese necesario.', - 'helpadm' => 'Administradores: Además vas a poder registrar invitados, editar miembros y registrar nuevos apodos sin que estén en la sala.', - 'profile' => 'Tu perfil', - 'ignore' => 'Ignorar', - 'unignore' => 'Dejar de ignorar', - 'refreshrate' => 'Tiempo de actualización (%1$d-%2$d segundos)', - 'fontcolour' => 'Color de texto', - 'viewexample' => 'Ver ejemplos', - 'bgcolour' => 'Color de fondo', - 'fontface' => 'Tipografía', - 'roomdefault' => 'Sala por defecto', - 'bold' => 'Negrita', - 'italic' => 'Bastardilla', - 'small' => 'Pequeño', - 'fontexample' => 'Ejemplo de la tipografía seleccionada', - 'timestamps' => 'Mostrar fecha y hora', - 'embed' => 'Habilitar imágenes', - 'incognito' => 'Modo incógnito', - 'changenick' => 'Cambiar Nick', - 'changepass' => 'Cambiar la contraseña', - 'oldpass' => 'Contraseña anterior:', - 'newpass' => 'Contraseña nueva:', - 'confirmpass' => 'Confirmar contraseña nueva:', - 'savechanges' => 'Guardar cambios', - 'reloadpb' => 'Recargar caja de publicación', - 'reloadmsgs' => 'Recargar mensajes', - 'viewpublicnotes' => 'Ver notas públicas', - 'chgprofile' => 'Perfil', - 'adminbtn' => 'Admin', - 'admnotes' => 'Notas de administrador', - 'notes' => 'Notas', - 'clone' => 'Clone', - 'randh' => 'Reglas y ayuda', - 'exit' => 'Salir de la sala', - 'bye' => '¡Chau %s, visítanos pronto!', - 'colourtable' => 'Colourtable', - 'backtoprofile' => 'Volver a tu perfil', - 'copy' => 'Copiar:', - 'choosecol' => 'Invitado, elegí un color:', - 'randomcol' => 'Color al azar', - 'enter' => 'Entrar a la sala', - 'error' => 'Error', - 'admin' => 'Admin', - 'staff' => 'Equipo', - 'members' => 'Miembros', - 'guests' => 'Invitados', - 'approveguests' => '%d nuevos invitados para aprobar', - 'allowchecked' => 'Aceptar marcados', - 'allowall' => 'Aceptar todos', - 'denychecked' => 'Rechazar marcados', - 'denyall' => 'Rechazar todos', - 'denymessage' => 'Enviar mensaje a rechazados:', - 'butallowdeny' => 'Enviar', - 'waitempty' => 'No hay más peticiones para aprobar.', - 'wrongcaptcha' => 'Captcha incorrecto', - 'captchaexpire' => 'Captcha ya usado o vencido.', - 'noguests' => '¡Perdón! Actualmente sólo se permiten miembros.', - 'curchat' => 'En este momento hay %d personas en la sala:', - 'cantreg' => 'No pudo registrarse %s', - 'alreadyreged' => '%s ya fue registrado.', - 'successreg' => '%s se registro sin problemas.', - 'cantchgstat' => 'No pudo cambiarse el estado de %s', - 'succdel' => '%s fue eliminado de la base de datos.', - 'succchg' => 'Se cambió el estado de %s sin problemas.', - 'wrongpass' => '¡Contraseña incorrecta!', - 'wrongglobalpass' => '¡Contraseña global incorrecta!', - 'succprofile' => 'Tu perfil se guardó sin problemas.', - 'backtologin' => 'Volver a la página de identificación.', - 'backtochat' => 'Volver a la sala.', - 'Beige' => 'Beige', - 'Black' => 'Negro', - 'Blue' => 'Azul', - 'BlueViolet' => 'Azul violáceo', - 'Brown' => 'Marrón', - 'Cyan' => 'Cian', - 'DarkBlue' => 'Azul oscuro', - 'DarkGreen' => 'Verde oscuro', - 'DarkRed' => 'Rojo oscuro', - 'DarkViolet' => 'Violeta oscuro', - 'DeepSkyBlue' => 'Azul celeste', - 'Gold' => 'Dorado', - 'Grey' => 'Gris', - 'Green' => 'Verde', - 'HotPink' => 'Rosa cálido', - 'Indigo' => 'Índigo', - 'LightBlue' => 'Azul claro', - 'LightGreen' => 'Verde claro', - 'LimeGreen' => 'Verde lima', - 'Magenta' => 'Magenta', - 'Olive' => 'Oliva', - 'Orange' => 'Naranja', - 'OrangeRed' => 'Rojo anaranjado', - 'Purple' => 'Púrpura', - 'Red' => 'Rojo', - 'RoyalBlue' => 'Azul real', - 'SeaGreen' => 'Verde marino', - 'Sienna' => 'Siena', - 'Silver' => 'Plateado', - 'Tan' => 'Bronceado', - 'Teal' => 'Cerceta', - 'Violet' => 'Violeta', - 'White' => 'Blanco', - 'Yellow' => 'Amarillo', - 'YellowGreen' => 'Verde amarillento', - 'redirectto' => 'Redirigir a:', - 'nonhttp' => 'Petición de enlace que no es http:', - 'httpredir' => 'Si no funciona, probá esto:', - 'actions' => 'Acciones', - 'sesip' => 'Dirección IP', - 'css' => 'Estilo CSS', - 'memberexpire' => 'Vencimiento para miembros (minutos)', - 'guestexpire' => 'Vencimiento para invitados (minutos)', - 'kickpenalty' => 'Penalidad al expulsar (minutos)', - 'entrywait' => 'Tiempo en sala de espera (segundos)', - 'captchatime' => 'Vencimiento de captcha (segundos)', - 'messageexpire' => 'Vencimiento de mensajes (minutos)', - 'messagelimit' => 'Límite de mensajes (público)', - 'maxmessage' => 'Largo máximo de mensaje', - 'confirm' => '¿Estás seguro?', - 'yes' => 'Sí', - 'no' => 'No', - 'colbg' => 'Color de fondo', - 'coltxt' => 'Color de texto', - 'maxname' => 'Largo máximo para apodos', - 'minpass' => 'Largo mínimo para contraseñas', - 'defaultrefresh' => 'Tiempo de actualización de mensajes por defecto (segundos)', - 'suguests' => 'Habilitar aplicantes', - 'rulestxt' => 'Reglas (html)', - 'imgembed' => 'Imágenes incrustadas', - 'trackip' => 'Mostrar IP de la sesión', - 'captchachars' => 'Caracteres usados en el Captcha', - 'memkick' => 'Los miembros pueden expulsar, si no hay moderador presente', - 'memkickalways' => 'Los miembros siempre pueden expulsar', - 'forceredirect' => 'Forzar redirección', - 'redirect' => 'Script de redirección personalizado', - 'backuprestore' => 'Copias de seguridad', - 'backup' => 'Hacer copia', - 'restore' => 'Restablecer copia', - 'settings' => 'Configuración', - 'linkfilter' => 'Filtro de enlaces', - 'chatname' => 'Nombre de la sala', - 'destroy' => 'Destruir sala', - 'destroyed' => 'Sala destruida satisfactoriamente', - 'topic' => 'Asunto', - 'passreset' => 'Reiniciar contraseña', - 'cantresetpass' => 'No se puede reiniciar contraseña', - 'succpassreset' => 'Contraseña reiniciada correctamente', - 'entermsg' => '%s entró en la sala.', - 'exitmsg' => '%s se fue de la sala.', - 'memregmsg' => '%s ahora es un miembro registrado.', - 'suregmsg' => '%s ahora es un aplicante registrado.', - 'kickmsg' => '%s fue expulsado.', - 'multikickmsg' => '%s fueron expulsados.', - 'allkickmsg' => 'Todas las personas fueron expulsadas.', - 'cleanmsg' => '%s fue limpiada.', - 'sendallmsg' => '%s - ', - 'sendmemmsg' => '[M] %s - ', - 'sendmodmsg' => '[Staff] %s - ', - 'sendadmmsg' => '[Admin] %s - ', - 'sendprvmsg' => '[%1$s a %2$s] - ', - 'msgsendall' => 'Mensajes a todos', - 'msgsendmem' => 'Sólo mensajes a miembros', - 'msgsendmod' => 'Sólo mensajes a staff', - 'msgsendadm' => 'Sólo mensajes a administradores', - 'msgsendprv' => 'Mensaje privado', - 'numnotes' => 'Numero de notas para revisar', - 'revisions' => 'Revisiones:', - 'older' => 'Antiguo', - 'newer' => 'Nuevo', - 'accessdenied' => 'Acceso no permitido', - 'loggedinas' => 'Estás identificado como %s y no tenés acceso a esta sección.', - 'newnickname' => 'Nuevo apodo:', - 'nicknametaken' => 'Ese apodo ya fue tomado', - 'nopass' => 'Constraseña incorrecta (al menos %d caracteres), no se cambia apodo', - 'gdextrequired' => 'La extensión gd de PHP es requerida para esto. Instálela primero.', - 'memcachedextrequired' => 'La extensión memcached de PHP es requerida para esto. Instalela primero o configure memcached en false.', - 'sodiumextrequired' => 'La extensión libsodium de PHP es necesaria para la encriptación. Instálela o configure la encriptación en false.', - 'pdo_mysqlextrequired' => 'La extensión pdo_mysql de PHP es necesaria para la database driver seleccionada. Instálelo primero.', - 'pdo_pgsqlextrequired' => ' La extensión pdo_pgsql de PHP es necesaria para la database driver seleccionada. Instálelo primero.', - 'pdo_sqliteextrequired' => ' La extensión pdo_sqlite de PHP es necesaria para la database driver seleccionada. Instálelo primero.', - 'jsonextrequired' => 'La extensión json de PHP es necesaria para esta configuración. Instálela primero.', - 'sendmail' => 'Enviar mail en nuevo mensaje público', - 'mailsender' => 'Enviar mail usando esta dirección', - 'mailreceiver' => 'Enviar mail a esta dirección', - 'modfallback' => 'Volver a la sala de espera, si ningún moderador aprovo la visita', - 'regpass' => 'Repetir contraseña
para registrarse', - 'guestreg' => 'Dar permisos de invitado a si mismos', - 'asmember' => 'Como miembro', - 'assuguest' => 'Como aplicante', - 'fatalerror' => 'Error fatal', - 'prevmatch' => 'Your match was as follows', - 'matchtoolong' => 'Your match was too long. You can use max. 255 characters. Try splitting it up.', - 'nocache' => 'Autoscroll (para buscadores antiguos o tipo top to bottom).', - 'disablepm' => 'Desactivar mensajes privados', - 'disablechat' => 'Desactivar chat', - 'disabletext' => 'Mensaje de chat desactivado (html)', - 'disabledtext' => 'Desactivado temporalmente', - 'defaulttz' => 'Zona horaria predeterminada', - 'tz' => 'Zona horaria', - 'optional' => '(opcional)', - 'userloggedin' => 'Un usuario con ese nombre ya está registrado.', - 'regednick' => 'Este nombre es un usuario registrado.', - 'failednotice' => 'intento(s) de inicio de sesión fallido(s)', - 'dismiss' => 'reconocido', - 'eninbox' => 'Activar inbox offline', - 'inboxmsgs' => 'Leer %d mensajes en tu bandeja', - 'offline' => '(offline)', - 'deleteacc' => 'Borrar cuenta', - 'eninnone' => 'Para nadie', - 'eninall' => 'Para todos', - 'eninmem' => 'Solo para miembros', - 'eninstaff' => 'Solo para staff', - 'eninadmin' => 'Solo para administradores', - 'nickregex' => 'Nickname regex', - 'passregex' => 'Password regex', - 'externalcss' => 'Link para archivo CSS externo', - 'greetingmsg' => 'Bienvenido %s!', - 'entryhelp' => 'Si no se te redirige en %d segundos, asegurate de tener activado la redirección automática (meta refresh) en tu navegador. También asegurate de que ningún filtro web, local proxy tool o browser plugin evita tu redirección automática! Podría ser por ejemplo "Polipo", "NoScript", etc.
o puedes usar el botón de recargar de manera manual.', - 'enablegreeting' => ' Mostrar un saludo antes de los mensajes', - 'unban' => 'Desbanear', - 'sortupdown' => 'Sort messages from top to bottom', - 'sortframe' => 'Rearrange', - 'cs' => 'Case sensitive', - 'hidechatters' => 'Esconder lista de chatters', - 'enfileupload' => 'Habilitar subida de archivos', - 'msgattache' => 'Attachement', - 'filenotfound' => 'Documento no encontrado!', - 'maxuploadsize' => 'Máxima subida en KB', - 'maxsize' => 'Max %d KB', - 'cssupdate' => 'Note: Css predeterminado está ahora hardcoded y puede ser removido de la configuración CSS', - 'manualrefresh' => 'Recarga manual requerida', - 'personalnotes' => 'Notas personales', - 'publicnotes' => 'Notas públicas', - 'filtermodkick' => 'Aplicar Kick filter en moderadores o administradores', - 'namedoers' => 'Mostrar quién expulsa a las personas o purga todos los mensajes.' -]; diff --git a/lang_fi.php b/lang_fi.php deleted file mode 100644 index 54107e8..0000000 --- a/lang_fi.php +++ /dev/null @@ -1,384 +0,0 @@ - -* -* This program is free software: you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. -* -* This program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with this program. If not, see . -*/ - -//Native language name: suomi (Suomi) -$T=[ - 'nodb' => 'Ei tietokantayhteyttä!', - 'nodbsetup' => 'Tietokantaa ei ole asetettu, luo se ja yhdistä skripti siihen.', - 'changelang' => 'Vaihda kieltä:', - 'expire' => 'Istunto vanhentunut', - 'kicked' => 'Sinut on heitetty ulos!', - 'invalnick' => 'Kelpaamaton käyttäjänimi, enintään (%1$d merkkiä, täytyy sisältää regexpin "%2$s"', - 'invalpass' => 'Kelpaamaton salasana, vähintään %1$d merkkiä, täytyy sisältää regexpin "%2$s"', - 'noconfirm' => 'Salasanan vahvistus epäonnistui!', - 'incorregex' => 'Virheellinen regexp!', - 'bottom' => 'Loppuun', - 'top' => 'Alkuun', - 'choose' => '(valitse)', - 'setup' => 'Chatin asennus', - 'init' => 'Ensimmäinen asennus', - 'sulogin' => 'Pääkäyttäjän kirjautuminen', - 'sunick' => 'Pääkäyttäjän käyttäjänimi:', - 'supass' => 'Pääkäyttäjän salasana:', - 'suconfirm' => 'Vahvista salasana:', - 'susuccess' => 'Rekisteröinti onnistui!', - 'initbtn' => 'Asenna chat', - 'initdbexist' => 'Tietokanta on jo olemassa, sinun on poistettava sen sisältö jatkaaksesi.', - 'initsuexist' => 'Pääkäyttäjä on jo luotu!', - 'initgosetup' => 'Siirry asennukseen', - 'captcha' => 'Captcha', - 'enabled' => 'Käytössä', - 'onlyguests' => 'Vain vierailijoille', - 'disabled' => 'Ei käytössä', - 'simple' => 'Yksinkertainen', - 'moderate' => 'Keskivaikea', - 'extreme' => 'Vaikea', - 'nick' => 'Käyttäjänimi:', - 'pass' => 'Salasana:', - 'globalloginpass' => 'Yleinen salasana:', - 'login' => 'Kirjaudu', - 'dbupdate' => 'Tietokanta päivitetty onnistuneesti!', - 'sysmessage' => 'system message', - 'sysmessages' => 'Järjestelmäviestit', - 'sysmessagetxt' => 'Prepend this text to system messages', - 'msgenter' => 'Liittyi', - 'msgexit' => 'Poistui', - 'msgmemreg' => 'Käyttäjä luotu', - 'msgsureg' => 'Hakija luotu', - 'msgkick' => 'Heitetty ulos', - 'msgmultikick' => 'Moniulosheitto', - 'msgallkick' => 'Kaikki heitetty', - 'msgclean' => 'Huone tyhjennetty', - 'dateformat' => 'Päivämäärän esitystapa', - 'admfunc' => 'Järjestelmänvalvojan toiminnot', - 'allguests' => 'Kaikki vierailijat', - 'cleanmsgs' => 'Tyhjennä viestit', - 'room' => 'Koko huone', - 'selection' => 'Valinta', - 'cleannick' => 'Seuraava käyttäjänimi:', - 'clean' => 'Tyhjennä', - 'kickchat' => 'Heitä ulos (%d minuuttia)', - 'kickreason' => 'Heittoviesti:', - 'kickpurge' => 'Tuhoa viestit', - 'kick' => 'Heitä ulos', - 'logoutinact' => 'Kirjaa ulos ei-aktiivinen käyttäjä', - 'logout' => 'Kirjaudu ulos', - 'sessions' => 'Näytä aktiiviset istunnot', - 'view' => 'Näytä', - 'filter' => 'Suodata', - 'guestacc' => 'Muuta vierailijapääsyä', - 'guestallow' => 'Salli', - 'guestwait' => 'Salli odotushuoneella', - 'adminallow' => 'Vaadi moderaattorin hyväksyntä', - 'guestdisallow' => 'Vain jäsenet', - 'addsuguest' => 'Rekisteröi hakija', - 'register' => 'Rekisteröi', - 'admmembers' => 'Jäsenet', - 'memdel' => 'Poista tietokannasta', - 'memdeny' => 'Estä pääsy (!)', - 'memsuguest' => 'Aseta hakijaksi (G)', - 'memreg' => 'Aseta normaaliksi jäseneks', - 'memmod' => 'Aseta moderaattoriksi (M)', - 'memsumod' => 'Aseta ylimoderaattoriksi (SM)', - 'memadm' => 'Aseta ylläpitäjäksi (A)', - 'change' => 'Muuta', - 'regguest' => 'Rekisteröi vierailija', - 'regmem' => 'Rekisteröi uusi jäsen', - 'sessact' => 'Aktiiviset istunnot', - 'sessnick' => 'Käyttäjänimi', - 'sesstimeout' => 'Aikakatkaisu', - 'sessua' => 'Selain', - 'fid' => 'Suodatusnumero:', - 'match' => 'Match', - 'replace' => 'Korvaa', - 'allowpm' => 'Salli yksityisviestit', - 'regex' => 'Regex', - 'apply' => 'Käytä', - 'newfilter' => 'Uusi suodatin:', - 'add' => 'Lisää', - 'noframes' => 'Tämä chat käyttää kehyksiä. Salli kehykset tai käytä jotain muuta selainta', - 'delselmes' => 'Poista valitut viestit', - 'staffnotes' => 'Henkilökunnan viestit', - 'adminnotes' => 'Ylläpidon viestit', - 'notessaved' => 'Viestit tallennettu!', - 'lastedited' => 'Viimeksi muokannut %1$s kello %2$s', - 'savenotes' => 'Tallenna viestit', - 'waitingroom' => 'Odotushuone', - 'waittext' => 'Tervetuloa %1$s, kirjautumisesi on viivästynyt, pääset chattiin %2$d sekunnin kuluttua.', - 'admwaittext' => 'Tervetuloa %1$s, kirjautumisesi on viivästynyt pääset chattiin, kun moderaattori päästää sinut.', - 'waitreload' => 'Jos tämä sivu ei päivity %d sekunnin välein, päivitä se manuaalisesti seuraavasta painikkeesta!', - 'reload' => 'Päivitä', - 'rules' => 'Säännöt', - 'talkto' => 'Lähetä vastaanottajille', - 'toall' => 'Kaikki', - 'tomem' => 'Vain jäsenet', - 'tostaff' => 'Vain henkilökunta', - 'toadmin' => 'Vain ylläpito', - 'alsopurge' => 'Tuhoa myös viestit', - 'dellast' => 'Poista viimeisin viesti', - 'delall' => 'Poista kaikki viestit', - 'switchsingle' => 'Vaihda yksiriviseen tekstikenttään', - 'switchmulti' => 'Vaihda moniriviseen tekstikenttään', - 'help' => 'Ohje', - 'helpguest' => 'Toiminnot ovat itsestäänselviä, käytä vain painikkeita. Profiilissasi voit säätää päivitysnopeutta ja fontin väriä sekä mykistää käyttäjiä.
Huomaa, että tämä on chat, ja jos et ole aktiivinen tiettyyn aikaan, sinut kirjataan ulos.', - 'helpembed' => 'Lisää viestiin kuva seuraavasti: [img]http://example.com/images/file.jpg', - 'helpmem' => 'Jäsenet: Sinulla on enemmän ominaisuuksia. Voit muuttaa fonttia, vaihtaa salasanasi ja poistaa tilisi.', - 'helpmod' => 'Moderaattorit: Ylläpito-painike antaa käyttöösi moderointiominaisuudet.', - 'helpadm' => 'Ylläpitäjät: Voit rekisteröidä vierailijoita, muokata jäseniä ja rekisteröidä uusia käyttäjiä.', - 'profile' => 'Profiilisi', - 'ignore' => 'Jätä huomiotta', - 'unignore' => 'Poista huomiottajättö', - 'refreshrate' => 'Päivitysnopeus (%1$d-%2$d sekuntia)', - 'fontcolour' => 'Fontin väri', - 'viewexample' => 'Katso esimerkit', - 'bgcolour' => 'Taustaväri', - 'fontface' => 'Fonttityyppi', - 'roomdefault' => 'Huoneen oletus', - 'bold' => 'Lihavoitu', - 'italic' => 'Yliviivaus', - 'small' => 'Pieni', - 'fontexample' => 'Esimerkki valitusta fontista', - 'timestamps' => 'Näytä aikaleimat', - 'embed' => 'Upota kuvat', - 'incognito' => 'Yksityistila', - 'changenick' => 'Vaihda käyttäjänimi', - 'changepass' => 'Vaihda salasana', - 'oldpass' => 'Vanha salasana:', - 'newpass' => 'Uusi salasana:', - 'confirmpass' => 'Vahvista uusi salasana:', - 'savechanges' => 'Tallenna muutokset', - 'reloadpb' => 'Päivitä kirjoituslaatikko', - 'reloadmsgs' => 'Päivitä viestit', - 'viewpublicnotes' => 'Yleiset viestit', - 'chgprofile' => 'Profiili', - 'adminbtn' => 'Ylläpito', - 'admnotes' => 'Ylläpidon viestit', - 'notes' => 'Viestit', - 'clone' => 'Kloonaa', - 'randh' => 'Säännöt ja ohjeet', - 'exit' => 'Poistu chatista', - 'bye' => 'Näkemiin %s, tuupa takas joskus!', - 'colourtable' => 'Väritaulukko', - 'backtoprofile' => 'Takaisin profiiliin', - 'copy' => 'Kopio:', - 'choosecol' => 'Vierailijat, valitkaa väri:', - 'randomcol' => 'Satunnainen', - 'enter' => 'Chattiin, mars!', - 'error' => 'Virhe', - 'admin' => 'Ylläpito', - 'staff' => 'Henkilökunta', - 'members' => 'Jäsenet', - 'guests' => 'Vierailijat', - 'approveguests' => '%d vierailijaa hyväksyttävissä', - 'allowchecked' => 'Salli valitut', - 'allowall' => 'Salli kaikki', - 'denychecked' => 'Epää valitut', - 'denyall' => 'Epää kaikki', - 'denymessage' => 'Viesti evätyille:', - 'butallowdeny' => 'Lähetä', - 'waitempty' => 'Ei sisäänpääsypyyntöjä.', - 'wrongcaptcha' => 'VÄärä Captcha', - 'captchaexpire' => 'Captcha jo käytetty tai aikatkakaistu.', - 'noguests' => 'Sori, vain jäsenet!', - 'curchat' => 'Paikalla: %d jäsen(tä):', - 'cantreg' => 'Ei voi rekisteröidä %s', - 'alreadyreged' => '%s jo rekisteröity.', - 'successreg' => '%s rekisteröity.', - 'cantchgstat' => 'Ei voi muuttaa tilaa: %s', - 'succdel' => '%s poistettu.', - 'succchg' => '%s - tila vaihdettu.', - 'wrongpass' => 'Väärä salasana!', - 'wrongglobalpass' => 'Väärä yleissalasana!', - 'succprofile' => 'Profiili tallennettu.', - 'backtologin' => 'Takaisin kirjautumiseen.', - 'backtochat' => 'Takaisin keskusteluun.', - 'Beige' => 'Beige', - 'Black' => 'Musta', - 'Blue' => 'Sininen', - 'BlueViolet' => 'Violetinsininen', - 'Brown' => 'Ruskea', - 'Cyan' => 'Syaani', - 'DarkBlue' => 'Tummansininen', - 'DarkGreen' => 'Tummanvihreä', - 'DarkRed' => 'Tummanpunainen', - 'DarkViolet' => 'Tumma violetti', - 'DeepSkyBlue' => 'Taivaansininen', - 'Gold' => 'Kulta', - 'Grey' => 'Harmaa', - 'Green' => 'Vihreä', - 'HotPink' => 'Kuuma pinkki', - 'Indigo' => 'Indigonsininen', - 'LightBlue' => 'Valeansininen', - 'LightGreen' => 'Vaaleanvihreä', - 'LimeGreen' => 'Limenvihreä', - 'Magenta' => 'Magenta', - 'Olive' => 'Oliivinvihreä', - 'Orange' => 'Oranssi', - 'OrangeRed' => 'Oranssinpunainen', - 'Purple' => 'Purppura', - 'Red' => 'Punainen', - 'RoyalBlue' => 'Syvänsininen', - 'SeaGreen' => 'Merenvihreä', - 'Sienna' => 'Sienna', - 'Silver' => 'Hopea', - 'Tan' => 'Kellanruskea', - 'Teal' => 'Sinivihreä', - 'Violet' => 'Violetti', - 'White' => 'Valkoinen', - 'Yellow' => 'Keltainen', - 'YellowGreen' => 'Keltavihreä', - 'redirectto' => 'Siirrytään:', - 'nonhttp' => 'Ei-tuettu linkki:', - 'dangerousnonhttp' => 'Vaarallinen linkki, kopioi ja liitä se jos olet varma:', - 'httpredir' => 'Jos se ei toimi, yritä tätä:', - 'actions' => 'Toiminnot', - 'sesip' => 'IP-osoite', - 'css' => 'CSS-tyyli', - 'memberexpire' => 'Jäsenten aikakatkaisu (minuuttia)', - 'guestexpire' => 'Vierailijoiden aikakatkaisu (minuuttia)', - 'kickpenalty' => 'Ulosheiton kesto (minuuttia)', - 'entrywait' => 'Odotusaika (sekuntia)', - 'captchatime' => 'Captchan aikakatkaisu (sekuntia)', - 'messageexpire' => 'Viestin aikakatkaisu (minuuttia)', - 'messagelimit' => 'Viestiraja (julkinen)', - 'maxmessage' => 'Viestin enimmäispituus', - 'confirm' => 'Oletko varma?', - 'yes' => 'Kyllä', - 'no' => 'Ei', - 'colbg' => 'Taustaväri', - 'coltxt' => 'Tekstin väri', - 'maxname' => 'Käyttäjänimen enimmäispituus', - 'minpass' => 'Salasanan vähimmäispituus', - 'defaultrefresh' => 'Oletuspäivitysnopeus (sekuntia)', - 'suguests' => 'Salli hakijat', - 'rulestxt' => 'Säännöt (html)', - 'imgembed' => 'Upota kuvat', - 'trackip' => 'Näytä istunnon IP', - 'captchachars' => 'Captchan merkit', - 'memkick' => 'Jäsenet voivat heittää ulos, jos moderaattori ei ole paikalla', - 'memkickalways' => 'Members can always kick', - 'forceredirect' => 'Pakota uudelleenohjaus', - 'redirect' => 'Oma uudelleenohjausskripti', - 'backuprestore' => 'Varmuuskopioi ja palauta', - 'backup' => 'Varmuuskopioi', - 'restore' => 'Palauta', - 'settings' => 'Asetukset', - 'linkfilter' => 'Linkkisuodatus', - 'chatname' => 'Chatin nimi', - 'destroy' => 'Tuhoa chat', - 'destroyed' => 'Chat tuhottu', - 'topic' => 'Aihe', - 'passreset' => 'Nollaa salasana', - 'cantresetpass' => 'Ei voi nollata salasanaa', - 'succpassreset' => 'Salasana nollattu', - 'entermsg' => '%s liittyi.', - 'exitmsg' => '%s poistui.', - 'memregmsg' => '%s on nyt rekisteröity jäsen.', - 'suregmsg' => '%s on nyt rekisteröity hakija.', - 'kickmsg' => '%s heitettiin ulos.', - 'multikickmsg' => '%s heitettiin ulos.', - 'allkickmsg' => 'Kaikki vierailijat heitettiin ulos.', - 'cleanmsg' => '%s tyhjennetty.', - 'sendallmsg' => '%s - ', - 'sendmemmsg' => '[Jäsenet] %s - ', - 'sendmodmsg' => '[Henkilökunta] %s - ', - 'sendadmmsg' => '[Ylläpito] %s - ', - 'sendprvmsg' => '[%1$s - %2$s] - ', - 'msgsendall' => 'Viesti kaikille', - 'msgsendmem' => 'Viesti vain jäsenille', - 'msgsendmod' => 'Viesti vain henkilökunnalle', - 'msgsendadm' => 'Viesti vain ylläpidolle', - 'msgsendprv' => 'Yksityisviesti', - 'numnotes' => 'Muistissa pidettävien viestien määrä', - 'revisions' => 'Versiot:', - 'older' => 'Vanhemmat', - 'newer' => 'Uudemmat', - 'accessdenied' => 'Pääsy kielletty', - 'loggedinas' => 'Kirjautunut sisään %s-oikeuksilla, ei pääsyä tähän sisältöön.', - 'newnickname' => 'Uusi käyttäjänimi:', - 'nicknametaken' => 'Käyttäjänimi varattu', - 'nopass' => 'Virheellinen salasana, sisältää ainakin %d merkkiä, käyttäjänimeä ei muuteta', - 'gdextrequired' => 'GD-lisäosan asennus vaaditaan.', - 'memcachedextrequired' => 'memcached-lisäosan asennus vaaditaan.', - 'sodiumextrequired' => 'libsodium-lisäosan asennus vaaditaan.', - 'pdo_mysqlextrequired' => 'pdo_mysql-lisäosan asennus vaaditaan.', - 'pdo_pgsqlextrequired' => 'pdo_pgsql-lisäosan asennus vaaditaan.', - 'pdo_sqliteextrequired' => 'pdo_sqlite-lisäosan asennus vaaditaan.', - 'jsonextrequired' => 'json-lisäosan asennus vaaditaan.', - 'sendmail' => 'Lähetä sähköpostia yleisestä viestistä', - 'mailsender' => 'Lähetä sähköposti osoitteesta', - 'mailreceiver' => 'Lähetä sähköposti osoitteeseen', - 'modfallback' => 'Palaa odotushuoneeseen, jos moderaattori ei ole paikalla hyväksymässä vierailijoita', - 'regpass' => 'Salasana uudelleen
(jos rekisteröidyt)', - 'guestreg' => 'Anna vierailijoiden rekisteröidä itsensä', - 'asmember' => 'Jäseninä', - 'assuguest' => 'Hakijoina', - 'fatalerror' => 'Kohtalokas virhe', - 'prevmatch' => 'Matchisi on seuraava', - 'matchtoolong' => 'Match liian pitkä, raja 255 merkkiä.', - 'nocache' => 'Automaattivieritys (vanhat selaimet tai ylhäältä alas -järjestys).', - 'disablepm' => 'Poista yksityisviestit käytöstä', - 'disablechat' => 'Poista chat käytöstä', - 'disabletext' => 'Poist käytöstä -viesti (html)', - 'disabledtext' => 'Väliaikaisesti pois käytöstä', - 'defaulttz' => 'Oletusaikavyöhyke', - 'tz' => 'Aikavyöhyke', - 'optional' => '(valinnainen)', - 'userloggedin' => 'Tällä käyttäjänimellä on jo kirjauduttu.', - 'regednick' => 'Tämä käyttäjänimi on jo rekisteröity.', - 'eninbox' => 'Ota käyttöön offline-viestilaatikko', - 'inboxmsgs' => 'Lue %d viesti(ä) Saapuneet-kansiossa', - 'offline' => '(offline)', - 'deleteacc' => 'Poista tili', - 'eninnone' => 'Ei kenellekään', - 'eninall' => 'Kaikille', - 'eninmem' => 'Vain jäsenille', - 'eninstaff' => 'Vain henkilökunnalle', - 'eninadmin' => 'Vain ylläpidolle', - 'nickregex' => 'Käyttäjänimen regex', - 'passregex' => 'Salasanan regex', - 'externalcss' => 'Linkki ulkoiseen CSS_tiedostoon', - 'greetingmsg' => 'Tervetuloa, %s!', - 'entryhelp' => 'Jos tämä sivu ei päivity %d sekunnissa, sinun täytyy sallia automaattinen uudelleenohjaus selaimessa. Varmista myös, ettei paikallinen proksi, web-suodatin tai selainlisäosa poista automaattista päivitystä käytöstä! Jos mikään ei toimi, voit painaa alla olevaa painiketta päivittääksesi manuaalisesti.', - 'enablegreeting' => 'Näytä tervetuloviesti ennen muita viestejä', - 'unban' => 'Poista bänni', - 'sortupdown' => 'Järjestä viestit ylhäältä alas', - 'sortframe' => 'Järjestä uudelleen', - 'cs' => 'Kirjainkokko merkitsee', - 'hidechatters' => 'Piilota osallistujalista', - 'enfileupload' => 'Ota tiedostolataukset käyttöön', - 'msgattache' => 'Liite', - 'filenotfound' => 'Tiedostoa ei löydy!', - 'maxuploadsize' => 'Tiedoston maksimikoko (KB)', - 'maxsize' => 'Enintään %d KB', - 'cssupdate' => 'Huomaa: CSS on sisäänkoodattu ja voidaan poistaa CSS-asetuksella', - 'manualrefresh' => 'Manuaalinen päivitys tarvitaan', - 'personalnotes' => 'Henkilökohtaiset muistiinpanot', - 'publicnotes' => 'Julkiset muistiinpanot', - 'filtermodkick' => 'Käytä ulosheittosuodatinta moderaattoreihin', - 'namedoers' => 'Show who kicks people or purges all messages.', - 'forgotlogin' => 'Unohditko tunnukset?', - 'resetinstruction' => 'Muokkaa skriptiä ja lisää tämä loppuun, muuta salasana ja päivitä tämä sivu: define(\'RESET_SUPERADMIN_PASSWORD\', \'changeme\');', - 'resetpassword' => 'Nollaa salasana', - 'resetsucc' => 'Käyttäjän %s salasana nollattu. Poista nollausskripti skriptin lopusta.', - 'backtosetup' => 'Takaisin asennukseen', - 'defaultmetadescription' => 'Chattiyhteisö', - 'metadescription' => 'Meta-kuvaus (50 - 160 merkkiä)', -]; diff --git a/lang_fr.php b/lang_fr.php deleted file mode 100644 index 2f762a5..0000000 --- a/lang_fr.php +++ /dev/null @@ -1,318 +0,0 @@ - -* -* This program is free software: you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. -* -* This program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with this program. If not, see . -*/ - -//Native language name: Français -$T=[ - 'nodb' => 'Pas de connexion à la base de données!', - 'nodbsetup' => 'Pas de connexion à la base de données, s\'il vous plaît créer une base de données et modifier le script pour utiliser la base de données correctement avec le nom d\'utilisateur et son mot de passe !', - 'changelang' => 'Changer la langue:', - 'expire' => 'Session invalide / expirée', - 'kicked' => 'Banni / éjecté!', - 'noconfirm' => 'Confirmation mot du passe ne correspond pas! ', - 'incorregex' => 'Expression régulière incorrecte!', - 'bottom' => 'Bas', - 'top' => 'Haut', - 'choose' => '(choisir)', - 'setup' => 'Installation du chat', - 'init' => 'Initialisation', - 'sulogin' => 'Connexion du super administrateur', - 'sunick' => 'Pseudo super administrateur:', - 'supass' => 'Mot de passe du super administrateur:', - 'suconfirm' => 'Confirmer le mot de passe:', - 'susuccess' => 'Enregistré avec succès!', - 'initbtn' => 'Initalisation du chat', - 'initdbexist' => 'Les tables de base de données existent déjà! Pour continuer, vous devez supprimer les tables manuellement.', - 'initsuexist' => 'Un super administrateur existe déjà!', - 'initgosetup' => 'Allez à la page d\'installation', - 'captcha' => 'Captcha', - 'enabled' => 'installé', - 'onlyguests' => 'Seulements les invités', - 'disabled' => 'Désinstallé', - 'simple' => 'Simple', - 'moderate' => 'Moderé', - 'extreme' => 'Extrême', - 'nick' => 'Pseudo:', - 'pass' => 'Mot de passe:', - 'globalloginpass' => 'Mot de passe global:', - 'login' => 'Connexion', - 'dbupdate' => 'Base de données installée!', - 'sysmessage' => 'message du système', - 'sysmessages' => 'Messages du système', - 'sysmessagetxt' => 'Ce texte précède les messages du système.', - 'msgenter' => 'Entrer', - 'msgexit' => 'Quitter', - 'msgmemreg' => 'Membre enregisté', - 'msgsureg' => 'Candidat inscrit', - 'msgkick' => 'Banni / éjecté!', - 'msgmultikick' => 'Multiples éjections', - 'msgallkick' => 'Éjection globale', - 'msgclean' => 'Messages nettoyés', - 'dateformat' => 'Format de date', - 'admfunc' => 'Fonctions d\'administration', - 'allguests' => 'Tous les invités', - 'cleanmsgs' => 'Messages nettoyés', - 'room' => 'Salon', - 'selection' => 'Sélection', - 'cleannick' => 'Suivre le pseudo:', - 'clean' => 'Nettoyé', - 'kickchat' => 'Pseudos éjectés (%d minutes)', - 'kickreason' => 'Messages interdis:', - 'kickpurge' => 'Purger les messages', - 'kick' => 'Banni / éjecté', - 'logoutinact' => 'Déconnexion chatteur inactif', - 'logout' => 'Déconnexion', - 'sessions' => 'Visualiser les sessions actives', - 'view' => 'Voir', - 'filter' => 'Filtré', - 'guestacc' => 'Changer l\'accès de l\'invité', - 'guestallow' => 'Autorisé', - 'guestwait' => 'Autorisé avec l\'attente dans le salon', - 'adminallow' => 'Demande l\'approbation du modérateur', - 'guestdisallow' => 'Seulement les membres', - 'addsuguest' => 'Ajouter un candidat', - 'register' => 'Enregistrer', - 'admmembers' => 'Membres', - 'memdel' => 'Effacer de la base de données', - 'memdeny' => 'Acces interdit (!)', - 'memsuguest' => 'Ajouter comme candidat (SG)', - 'memreg' => 'Ajouter comme membre regulier', - 'memmod' => 'Ajouter comme modérateur (M)', - 'memsumod' => 'Ajouter comme super modérateur (SM)', - 'memadm' => 'Ajouter comme administrateur (A)', - 'change' => 'Changer', - 'regguest' => 'Enregister un invité', - 'regmem' => 'Enregistrer un nouveau membre', - 'sessact' => ' Sessions actives', - 'sessnick' => 'Pseudo', - 'sesstimeout' => 'Expire dans', - 'sessua' => 'User-Agent', - 'fid' => 'Filtre ID:', - 'match' => 'Correspond', - 'replace' => 'Replacé', - 'allowpm' => 'Authorisé en PM', - 'regex' => 'Regex', - 'apply' => 'Appliqué', - 'newfilter' => 'Nouveau filtre:', - 'add' => 'Ajouter', - 'noframes' => 'Ce chat utlise les cadres. S\'il vous plaît autoriser les cadres dans votre navigateur! !', - 'delselmes' => 'Effacer les messages sélectionnés', - 'staffnotes' => 'Notes des gestionnaires', - 'adminnotes' => 'Notes d\'administrateur', - 'notessaved' => 'Notes enregistrées!', - 'lastedited' => 'Dernière édition fait par %1$s à %2$s', - 'savenotes' => 'Sauvegarder les notes', - 'waitingroom' => 'Salle d\'attente', - 'waittext' => 'Bienvenue %1$s, votre connexion a été mise en attente, votre accès au chat dans %2$d secondes.', - 'admwaittext' => '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.', - 'waitreload' => 'Si cette page n\'apparaît pas à chaque %d secondes, utilisez le bouton plus bas pour recharger manuellement!', - 'reload' => 'Rechargé', - 'rules' => 'Règles', - 'talkto' => 'Envoyer à', - 'toall' => 'À tous les chatteurs', - 'tomem' => 'Membres seulement', - 'tostaff' => 'Gestionnaire seulement', - 'toadmin' => 'Administrateur seulement', - 'alsopurge' => 'Purger les messages', - 'dellast' => 'Effacer les derniers messages', - 'delall' => 'Effacer tous les messages', - 'switchsingle' => 'Baculer à une seule ligne', - 'switchmulti' => 'Basculer à plusieurs lignes', - 'help' => 'Aide', - 'helpguest' => 'Toutes les fonctions devraient être plutôt bien auto-explicatives, il suffit d\'utiliser les boutons. Dans votre profil, vous pouvez ajuster le taux de rafraîchissement, la couleur de police et votre taille préférée de la boîte 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.', - 'helpembed' => 'Si vous souhaitez intégrer une image dans votre message, il suffit 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.', - 'helpmem' => 'Membres: vous aurez encore plus d\'options dans votre profil. Vous pouvez ajuster votre type de police et vous pouvez changer votre mot de passe à tout moment.', - 'helpmod' => 'Moderateurs: Remarquez le bouton administrateur en bas. Il va mettre en place une page où vous pouvez nettoyer le salon, les chatteurs éjectés, voir toutes les sessions actives et désactiver complètement l\'accès des invités si nécessaire.', - 'helpadm' => 'Administrateurs: Vous serez en mesure d\'enregistrer les invités, modifier et enregistrer de nouveaux membres sans qu\'ils soient dans le salon.', - 'profile' => 'Votre profile', - 'ignore' => 'Ignoré', - 'unignore' => 'Ne jamais plus ignorer', - 'refreshrate' => 'Taux de rafraichissement (%1$d-%2$d seconds)', - 'fontcolour' => 'Couleur des polices', - 'viewexample' => 'Visualiser les exemples', - 'bgcolour' => 'Couleur de fond', - 'fontface' => 'Ajustement des polices', - 'roomdefault' => 'Salon par défaut', - 'bold' => 'Gras', - 'italic' => 'Italique', - 'fontexample' => 'Exemple de choix de polices', - 'timestamps' => 'Afficher l\'horodatage', - 'embed' => 'Images imbriquées', - 'incognito' => 'Mode incognito', - 'changepass' => 'Changer le mot de passe', - 'oldpass' => 'Ancien mot de passe:', - 'newpass' => 'Nouveau mot de passe:', - 'confirmpass' => 'Confirmer votre nouveau mot de passe:', - 'savechanges' => 'Sauvegarder les modifications', - 'reloadpb' => 'Recharger la boite de texte', - 'reloadmsgs' => 'Recharger les messages', - 'viewpublicnotes' => 'Voir notes publiques', - 'publicnotes' => 'Notes publiques', - 'chgprofile' => 'Profile', - 'adminbtn' => 'Administrateur', - 'admnotes' => 'Notes de l\'administrateur', - 'notes' => 'Notes', - 'clone' => 'Clone', - 'randh' => 'Règles & Aide', - 'exit' => 'Sortir du Chat', - 'bye' => 'Au revoir %s, revenez nous voir bientôt!', - 'colourtable' => 'Table de couleur', - 'backtoprofile' => 'Retourner à votre profile', - 'copy' => 'Copie:', - 'choosecol' => 'Invité, choisir une couleur:', - 'randomcol' => 'Couleur aléatoire', - 'enter' => 'Entrer', - 'error' => 'Erreur', - 'admin' => 'Administrateur', - 'staff' => 'Gestionnaire', - 'members' => 'Membres', - 'guests' => 'Invités', - 'approveguests' => '%d nouveaux invités à approuver', - 'allowchecked' => 'Autoriser d\'enregistrer', - 'allowall' => 'Autoriser tout le monde', - 'denychecked' => 'Refuser d\'enregistrer', - 'denyall' => 'Refuser tout le monde', - 'denymessage' => 'Envoyer un message interdit:', - 'butallowdeny' => 'Transmettre', - 'waitempty' => 'Plus aucunes entrées à approuver.', - 'wrongcaptcha' => 'Mauvais Captcha', - 'captchaexpire' => 'Captcha déjà utilisé ou expiré.', - 'noguests' => 'Désolé, disponible seulement que pour les membres!', - 'curchat' => 'Actuellement il y a %d chatteur(s) dans le salon:', - 'cantreg' => 'Ne peut enregistrer %s', - 'alreadyreged' => '%s est déjà enregistré.', - 'successreg' => '%s enregistré avec succes.', - 'cantchgstat' => 'Ne peut changer le statut de %s', - 'succdel' => '%s effacé de la base de données avec succès.', - 'succchg' => 'Le statut de %s a changé avec succès.', - 'wrongpass' => 'Mauvais mot de passe!', - 'wrongglobalpass' => 'Mauvais mot de passe global!', - 'succprofile' => 'Votre profile a bien étét enregistré.', - 'backtologin' => 'Retour à la page d\'authentification.', - 'backtochat' => 'Retour au chat.', - 'Beige' => 'Beige', - 'Black' => 'Noir', - 'Blue' => 'Blue', - 'BlueViolet' => 'Blue violet', - 'Brown' => 'Brun', - 'Cyan' => 'Cyan', - 'DarkBlue' => 'Bleu foncé', - 'DarkGreen' => 'Vert foncé', - 'DarkRed' => 'Rouge foncé', - 'DarkViolet' => 'Violet foncé', - 'DeepSkyBlue' => 'Bleu ciel', - 'Gold' => 'Or', - 'Grey' => 'Gris', - 'Green' => 'Vert', - 'HotPink' => 'Rose indien', - 'Indigo' => 'Indigo', - 'LightBlue' => 'Bleu Pâle', - 'LightGreen' => 'Vert pâle', - 'LimeGreen' => 'Vert lime', - 'Magenta' => 'Magenta', - 'Olive' => 'Olive', - 'Orange' => 'Orange', - 'OrangeRed' => 'Rouge orangé', - 'Purple' => 'Mauve', - 'Red' => 'Rouge', - 'RoyalBlue' => 'Bleu royal', - 'SeaGreen' => 'Vert océan', - 'Sienna' => 'Sienna', - 'Silver' => 'Argent', - 'Tan' => 'Beige', - 'Teal' => 'Bleu-vert foncé', - 'Violet' => 'Violet', - 'White' => 'Blanc', - 'Yellow' => 'Jaune', - 'YellowGreen' => 'Jaune-verdâtre ', - 'redirectto' => 'Redirection vers:', - 'nonhttp' => 'Lien Non-http demandé:', - 'httpredir' => 'Si cela ne fonctionne pas, il suffit d\'essayer celui si:', - 'actions' => 'Actions', - 'sesip' => 'IP-Adresse', - 'css' => 'Style css', - 'memberexpire' => 'Délai expiré pour un membre (minutes)', - 'guestexpire' => 'Délai expiré pour un visiteur (minutes)', - 'kickpenalty' => 'Pénalité d\'expulsion (minutes)', - 'entrywait' => 'Délai pour entrer au chat (seconds)', - 'captchatime' => 'Délai du Captcha expiré (seconds)', - 'messageexpire' => 'Délai expiré pour le message (minutes)', - 'messagelimit' => 'Limite du message (publique)', - 'maxmessage' => 'Longueur maximale du message', - 'confirm' => 'êtes-vous certain ?', - 'yes' => 'Oui', - 'no' => 'Non', - 'colbg' => 'Couleur de fond', - 'coltxt' => 'Couleur du Texte', - 'maxname' => 'Longueur maximale pour le Pseudo', - 'minpass' => 'Longueur minimale du mot de passe', - 'defaultrefresh' => 'Temps de rechargement du message par défaut (seconds)', - 'suguests' => 'Autorisé un candidat', - 'rulestxt' => 'Règles (html)', - 'imgembed' => 'Images imbriquées', - 'trackip' => 'Voir la session-IP', - 'captchachars' => 'Charactères utilisés dans le Captcha', - 'memkick' => 'Membres peuvent expulsés, si le modérateur est absent', - 'memkickalways' => 'Membres peuvent toujours expulser', - 'forceredirect' => 'Forcer la redirection', - 'redirect' => 'Personnalisation du script de redirection', - 'backuprestore' => 'Sauvegarder et récupérer', - 'backup' => 'Sauvegarder', - 'restore' => 'Récupérer', - 'settings' => 'Paramètres', - 'linkfilter' => 'Lien filtré', - 'chatname' => 'Nom du chat', - 'destroy' => 'Destruction du chat', - 'destroyed' => 'Chat supprimé', - 'topic' => 'Sujet', - 'passreset' => 'Réinitialisation du mot de passe', - 'cantresetpass' => 'Ne peut pas réinitialiser le mot de passe', - 'succpassreset' => 'Réinitialisation du mot de passe ok! ', - 'entermsg' => '%s est arrivé sur le chat.', - 'exitmsg' => '%s a quitté le chat.', - 'memregmsg' => '%s est maintenant un membre enregistré.', - 'suregmsg' => '%s est maintenant un candidat enregistré.', - 'kickmsg' => '%s a été expulsé.', - 'multikickmsg' => '%s ont été expulsé.', - 'allkickmsg' => 'Tous les chatteurs ont été expulsé.', - 'cleanmsg' => '%s a été nettoyé.', - 'sendallmsg' => '%s - ', - 'sendmemmsg' => '[Membre] %s - ', - 'sendmodmsg' => '[Gestionnaire] %s - ', - 'sendadmmsg' => '[Administrateur] %s - ', - 'sendprvmsg' => '[%1$s to %2$s] - ', - 'msgsendall' => 'Message à tous', - 'msgsendmem' => 'Message aux membres seulement', - 'msgsendmod' => 'Message pour les gestionnaires seulement', - 'msgsendadm' => 'Message pour les administrateurs seulement', - 'msgsendprv' => 'Message privé', - 'numnotes' => 'Nombre de notes révisées à conserver', - 'revisions' => 'Révisions:', - 'older' => 'Précédent', - 'newer' => 'Nouveau', - 'accessdenied' => 'Accès interdit', - 'loggedinas' => 'Vous êtes connecté en tant que %s et vous n\'avez pas accès à cette section.', - 'newnickname' => 'Nouveau Pseudo:', - 'nicknametaken' => 'Pseudo déjà pris', - 'nopass' => 'Mot de passe invalide (au moins % caractères), ne pas changer le pseudo', - 'namedoers' => 'Montrez qui expulse les gens ou nettoie tous les messages.', - 'failednotice' => 'tentative de connexion ratée(s)', - 'dismiss' => 'reconnu', -]; - diff --git a/lang_id.php b/lang_id.php deleted file mode 100644 index 6dc1a99..0000000 --- a/lang_id.php +++ /dev/null @@ -1,318 +0,0 @@ - -* -* This program is free software: you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. -* -* This program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with this program. If not, see . -*/ - -//Native language name: Bahasa Indonesia -$T=[ - 'nodb' => 'Tak ada sambungan ke basisdata!', - 'nodbsetup' => 'Tak ada sambungan ke basisdata, silahkan buat basisdata dan sunting skrip ini agar menggunakan basisdata yang benar dengan nama pengguna dan kata sandi yang telah diberikan!', - 'changelang' => 'Ubah bahasa:', - 'expire' => 'Sesi salah/kadaluarsa', - 'kicked' => 'Diusir!', - 'noconfirm' => 'Konfirmasi kata sandi tidak cocok!', - 'incorregex' => 'Regular expression salah!', - 'bottom' => 'Bawah', - 'top' => 'Atas', - 'choose' => '(pilih)', - 'setup' => 'Pengaturan obrolan', - 'init' => 'Pengaturan awal', - 'sulogin' => 'Masuk Superadmin', - 'sunick' => 'Nama Superadmin:', - 'supass' => 'Kata sandi Superadmin:', - 'suconfirm' => 'Konfirmasi kata sandi:', - 'susuccess' => 'Berhasil terdaftar!', - 'initbtn' => 'Memulai obrolan', - 'initdbexist' => 'Tabel basisdata sudah ada! Untuk melanjutkan, Anda harus menghapus tabel ini secara manual terlebih dahulu.', - 'initsuexist' => 'Superadmin sudah ada!', - 'initgosetup' => 'Ke halaman-pengaturan', - 'captcha' => 'Captcha', - 'enabled' => 'Diaktifkan', - 'onlyguests' => 'Hanya untuk tamu', - 'disabled' => 'Dimatikan', - 'simple' => 'Sederhana', - 'moderate' => 'Moderat', - 'extreme' => 'Ekstrim', - 'nick' => 'Nama:', - 'pass' => 'Kata sandi:', - 'globalloginpass' => 'Sandi global:', - 'login' => 'Masuk', - 'dbupdate' => 'Basisdata berhasil diperbarui!', - 'sysmessage' => 'pesan dari sistem', - 'sysmessages' => 'Sistem perpesanan', - 'sysmessagetxt' => 'Teks ini mendahului pesan dari sistem.', - 'msgenter' => 'Memasuki', - 'msgexit' => 'Meninggalkan', - 'msgmemreg' => 'Anggota terdaftar', - 'msgsureg' => 'Pemohon terdaftar', - 'msgkick' => 'Diusir', - 'msgmultikick' => 'Pemohon diusir', - 'msgallkick' => 'Semuanya diusir', - 'msgclean' => 'Ruang dibersihkan', - 'dateformat' => 'Date formating', - 'admfunc' => 'Fungsi administrasi', - 'allguests' => 'Semua tamu', - 'cleanmsgs' => 'Bersihkan pesan', - 'room' => 'Seluruh ruangan', - 'selection' => 'Pilihan', - 'cleannick' => 'Nama berikut:', - 'clean' => 'Bersih', - 'kickchat' => 'Usir pengobrol (%d menit)', - 'kickreason' => 'pesan pengusiran:', - 'kickpurge' => 'Bersihkan pesan', - 'kick' => 'Usir', - 'logoutinact' => 'Keluar pengobrol aktif', - 'logout' => 'Keluar', - 'sessions' => 'Lihat sesi yang aktif', - 'view' => 'Lihat', - 'filter' => 'Saring', - 'guestacc' => 'Ubah akses tamu', - 'guestallow' => 'Izinkan', - 'guestwait' => 'Memungkinkan dengan ruang tunggu', - 'adminallow' => 'Memerlukan persetujuan moderator', - 'guestdisallow' => 'Hanya anggota', - 'addsuguest' => 'Tambah pemohon', - 'register' => 'Daftar', - 'admmembers' => 'Anggota', - 'memdel' => 'Hapus dari basisdata', - 'memdeny' => 'Akses ditolak (!)', - 'memsuguest' => 'Tetapkan menjadi pemohon (SG)', - 'memreg' => 'Tetapkan menjadi anggota biasa', - 'memmod' => 'Tetapkan menjadi moderator (M)', - 'memsumod' => 'Tetapkan menjadi supermod (SM)', - 'memadm' => 'Tetapkan menjadi admin (A)', - 'change' => 'Ubah', - 'regguest' => 'Mendaftar tamu', - 'regmem' => 'Daftar anggota baru', - 'sessact' => 'Sesi aktif', - 'sessnick' => 'Nama', - 'sesstimeout' => 'Waktu habis dalam', - 'sessua' => 'User-Agent', - 'fid' => 'ID penyaring:', - 'match' => 'Cocok', - 'replace' => 'Ganti', - 'allowpm' => 'Izinkan pada PM', - 'regex' => 'Regex', - 'apply' => 'Terapkan', - 'newfilter' => 'penyaring baru:', - 'add' => 'Tambah', - 'noframes' => 'Obrolan ini menggunakan frames. Mohon aktifkan frame pada penjelajah anda atau gunakan penjelajah yang cocok!', - 'delselmes' => 'Hapus pesan terpilih', - 'staffnotes' => 'Catatan Staf', - 'adminnotes' => 'Catatan admin', - 'notessaved' => 'Catatan tersimpan!', - 'lastedited' => 'Terakhir disunting oleh %1$s pada %2$s', - 'savenotes' => 'Simpan catatan', - 'waitingroom' => 'Ruang tunggu', - 'waittext' => 'Selamat datang %1$s, info masuk anda telah tertunda, Anda dapat mengakses obrolan dalam %2$d detik.', - 'admwaittext' => 'Selamat datang %1$s, info masuk anda telah tertunda, Anda dapat mengakses obrolan segera, Sebagai moderator memungkinkan anda untuk masuk.', - 'waitreload' => 'Jika halaman tidak memuat-ulang dalam %d detik, Gunakan tombol dibawah ini untuk memuat-ulang secara manual!', - 'reload' => 'Muat-ulang', - 'rules' => 'Peraturan', - 'talkto' => 'Kirim ke', - 'toall' => 'Semua pengobrol', - 'tomem' => 'Hanya member', - 'tostaff' => 'Hanya staf', - 'toadmin' => 'Hanya Admin', - 'alsopurge' => 'Juga hapus bersih pesan', - 'dellast' => 'Hapus pesan terakhir', - 'delall' => 'Hapus semua pesan', - 'switchsingle' => 'Beralih ke baris-tunggal', - 'switchmulti' => 'Beralih ke multi-baris', - 'help' => 'Bantuan', - 'helpguest' => 'Semua fungsi seharusnya cukup banyak memberikan penjelasan, tinggal gunakan tombol. Dalam profil Anda dapat menentukan jangka waktu muat-ulang halaman, warna font dan ukuran kotak masukan.
Note: Ini adalah obrolan, jadi jika Anda tidak ikut dalam obrolan, Anda akan otomatis dikeluarkan dari obrolan dalam jangka waktu yang sudah ditentukan.', - 'helpembed' => 'Jika anda ingin menyisipkan gambar pada pos anda, taruh saja [img] didepan url gambar. Contoh: [img]http://example.com/images/file.jpg akan menyisipkan gambar pada pos anda.', - 'helpmem' => 'Anggota: Anda akan memiliki beberapa pilihan di profil Anda. Anda dapat menyesuaikan font dan dapat mengubah kata sandi kapan saja.', - 'helpmod' => 'Moderator: Perhatikan tombol admin di bagian bawah. Ini akan memunculkan halaman dimana Anda dapat membersihkan ruangan, mengusir pengobrol, melihat semua sesi aktif dan mematikan semua hak akses tamu jika diperlukan.', - 'helpadm' => 'Admin: Anda dapat lebih jauh lagi bisa mendaftarkan tamu, menyunting anggota dan mendaftarkan nama baru tanpa mereka berada di ruangan.', - 'profile' => 'Profil Anda', - 'ignore' => 'Setuju', - 'unignore' => 'Tak setuju apapun', - 'refreshrate' => 'kecepatan penyegaran (%1$d-%2$d detik)', - 'fontcolour' => 'Warna font', - 'viewexample' => 'Lihat contoh', - 'bgcolour' => 'Warna latar belakang', - 'fontface' => 'jenis font', - 'roomdefault' => 'Ruang bawaan', - 'bold' => 'Tebal', - 'italic' => 'Miring', - 'fontexample' => 'Contoh untuk font yang anda pilih', - 'timestamps' => 'Tunjukkan penanda waktu', - 'embed' => 'Tanamkan gambar', - 'incognito' => 'Mode penyamaran', - 'changepass' => 'Ubah kata sandi', - 'oldpass' => 'Kata sandi lama:', - 'newpass' => 'Kata sandi baru:', - 'confirmpass' => 'Konfirmasi kata sandi baru:', - 'savechanges' => 'Simpan perubahan', - 'reloadpb' => 'Muat-ulang kotak pos', - 'reloadmsgs' => 'Muat-ulang pesan', - 'viewpublicnotes' => 'Baca catatan terbuka', - 'publicnotes' => 'Catatan terbuka', - 'chgprofile' => 'Profil', - 'adminbtn' => 'Admin', - 'admnotes' => 'Catatan Admin', - 'notes' => 'Catatan', - 'clone' => 'Klon', - 'randh' => 'Peraturan & Bantuan', - 'exit' => 'Keluar dari obrolan', - 'bye' => 'Dah %s, Kunjungi lagi nanti!', - 'colourtable' => 'Tabel warna', - 'backtoprofile' => 'Kembali ke profil anda', - 'copy' => 'Salin:', - 'choosecol' => 'Silahkan pilih warna:', - 'randomcol' => 'Warna acak', - 'enter' => 'Masuk obrolan', - 'error' => 'Kesalahan', - 'admin' => 'Admin', - 'staff' => 'Staf', - 'members' => 'Anggota', - 'guests' => 'Tamu', - 'approveguests' => '%d tamu baru untuk disetujui', - 'allowchecked' => 'Izinkan terpilih', - 'allowall' => 'Izinkan semuanya', - 'denychecked' => 'Tolak terpilih', - 'denyall' => 'Tolak semuanya', - 'denymessage' => 'Kirim pesan untuk menolak:', - 'butallowdeny' => 'Kirim', - 'waitempty' => 'Tak ada lagi permintaan masuk untuk disetujui.', - 'wrongcaptcha' => 'Captcha salah', - 'captchaexpire' => 'Captcha sudah digunakan atau kadaluarsa.', - 'noguests' => 'Maaf, saat ini hanya anggota!', - 'curchat' => 'Sekarang terdapat %d pengobrol di ruangan:', - 'cantreg' => 'Tak bisa mendaftarkan %s', - 'alreadyreged' => '%s sudah terdaftar.', - 'successreg' => '%s berhasil terdaftar.', - 'cantchgstat' => 'Tak dapat mengganti status dari %s', - 'succdel' => '%s berhasil dihapus dari basisdata.', - 'succchg' => 'Status dari %s berhasil dirubah.', - 'wrongpass' => 'Kata sandi salah!', - 'wrongglobalpass' => 'Kata sani global salah!', - 'succprofile' => 'Profil anda sudah berhasil disimpan.', - 'backtologin' => 'Kembali ke halaman masuk.', - 'backtochat' => 'Kembali ke obrolan.', - 'Beige' => 'Krem', - 'Black' => 'Hitam', - 'Blue' => 'Biru', - 'BlueViolet' => 'Lembayung biru', - 'Brown' => 'Coklat', - 'Cyan' => 'Sian', - 'DarkBlue' => 'Biru tua', - 'DarkGreen' => 'Hihau tua', - 'DarkRed' => 'Merah tua', - 'DarkViolet' => 'Lembayung tua', - 'DeepSkyBlue' => 'Biru langit', - 'Gold' => 'Emas', - 'Grey' => 'Abu-abu', - 'Green' => 'Hijau', - 'HotPink' => 'Merah jambu', - 'Indigo' => 'Nila', - 'LightBlue' => 'Biru muda', - 'LightGreen' => 'Hijau muda', - 'LimeGreen' => 'Hijau limu', - 'Magenta' => 'Magenta', - 'Olive' => 'Zaitun', - 'Orange' => 'Jingga', - 'OrangeRed' => 'Merah jingga', - 'Purple' => 'Ungu', - 'Red' => 'Merah', - 'RoyalBlue' => 'Biru royal', - 'SeaGreen' => 'Hijau laut', - 'Sienna' => 'Sienna', - 'Silver' => 'Perak', - 'Tan' => 'Kecoklatan', - 'Teal' => 'Teal', - 'Violet' => 'Lembayung', - 'White' => 'Putih', - 'Yellow' => 'Kuning', - 'YellowGreen' => 'Hjau kuning', - 'redirectto' => 'Mengarahkan ke:', - 'nonhttp' => 'Meminta tautan non-http:', - 'httpredir' => 'Jika tak bekerja, pilih salah satu:', - 'actions' => 'Tindakan', - 'sesip' => 'Alamat-IP', - 'css' => 'CSS Style', - 'memberexpire' => 'Batas waktu anggota (menit)', - 'guestexpire' => 'Batas waktu tamu (menit)', - 'kickpenalty' => 'Sanksi pengusiran (menit)', - 'entrywait' => 'Waktu ruang tunggu (detik)', - 'captchatime' => 'Batas waktu captcha (detik)', - 'messageexpire' => 'Batas waktu pesan (menit)', - 'messagelimit' => 'Batas pesan (publik)', - 'maxmessage' => 'Panjang pesan maksimal', - 'confirm' => 'Apakah Anda yakin?', - 'yes' => 'Ya', - 'no' => 'Tidak', - 'colbg' => 'Warna latar belakang', - 'coltxt' => 'Warna tulisan', - 'maxname' => 'Panjang maksimal nama', - 'minpass' => 'Panjang minimal kata sandi', - 'defaultrefresh' => 'Waktu muat-ulang pesan bawaan (detik)', - 'suguests' => 'Memungkinkan pemohon', - 'rulestxt' => 'Peraturan (html)', - 'imgembed' => 'Tanam gambar', - 'trackip' => 'Tunjukkan sesi-IP', - 'captchachars' => 'Karakter yang digunakan dalam Captcha', - 'memkick' => 'Anggota dapat mengusir, jika tak ada moderator', - 'memkickalways' => 'Anggota selalu dapat mengusir', - 'forceredirect' => 'Paksa pengalihan', - 'redirect' => 'Skrip pengalihan kustom', - 'backuprestore' => 'Cadang dan pulihkan', - 'backup' => 'Cadangkan', - 'restore' => 'Pulihkan', - 'settings' => 'Pengaturan', - 'linkfilter' => 'penyaring-tautan', - 'chatname' => 'Nama obrolan', - 'destroy' => 'Musnahkan obrolan', - 'destroyed' => 'Berhasil memusnahkan obrolan', - 'topic' => 'Topik', - 'passreset' => 'Atur-ulang kata sandi', - 'cantresetpass' => 'Tidak bisa mengatur-ulang kata sandi', - 'succpassreset' => 'Berhasil mengatur-ulang kata sandi', - 'entermsg' => '%s memasuki obrolan.', - 'exitmsg' => '%s keluar dari obrolan.', - 'memregmsg' => '%s sekarang adalah anggota terdaftar.', - 'suregmsg' => '%s sekarang adalah pemohon terdaftar.', - 'kickmsg' => '%s sudah diusir.', - 'multikickmsg' => '%s telah diusir.', - 'allkickmsg' => 'Semua pengobrol sudah diusir.', - 'cleanmsg' => '%s sudah dibersihkan.', - 'sendallmsg' => '%s - ', - 'sendmemmsg' => '[M] %s - ', - 'sendmodmsg' => '[Staf] %s - ', - 'sendadmmsg' => '[Admin] %s - ', - 'sendprvmsg' => '[%1$s ke %2$s] - ', - 'msgsendall' => 'Pesan ke semuanya', - 'msgsendmem' => 'Pesan hanya kepada member', - 'msgsendmod' => 'Pesan hanya kepada staf', - 'msgsendadm' => 'Pesan hanya kepada admin', - 'msgsendprv' => 'Pesan pribadi', - 'numnotes' => 'Jumlah catatan Revisi yang disimpan', - 'revisions' => 'Revisi:', - 'older' => 'Lama', - 'newer' => 'Baru', - 'accessdenied' => 'Akses ditolak', - 'loggedinas' => 'Anda masuk sebagai %s dan tak dapat mengakses bagian ini.', - 'newnickname' => 'Nama baru:', - 'nicknametaken' => 'Nama sudah ada', - 'nopass' => 'Kata sandi salah (Minimal %d karakter), tak merubah nama', - 'namedoers' => 'Memperlihatkan siapa yang mengusir orang atau membersihkan semua pesan.', - 'failednotice' => 'upaya log masuk gagal', - 'dismiss' => 'mengakui', -]; - diff --git a/lang_it.php b/lang_it.php deleted file mode 100644 index 47fe8a9..0000000 --- a/lang_it.php +++ /dev/null @@ -1,378 +0,0 @@ - -* -* This program is free software: you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. -* -* This program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with this program. If not, see . -*/ - -//Native language name: Italiano -$T=[ - 'nodb' => 'Non cè collegamento al database!', - 'nodbsetup' => 'Non cè collegamento con database, perfavore crea il database ed edita lo scipt, per utilizzare database giusto con utente e password creati', - 'changelang' => 'Cambia lingua:', - 'expire' => 'Sessione invalida', - 'kicked' => 'Bannato!', - 'invalnick' => 'Nome sbagliato (%1$d simboli al massimo e deve coincidere con il testo"%2$s")', - 'invalpass' => 'Password sbagliata (Almeno %1$d simboli e deve coincidere con il testo "%2$s")', - 'noconfirm' => 'Password inserite non coincidono!', - 'incorregex' => 'Testo non corretto', - 'bottom' => 'Giù', - 'top' => 'Su', - 'choose' => '(sclegli)', - 'setup' => 'Impostare chat', - 'init' => 'Impostazioni iniziali', - 'sulogin' => 'Entrata per super-amministratore', - 'sunick' => 'Nome super-amministratore:', - 'supass' => 'Password super-amministratore:', - 'suconfirm' => 'Conferma password:', - 'susuccess' => 'Registrato con successo!', - 'initbtn' => 'Inizio della chat', - 'initdbexist' => 'Tabelle nel database esistono! Per continuare, prima devi eliminare tabelle manualmente.', - 'initsuexist' => 'Super-amministratore è già esistente!', - 'initgosetup' => 'Impostazioni Chat', - 'captcha' => 'Captcha', - 'enabled' => 'Abilitato', - 'onlyguests' => 'Solo per ospiti', - 'disabled' => 'Disabilitato', - 'simple' => 'Facile', - 'moderate' => 'Medio', - 'extreme' => 'Difficile', - 'nick' => 'Login:', - 'pass' => 'Password:', - 'globalloginpass' => 'Password globale:', - 'login' => 'Entrare', - 'dbupdate' => 'Database aggiornato!', - 'sysmessage' => 'messaggio del sistema', - 'sysmessages' => 'Messaggi del sistema', - 'sysmessagetxt' => 'Questo testo precede i messaggi del sistema.', - 'msgenter' => 'Entrata', - 'msgexit' => 'Uscita', - 'msgmemreg' => 'Registarto', - 'msgsureg' => 'Richiedente registrato', - 'msgkick' => 'Bannato', - 'msgmultikick' => 'Bannati più volte', - 'msgallkick' => 'Tutti bannati', - 'msgclean' => 'Pulizia chat', - 'dateformat' => 'Fuso Orario', - 'admfunc' => 'Funzioni del amministratore', - 'allguests' => 'Tutti ospiti', - 'cleanmsgs' => 'Cancella messaggi', - 'room' => 'Stanza pubblica', - 'selection' => 'Scelta', - 'cleannick' => 'Al Nome:', - 'clean' => 'Cancella', - 'kickchat' => 'Ban (%d minuti)', - 'kickreason' => 'Messaggio al bannato', - 'kickpurge' => 'Pulizia messaggi', - 'kick' => 'Kick', - 'logoutinact' => 'Espelli partecipante', - 'logout' => 'Logout', - 'sessions' => 'Sessioni attive', - 'view' => 'Visualizza', - 'filter' => 'Filtro', - 'guestacc' => 'Cambia entrata nella chat', - 'guestallow' => 'Accettare', - 'guestwait' => 'Accettare ospiti', - 'adminallow' => 'Richiedere il permesso al moderatore', - 'guestdisallow' => 'Solo membri', - 'addsuguest' => 'Aggiungere candidato', - 'register' => 'Registrare', - 'admmembers' => 'Membri', - 'memdel' => 'Eliminare dal database', - 'memdeny' => 'Aggiungere membro (!)', - 'memsuguest' => 'Aggiunzione al candidato (SG)', - 'memreg' => 'Aggiornare stato', - 'memmod' => 'Aggiunzione moderatore (M)', - 'memsumod' => 'Aggiunzione super-moderatore (SM)', - 'memadm' => 'Aggiunzione amministratore (A)', - 'change' => 'Cambia', - 'regguest' => 'Registra opspiti', - 'regmem' => 'Registra nuovo utente', - 'sessact' => 'Sessioni attive', - 'sessnick' => 'Nome', - 'sesstimeout' => 'Tempo di attesa in', - 'sessua' => 'User-Agent', - 'fid' => 'Filtro ID:', - 'match' => 'Coincidenza', - 'replace' => 'Sostituire', - 'allowpm' => 'Accettare in privato', - 'regex' => 'Testo regolare', - 'apply' => 'Salvare', - 'newfilter' => 'Nuovo filtro:', - 'add' => 'Aggiungere', - 'noframes' => 'Questa chat utilizza frames. Perfavore, avvia il supporto nel tuo Browser o utilizza quello adatto!', - 'delselmes' => 'Eliminare messaggi selezionati', - 'staffnotes' => 'Note del supporto', - 'adminnotes' => 'Note del amministratore', - 'notessaved' => 'Note salvate!', - 'lastedited' => 'Ultima redazione %1$s %2$s', - 'savenotes' => 'Salvare note', - 'waitingroom' => 'Degli ospiti', - 'waittext' => 'Benvenuto %1$s, rimani in attesa, chat sarà disponibile tra %2$d secondi.', - 'admwaittext' => 'Benvenuto %1$s, rimani in attesa, chat sarà disponibile dopo che moderazione accetta entrata.', - 'waitreload' => 'Se questa pagina non risponde, non si aggiorna ogni %d secondi, utilizzate il tasto in basso, per ricaricare manualmente', - 'reload' => 'Ricaricare', - 'rules' => 'Regole', - 'talkto' => 'Invia', - 'toall' => 'Tutti nella chat', - 'tomem' => 'Membri', - 'tostaff' => 'Staff', - 'toadmin' => 'Amministratore', - 'alsopurge' => 'Eliminare messaggi', - 'dellast' => 'Eliminare utlimo messaggio', - 'delall' => 'Eliminare tutti messaggi', - 'switchsingle' => 'Abilitare modalità riga(e)', - 'switchmulti' => 'Abilitare multiriga', - 'help' => 'Aiuto', - 'helpguest' => 'Tutte le funzioni sono chiare, solo utilizzate i tasti. Nelle impostazioni del vostro profilo potete impostare tempo di aggiornamento, colore del carattere e dimensione della finestra.
Nota: é una chat, per questo anche se non scrivete niente, sarà in automatico salvato dopo un tot di tempo..', - 'helpembed' => 'Se volete impostare immagine nel vostro post, attaccate [img] davanti al vostro URL-immagine. Esempio: [img]http://example.com/images/file.jpg sarà agganciato al vostro messaggio.
Anche disponibile carica file cliccando pulsante in alro "Browse..."
', - 'helpmem' => 'Membri: Avete alcune scelte nelle impostazioni del profilo. Si può impostare carattere e cambiare la password in qualsiasi momento.', - 'helpmod' => 'Staff: Visualizzate il tasto dell amministratore giù. Questo vi riendizzerà, dove potete ripulire la stanza, bannare, visualizzare sessioni attive e disabilitare accesso agli ospiti, se necessario.', - 'helpadm' => 'Amministratori: Vi è disponibile registrare utenti, modificare e rigistrare nuovi nomi senza che ci siano nella stanza.', - 'profile' => 'Mio profilo', - 'ignore' => 'Ignorare', - 'unignore' => 'Non ignorare più', - 'refreshrate' => 'Ricarica Chat (%1$d-%2$d secondi)', - 'fontcolour' => 'Colore carattere', - 'viewexample' => 'Visualizza esempi', - 'bgcolour' => 'Colore sfondo', - 'fontface' => 'Carattere', - 'roomdefault' => 'Predefinito', - 'bold' => 'Grassetto', - 'italic' => 'Corsivo', - 'small' => 'Diminuito', - 'fontexample' => 'Esempio del carattere selezionato', - 'timestamps' => 'Visualizzare il tempo', - 'embed' => 'Incollare immagine', - 'incognito' => 'Modalità incognito', - 'changenick' => 'Cambia nome', - 'changepass' => 'Cambia password', - 'oldpass' => 'Vecchio profilo:', - 'newpass' => 'Nuovo profilo:', - 'confirmpass' => 'Conferma:', - 'savechanges' => 'Salavre cambiamenti', - 'reloadpb' => 'Ricarica Chat', - 'reloadmsgs' => 'Aggiorna/Indietro', - 'viewpublicnotes' => 'Leggere appunti pubbliche', - 'chgprofile' => 'Profilo', - 'adminbtn' => 'Amministratore', - 'admnotes' => 'Note del amministratore', - 'notes' => 'Appunti', - 'clone' => 'Clona', - 'randh' => 'Regole/Aiuto', - 'exit' => 'Abbandona', - 'bye' => 'Ti salutiamo %s, entra ancora!', - 'colourtable' => 'Esempio colori', - 'backtoprofile' => 'Tornare nel mio profilo', - 'copy' => 'Copia:', - 'choosecol' => 'Selezionate colore:', - 'randomcol' => 'Colore a caso', - 'enter' => 'Entrare', - 'error' => 'Errore', - 'admin' => 'Admin', - 'staff' => 'Staff', - 'members' => 'Registrati', - 'guests' => 'Ospiti', - 'approveguests' => '%d nuovi ospiti da accettare', - 'allowchecked' => 'Permettere verifica', - 'allowall' => 'Permettere a tutti', - 'denychecked' => 'Non permettere verifica', - 'denyall' => 'Non permettere a nessuno', - 'denymessage' => 'Mandare messaggio con rifiuto:', - 'butallowdeny' => 'Inviare', - 'waitempty' => 'Non ci sono più richieste disponibili.', - 'wrongcaptcha' => 'Captcha errata!', - 'captchaexpire' => 'Codice di protezione è già in utilizzo oppure tempo scaduto.', - 'noguests' => 'Scusate, entrano solo registrati!', - 'curchat' => 'Attualmente %d partecipante (i) in stanza:', - 'cantreg' => 'Non puoi registrarti %s', - 'alreadyreged' => '%s Già registrato.', - 'successreg' => '%s Registrato con successo.', - 'cantchgstat' => 'Impossibile cambiare stato %s', - 'succdel' => '%s eliminato dal database.', - 'succchg' => 'Stato %s cambaito con successo.', - 'wrongpass' => 'Password errata!', - 'wrongglobalpass' => 'Password globale sbagliata!', - 'succprofile' => 'Tuo profilo è stato salvato.', - 'backtologin' => 'Tornare nella pag. pincipale.', - 'backtochat' => 'Tornare nella chat.', - 'Beige' => 'Beige', - 'Black' => 'Nero', - 'Blue' => 'Blu', - 'BlueViolet' => 'Viola-blu', - 'Brown' => 'Marrone', - 'Cyan' => 'Azzurro', - 'DarkBlue' => 'Blu-scuro', - 'DarkGreen' => 'Verde-scuro', - 'DarkRed' => 'Rosso-scuro', - 'DarkViolet' => 'Viola-scuro', - 'DeepSkyBlue' => 'Azzurro chiaro', - 'Gold' => 'Oro', - 'Grey' => 'Griggio', - 'Green' => 'Verde', - 'HotPink' => 'Rosa-chiaro', - 'Indigo' => 'Indigo', - 'LightBlue' => 'Blu-chiaro', - 'LightGreen' => 'Verde-charo', - 'LimeGreen' => 'Verde lime', - 'Magenta' => 'Magenta', - 'Olive' => 'Oliva', - 'Orange' => 'Arancione', - 'OrangeRed' => 'Arancione-rosso', - 'Purple' => 'Viola', - 'Red' => 'Rosso', - 'RoyalBlue' => 'Re blu', - 'SeaGreen' => 'Verde mare', - 'Sienna' => 'Siena', - 'Silver' => 'Cromato', - 'Tan' => 'Abbronzato', - 'Teal' => 'Teal', - 'Violet' => 'Viola', - 'White' => 'Bianco', - 'Yellow' => 'Giallo', - 'YellowGreen' => 'Giallo-verde', - 'redirectto' => 'Riendirizzamento su:', - 'nonhttp' => 'Url richiesto non è http:', - 'httpredir' => 'Se non funziona prova questo:', - 'actions' => 'Azioni', - 'sesip' => 'IP-indirizzo', - 'css' => 'CSS stili', - 'memberexpire' => 'Time-Out membri (minuti)', - 'guestexpire' => 'Time-out ospiti (minuti)', - 'kickpenalty' => 'Ban (minuti)', - 'entrywait' => 'Tempo di attesa stanza ospiti (secondi)', - 'captchatime' => 'Time-Out Captcha (secondi)', - 'messageexpire' => 'Time-Out messaggi (minuti)', - 'messagelimit' => 'Limite messaggi (pubblici)', - 'maxmessage' => 'Lunghezza massimale dei messaggi', - 'confirm' => 'Sei sicuro?', - 'yes' => 'Si', - 'no' => 'No', - 'colbg' => 'Colore sfondo', - 'coltxt' => 'Colore testo', - 'maxname' => 'Lunghezza nome massimale', - 'minpass' => 'Lunghezza minima password', - 'defaultrefresh' => 'In predefinito tempo di ricarica (secondi)', - 'suguests' => 'Accettare ospiti', - 'rulestxt' => 'Regole (html)', - 'imgembed' => 'Inserimento immagini', - 'trackip' => 'Visualizzare IP-sessione', - 'captchachars' => 'Simboli, utilizzati in Captcha', - 'memkick' => 'Membri possono espellere, se non è presente moderatore', - 'memkickalways' => 'Membri sempre possono espellere', - 'forceredirect' => 'Riendirizzamento forzato', - 'redirect' => 'Riendirizzamento forzato membri', - 'backuprestore' => 'Backup e ripristino', - 'backup' => 'Backup', - 'restore' => 'Ripristino', - 'settings' => 'Impostazioni', - 'linkfilter' => 'Filtaggio link', - 'chatname' => 'Nome Chat', - 'destroy' => 'Distruggere chat', - 'destroyed' => 'Chat distrutto', - 'topic' => 'Tema', - 'passreset' => 'Cambia password', - 'cantresetpass' => 'Impossibile cambiare password', - 'succpassreset' => 'Password cambiata', - 'entermsg' => '%s entrato in chat.', - 'exitmsg' => '%s abbandonato chat.', - 'memregmsg' => '%s ora registrato membro.', - 'suregmsg' => '%s ora registrato candidato.', - 'kickmsg' => '%s espcluso dalla chat.', - 'multikickmsg' => '%s esclusi dalla chat.', - 'allkickmsg' => 'tutti ospiti esplusi dalla chat.', - 'cleanmsg' => '%s pulito prima.', - 'sendallmsg' => '%s - ', - 'sendmemmsg' => '[M] %s - ', - 'sendmodmsg' => '[Staff] %s - ', - 'sendadmmsg' => '[Admin] %s - ', - 'sendprvmsg' => '[%1$s a %2$s] - ', - 'msgsendall' => 'Messaggio a tutti', - 'msgsendmem' => 'Messaggio ai membri', - 'msgsendmod' => 'Messaggio solo ai moderatori', - 'msgsendadm' => 'Messaggio solo al amministratore', - 'msgsendprv' => 'Messaggio privato', - 'numnotes' => 'Numero per salvare', - 'revisions' => 'Ripristino:', - 'older' => 'Vecchi', - 'newer' => 'Nuovi', - 'accessdenied' => 'Rifiutato.', - 'loggedinas' => 'Sei entrato come %s e non hai accesso alla sessione.', - 'newnickname' => 'Nuovo nome:', - 'nicknametaken' => 'Nome occupato', - 'nopass' => 'Password sbagliata (Almeno %d simboli), senza cambiare nome', - 'gdextrequired' => 'The gd extension of PHP is required for this feature. Please install it first.', - 'memcachedextrequired' => 'The memcached extension of PHP is required for the caching feature. Please install it first or set the memcached setting back to false.', - 'sodiumextrequired' => 'The libsodium extension of PHP is required for the encryption feature. Please install it first or set the encrypted setting back to false.', - 'pdo_mysqlextrequired' => 'The pdo_mysql extension of PHP is required for the selected database driver. Please install it first.', - 'pdo_pgsqlextrequired' => 'The pdo_pgsql extension of PHP is required for the selected database driver. Please install it first.', - 'pdo_sqliteextrequired' => 'The pdo_sqlite extension of PHP is required for the selected database driver. Please install it first.', - 'jsonextrequired' => 'The json extension of PHP is required for this feature. Please install it first.', - 'sendmail' => 'Mandare messaggio come nuovo pubblico', - 'mailsender' => 'Mandare messaggio utilizzando questo indirizzo', - 'mailreceiver' => 'Mandare messaggio a questo indirizzo', - 'modfallback' => 'Tornare nella stanza di attesa, se non è presente moderatore', - 'regpass' => 'Ripetere password
Registrarsi', - 'guestreg' => 'Permettere di registrarsi agli ospiti', - 'asmember' => 'Come membro', - 'assuguest' => 'Come candidato', - 'fatalerror' => 'Errore fatale', - 'prevmatch' => 'Testi nei campi coincidono', - 'matchtoolong' => 'Testo troppo lungo. Si puà utilizzare solo 255 simboli, provare suddividere campo in parti', - 'nocache' => 'Avtoricarica (per i Browser precedenti, per suddividere dal alto-basso)', - 'disablepm' => 'Disabilitare mess. privati', - 'disablechat' => 'Disabilitare chat', - 'disabletext' => 'Messaggio di chat disabilitata (html)', - 'disabledtext' => 'Attualmente disabilitato', - 'defaulttz' => 'Fus orario predefinito', - 'tz' => 'Fuso Orario', - 'optional' => '(optional)', - 'userloggedin' => 'Utilizzatore con questo nome è già in rete.', - 'regednick' => 'Questo nome appartiene già ad un altro.', - 'failednotice' => 'tentativi di accesso non riusciti', - 'dismiss' => 'riconosciuto', - 'eninbox' => 'Abilitare offline-posta', - 'inboxmsgs' => 'Leggete %d messaggi in entrata', - 'offline' => '(offline)', - 'deleteacc' => 'Eliminare account', - 'eninnone' => 'Per nessuno', - 'eninall' => 'Per tutti', - 'eninmem' => 'Solo per membri', - 'eninstaff' => 'Solo per moderatori', - 'eninadmin' => 'Solo per amministratore', - 'nickregex' => 'Nickname regex', - 'passregex' => 'Password regex', - 'externalcss' => 'Link per CSS esterno', - 'greetingmsg' => 'Benvenuto %s!', - 'entryhelp' => '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.', - 'enablegreeting' => 'Visualizzare benvenuto prima del ultimo messaggio', - 'unban' => 'Sbloccare', - 'sortupdown' => 'Riordinare messaggi dal alto in basso', - 'sortframe' => 'Ribaltare chat', - 'cs' => 'Registrazione-sensibile', - 'hidechatters' => 'Nascondere lista dei partecipanti', - 'enfileupload' => 'Abilitare upload dei file', - 'msgattache' => 'Annotazione', - 'filenotfound' => 'File non trovato!', - 'maxuploadsize' => 'Dimensione massima del file KB', - 'maxsize' => 'Max. %d KB', - 'cssupdate' => 'Note: Default CSS is now hardcoded and can be removed from the CSS setting', - 'manualrefresh' => 'Bisogna aggiornare pagina manualmente', - 'personalnotes' => 'Appunti personali', - 'publicnotes' => 'Appunti pubbliche', - 'filtermodkick' => 'Utlizzare filtro di esclusione per moderatori', - 'namedoers' => 'Mostra chi espelle le persone o elimina tutti i messaggi.', -]; diff --git a/lang_pt.php b/lang_pt.php deleted file mode 100644 index 7c4ec46..0000000 --- a/lang_pt.php +++ /dev/null @@ -1,386 +0,0 @@ - -* -* This program is free software: you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. -* -* This program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with this program. If not, see . -*/ - -//Native language name: Português -$I=[ - 'nodb' => 'Sem conexão com o banco de dados!', - 'nodbsetup' => 'Sem conexão com o banco de dados, crie um banco de dados e edite o script para usar o banco de dados correto com o nome de usuário e a senha fornecidos!', - 'changelang' => 'Mudar idioma:', - 'expire' => 'Sessão inválida/expirada', - 'kicked' => 'Você foi expulso!', - 'invalnick' => 'Nickname inválido (%1$d caracteres no máximo e deve corresponder à expressão regular "%2$s")', - 'invalpass' => 'Senha inválida (Pelo menos %1$d caracteres e tem que corresponder à expressão regular "%2$s")', - 'noconfirm' => 'A confirmação da senha não corresponde!', - 'incorregex' => 'Expressão regular incorreta!', - 'bottom' => 'Base', - 'top' => 'Topo', - 'choose' => '(escolher)', - 'setup' => 'Configuração do Chat', - 'init' => 'Configuração inicial', - 'sulogin' => 'Superadmin Login', - 'sunick' => 'Nickname do Superadmin:', - 'supass' => 'Senha do Superadmin:', - 'suconfirm' => 'Confirmar senha:', - 'susuccess' => 'Registrado com sucesso!', - 'initbtn' => 'Inicializar Chat', - 'initdbexist' => 'As tabelas de banco de dados já existem! Para continuar, você deve primeiro excluir essas tabelas manualmente.', - 'initsuexist' => 'Já existe um Superadmin!', - 'initgosetup' => 'Ir para a página de configuração', - 'captcha' => 'Captcha', - 'enabled' => 'Ativado', - 'onlyguests' => 'Apenas para convidados', - 'disabled' => 'Desativado', - 'simple' => 'Simples', - 'moderate' => 'Médio', - 'extreme' => 'Extremo', - 'nick' => 'Nickname:', - 'pass' => 'Senha:', - 'globalloginpass' => 'Senha global:', - 'login' => 'Login', - 'dbupdate' => 'Banco de dados atualizado com sucesso!', - 'sysmessage' => 'mensagem do sistema', - 'sysmessages' => 'Mensagens do sistema', - 'sysmessagetxt' => 'Este texto precede mensagens do sistema.', - 'msgenter' => 'Entrada', - 'msgexit' => 'Saída', - 'msgmemreg' => 'Membro registrado', - 'msgsureg' => 'Candidato registrado', - 'msgkick' => 'Expulso', - 'msgmultikick' => 'Expulsão múltiplo', - 'msgallkick' => 'Todos expulsos', - 'msgclean' => 'Sala limpa', - 'dateformat' => 'Formatação da data', - 'admfunc' => 'Funções administrativas', - 'allguests' => 'Todos os convidados', - 'cleanmsgs' => 'Limpar mensagens', - 'room' => 'Sala inteira', - 'selection' => 'Selecionar', - 'cleannick' => 'Seguinte nickname:', - 'clean' => 'Limpar', - 'kickchat' => 'Expulsar usuário (%d minutos)', - 'kickreason' => 'mensagem da expulsão:', - 'kickpurge' => 'Limpar mensagens', - 'kick' => 'Expulsar', - 'logoutinact' => 'Terminar sessão da pessoa inativa', - 'logout' => 'Terminar sessão', - 'sessions' => 'Ver sessões ativas', - 'view' => 'Ver', - 'filter' => 'Filtro', - 'guestacc' => 'Mudar Acesso do convidados', - 'guestallow' => 'Permitir', - 'guestwait' => 'Permitir com sala de espera', - 'adminallow' => 'Requer aprovação do moderador', - 'guestdisallow' => 'Apenas membros', - 'addsuguest' => 'Registrar candidato', - 'register' => 'Registrar', - 'admmembers' => 'Membros', - 'memdel' => 'Excluir do banco de dados', - 'memdeny' => 'Negar acesso (!)', - 'memsuguest' => 'Definir como candidato (SG)', - 'memreg' => 'Definir como membro regular', - 'memmod' => 'Definir como moderador (M)', - 'memsumod' => 'Definir como supermod (SM)', - 'memadm' => 'Definir como administrador (A)', - 'change' => 'Alterar', - 'regguest' => 'Registrar convidado', - 'regmem' => 'Registrar novo Membro', - 'sessact' => 'Sessões ativas', - 'sessnick' => 'Nickname', - 'sesstimeout' => 'Tempo restante', - 'sessua' => 'User-Agent', - 'fid' => 'Número do filtro:', - 'match' => 'Match', - 'replace' => 'Substituir', - 'allowpm' => 'Permitir MP', - 'regex' => 'expressão regular', - 'apply' => 'Aplicar', - 'newfilter' => 'Novo filtro:', - 'add' => 'Adicionar', - 'noframes' => 'Esse chat usa frames. Por favor, habilite os frames em seu navegador ou use um adequado!', - 'delselmes' => 'Excluir mensagens selecionadas', - 'staffnotes' => 'Notas do equipe', - 'adminnotes' => 'Notas dos administradores', - 'notessaved' => 'Notas salvadas!', - 'lastedited' => 'Última edição por %1$s em %2$s', - 'savenotes' => 'Salvar Notas', - 'waitingroom' => 'Sala de espera', - 'waittext' => 'Bem-vindo %1$s, seu login foi atrasado, você pode acessar o chat em %2$d segundos.', - 'admwaittext' => 'Bem-vindo %1$s, seu login foi atrasado, você pode acessar o chat assim que um moderador permitir que você entre.', - 'waitreload' => 'Se esta página não atualizar a cada %d segundos, use o botão abaixo para recarregá-la manualmente!', - 'reload' => 'Recarregar', - 'rules' => 'Regras', - 'talkto' => 'Enviar para', - 'toall' => 'Todos', - 'tomem' => 'Apenas membros', - 'tostaff' => 'Apenas equipe', - 'toadmin' => 'Apenas administradores', - 'alsopurge' => 'Também limpar mensagens', - 'dellast' => 'Apagar a última mensagem', - 'delall' => 'Apagar todas as mensagens', - 'switchsingle' => 'Mudar para linha única', - 'switchmulti' => 'Mudar para multilinhas', - 'help' => 'Ajuda', - 'helpguest' => 'Todas as funções devem ser autoexplicativas, basta usar os botões. Em seu perfil, você pode ajustar a taxa de atualização e a cor da fonte, além de ignorar os usuários.
Observação: Isso é um chat, então se você não continuar falando, será automaticamente desconectado depois de um tempo.', - 'helpembed' => 'Se você quiser incorporar uma imagem em sua postagem, basta colocar [img] na frente do URL da imagem. Exemplo: [img]http://example.com/images/file.jpg irá incorporar a imagem em sua postagem.', - 'helpmem' => 'Membros: Vocês teram algumas opções a mais em seu perfil. Você pode ajustar sua fonte, alterar sua senha a qualquer momento e, claro, você pode excluir sua conta.', - 'helpmod' => 'Moderadores: Observe o botão Admin na parte inferior. Isso abrirá uma página 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.', - 'helpadm' => 'Admins: Além de tudo isso, você poderá registrar convidados, editar membros e registrar novas nicknames.', - 'profile' => 'Seu perfil', - 'ignore' => 'Ignorar', - 'unignore' => 'Não ignorar mais', - 'refreshrate' => 'Taxa de recarregar (%1$d-%2$d segundos)', - 'fontcolour' => 'Cor da fonte', - 'viewexample' => 'Ver exemplos', - 'bgcolour' => 'Cor de fundo', - 'fontface' => 'Tipo de letra', - 'roomdefault' => 'Padrão', - 'bold' => 'Negrito', - 'italic' => 'Itálico', - 'small' => 'Pequeno', - 'fontexample' => 'Exemplo para a fonte escolhida', - 'timestamps' => 'Mostrar carimbos de hora', - 'embed' => 'Incorporar imagens', - 'incognito' => 'Modo incógnito', - 'changenick' => 'Mudar nickname', - 'changepass' => 'Mudar Senha', - 'oldpass' => 'Senha Antiga:', - 'newpass' => 'Nova senha:', - 'confirmpass' => 'Confirmar nova senha:', - 'savechanges' => 'Salvar alterações', - 'reloadpb' => 'Recarregar caixa de postagem', - 'reloadmsgs' => 'Recarregar Mensagens', - 'viewpublicnotes' => 'Ler notas públicas', - 'chgprofile' => 'Perfil', - 'adminbtn' => 'Admin', - 'admnotes' => 'Notas dos administradores', - 'notes' => 'Notas', - 'clone' => 'Clonar', - 'randh' => 'Regras & Ajuda', - 'exit' => 'Sair do chat', - 'bye' => 'Tchau %s, te vejo em breve!', - 'colourtable' => 'Colourtable', - 'backtoprofile' => 'Voltar para o seu Perfil', - 'copy' => 'Copiar:', - 'choosecol' => 'Convidados, escolham uma cor:', - 'randomcol' => 'Cor Aleatória', - 'enter' => 'Entrar no Chat', - 'error' => 'Erro', - 'members' => 'Membros', - 'guests' => 'Convidados', - 'admin' => 'Admin', - 'staff' => 'Equipe', - 'approveguests' => '%d novos convidados para aprovar', - 'allowchecked' => 'Permitir selecionado', - 'allowall' => 'Permitir todos', - 'denychecked' => 'Negar selecionado', - 'denyall' => 'Negar todos', - 'denymessage' => 'Enviar mensagem para negado:', - 'butallowdeny' => 'Enviar', - 'waitempty' => 'Não há mais solicitações de entrada para aprovar.', - 'wrongcaptcha' => 'Captcha Errado', - 'captchaexpire' => 'Captcha já usado ou expirou.', - 'noguests' => 'Desculpe, atualmente apenas membros!', - 'curchat' => 'Atualmente %d usuário(s) na sala:', - 'cantreg' => 'Não é possível registrar %s', - 'alreadyreged' => '%s já está registrado.', - 'successreg' => '%s registrado com sucesso.', - 'cantchgstat' => 'Não é possível alterar o status de %s', - 'succdel' => '%s excluído com sucesso do banco de dados.', - 'succchg' => 'Status de %s alterado com sucesso.', - 'wrongpass' => 'Senha incorreta!', - 'wrongglobalpass' => 'Senha global incorreta!', - 'succprofile' => 'Seu perfil foi salvo com sucesso.', - 'backtologin' => 'Voltar para a página de login.', - 'backtochat' => 'Voltar para o chat.', - 'Beige' => 'Bege', - 'Black' => 'Preto', - 'Blue' => 'Azul', - 'BlueViolet' => 'Violeta azul', - 'Brown' => 'Marrom', - 'Cyan' => 'Ciano', - 'DarkBlue' => 'Azul escuro', - 'DarkGreen' => 'Verde escuro', - 'DarkRed' => 'Vermelho escuro', - 'DarkViolet' => 'Violeta escuro', - 'DeepSkyBlue' => 'Azul-celeste', - 'Gold' => 'Dourado', - 'Grey' => 'Cinza', - 'Green' => 'Verde', - 'HotPink' => 'Rosa quente', - 'Indigo' => 'Índigo', - 'LightBlue' => 'Azul claro', - 'LightGreen' => 'Verde claro', - 'LimeGreen' => 'Verde limão', - 'Magenta' => 'Magenta', - 'Olive' => 'Oliva', - 'Orange' => 'Laranja', - 'OrangeRed' => 'Vermelho alaranjado', - 'Purple' => 'Roxo', - 'Red' => 'Vermelho', - 'RoyalBlue' => 'Azul royal', - 'SeaGreen' => 'Verde Mar', - 'Sienna' => 'Sienna', - 'Silver' => 'Prata', - 'Tan' => 'Bronzeado', - 'Teal' => 'Cerceta', - 'Violet' => 'Violeta', - 'White' => 'Branco', - 'Yellow' => 'Amarelo', - 'YellowGreen' => 'Amarelo verde', - 'redirectto' => 'Redirecionando para:', - 'nonhttp' => 'Link não http solicitado:', - 'dangerousnonhttp' => 'Hiperligação não http perigoso solicitado, copie e cole esta hiperligação se você tiver certeza:', - 'httpredir' => 'Se não estiver funcionando, tente este:', - 'actions' => 'Ações', - 'sesip' => 'Endereço de IP', - 'css' => 'Estilo CSS', - 'memberexpire' => 'Intervalo antes do desconexão dos membros (minutos)', - 'guestexpire' => 'Intervalo antes do desconexão dos convidados (minutos)', - 'kickpenalty' => 'Duração da expulsão (minutos)', - 'entrywait' => 'Duração da sala de espera (segundos)', - 'captchatime' => 'Duração para resolver CAPTCHA (segundos)', - 'messageexpire' => 'Minutos até que mensagens se expire', - 'messagelimit' => 'Número máximo das mensagens publicas', - 'maxmessage' => 'Comprimento máximo da mensagem', - 'confirm' => 'Você tem certeza?', - 'yes' => 'Sim', - 'no' => 'Não', - 'colbg' => 'Cor de fundo', - 'coltxt' => 'Cor do texto', - 'maxname' => 'Comprimento máximo do nickname', - 'minpass' => 'Comprimento mínimo da senha', - 'defaultrefresh' => 'Tempo padrão de recarga de mensagem (segundos)', - 'suguests' => 'Habilitar candidatos', - 'rulestxt' => 'Regras (html)', - 'imgembed' => 'Imagem incorporada', - 'trackip' => 'Mostrar os endereços IP das sessões ativas', - 'captchachars' => 'Caracteres usados no Captcha', - 'memkick' => 'Os membros podem kickar, se nenhum moderador estiver presente', - 'memkickalways' => 'Os membros podem sempre espulsar', - 'forceredirect' => 'Forçar redirecionamento', - 'redirect' => 'Personalizar script de redirecionamento ', - 'backuprestore' => 'Backup e restauração', - 'backup' => 'Backup', - 'restore' => 'Restauração', - 'settings' => 'Configurações', - 'linkfilter' => 'Filtro das hiperligações', - 'chatname' => 'Nome do chat', - 'destroy' => 'Destruir chat', - 'destroyed' => 'Chat destruído com sucesso', - 'topic' => 'Assunto', - 'passreset' => 'Redefinir senha', - 'cantresetpass' => 'Não é possível redefinir a senha', - 'succpassreset' => 'Senha redefinida com sucesso', - 'entermsg' => '%s entrou no chat.', - 'exitmsg' => '%s saiu do chat.', - 'memregmsg' => '%s agora é um membro registrado.', - 'suregmsg' => '%s agora é um candidato registrado.', - 'kickmsg' => '%s foi kickado.', - 'multikickmsg' => '%s foram kickados.', - 'allkickmsg' => 'Todos os convidados foram expulsos.', - 'cleanmsg' => '%s foi limpa.', - 'sendallmsg' => '%s - ', - 'sendmemmsg' => '[M] %s - ', - 'sendmodmsg' => '[Equipe] %s - ', - 'sendadmmsg' => '[Admin] %s - ', - 'sendprvmsg' => '[%1$s a %2$s] - ', - 'msgsendall' => 'mensagem a todos', - 'msgsendmem' => 'mensagem a membros', - 'msgsendmod' => 'mensagem a equipe', - 'msgsendadm' => 'mensagem a admins', - 'msgsendprv' => 'mensagem privada', - 'numnotes' => 'Número de revisões de notas para manter', - 'revisions' => 'Revisões:', - 'older' => 'Mais velho', - 'newer' => 'Mais recente', - 'accessdenied' => 'Acesso negado', - 'loggedinas' => 'Você está logado como %s e não tem acesso a esta seção.', - 'newnickname' => 'Nova nickname:', - 'nicknametaken' => 'A nickname já foi escolhida', - 'nopass' => 'Senha inválida (Pelo menos %d caracteres), não mudando a nickname', - 'gdextrequired' => 'La biblioteca de extensão gd da PHP é obrigada por usando esta feição. Por favor instalar isso primeiramente.', - 'memcachedextrequired' => 'La biblioteca de extensão memcached da PHP é obrigada por usando os caching. Por favor instalar isso primeiramente ou altere a opção MEMCACHED para false.', - 'sodiumextrequired' => 'La biblioteca de extensão libsodium da PHP é obrigada por usando criptografia. Por favor instalar isso primeiramente ou altere a opção MSGENCRYPTED para false.', - 'pdo_mysqlextrequired' => 'La biblioteca de extensão pdo_mysql da PHP é obrigada por usando o banco de dados escolhido (MySQL ou MariaDB). Por favor instalar isso primeiramente.', - 'pdo_pgsqlextrequired' => 'La biblioteca de extensão pdo_pgsql da PHP é obrigada por usando o banco de dados PT escolhido (PostgreSQL). Por favor instalar isso primeiramente.', - 'pdo_sqliteextrequired' => 'La biblioteca de extensão pdo_pgsql da PHP é obrigada por usando o banco de dados PT escolhido (SQLite). Por favor instalar isso primeiramente.', - 'jsonextrequired' => 'La biblioteca de extensão json da PHP é obrigada por usando esta feição. Por favor instalar isso primeiramente.', - 'sendmail' => 'Mandar mensagems públicas por e-mail', - 'mailsender' => 'Envie o e-mail do endereço seguinte:', - 'mailreceiver' => 'Envie o e-mail ao endereço seguinte:', - 'modfallback' => 'Alternativa para a sala de espera, se nenhum moderador estiver presente para aprovar os convidados', - 'regpass' => 'Repita a senha
para registrar', - 'guestreg' => 'Permitir que os convidados se registrem', - 'asmember' => 'Como membro', - 'assuguest' => 'Como convidado', - 'fatalerror' => 'Erro fatal', - 'prevmatch' => 'O texto correspondente é o seguinte', - 'matchtoolong' => 'O texto correspondente é muito longo. Você pode usar de 255 caracteres ou menos. Você pode tentar dividi-lo.', - 'nocache' => 'Rolagem automática (para navegadores antigos ou quando mostra as mensagens mais novas no alto)', - 'disablepm' => 'Desativar mensagens privadas', - 'disablechat' => 'Desativar chat', - 'disabletext' => 'Mensagem de chat desativado (html)', - 'disabledtext' => 'Temporariamente desativado', - 'defaulttz' => 'Fuso horário padrão', - 'tz' => 'Fuso horário', - 'optional' => '(opcional)', - 'userloggedin' => 'Um usuário com este nickname já está logado.', - 'regednick' => 'Este nickname é de um membro registrado.', - 'failednotice' => 'tentativas de login falhada(s)', - 'dismiss' => 'reconhecido', - 'eninbox' => 'Ativar caixa de entrada offline', - 'inboxmsgs' => 'Leia %d mensagens na sua caixa de entrada', - 'offline' => '(offline)', - 'deleteacc' => 'Deletar conta', - 'eninnone' => 'Para ninguem', - 'eninall' => 'Para todos', - 'eninmem' => 'Apenas para membros', - 'eninstaff' => 'Apenas para equipe', - 'eninadmin' => 'Apenas para admins', - 'nickregex' => 'expressão regular da nickname', - 'passregex' => 'expressão regular da senha', - 'externalcss' => 'Hiperligação ao arquivo externo CSS (em seu próprio servidor)', - 'greetingmsg' => 'Bem-vindo %s!', - 'entryhelp' => 'Se esse frame não é recarregada em %d segundos, você deve habilitar o redirecionamento automático (meta refresh) no seu navegador. E veja se filtro de Web, proxy ou plugin para o navegador não impede la recarga! Para exemplos, isso pode ser "Polipo", "NoScript", e assim por diante.
Como solução alternativa (ou em caso dos erros de servidor ou proxy) você pode usar os botoes na parte inferior da página para atualizar manualmente.', - 'enablegreeting' => 'Mostrar uma mensagem de saudação antes de mostrar as mensagens', - 'unban' => 'Permitir', - 'sortupdown' => 'Sortir mensagens de topo a base', - 'sortframe' => 'Rearrumar', - 'cs' => 'sensível à caixa das letras', - 'hidechatters' => 'Ocultar lista de usuários', - 'enfileupload' => 'Habilitar uploads de arquivos', - 'msgattache' => 'Anexar', - 'filenotfound' => 'Arquivo não encontrado!', - 'maxuploadsize' => 'Tamanho máximo de upload em KB', - 'maxsize' => 'Máximo de %d KB', - 'cssupdate' => 'Nota: CSS padrão agora está codificado e pode ser removido da configuração CSS', - 'manualrefresh' => 'Recarregar a página manualmente.', - 'personalnotes' => 'Notas pessoais', - 'publicnotes' => 'Notas públicas', - 'filtermodkick' => 'Aplicar filtro da expulsão nos moderadores', - 'namedoers' => 'Mostre quem expulsa as pessoas ou expurga todas as mensagens.', - 'forgotlogin' => 'Esqueceu o login?', - 'resetinstruction' => 'Por favor modifique a script e escreva as seguintes no fim. Mudar a senha. Recarregue esta página depois.: define(\'RESET_SUPERADMIN_PASSWORD\', \'mudar_esta_senha\');', - 'resetpassword' => 'Redefinir senha', - 'resetsucc' => 'Senha redefinida com sucesso para o nome de usuário %s. Remova a definição de redefinição de senha do script novamente.', - 'backtosetup' => 'Voltar para a configuração', - 'defaultmetadescription' => 'Uma comunidade de bate-papo', - 'metadescription' => 'Meta descrição (melhores 50 - 160 caracteras por otimização para motores de busca)', -]; diff --git a/lang_ru.php b/lang_ru.php deleted file mode 100644 index d5f07b3..0000000 --- a/lang_ru.php +++ /dev/null @@ -1,379 +0,0 @@ - -* -* This program is free software: you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. -* -* This program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with this program. If not, see . -*/ - -//Native language name: Русский -$T=[ - 'nodb' => 'Нет соединения с базой данных!', - 'nodbsetup' => 'Нет соединения с базой данных, пожалуйста, создайте базу данных и измените сценарий, чтобы использовать правильную базу данных с заданными именем пользователя и паролем!', - 'changelang' => 'Изменить язык:', - 'expire' => 'Недействительная/с истекшим сроком сессия', - 'kicked' => 'Забанен!', - 'invalnick' => 'Некорректное имя (%1$d символов максимум и оно должно совпадать с выражением "%2$s")', - 'invalpass' => 'Некорректный пароль (Хотя бы %1$d символов и он должен совпадать с выражением "%2$s")', - 'noconfirm' => 'Введенные пароли не совпадают!', - 'incorregex' => 'Неправильное регулярное выражение!', - 'bottom' => 'Вниз', - 'top' => 'Вверх', - 'choose' => '(выбрать)', - 'setup' => 'Установка чата', - 'init' => 'Начальная установка', - 'sulogin' => 'Вход для суперадминистратора', - 'sunick' => 'Ник суперадминистратора:', - 'supass' => 'Пароль суперадминистратора:', - 'suconfirm' => 'Подтверждение пароля:', - 'susuccess' => 'Успешно зарегистрирован!', - 'initbtn' => 'Инициализация чата', - 'initdbexist' => 'Таблицы базы данных уже существуют! Чтобы продолжить, вы должны сначала удалить эти таблицы вручную.', - 'initsuexist' => 'Суперадминистратор уже существует!', - 'initgosetup' => 'Перейти к странице установки', - 'captcha' => 'Captcha', - 'enabled' => 'Включен', - 'onlyguests' => 'Только для гостей', - 'disabled' => 'Выключен', - 'simple' => 'Простая', - 'moderate' => 'Умеренная', - 'extreme' => 'Сильная', - 'nick' => 'Ник:', - 'pass' => 'Пароль:', - 'globalloginpass' => 'Глобальный пароль:', - 'login' => 'Войти', - 'dbupdate' => 'База данных успешно обновлена!', - 'sysmessage' => 'системное сообщение', - 'sysmessages' => 'Системные сообщения', - 'sysmessagetxt' => 'Этот текст предшествует сообщениям из системы.', - 'msgenter' => 'Вход', - 'msgexit' => 'Выход', - 'msgmemreg' => 'Зарегистрированные', - 'msgsureg' => 'Заявитель зарегистрирован', - 'msgkick' => 'Забаненые', - 'msgmultikick' => 'Многократно забаненые', - 'msgallkick' => 'Все забаненые', - 'msgclean' => 'Очистка чата', - 'dateformat' => 'Формат даты', - 'admfunc' => 'Административные функции', - 'allguests' => 'Все гости', - 'cleanmsgs' => 'Очистка сообщений', - 'room' => 'Общая комната', - 'selection' => 'Выбор', - 'cleannick' => 'По нику:', - 'clean' => 'Очистить', - 'kickchat' => 'Бан (%d минут)', - 'kickreason' => 'Сообщение забаненому', - 'kickpurge' => 'Очистка сообщений', - 'kick' => 'Бан', - 'logoutinact' => 'Выход неактивного чата', - 'logout' => 'Выйти', - 'sessions' => 'Активные сессии', - 'view' => 'Просмотр', - 'filter' => 'Фильтр', - 'guestacc' => 'Изменить гостевой доступ', - 'guestallow' => 'Позволить', - 'guestwait' => 'Разрешить с гостевой', - 'adminallow' => 'Требовать одобрения модератора', - 'guestdisallow' => 'Только участники', - 'addsuguest' => 'Добавить заявителя', - 'register' => 'Зарегистрировать', - 'admmembers' => 'Участники', - 'memdel' => 'Удалить из базы данных', - 'memdeny' => 'Запретить доступ (!)', - 'memsuguest' => 'Набор к претенденту (SG)', - 'memreg' => 'Установить участника', - 'memmod' => 'Набор модератора (M)', - 'memsumod' => 'Набор супермодератора (SM)', - 'memadm' => 'Набор администратора (A)', - 'change' => 'Изменить', - 'regguest' => 'Регистрация гостей', - 'regmem' => 'Регистрация новых участников', - 'sessact' => 'Активные сеансы', - 'sessnick' => 'Ник', - 'sesstimeout' => 'Время ожидания в', - 'sessua' => 'User-Agent', - 'fid' => 'Фильтр ID:', - 'match' => 'Совпадение', - 'replace' => 'Заменять', - 'allowpm' => 'Разрешить в личку', - 'regex' => 'Регулярное выражение', - 'apply' => 'Применить', - 'newfilter' => 'Новый фильтр:', - 'add' => 'Добавить', - 'noframes' => 'Этот чат использует frames. Пожалуйста, включите поддержку в Вашем браузере или используйте подходящий!', - 'delselmes' => 'Удалить выбранные сообщения', - 'staffnotes' => 'Служебные заметки', - 'adminnotes' => 'Примечания администратора', - 'notessaved' => 'Заметки сохранены!', - 'lastedited' => 'Последний раз редактировал %1$s %2$s', - 'savenotes' => 'Сохранить заметки', - 'waitingroom' => 'Гостевая', - 'waittext' => 'Добро пожаловать %1$s, наблюдается задержка входа, доступ к чату будет осуществлен через %2$d секунд.', - 'admwaittext' => 'Добро пожаловать %1$s, наблюдается задержка входа, доступ к чату будет доступен после подтверждения модератором.', - 'waitreload' => 'Если эта страница не отвечает, не обновляется каждые %d секунд, используйте кнопку ниже, чтобы перезагрузить ее вручную!', - 'reload' => 'Перезагрузить', - 'rules' => 'Правила', - 'talkto' => 'Отправить', - 'toall' => 'Все в чате', - 'tomem' => 'Участники', - 'tostaff' => 'Служебные', - 'toadmin' => 'Администратор', - 'alsopurge' => 'Также очистить сообщения', - 'dellast' => 'Удалить последнее сообщение', - 'delall' => 'Удалить все сообщения', - 'switchsingle' => 'Включить однострочный режим', - 'switchmulti' => 'Включить многострочный режим', - 'help' => 'Помощь', - 'helpguest' => 'Все функции интуитивно понятны, просто используйте кнопки. В настройках вашего профиля вы можете настроить частоту обновления, цвет шрифта и желаемый размер окна входа.
Заметка: Это чат, поэтому даже если вы ничего не пишете, то будет автоматически зарегистрировано через некоторое время..', - 'helpembed' => 'Если вы хотите встроить изображение в свой пост, прикрепите [img] перед вашим URL-изображением. Пример: [img]http://example.com/images/file.jpg будет прикреплять картинку к вашему сообщению.
', - 'helpmem' => 'Участники: У вас есть несколько вариантов настроек в вашем профиле. Можно настроить шрифт и изменить свой пароль в любое время.', - 'helpmod' => 'Модераторы: Обратите внимание кнопку администратора внизу. Это перенесет вас на страницу, где вы можете очистить комнату, забанить, просмотреть все активные сеансы и отключить гостевой доступ полностью, если необходимо.', - 'helpadm' => 'Администраторы: Вы способны регистрировать гостей и новые ники без их присутствия в комнате а также редактировать пользователей.', - 'profile' => 'Ваш профиль', - 'ignore' => 'Игнорировать', - 'unignore' => 'Больше не игнорировать', - 'refreshrate' => 'Частота обновления (%1$d-%2$d секунд)', - 'fontcolour' => 'Цвет шрифта', - 'viewexample' => 'Посмотреть примеры', - 'bgcolour' => 'Фоновый цвет', - 'fontface' => 'Шрифт', - 'roomdefault' => 'По умолчанию', - 'bold' => 'Жирный', - 'italic' => 'Курсив', - 'small' => 'Маленький', - 'fontexample' => 'Пример выбранного вами шрифта', - 'timestamps' => 'Показать отметки времени', - 'embed' => 'Вставить изображения', - 'incognito' => 'Режим инкогнито', - 'changenick' => 'Изменить имя', - 'changepass' => 'Изменить пароль', - 'oldpass' => 'Старый пароль:', - 'newpass' => 'Новый пароль:', - 'confirmpass' => 'Подтверждение:', - 'savechanges' => 'Сохранить изменения', - 'reloadpb' => 'Перезагрузить почтовый ящик', - 'reloadmsgs' => 'Обновить', - 'viewpublicnotes' => 'Читать профили пользователей', - 'chgprofile' => 'Профиль', - 'adminbtn' => 'Администратор', - 'admnotes' => 'Примечания администратора', - 'notes' => 'Примечания', - 'clone' => 'Клонировать', - 'randh' => 'Правила и помощь', - 'exit' => 'Выход', - 'bye' => 'Пока %s, заходите снова!', - 'colourtable' => 'Примеры цветов', - 'backtoprofile' => 'Вернуться к вашему профилю', - 'copy' => 'Копия:', - 'choosecol' => 'Выберите ваш цвет:', - 'randomcol' => 'Случайный цвет', - 'enter' => 'Войти в чат', - 'error' => 'Ошибка', - 'admin' => 'Администратор', - 'staff' => 'Служебные', - 'members' => 'Зарегистрированные', - 'guests' => 'Гости', - 'approveguests' => '%d новые гости для одобрения', - 'allowchecked' => 'Разрешить проверку', - 'allowall' => 'Разрешить всем', - 'denychecked' => 'Запретить проверку', - 'denyall' => 'Запретить всем', - 'denymessage' => 'Отправить сообщение с отказом:', - 'butallowdeny' => 'Отправить', - 'waitempty' => 'Больше запросов для одобрения нет.', - 'wrongcaptcha' => 'Неверная капча!', - 'captchaexpire' => 'Защитный код уже используется или время истекло.', - 'noguests' => 'Извините, входят только зарегистрированные!', - 'curchat' => 'Сейчас %d разговор (ов) в комнате:', - 'cantreg' => 'Вы не можете зарегистрироваться %s', - 'alreadyreged' => '%s уже зарегистрирован.', - 'successreg' => '%s успешно зарегистрирован.', - 'cantchgstat' => 'Невозможно изменить статус %s', - 'succdel' => '%s успешно удален из базы данных.', - 'succchg' => 'Статус %s успешно изменен.', - 'wrongpass' => 'Неправильный пароль!', - 'wrongglobalpass' => 'Неправильный глобальный пароль!', - 'succprofile' => 'Ваш профиль был успешно сохранен.', - 'backtologin' => 'Вернуться на страницу входа.', - 'backtochat' => 'Вернуться в чат.', - 'Beige' => 'Бежевый', - 'Black' => 'Черный', - 'Blue' => 'Синий', - 'BlueViolet' => 'Фиолетово-синий', - 'Brown' => 'Коричневый', - 'Cyan' => 'Голубой', - 'DarkBlue' => 'Темно-синий', - 'DarkGreen' => 'Темно-зеленый', - 'DarkRed' => 'Темно-красный', - 'DarkViolet' => 'Темно-фиолетовый', - 'DeepSkyBlue' => 'Голубое небо', - 'Gold' => 'Золотой', - 'Grey' => 'Серый', - 'Green' => 'Зеленый', - 'HotPink' => 'Ярко-розовый', - 'Indigo' => 'Индиго', - 'LightBlue' => 'Светло-синий', - 'LightGreen' => 'Светло-зеленый', - 'LimeGreen' => 'Зеленый лайм', - 'Magenta' => 'Пурпурный', - 'Olive' => 'Оливковый', - 'Orange' => 'Оранжевый', - 'OrangeRed' => 'Оранжево-красный', - 'Purple' => 'Фиолетовый', - 'Red' => 'Красный', - 'RoyalBlue' => 'Королевский синий', - 'SeaGreen' => 'Морской зеленый', - 'Sienna' => 'Сиена', - 'Silver' => 'Серебряный', - 'Tan' => 'Загар', - 'Teal' => 'Чирок', - 'Violet' => 'Фиолетовый', - 'White' => 'Белый', - 'Yellow' => 'Желтый', - 'YellowGreen' => 'Желто-зеленый', - 'redirectto' => 'Перенаправление на:', - 'nonhttp' => 'Запрошенная ссылка не http:', - 'httpredir' => 'Если это не работает, попробуйте это:', - 'actions' => 'Действия', - 'sesip' => 'IP-адрес', - 'css' => 'CSS стили', - 'memberexpire' => 'Тайм-аут пользователей (минут)', - 'guestexpire' => 'Тайм-аут гостей (минут)', - 'kickpenalty' => 'Бан (минут)', - 'entrywait' => 'Время ожидания в гостевой (секунд)', - 'captchatime' => 'Тайм-аут Captcha (секунд)', - 'messageexpire' => 'Тайм-аут сообщения (минут)', - 'messagelimit' => 'Лимит сообщений (общих)', - 'maxmessage' => 'Максимальная длина сообщения', - 'confirm' => 'Вы уверены?', - 'yes' => 'Да', - 'no' => 'Нет', - 'colbg' => 'Фоновый цвет', - 'coltxt' => 'Цвет текста', - 'maxname' => 'Максимальная длина имени', - 'minpass' => 'Минимальная длина пароля', - 'defaultrefresh' => 'По умолчанию время перезагрузки сообщения (секунды)', - 'suguests' => 'Разрешить гостей', - 'rulestxt' => 'Правила (html)', - 'imgembed' => 'Вставка изображений', - 'trackip' => 'Показать IP-сессию', - 'captchachars' => 'Символы, используемые в Captcha', - 'memkick' => 'Пользователи могут исключать, если не присутствует модератор', - 'memkickalways' => 'Пользователи могут всегда́ исключать', - 'forceredirect' => 'Принудительное перенаправление', - 'redirect' => 'Пользовательский скрипт перенаправления', - 'backuprestore' => 'Бэкап и восстановление', - 'backup' => 'Бэкап', - 'restore' => 'Восстановление', - 'settings' => 'Настройки', - 'linkfilter' => 'Фильтрация ссылок', - 'chatname' => 'Название чата', - 'destroy' => 'Уничтожить чат', - 'destroyed' => 'Чат успешно уничтожен', - 'topic' => 'Тема', - 'passreset' => 'Сброс пароля', - 'cantresetpass' => 'Невозможно сбросить пароль', - 'succpassreset' => 'Пароль успешно сброшен', - 'entermsg' => '%s вошел в чат.', - 'exitmsg' => '%s покинул чат.', - 'memregmsg' => '%s теперь зарегистрированный член.', - 'suregmsg' => '%s теперь зарегистрированный заявитель.', - 'kickmsg' => '%s исключен из чата.', - 'multikickmsg' => '%s исключены из чата.', - 'allkickmsg' => 'Все гости исключены из чата.', - 'cleanmsg' => '%s был очищен.', - 'sendallmsg' => '%s - ', - 'sendmemmsg' => '[M] %s - ', - 'sendmodmsg' => '[Staff] %s - ', - 'sendadmmsg' => '[Admin] %s - ', - 'sendprvmsg' => '[%1$s to %2$s] - ', - 'msgsendall' => 'Сообщение всем', - 'msgsendmem' => 'Сообщение только членам', - 'msgsendmod' => 'Сообщение только модераторам', - 'msgsendadm' => 'Сообщение только администраторам', - 'msgsendprv' => 'Личное сообщение', - 'numnotes' => 'Число исправлений для сохранения', - 'revisions' => 'Исправления:', - 'older' => 'Старые', - 'newer' => 'Новые', - 'accessdenied' => 'В доступе отказано.', - 'loggedinas' => 'Вы вошли как %s и не имеете доступа к этой секции.', - 'newnickname' => 'Новое имя:', - 'nicknametaken' => 'Имя уже занято', - 'nopass' => 'Некорректный пароль (Хотя бы %d символов), не меняя имени', - 'gdextrequired' => 'gd расширение для PHP требуетса для етой функции. Пожалуйста установите его сначала...', - 'memcachedextrequired' => 'The memcached extension of PHP is required for the caching feature. Please install it first or set the memcached setting back to false.', - 'sodiumextrequired' => 'The libsodium extension of PHP is required for the encryption feature. Please install it first or set the encrypted setting back to false.', - 'pdo_mysqlextrequired' => 'Pdo_mysql расширение для PHP требуетса для драйверов базы данных. Пожалуйста установите его сначала..', - 'pdo_pgsqlextrequired' => 'Pdo_pgsql расширение для PHP требуетса для драйверов базы данных. Пожалуйста установите его сначала..', - 'pdo_sqliteextrequired' => 'Pdo_sqlite расширение для PHP требуетса для драйверов базы данных. Пожалуйста установите его сначала.', - 'jsonextrequired' => 'Json расширение для PHP требуетса для етой функции. Пожалуйста установите его сначала.', - 'sendmail' => 'Отправить сообщение как новое публичное', - 'mailsender' => 'Отправить сообщение на этот адрес', - 'mailreceiver' => 'Отправить сообщение по этому адресу', - 'modfallback' => 'Вернуться в комнату ожидания, если отстутсвует модератор для подтверждения гостей', - 'regpass' => 'Повторите пароль
Зарегистрироваться', - 'guestreg' => 'Разрешить гостям регистрироваться самостоятельно', - 'asmember' => 'Как член', - 'assuguest' => 'Как заявитель', - 'fatalerror' => 'Фатальная ошибка', - 'prevmatch' => 'Тексты в полях совпадают', - 'matchtoolong' => 'Текст в поле слишком длинний. Можно использовать максимум 255 символов, попробуйте разбить поле на части.', - 'nocache' => 'Автозагрузка (для старых браузеров, для сортрировки сверху-вниз).', - 'disablepm' => 'Отключить личные сообщения', - 'disablechat' => 'Отключить чат', - 'disabletext' => 'Чат отключил сообщение (html)', - 'disabledtext' => 'Временно отключен', - 'defaulttz' => 'Часовой пояс по умолчанию', - 'tz' => 'Часовой пояс', - 'optional' => '(опционально)', - 'userloggedin' => 'Пользователь с текущим именем уже в сети.', - 'regednick' => 'Это имя принадлежит зарегистрированному пользователю.', - 'failednotice' => 'неудачная попытка входа (ы)', - 'dismiss' => 'признал', - 'eninbox' => 'Включить оффлайн-почту', - 'inboxmsgs' => 'Прочитайте %d входящих сообщений', - 'offline' => '(оффлайн)', - 'deleteacc' => 'Удалить аккаунт', - 'eninnone' => 'Никаму', - 'eninall' => 'Для всех', - 'eninmem' => 'Только для членов', - 'eninstaff' => 'Только для модераторов', - 'eninadmin' => 'Только для админов', - 'nickregex' => 'Ник regex', - 'passregex' => 'Пароль regex', - 'externalcss' => 'Ссылка на внешний CSS файл', - 'greetingmsg' => 'Добро пожаловать %s!', - 'entryhelp' => 'Если это окно не обновится в течение %d секунд, Вам нужно включить автоматическое обновление (meta refresh) в вашем браузере. Также убедитесь в отстутствии веб-фильтра, проверьте настройки прокси, либо плагины браузера на блокировку автоматического обновления! Примеры плагинов: "Polipo", "NoScript", и т.д.
Тем не менее, (в случае ошибок перезагрузки страниц из-за сервера/прокси) вы всегда можете использовать кнопки внизу страницы для ручного обновления страницыы.', - 'enablegreeting' => 'Показывать приветственное сообщение перед остальными сообщениями', - 'unban' => 'Разблокировать', - 'sortupdown' => 'Сортировать сообщения сверху вниз', - 'sortframe' => 'Перестроить', - 'cs' => 'Регистр-чувствительный', - 'hidechatters' => 'Спрятать список людей в чате', - 'enfileupload' => 'Разрешить файловые загрузки', - 'msgattache' => 'Прикрепление', - 'filenotfound' => 'Файл не обнаружен!', - 'maxuploadsize' => 'Максимальный размер файла в КБ', - 'maxsize' => 'Макс. %d КБ', - 'cssupdate' => 'Заметка: по установлению CSS он тяжелый и можна убрать его в CSS настройках', - 'manualrefresh' => 'Требуется обновить страницу вручную', - 'personalnotes' => 'Личные заметки', - 'publicnotes' => ' Профиля пользователяь', - 'filtermodkick' => 'Применить фильтр исключения для модераторов', - 'namedoers' => 'Покажите, кто изгоняет людей или очищает все сообщения.', -]; - diff --git a/lang_tr.php b/lang_tr.php deleted file mode 100644 index b2f35fd..0000000 --- a/lang_tr.php +++ /dev/null @@ -1,381 +0,0 @@ - -* -* This program is free software: you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. -* -* This program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with this program. If not, see . -*/ - -//Native language name: Türkçe -$T=[ - 'nodb' => 'Veritabanına bağlantı yok!', - 'nodbsetup' => 'Veritabanına bağlantı yok, lütfen bir veritabanı oluşturun ve doğru veritabanını kullanmak için script\'i verilen kullanıcı adı ve şifre ile düzenleyin!', - 'changelang' => 'Dili değiştir:', - 'expire' => 'Geçersiz/tarihi geçmiş oturum', - 'kicked' => 'Atıldınız!', - 'invalnick' => 'Geçersiz kullanıcı adı (En fazla %1$d harf ve normal ifade "%2$s" ile eşleşmeli)', - 'invalpass' => 'Geçersiz şifre (En az %1$d harf ve normal ifade "%2$s" ile eşleşmeli)', - 'noconfirm' => 'Şifreler birbirleriyle eşleşmiyor!', - 'incorregex' => 'Yanlış normal ifade!', - 'bottom' => 'Alt', - 'top' => 'Üst', - 'choose' => '(seç)', - 'setup' => 'Sohbet kurulumu', - 'init' => 'İlk kurulum', - 'sulogin' => 'Superadmin Girişi', - 'sunick' => 'Superadmin Kullanıcı adı:', - 'supass' => 'Superadmin Şifre:', - 'suconfirm' => 'Şifreyi doğrula:', - 'susuccess' => 'Başarılı bir şekilde kayıt olundu!', - 'initbtn' => 'Sohbeti Başlat', - 'initdbexist' => 'Veritabanı tabloları zaten bulunuyor! Devam etmek için, tabloları manuel olarak silmeniz lazım.', - 'initsuexist' => 'Bir Superadmin zaten bulunuyor!', - 'initgosetup' => 'Kurulum sayfasına git', - 'captcha' => 'Captcha', - 'enabled' => 'Etkinleştirildi', - 'onlyguests' => 'Sadece konuklar için', - 'disabled' => 'Devre dışı', - 'simple' => 'Basit', - 'moderate' => 'Orta', - 'extreme' => 'Aşırı', - 'nick' => 'Kullanıcı adı:', - 'pass' => 'Şifre:', - 'globalloginpass' => 'Global şifre:', - 'login' => 'Giriş', - 'dbupdate' => 'Veritabanı başarıyla güncellendi!', - 'sysmessage' => 'Sistem ileti', - 'sysmessages' => 'Sistem iletileri', - 'sysmessagetxt' => 'Bu metin, sistemden gelen iletilerden önce gelir.', - 'msgenter' => 'Giriş', - 'msgexit' => 'Ayrılınıyor', - 'msgmemreg' => 'Üye kaydedildi', - 'msgsureg' => 'Başvuru kaydedildi', - 'msgkick' => 'Atıldı', - 'msgmultikick' => 'Toplu atıldı', - 'msgallkick' => 'Hepsi atıldı', - 'msgclean' => 'Oda temizlendi', - 'dateformat' => 'Tarih biçimlendirme', - 'admfunc' => 'Yönetici işlemleri', - 'allguests' => 'Tüm konuklar', - 'cleanmsgs' => 'İletileri temizle', - 'room' => 'Tüm oda', - 'selection' => 'Seçim', - 'cleannick' => 'Şu kullanıcı adını:', - 'clean' => 'Temizle', - 'kickchat' => 'Kullanıcıyı at (%d dakika)', - 'kickreason' => 'Atılma nedeni:', - 'kickpurge' => 'İletileri temizle', - 'kick' => 'At', - 'logoutinact' => 'İnaktif kişiyi oturumdan çıkar', - 'logout' => 'Çıkış yap', - 'sessions' => 'Aktif oturumlara bak', - 'view' => 'Görüntüle', - 'filter' => 'Filtrele', - 'guestacc' => 'Konuk erişimini değiştir', - 'guestallow' => 'İzin ver', - 'guestwait' => 'Bekleme odasına izin ver', - 'adminallow' => 'Moderatör onayı gerekiyor', - 'guestdisallow' => 'Sadece üyeler', - 'addsuguest' => 'Başvuru kayıt et', - 'register' => 'Kayıt ol', - 'admmembers' => 'Üyeler', - 'memdel' => 'Veritabanından sil', - 'memdeny' => 'Erişimi reddet (!)', - 'memsuguest' => 'Set to applicant (SG)', - 'memreg' => 'Normal üye yap', - 'memmod' => 'Moderatör yap (Ü)', - 'memsumod' => 'Süpermod yap (SM)', - 'memadm' => 'Yönetici yap (Y)', - 'change' => 'Değiştir', - 'regguest' => 'Misafir kaydet', - 'regmem' => 'Yeni Üye kaydet', - 'sessact' => 'Aktif Oturumlar', - 'sessnick' => 'Kullanıcı adı', - 'sesstimeout' => 'Zaman aşımı', - 'sessua' => 'User-Agent', - 'fid' => 'ID Filtrele:', - 'match' => 'Eşleş', - 'replace' => 'Değiştir', - 'allowpm' => 'Allow in PM', - 'regex' => 'Regex', - 'apply' => 'Uygula', - 'newfilter' => 'Yeni filtre:', - 'add' => 'Ekle', - 'noframes' => 'Bu sohbet çerçeveleri kullanıyor. Please enable frames in your browser or use a suitable one!', - 'delselmes' => 'Seçili iletileri sil', - 'staffnotes' => 'Yetkili notları', - 'adminnotes' => 'Yönetici notları', - 'notessaved' => 'Notlar kaydedildi!', - 'lastedited' => 'Son düzenleme %1$s tarafından %2$s tarihinde', - 'savenotes' => 'Notları kaydet', - 'waitingroom' => 'Bekleme odası', - 'waittext' => 'Hoş geldiniz %1$s, girişiniz geciktirildi, sohbete %2$d saniye içinde erişebilirsiniz.', - 'admwaittext' => 'Hoş geldiniz %1$s, girişiniz geciktirildi, sohbete bir moderatör girmenize izin verirse erişebilirsiniz.', - 'waitreload' => 'Eğer sayfa %d saniye içinde yenilenmiyorsa, elinizle yenilemek için alttaki düğmeyi kullanın!', - 'reload' => 'Yenile', - 'rules' => 'Kurallar', - 'talkto' => 'Şuna gönder', - 'toall' => 'Tüm kullanıcılar', - 'tomem' => 'Sadece üyeler', - 'tostaff' => 'Sadece yetkililer', - 'toadmin' => 'Sadece yönetici', - 'alsopurge' => 'Ayrıca iletileri temizle', - 'dellast' => 'Son iletiyi sil', - 'delall' => 'Tüm iletileri sil', - 'switchsingle' => 'Tek-satıra geç', - 'switchmulti' => 'Çoklu-satıra geç', - 'help' => 'Yardım', - 'helpguest' => 'Tüm işlemler anlaşılabilir olmalı, sadece düğmeleri kullanın. Profilinizde yenileme aralığını ve yazı rengini değiştirebilir, aynı zamanda üyeleri göz 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.', - 'helpembed' => 'Eğer iletinize bir görsel eklemek istiyorsanız, basit bir şekilde görsel URL\'sinin önüne [img] koyun. Örnek: [img]http://example.com/images/file.jpg yazmak iletinizdeki görseli ekler.', - 'helpmem' => 'Üyeler: Profilinizde biraz daha seçenek var. Yazı tipini ayarlayabilir, şifrenizi istediğiniz zaman değiştirebilir ve tabii ki hesabınızı silebilirsiniz.', - 'helpmod' => 'Moderatörler: En alttaki Yönetici düğmesine dikkat edin. Odayı temizleyebileceğiniz, kişileri atabileceğiniz, aktif oturumları görebileceğiniz ve konuk erişimini kapatabileceğiniz bir sayfa gelecektir.', - 'helpadm' => 'Yöneticiler: Konukları kaydedebilir, üyeleri düzenleyebilir ve yeni kullanıcı adları kaydedebilirsiniz.', - 'profile' => 'Profiliniz', - 'ignore' => 'Görmezden gel', - 'unignore' => 'Görmezden gelmeyi bırak', - 'refreshrate' => 'Yenileme aralığı (%1$d-%2$d saniye)', - 'fontcolour' => 'Yazı tipi rengi', - 'viewexample' => 'Örnekleri görüntüle', - 'bgcolour' => 'Arkaplan rengi', - 'fontface' => 'Yazıtipi yüzü', - 'roomdefault' => 'Oda Varsayılanı', - 'bold' => 'Kalın', - 'italic' => 'İtalik', - 'small' => 'Küçük', - 'fontexample' => 'Seçtiğin yazı tipi için örnek', - 'timestamps' => 'Zaman damgalarını göster', - 'embed' => 'Gömülü görseller', - 'incognito' => 'Incognito modu', - 'changenick' => 'Kullanıcı adını değiştir', - 'changepass' => 'Şifreyi değiştir', - 'oldpass' => 'Eski şifre:', - 'newpass' => 'Yeni şifre:', - 'confirmpass' => 'Yeni şifreyi doğrula:', - 'savechanges' => 'Değişiklikleri kaydet', - 'reloadpb' => 'Posta Kutusunu Yenile', - 'reloadmsgs' => 'İletileri yenile', - 'viewpublicnotes' => 'Oku kamu profilim', - 'chgprofile' => 'Profil', - 'adminbtn' => 'Yönetici', - 'admnotes' => 'Yönetici Notları', - 'notes' => 'Notlar', - 'clone' => 'Klonla', - 'randh' => 'Kurallar & Yardım', - 'exit' => 'Sohbetten çık', - 'bye' => 'Görüşürüz %s, en yakın zamanda yine uğra!', - 'colourtable' => 'Renk tablosu', - 'backtoprofile' => 'Profiline geri dön', - 'copy' => 'Kopyala:', - 'choosecol' => 'Konuklar, bir renk seçin:', - 'randomcol' => 'Rastgele renk', - 'enter' => 'Sohbete gir', - 'error' => 'Hata', - 'admin' => 'Yönetici', - 'staff' => 'Yetkili', - 'members' => 'Üyeler', - 'guests' => 'Konuklar', - 'approveguests' => '%d tane onaylanacak konuk', - 'allowchecked' => 'Kontrol edilenlere izin ver', - 'allowall' => 'Hepsine izin ver', - 'denychecked' => 'Kontrol edilenleri reddet', - 'denyall' => 'Hepsini reddet', - 'denymessage' => 'Reddedilene ileti gönder:', - 'butallowdeny' => 'Gönder', - 'waitempty' => 'Onaylanacak daha fazla giriş isteği yok.', - 'wrongcaptcha' => 'Yanlış captcha', - 'captchaexpire' => 'Captcha zaten kullanılmış veya zamanı aşılmış.', - 'noguests' => 'Üzgünüm, şu anlık sadece üyeler!', - 'curchat' => 'Şu anda odada %d kişi var:', - 'cantreg' => '%s kayıt edilemiyor', - 'alreadyreged' => '%s zaten kayıtlı.', - 'successreg' => '%s kayıt oldu.', - 'cantchgstat' => '%s\'ın statüsü değiştirilemiyor!', - 'succdel' => '%s başarılı bir şekilde veritabanından silindi.', - 'succchg' => '%s\'ın statüsü başarıyla değiştirildi.', - 'wrongpass' => 'Yanlış şifre!', - 'wrongglobalpass' => 'Yanlış global şifre!', - 'succprofile' => 'Profiliniz başarıyla kaydedildi.', - 'backtologin' => 'Giriş ekranına geri dön.', - 'backtochat' => 'Sohbete geri dön.', - 'Beige' => 'Bej', - 'Black' => 'Kahverengi', - 'Blue' => 'Mavi', - 'BlueViolet' => 'Mavi mor', - 'Brown' => 'Kahverengi', - 'Cyan' => 'Camgöbeği', - 'DarkBlue' => 'Koyu mavi', - 'DarkGreen' => 'Koyu yeşil', - 'DarkRed' => 'Koyu red', - 'DarkViolet' => 'Koyu mor', - 'DeepSkyBlue' => 'Gökyüzü mavisi', - 'Gold' => 'Altın', - 'Grey' => 'Gri', - 'Green' => 'Yeşil', - 'HotPink' => 'Sıcak pembe', - 'Indigo' => 'Indigo', - 'LightBlue' => 'Açık mavi', - 'LightGreen' => 'Açık yeşil', - 'LimeGreen' => 'Limon yeşili', - 'Magenta' => 'Magenta', - 'Olive' => 'Zeytin', - 'Orange' => 'Turuncu', - 'OrangeRed' => 'Turuncu kırmızı', - 'Purple' => 'Mor', - 'Red' => 'Kırmızı', - 'RoyalBlue' => 'Kraliyet mavisi', - 'SeaGreen' => 'Deniz yeşili', - 'Sienna' => 'Sienna', - 'Silver' => 'Gümüş', - 'Tan' => 'Tan', - 'Teal' => 'Teal', - 'Violet' => 'Mor', - 'White' => 'Beyaz', - 'Yellow' => 'Sarı', - 'YellowGreen' => 'Sarı yeşil', - 'redirectto' => 'Şuna yönlendiriliyor:', - 'nonhttp' => 'HTTP olmayan bağlantı istenildi:', - 'dangerousnonhttp' => 'Tehlikeli HTTP olmayan bağlantı istenildi, eğer eminseniz bu bağlantıyı kopyalayıp yapıştırın:', - 'httpredir' => 'Eğer çalışmıyorsa, bunu deneyin:', - 'actions' => 'Eylemler', - 'sesip' => 'IP Adresi', - 'css' => 'CSS Stili', - 'memberexpire' => 'Üye zaman aşımı (dakika)', - 'guestexpire' => 'Konuk zaman aşımı (dakika)', - 'kickpenalty' => 'Atım cezası (dakika)', - 'entrywait' => 'Bekleme odası zamanı (saniye)', - 'captchatime' => 'Captcha zaman aşımı (saniye)', - 'messageexpire' => 'İleti zaman aşımı (dakika)', - 'messagelimit' => 'İleti sınırı (herkese açık)', - 'maxmessage' => 'Maksimum ileti uzunluğu', - 'confirm' => 'Emin misiniz?', - 'yes' => 'Evet', - 'no' => 'Hayır', - 'colbg' => 'Arkaplan rengi', - 'coltxt' => 'Yazı rengi', - 'maxname' => 'Maksimum şifre uzunluğu', - 'minpass' => 'Minimum şifre uzunluğu', - 'defaultrefresh' => 'Varsayılan mesaj yenileme süresi (saniye)', - 'suguests' => 'Başvuru sahiplerini etkinleştir', - 'rulestxt' => 'Kurallar (html)', - 'imgembed' => 'Gömülü görseller', - 'trackip' => 'Oturum IP\'sini göster', - 'captchachars' => 'Captcha\'da kullanılan harfler', - 'memkick' => 'Eğer herhangi bir moderatör yoksa, üyeler birini atabilir', - 'memkickalways' => 'Üyeler her zaman birini atabilir', - 'forceredirect' => 'Yönlendirmeye zorla', - 'redirect' => 'Özel yönlendirme script\'i', - 'backuprestore' => 'Yedekle ve onar', - 'backup' => 'Backup', - 'restore' => 'Onar', - 'settings' => 'Ayarlar', - 'linkfilter' => 'Linkfilter', - 'chatname' => 'Sohbet ismi', - 'destroy' => 'Sohbeti yok et', - 'destroyed' => 'Sohbet başarıyla yok edildi', - 'topic' => 'Konu', - 'passreset' => 'Şifreyi değiştir', - 'cantresetpass' => 'Şifre değiştirilemiyor', - 'succpassreset' => 'Şifre başarıyla değiştirildi', - 'entermsg' => '%s sohbete katıldı.', - 'exitmsg' => '%s sohbetten çıktı.', - 'memregmsg' => '%s artık bir kayıtlı üye.', - 'suregmsg' => '%s artık başvuru sahibi.', - 'kickmsg' => '%s atıldı.', - 'multikickmsg' => '%s atıldı.', - 'allkickmsg' => 'Tüm konuklar atıldı.', - 'cleanmsg' => '%s temizlendi.', - 'sendallmsg' => '%s - ', - 'sendmemmsg' => '[Ü] %s - ', - 'sendmodmsg' => '[Yetkili] %s - ', - 'sendadmmsg' => '[Yönetici] %s - ', - 'sendprvmsg' => '[%1$s to %2$s] - ', - 'msgsendall' => 'Herkese gönder', - 'msgsendmem' => 'Sadece üyelere gönder', - 'msgsendmod' => 'Sadece yetkililere gönder', - 'msgsendadm' => 'Sadece yöneticilere gönder', - 'msgsendprv' => 'Özel ileti', - 'numnotes' => 'Number of notes revisions to keep', - 'revisions' => 'Revisions:', - 'older' => 'Daha eski', - 'newer' => 'Daha yeni', - 'accessdenied' => 'Erişin reddedildi', - 'loggedinas' => '%s olarak giriş yaptınız ve bu bölüme erişiminiz yok.', - 'newnickname' => 'Yeni kullanıcı adı:', - 'nicknametaken' => 'Kullanıcı adı zaten alınmış', - 'nopass' => 'Geçersiz şifre (En az %d harf), kullanıcı adı değiştirilmiyor', - 'gdextrequired' => 'Bu özellik için PHP\'nin gd uzantısı gerekiyor. Lütfen önce onu kurun.', - 'memcachedextrequired' => 'Önbelleğe alma özelliği için PHP\'nin memcached uzantısı gerekiyor. Lütfen ilk önce onu kurun veya memcached özelliğini devre dışı bırakın.', - 'sodiumextrequired' => 'Şifreleme için PHP\'nin libsodium uzantısı gerekiyor. Lütfen ilk önce onu kurun veya şifreleme özelliğini devre dışı bırakın.', - 'pdo_mysqlextrequired' => 'Seçili veritabanı sürücüsü için PHP\'nin pdo_mysql uzantısı gerekiyor. Lütfen ilk önce onu kurun.', - 'pdo_pgsqlextrequired' => 'Seçili veritabanı sürücüsü için PHP\'nin pdo_mysql uzantısı gerekiyor. Lütfen ilk önce onu kurun.', - 'pdo_sqliteextrequired' => 'Seçili veritabanı sürücüsü için PHP\'nin pdo_sqlite uzantısı gerekiyor. Lütfen ilk önce onu kurun.', - 'jsonextrequired' => 'Bu özellik için PHP\'nin json uzantısı gerekiyor. Lütfen ilk önce onu kurun.', - 'sendmail' => 'Yeni herkese açık mesajla posta gönder', - 'mailsender' => 'Bu adresi kullanarak posta gönder', - 'mailreceiver' => 'Bu adrese posta gönder', - 'modfallback' => 'Eğer konukları onaylayacak moderatör yoksa, bekleme odasına düş', - 'regpass' => 'Kayıt olmak için
şifreyi tekrarla', - 'guestreg' => 'Konukların kendilerini kayıt etmelerine izin ver', - 'asmember' => 'Üye olarak', - 'assuguest' => 'Başvuru sahibi olarak', - 'fatalerror' => 'Kritik hata', - 'prevmatch' => 'Eşleşmeniz aşağıdaki gibiydi', - 'matchtoolong' => 'Eşleşmeniz çok uzundu. En fazla 255 harf kullanabilirsiniz. Bölmeyi deneyin.', - 'nocache' => 'Otomatik kaydırma (eski tarayıclar veya yukarıdan-aşağıya görüntüleme için).', - 'disablepm' => 'Özel mesajları devre dışı bırak', - 'disablechat' => 'Sohbeti devre dışı bırak', - 'disabletext' => 'Sohbet mesajı devre dışı bıraktı (html)', - 'disabledtext' => 'Geçici olarak devre dışı', - 'defaulttz' => 'Varsayılan zaman dilimi', - 'tz' => 'Zaman dilimi', - 'optional' => '(isteğe bağlı)', - 'userloggedin' => 'Bu kullanıcı ismine sahip birisi zaten giriş yapmış.', - 'regednick' => 'Bu kullanıcı adı kayıtlı bir üyeye ait.', - 'failednotice' => 'başarısız oturum açma girişimleri', - 'dismiss' => 'anlaşıldı', - 'eninbox' => 'Çevrimdışı gelen kutusunu etkinleştir', - 'inboxmsgs' => 'Gelen kutunuzdaki %d mesajı okuyun', - 'offline' => '(çevrimdışı)', - 'deleteacc' => 'Hesabı sil', - 'eninnone' => 'Hiç kimse için', - 'eninall' => 'Herkes için', - 'eninmem' => 'Sadece üyeler için', - 'eninstaff' => 'Sadece yetkililer için', - 'eninadmin' => 'Sadece yöneticiler için', - 'nickregex' => 'Kullanıcı adı regex', - 'passregex' => 'Şifre regex', - 'externalcss' => 'Dış CSS dosyasının bağlantısı', - 'greetingmsg' => 'Hoş geldin %s!', - 'entryhelp' => 'Eğer çerçeve %d saniye içinde yenilenmiyorsa, tarayıcınızda otomatik yönlendirmeyi (meta refresh) açmanız lazım. Ayrıca web filtresi, yerel proxy aracı veya tarayıcı uzantılarının otomatik yönlendirmeyi engellemediğinden emin olun! Buna örnek olarak "Polipo", "NoScript", vb. verilebilir
Geçici bir çözüm olarak (veya sunucu/proxy yenileme hataları olursa) her zaman aşağıdaki düğmeler ile manuel olarak yenileyebilirsiniz.', - 'enablegreeting' => 'İletileri göstermeden önce selamlama mesajı göster', - 'unban' => 'Yasaklamayı kaldır', - 'sortupdown' => 'İletileri yukarıdan aşağıya doğru sırala', - 'sortframe' => 'Yeniden düzenle', - 'cs' => 'Büyük harf/küçük harf duyarlı', - 'hidechatters' => 'Sohbet edenlerin listesini gizle', - 'enfileupload' => 'Dosya yüklemelerine izin ver', - 'msgattache' => 'Ek', - 'filenotfound' => 'Dosya bulunamadı!', - 'maxuploadsize' => 'KB olarak en fazla yükleme boyutu', - 'maxsize' => 'En fazla %d KB', - 'cssupdate' => 'Not: Default CSS is now hardcoded and can be removed from the CSS setting', - 'manualrefresh' => 'Manuel yenileme gerekli', - 'personalnotes' => 'Kişisel notlar', - 'publicnotes' => 'Kamu profiller', - 'filtermodkick' => 'Moderatörler için atma filtresini etkinleştir', - 'namedoers' => 'İnsanları kimin dışarı attığını veya tüm iletileri kimin temizlediğini gösterin.', -]; - - diff --git a/lang_uk.php b/lang_uk.php deleted file mode 100644 index 523cb01..0000000 --- a/lang_uk.php +++ /dev/null @@ -1,378 +0,0 @@ - -* -* This program is free software: you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. -* -* This program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with this program. If not, see . -*/ - -//Native language name: Українська -$T = [ -'nodb' => 'Немає з`єднання з базою даних!', -'nodbsetup' => 'Немає з`єднання з базою даних, будь ласка, створіть базу даних та змініть сценарій, щоб використовувати правильну базу даних із заданим ім`ям користувача та паролем!', -'changelang' => 'Змінити мову:', -'expire' => 'Недійсна/з терміном сесія', -'kicked' => 'Забанен!', -'invalnick' => 'Некоректне ім`я (%1$d символів максимум і воно має співпадати з виразом "%2$s")', -'invalpass' => 'Некоректний пароль (Хоча %1$d символів і він повинен співпадати з виразом "%2$s")', -'noconfirm' => 'Введені паролі не співпадають!', -'incorregex' => 'Неправильний регулярний вираз!', -'bottom' => 'Вниз', -'top' => 'Вгору', -'choose' => '(вибрати)', -'setup' => 'Установка чату', -'init' => 'Початкова установка', -'sulogin' => 'Вхід для суперадміністратора', -'sunick' => 'Нік суперадміністратора:', -'supass' => 'Пароль суперадміністратора:', -'suconfirm' => 'Підтвердження пароля:', -'susuccess' => 'Успішно зареєстровано!', -'initbtn' => 'Ініціалізація чату', -'initdbexist' => 'Таблиці бази даних вже є! Щоб продовжити, ви повинні спочатку видалити ці таблиці вручну.', -'initsuexist' => 'Суперадміністратор вже існує!', -'initgosetup' => 'Перейти до сторінки установки', -'captcha' => 'Captcha', -'enabled' => 'Увімкнено', -'onlyguests' => 'Тільки для гостей', -'disabled' => 'Вимкнено', -'simple' => 'Проста', -'moderate' => 'Помірна', -'extreme' => 'Сильна', -'nick' => 'Нік:', -'pass' => 'Пароль:', -'globalloginpass' => 'Глобальний пароль:', -'login' => 'Увійти', -'dbupdate' => 'База даних успішно оновлена!', -'sysmessage' => 'системне повідомлення', -'sysmessages' => 'Системні повідомлення', -'sysmessagetxt' => 'Цей текст передує повідомленням із системи.', -'msgenter' => 'Вхід', -'msgexit' => 'Вихід', -'msgmemreg' => 'Зареєстровані', -'msgsureg' => 'Заявник зареєстрований', -'msgkick' => 'Забанені', -'msgmultikick' => 'Багаторазово забанені', -'msgallkick' => 'Всі забанені', -'msgclean' => 'Очищення чату', -'dateformat' => 'Формат дати' , -'admfunc' => 'Адміністративні функції', -'allguests' => 'Всі гості', -'cleanmsgs' => 'Очищення повідомлень', -'room' => 'Спільна кімната', -'selection' => 'Вибір', -'cleannick' => 'За ніком:', -'clean' => 'Очистити', -'kickchat' => 'Бан (%d хвилин)', -'kickreason' => 'Повідомлення забаненому', -'kickpurge' => 'Очищення повідомлень', -'kick' => 'Бан', -'logoutinact' => 'Вихід неактивного чату', -'logout' => 'Вийти', -'sessions' => 'Активні сесії', -'view' => 'Перегляд', -'filter' => 'Фільтр', -'guestacc' => 'Змінити гостьовий доступ', -'guestallow' => 'Дозволити', -'guestwait' => 'Дозволити з гостьовою', -'adminallow' => 'Вимагати схвалення модератора', -'guestdisallow' => 'Лише учасники', -'addsuguest' => 'Додати заявника', -'register' => 'Зареєструвати', -'admmembers' => 'Учасники', -'memdel' => 'Видалити з бази даних', -'memdeny' => 'Заборонити доступ (!)', -'memsuguest' => 'Набір до претендента (SG)', -'memreg' => 'Встановити учасника', -'memmod' => 'Набір модератора (M)', -'memsumod' => 'Набір супермодератора (SM)', -'memadm' => 'Набір адміністратора (A)', -'change' => 'Змінити', -'regguest' => 'Реєстрація гостей', -'regmem' => 'Реєстрація нових учасників', -'sessact' => 'Активні сеанси', -'sessnick' => 'Нік', -'sesstimeout' => 'Час очікування', -'sessua' => 'User-Agent', -'fid' => 'Фільтр ID:', -'match' => 'Збіг', -'replace' => 'Замінювати', -'allowpm' => 'Дозволити в личку', -'regex' => 'Регулярний вираз', -'apply' => 'Застосувати', -'newfilter' => 'Новий фільтр:', -'add' => 'Додати', -'noframes' => 'Цей чат використовує frames. Будь ласка, увімкніть підтримку у вашому браузері або використовуйте відповідний!', -'delselmes' => 'Видалити вибрані повідомлення', -'staffnotes' => 'Службові нотатки', -'adminnotes' => 'Примітки адміністратора', -'notessaved' => 'Нотатки збережені!', -'lastedited' => 'Востаннє редагував %1$s %2$s', -'savenotes' => 'Зберегти нотатки', -'waitingroom' => 'Гостьова', -'waittext' => 'Ласкаво просимо %1$s, спостерігається затримка входу, доступ до чату буде здійснено через %2$d секунд.', -'admwaittext' => 'Ласкаво просимо %1$s, спостерігається затримка входу, доступ до чату буде доступний після підтвердження модератором.', -'waitreload' => 'Якщо ця сторінка не відповідає, не оновлюється кожні %d секунд, використовуйте кнопку нижче, щоб перезавантажити її вручну!', -'reload' => 'Перезавантажити', -'rules' => 'Правила', -'talkto' => 'Надіслати', -'toall' => 'Все в чаті', -'tomem' => 'Учасники', -'tostaff' => 'Службові', -'toadmin' => 'Адміністратор', -'alsopurge' => 'Також очистити повідомлення', -'dellast' => 'Видалити останнє повідомлення', -'delall' => 'Видалити всі повідомлення', -'switchsingle' => 'Включити однорядковий режим', -'switchmulti' => 'Увімкнути багаторядковий режим', -'help' => 'Допомога', -'helpguest' => 'Всі функції інтуїтивно зрозумілі, просто використовуйте кнопки. У налаштуваннях вашого профілю ви можете налаштувати частоту оновлення, колір шрифту та бажаний розмір вікна входу.
Примітка: Це чат, тому навіть якщо ви нічого не пишете, то буде автоматично зареєстровано через деякий час. ', -'helpembed' => 'Якщо ви хочете вбудувати зображення у свій пост, прикріпіть [img] перед вашим URL-зображенням. Приклад: [img]http://example.com/images/file.jpg прикріплюватиме картинку до вашого повідомлення.
', -'helpmem' => 'Учасники: Ви маєте кілька варіантів налаштувань у вашому профілі. Можна настроїти шрифт та змінити свій пароль у будь-який час.', -'helpmod' => 'Модератори: Зверніть увагу на кнопку адміністратора внизу. Це перенесе вас на сторінку, де ви можете очистити кімнату, забанити, переглянути всі активні сеанси та відключити гостьовий доступ, якщо необхідно.', -'helpadm' => 'Адміністратори: Ви здатні реєструвати гостей та нові ніки без їх присутності в кімнаті, а також редагувати користувачів.', -'profile' => 'Ваш профіль', -'ignore' => 'Ігнорувати', -'unignore' => 'Більше не ігнорувати', -'refreshrate' => 'Частота оновлення (%1$d-%2$d секунд)', -'fontcolour' => 'Колір шрифту', -'viewexample' => 'Подивитися приклади', -'bgcolour' => 'Фоновий колір', -'fontface' => 'Шрифт', -'roomdefault' => 'За замовчуванням', -'bold' => 'Жирний', -'italic' => 'Курсів', -'small' => 'Маленький', -'fontexample' => 'Приклад вибраного вами шрифту', -'timestamps' => 'Показувати позначки часу', -'embed' => 'Вставити зображення', -'incognito' => 'Режим інкогніто', -'changenick' => 'Змінити ім`я', -'changepass' => 'Змінити пароль', -'oldpass' => 'Старий пароль:', -'newpass' => 'Новий пароль:', -'confirmpass' => 'Підтвердження:', -'savechanges' => 'Зберегти зміни', -'reloadpb' => 'Перезавантажити поштову скриньку', -'reloadmsgs' => 'Оновити', -'viewpublicnotes' => 'Читати профілі користувачів', -'chgprofile' => 'Профіль', -'adminbtn' => 'Адміністратор', -'admnotes' => 'Примітки адміністратора', -'notes' => 'Примітки', -'clone' => 'Клонувати', -'randh' => 'Правила та допомога', -'exit' => 'Вихід', -'bye' => 'Поки %s, заходьте знову!', -'colourtable' => 'Приклади кольорів', -'backtoprofile' => 'Повернутися до вашого профілю', -'copy' => 'Копія:', -'choosecol' => 'Виберіть колір:', -'randomcol' => 'Випадковий колір', -'enter' => 'Увійти в чат', -'error' => 'Помилка', -'admin' => 'Адміністратор', -'staff' => 'Службові', -'members' => 'Зареєстровані', -'guests' => 'Гості', -'approveguests' => '%d нові гості для схвалення', -'allowchecked' => 'Дозволити перевірку', -'allowall' => 'Дозволити всім', -'denychecked' => 'Заборонити перевірку', -'denyall' => 'Заборонити всім', -'denymessage' => 'Надіслати повідомлення з відмовою:', -'butallowdeny' => 'Надіслати', -'waitempty' => 'Більш запитів для затвердження немає.', -'wrongcaptcha' => 'Неправильна капча!', -'captchaexpire' => 'Захистний код вже використовується або час закінчився.', -'noguests' => 'Вибачте, входять лише зареєстровані!', -'curchat' => 'Зараз %d розмова(ів) у кімнаті:', -'cantreg' => 'Ви не можете реєструватися %s', -'alreadyreged' => '%s вже зареєстрований.', -'successreg' => '%s успішно зареєстрований.', -'cantchgstat' => 'Неможливо змінити статус %s', -'succdel' => '%s успішно видалено з бази даних.', -'succchg' => 'Статус %s успішно змінено.', -'wrongpass' => 'Неправильний пароль!', -'wrongglobalpass' => 'Неправильний глобальний пароль!', -'succprofile' => 'Ваш профіль був успішно збережений.', -'backtologin' => 'Повернутися до сторінки входу.', -'backtochat' => 'Повернутися до чату.', -'Beige' => 'Бежевий', -'Black' => 'Чорний', -'Blue' => 'Синій', -'BlueViolet' => 'Фіолетово-синій', -'Brown' => 'Коричневий', -'Cyan' => 'Блакитний', -'DarkBlue' => 'Темно-синій', -'DarkGreen' => 'Темно-зелений', -'DarkRed' => 'Темно-червоний', -'DarkViolet' => 'Темно-фіолетовий', -'DeepSkyBlue' => 'Блакитне небо', -'Gold' => 'Золотий', -'Grey' => 'Сірий', -'Green' => 'Зелений', -'HotPink' => 'Яскраво-рожевий', -'Indigo' => 'Індиго', -'LightBlue' => 'Світло-синій', -'LightGreen' => 'Світло-зелений', -'LimeGreen' => 'Зелений лайм', -'Magenta' => 'Пурпурний', -'Olive' => 'Оливковий', -'Orange' => 'Помаранчевий', -'OrangeRed' => 'Оранжево-червоний', -'Purple' => 'Фіолетовий', -'Red' => 'Червоний', -'RoyalBlue' => 'Королівський синій', -'SeaGreen' => 'Морський зелений', -'Sienna' => 'Сієна', -'Silver' => 'Срібний', -'Tan' => 'Засмага', -'Teal' => 'Чирок', -'Violet' => 'Фіолетовий', -'White' => 'Білий', -'Yellow' => 'Жовтий', -'YellowGreen' => 'Жовто-зелений', -'redirectto' => 'Перенаправлення на:', -'nonhttp' => 'Запитане посилання не http:', -'httpredir' => 'Якщо це не працює, спробуйте це:', -'actions' => 'Дії', -'sesip' => 'IP-адреса', -'css' => 'CSS стилі', -'memberexpire' => 'Тайм-аут користувачів (хвилин)', -'guestexpire' => 'Тайм-аут гостей (хвилин)', -'kickpenalty' => 'Бан (хвилин)', -'entrywait' => 'Час очікування в гостьовий (секунд)', -'captchatime' => 'Тайм-аут Captcha (секунд)', -'messageexpire' => 'Тайм-аут повідомлення (хвилин)', -'messagelimit' => 'Ліміт повідомлень (загальних)', -'maxmessage' => 'Максимальна довжина повідомлення', -'confirm' => 'Ви впевнені?', -'yes' => 'Так', -'no' => 'Ні', -'colbg' => 'Фоновий колір', -'coltxt' => 'Колір тексту', -'maxname' => 'Максимальна довжина імені', -'minpass' => 'Мінімальна довжина пароля', -'defaultrefresh' => 'За замовчуванням час перезавантаження повідомлення (секунди)', -'suguests' => 'Дозволити гостей', -'rulestxt' => 'Правила (html)', -'imgembed' => 'Вставка зображень', -'trackip' => 'Показати IP-сесію', -'captchachars' => 'Символи, що використовуються в Captcha', -'memkick' => 'Користувачі можуть виключати, якщо не є модератор', -'memkickalways' => 'Користувачі можуть завжди виключати', -'forceredirect' => 'Примусове перенаправлення', -'redirect' => 'Скрипт користувача перенаправлення', -'backuprestore' => 'Бекап та відновлення', -'backup' => 'Бекап', -'restore' => 'Відновлення', -'settings' => 'Налаштування', -'linkfilter' => 'Фільтрування посилань', -'chatname' => 'Назва чату', -'destroy' => 'Знищити чат', -'destroyed' => 'Чат успішно знищено', -'topic' => 'Тема', -'passreset' => 'Скидання пароля', -'cantresetpass' => 'Неможливо скинути пароль', -'succpassreset' => 'Пароль успішно скинутий', -'entermsg' => '%s увійшов до чату.', -'exitmsg' => '%s залишив чат.', -'memregmsg' => '%s тепер зареєстрований член.', -'suregmsg' => '%s тепер зареєстрований заявник.', -'kickmsg' => '%s виключено з чату.', -'multikickmsg' => '%s виключено з чату.', -'allkickmsg' => 'Всі гості виключені з чату.', -'cleanmsg' => '%s було очищено.', -'sendallmsg' => '%s - ', -'sendmemmsg' => '[M] %s - ', -'sendmodmsg' => '[Staff] %s - ', -'sendadmmsg' => '[Admin] %s - ', -'sendprvmsg' => '[%1$s to %2$s] - ', -'msgsendall' => 'Повідомлення всім', -'msgsendmem' => 'Повідомлення лише членам', -'msgsendmod' => 'Повідомлення лише модераторам', -'msgsendadm' => 'Повідомлення лише адміністраторам', -'msgsendprv' => 'Особисте повідомлення', -'numnotes' => 'Число виправлень для збереження', -'revisions' => 'Виправлення:', -'older' => 'Старі', -'newer' => 'Нові', -'accessdenied' => 'У доступі відмовлено.', -'loggedinas' => 'Ви увійшли як %s і не маєте доступу до цієї секції.', -'newnickname' => 'Нове ім`я:', -'nicknametaken' => 'Ім`я вже зайняте', -'nopass' => 'Некоректний пароль (хоча %d символів), не змінюючи імені', -'gdextrequired' => 'gd розширення для PHP вимагається для цієї функції. Будь ласка, встановіть його спочатку...', -'memcachedextrequired' => 'Memcached extension of PHP is required for caching feature. Please install it first or set memcached setting back to false.', -'sodiumextrequired' => 'The libsodium extension of PHP is required for encryption feature. Please install it first or set encrypted setting back to false.', -'pdo_mysqlextrequired' => 'Pdo_mysql розширення для PHP вимагається для драйверів бази даних. Будь ласка, встановіть його спочатку..', -'pdo_pgsqlextrequired' => 'Pdo_pgsql розширення для PHP вимагається для драйверів бази даних. Будь ласка, встановіть його спочатку..', -'pdo_sqliteextrequired' => 'Pdo_sqlite розширення для PHP вимагається для драйверів бази даних. Будь ласка, встановіть його спочатку.', -'jsonextrequired' => 'Json розширення для PHP вимагається для цієї функції. Будь ласка, встановіть його спочатку.', -'sendmail' => 'Надіслати повідомлення як нове публічне', -'mailsender' => 'Надіслати повідомлення на цю адресу', -'mailreceiver' => 'Надіслати повідомлення за цією адресою', -'modfallback' => 'Повернутися в кімнату очікування, якщо модератор відстутсвує для підтвердження гостей', -'regpass' => 'Повторіть пароль
Зареєструватися', -'guestreg' => 'Дозволити гостям реєструватися самостійно', -'asmember' => 'Як член', -'assuguest' => 'Як заявник', -'fatalerror' => 'Фатальна помилка', -'prevmatch' => 'Тексти в полях збігаються', -'matchtoolong' => 'Текст у полі занадто довгий. Можна використати максимум 255 символів, спробуйте розбити поле на частини.', -'nocache' => 'Автозавантаження (для старих браузерів, для сортування зверху-вниз).', -'disablepm' => 'Вимкнути особисті повідомлення', -'disablechat' => 'Вимкнути чат', -'disabletext' => 'Чат відключив повідомлення (html)', -'disabledtext' => 'Тимчасово вимкнено', -'defaulttz' => 'Годинний пояс за промовчанням', -'tz' => 'Годинний пояс', -'optional' => '(опціонально)', -'userloggedin' => 'Користувач з поточним ім`ям вже в мережі.', -'regednick' => 'Це ім`я належить зареєстрованому користувачеві.', -'failednotice' => 'невдала спроба входу(и)', -'dismiss' => 'визнав', -'eninbox' => 'Включити офлайн-пошту', -'inboxmsgs' => 'Прочитайте %d вхідних повідомлень', -'offline' => '(оффлайн)', -'deleteacc' => 'Видалити обліковий запис', -'eninnone' => 'Нікому', -'eninall' => 'Для всіх', -'eninmem' => 'Тільки для членів', -'eninstaff' => 'Тільки для модераторів', -'eninadmin' => 'Тільки для адмінів', -'nickregex' => 'Нік regex', -'passregex' => 'Пароль regex', -'externalcss' => 'Посилання на зовнішній CSS файл', -'greetingmsg' => 'Ласкаво просимо %s!', -'entryhelp' => 'Якщо це вікно не оновиться протягом %d секунд, Вам потрібно увімкнути автоматичне оновлення (meta refresh) у вашому браузері. Також переконайтеся у відсутності веб-фільтра, перевірте налаштування проксі або плагіни браузера на блокування автоматичного оновлення! Приклади плагінів: "Polipo", "NoScript", і т.д.
Проте, (у разі помилок перезавантаження сторінок через сервер/проксі) ви завжди можете використовувати кнопки внизу сторінки для ручного оновлення сторінки.', -'enablegreeting' => 'Показувати вітальне повідомлення перед іншими повідомленнями', -'unban' => 'Розблокувати', -'sortupdown' => 'Сортувати повідомлення зверху вниз', -'sortframe' => 'Перебудувати', -'cs' => 'Регістр-чутливий', -'hidechatters' => 'Приховати список людей у чаті', -'enfileupload' => 'Дозволити файлові завантаження', -'msgattache' => 'Прикріплення', -'filenotfound' => 'Файл не виявлено!', -'maxuploadsize' => 'Максимальний розмір файлу в КБ', -'maxsize' => 'Макс. %d КБ', -'cssupdate' => 'Замітка: по встановленню CSS він важкий і можна прибрати його в CSS налаштуваннях', -'manualrefresh' => 'Потрібно оновити сторінку вручну', -'personalnotes' => 'Особисті нотатки', -'publicnotes' => ' Профіль користувача', -'filtermodkick' => 'Застосувати фільтр виключення для модераторів', -'namedoers' => 'Покажіть, хто виганяє людей або очищає всі повідомлення.', -]; diff --git a/lang_update.php b/lang_update.php deleted file mode 100644 index 703b2db..0000000 --- a/lang_update.php +++ /dev/null @@ -1,43 +0,0 @@ - -* -* This program is free software: you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. -* -* This program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with this program. If not, see . -*/ - -//Native language name: $native -\$T=[ -"; -if(file_exists("lang_$code.php")){ - include("lang_$code.php"); -} -include('lang_en.php'); -foreach($T as $id=>$value){ - if(isSet($I[$id])){ - $I[$id]=$value; - } -} -foreach($I as $id=>$value){ - $file .= "\t'$id' => '".str_replace("'", "\'", $value)."',\n"; -} -$file .= "];\n"; -file_put_contents("lang_$code.php", $file); diff --git a/lang_zh-Hans.php b/lang_zh-Hans.php deleted file mode 100644 index 975e0e2..0000000 --- a/lang_zh-Hans.php +++ /dev/null @@ -1,354 +0,0 @@ - '没有连接到数据库!', - 'nodbsetup' => '没有连接到数据库,请创建一个数据库并编辑脚本并修改为用户名密码正确的数据库!', - 'changelang' => '修改语言:', - 'expire' => '无效/已过期的会话', - 'kicked' => '你被踢出该聊天室!', - 'invalnick' => '无效的用户名 (最多%1$d个字符,必须与正则表达式"%2$s"匹配)', - 'invalpass' => '无效的密码 (至少包含%1$d个字符,并且必须与正则表达式"%2$s"匹配)', - 'noconfirm' => '重复密码不匹配!', - 'incorregex' => '正则表达式错误!', - 'bottom' => '底部', - 'top' => '顶部', - 'choose' => '(选择)', - 'setup' => '安装程序', - 'init' => '初始化设置', - 'sulogin' => '超级管理员登录:', - 'sunick' => '超级管理员用户名:', - 'supass' => '超级管理员密码:', - 'suconfirm' => '重复密码:', - 'susuccess' => '成功注册!', - 'initbtn' => '初始化聊天室', - 'initdbexist' => '数据库表已经存在!,要继续,您必须先手动删除这些表', - 'initsuexist' => '超级管理员已经存在!', - 'initgosetup' => '去设置界面', - 'captcha' => '验证码', - 'enabled' => '启用', - 'onlyguests' => '只仅游客', - 'disabled' => '禁用', - 'simple' => '简单', - 'moderate' => '中等', - 'extreme' => '超级', - 'nick' => '用户名:', - 'pass' => '密码:', - 'globalloginpass' => '全局密码:', - 'login' => '登录', - 'dbupdate' => '数据库更新成功', - 'sysmessage' => '系统信息', - 'sysmessages' => '系统信息', - 'sysmessagetxt' => '此文本先于来自系统的消息。', - 'msgenter' => '入口', - 'msgexit' => '离开', - 'msgmemreg' => '成员注册', - 'msgsureg' => '邀请人注册', - 'msgkick' => '踢出', - 'msgmultikick' => '批量踢出', - 'msgallkick' => '全部踢出', - 'msgclean' => '房间清理', - 'dateformat' => '日期格式', - 'admfunc' => '管理员功能', - 'allguests' => '全部游客', - 'cleanmsgs' => '清理消息', - 'room' => '整个房间', - 'selection' => '选择', - 'cleannick' => '下面的名称:', - 'clean' => '清理', - 'kickchat' => 'Kick Chatter (%d minutes)', - 'kickreason' => '踢出信息:', - 'kickpurge' => '清除信息', - 'kick' => '踢出', - 'logoutinact' => '注销非活动聊天者', - 'logout' => '登出', - 'sessions' => '查看活动聊天', - 'view' => '显示', - 'filter' => '过滤', - 'guestacc' => '修改游客访问', - 'guestallow' => '允许', - 'guestwait' => '等候室允许', - 'adminallow' => '请求审核人批准', - 'guestdisallow' => '只仅正式成员', - 'addsuguest' => '注册申请员', - 'register' => '注册', - 'admmembers' => '正式成员', - 'memdel' => '从数据库删除', - 'memdeny' => '拒绝访问 (!)', - 'memsuguest' => '申请为申请人 (SG)', - 'memreg' => '设置为正式成员', - 'memmod' => '设置为主持人 (M)', - 'memsumod' => '设置为0.5 (SM)', - 'memadm' => '设置为管理员 (A)', - 'change' => '修改', - 'regguest' => '注册游客', - 'regmem' => '注册新成员', - 'sessact' => '活动会话', - 'sessnick' => '用户名', - 'sesstimeout' => '超时', - 'sessua' => '用户代理', - 'fid' => '过滤器ID:', - 'match' => '匹配', - 'replace' => '替换', - 'allowpm' => '允许在PM', - 'regex' => '正则表达式', - 'apply' => '应用', - 'newfilter' => '新过滤器:', - 'add' => '添加', - 'noframes' => '这个聊天室使用 frames. 请在浏览器中启用frames或使用合适的frames!', - 'delselmes' => '删除所选信息', - 'staffnotes' => '工作人员说明', - 'adminnotes' => '管理员说明', - 'notessaved' => '说明已保存!', - 'lastedited' => '上次由%1$s编辑 时间为%2$s', - 'savenotes' => '保存说明', - 'waitingroom' => '等候室', - 'waittext' => '欢迎%1$s, 您的登录信息已被延迟,您可以访问聊天记录%2$d秒.', - 'admwaittext' => '欢迎%1$s, 您的登录信息已被延迟,您可以尽快访问聊天内容,因为主持人会让您进入.', - 'waitreload' => '如果这个页面没有刷新%d秒, 使用下面的按钮手动重新加载!', - 'reload' => '刷新', - 'rules' => '规则', - 'talkto' => '发送至', - 'toall' => '所有的聊天者', - 'tomem' => '内部使用', - 'tostaff' => '只供职员使用', - 'toadmin' => '仅限管理员', - 'alsopurge' => '同时清除消息', - 'dellast' => '删除上一条消息', - 'delall' => '删除所有信息', - 'switchsingle' => '切换到单行', - 'switchmulti' => '切换到多行', - 'help' => '帮助', - 'helpguest' => '这里一切解释权归我所有,只需使用按钮。 在您的配置文件中,您可以调整刷新率,字体颜色和首选输入框大小.
注意: 这是一个聊天室,所以如果你不再说话,你会在一段时间后自动退出.', - 'helpembed' => '如果您想在帖子中嵌入图片,只需将[img]放在图片网址前面即可。示例:[img]http://example.com/images/file.jpg会将图片嵌入到您的帖子中.', - 'helpmem' => '成员:您的个人资料中还有更多选项。 您可以随时调整字体,更改密码,当然也可以删除您的帐户.', - 'helpmod' => '版主:请注意底部。 它将打开一个页面,您可以在其中清理房间,踢聊天,查看所有活动会话并在需要时完全禁用访客访问权限.', - 'helpadm' => '管理员:您还可以注册客人,编辑成员并注册新的昵称。', - 'profile' => '你的个人资料', - 'ignore' => '忽略', - 'unignore' => '取消忽略', - 'refreshrate' => '刷新时间(%1$d秒-%2$d秒)', - 'fontcolour' => '字体颜色', - 'viewexample' => '查看示例', - 'bgcolour' => '背景色', - 'fontface' => '字体', - 'roomdefault' => '默认房间', - 'bold' => '大胆', - 'italic' => '斜体', - 'fontexample' => '您选择的字体的示例', - 'timestamps' => '显示时间戳', - 'embed' => '嵌入图像', - 'incognito' => '隐身模式', - 'changepass' => '更改密码', - 'oldpass' => '旧密码:', - 'newpass' => '新密码:', - 'confirmpass' => '在重复一次新密码:', - 'savechanges' => '保存更改', - 'reloadpb' => '刷新缓存', - 'reloadmsgs' => '刷新一下消息', - 'viewpublicnotes' => '阅读用户配置文件', - 'publicnotes' => '用户配置文件', - 'chgprofile' => '个人资料', - 'adminbtn' => '管理', - 'admnotes' => '管理员公告', - 'notes' => '公告', - 'clone' => '打开新标签', - 'randh' => '条款 & 帮助', - 'exit' => '退出聊天室', - 'bye' => '再见%s, 欢迎你再此访问!', - 'colourtable' => '颜色表', - 'backtoprofile' => '回到你的个人资料', - 'copy' => '验证码:', - 'choosecol' => '客人,选择一种颜色:', - 'randomcol' => '随机颜色', - 'enter' => '回车', - 'error' => '错误', - 'admin' => '管理', - 'staff' => '工作人员', - 'members' => '会员', - 'guests' => '游客', - 'approveguests' => '%d新客人批准', - 'allowchecked' => '允许检查', - 'allowall' => '允许全部', - 'denychecked' => '拒绝检查', - 'denyall' => '全部拒绝', - 'denymessage' => '发送消息给拒绝:', - 'butallowdeny' => '提交', - 'waitempty' => '不再需要批准入场申请.', - 'wrongcaptcha' => '错误验证码', - 'captchaexpire' => '验证码已经使用或超时.', - 'noguests' => '对不起,目前仅限会员!', - 'curchat' => '目前%d人在房间里聊天:', - 'cantreg' => '无法注册%s', - 'alreadyreged' => '%s已经注册', - 'successreg' => '%s成功注册.', - 'cantchgstat' => '无法改变状态%s', - 'succdel' => '%s已成功从数据库中删除.', - 'succchg' => '%s的状态已更改.', - 'wrongpass' => '密码错误!', - 'wrongglobalpass' => '错误的全球密码!', - 'succprofile' => '您的个人资料已成功保存.', - 'backtologin' => '返回登录页面.', - 'backtochat' => '回到聊天室.', - 'Beige' => '米色', - 'Black' => '黑色', - 'Blue' => '蓝色', - 'BlueViolet' => '紫罗兰色', - 'Brown' => '棕色', - 'Cyan' => '青色', - 'DarkBlue' => '深蓝', - 'DarkGreen' => '深绿色', - 'DarkRed' => '深红', - 'DarkViolet' => '深紫罗兰', - 'DeepSkyBlue' => '天蓝色', - 'Gold' => '金', - 'Grey' => '灰色', - 'Green' => '绿色', - 'HotPink' => '亮粉色', - 'Indigo' => '靛青', - 'LightBlue' => '浅蓝', - 'LightGreen' => '浅绿色', - 'LimeGreen' => '柠檬绿', - 'Magenta' => '品红', - 'Olive' => '橄榄', - 'Orange' => '橙子', - 'OrangeRed' => '橙红色', - 'Purple' => '紫色', - 'Red' => '红色', - 'RoyalBlue' => '宝蓝色', - 'SeaGreen' => '海绿色', - 'Sienna' => '黄土', - 'Silver' => '银色', - 'Tan' => '黄褐色', - 'Teal' => '蓝绿色', - 'Violet' => '紫色', - 'White' => '白色', - 'Yellow' => '黄色', - 'YellowGreen' => '黄绿色', - 'redirectto' => '重定向到:', - 'nonhttp' => '请求非http链接:', - 'httpredir' => '如果它不起作用,试试这个:', - 'actions' => '操作', - 'sesip' => 'IP地址', - 'css' => 'CSS风格', - 'memberexpire' => '会员超时(分钟)', - 'guestexpire' => '访客超时(分钟)', - 'kickpenalty' => '踢罚(分钟)', - 'entrywait' => '等候室时间(秒)', - 'captchatime' => '验证码超时(秒)', - 'messageexpire' => '消息超时(分钟)', - 'messagelimit' => '消息限制(公开)', - 'maxmessage' => '最大消息长度', - 'confirm' => '你确定吗?', - 'yes' => '是', - 'no' => '否', - 'colbg' => '背景色', - 'coltxt' => '文字颜色', - 'maxname' => '最大昵称长度', - 'minpass' => '最小密码长度', - 'defaultrefresh' => '默认消息重新加载时间(秒)', - 'suguests' => '启用申请人', - 'rulestxt' => '规则(html)', - 'imgembed' => '嵌入图像', - 'trackip' => '显示会话-IP', - 'captchachars' => '验证码中使用的字符', - 'memkick' => '如果没有主持人,会员可以踢', - 'memkickalways' => '会员总是可以驱逐客人', - 'forceredirect' => '强制重定向', - 'redirect' => '自定义重定向脚本', - 'backuprestore' => '备份还原', - 'backup' => '备用', - 'restore' => '恢复', - 'settings' => '设置', - 'linkfilter' => '链接过滤器', - 'chatname' => '聊天名称', - 'destroy' => '摧毁聊天', - 'destroyed' => '成功破坏了聊天', - 'topic' => '话题', - 'passreset' => '重设密码', - 'cantresetpass' => '无法重置密码', - 'succpassreset' => '成功重置密码', - 'entermsg' => '%s进入聊天室.', - 'exitmsg' => '%s离开了聊天室', - 'memregmsg' => '%s现在是注册会员.', - 'suregmsg' => '%s现在是注册申请人.', - 'kickmsg' => '%s被踢了.', - 'multikickmsg' => '%s被踢了.', - 'allkickmsg' => '所有客人都被踢了.', - 'cleanmsg' => '%s已经清理干净了.', - 'sendallmsg' => '%s - ', - 'sendmemmsg' => '[M] %s - ', - 'sendmodmsg' => '[Staff] %s - ', - 'sendadmmsg' => '[Admin] %s - ', - 'sendprvmsg' => '[%1$s to %2$s] - ', - 'msgsendall' => '给所有人的信息', - 'msgsendmem' => '仅向会员发送消息', - 'msgsendmod' => '仅向员工发送消息', - 'msgsendadm' => '仅向管理员发送消息', - 'msgsendprv' => '私人信息', - 'numnotes' => '要保留的备注数量', - 'revisions' => '修订:', - 'older' => '旧的', - 'newer' => '较新', - 'accessdenied' => '拒绝访问', - 'loggedinas' => '您以%s身份登录,无法访问此部分', - 'newnickname' => '新昵称:', - 'nicknametaken' => '昵称已被取消', - 'nopass' => '密码无效(至少%d个字符),不更改昵称.', - 'gdextrequired' => '此功能需要PHP的gd扩展名。 请先安装它。.', - 'memcachedextrequired' => '缓存功能需要PHP的memcached扩展。 请先安装它或将memcached设置恢复为false.', - 'sodiumextrequired' => '加密功能需要PHP的libsodium扩展。 请先安装它或将加密设置恢复为false.', - 'pdo_mysqlextrequired' => '所选数据库驱动程序需要PHP的pdo_mysql扩展名。 请先安装它.', - 'pdo_pgsqlextrequired' => '所选数据库驱动程序需要PHP的pdo_pgsql扩展名。 请先安装它。', - 'pdo_sqliteextrequired' => '所选数据库驱动程序需要PHP的pdo_sqlite扩展。 请先安装它.', - 'jsonextrequired' => '此功能需要PHP的json扩展名。 请先安装它.', - 'sendmail' => '发送新公共邮件的邮件', - 'mailsender' => '使用此地址发送邮件', - 'mailreceiver' => '发送邮件到这个地址', - 'modfallback' => '如果没有主持人来批准客人,请回到候诊室', - 'regpass' => '重复密码
注册', - 'guestreg' => '让客人自己注册', - 'asmember' => '作为会员', - 'assuguest' => '作为申请人', - 'fatalerror' => '致命错误', - 'prevmatch' => '你的申请如下', - 'matchtoolong' => '你的申请太长了。 你可以用max。 255个字符。 尝试拆分它.', - 'nocache' => '自动滚动(适用于旧浏览器或从上到下排序).', - 'disablepm' => '禁用私人消息', - 'disablechat' => '禁用聊天', - 'disabletext' => '聊天禁用消息(html)', - 'disabledtext' => '暂时禁用', - 'defaulttz' => '默认时区', - 'tz' => '时区', - 'optional' => '(可选的)', - 'userloggedin' => '具有此昵称的用户已登录.', - 'regednick' => '这个昵称是注册会员.', - 'failednotice' => '登录尝试失败', - 'dismiss' => '承认', - 'eninbox' => '启用离线收件箱', - 'inboxmsgs' => '阅读收件箱中的%d条消息', - 'offline' => '(离线)', - 'deleteacc' => '删除帐户', - 'eninnone' => '一个人', - 'eninall' => '所以人', - 'eninmem' => '仅限会员', - 'eninstaff' => '仅限员工', - 'eninadmin' => '仅适用于管理员', - 'nickregex' => '昵称正则表达式', - 'passregex' => '密码正则表达式', - 'externalcss' => '链接到外部CSS文件', - 'greetingmsg' => '欢迎%s!', - 'entryhelp' => '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.', - 'enablegreeting' => '在显示消息之前显示问候消息', - 'unban' => '取消禁止', - 'sortupdown' => '从上到下对消息进行排序', - 'sortframe' => '改变方向', - 'cs' => '大小写', - 'hidechatters' => '隐藏聊天列表', - 'enfileupload' => '启用文件上载', - 'msgattache' => '附件', - 'filenotfound' => '找不到文件!', - 'maxuploadsize' => '最大上载大小(KB)', - 'maxsize' => 'Max %d KB', - 'cssupdate' => '注意:默认的CSS现在是硬编码的,可以从CSS设置中删除。', - 'namedoers' => '显示谁驱逐人或清除所有消息。', -]; diff --git a/lang_zh-Hant.php b/lang_zh-Hant.php deleted file mode 100644 index de388ae..0000000 --- a/lang_zh-Hant.php +++ /dev/null @@ -1,354 +0,0 @@ - '沒有連接到數據庫!', - 'nodbsetup' => '沒有連接到數據庫,請創建一個數據庫並編輯腳本並修改爲用戶名密碼正確的數據庫!', - 'changelang' => '修改語言:', - 'expire' => '無效/已過期的會話', - 'kicked' => '你被踢出該聊天室!', - 'invalnick' => '無效的用戶名 (最多%1$d個字符,必須與正則表達式"%2$s"匹配)', - 'invalpass' => '無效的密碼 (至少包含%1$d個字符,並且必須與正則表達式"%2$s"匹配)', - 'noconfirm' => '重複密碼不匹配!', - 'incorregex' => '正則表達式錯誤!', - 'bottom' => '底部', - 'top' => '頂部', - 'choose' => '(選擇)', - 'setup' => '安裝程序', - 'init' => '初始化設置', - 'sulogin' => '超級管理員登錄:', - 'sunick' => '超級管理員用戶名:', - 'supass' => '超級管理員密碼:', - 'suconfirm' => '重複密碼:', - 'susuccess' => '成功註冊!', - 'initbtn' => '初始化聊天室', - 'initdbexist' => '數據庫表已經存在!,要繼續,您必須先手動刪除這些表', - 'initsuexist' => '超級管理員已經存在!', - 'initgosetup' => '去設置界面', - 'captcha' => '驗證碼', - 'enabled' => '啓用', - 'onlyguests' => '只僅遊客', - 'disabled' => '禁用', - 'simple' => '簡單', - 'moderate' => '中等', - 'extreme' => '超級', - 'nick' => '用戶名:', - 'pass' => '密碼:', - 'globalloginpass' => '全局密碼:', - 'login' => '登錄', - 'dbupdate' => '數據庫更新成功', - 'sysmessage' => '系統信息', - 'sysmessages' => '系統信息', - 'sysmessagetxt' => '此文本先於來自系統的消息。', - 'msgenter' => '入口', - 'msgexit' => '離開', - 'msgmemreg' => '成員註冊', - 'msgsureg' => '邀請人註冊', - 'msgkick' => '踢出', - 'msgmultikick' => '批量踢出', - 'msgallkick' => '全部踢出', - 'msgclean' => '房間清理', - 'dateformat' => '日期格式', - 'admfunc' => '管理員功能', - 'allguests' => '全部遊客', - 'cleanmsgs' => '清理消息', - 'room' => '整個房間', - 'selection' => '選擇', - 'cleannick' => '下面的名稱:', - 'clean' => '清理', - 'kickchat' => 'Kick Chatter (%d minutes)', - 'kickreason' => '踢出信息:', - 'kickpurge' => '清除信息', - 'kick' => '踢出', - 'logoutinact' => '註銷非活動聊天者', - 'logout' => '登出', - 'sessions' => '查看活動聊天', - 'view' => '顯示', - 'filter' => '過濾', - 'guestacc' => '修改遊客訪問', - 'guestallow' => '允許', - 'guestwait' => '等候室允許', - 'adminallow' => '請求審覈人批准', - 'guestdisallow' => '只僅正式成員', - 'addsuguest' => '註冊申請員', - 'register' => '註冊', - 'admmembers' => '正式成員', - 'memdel' => '從數據庫刪除', - 'memdeny' => '拒絕訪問 (!)', - 'memsuguest' => '申請爲申請人 (SG)', - 'memreg' => '設置爲正式成員', - 'memmod' => '設置爲主持人 (M)', - 'memsumod' => '設置爲0.5 (SM)', - 'memadm' => '設置爲管理員 (A)', - 'change' => '修改', - 'regguest' => '註冊遊客', - 'regmem' => '註冊新成員', - 'sessact' => '活動會話', - 'sessnick' => '用戶名', - 'sesstimeout' => '超時', - 'sessua' => '用戶代理', - 'fid' => '過濾器ID:', - 'match' => '匹配', - 'replace' => '替換', - 'allowpm' => '允許在PM', - 'regex' => '正則表達式', - 'apply' => '應用', - 'newfilter' => '新過濾器:', - 'add' => '添加', - 'noframes' => '這個聊天室使用 frames. 請在瀏覽器中啓用frames或使用合適的frames!', - 'delselmes' => '刪除所選信息', - 'staffnotes' => '工作人員說明', - 'adminnotes' => '管理員說明', - 'notessaved' => '說明已保存!', - 'lastedited' => '上次由%1$s編輯 時間爲%2$s', - 'savenotes' => '保存說明', - 'waitingroom' => '等候室', - 'waittext' => '歡迎%1$s, 您的登錄信息已被延遲,您可以訪問聊天記錄%2$d秒.', - 'admwaittext' => '歡迎%1$s, 您的登錄信息已被延遲,您可以儘快訪問聊天內容,因爲主持人會讓您進入.', - 'waitreload' => '如果這個頁面沒有刷新%d秒, 使用下面的按鈕手動重新加載!', - 'reload' => '刷新', - 'rules' => '規則', - 'talkto' => '發送至', - 'toall' => '所有的聊天者', - 'tomem' => '內部使用', - 'tostaff' => '只供職員使用', - 'toadmin' => '僅限管理員', - 'alsopurge' => '同時清除消息', - 'dellast' => '刪除上一條消息', - 'delall' => '刪除所有信息', - 'switchsingle' => '切換到單行', - 'switchmulti' => '切換到多行', - 'help' => '幫助', - 'helpguest' => '這裏一切解釋權歸我所有,只需使用按鈕。 在您的配置文件中,您可以調整刷新率,字體顏色和首選輸入框大小.
注意: 這是一個聊天室,所以如果你不再說話,你會在一段時間後自動退出.', - 'helpembed' => '如果您想在帖子中嵌入圖片,只需將[img]放在圖片網址前面即可。示例:[img]http://example.com/images/file.jpg會將圖片嵌入到您的帖子中.', - 'helpmem' => '成員:您的個人資料中還有更多選項。 您可以隨時調整字體,更改密碼,當然也可以刪除您的帳戶.', - 'helpmod' => '版主:請注意底部。 它將打開一個頁面,您可以在其中清理房間,踢聊天,查看所有活動會話並在需要時完全禁用訪客訪問權限.', - 'helpadm' => '管理員:您還可以註冊客人,編輯成員並註冊新的暱稱。', - 'profile' => '你的個人資料', - 'ignore' => '忽略', - 'unignore' => '取消忽略', - 'refreshrate' => '刷新時間(%1$d秒-%2$d秒)', - 'fontcolour' => '字體顏色', - 'viewexample' => '查看示例', - 'bgcolour' => '背景色', - 'fontface' => '字體', - 'roomdefault' => '默認房間', - 'bold' => '大膽', - 'italic' => '斜體', - 'fontexample' => '您選擇的字體的示例', - 'timestamps' => '顯示時間戳', - 'embed' => '嵌入圖像', - 'incognito' => '隱身模式', - 'changepass' => '更改密碼', - 'oldpass' => '舊密碼:', - 'newpass' => '新密碼:', - 'confirmpass' => '在重複一次新密碼:', - 'savechanges' => '保存更改', - 'reloadpb' => '刷新緩存', - 'reloadmsgs' => '刷新一下消息', - 'viewpublicnotes' => '閱讀用戶配置文件', - 'publicnotes' => '用戶配置文件', - 'chgprofile' => '個人資料', - 'adminbtn' => '管理', - 'admnotes' => '管理員公告', - 'notes' => '公告', - 'clone' => '打開新標籤', - 'randh' => '條款 & 幫助', - 'exit' => '退出聊天室', - 'bye' => '再見%s, 歡迎你再此訪問!', - 'colourtable' => '顏色表', - 'backtoprofile' => '回到你的個人資料', - 'copy' => '驗證碼:', - 'choosecol' => '客人,選擇一種顏色:', - 'randomcol' => '隨機顏色', - 'enter' => '回車', - 'error' => '錯誤', - 'admin' => '管理', - 'staff' => '工作人員', - 'members' => '會員', - 'guests' => '遊客', - 'approveguests' => '%d新客人批准', - 'allowchecked' => '允許檢查', - 'allowall' => '允許全部', - 'denychecked' => '拒絕檢查', - 'denyall' => '全部拒絕', - 'denymessage' => '發送消息給拒絕:', - 'butallowdeny' => '提交', - 'waitempty' => '不再需要批准入場申請.', - 'wrongcaptcha' => '錯誤驗證碼', - 'captchaexpire' => '驗證碼已經使用或超時.', - 'noguests' => '對不起,目前僅限會員!', - 'curchat' => '目前%d人在房間裏聊天:', - 'cantreg' => '無法註冊%s', - 'alreadyreged' => '%s已經註冊', - 'successreg' => '%s成功註冊.', - 'cantchgstat' => '無法改變狀態%s', - 'succdel' => '%s已成功從數據庫中刪除.', - 'succchg' => '%s的狀態已更改.', - 'wrongpass' => '密碼錯誤!', - 'wrongglobalpass' => '錯誤的全球密碼!', - 'succprofile' => '您的個人資料已成功保存.', - 'backtologin' => '返回登錄頁面.', - 'backtochat' => '回到聊天室.', - 'Beige' => '米色', - 'Black' => '黑色', - 'Blue' => '藍色', - 'BlueViolet' => '紫羅蘭色', - 'Brown' => '棕色', - 'Cyan' => '青色', - 'DarkBlue' => '深藍', - 'DarkGreen' => '深綠色', - 'DarkRed' => '深紅', - 'DarkViolet' => '深紫羅蘭', - 'DeepSkyBlue' => '天藍色', - 'Gold' => '金', - 'Grey' => '灰色', - 'Green' => '綠色', - 'HotPink' => '亮粉色', - 'Indigo' => '靛青', - 'LightBlue' => '淺藍', - 'LightGreen' => '淺綠色', - 'LimeGreen' => '檸檬綠', - 'Magenta' => '品紅', - 'Olive' => '橄欖', - 'Orange' => '橙子', - 'OrangeRed' => '橙紅色', - 'Purple' => '紫色', - 'Red' => '紅色', - 'RoyalBlue' => '寶藍色', - 'SeaGreen' => '海綠色', - 'Sienna' => '黃土', - 'Silver' => '銀色', - 'Tan' => '黃褐色', - 'Teal' => '藍綠色', - 'Violet' => '紫色', - 'White' => '白色', - 'Yellow' => '黃色', - 'YellowGreen' => '黃綠色', - 'redirectto' => '重定向到:', - 'nonhttp' => '請求非http鏈接:', - 'httpredir' => '如果它不起作用,試試這個:', - 'actions' => '操作', - 'sesip' => 'IP地址', - 'css' => 'CSS風格', - 'memberexpire' => '會員超時(分鐘)', - 'guestexpire' => '訪客超時(分鐘)', - 'kickpenalty' => '踢罰(分鐘)', - 'entrywait' => '等候室時間(秒)', - 'captchatime' => '驗證碼超時(秒)', - 'messageexpire' => '消息超時(分鐘)', - 'messagelimit' => '消息限制(公開)', - 'maxmessage' => '最大消息長度', - 'confirm' => '你確定嗎?', - 'yes' => '是', - 'no' => '否', - 'colbg' => '背景色', - 'coltxt' => '文字顏色', - 'maxname' => '最大暱稱長度', - 'minpass' => '最小密碼長度', - 'defaultrefresh' => '默認消息重新加載時間(秒)', - 'suguests' => '啓用申請人', - 'rulestxt' => '規則(html)', - 'imgembed' => '嵌入圖像', - 'trackip' => '顯示會話-IP', - 'captchachars' => '驗證碼中使用的字符', - 'memkick' => '如果沒有主持人,會員可以踢', - 'memkickalways' => '會員總是可以驅逐客人', - 'forceredirect' => '強制重定向', - 'redirect' => '自定義重定向腳本', - 'backuprestore' => '備份還原', - 'backup' => '備用', - 'restore' => '恢復', - 'settings' => '設置', - 'linkfilter' => '鏈接過濾器', - 'chatname' => '聊天名稱', - 'destroy' => '摧毀聊天', - 'destroyed' => '成功破壞了聊天', - 'topic' => '話題', - 'passreset' => '重設密碼', - 'cantresetpass' => '無法重置密碼', - 'succpassreset' => '成功重置密碼', - 'entermsg' => '%s進入聊天室.', - 'exitmsg' => '%s離開了聊天室', - 'memregmsg' => '%s現在是註冊會員.', - 'suregmsg' => '%s現在是註冊申請人.', - 'kickmsg' => '%s被踢了.', - 'multikickmsg' => '%s被踢了.', - 'allkickmsg' => '所有客人都被踢了.', - 'cleanmsg' => '%s已經清理乾淨了.', - 'sendallmsg' => '%s - ', - 'sendmemmsg' => '[M] %s - ', - 'sendmodmsg' => '[Staff] %s - ', - 'sendadmmsg' => '[Admin] %s - ', - 'sendprvmsg' => '[%1$s to %2$s] - ', - 'msgsendall' => '給所有人的信息', - 'msgsendmem' => '僅向會員發送消息', - 'msgsendmod' => '僅向員工發送消息', - 'msgsendadm' => '僅向管理員發送消息', - 'msgsendprv' => '私人信息', - 'numnotes' => '要保留的備註數量', - 'revisions' => '修訂:', - 'older' => '舊的', - 'newer' => '較新', - 'accessdenied' => '拒絕訪問', - 'loggedinas' => '您以%s身份登錄,無法訪問此部分', - 'newnickname' => '新暱稱:', - 'nicknametaken' => '暱稱已被取消', - 'nopass' => '密碼無效(至少%d個字符),不更改暱稱.', - 'gdextrequired' => '此功能需要PHP的gd擴展名。 請先安裝它。.', - 'memcachedextrequired' => '緩存功能需要PHP的memcached擴展。 請先安裝它或將memcached設置恢復爲false.', - 'sodiumextrequired' => '加密功能需要PHP的libsodium擴展。 請先安裝它或將加密設置恢復爲false.', - 'pdo_mysqlextrequired' => '所選數據庫驅動程序需要PHP的pdo_mysql擴展名。 請先安裝它.', - 'pdo_pgsqlextrequired' => '所選數據庫驅動程序需要PHP的pdo_pgsql擴展名。 請先安裝它。', - 'pdo_sqliteextrequired' => '所選數據庫驅動程序需要PHP的pdo_sqlite擴展。 請先安裝它.', - 'jsonextrequired' => '此功能需要PHP的json擴展名。 請先安裝它.', - 'sendmail' => '發送新公共郵件的郵件', - 'mailsender' => '使用此地址發送郵件', - 'mailreceiver' => '發送郵件到這個地址', - 'modfallback' => '如果沒有主持人來批准客人,請回到候診室', - 'regpass' => '重複密碼
註冊', - 'guestreg' => '讓客人自己註冊', - 'asmember' => '作爲會員', - 'assuguest' => '作爲申請人', - 'fatalerror' => '致命錯誤', - 'prevmatch' => '你的申請如下', - 'matchtoolong' => '你的申請太長了。 你可以用max。 255個字符。 嘗試拆分它.', - 'nocache' => '自動滾動(適用於舊瀏覽器或從上到下排序).', - 'disablepm' => '禁用私人消息', - 'disablechat' => '禁用聊天', - 'disabletext' => '聊天禁用消息(html)', - 'disabledtext' => '暫時禁用', - 'defaulttz' => '默認時區', - 'tz' => '時區', - 'optional' => '(可選的)', - 'userloggedin' => '具有此暱稱的用戶已登錄.', - 'regednick' => '這個暱稱是註冊會員.', - 'failednotice' => '登錄嘗試失敗', - 'dismiss' => '承認', - 'eninbox' => '啓用離線收件箱', - 'inboxmsgs' => '閱讀收件箱中的%d條消息', - 'offline' => '(離線)', - 'deleteacc' => '刪除帳戶', - 'eninnone' => '一個人', - 'eninall' => '所以人', - 'eninmem' => '僅限會員', - 'eninstaff' => '僅限員工', - 'eninadmin' => '僅適用於管理員', - 'nickregex' => '暱稱正則表達式', - 'passregex' => '密碼正則表達式', - 'externalcss' => '鏈接到外部CSS文件', - 'greetingmsg' => '歡迎%s!', - 'entryhelp' => '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.', - 'enablegreeting' => '在顯示消息之前顯示問候消息', - 'unban' => '取消禁止', - 'sortupdown' => '從上到下對消息進行排序', - 'sortframe' => '改變方向', - 'cs' => '大小寫', - 'hidechatters' => '隱藏聊天列表', - 'enfileupload' => '啓用文件上載', - 'msgattache' => '附件', - 'filenotfound' => '找不到文件!', - 'maxuploadsize' => '最大上載大小(KB)', - 'maxsize' => 'Max %d KB', - 'cssupdate' => '注意:默認的CSS現在是硬編碼的,可以從CSS設置中刪除。', - 'namedoers' => '顯示誰驅逐人或清除所有消息。', -]; diff --git a/locale/ar/LC_MESSAGES/le-chat-php.mo b/locale/ar/LC_MESSAGES/le-chat-php.mo new file mode 100644 index 0000000..1d18aff Binary files /dev/null and b/locale/ar/LC_MESSAGES/le-chat-php.mo differ diff --git a/locale/ar/LC_MESSAGES/le-chat-php.po b/locale/ar/LC_MESSAGES/le-chat-php.po new file mode 100644 index 0000000..7b6656b --- /dev/null +++ b/locale/ar/LC_MESSAGES/le-chat-php.po @@ -0,0 +1,1603 @@ +# 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: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-01-18 21:32+0100\n" +"PO-Revision-Date: 2023-01-18 21:34+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n" +"X-Generator: Poedit 3.1.1\n" + +#: chat.php:261 +msgid "Enable applicants" +msgstr "أذن مرشح" + +#: chat.php:262 +msgid "Embed images" +msgstr "الصور المتداخلة" + +#: chat.php:263 chat.php:2202 +msgid "Show Timestamps" +msgstr "عرض الطابع الزمني" + +#: chat.php:264 +msgid "Show session-IP" +msgstr "مشاهدة جلسة- IP" + +#: chat.php:265 +msgid "Members can kick, if no moderator is present" +msgstr "يمكن طرد الأعضاء في حالة غياب الوسيط" + +#: chat.php:266 +msgid "Members can always kick" +msgstr "يمكن للأعضاء دائما طرد" + +#: chat.php:267 +msgid "Force redirection" +msgstr "فرض إعادة التوجيه" + +#: chat.php:268 +msgid "Incognito mode" +msgstr "الوضع المخفي" + +#: chat.php:269 +msgid "Send mail on new public message" +msgstr "" + +#: chat.php:270 +msgid "Fallback to waiting room, if no moderator is present to approve guests" +msgstr "" + +#: chat.php:271 +msgid "Disable private messages" +msgstr "" + +#: chat.php:272 chat.php:2223 +msgid "Enable offline inbox" +msgstr "" + +#: chat.php:273 +msgid "Show a greeting message before showing the messages" +msgstr "" + +#: chat.php:274 chat.php:2204 +msgid "Sort messages from top to bottom" +msgstr "" + +#: chat.php:275 chat.php:2205 +msgid "Hide list of chatters" +msgstr "" + +#: chat.php:276 chat.php:1780 chat.php:1794 +msgid "Personal notes" +msgstr "" + +#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110 +msgid "Public notes" +msgstr "ملاحظات عامة" + +#: chat.php:278 +msgid "Apply kick filter on moderators" +msgstr "" + +#: chat.php:279 +msgid "Show who kicks people or purges all messages." +msgstr "أظهر من يركل الأشخاص أو ينظف كل الرسائل." + +#: chat.php:280 +msgid "Hide reload post box button" +msgstr "" + +#: chat.php:281 +msgid "Hide reload messages button" +msgstr "" + +#: chat.php:282 +msgid "Hide profile button" +msgstr "" + +#: chat.php:283 +msgid "Hide admin button" +msgstr "" + +#: chat.php:284 +msgid "Hide notes button" +msgstr "" + +#: chat.php:285 +msgid "Hide clone button" +msgstr "" + +#: chat.php:286 +msgid "Hide rearrange button" +msgstr "" + +#: chat.php:287 +msgid "Hide help button" +msgstr "" + +#: chat.php:288 +msgid "Apply postbox delete button globally" +msgstr "" + +#: chat.php:289 +msgid "Allow enhancing functionality with JavaScript" +msgstr "" + +#: chat.php:292 chat.php:2170 +msgid "Background colour" +msgstr "لون الخلفية" + +#: chat.php:293 chat.php:2167 +msgid "Font colour" +msgstr "لون الخط" + +#: chat.php:296 +msgid "Entrance" +msgstr "يدخل" + +#: chat.php:297 +msgid "Leaving" +msgstr "غادر" + +#: chat.php:298 +msgid "Member registered" +msgstr "عضو مسجل" + +#: chat.php:299 +msgid "Applicant registered" +msgstr "المرشح المسجل" + +#: chat.php:300 +msgid "Kicked" +msgstr "محظور / طرد!" + +#: chat.php:301 +msgid "Multiple kicked" +msgstr "قذفات متعددة" + +#: chat.php:302 +msgid "All kicked" +msgstr "طرد عالمي" + +#: chat.php:303 +msgid "Room cleaned" +msgstr "رسائل نظيفة" + +#: chat.php:304 +msgid "Message to all" +msgstr "رسالة للجميع" + +#: chat.php:305 +msgid "Message to members only" +msgstr "رسالة للأعضاء فقط" + +#: chat.php:306 +msgid "Message to staff only" +msgstr "رسالة للمديرين فقط" + +#: chat.php:307 +msgid "Message to admins only" +msgstr "رسالة للمسؤولين فقط" + +#: chat.php:308 +msgid "Private message" +msgstr "رسالة خاصة" + +#: chat.php:309 +msgid "Attachement" +msgstr "" + +#: chat.php:312 +msgid "Member timeout (minutes)" +msgstr "انتهت المهلة المحددة للعضو (بالدقائق)" + +#: chat.php:313 +msgid "Guest timeout (minutes)" +msgstr "انتهت المهلة المحددة للزائر (بالدقائق)" + +#: chat.php:314 +msgid "Kick penalty (minutes)" +msgstr "عقوبة الطرد (بالدقائق)" + +#: chat.php:315 +msgid "Waiting room time (seconds)" +msgstr "حان الوقت لدخول الدردشة (بالثواني)" + +#: chat.php:316 +msgid "Captcha timeout (seconds)" +msgstr "انتهى وقت كلمة التحقق (بالثواني)" + +#: chat.php:317 +msgid "Message timeout (minutes)" +msgstr "انتهت مهلة الرسالة (بالدقائق)" + +#: chat.php:318 +msgid "Message limit (public)" +msgstr "حد الرسالة (عام)" + +#: chat.php:319 +msgid "Maximal message length" +msgstr "أقصى طول للرسالة" + +#: chat.php:320 +msgid "Maximal nickname length" +msgstr "أقصى طول للكنية" + +#: chat.php:321 +msgid "Minimal password length" +msgstr "الحد الأدنى لطول كلمة المرور" + +#: chat.php:322 +msgid "Default message reload time (seconds)" +msgstr "وقت إعادة تحميل الرسالة الافتراضي (بالثواني)" + +#: chat.php:323 +msgid "Number of notes revisions to keep" +msgstr "عدد المذكرات المنقحة للاحتفاظ بها" + +#: chat.php:324 +msgid "Maximum upload size in KB" +msgstr "" + +#: chat.php:325 +msgid "Enable file uploads" +msgstr "" + +#: chat.php:326 +msgid "Lowest refresh rate" +msgstr "" + +#: chat.php:327 +msgid "Highest refresh rate" +msgstr "" + +#: chat.php:330 +msgid "Rules (html)" +msgstr "القواعد (html)" + +#: chat.php:331 +msgid "CSS Style" +msgstr "أسلوب Css" + +#: chat.php:332 +msgid "Chat disabled message (html)" +msgstr "" + +#: chat.php:335 +msgid "" +"Date " +"formating" +msgstr "" +"صيغة " +"التاريخ" + +#: chat.php:336 +msgid "Characters used in Captcha" +msgstr "الأحرف المستخدمة في Captcha" + +#: chat.php:337 +msgid "Custom redirection script" +msgstr "تخصيص نص إعادة التوجيه" + +#: chat.php:338 +msgid "Chat name" +msgstr "اسم القط" + +#: chat.php:339 +msgid "Send mail using this address" +msgstr "" + +#: chat.php:340 +msgid "Send mail to this address" +msgstr "" + +#: chat.php:341 +msgid "Nickname regex" +msgstr "" + +#: chat.php:342 +msgid "Password regex" +msgstr "" + +#: chat.php:343 +msgid "Link to external CSS file (on your own server)" +msgstr "" + +#: chat.php:344 +msgid "Meta description (best 50 - 160 characters for SEO)" +msgstr "" + +#: chat.php:345 +msgid "Prepend this text to system messages" +msgstr "هذا النص يسبق رسائل النظام" + +#: chat.php:348 chat.php:728 chat.php:1225 +msgid "Change Guestaccess" +msgstr "تغيير وصول الضيف" + +#: chat.php:349 +msgid "Enable global Password" +msgstr "" + +#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433 +msgid "Global Password:" +msgstr "كلمة المرور العامة:" + +#: chat.php:351 chat.php:819 +msgid "Captcha" +msgstr "كلمة التحقق" + +#: chat.php:352 chat.php:775 chat.php:835 +msgid "Only for guests" +msgstr "فقط الضيوف" + +#: chat.php:353 chat.php:1220 +msgid "Topic" +msgstr "فاعل" + +#: chat.php:354 chat.php:781 +msgid "Let guests register themselves" +msgstr "" + +#: chat.php:355 chat.php:862 +msgid "Default time zone" +msgstr "" + +#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259 +msgid "Initial Setup" +msgstr "التهيئة" + +#: chat.php:588 +#, php-format +msgid "Redirecting to: %s" +msgstr "إعادة التوجيه إلى: %s" + +#: chat.php:595 +#, php-format +msgid "" +"Dangerous non-http link requested, copy paste this link if you are really " +"sure: %s" +msgstr "" + +#: chat.php:597 +#, php-format +msgid "Non-http link requested: %s" +msgstr "مطلوب ارتباط غير http: %s" + +#: chat.php:599 +#, php-format +msgid "If it's not working, try this one: %s" +msgstr "إذا لم يفلح ذلك ، فجرّب الخيار إذا: %s" + +#: chat.php:609 +msgid "Access denied" +msgstr "الوصول ممنوع" + +#: chat.php:609 +#, 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 +msgid "Logout" +msgstr "تسجيل خروج" + +#: chat.php:636 +msgid "Copy:" +msgstr "ينسخ:" + +#: chat.php:724 +msgid "Chat Setup" +msgstr "تثبيت الدردشة" + +#: chat.php:734 chat.php:1233 +msgid "Allow" +msgstr "السماح" + +#: chat.php:739 chat.php:1238 +msgid "Allow with waitingroom" +msgstr "يسمح بالانتظار في غرفة" + +#: chat.php:744 chat.php:1243 +msgid "Require moderator approval" +msgstr "طلب موافقة الوسيط" + +#: chat.php:749 chat.php:1248 +msgid "Only members" +msgstr "الأعضاء فقط" + +#: chat.php:754 chat.php:1251 +msgid "Disable chat" +msgstr "" + +#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229 +msgid "Disabled" +msgstr "غير مثبت" + +#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219 +msgid "Enabled" +msgstr "مثبت" + +#: chat.php:792 +msgid "As applicant" +msgstr "" + +#: chat.php:797 +msgid "As member" +msgstr "" + +#: chat.php:800 +msgid "System messages" +msgstr "رسائل النظام" + +#: chat.php:822 chat.php:1053 +#, php-format +msgid "" +"The %s extension of PHP is required for this feature. Please install it " +"first." +msgstr "" + +#: chat.php:847 +msgid "Simple" +msgstr "بسيط" + +#: chat.php:852 +msgid "Moderate" +msgstr "معتدل" + +#: chat.php:857 +msgid "Extreme" +msgstr "شديد" + +#: chat.php:906 chat.php:1548 chat.php:1610 +msgid "Apply" +msgstr "مطبق" + +#: chat.php:910 chat.php:1050 +msgid "Backup and restore" +msgstr "احفظ واسترد" + +#: chat.php:912 +msgid "Destroy chat" +msgstr "تدمير القط" + +#: chat.php:1057 chat.php:1066 +msgid "Settings" +msgstr "اعدادات" + +#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575 +#: chat.php:1622 +msgid "Filter" +msgstr "فصل" + +#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538 +msgid "Members" +msgstr "أعضاء" + +#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322 +msgid "Notes" +msgstr "ملاحظات" + +#: chat.php:1061 +msgid "Backup" +msgstr "" + +#: chat.php:1070 +msgid "Restore" +msgstr "استعادة" + +#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260 +msgid "Go to the Setup-Page" +msgstr "اذهب إلى صفحة التثبيت" + +#: chat.php:1082 chat.php:1091 chat.php:1949 +msgid "Are you sure?" +msgstr "هل أنت واثق؟" + +#: chat.php:1083 chat.php:1092 chat.php:1956 +msgid "Yes" +msgstr "نعم" + +#: chat.php:1084 chat.php:1093 chat.php:1963 +msgid "No" +msgstr "لا" + +#: chat.php:1101 chat.php:4259 +msgid "Superadmin Login" +msgstr "تسجيل دخول المشرف المتميز" + +#: chat.php:1102 +msgid "Superadmin Nickname:" +msgstr "لقب المشرف المتميز:" + +#: chat.php:1103 +msgid "Superadmin Password:" +msgstr "كلمة مرور المشرف المتميز:" + +#: chat.php:1104 +msgid "Confirm Password:" +msgstr "أكد كلمة المرور:" + +#: chat.php:1105 +msgid "Initialise Chat" +msgstr "" + +#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439 +msgid "Change language:" +msgstr "غير اللغة:" + +#: chat.php:1117 +msgid "Database successfully updated!" +msgstr "تم تثبيت قاعدة البيانات!" + +#: chat.php:1125 chat.php:1326 chat.php:2407 +msgid "Nickname:" +msgstr "مستعار:" + +#: chat.php:1126 chat.php:1327 chat.php:2408 +msgid "Password:" +msgstr "كلمة السر:" + +#: chat.php:1128 +msgid "Login" +msgstr "تسجيل الدخول" + +#: chat.php:1129 +msgid "Forgot login?" +msgstr "" + +#: chat.php:1142 chat.php:1306 +msgid "Reset password" +msgstr "إعادة تعيين كلمة المرور" + +#: chat.php:1150 +#, php-format +msgid "" +"Successfully reset password for username %s. Please remove the password " +"reset define from the script again." +msgstr "" + +#: 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 "" + +#: 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 +msgid "(choose)" +msgstr "(اختار)" + +#: chat.php:1170 +msgid "All guests" +msgstr "كل الضيوف" + +#: chat.php:1182 +msgid "Administrative functions" +msgstr "وظائف الإدارة" + +#: chat.php:1188 +msgid "Clean messages" +msgstr "رسائل نظيفة" + +#: chat.php:1191 +msgid "Whole room" +msgstr "غرفة" + +#: chat.php:1192 +msgid "Selection" +msgstr "اختيار" + +#: chat.php:1193 +msgid "Following nickname:" +msgstr "اتبع اللقب:" + +#: chat.php:1200 +msgid "Clean" +msgstr "نظيف" + +#: chat.php:1202 +#, php-format +msgid "Kick Chatter (%d minutes)" +msgstr "تم إخراج الألقاب (%d دقيقة)" + +#: chat.php:1204 +msgid "Kickmessage:" +msgstr "الرسائل الممنوعة:" + +#: chat.php:1205 +msgid "Purge messages" +msgstr "تطهير الرسائل" + +#: chat.php:1206 chat.php:1388 chat.php:1546 chat.php:1580 chat.php:1591 +#: chat.php:2042 +msgid "Kick" +msgstr "محظور / مطرود" + +#: chat.php:1208 +msgid "Logout inactive Chatter" +msgstr "فصل مستخدم غير نشط" + +#: chat.php:1212 +msgid "View active sessions" +msgstr "عرض الجلسات النشطة" + +#: chat.php:1212 chat.php:1603 +msgid "Linkfilter" +msgstr "ارتباط تمت تصفيته" + +#: chat.php:1217 +msgid "View" +msgstr "انظر" + +#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582 +#: chat.php:1626 +msgid "Change" +msgstr "تغيير" + +#: chat.php:1256 +msgid "Register applicant" +msgstr "أضف مرشحًا" + +#: chat.php:1264 chat.php:1322 chat.php:1328 +msgid "Register" +msgstr "حفظ" + +#: chat.php:1294 +msgid "Delete from database" +msgstr "حذف من قاعدة البيانات" + +#: chat.php:1294 +msgid "Deny access (!)" +msgstr "الوصول ممنوع (!)" + +#: chat.php:1296 +msgid "Set to applicant (SG)" +msgstr "إضافة كمرشح (SG)" + +#: chat.php:1298 +msgid "Set to regular member" +msgstr "أضف كعضو عادي" + +#: chat.php:1299 +msgid "Set to moderator (M)" +msgstr "إضافة كوسيط (م)" + +#: chat.php:1300 +msgid "Set to supermod (SM)" +msgstr "إضافة كوسيط فائق (SM)" + +#: chat.php:1302 +msgid "Set to admin (A)" +msgstr "إضافة كمسؤول (أ)" + +#: chat.php:1314 +msgid "Register Guest" +msgstr "سجل ضيف" + +#: chat.php:1324 +msgid "Register new Member" +msgstr "تسجيل عضو جديد" + +#: chat.php:1332 chat.php:1408 chat.php:1595 chat.php:1636 chat.php:1710 +#: chat.php:1924 +msgid "Reload" +msgstr "معاد شحنه" + +#: chat.php:1345 +msgid "Active Sessions" +msgstr "جلسات نشطة" + +#: chat.php:1346 chat.php:1873 +msgid "Nickname" +msgstr "مستعار" + +#: chat.php:1346 +msgid "Timeout in" +msgstr "ينتهي في" + +#: chat.php:1346 chat.php:1873 +msgid "User-Agent" +msgstr "وكيل المستخدم" + +#: chat.php:1350 +msgid "IP-Address" +msgstr "عنوان IP" + +#: chat.php:1351 +msgid "Actions" +msgstr "أجراءات" + +#: chat.php:1393 +msgid "Unban" +msgstr "" + +#: chat.php:1416 +msgid "Incorrect regular expression!" +msgstr "تعبير عادي غير صحيح!" + +#: chat.php:1416 chat.php:1424 +#, php-format +msgid "Your match was as follows: %s" +msgstr "" + +#: chat.php:1424 +msgid "" +"Your match was too long. You can use max. 255 characters. Try splitting it " +"up." +msgstr "" + +#: chat.php:1541 chat.php:1606 +msgid "Filter ID:" +msgstr "معرّف الفلتر:" + +#: chat.php:1542 chat.php:1607 +msgid "Match" +msgstr "يتوافق" + +#: chat.php:1543 chat.php:1608 +msgid "Replace" +msgstr "تم استبداله" + +#: chat.php:1544 chat.php:1578 chat.php:1589 +msgid "Allow in PM" +msgstr "أذن في PM" + +#: chat.php:1545 chat.php:1579 chat.php:1590 chat.php:1609 chat.php:1625 +#: chat.php:1633 +msgid "Regex" +msgstr "" + +#: chat.php:1547 chat.php:1581 chat.php:1592 +msgid "Case sensitive" +msgstr "" + +#: chat.php:1586 chat.php:1630 +msgid "New filter:" +msgstr "مرشح جديد:" + +#: chat.php:1593 chat.php:1634 +msgid "Add" +msgstr "اضف" + +#: chat.php:1691 +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 +msgid "Back to the login page." +msgstr "العودة إلى صفحة المصادقة." + +#: chat.php:1709 +msgid "Bottom" +msgstr "تحت" + +#: chat.php:1710 +msgid "Manual refresh required" +msgstr "" + +#: chat.php:1726 +msgid "Top" +msgstr "فوق" + +#: chat.php:1734 chat.php:1940 chat.php:1942 +msgid "Delete selected messages" +msgstr "حذف الرسائل المختارة" + +#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281 +msgid "Back to the chat." +msgstr "العودة إلى الدردشة." + +#: chat.php:1774 chat.php:1791 +msgid "Admin notes" +msgstr "ملاحظات المسؤول" + +#: chat.php:1777 chat.php:1788 +msgid "Staff notes" +msgstr "ملاحظات المدير" + +#: chat.php:1811 +msgid "Notes saved!" +msgstr "تم تسجيل الملاحظات!" + +#: chat.php:1835 chat.php:2122 +#, php-format +msgid "Last edited by %1$s at %2$s" +msgstr "" + +#: chat.php:1848 +msgid "Save notes" +msgstr "حفظ الملاحظات" + +#: chat.php:1850 +msgid "Revisions:" +msgstr "التنقيحات:" + +#: chat.php:1853 +msgid "Older" +msgstr "سابق" + +#: chat.php:1857 +msgid "Newer" +msgstr "جديد" + +#: chat.php:1868 chat.php:1914 +msgid "Waiting room" +msgstr "قاعة انتظار" + +#: chat.php:1880 +msgid "Allow checked" +msgstr "السماح للحفظ" + +#: chat.php:1881 +msgid "Allow all" +msgstr "اسمح للجميع" + +#: chat.php:1882 +msgid "Deny checked" +msgstr "رفض الحفظ" + +#: chat.php:1883 +msgid "Deny all" +msgstr "ينكر الجميع" + +#: chat.php:1883 +msgid "Send message to denied:" +msgstr "إرسال رسالة ممنوعة:" + +#: chat.php:1884 +msgid "Submit" +msgstr "بث" + +#: chat.php:1886 +msgid "No more entry requests to approve." +msgstr "لا مزيد من الإدخالات للموافقة عليها." + +#: chat.php:1916 +#, 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 +#, 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 +#, 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 +msgid "Exit Chat" +msgstr "الخروج من الدردشة" + +#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430 +msgid "Rules" +msgstr "قواعد" + +#: chat.php:1985 +msgid "Send to" +msgstr "أرسل إلى" + +#: chat.php:1990 +msgid "All chatters" +msgstr "لجميع المدردشين" + +#: chat.php:1996 +msgid "Members only" +msgstr "الأعضاء فقط" + +#: chat.php:2003 +msgid "Staff only" +msgstr "مدير فقط" + +#: chat.php:2010 +msgid "Admin only" +msgstr "المسؤول فقط" + +#: chat.php:2019 +msgid "(offline)" +msgstr "" + +#: chat.php:2043 +msgid "Also purge messages" +msgstr "تطهير الرسائل" + +#: chat.php:2050 +msgid "Delete last message" +msgstr "احذف الرسائل الأخيرة" + +#: chat.php:2055 +msgid "Delete all messages" +msgstr "امسح كل الرسائل" + +#: chat.php:2057 +msgid "Switch to single-line" +msgstr "خط واحد" + +#: chat.php:2059 +msgid "Switch to multi-line" +msgstr "قم بالتبديل إلى خطوط متعددة" + +#: chat.php:2070 +#, php-format +msgid "Welcome %s!" +msgstr "" + +#: chat.php:2071 +#, 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 "" + +#: chat.php:2087 +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." +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 "" + +#: 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 "" +"الأعضاء: سيكون لديك المزيد من الخيارات في ملفك الشخصي. يمكنك ضبط نوع الخط " +"الخاص بك ويمكنك تغيير كلمة المرور الخاصة بك في أي وقت." + +#: 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 "" +"الوسطاء: لاحظ زر المسؤول في الأسفل. ستقوم بإعداد صفحة حيث يمكنك تنظيف غرفة " +"المعيشة ، وطرد الدردشة ، ومشاهدة جميع الجلسات النشطة ، وتعطيل وصول الضيف " +"تمامًا إذا لزم الأمر." + +#: chat.php:2097 +msgid "" +"Admins: You'll be furthermore able to register guests, edit members and " +"register new nicknames." +msgstr "" +"المسؤولون: ستتمكن من تسجيل الضيوف وتعديل الأعضاء الجدد وتسجيلهم دون تواجدهم " +"في الصالة." + +#: chat.php:2135 +msgid "Your Profile" +msgstr "ملفك الشخصي" + +#: chat.php:2144 +msgid "Don't ignore anymore" +msgstr "لا تتجاهل مرة أخرى" + +#: chat.php:2152 +msgid "Ignore" +msgstr "تم التجاهل" + +#: chat.php:2163 +#, php-format +msgid "Refresh rate (%1$d-%2$d seconds)" +msgstr "معدل التحديث (%1$d-%2$d ثانية)" + +#: chat.php:2167 chat.php:2170 +msgid "View examples" +msgstr "اعرض الأمثلة" + +#: chat.php:2174 +msgid "Fontface" +msgstr "تعديل الخط" + +#: chat.php:2175 +msgid "Room Default" +msgstr "الصالة الافتراضية" + +#: chat.php:2188 +msgid "Bold" +msgstr "سمين" + +#: chat.php:2192 +msgid "Italic" +msgstr "مائل" + +#: chat.php:2196 +msgid "Small" +msgstr "" + +#: chat.php:2199 +msgid "Example for your chosen font" +msgstr "مثال على اختيار الخط" + +#: chat.php:2203 +msgid "Autoscroll (for old browsers or top-to-bottom sort)." +msgstr "" + +#: chat.php:2234 +msgid "For everyone" +msgstr "" + +#: chat.php:2239 +msgid "For members only" +msgstr "" + +#: chat.php:2244 +msgid "For staff only" +msgstr "" + +#: chat.php:2248 +msgid "Time zone" +msgstr "" + +#: chat.php:2261 +msgid "Change Password" +msgstr "تغيير كلمة المرور" + +#: chat.php:2263 +msgid "Old password:" +msgstr "كلمة سر قديمة:" + +#: chat.php:2264 +msgid "New password:" +msgstr "كلمة مرور جديدة:" + +#: chat.php:2265 +msgid "Confirm new password:" +msgstr "قم بتأكيد كلمة المرور الجديدة الخاصة بك:" + +#: chat.php:2268 +msgid "Change Nickname" +msgstr "" + +#: chat.php:2269 +msgid "New nickname:" +msgstr "اللقب الجديد:" + +#: chat.php:2273 +msgid "Save changes" +msgstr "احفظ التغييرات" + +#: chat.php:2275 +msgid "Delete account" +msgstr "" + +#: chat.php:2301 +msgid "Reload Post Box" +msgstr "أعد تحميل مربع النص" + +#: chat.php:2304 +msgid "Reload Messages" +msgstr "إعادة تحميل الرسائل" + +#: chat.php:2307 +msgid "Profile" +msgstr "الملف الشخصي" + +#: chat.php:2311 chat.php:2528 +msgid "Admin" +msgstr "مدير" + +#: chat.php:2318 +msgid "View public notes" +msgstr "انظر الملاحظات العامة'" + +#: chat.php:2325 +msgid "Clone" +msgstr "استنساخ" + +#: chat.php:2334 +msgid "Rearrange" +msgstr "" + +#: chat.php:2337 +msgid "Rules & Help" +msgstr "القواعد والمساعدة" + +#: chat.php:2358 chat.php:2362 +msgid "File not found!" +msgstr "" + +#: chat.php:2370 +#, php-format +msgid "Bye %s, visit again soon!" +msgstr "" + +#: chat.php:2377 +msgid "Colourtable" +msgstr "جدول الألوان" + +#: chat.php:2388 +msgid "Back to your Profile" +msgstr "العودة إلى ملف التعريف الخاص بك" + +#: chat.php:2412 +msgid "Repeat password
to register" +msgstr "" + +#: chat.php:2412 +msgid "(optional)" +msgstr "" + +#: chat.php:2417 +msgid "Guests, choose a colour:" +msgstr "ضيف ، اختر لونًا:" + +#: chat.php:2417 +msgid "Random Colour" +msgstr "لون عشوائي" + +#: chat.php:2421 chat.php:2435 chat.php:2569 +msgid "Sorry, currently members only!" +msgstr "آسف ، متاح فقط للأعضاء!" + +#: chat.php:2423 chat.php:2437 +msgid "Enter Chat" +msgstr "يدخل" + +#: chat.php:2457 +#, php-format +msgid "Error: %s" +msgstr "خطأ: %s" + +#: chat.php:2467 +msgid "Fatal error" +msgstr "" + +#: chat.php:2470 +#, php-format +msgid "Fatal error: %s" +msgstr "" + +#: chat.php:2482 chat.php:2693 +msgid "Failed login attempt(s)" +msgstr "محاولات الاتصال الفاشلة" + +#: chat.php:2489 +#, php-format +msgid "Read %d messages in your inbox" +msgstr "" + +#: chat.php:2498 +#, php-format +msgid "%d new guests to approve" +msgstr "" + +#: chat.php:2530 +msgid "Admin:" +msgstr "مدير:" + +#: chat.php:2533 +msgid "Staff" +msgstr "مدير" + +#: chat.php:2535 +msgid "Staff:" +msgstr "مدير:" + +#: chat.php:2540 +msgid "Members:" +msgstr "أعضاء:" + +#: chat.php:2542 +msgid "Guests" +msgstr "ضيوف" + +#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092 +#, 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 +#, 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 +msgid "Wrong global Password!" +msgstr "كلمة مرور عالمية سيئة!" + +#: chat.php:2591 chat.php:2612 +msgid "Wrong Captcha" +msgstr "كلمة التحقق السيئة" + +#: chat.php:2596 chat.php:2604 +msgid "Captcha already used or timed out." +msgstr "تم استخدام كلمة التحقق بالفعل أو منتهية الصلاحية." + +#: chat.php:2652 +msgid "A user with this nickname is already logged in." +msgstr "" + +#: chat.php:2652 chat.php:2933 chat.php:3176 +msgid "Wrong Password!" +msgstr "كلمة مرور سيئة!" + +#: chat.php:2696 +msgid "Dismiss" +msgstr "معروف" + +#: chat.php:2747 chat.php:3171 chat.php:4096 +msgid "Password confirmation does not match!" +msgstr "تأكيد كلمة المرور غير متطابق!" + +#: chat.php:2859 +msgid "Invalid/expired session" +msgstr "صفحة غير صالحة / منتهية الصلاحية" + +#: chat.php:2875 chat.php:3412 +msgid "You have been kicked!" +msgstr "محظور / طرد!" + +#: chat.php:2885 +#, php-format +msgid "Currently %d chatter(s) in room:" +msgstr "" + +#: chat.php:2933 +msgid "This nickname is a registered member." +msgstr "" + +#: chat.php:2960 chat.php:3001 +#, php-format +msgid "%s is already registered." +msgstr "" + +#: chat.php:2969 chat.php:2990 +#, php-format +msgid "Can't register %s" +msgstr "" + +#: chat.php:2978 chat.php:3023 +#, php-format +msgid "%s successfully registered." +msgstr "" + +#: chat.php:3031 chat.php:3036 +#, php-format +msgid "Can't change status of %s" +msgstr "" + +#: chat.php:3047 +#, php-format +msgid "%s successfully deleted from database." +msgstr "" + +#: chat.php:3056 +#, php-format +msgid "Status of %s successfully changed." +msgstr "" + +#: chat.php:3073 +#, php-format +msgid "Successfully reset password for %s" +msgstr "" + +#: chat.php:3075 +#, php-format +msgid "Can't reset password for %s" +msgstr "" + +#: chat.php:3190 +msgid "Your profile has successfully been saved." +msgstr "تم تسجيل ملف التعريف الخاص بك." + +#: chat.php:3202 +msgid "Nickname is already taken" +msgstr "اللقب مأخوذ بالفعل" + +#: chat.php:3714 +msgid "system message" +msgstr "رسالة النظام" + +#: chat.php:3921 +msgid "Beige" +msgstr "اللون البيج" + +#: chat.php:3922 +msgid "Black" +msgstr "اسود" + +#: chat.php:3923 +msgid "Blue" +msgstr "ازرق" + +#: chat.php:3924 +msgid "Blue violet" +msgstr "ازرق فاتح" + +#: chat.php:3925 +msgid "Brown" +msgstr "بني" + +#: chat.php:3926 +msgid "Cyan" +msgstr "سيان" + +#: chat.php:3927 +msgid "Dark blue" +msgstr "ازرق غامق" + +#: chat.php:3928 +msgid "Dark green" +msgstr "اخضر غامق" + +#: chat.php:3929 +msgid "Dark red" +msgstr "احمر غامق" + +#: chat.php:3930 +msgid "Dark violet" +msgstr "الأرجواني الداكن" + +#: chat.php:3931 +msgid "Sky blue" +msgstr "ازرق سماوي" + +#: chat.php:3932 +msgid "Gold" +msgstr "ذهبي" + +#: chat.php:3933 +msgid "Grey" +msgstr "رمادي" + +#: chat.php:3934 +msgid "Green" +msgstr "اخضر" + +#: chat.php:3935 +msgid "Hot pink" +msgstr "الوردي" + +#: chat.php:3936 +msgid "Indigo" +msgstr "نيلي" + +#: chat.php:3937 +msgid "Light blue" +msgstr "أزرق شاحب" + +#: chat.php:3938 +msgid "Light green" +msgstr "أخضر شاحب" + +#: chat.php:3939 +msgid "Lime green" +msgstr "ليمون اخضر" + +#: chat.php:3940 +msgid "Magenta" +msgstr "أرجواني" + +#: chat.php:3941 +msgid "Olive" +msgstr "زيتي" + +#: chat.php:3942 +msgid "Orange" +msgstr "برتقالي" + +#: chat.php:3943 +msgid "Orange red" +msgstr "أحمر برتقالي" + +#: chat.php:3944 +msgid "Purple" +msgstr "خبازي" + +#: chat.php:3945 +msgid "Red" +msgstr "أحمر" + +#: chat.php:3946 +msgid "Royal blue" +msgstr "ازرق ملكي" + +#: chat.php:3947 +msgid "Sea green" +msgstr "أخضر المحيط" + +#: chat.php:3948 +msgid "Sienna" +msgstr "سيينا" + +#: chat.php:3949 +msgid "Silver" +msgstr "فضي" + +#: chat.php:3950 +msgid "Tan" +msgstr "" + +#: chat.php:3951 +msgid "Teal" +msgstr "الأزرق الداكن والأخضر" + +#: chat.php:3952 +msgid "Violet" +msgstr "نفسجي" + +#: chat.php:3953 +msgid "White" +msgstr "ابيض" + +#: chat.php:3954 +msgid "Yellow" +msgstr "الأصفر" + +#: chat.php:3955 +msgid "Yellow green" +msgstr "اصفر مائل للخضرة" + +#: chat.php:4077 +msgid "Successfully destroyed chat" +msgstr "تم حذف الدردشة" + +#: chat.php:4086 +msgid "" +"Database tables already exist! To continue, you have to delete these tables " +"manually first." +msgstr "" +"جداول قاعدة البيانات موجودة بالفعل! للمتابعة ، يجب عليك إسقاط الجداول يدويًا." + +#: chat.php:4089 +msgid "A Superadmin already exists!" +msgstr "مشرف متميز موجود بالفعل!" + +#: chat.php:4182 chat.php:4369 +#, php-format +msgid "%s - " +msgstr "%s - " + +#: chat.php:4183 chat.php:4369 +#, php-format +msgid "[M] %s - " +msgstr "[عضو] %s - " + +#: chat.php:4184 chat.php:4369 +#, php-format +msgid "[Staff] %s - " +msgstr "[مدير] %s - " + +#: chat.php:4185 chat.php:4369 +#, php-format +msgid "[Admin] %s - " +msgstr "[ادمن] %s - " + +#: chat.php:4186 chat.php:4369 +#, php-format +msgid "[%1$s to %2$s] - " +msgstr "" + +#: chat.php:4187 +#, php-format +msgid "%s entered the chat." +msgstr "وصل%s إلى المحادثة." + +#: chat.php:4188 +#, php-format +msgid "%s left the chat." +msgstr "خرج من الدردشة %s." + +#: chat.php:4189 +#, php-format +msgid "%s is now a registered member." +msgstr "الان عضو مسجل %s." + +#: chat.php:4190 +#, php-format +msgid "%s is now a registered applicant." +msgstr "الان مرشح مسجل %s." + +#: chat.php:4191 +#, php-format +msgid "%s has been kicked." +msgstr "من الدردشة %s طرد." + +#: chat.php:4192 +#, php-format +msgid "%s have been kicked." +msgstr "من الدردشة %s طرد." + +#: chat.php:4193 +msgid "All guests have been kicked." +msgstr "تم طرد جميع الدردشات." + +#: chat.php:4194 +#, php-format +msgid "%s has been cleaned." +msgstr "%s لقد شطب." + +#: chat.php:4202 chat.php:4396 +msgid "Temporarily disabled" +msgstr "" + +#: chat.php:4218 chat.php:4594 +msgid "A chat community" +msgstr "" + +#: chat.php:4256 +msgid "Successfully registered!" +msgstr "سجلت بنجاح!" + +#: chat.php:4522 chat.php:4721 chat.php:4728 +msgid "No connection to database!" +msgstr "لا يوجد اتصال بقاعدة البيانات!" + +#: chat.php:4531 +msgid "" +"Note: Default CSS is now hardcoded and can be removed from the CSS setting" +msgstr "" + +#: chat.php:4611 +#, 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 +#, 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 +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 "" diff --git a/locale/bg_BG/LC_MESSAGES/le-chat-php.mo b/locale/bg_BG/LC_MESSAGES/le-chat-php.mo new file mode 100644 index 0000000..7e315dc Binary files /dev/null and b/locale/bg_BG/LC_MESSAGES/le-chat-php.mo differ diff --git a/locale/bg_BG/LC_MESSAGES/le-chat-php.po b/locale/bg_BG/LC_MESSAGES/le-chat-php.po new file mode 100644 index 0000000..658d356 --- /dev/null +++ b/locale/bg_BG/LC_MESSAGES/le-chat-php.po @@ -0,0 +1,1645 @@ +# 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: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-01-18 21:32+0100\n" +"PO-Revision-Date: 2023-01-18 21:35+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: bg_BG\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.1.1\n" + +#: chat.php:261 +msgid "Enable applicants" +msgstr "Позволи кандидати" + +#: chat.php:262 +msgid "Embed images" +msgstr "Вграждане на изображения" + +#: chat.php:263 chat.php:2202 +msgid "Show Timestamps" +msgstr "Покажи времеви маркери" + +#: chat.php:264 +msgid "Show session-IP" +msgstr "Покажи IP-то на сесията" + +#: chat.php:265 +msgid "Members can kick, if no moderator is present" +msgstr "Членовете могат да гонят, ако няма модератор в стаята" + +#: chat.php:266 +msgid "Members can always kick" +msgstr "Членовете могат вся́кога да гонят" + +#: chat.php:267 +msgid "Force redirection" +msgstr "Пренасочване" + +#: chat.php:268 +msgid "Incognito mode" +msgstr "Режим Инкогнито" + +#: chat.php:269 +msgid "Send mail on new public message" +msgstr "Изпрати мейл при ново публично съобщение" + +#: chat.php:270 +msgid "Fallback to waiting room, if no moderator is present to approve guests" +msgstr "Използвай чакалня, ако няма модератор да одобрява гостите" + +#: chat.php:271 +msgid "Disable private messages" +msgstr "Забрани личните съобщения" + +#: chat.php:272 chat.php:2223 +msgid "Enable offline inbox" +msgstr "Позволи офлайн пощенска кутия" + +#: chat.php:273 +msgid "Show a greeting message before showing the messages" +msgstr "Покажи приветствено съобщение преди да покажеш самото съобщение" + +#: chat.php:274 chat.php:2204 +msgid "Sort messages from top to bottom" +msgstr "Подреди съобщенията от горе надолу" + +#: chat.php:275 chat.php:2205 +msgid "Hide list of chatters" +msgstr "Скрий списъка с потребители" + +#: chat.php:276 chat.php:1780 chat.php:1794 +msgid "Personal notes" +msgstr "Лични бележки" + +#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110 +msgid "Public notes" +msgstr "Обще́ствен Бележки" + +#: chat.php:278 +msgid "Apply kick filter on moderators" +msgstr "Прилагай филтъра за изгонване и за модераторите" + +#: chat.php:279 +msgid "Show who kicks people or purges all messages." +msgstr "Показване кой изхвърля хора или пречиства всички съобщения." + +#: chat.php:280 +msgid "Hide reload post box button" +msgstr "" + +#: chat.php:281 +msgid "Hide reload messages button" +msgstr "" + +#: chat.php:282 +msgid "Hide profile button" +msgstr "" + +#: chat.php:283 +msgid "Hide admin button" +msgstr "" + +#: chat.php:284 +msgid "Hide notes button" +msgstr "" + +#: chat.php:285 +msgid "Hide clone button" +msgstr "" + +#: chat.php:286 +msgid "Hide rearrange button" +msgstr "" + +#: chat.php:287 +msgid "Hide help button" +msgstr "" + +#: chat.php:288 +msgid "Apply postbox delete button globally" +msgstr "" + +#: chat.php:289 +msgid "Allow enhancing functionality with JavaScript" +msgstr "" + +#: chat.php:292 chat.php:2170 +msgid "Background colour" +msgstr "Цвят на фона" + +#: chat.php:293 chat.php:2167 +msgid "Font colour" +msgstr "Цвят на шрифта" + +#: chat.php:296 +msgid "Entrance" +msgstr "Влизане" + +#: chat.php:297 +msgid "Leaving" +msgstr "Напускане" + +#: chat.php:298 +msgid "Member registered" +msgstr "Членът е регистриран" + +#: chat.php:299 +msgid "Applicant registered" +msgstr "Кандидатът е регистриран" + +#: chat.php:300 +msgid "Kicked" +msgstr "Изгонен" + +#: chat.php:301 +msgid "Multiple kicked" +msgstr "Множество изгонени" + +#: chat.php:302 +msgid "All kicked" +msgstr "Всички са изгонени" + +#: chat.php:303 +msgid "Room cleaned" +msgstr "Стаята беше почистена" + +#: chat.php:304 +msgid "Message to all" +msgstr "Съобщение до всички" + +#: chat.php:305 +msgid "Message to members only" +msgstr "Съобщение само до членовете" + +#: chat.php:306 +msgid "Message to staff only" +msgstr "Съобщение само до екипа" + +#: chat.php:307 +msgid "Message to admins only" +msgstr "Съобщение само до администраторите" + +#: chat.php:308 +msgid "Private message" +msgstr "Лично съобщение" + +#: chat.php:309 +msgid "Attachement" +msgstr "Прикачен файл" + +#: chat.php:312 +msgid "Member timeout (minutes)" +msgstr "Изтичане на сесията на членове (минути)" + +#: chat.php:313 +msgid "Guest timeout (minutes)" +msgstr "Изтичане на сесията за гости (минути)" + +#: chat.php:314 +msgid "Kick penalty (minutes)" +msgstr "Наказание с изгонване (минути)" + +#: chat.php:315 +msgid "Waiting room time (seconds)" +msgstr "Време за изчакване в чакалнята (секунди)" + +#: chat.php:316 +msgid "Captcha timeout (seconds)" +msgstr "Валидност на Captcha-та (секунди)" + +#: chat.php:317 +msgid "Message timeout (minutes)" +msgstr "Съобщенията изтичат след (минути)" + +#: chat.php:318 +msgid "Message limit (public)" +msgstr "Лимит на съобщенията (публичен)" + +#: chat.php:319 +msgid "Maximal message length" +msgstr "Максимална дължина на съобщението" + +#: chat.php:320 +msgid "Maximal nickname length" +msgstr "Максимална дължина на ник" + +#: chat.php:321 +msgid "Minimal password length" +msgstr "Минимална дължина на паролата" + +#: chat.php:322 +msgid "Default message reload time (seconds)" +msgstr "Интервал на опресняване на съобщенията по подразбиране (секунди)" + +#: chat.php:323 +msgid "Number of notes revisions to keep" +msgstr "Брой версии на бележки, които да се пазят" + +#: chat.php:324 +msgid "Maximum upload size in KB" +msgstr "Максимален размер на файл в KB" + +#: chat.php:325 +msgid "Enable file uploads" +msgstr "Позволи качването на файлове" + +#: chat.php:326 +msgid "Lowest refresh rate" +msgstr "" + +#: chat.php:327 +msgid "Highest refresh rate" +msgstr "" + +#: chat.php:330 +msgid "Rules (html)" +msgstr "Правила (html)" + +#: chat.php:331 +msgid "CSS Style" +msgstr "CSS стил" + +#: chat.php:332 +msgid "Chat disabled message (html)" +msgstr "Съобщение относно забранения чат (html)" + +#: chat.php:335 +msgid "" +"Date " +"formating" +msgstr "" +"Формат " +"на дата" + +#: chat.php:336 +msgid "Characters used in Captcha" +msgstr "Символи, използвани за Captcha-та" + +#: chat.php:337 +msgid "Custom redirection script" +msgstr "Мой скрипт за пренасочване" + +#: chat.php:338 +msgid "Chat name" +msgstr "Име на чата" + +#: chat.php:339 +msgid "Send mail using this address" +msgstr "Изпрати мейл, използвайки този адрес" + +#: chat.php:340 +msgid "Send mail to this address" +msgstr "Изпрати мейл до този адрес" + +#: chat.php:341 +msgid "Nickname regex" +msgstr "Регулярен израз за никове" + +#: chat.php:342 +msgid "Password regex" +msgstr "Регулярен израз за пароли" + +#: chat.php:343 +msgid "Link to external CSS file (on your own server)" +msgstr "Линк към външен CSS файл" + +#: chat.php:344 +msgid "Meta description (best 50 - 160 characters for SEO)" +msgstr "" + +#: chat.php:345 +msgid "Prepend this text to system messages" +msgstr "Този текст предшества съобщенията от системата" + +#: chat.php:348 chat.php:728 chat.php:1225 +msgid "Change Guestaccess" +msgstr "Промени достъпа за гост" + +#: chat.php:349 +msgid "Enable global Password" +msgstr "" + +#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433 +msgid "Global Password:" +msgstr "Глобална парола:" + +#: chat.php:351 chat.php:819 +msgid "Captcha" +msgstr "Captcha" + +#: chat.php:352 chat.php:775 chat.php:835 +msgid "Only for guests" +msgstr "Само за гости" + +#: chat.php:353 chat.php:1220 +msgid "Topic" +msgstr "Тема" + +#: chat.php:354 chat.php:781 +msgid "Let guests register themselves" +msgstr "Разреши на гостите да се регистрират сами" + +#: chat.php:355 chat.php:862 +msgid "Default time zone" +msgstr "Часова зона по подрзбиране" + +#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259 +msgid "Initial Setup" +msgstr "Първоначална инсталация" + +#: chat.php:588 +#, php-format +msgid "Redirecting to: %s" +msgstr "Пренасочване към: %s" + +#: chat.php:595 +#, php-format +msgid "" +"Dangerous non-http link requested, copy paste this link if you are really " +"sure: %s" +msgstr "" + +#: chat.php:597 +#, php-format +msgid "Non-http link requested: %s" +msgstr "Заявен е не-http линк: %s" + +#: chat.php:599 +#, php-format +msgid "If it's not working, try this one: %s" +msgstr "Ако не работи, опитай това: %s" + +#: chat.php:609 +msgid "Access denied" +msgstr "Достъпът е забранен" + +#: chat.php:609 +#, 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 +msgid "Logout" +msgstr "Изкарай" + +#: chat.php:636 +msgid "Copy:" +msgstr "Препиши:" + +#: chat.php:724 +msgid "Chat Setup" +msgstr "Инсталация на чата" + +#: chat.php:734 chat.php:1233 +msgid "Allow" +msgstr "Позволи" + +#: chat.php:739 chat.php:1238 +msgid "Allow with waitingroom" +msgstr "Позволи с чакалня" + +#: chat.php:744 chat.php:1243 +msgid "Require moderator approval" +msgstr "Изисквай одобрение от модератор" + +#: chat.php:749 chat.php:1248 +msgid "Only members" +msgstr "Само членове" + +#: chat.php:754 chat.php:1251 +msgid "Disable chat" +msgstr "Забрани чата" + +#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229 +msgid "Disabled" +msgstr "Забранено" + +#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219 +msgid "Enabled" +msgstr "Разрешено" + +#: chat.php:792 +msgid "As applicant" +msgstr "Като кандидат" + +#: chat.php:797 +msgid "As member" +msgstr "Като член" + +#: chat.php:800 +msgid "System messages" +msgstr "Системни съобщения" + +#: chat.php:822 chat.php:1053 +#, php-format +msgid "" +"The %s extension of PHP is required for this feature. Please install it " +"first." +msgstr "" +"Добавката %s за PHP е необходима за тази функционалност. Моля, първо я " +"инсталирайте." + +#: chat.php:847 +msgid "Simple" +msgstr "Просто" + +#: chat.php:852 +msgid "Moderate" +msgstr "Умерено" + +#: chat.php:857 +msgid "Extreme" +msgstr "Екстремно" + +#: chat.php:906 chat.php:1548 chat.php:1610 +msgid "Apply" +msgstr "Приложи" + +#: chat.php:910 chat.php:1050 +msgid "Backup and restore" +msgstr "Бекъп и възстановяване" + +#: chat.php:912 +msgid "Destroy chat" +msgstr "Унищожи чата" + +#: chat.php:1057 chat.php:1066 +msgid "Settings" +msgstr "Настройки" + +#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575 +#: chat.php:1622 +msgid "Filter" +msgstr "Филтър" + +#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538 +msgid "Members" +msgstr "Членове" + +#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322 +msgid "Notes" +msgstr "Бележки" + +#: chat.php:1061 +msgid "Backup" +msgstr "Направи бекъп" + +#: chat.php:1070 +msgid "Restore" +msgstr "Възстанови" + +#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260 +msgid "Go to the Setup-Page" +msgstr "Отиди към страницата за инсталация" + +#: chat.php:1082 chat.php:1091 chat.php:1949 +msgid "Are you sure?" +msgstr "Сигурен ли си?" + +#: chat.php:1083 chat.php:1092 chat.php:1956 +msgid "Yes" +msgstr "Да" + +#: chat.php:1084 chat.php:1093 chat.php:1963 +msgid "No" +msgstr "Не" + +#: chat.php:1101 chat.php:4259 +msgid "Superadmin Login" +msgstr "" + +#: chat.php:1102 +msgid "Superadmin Nickname:" +msgstr "Потребителско име на супер-администратора:" + +#: chat.php:1103 +msgid "Superadmin Password:" +msgstr "Парола на супер-администратора:" + +#: chat.php:1104 +msgid "Confirm Password:" +msgstr "Потвърди паролата:" + +#: chat.php:1105 +msgid "Initialise Chat" +msgstr "Инициализация на чата" + +#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439 +msgid "Change language:" +msgstr "Смени езика:" + +#: chat.php:1117 +msgid "Database successfully updated!" +msgstr "Базата данни бе успешно обновена!" + +#: chat.php:1125 chat.php:1326 chat.php:2407 +msgid "Nickname:" +msgstr "Ник:" + +#: chat.php:1126 chat.php:1327 chat.php:2408 +msgid "Password:" +msgstr "Парола:" + +#: chat.php:1128 +msgid "Login" +msgstr "Вход" + +#: chat.php:1129 +msgid "Forgot login?" +msgstr "" + +#: chat.php:1142 chat.php:1306 +msgid "Reset password" +msgstr "Нулирай парола" + +#: chat.php:1150 +#, php-format +msgid "" +"Successfully reset password for username %s. Please remove the password " +"reset define from the script again." +msgstr "" + +#: 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 "" + +#: 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 +msgid "(choose)" +msgstr "(избери)" + +#: chat.php:1170 +msgid "All guests" +msgstr "Всички гости" + +#: chat.php:1182 +msgid "Administrative functions" +msgstr "Административни функции" + +#: chat.php:1188 +msgid "Clean messages" +msgstr "Изчисти съобщенията" + +#: chat.php:1191 +msgid "Whole room" +msgstr "Цялата стая" + +#: chat.php:1192 +msgid "Selection" +msgstr "Избор" + +#: chat.php:1193 +msgid "Following nickname:" +msgstr "Следния ник:" + +#: chat.php:1200 +msgid "Clean" +msgstr "Изчисти" + +#: chat.php:1202 +#, php-format +msgid "Kick Chatter (%d minutes)" +msgstr "Изгони потребител (%d минути)" + +#: chat.php:1204 +msgid "Kickmessage:" +msgstr "Причина:" + +#: chat.php:1205 +msgid "Purge messages" +msgstr "Заличи съобщенията" + +#: chat.php:1206 chat.php:1388 chat.php:1546 chat.php:1580 chat.php:1591 +#: chat.php:2042 +msgid "Kick" +msgstr "Изгони" + +#: chat.php:1208 +msgid "Logout inactive Chatter" +msgstr "Изкарай неактивен потребител от чата" + +#: chat.php:1212 +msgid "View active sessions" +msgstr "Виж активните сесии" + +#: chat.php:1212 chat.php:1603 +msgid "Linkfilter" +msgstr "Филтър за линкове" + +#: chat.php:1217 +msgid "View" +msgstr "Виж" + +#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582 +#: chat.php:1626 +msgid "Change" +msgstr "Промени" + +#: chat.php:1256 +msgid "Register applicant" +msgstr "Регистрирай кандидат" + +#: chat.php:1264 chat.php:1322 chat.php:1328 +msgid "Register" +msgstr "Регистрирай" + +#: chat.php:1294 +msgid "Delete from database" +msgstr "Изтрий от базата данни" + +#: chat.php:1294 +msgid "Deny access (!)" +msgstr "Забрани достъп (!)" + +#: chat.php:1296 +msgid "Set to applicant (SG)" +msgstr "Направи кандидат (SG)" + +#: chat.php:1298 +msgid "Set to regular member" +msgstr "Направи обикновен член" + +#: chat.php:1299 +msgid "Set to moderator (M)" +msgstr "Направи модератор (M)" + +#: chat.php:1300 +msgid "Set to supermod (SM)" +msgstr "Направи супер-модератор (SM)" + +#: chat.php:1302 +msgid "Set to admin (A)" +msgstr "Направи администратор (A)" + +#: chat.php:1314 +msgid "Register Guest" +msgstr "Регистрирай гост" + +#: chat.php:1324 +msgid "Register new Member" +msgstr "Регистрирай нов член" + +#: chat.php:1332 chat.php:1408 chat.php:1595 chat.php:1636 chat.php:1710 +#: chat.php:1924 +msgid "Reload" +msgstr "Презареди" + +#: chat.php:1345 +msgid "Active Sessions" +msgstr "Активни сесии" + +#: chat.php:1346 chat.php:1873 +msgid "Nickname" +msgstr "Ник" + +#: chat.php:1346 +msgid "Timeout in" +msgstr "Изтичане след" + +#: chat.php:1346 chat.php:1873 +msgid "User-Agent" +msgstr "User-Agent" + +#: chat.php:1350 +msgid "IP-Address" +msgstr "IP-адрес" + +#: chat.php:1351 +msgid "Actions" +msgstr "Действия" + +#: chat.php:1393 +msgid "Unban" +msgstr "Премахни бан" + +#: chat.php:1416 +msgid "Incorrect regular expression!" +msgstr "Невалиден регулярен израз!" + +#: chat.php:1416 chat.php:1424 +#, 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." +msgstr "" +"Съвпадението ти беше прекалено дълго. Може да използваш най-много 255 " +"символа. Опитай се да го разделиш." + +#: chat.php:1541 chat.php:1606 +msgid "Filter ID:" +msgstr "Филтър ID:" + +#: chat.php:1542 chat.php:1607 +msgid "Match" +msgstr "Съвпадение" + +#: chat.php:1543 chat.php:1608 +msgid "Replace" +msgstr "Замени" + +#: chat.php:1544 chat.php:1578 chat.php:1589 +msgid "Allow in PM" +msgstr "Разреши в ЛС" + +#: chat.php:1545 chat.php:1579 chat.php:1590 chat.php:1609 chat.php:1625 +#: chat.php:1633 +msgid "Regex" +msgstr "Регулярен израз" + +#: chat.php:1547 chat.php:1581 chat.php:1592 +msgid "Case sensitive" +msgstr "Чувствително към малки и големи букви" + +#: chat.php:1586 chat.php:1630 +msgid "New filter:" +msgstr "Нов филтър:" + +#: chat.php:1593 chat.php:1634 +msgid "Add" +msgstr "Добави" + +#: chat.php:1691 +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 +msgid "Back to the login page." +msgstr "Обратно към страницата за вход." + +#: chat.php:1709 +msgid "Bottom" +msgstr "Най-долу" + +#: chat.php:1710 +msgid "Manual refresh required" +msgstr "Необходимо ръчно опресняване" + +#: chat.php:1726 +msgid "Top" +msgstr "Горе" + +#: chat.php:1734 chat.php:1940 chat.php:1942 +msgid "Delete selected messages" +msgstr "Изтрий избраните съобщения" + +#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281 +msgid "Back to the chat." +msgstr "Обратно към чата." + +#: chat.php:1774 chat.php:1791 +msgid "Admin notes" +msgstr "Администраторски бележкиАдминистраторски бележки" + +#: chat.php:1777 chat.php:1788 +msgid "Staff notes" +msgstr "Бележки на екипа" + +#: chat.php:1811 +msgid "Notes saved!" +msgstr "Бележките са запазени!" + +#: chat.php:1835 chat.php:2122 +#, php-format +msgid "Last edited by %1$s at %2$s" +msgstr "Последна редакция от %1$s на %2$s" + +#: chat.php:1848 +msgid "Save notes" +msgstr "Запази бележките" + +#: chat.php:1850 +msgid "Revisions:" +msgstr "Версии:" + +#: chat.php:1853 +msgid "Older" +msgstr "По-стари" + +#: chat.php:1857 +msgid "Newer" +msgstr "По-нови" + +#: chat.php:1868 chat.php:1914 +msgid "Waiting room" +msgstr "Чакалня" + +#: chat.php:1880 +msgid "Allow checked" +msgstr "Допусни избраните" + +#: chat.php:1881 +msgid "Allow all" +msgstr "Допусни всички" + +#: chat.php:1882 +msgid "Deny checked" +msgstr "Не допускай избраните" + +#: chat.php:1883 +msgid "Deny all" +msgstr "Не допускай никого" + +#: chat.php:1883 +msgid "Send message to denied:" +msgstr "Изпрати съобщение до недопуснатите:" + +#: chat.php:1884 +msgid "Submit" +msgstr "Изпрати" + +#: chat.php:1886 +msgid "No more entry requests to approve." +msgstr "Няма повече заявки за присъединяване, чакащи одобрение." + +#: chat.php:1916 +#, 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 +#, 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 +#, 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 +msgid "Exit Chat" +msgstr "Изход от чата" + +#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430 +msgid "Rules" +msgstr "Правила" + +#: chat.php:1985 +msgid "Send to" +msgstr "Изпрати до" + +#: chat.php:1990 +msgid "All chatters" +msgstr "Всички в чата" + +#: chat.php:1996 +msgid "Members only" +msgstr "Само до членовете" + +#: chat.php:2003 +msgid "Staff only" +msgstr "Само до екипа" + +#: chat.php:2010 +msgid "Admin only" +msgstr "Само до админ" + +#: chat.php:2019 +msgid "(offline)" +msgstr "(офлайн)" + +#: chat.php:2043 +msgid "Also purge messages" +msgstr "Също заличи съобщенията" + +#: chat.php:2050 +msgid "Delete last message" +msgstr "Изтрий последното съобщение" + +#: chat.php:2055 +msgid "Delete all messages" +msgstr "Изтрий всички съобщения" + +#: chat.php:2057 +msgid "Switch to single-line" +msgstr "Превключи на многоредово поле" + +#: chat.php:2059 +msgid "Switch to multi-line" +msgstr "Превключи на едноредово поле" + +#: chat.php:2070 +#, php-format +msgid "Welcome %s!" +msgstr "Добре дошъл, %s!" + +#: chat.php:2071 +#, 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 секунди, ще е необходимо да позволите " +"автоматичното презареждане (meta презареждане) в своя браузър. Също се " +"уверете, че нямате уеб филтър, локален филтър или добавка за браузъра, която " +"да блокира автоматичното презареждане! Такива са например \"Polipo\", " +"\"NoScript\", и други.
Възможно решение е (също в случай на грешки при " +"презареждане на ниво сървър/прокси) да използвате бутона за ръчно " +"презареждане на вашия браузър." + +#: chat.php:2087 +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." +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 "" +"Ако искаш да вградиш изображение в поста си, просто използвай тага [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 "" +"Членове: Вие ще имате някои допълнителни опции. Може да променяте цвета на " +"фона, да променяте паролата си по всяко време, и разбира се, да изтриете " +"акаунта си." + +#: 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 "" +"Модератори: Забележете админ бутона най-долу. Натискането му ще изведе " +"страница, през която ще можете да почистите стаята, да гоните потребители, " +"да преглеждате всички активни сесии и да забраните напълно достъпа на гости, " +"ако е необходимо." + +#: chat.php:2097 +msgid "" +"Admins: You'll be furthermore able to register guests, edit members and " +"register new nicknames." +msgstr "" +"Администратори: Вие ще можете допълнително да регистрирате гости, да " +"редактирате профили на членове и да регистрирате нови никове." + +#: chat.php:2135 +msgid "Your Profile" +msgstr "Твоят профил" + +#: chat.php:2144 +msgid "Don't ignore anymore" +msgstr "Спри да игнорираш" + +#: chat.php:2152 +msgid "Ignore" +msgstr "Игнорирай" + +#: chat.php:2163 +#, php-format +msgid "Refresh rate (%1$d-%2$d seconds)" +msgstr "Честота на опресняване (%1$d-%2$d секунди)" + +#: chat.php:2167 chat.php:2170 +msgid "View examples" +msgstr "Виж примери" + +#: chat.php:2174 +msgid "Fontface" +msgstr "Облик на шрифта" + +#: chat.php:2175 +msgid "Room Default" +msgstr "По подразбиране за стаята" + +#: chat.php:2188 +msgid "Bold" +msgstr "Получер" + +#: chat.php:2192 +msgid "Italic" +msgstr "Курсив" + +#: chat.php:2196 +msgid "Small" +msgstr "Малък" + +#: chat.php:2199 +msgid "Example for your chosen font" +msgstr "Пример за избрания шрифт" + +#: chat.php:2203 +msgid "Autoscroll (for old browsers or top-to-bottom sort)." +msgstr "" +"Автоматично скролиране (за старите браузъри или сортиране от горе надолу)." + +#: chat.php:2234 +msgid "For everyone" +msgstr "За всички" + +#: chat.php:2239 +msgid "For members only" +msgstr "Само за членове" + +#: chat.php:2244 +msgid "For staff only" +msgstr "Само за екипа" + +#: chat.php:2248 +msgid "Time zone" +msgstr "Часова зона" + +#: chat.php:2261 +msgid "Change Password" +msgstr "Промени парола" + +#: chat.php:2263 +msgid "Old password:" +msgstr "Стара парола:" + +#: chat.php:2264 +msgid "New password:" +msgstr "Нова парола:" + +#: chat.php:2265 +msgid "Confirm new password:" +msgstr "Потвърди новата парола:" + +#: chat.php:2268 +msgid "Change Nickname" +msgstr "Промени ник" + +#: chat.php:2269 +msgid "New nickname:" +msgstr "Нов ник:" + +#: chat.php:2273 +msgid "Save changes" +msgstr "Запази промените" + +#: chat.php:2275 +msgid "Delete account" +msgstr "Изтрий акаунт" + +#: chat.php:2301 +msgid "Reload Post Box" +msgstr "Презареди пощенската кутия" + +#: chat.php:2304 +msgid "Reload Messages" +msgstr "Презареди съобщенията" + +#: chat.php:2307 +msgid "Profile" +msgstr "Профил" + +#: chat.php:2311 chat.php:2528 +msgid "Admin" +msgstr "Администрация" + +#: chat.php:2318 +msgid "View public notes" +msgstr "Чета́ обще́ствен Бележки" + +#: chat.php:2325 +msgid "Clone" +msgstr "Клонирай" + +#: chat.php:2334 +msgid "Rearrange" +msgstr "Преподредба" + +#: chat.php:2337 +msgid "Rules & Help" +msgstr "Правила & Помощ" + +#: chat.php:2358 chat.php:2362 +msgid "File not found!" +msgstr "Файлът не е намерен!" + +#: chat.php:2370 +#, php-format +msgid "Bye %s, visit again soon!" +msgstr "Чао, драги %s, скоро те очакваме отново!" + +#: chat.php:2377 +msgid "Colourtable" +msgstr "Таблица с цветове" + +#: chat.php:2388 +msgid "Back to your Profile" +msgstr "Обратно в твоя профил" + +#: chat.php:2412 +msgid "Repeat password
to register" +msgstr "Повтори паролата
за да се регистрираш" + +#: chat.php:2412 +msgid "(optional)" +msgstr "(опционално)" + +#: chat.php:2417 +msgid "Guests, choose a colour:" +msgstr "Гости, изберете цвят:" + +#: chat.php:2417 +msgid "Random Colour" +msgstr "Произволен цвят" + +#: chat.php:2421 chat.php:2435 chat.php:2569 +msgid "Sorry, currently members only!" +msgstr "Съжаляваме, но в момента се допускат само членове!" + +#: chat.php:2423 chat.php:2437 +msgid "Enter Chat" +msgstr "Влез в чата" + +#: chat.php:2457 +#, php-format +msgid "Error: %s" +msgstr "Грешка: %s" + +#: chat.php:2467 +msgid "Fatal error" +msgstr "Фатална грешка" + +#: chat.php:2470 +#, php-format +msgid "Fatal error: %s" +msgstr "Фатална грешка: %s" + +#: chat.php:2482 chat.php:2693 +msgid "Failed login attempt(s)" +msgstr "Неуспешен опит за влизане" + +#: chat.php:2489 +#, php-format +msgid "Read %d messages in your inbox" +msgstr "Прочети %d съобщения в пощенската ти кутия" + +#: chat.php:2498 +#, php-format +msgid "%d new guests to approve" +msgstr "%d нови гости чакат одобрение" + +#: chat.php:2530 +msgid "Admin:" +msgstr "Администрация:" + +#: chat.php:2533 +msgid "Staff" +msgstr "Екипа" + +#: chat.php:2535 +msgid "Staff:" +msgstr "Екипа:" + +#: chat.php:2540 +msgid "Members:" +msgstr "Членове:" + +#: chat.php:2542 +msgid "Guests" +msgstr "Гости" + +#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092 +#, 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 +#, 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 +msgid "Wrong global Password!" +msgstr "Грешна глобална парола!" + +#: chat.php:2591 chat.php:2612 +msgid "Wrong Captcha" +msgstr "Грешна Captcha" + +#: chat.php:2596 chat.php:2604 +msgid "Captcha already used or timed out." +msgstr "Captcha-та е вече използвана или е изтекла." + +#: chat.php:2652 +msgid "A user with this nickname is already logged in." +msgstr "Потребителят с това потребителско име е вече логнат." + +#: chat.php:2652 chat.php:2933 chat.php:3176 +msgid "Wrong Password!" +msgstr "Грешна парола!" + +#: chat.php:2696 +msgid "Dismiss" +msgstr "Призна" + +#: chat.php:2747 chat.php:3171 chat.php:4096 +msgid "Password confirmation does not match!" +msgstr "Полето за потвърждение на паролата не съвпада!" + +#: chat.php:2859 +msgid "Invalid/expired session" +msgstr "Невалидна/изтекла сесия" + +#: chat.php:2875 chat.php:3412 +msgid "You have been kicked!" +msgstr "Ти беше изгонен от чата!" + +#: chat.php:2885 +#, php-format +msgid "Currently %d chatter(s) in room:" +msgstr "В стаята има %d потребители:" + +#: chat.php:2933 +msgid "This nickname is a registered member." +msgstr "Този ник е на регистриран член." + +#: chat.php:2960 chat.php:3001 +#, php-format +msgid "%s is already registered." +msgstr "%s е вече регистриран." + +#: chat.php:2969 chat.php:2990 +#, php-format +msgid "Can't register %s" +msgstr "Не мога да регистрирам %s" + +#: chat.php:2978 chat.php:3023 +#, php-format +msgid "%s successfully registered." +msgstr "%s е успешно регистриран." + +#: chat.php:3031 chat.php:3036 +#, php-format +msgid "Can't change status of %s" +msgstr "Не мога да променя статуса на %s" + +#: chat.php:3047 +#, php-format +msgid "%s successfully deleted from database." +msgstr "%s е успешно изтрит от базата данни." + +#: chat.php:3056 +#, php-format +msgid "Status of %s successfully changed." +msgstr "Статусът за %s бе успешно променен." + +#: chat.php:3073 +#, php-format +msgid "Successfully reset password for %s" +msgstr "" + +#: chat.php:3075 +#, php-format +msgid "Can't reset password for %s" +msgstr "" + +#: chat.php:3190 +msgid "Your profile has successfully been saved." +msgstr "Профилът ти беше успешно съхранен." + +#: chat.php:3202 +msgid "Nickname is already taken" +msgstr "Този ник се използва от друг" + +#: chat.php:3714 +msgid "system message" +msgstr "съобщение от системата" + +#: chat.php:3921 +msgid "Beige" +msgstr "Бежово" + +#: chat.php:3922 +msgid "Black" +msgstr "Черно" + +#: chat.php:3923 +msgid "Blue" +msgstr "Синьо" + +#: chat.php:3924 +msgid "Blue violet" +msgstr "Виолетово-синьо" + +#: chat.php:3925 +msgid "Brown" +msgstr "Кафяво" + +#: chat.php:3926 +msgid "Cyan" +msgstr "Зелено-синьо" + +#: chat.php:3927 +msgid "Dark blue" +msgstr "Тъмносиньо" + +#: chat.php:3928 +msgid "Dark green" +msgstr "Тъмнозелено" + +#: chat.php:3929 +msgid "Dark red" +msgstr "Тъмночервено" + +#: chat.php:3930 +msgid "Dark violet" +msgstr "Тъмновиолетово" + +#: chat.php:3931 +msgid "Sky blue" +msgstr "Небесно синьо" + +#: chat.php:3932 +msgid "Gold" +msgstr "Златно" + +#: chat.php:3933 +msgid "Grey" +msgstr "Сиво" + +#: chat.php:3934 +msgid "Green" +msgstr "Зелено" + +#: chat.php:3935 +msgid "Hot pink" +msgstr "Топло розово" + +#: chat.php:3936 +msgid "Indigo" +msgstr "Индиго" + +#: chat.php:3937 +msgid "Light blue" +msgstr "Светлосиньо" + +#: chat.php:3938 +msgid "Light green" +msgstr "Светлозелено" + +#: chat.php:3939 +msgid "Lime green" +msgstr "Липовозелено" + +#: chat.php:3940 +msgid "Magenta" +msgstr "Лилаво-червено (Маджента)" + +#: chat.php:3941 +msgid "Olive" +msgstr "Тъмно жълто-зелено" + +#: chat.php:3942 +msgid "Orange" +msgstr "Оранжево" + +#: chat.php:3943 +msgid "Orange red" +msgstr "Оранжево-червено" + +#: chat.php:3944 +msgid "Purple" +msgstr "Лилаво" + +#: chat.php:3945 +msgid "Red" +msgstr "Червено" + +#: chat.php:3946 +msgid "Royal blue" +msgstr "Кралско синьо" + +#: chat.php:3947 +msgid "Sea green" +msgstr "Морско зелено" + +#: chat.php:3948 +msgid "Sienna" +msgstr "Златисто-жълто (Охра)" + +#: chat.php:3949 +msgid "Silver" +msgstr "Сребърно" + +#: chat.php:3950 +msgid "Tan" +msgstr "Жълто-кафяво" + +#: chat.php:3951 +msgid "Teal" +msgstr "Синьо-зелено" + +#: chat.php:3952 +msgid "Violet" +msgstr "Виолетово" + +#: chat.php:3953 +msgid "White" +msgstr "Бяло" + +#: chat.php:3954 +msgid "Yellow" +msgstr "Жълто" + +#: chat.php:3955 +msgid "Yellow green" +msgstr "Жълто-зелено" + +#: chat.php:4077 +msgid "Successfully destroyed chat" +msgstr "Успешно унищожи чата" + +#: chat.php:4086 +msgid "" +"Database tables already exist! To continue, you have to delete these tables " +"manually first." +msgstr "" +"Таблиците в базата данни вече съществуват! За да продължите, моля първо " +"изтрийте тези таблици ръчно." + +#: chat.php:4089 +msgid "A Superadmin already exists!" +msgstr "Вече съществува супер-администратор!" + +#: chat.php:4182 chat.php:4369 +#, php-format +msgid "%s - " +msgstr "%s - " + +#: chat.php:4183 chat.php:4369 +#, php-format +msgid "[M] %s - " +msgstr "[М] %s - " + +#: chat.php:4184 chat.php:4369 +#, php-format +msgid "[Staff] %s - " +msgstr "[Екип] %s - " + +#: chat.php:4185 chat.php:4369 +#, php-format +msgid "[Admin] %s - " +msgstr "[Админ] %s - " + +#: chat.php:4186 chat.php:4369 +#, php-format +msgid "[%1$s to %2$s] - " +msgstr "[%1$s до %2$s] - " + +#: chat.php:4187 +#, php-format +msgid "%s entered the chat." +msgstr "%s влезе в чата." + +#: chat.php:4188 +#, php-format +msgid "%s left the chat." +msgstr "%s напусна чата." + +#: chat.php:4189 +#, php-format +msgid "%s is now a registered member." +msgstr "%s вече е регистриран член." + +#: chat.php:4190 +#, php-format +msgid "%s is now a registered applicant." +msgstr "%s вече е регистриран кандидат." + +#: chat.php:4191 +#, php-format +msgid "%s has been kicked." +msgstr "%s беше изгонен." + +#: chat.php:4192 +#, php-format +msgid "%s have been kicked." +msgstr "%s бяха изгонени." + +#: chat.php:4193 +msgid "All guests have been kicked." +msgstr "Всички гости бяха изгонени." + +#: chat.php:4194 +#, php-format +msgid "%s has been cleaned." +msgstr "%s беше почистена." + +#: chat.php:4202 chat.php:4396 +msgid "Temporarily disabled" +msgstr "Временно забранен" + +#: chat.php:4218 chat.php:4594 +msgid "A chat community" +msgstr "" + +#: chat.php:4256 +msgid "Successfully registered!" +msgstr "Успешна регистрация!" + +#: chat.php:4522 chat.php:4721 chat.php:4728 +msgid "No connection to database!" +msgstr "Няма връзка с базата данни!" + +#: chat.php:4531 +msgid "" +"Note: Default CSS is now hardcoded and can be removed from the CSS setting" +msgstr "" +"Забележка: CSS-ът по подразбиране е вече вграден в кода и може да бъде " +"премахнат от CSS настройките" + +#: chat.php:4611 +#, 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 за PHP е необходима the криптиращата функционалност. Моля, " +"първо я инсталирайте или върнете настройките за криптиране обратно на false." + +#: chat.php:4684 chat.php:4689 chat.php:4694 +#, php-format +msgid "" +"The %s extension of PHP is required for the selected database driver. Please " +"install it first." +msgstr "" +"Добавката %s за PHP е необходима за избрния драйвер за базата данни. Моля, " +"първо я инсталирайте." + +#: 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 "" +"Няма връзка с базата данни, моля създайте база данни и редактирайте скрипта " +"да използва правилната база данни със съответния потребител и парола!" + +#: 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 "" +"Добавката memcached за PHP е необходима за кеш функционалностите. Моля, " +"първо я инсталирайте или върнете настройките за memcached обратно на false." diff --git a/locale/cs_CZ/LC_MESSAGES/le-chat-php.mo b/locale/cs_CZ/LC_MESSAGES/le-chat-php.mo new file mode 100644 index 0000000..07bbc6f Binary files /dev/null and b/locale/cs_CZ/LC_MESSAGES/le-chat-php.mo differ diff --git a/locale/cs_CZ/LC_MESSAGES/le-chat-php.po b/locale/cs_CZ/LC_MESSAGES/le-chat-php.po new file mode 100644 index 0000000..b95fbd3 --- /dev/null +++ b/locale/cs_CZ/LC_MESSAGES/le-chat-php.po @@ -0,0 +1,1641 @@ +# 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: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-01-18 21:32+0100\n" +"PO-Revision-Date: 2023-01-18 21:36+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: cs_CZ\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n>=2 && n<=4 ? 1 : 2);\n" +"X-Generator: Poedit 3.1.1\n" + +#: chat.php:261 +msgid "Enable applicants" +msgstr "Povolit žadatele" + +#: chat.php:262 +msgid "Embed images" +msgstr "Embed obzrázky" + +#: chat.php:263 chat.php:2202 +msgid "Show Timestamps" +msgstr "Zobrazit časové značky" + +#: chat.php:264 +msgid "Show session-IP" +msgstr "Zobrazit IP relace" + +#: chat.php:265 +msgid "Members can kick, if no moderator is present" +msgstr "Členové mohou vyhazovat, pokud není přítomen žádný moderátor" + +#: chat.php:266 +msgid "Members can always kick" +msgstr "Členové mohou vždy vyhazovat" + +#: chat.php:267 +msgid "Force redirection" +msgstr "Vynucené přesměrování" + +#: chat.php:268 +msgid "Incognito mode" +msgstr "Režim inkognito" + +#: chat.php:269 +msgid "Send mail on new public message" +msgstr "Odeslat mail na novou veřejnou zprávu" + +#: chat.php:270 +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 +msgid "Disable private messages" +msgstr "Zakázat soukromé zprávy" + +#: chat.php:272 chat.php:2223 +msgid "Enable offline inbox" +msgstr "Povolit offline doručenou poštu" + +#: chat.php:273 +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 +msgid "Sort messages from top to bottom" +msgstr "Seřadit zprávy shora dolů" + +#: chat.php:275 chat.php:2205 +msgid "Hide list of chatters" +msgstr "Skrýt seznam chatujících" + +#: chat.php:276 chat.php:1780 chat.php:1794 +msgid "Personal notes" +msgstr "Osobní poznámky" + +#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110 +msgid "Public notes" +msgstr "Poznámky publikovaný" + +#: chat.php:278 +msgid "Apply kick filter on moderators" +msgstr "Použít vyhazovací filtr na moderátory" + +#: chat.php:279 +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 +msgid "Hide reload post box button" +msgstr "" + +#: chat.php:281 +msgid "Hide reload messages button" +msgstr "" + +#: chat.php:282 +msgid "Hide profile button" +msgstr "" + +#: chat.php:283 +msgid "Hide admin button" +msgstr "" + +#: chat.php:284 +msgid "Hide notes button" +msgstr "" + +#: chat.php:285 +msgid "Hide clone button" +msgstr "" + +#: chat.php:286 +msgid "Hide rearrange button" +msgstr "" + +#: chat.php:287 +msgid "Hide help button" +msgstr "" + +#: chat.php:288 +msgid "Apply postbox delete button globally" +msgstr "" + +#: chat.php:289 +msgid "Allow enhancing functionality with JavaScript" +msgstr "" + +#: chat.php:292 chat.php:2170 +msgid "Background colour" +msgstr "Barva pozadí" + +#: chat.php:293 chat.php:2167 +msgid "Font colour" +msgstr "Barva písma" + +#: chat.php:296 +msgid "Entrance" +msgstr "Vstup" + +#: chat.php:297 +msgid "Leaving" +msgstr "Odchod" + +#: chat.php:298 +msgid "Member registered" +msgstr "Registrovaný člen" + +#: chat.php:299 +msgid "Applicant registered" +msgstr "Žadatel se zaregistroval" + +#: chat.php:300 +msgid "Kicked" +msgstr "Vyhozen" + +#: chat.php:301 +msgid "Multiple kicked" +msgstr "Vyhozeno více členů" + +#: chat.php:302 +msgid "All kicked" +msgstr "Všichni byli vyhozeni" + +#: chat.php:303 +msgid "Room cleaned" +msgstr "Místnost byla vyčištěna" + +#: chat.php:304 +msgid "Message to all" +msgstr "Zpráva všem" + +#: chat.php:305 +msgid "Message to members only" +msgstr "Zpráva jen pro členy" + +#: chat.php:306 +msgid "Message to staff only" +msgstr "Zpráva jen pro personál" + +#: chat.php:307 +msgid "Message to admins only" +msgstr "Zpráva jen Administrátorům" + +#: chat.php:308 +msgid "Private message" +msgstr "Soukromá zpráva" + +#: chat.php:309 +msgid "Attachement" +msgstr "Příloha" + +#: chat.php:312 +msgid "Member timeout (minutes)" +msgstr "Členský časový limit (minut)" + +#: chat.php:313 +msgid "Guest timeout (minutes)" +msgstr "Host timeout (minut)" + +#: chat.php:314 +msgid "Kick penalty (minutes)" +msgstr "Kick penalty (minut)" + +#: chat.php:315 +msgid "Waiting room time (seconds)" +msgstr "Čas čekací místnosti (sekund)" + +#: chat.php:316 +msgid "Captcha timeout (seconds)" +msgstr "Časový limit Captcha (sekund)" + +#: chat.php:317 +msgid "Message timeout (minutes)" +msgstr "Časový limit zprávy (minut)" + +#: chat.php:318 +msgid "Message limit (public)" +msgstr "Limit zprávy (veřejnost)" + +#: chat.php:319 +msgid "Maximal message length" +msgstr "Maximální délka zprávy" + +#: chat.php:320 +msgid "Maximal nickname length" +msgstr "Maximální délka přezdívky" + +#: chat.php:321 +msgid "Minimal password length" +msgstr "Minimální délka hesla" + +#: chat.php:322 +msgid "Default message reload time (seconds)" +msgstr "Výchozí doba načtení zprávy (reload) (sekund)" + +#: chat.php:323 +msgid "Number of notes revisions to keep" +msgstr "Počet poznámek, které je nutné zachovat" + +#: chat.php:324 +msgid "Maximum upload size in KB" +msgstr "Maximální velikost nahrávaných souborů v KB" + +#: chat.php:325 +msgid "Enable file uploads" +msgstr "Povolit nahrávání souborů" + +#: chat.php:326 +msgid "Lowest refresh rate" +msgstr "" + +#: chat.php:327 +msgid "Highest refresh rate" +msgstr "" + +#: chat.php:330 +msgid "Rules (html)" +msgstr "Pravidla (html)" + +#: chat.php:331 +msgid "CSS Style" +msgstr "CSS Styl" + +#: chat.php:332 +msgid "Chat disabled message (html)" +msgstr "Deaktivovat zprávu v chatu (html)" + +#: chat.php:335 +msgid "" +"Date " +"formating" +msgstr "" +"Formát " +"datumu" + +#: chat.php:336 +msgid "Characters used in Captcha" +msgstr "Znaky použité v Captcha" + +#: chat.php:337 +msgid "Custom redirection script" +msgstr "Vlastní skript přesměrování" + +#: chat.php:338 +msgid "Chat name" +msgstr "Název chatu" + +#: chat.php:339 +msgid "Send mail using this address" +msgstr "Odeslat mail pomocí této adresy" + +#: chat.php:340 +msgid "Send mail to this address" +msgstr "Odeslat mail do této adresy" + +#: chat.php:341 +msgid "Nickname regex" +msgstr "Přezdívka regex" + +#: chat.php:342 +msgid "Password regex" +msgstr "Heslo regex" + +#: chat.php:343 +msgid "Link to external CSS file (on your own server)" +msgstr "Link pro externí CSS soubor" + +#: chat.php:344 +msgid "Meta description (best 50 - 160 characters for SEO)" +msgstr "" + +#: chat.php:345 +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 +msgid "Change Guestaccess" +msgstr "Změnit přístup pro hosty" + +#: chat.php:349 +msgid "Enable global Password" +msgstr "" + +#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433 +msgid "Global Password:" +msgstr "Globální heslo:" + +#: chat.php:351 chat.php:819 +msgid "Captcha" +msgstr "Captcha" + +#: chat.php:352 chat.php:775 chat.php:835 +msgid "Only for guests" +msgstr "Pouze pro hosty" + +#: chat.php:353 chat.php:1220 +msgid "Topic" +msgstr "Téma" + +#: chat.php:354 chat.php:781 +msgid "Let guests register themselves" +msgstr "Nechte hosty zaregistrovat se" + +#: chat.php:355 chat.php:862 +msgid "Default time zone" +msgstr "Výchozí časové pásmo" + +#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259 +msgid "Initial Setup" +msgstr "Počáteční nastavení" + +#: chat.php:588 +#, php-format +msgid "Redirecting to: %s" +msgstr "Přesměrování na: %s" + +#: chat.php:595 +#, php-format +msgid "" +"Dangerous non-http link requested, copy paste this link if you are really " +"sure: %s" +msgstr "" + +#: chat.php:597 +#, php-format +msgid "Non-http link requested: %s" +msgstr "Požadovaný odkaz bez http: %s" + +#: chat.php:599 +#, php-format +msgid "If it's not working, try this one: %s" +msgstr "Pokud to nefunguje, zkuste tohle: %s" + +#: chat.php:609 +msgid "Access denied" +msgstr "Přístup zamítnut" + +#: chat.php:609 +#, 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 +msgid "Logout" +msgstr "Odhlásit" + +#: chat.php:636 +msgid "Copy:" +msgstr "Kopírovat:" + +#: chat.php:724 +msgid "Chat Setup" +msgstr "Nastavení Chatu" + +#: chat.php:734 chat.php:1233 +msgid "Allow" +msgstr "Povolit" + +#: chat.php:739 chat.php:1238 +msgid "Allow with waitingroom" +msgstr "Povolit s čekající možností" + +#: chat.php:744 chat.php:1243 +msgid "Require moderator approval" +msgstr "Požadovat schválení moderátorem" + +#: chat.php:749 chat.php:1248 +msgid "Only members" +msgstr "Jen členové" + +#: chat.php:754 chat.php:1251 +msgid "Disable chat" +msgstr "Vypnout chat" + +#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229 +msgid "Disabled" +msgstr "Zakázáno" + +#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219 +msgid "Enabled" +msgstr "Povoleno" + +#: chat.php:792 +msgid "As applicant" +msgstr "Jako žadatel" + +#: chat.php:797 +msgid "As member" +msgstr "Jako členové" + +#: chat.php:800 +msgid "System messages" +msgstr "Systémové zprávy" + +#: chat.php:822 chat.php:1053 +#, php-format +msgid "" +"The %s extension of PHP is required for this feature. Please install it " +"first." +msgstr "" +"Rozšíření PHP %s je pro tuto funkci vyžadováno. Nejprve ho nainstalujte." + +#: chat.php:847 +msgid "Simple" +msgstr "Jednoduchý" + +#: chat.php:852 +msgid "Moderate" +msgstr "" + +#: chat.php:857 +msgid "Extreme" +msgstr "Extrémní" + +#: chat.php:906 chat.php:1548 chat.php:1610 +msgid "Apply" +msgstr "Použít" + +#: chat.php:910 chat.php:1050 +msgid "Backup and restore" +msgstr "Zálohování a obnovení" + +#: chat.php:912 +msgid "Destroy chat" +msgstr "Zničit chat" + +#: chat.php:1057 chat.php:1066 +msgid "Settings" +msgstr "Nastavení" + +#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575 +#: chat.php:1622 +msgid "Filter" +msgstr "Filtr" + +#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538 +msgid "Members" +msgstr "Členové" + +#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322 +msgid "Notes" +msgstr "Poznámky" + +#: chat.php:1061 +msgid "Backup" +msgstr "Zalohování" + +#: chat.php:1070 +msgid "Restore" +msgstr "Obnovení" + +#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260 +msgid "Go to the Setup-Page" +msgstr "Přejděte na stránku nastavení" + +#: chat.php:1082 chat.php:1091 chat.php:1949 +msgid "Are you sure?" +msgstr "Jsi si jistý?" + +#: chat.php:1083 chat.php:1092 chat.php:1956 +msgid "Yes" +msgstr "Ano" + +#: chat.php:1084 chat.php:1093 chat.php:1963 +msgid "No" +msgstr "Ne" + +#: chat.php:1101 chat.php:4259 +msgid "Superadmin Login" +msgstr "Superadmin Přihlášení" + +#: chat.php:1102 +msgid "Superadmin Nickname:" +msgstr "Superadmin Přezdívka:" + +#: chat.php:1103 +msgid "Superadmin Password:" +msgstr "Superadmin Heslo:" + +#: chat.php:1104 +msgid "Confirm Password:" +msgstr "Potvrzení hesla:" + +#: chat.php:1105 +msgid "Initialise Chat" +msgstr "Inicializace chatu" + +#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439 +msgid "Change language:" +msgstr "Změnit jazyk:" + +#: chat.php:1117 +msgid "Database successfully updated!" +msgstr "Databáze byla úspěšně aktualizována!" + +#: chat.php:1125 chat.php:1326 chat.php:2407 +msgid "Nickname:" +msgstr "Přezdívka:" + +#: chat.php:1126 chat.php:1327 chat.php:2408 +msgid "Password:" +msgstr "Heslo:" + +#: chat.php:1128 +msgid "Login" +msgstr "Přihlásit se" + +#: chat.php:1129 +msgid "Forgot login?" +msgstr "" + +#: chat.php:1142 chat.php:1306 +msgid "Reset password" +msgstr "Reset hesla" + +#: chat.php:1150 +#, php-format +msgid "" +"Successfully reset password for username %s. Please remove the password " +"reset define from the script again." +msgstr "" + +#: 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 "" + +#: 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 +msgid "(choose)" +msgstr "(vybrat)" + +#: chat.php:1170 +msgid "All guests" +msgstr "Všichni hosté" + +#: chat.php:1182 +msgid "Administrative functions" +msgstr "Administrativní funkce" + +#: chat.php:1188 +msgid "Clean messages" +msgstr "Vyčistit zprávy" + +#: chat.php:1191 +msgid "Whole room" +msgstr "Celá místnost" + +#: chat.php:1192 +msgid "Selection" +msgstr "Výběr" + +#: chat.php:1193 +msgid "Following nickname:" +msgstr "Následující přezdívka:" + +#: chat.php:1200 +msgid "Clean" +msgstr "Vyčistit" + +#: chat.php:1202 +#, php-format +msgid "Kick Chatter (%d minutes)" +msgstr "Vyhodit chatujícího (%d minutes)" + +#: chat.php:1204 +msgid "Kickmessage:" +msgstr "Důvod vyhození:" + +#: chat.php:1205 +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 +msgid "Kick" +msgstr "Vyhodit" + +#: chat.php:1208 +msgid "Logout inactive Chatter" +msgstr "Odhlásit neaktivní chatující" + +#: chat.php:1212 +msgid "View active sessions" +msgstr "Zobrazit aktivní relace" + +#: chat.php:1212 chat.php:1603 +msgid "Linkfilter" +msgstr "Filtr odkazů" + +#: chat.php:1217 +msgid "View" +msgstr "Zobrazit" + +#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582 +#: chat.php:1626 +msgid "Change" +msgstr "Změnit" + +#: chat.php:1256 +msgid "Register applicant" +msgstr "Zaregistrovat žadatele" + +#: chat.php:1264 chat.php:1322 chat.php:1328 +msgid "Register" +msgstr "Registrovat" + +#: chat.php:1294 +msgid "Delete from database" +msgstr "Odstranit z databáze" + +#: chat.php:1294 +msgid "Deny access (!)" +msgstr "Zamítnout přístup (!)" + +#: chat.php:1296 +msgid "Set to applicant (SG)" +msgstr "Nastavit na žadatele (SG)" + +#: chat.php:1298 +msgid "Set to regular member" +msgstr "Nastavte na řádného člena" + +#: chat.php:1299 +msgid "Set to moderator (M)" +msgstr "Nastavit na moderátory (M)" + +#: chat.php:1300 +msgid "Set to supermod (SM)" +msgstr "Nastavit na supermod (SM)" + +#: chat.php:1302 +msgid "Set to admin (A)" +msgstr "Nastavit pro Administrátory (A)" + +#: chat.php:1314 +msgid "Register Guest" +msgstr "Registrovat hosta" + +#: chat.php:1324 +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 +msgid "Reload" +msgstr "Znovu načíst" + +#: chat.php:1345 +msgid "Active Sessions" +msgstr "Aktivní relace" + +#: chat.php:1346 chat.php:1873 +msgid "Nickname" +msgstr "Přezdívka" + +#: chat.php:1346 +msgid "Timeout in" +msgstr "Časový limit (Timeout) v" + +#: chat.php:1346 chat.php:1873 +msgid "User-Agent" +msgstr "User-Agent" + +#: chat.php:1350 +msgid "IP-Address" +msgstr "IP-Addresa" + +#: chat.php:1351 +msgid "Actions" +msgstr "Akce" + +#: chat.php:1393 +msgid "Unban" +msgstr "Odbanovat" + +#: chat.php:1416 +msgid "Incorrect regular expression!" +msgstr "Nesprávný regulární výraz!" + +#: chat.php:1416 chat.php:1424 +#, php-format +msgid "Your match was as follows: %s" +msgstr "Vaše hledání bylo následující: %s" + +#: chat.php:1424 +msgid "" +"Your match was too long. You can use max. 255 characters. Try splitting it " +"up." +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 +msgid "Filter ID:" +msgstr "ID filtru:" + +#: chat.php:1542 chat.php:1607 +msgid "Match" +msgstr "Match" + +#: chat.php:1543 chat.php:1608 +msgid "Replace" +msgstr "Nahradit" + +#: chat.php:1544 chat.php:1578 chat.php:1589 +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 +msgid "Regex" +msgstr "Regex" + +#: chat.php:1547 chat.php:1581 chat.php:1592 +msgid "Case sensitive" +msgstr "Velká a malá písmena" + +#: chat.php:1586 chat.php:1630 +msgid "New filter:" +msgstr "Nový filtr:" + +#: chat.php:1593 chat.php:1634 +msgid "Add" +msgstr "Přidat" + +#: chat.php:1691 +msgid "" +"This chat uses frames. Please enable frames in your browser or use a " +"suitable one!" +msgstr "" +"Tento chat používá rámeček . Povolte rámečky ve vašem prohlížeči " +"nebo použijte jiný!" + +#: chat.php:1691 chat.php:2370 chat.php:2457 +msgid "Back to the login page." +msgstr "Zpět na přihlašovací stránku." + +#: chat.php:1709 +msgid "Bottom" +msgstr "Dolní" + +#: chat.php:1710 +msgid "Manual refresh required" +msgstr "Nutná ruční aktualizace" + +#: chat.php:1726 +msgid "Top" +msgstr "Horní" + +#: chat.php:1734 chat.php:1940 chat.php:1942 +msgid "Delete selected messages" +msgstr "Odstranit vybrané zprávy" + +#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281 +msgid "Back to the chat." +msgstr "Zpět do chatu." + +#: chat.php:1774 chat.php:1791 +msgid "Admin notes" +msgstr "Poznámky Administrátorů" + +#: chat.php:1777 chat.php:1788 +msgid "Staff notes" +msgstr "Poznámky zaměstnanců" + +#: chat.php:1811 +msgid "Notes saved!" +msgstr "Poznámky uloženy!" + +#: chat.php:1835 chat.php:2122 +#, php-format +msgid "Last edited by %1$s at %2$s" +msgstr "Naposledy upraveno %1$s at %2$s" + +#: chat.php:1848 +msgid "Save notes" +msgstr "Uložit poznámky" + +#: chat.php:1850 +msgid "Revisions:" +msgstr "Revize:" + +#: chat.php:1853 +msgid "Older" +msgstr "Starší" + +#: chat.php:1857 +msgid "Newer" +msgstr "Novější" + +#: chat.php:1868 chat.php:1914 +msgid "Waiting room" +msgstr "Čekárna" + +#: chat.php:1880 +msgid "Allow checked" +msgstr "Povolit vybrané" + +#: chat.php:1881 +msgid "Allow all" +msgstr "Povolit vše" + +#: chat.php:1882 +msgid "Deny checked" +msgstr "Zakázat vybrané" + +#: chat.php:1883 +msgid "Deny all" +msgstr "Zakázat vše" + +#: chat.php:1883 +msgid "Send message to denied:" +msgstr "Poslat zprávu odepřeným:" + +#: chat.php:1884 +msgid "Submit" +msgstr "Odeslat" + +#: chat.php:1886 +msgid "No more entry requests to approve." +msgstr "Žádná další žádost o schválení." + +#: chat.php:1916 +#, php-format +msgid "" +"Welcome %1$s, your login has been delayed, you can access the chat in %2$d " +"seconds." +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 +#, 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 "" +"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 +#, php-format +msgid "" +"If this page doesn't refresh every %d seconds, use the button below to " +"reload it manually!" +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 +msgid "Exit Chat" +msgstr "Opustit chat" + +#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430 +msgid "Rules" +msgstr "Pravidla" + +#: chat.php:1985 +msgid "Send to" +msgstr "Mluvit s" + +#: chat.php:1990 +msgid "All chatters" +msgstr "Všem" + +#: chat.php:1996 +msgid "Members only" +msgstr "Jen členové" + +#: chat.php:2003 +msgid "Staff only" +msgstr "Jen zaměstnanci" + +#: chat.php:2010 +msgid "Admin only" +msgstr "Jen administrátoři" + +#: chat.php:2019 +msgid "(offline)" +msgstr "(offline)" + +#: chat.php:2043 +msgid "Also purge messages" +msgstr "Také vyčistit zprávy" + +#: chat.php:2050 +msgid "Delete last message" +msgstr "Vymazat poslední zprávu" + +#: chat.php:2055 +msgid "Delete all messages" +msgstr "Vymazat všechny zprávy" + +#: chat.php:2057 +msgid "Switch to single-line" +msgstr "Přepnout na jednorázovou linku" + +#: chat.php:2059 +msgid "Switch to multi-line" +msgstr "Přepnout na víceřádkový" + +#: chat.php:2070 +#, php-format +msgid "Welcome %s!" +msgstr "Vítej %s!" + +#: chat.php:2071 +#, 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 "" +"Pokud tento snímek není znovu načten v% d sekundách, bude muset v prohlížeči " +"povolit automatické přesměrování (meta refresh). Také se ujistěte, že žádný " +"webový filtr, místní proxy nástroj nebo plugin pro prohlížeč nebrání " +"automatickému obnovení! Mohlo by to být například \"Polipo\", \"NoScript\" " +"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 +msgid "Help" +msgstr "Pomoc" + +#: 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." +msgstr "" +"Všechny funkce by měly být docela samo vysvětlující, stačí použít tlačítka. " +"Ve vašem profilu můžete nastavit obnovovací frekvenci a barvu písma a " +"ignorovat uživatele.
Poznámka: Jedná se o chat, takže pokud " +"nebudete mluvit, budete automaticky po chvíli odhlášeni." + +#: 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 "" +"Pokud chcete vložit obrázek do příspěvku, jednoduše jej vložte [img] před " +"vaší adresou URL obrázku. Například: [img]http://example.com/images/file.jpg " +"vloží obrázek do příspěvku." + +#: 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 "" +"Č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 +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 "" +"Moderátoři: Uvidíte správce v dolní části. Zobrazí se stránka, ve které " +"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 +msgid "" +"Admins: You'll be furthermore able to register guests, edit members and " +"register new nicknames." +msgstr "" +"Administrátoři: Budete dále moci registrovat hosty, editovat členy a " +"registrovat nové přezdívky." + +#: chat.php:2135 +msgid "Your Profile" +msgstr "Váš profil" + +#: chat.php:2144 +msgid "Don't ignore anymore" +msgstr "Již neignorovat" + +#: chat.php:2152 +msgid "Ignore" +msgstr "Ignorovat" + +#: chat.php:2163 +#, php-format +msgid "Refresh rate (%1$d-%2$d seconds)" +msgstr "Obnovovací frekvence (%1$d-%2$d sekund)" + +#: chat.php:2167 chat.php:2170 +msgid "View examples" +msgstr "Zobrazit příklady" + +#: chat.php:2174 +msgid "Fontface" +msgstr "Tvar písma" + +#: chat.php:2175 +msgid "Room Default" +msgstr "Výchozí místnost" + +#: chat.php:2188 +msgid "Bold" +msgstr "Tučně" + +#: chat.php:2192 +msgid "Italic" +msgstr "Kurzíva" + +#: chat.php:2196 +msgid "Small" +msgstr "Malý" + +#: chat.php:2199 +msgid "Example for your chosen font" +msgstr "Příklad vybraného písma" + +#: chat.php:2203 +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 +msgid "For everyone" +msgstr "Pro všechny" + +#: chat.php:2239 +msgid "For members only" +msgstr "Jen pro členy" + +#: chat.php:2244 +msgid "For staff only" +msgstr "Jen pro personál" + +#: chat.php:2248 +msgid "Time zone" +msgstr "Časové pásmo" + +#: chat.php:2261 +msgid "Change Password" +msgstr "Změnit heslo" + +#: chat.php:2263 +msgid "Old password:" +msgstr "Staré heslo:" + +#: chat.php:2264 +msgid "New password:" +msgstr "Nové heslo:" + +#: chat.php:2265 +msgid "Confirm new password:" +msgstr "Potvrdit nové heslo:" + +#: chat.php:2268 +msgid "Change Nickname" +msgstr "Změnit přezdívku" + +#: chat.php:2269 +msgid "New nickname:" +msgstr "Nová přezdívka:" + +#: chat.php:2273 +msgid "Save changes" +msgstr "Uložit" + +#: chat.php:2275 +msgid "Delete account" +msgstr "Odstranit účet" + +#: chat.php:2301 +msgid "Reload Post Box" +msgstr "Znovu načíst poštovní schránku" + +#: chat.php:2304 +msgid "Reload Messages" +msgstr "Znovu načíst zprávy" + +#: chat.php:2307 +msgid "Profile" +msgstr "Profil" + +#: chat.php:2311 chat.php:2528 +msgid "Admin" +msgstr "Administrátorů" + +#: chat.php:2318 +msgid "View public notes" +msgstr "Zobrazit poznámky publikovaný" + +#: chat.php:2325 +msgid "Clone" +msgstr "Klonovat" + +#: chat.php:2334 +msgid "Rearrange" +msgstr "Změňit uspořádání" + +#: chat.php:2337 +msgid "Rules & Help" +msgstr "Pravidla & Pomoc" + +#: chat.php:2358 chat.php:2362 +msgid "File not found!" +msgstr "Soubor nebyl nalezen!" + +#: chat.php:2370 +#, php-format +msgid "Bye %s, visit again soon!" +msgstr "Sbohem %s, navštivte nás brzy!" + +#: chat.php:2377 +msgid "Colourtable" +msgstr "Barevný" + +#: chat.php:2388 +msgid "Back to your Profile" +msgstr "Zpět do profilu" + +#: chat.php:2412 +msgid "Repeat password
to register" +msgstr "Zopakujte heslo
pro registraci" + +#: chat.php:2412 +msgid "(optional)" +msgstr "(volitelný)" + +#: chat.php:2417 +msgid "Guests, choose a colour:" +msgstr "Hosté, vyberte barvu:" + +#: chat.php:2417 +msgid "Random Colour" +msgstr "Náhodná barva" + +#: chat.php:2421 chat.php:2435 chat.php:2569 +msgid "Sorry, currently members only!" +msgstr "Omlouváme se, v současné době pouze členové!" + +#: chat.php:2423 chat.php:2437 +msgid "Enter Chat" +msgstr "Vstoupit" + +#: chat.php:2457 +#, php-format +msgid "Error: %s" +msgstr "Chyba: %s" + +#: chat.php:2467 +msgid "Fatal error" +msgstr "" + +#: chat.php:2470 +#, php-format +msgid "Fatal error: %s" +msgstr "" + +#: chat.php:2482 chat.php:2693 +msgid "Failed login attempt(s)" +msgstr "Neúspěšné pokusy o přihlášení" + +#: chat.php:2489 +#, 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 +#, php-format +msgid "%d new guests to approve" +msgstr "%d noví hsté ke schválení" + +#: chat.php:2530 +msgid "Admin:" +msgstr "Administrátorů:" + +#: chat.php:2533 +msgid "Staff" +msgstr "Stnanc" + +#: chat.php:2535 +msgid "Staff:" +msgstr "Stnanc:" + +#: chat.php:2540 +msgid "Members:" +msgstr "Členové:" + +#: chat.php:2542 +msgid "Guests" +msgstr "Hosté" + +#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092 +#, php-format +msgid "" +"Invalid nickname (%1$d characters maximum and has to match the regular " +"expression \"%2$s\")" +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 +#, php-format +msgid "" +"Invalid password (At least %1$d characters and has to match the regular " +"expression \"%2$s\")" +msgstr "" +"Neplatné heslo (Alespoň %1$d znaků a musí odpovídat regulární výraz \"%2$s\")" + +#: chat.php:2574 chat.php:2739 +msgid "Wrong global Password!" +msgstr "Špatné globální heslo!" + +#: chat.php:2591 chat.php:2612 +msgid "Wrong Captcha" +msgstr "Špatná Captcha" + +#: chat.php:2596 chat.php:2604 +msgid "Captcha already used or timed out." +msgstr "Captcha byla již použitá nebo vypršel čas." + +#: chat.php:2652 +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 +msgid "Wrong Password!" +msgstr "Špatné heslo!" + +#: chat.php:2696 +msgid "Dismiss" +msgstr "Uznal" + +#: chat.php:2747 chat.php:3171 chat.php:4096 +msgid "Password confirmation does not match!" +msgstr "Hesla se neshodují!" + +#: chat.php:2859 +msgid "Invalid/expired session" +msgstr "Neplatná/relace vypršela" + +#: chat.php:2875 chat.php:3412 +msgid "You have been kicked!" +msgstr "Byl jsi vyhozen!" + +#: chat.php:2885 +#, php-format +msgid "Currently %d chatter(s) in room:" +msgstr "Právě teď %d chatujících v místnosti:" + +#: chat.php:2933 +msgid "This nickname is a registered member." +msgstr "Tato přezdívka používá registrovaný člen." + +#: chat.php:2960 chat.php:3001 +#, php-format +msgid "%s is already registered." +msgstr "%s je již zaregistrovaný." + +#: chat.php:2969 chat.php:2990 +#, php-format +msgid "Can't register %s" +msgstr "Nelze zaregistrovat %s" + +#: chat.php:2978 chat.php:3023 +#, php-format +msgid "%s successfully registered." +msgstr "%s byl úspěšně zaregistrován." + +#: chat.php:3031 chat.php:3036 +#, php-format +msgid "Can't change status of %s" +msgstr "Nelze změnit status uživatele %s" + +#: chat.php:3047 +#, php-format +msgid "%s successfully deleted from database." +msgstr "%s byl úspěšně vymazán z databáze." + +#: chat.php:3056 +#, php-format +msgid "Status of %s successfully changed." +msgstr "Status %s byl úspěšně změněn." + +#: chat.php:3073 +#, php-format +msgid "Successfully reset password for %s" +msgstr "" + +#: chat.php:3075 +#, php-format +msgid "Can't reset password for %s" +msgstr "" + +#: chat.php:3190 +msgid "Your profile has successfully been saved." +msgstr "Váš profil byl úspěšně uložen." + +#: chat.php:3202 +msgid "Nickname is already taken" +msgstr "Přezdívku již někdo používá" + +#: chat.php:3714 +msgid "system message" +msgstr "systémová zpráva" + +#: chat.php:3921 +msgid "Beige" +msgstr "Béžový" + +#: chat.php:3922 +msgid "Black" +msgstr "Černý" + +#: chat.php:3923 +msgid "Blue" +msgstr "Modrý" + +#: chat.php:3924 +msgid "Blue violet" +msgstr "Modro-fialová" + +#: chat.php:3925 +msgid "Brown" +msgstr "Hnědá" + +#: chat.php:3926 +msgid "Cyan" +msgstr "Tyrkysová" + +#: chat.php:3927 +msgid "Dark blue" +msgstr "Tmavě modrá" + +#: chat.php:3928 +msgid "Dark green" +msgstr "Tmavě zelená" + +#: chat.php:3929 +msgid "Dark red" +msgstr "Tmavě červená" + +#: chat.php:3930 +msgid "Dark violet" +msgstr "Tmavě fialová" + +#: chat.php:3931 +msgid "Sky blue" +msgstr "Modré nebe" + +#: chat.php:3932 +msgid "Gold" +msgstr "Zlatá" + +#: chat.php:3933 +msgid "Grey" +msgstr "Šedá" + +#: chat.php:3934 +msgid "Green" +msgstr "Zelená" + +#: chat.php:3935 +msgid "Hot pink" +msgstr "Hot růžová" + +#: chat.php:3936 +msgid "Indigo" +msgstr "Indigo" + +#: chat.php:3937 +msgid "Light blue" +msgstr "Světle modrá" + +#: chat.php:3938 +msgid "Light green" +msgstr "Světle zelená" + +#: chat.php:3939 +msgid "Lime green" +msgstr "Limetkově zelená" + +#: chat.php:3940 +msgid "Magenta" +msgstr "Purpurová" + +#: chat.php:3941 +msgid "Olive" +msgstr "Olivová" + +#: chat.php:3942 +msgid "Orange" +msgstr "Oranžová" + +#: chat.php:3943 +msgid "Orange red" +msgstr "Oranžově-červená" + +#: chat.php:3944 +msgid "Purple" +msgstr "Purpurová" + +#: chat.php:3945 +msgid "Red" +msgstr "Červená" + +#: chat.php:3946 +msgid "Royal blue" +msgstr "Královsky modrá" + +#: chat.php:3947 +msgid "Sea green" +msgstr "Zelené moře" + +#: chat.php:3948 +msgid "Sienna" +msgstr "Oranžově žlutá" + +#: chat.php:3949 +msgid "Silver" +msgstr "Stříbrný" + +#: chat.php:3950 +msgid "Tan" +msgstr "Bronz" + +#: chat.php:3951 +msgid "Teal" +msgstr "Teal" + +#: chat.php:3952 +msgid "Violet" +msgstr "Fialová" + +#: chat.php:3953 +msgid "White" +msgstr "Bílá" + +#: chat.php:3954 +msgid "Yellow" +msgstr "Žlutá" + +#: chat.php:3955 +msgid "Yellow green" +msgstr "Žluto zelená" + +#: chat.php:4077 +msgid "Successfully destroyed chat" +msgstr "Chat byl úspěšně zničen" + +#: chat.php:4086 +msgid "" +"Database tables already exist! To continue, you have to delete these tables " +"manually first." +msgstr "" +"Databázové tabulky již existují! Chcete-li pokračovat, musíte tyto tabulky " +"nejprve ručně odstranit." + +#: chat.php:4089 +msgid "A Superadmin already exists!" +msgstr "Superadmin již existuje!" + +#: chat.php:4182 chat.php:4369 +#, php-format +msgid "%s - " +msgstr "%s - " + +#: chat.php:4183 chat.php:4369 +#, php-format +msgid "[M] %s - " +msgstr "[M] %s - " + +#: chat.php:4184 chat.php:4369 +#, php-format +msgid "[Staff] %s - " +msgstr "[Personál] %s - " + +#: chat.php:4185 chat.php:4369 +#, php-format +msgid "[Admin] %s - " +msgstr "[Administrátor] %s - " + +#: chat.php:4186 chat.php:4369 +#, php-format +msgid "[%1$s to %2$s] - " +msgstr "[%1$s do %2$s] - " + +#: chat.php:4187 +#, php-format +msgid "%s entered the chat." +msgstr "%s vstoupil do chatu." + +#: chat.php:4188 +#, php-format +msgid "%s left the chat." +msgstr "%s opustil chat." + +#: chat.php:4189 +#, php-format +msgid "%s is now a registered member." +msgstr "%s se stal registrovaným členem." + +#: chat.php:4190 +#, 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." +msgstr "%s byl vyhozen." + +#: chat.php:4192 +#, php-format +msgid "%s have been kicked." +msgstr "%s byli vyhozeni." + +#: chat.php:4193 +msgid "All guests have been kicked." +msgstr "Všichni hosté byli vyhozeni." + +#: chat.php:4194 +#, php-format +msgid "%s has been cleaned." +msgstr "%s byl vyčištěn." + +#: chat.php:4202 chat.php:4396 +msgid "Temporarily disabled" +msgstr "Dočasně zakázáno" + +#: chat.php:4218 chat.php:4594 +msgid "A chat community" +msgstr "" + +#: chat.php:4256 +msgid "Successfully registered!" +msgstr "Byl jsi úspěšně zaregistrován!" + +#: chat.php:4522 chat.php:4721 chat.php:4728 +msgid "No connection to database!" +msgstr "Chyba databáze!" + +#: chat.php:4531 +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 +#, 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 "" +"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 +#, php-format +msgid "" +"The %s extension of PHP is required for the selected database driver. Please " +"install it first." +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 +msgid "" +"No connection to database, please create a database and edit the script to " +"use the correct database with given username and password!" +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 +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 "" +"Pro funkci ukládání do mezipaměti je vyžadováno memcached rozšíření PHP. " +"Nejprve ho nainstalujte, nebo nastavte parametr memcached na hodnotu false." diff --git a/locale/de_DE/LC_MESSAGES/le-chat-php.mo b/locale/de_DE/LC_MESSAGES/le-chat-php.mo new file mode 100644 index 0000000..18c1f04 Binary files /dev/null and b/locale/de_DE/LC_MESSAGES/le-chat-php.mo differ diff --git a/locale/de_DE/LC_MESSAGES/le-chat-php.po b/locale/de_DE/LC_MESSAGES/le-chat-php.po new file mode 100644 index 0000000..f693950 --- /dev/null +++ b/locale/de_DE/LC_MESSAGES/le-chat-php.po @@ -0,0 +1,1666 @@ +# 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: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-01-18 21:32+0100\n" +"PO-Revision-Date: 2023-01-18 21:36+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: de_DE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.1.1\n" + +#: chat.php:261 +msgid "Enable applicants" +msgstr "Anwerber aktivieren" + +#: chat.php:262 +msgid "Embed images" +msgstr "Bilder einbetten" + +#: chat.php:263 chat.php:2202 +msgid "Show Timestamps" +msgstr "Zeitstempel anzeigen" + +#: chat.php:264 +msgid "Show session-IP" +msgstr "Sitzungs-IP anzeigen" + +#: chat.php:265 +msgid "Members can kick, if no moderator is present" +msgstr "Mitglieder dürfen Rausschmeißen, wenn kein Moderator da ist" + +#: chat.php:266 +msgid "Members can always kick" +msgstr "Mitglieder dürfen immer Rausschmeißen" + +#: chat.php:267 +msgid "Force redirection" +msgstr "Umleitung erzwingen" + +#: chat.php:268 +msgid "Incognito mode" +msgstr "Inkognito Modus" + +#: chat.php:269 +msgid "Send mail on new public message" +msgstr "E-Mail bei neuer Nachricht senden" + +#: chat.php:270 +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 +msgid "Disable private messages" +msgstr "Private Nachrichten deaktivieren" + +#: chat.php:272 chat.php:2223 +msgid "Enable offline inbox" +msgstr "Offline Posteingang aktivieren" + +#: chat.php:273 +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 +msgid "Sort messages from top to bottom" +msgstr "Nachrichten von oben nach unten sortieren" + +#: chat.php:275 chat.php:2205 +msgid "Hide list of chatters" +msgstr "Teilnehmerlist ausblenden" + +#: chat.php:276 chat.php:1780 chat.php:1794 +msgid "Personal notes" +msgstr "Persönliche Notizen" + +#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110 +msgid "Public notes" +msgstr "Öffentliche Notizen" + +#: chat.php:278 +msgid "Apply kick filter on moderators" +msgstr "Kickfilter auf Moderatoren anwenden" + +#: chat.php:279 +msgid "Show who kicks people or purges all messages." +msgstr "Zeigen Sie, wer Menschen vertreibt oder alle Nachrichten löscht." + +#: chat.php:280 +msgid "Hide reload post box button" +msgstr "Postbox neu Laden Knopf verstecken" + +#: chat.php:281 +msgid "Hide reload messages button" +msgstr "Nachrichten neu laden Knopf verstecken" + +#: chat.php:282 +msgid "Hide profile button" +msgstr "Profil-Knopf verstecken" + +#: chat.php:283 +msgid "Hide admin button" +msgstr "Admin-Knopf verstecken" + +#: chat.php:284 +msgid "Hide notes button" +msgstr "Notizen-Knopf verstecken" + +#: chat.php:285 +msgid "Hide clone button" +msgstr "Klonen-Knopf verstecken" + +#: chat.php:286 +msgid "Hide rearrange button" +msgstr "Umordnen-Knopf verstecken" + +#: chat.php:287 +msgid "Hide help button" +msgstr "Hilfe-Knopf verstecken" + +#: chat.php:288 +msgid "Apply postbox delete button globally" +msgstr "Postbox Löschknöpfe global anwenden" + +#: chat.php:289 +msgid "Allow enhancing functionality with JavaScript" +msgstr "Verbessern der Funktionalität mit JavaScript erlauben" + +#: chat.php:292 chat.php:2170 +msgid "Background colour" +msgstr "Hintergrundfarbe" + +#: chat.php:293 chat.php:2167 +msgid "Font colour" +msgstr "Schriftfarbe" + +#: chat.php:296 +msgid "Entrance" +msgstr "Eintritt" + +#: chat.php:297 +msgid "Leaving" +msgstr "Verlassen" + +#: chat.php:298 +msgid "Member registered" +msgstr "Mitglied registriert" + +#: chat.php:299 +msgid "Applicant registered" +msgstr "Anwerber registriert" + +#: chat.php:300 +msgid "Kicked" +msgstr "Rauswurf" + +#: chat.php:301 +msgid "Multiple kicked" +msgstr "Mehrere rausgeworfen" + +#: chat.php:302 +msgid "All kicked" +msgstr "Alle rausgeworfen" + +#: chat.php:303 +msgid "Room cleaned" +msgstr "Raum geleert" + +#: chat.php:304 +msgid "Message to all" +msgstr "Nachricht an alle" + +#: chat.php:305 +msgid "Message to members only" +msgstr "Nachricht nur an Mitglieder" + +#: chat.php:306 +msgid "Message to staff only" +msgstr "Nachricht nur an Moderatoren" + +#: chat.php:307 +msgid "Message to admins only" +msgstr "Nachricht nur an Admins" + +#: chat.php:308 +msgid "Private message" +msgstr "Private Nachricht" + +#: chat.php:309 +msgid "Attachement" +msgstr "Anhang" + +#: chat.php:312 +msgid "Member timeout (minutes)" +msgstr "Mitglieder-Ablaufzeit (Minuten)" + +#: chat.php:313 +msgid "Guest timeout (minutes)" +msgstr "Gast-Ablaufzeit (Minuten)" + +#: chat.php:314 +msgid "Kick penalty (minutes)" +msgstr "Rausschmiss-Strafzeit (Minuten)" + +#: chat.php:315 +msgid "Waiting room time (seconds)" +msgstr "Warteraum-Zeit (Sekunden)" + +#: chat.php:316 +msgid "Captcha timeout (seconds)" +msgstr "Captcha-Ablaufzeit (Sekunden)" + +#: chat.php:317 +msgid "Message timeout (minutes)" +msgstr "Nachrichten-Ablaufzeit (Minuten)" + +#: chat.php:318 +msgid "Message limit (public)" +msgstr "Nachrichtenlimit (öffentliche)" + +#: chat.php:319 +msgid "Maximal message length" +msgstr "Maximale Nachrichenlänge" + +#: chat.php:320 +msgid "Maximal nickname length" +msgstr "Maximale Nicknamen-Länge" + +#: chat.php:321 +msgid "Minimal password length" +msgstr "Minimale Passwortlänge" + +#: chat.php:322 +msgid "Default message reload time (seconds)" +msgstr "Standardzeit zum Neuladen der Nachrichten (Sekunden)" + +#: chat.php:323 +msgid "Number of notes revisions to keep" +msgstr "Anzahl an zu behaltenden Notizversionen" + +#: chat.php:324 +msgid "Maximum upload size in KB" +msgstr "Maximal hochgeladene Dateigröße in KB" + +#: chat.php:325 +msgid "Enable file uploads" +msgstr "Dateien hochladen aktivieren" + +#: chat.php:326 +msgid "Lowest refresh rate" +msgstr "Niedrigste Aktualisierungsrate" + +#: chat.php:327 +msgid "Highest refresh rate" +msgstr "Höchste Aktualisierungsrate" + +#: chat.php:330 +msgid "Rules (html)" +msgstr "Regeln (html)" + +#: chat.php:331 +msgid "CSS Style" +msgstr "CSS Style" + +#: chat.php:332 +msgid "Chat disabled message (html)" +msgstr "Chat deaktiviert Nachricht (html)" + +#: chat.php:335 +msgid "" +"Date " +"formating" +msgstr "" +"Datums-" +"Formatierung" + +#: chat.php:336 +msgid "Characters used in Captcha" +msgstr "Im Captcha benutzte Zeichen" + +#: chat.php:337 +msgid "Custom redirection script" +msgstr "Benutzerdefinierte Umleitungsadresse" + +#: chat.php:338 +msgid "Chat name" +msgstr "Chatname" + +#: chat.php:339 +msgid "Send mail using this address" +msgstr "E-Mail mit dieser Adresse versenden" + +#: chat.php:340 +msgid "Send mail to this address" +msgstr "E-Mail an diese Adresse senden" + +#: chat.php:341 +msgid "Nickname regex" +msgstr "Nickname-Regex" + +#: chat.php:342 +msgid "Password regex" +msgstr "Passwort-Regex" + +#: chat.php:343 +msgid "Link to external CSS file (on your own server)" +msgstr "Link zu externer CSS Datei (auf Ihrem eigenen Server)" + +#: chat.php:344 +msgid "Meta description (best 50 - 160 characters for SEO)" +msgstr "Metabeschreibung (Am Besten 50 - 160 Zeichen für SEO)" + +#: chat.php:345 +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 +msgid "Change Guestaccess" +msgstr "Gastzugriff ändern" + +#: chat.php:349 +msgid "Enable global Password" +msgstr "Globales Passwort aktivieren" + +#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433 +msgid "Global Password:" +msgstr "Globales Passwort:" + +#: chat.php:351 chat.php:819 +msgid "Captcha" +msgstr "Captcha" + +#: chat.php:352 chat.php:775 chat.php:835 +msgid "Only for guests" +msgstr "Nur für Gäste" + +#: chat.php:353 chat.php:1220 +msgid "Topic" +msgstr "Thema" + +#: chat.php:354 chat.php:781 +msgid "Let guests register themselves" +msgstr "Gäste sich selbst registrieren lassen" + +#: chat.php:355 chat.php:862 +msgid "Default time zone" +msgstr "Standard Zeitzone" + +#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259 +msgid "Initial Setup" +msgstr "Erste Einrichtung" + +#: chat.php:588 +#, php-format +msgid "Redirecting to: %s" +msgstr "Leite weiter zu: %s" + +#: chat.php:595 +#, php-format +msgid "" +"Dangerous non-http link requested, copy paste this link if you are really " +"sure: %s" +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 +#, php-format +msgid "Non-http link requested: %s" +msgstr "Nicht-http Adresse angefordert: %s" + +#: chat.php:599 +#, php-format +msgid "If it's not working, try this one: %s" +msgstr "Wenn sie nicht funktioniert, probiere diese: %s" + +#: chat.php:609 +msgid "Access denied" +msgstr "Zugriff verweigert" + +#: chat.php:609 +#, 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 +msgid "Logout" +msgstr "Abmelden" + +#: chat.php:636 +msgid "Copy:" +msgstr "Kopiere:" + +#: chat.php:724 +msgid "Chat Setup" +msgstr "Chat Einrichtung" + +#: chat.php:734 chat.php:1233 +msgid "Allow" +msgstr "Erlauben" + +#: chat.php:739 chat.php:1238 +msgid "Allow with waitingroom" +msgstr "Mit Warteraum erlauben" + +#: chat.php:744 chat.php:1243 +msgid "Require moderator approval" +msgstr "Moderator-Erlaubnis benötigen" + +#: chat.php:749 chat.php:1248 +msgid "Only members" +msgstr "Nur Mitglieder" + +#: chat.php:754 chat.php:1251 +msgid "Disable chat" +msgstr "Chat deaktivieren" + +#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229 +msgid "Disabled" +msgstr "Deaktiviert" + +#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219 +msgid "Enabled" +msgstr "Aktiviert" + +#: chat.php:792 +msgid "As applicant" +msgstr "Als Anwerber" + +#: chat.php:797 +msgid "As member" +msgstr "Als Mitglied" + +#: chat.php:800 +msgid "System messages" +msgstr "Systemnachrichten" + +#: chat.php:822 chat.php:1053 +#, php-format +msgid "" +"The %s extension of PHP is required for this feature. Please install it " +"first." +msgstr "" +"Für diese Funktion wird die %s PHP-Erweiterung benötigt. Bitte installieren " +"Sie diese zuerst." + +#: chat.php:847 +msgid "Simple" +msgstr "Einfach" + +#: chat.php:852 +msgid "Moderate" +msgstr "Mittel" + +#: chat.php:857 +msgid "Extreme" +msgstr "Extrem" + +#: chat.php:906 chat.php:1548 chat.php:1610 +msgid "Apply" +msgstr "Anwenden" + +#: chat.php:910 chat.php:1050 +msgid "Backup and restore" +msgstr "Sichern und wiederherstellen" + +#: chat.php:912 +msgid "Destroy chat" +msgstr "Chat zerstören" + +#: chat.php:1057 chat.php:1066 +msgid "Settings" +msgstr "Einstellungen" + +#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575 +#: chat.php:1622 +msgid "Filter" +msgstr "Filter" + +#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538 +msgid "Members" +msgstr "Mitglieder" + +#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322 +msgid "Notes" +msgstr "Notizen" + +#: chat.php:1061 +msgid "Backup" +msgstr "Sichern" + +#: chat.php:1070 +msgid "Restore" +msgstr "Wiederherstellen" + +#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260 +msgid "Go to the Setup-Page" +msgstr "Zur Einrichtungsseite gehen" + +#: chat.php:1082 chat.php:1091 chat.php:1949 +msgid "Are you sure?" +msgstr "Sind Sie sicher?" + +#: chat.php:1083 chat.php:1092 chat.php:1956 +msgid "Yes" +msgstr "Ja" + +#: chat.php:1084 chat.php:1093 chat.php:1963 +msgid "No" +msgstr "Nein" + +#: chat.php:1101 chat.php:4259 +msgid "Superadmin Login" +msgstr "Superadmin Anmeldung" + +#: chat.php:1102 +msgid "Superadmin Nickname:" +msgstr "Superadmin Nickname:" + +#: chat.php:1103 +msgid "Superadmin Password:" +msgstr "Superadmin Passwort:" + +#: chat.php:1104 +msgid "Confirm Password:" +msgstr "Passwort bestätigen:" + +#: chat.php:1105 +msgid "Initialise Chat" +msgstr "Chat initalisieren" + +#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439 +msgid "Change language:" +msgstr "Sprache ändern:" + +#: chat.php:1117 +msgid "Database successfully updated!" +msgstr "Datenbank erfolgreich aktualisiert!" + +#: chat.php:1125 chat.php:1326 chat.php:2407 +msgid "Nickname:" +msgstr "Nickname:" + +#: chat.php:1126 chat.php:1327 chat.php:2408 +msgid "Password:" +msgstr "Passwort:" + +#: chat.php:1128 +msgid "Login" +msgstr "Anmelden" + +#: chat.php:1129 +msgid "Forgot login?" +msgstr "Zugangsdaten vergessen?" + +#: chat.php:1142 chat.php:1306 +msgid "Reset password" +msgstr "Passwort zurücksetzen" + +#: chat.php:1150 +#, php-format +msgid "" +"Successfully reset password for username %s. Please remove the password " +"reset define from the script again." +msgstr "" +"Passwort erfolgreich für Nutzer %s zurückgesetzt. Bitte entfernen Sie das " +"Passwort zurücksetzen define wieder aus dem Skript." + +#: 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 "" +"Bitte bearbeiten Sie das Skript und fügen Sie folgendes am Ende der Datei " +"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 +msgid "(choose)" +msgstr "(auswählen)" + +#: chat.php:1170 +msgid "All guests" +msgstr "Alle Gäste" + +#: chat.php:1182 +msgid "Administrative functions" +msgstr "Administrative Funktionen" + +#: chat.php:1188 +msgid "Clean messages" +msgstr "Nachrichten löschen" + +#: chat.php:1191 +msgid "Whole room" +msgstr "Gesamten Raum" + +#: chat.php:1192 +msgid "Selection" +msgstr "Auswahl" + +#: chat.php:1193 +msgid "Following nickname:" +msgstr "Folgender Nickname:" + +#: chat.php:1200 +msgid "Clean" +msgstr "Löschen" + +#: chat.php:1202 +#, php-format +msgid "Kick Chatter (%d minutes)" +msgstr "Teilnehmer rausschmeißen (%d Minuten)" + +#: chat.php:1204 +msgid "Kickmessage:" +msgstr "Begründung:" + +#: chat.php:1205 +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 +msgid "Kick" +msgstr "Rausschmeißen" + +#: chat.php:1208 +msgid "Logout inactive Chatter" +msgstr "Inaktive Teilnehmer abmelden" + +#: chat.php:1212 +msgid "View active sessions" +msgstr "Aktive Sitzungen anzeigen" + +#: chat.php:1212 chat.php:1603 +msgid "Linkfilter" +msgstr "Linkfilter" + +#: chat.php:1217 +msgid "View" +msgstr "Anzeigen" + +#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582 +#: chat.php:1626 +msgid "Change" +msgstr "Ändern" + +#: chat.php:1256 +msgid "Register applicant" +msgstr "Anwerber registrieren" + +#: chat.php:1264 chat.php:1322 chat.php:1328 +msgid "Register" +msgstr "Registrieren" + +#: chat.php:1294 +msgid "Delete from database" +msgstr "Aus der Datenbank löschen" + +#: chat.php:1294 +msgid "Deny access (!)" +msgstr "Zugriff verweigern (!)" + +#: chat.php:1296 +msgid "Set to applicant (SG)" +msgstr "Zu Anwerber machen (SG)" + +#: chat.php:1298 +msgid "Set to regular member" +msgstr "Zu regulärem Mitglied machen" + +#: chat.php:1299 +msgid "Set to moderator (M)" +msgstr "Zu Moderator machen (M)" + +#: chat.php:1300 +msgid "Set to supermod (SM)" +msgstr "Zu Supermod machen (SM)" + +#: chat.php:1302 +msgid "Set to admin (A)" +msgstr "Zu Admin machen (A)" + +#: chat.php:1314 +msgid "Register Guest" +msgstr "Gast registrieren" + +#: chat.php:1324 +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 +msgid "Reload" +msgstr "Aktualisieren" + +#: chat.php:1345 +msgid "Active Sessions" +msgstr "Aktive Sitzungen" + +#: chat.php:1346 chat.php:1873 +msgid "Nickname" +msgstr "Nickname" + +#: chat.php:1346 +msgid "Timeout in" +msgstr "Ablauf in" + +#: chat.php:1346 chat.php:1873 +msgid "User-Agent" +msgstr "User-Agent" + +#: chat.php:1350 +msgid "IP-Address" +msgstr "IP-Adresse" + +#: chat.php:1351 +msgid "Actions" +msgstr "Aktionen" + +#: chat.php:1393 +msgid "Unban" +msgstr "Entsperren" + +#: chat.php:1416 +msgid "Incorrect regular expression!" +msgstr "Ungültiger regulärer Ausdruck!" + +#: chat.php:1416 chat.php:1424 +#, php-format +msgid "Your match was as follows: %s" +msgstr "Ihr Match war folgender: %s" + +#: chat.php:1424 +msgid "" +"Your match was too long. You can use max. 255 characters. Try splitting it " +"up." +msgstr "" +"Ihre Entsprechung war zu lang. Sie können max. 255 Zeichen benutzen. " +"Versuchen Sie diesen aufzuteilen." + +#: chat.php:1541 chat.php:1606 +msgid "Filter ID:" +msgstr "Filter ID:" + +#: chat.php:1542 chat.php:1607 +msgid "Match" +msgstr "Entsprechung" + +#: chat.php:1543 chat.php:1608 +msgid "Replace" +msgstr "Ersetzen" + +#: chat.php:1544 chat.php:1578 chat.php:1589 +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 +msgid "Regex" +msgstr "Regex" + +#: chat.php:1547 chat.php:1581 chat.php:1592 +msgid "Case sensitive" +msgstr "Groß-/Kleinschreibung beachten" + +#: chat.php:1586 chat.php:1630 +msgid "New filter:" +msgstr "Neuer Filter:" + +#: chat.php:1593 chat.php:1634 +msgid "Add" +msgstr "Hinzufügen" + +#: chat.php:1691 +msgid "" +"This chat uses frames. Please enable frames in your browser or use a " +"suitable one!" +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 +msgid "Back to the login page." +msgstr "Zurück zur Anmeldeseite." + +#: chat.php:1709 +msgid "Bottom" +msgstr "Unten" + +#: chat.php:1710 +msgid "Manual refresh required" +msgstr "Manuelles Neuladen erforderlich" + +#: chat.php:1726 +msgid "Top" +msgstr "Oben" + +#: chat.php:1734 chat.php:1940 chat.php:1942 +msgid "Delete selected messages" +msgstr "Ausgewählte Nachrichten löschen" + +#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281 +msgid "Back to the chat." +msgstr "Zurück zum Chat." + +#: chat.php:1774 chat.php:1791 +msgid "Admin notes" +msgstr "Adminnotizen" + +#: chat.php:1777 chat.php:1788 +msgid "Staff notes" +msgstr "Moderatornotizen" + +#: chat.php:1811 +msgid "Notes saved!" +msgstr "Notizen gespeichert!" + +#: chat.php:1835 chat.php:2122 +#, php-format +msgid "Last edited by %1$s at %2$s" +msgstr "Zuletzt bearbeitet von %1$s um %2$s" + +#: chat.php:1848 +msgid "Save notes" +msgstr "Notizen speichern" + +#: chat.php:1850 +msgid "Revisions:" +msgstr "Revisionen:" + +#: chat.php:1853 +msgid "Older" +msgstr "Älter" + +#: chat.php:1857 +msgid "Newer" +msgstr "Neuer" + +#: chat.php:1868 chat.php:1914 +msgid "Waiting room" +msgstr "Warteraum" + +#: chat.php:1880 +msgid "Allow checked" +msgstr "Ausgewählte erlauben" + +#: chat.php:1881 +msgid "Allow all" +msgstr "Alle erlauben" + +#: chat.php:1882 +msgid "Deny checked" +msgstr "Ausgewählte abweisen" + +#: chat.php:1883 +msgid "Deny all" +msgstr "Alle abweisen" + +#: chat.php:1883 +msgid "Send message to denied:" +msgstr "Nachricht an abgewiesene senden:" + +#: chat.php:1884 +msgid "Submit" +msgstr "Senden" + +#: chat.php:1886 +msgid "No more entry requests to approve." +msgstr "Keine weiteren Beitrittsanfragen zu akzeptieren." + +#: chat.php:1916 +#, php-format +msgid "" +"Welcome %1$s, your login has been delayed, you can access the chat in %2$d " +"seconds." +msgstr "" +"Wilkommen %1$s, Ihre Anmeldung wurde verzögert, Sie können den Chat in %2$d " +"Sekunden benutzen." + +#: chat.php:1918 +#, 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 "" +"Wilkommen %1$s, Ihre Anmeldung wurde verzögert, Sie können den Chat " +"benutzen, sobald ein Moderator Sie hereinlässt." + +#: chat.php:1921 +#, php-format +msgid "" +"If this page doesn't refresh every %d seconds, use the button below to " +"reload it manually!" +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 +msgid "Exit Chat" +msgstr "Verlassen" + +#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430 +msgid "Rules" +msgstr "Regeln" + +#: chat.php:1985 +msgid "Send to" +msgstr "Senden an" + +#: chat.php:1990 +msgid "All chatters" +msgstr "Alle Teilnehmer" + +#: chat.php:1996 +msgid "Members only" +msgstr "Nur Mitglieder" + +#: chat.php:2003 +msgid "Staff only" +msgstr "Nur Moderatoren" + +#: chat.php:2010 +msgid "Admin only" +msgstr "Nur Admins" + +#: chat.php:2019 +msgid "(offline)" +msgstr "(offline)" + +#: chat.php:2043 +msgid "Also purge messages" +msgstr "Auch Nachrichten löschen" + +#: chat.php:2050 +msgid "Delete last message" +msgstr "Letzte Nachricht löschen" + +#: chat.php:2055 +msgid "Delete all messages" +msgstr "Alle Nachrichten löschen" + +#: chat.php:2057 +msgid "Switch to single-line" +msgstr "Zu Einzel-Zeile wechseln" + +#: chat.php:2059 +msgid "Switch to multi-line" +msgstr "Zu Mehrfach-Zeilen wechseln" + +#: chat.php:2070 +#, php-format +msgid "Welcome %s!" +msgstr "Willkommen %s!" + +#: chat.php:2071 +#, 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 "" +"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." + +#: chat.php:2087 +msgid "Help" +msgstr "Hilfe" + +#: 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." +msgstr "" +"Alle Funktionen sollten recht selbsterklärend sein, benutze einfach die " +"Knöpfe. In Ihrem Profil könnsen Sie die Aktualisierungsrate und Schriftfarbe " +"anpassen, sowie Nutzer ignorieren.
Hinweis: Dies ist ein Chat, " +"wenn Sie also nichts schreiben, werden Sie automatisch nach einiger Zeit " +"abgemeldet." + +#: 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 "" +"Wenn Sie ein Bild einbetten möchten, fügen Sie einfach ein [img] vor die " +"Adresse des Bildes. Beispiel: [img]http://example.com/images/file.jpg bettet " +"das Bild in Ihrem Beitrag ein." + +#: 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 "" +"Mitglieder: Sie werden einige zusätzliche Optionen in Ihrem Profil haben. " +"Sie können Ihre Schriftart ändern, Ihr Passwort jederzeit ändern und " +"natürlich können Sie auch Ihr Profil löschen." + +#: 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 "" +"Moderatoren: Achten Sie auf den Admin-Knof unten. Er ruft eine Seite auf, " +"auf der Sie Nachrichten löschen können, Teilnehmer rausschmeißen können, " +"alle aktive Sitzungen anzeigen lassen können und den Gastzugriff " +"deaktivieren können, falls dies nötig sein sollte." + +#: chat.php:2097 +msgid "" +"Admins: You'll be furthermore able to register guests, edit members and " +"register new nicknames." +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 +msgid "Your Profile" +msgstr "Ihr Profil" + +#: chat.php:2144 +msgid "Don't ignore anymore" +msgstr "Nicht mehr ignorieren" + +#: chat.php:2152 +msgid "Ignore" +msgstr "Ignorieren" + +#: chat.php:2163 +#, php-format +msgid "Refresh rate (%1$d-%2$d seconds)" +msgstr "Aktualisierungsrate (%1$d-%2$d Sekunden)" + +#: chat.php:2167 chat.php:2170 +msgid "View examples" +msgstr "Beispiele anzeigen" + +#: chat.php:2174 +msgid "Fontface" +msgstr "Schriftart" + +#: chat.php:2175 +msgid "Room Default" +msgstr "Raumstandard" + +#: chat.php:2188 +msgid "Bold" +msgstr "Fett" + +#: chat.php:2192 +msgid "Italic" +msgstr "Kursiv" + +#: chat.php:2196 +msgid "Small" +msgstr "Klein" + +#: chat.php:2199 +msgid "Example for your chosen font" +msgstr "Beispiel für Ihre gewählte Schrift" + +#: chat.php:2203 +msgid "Autoscroll (for old browsers or top-to-bottom sort)." +msgstr "Autoscrollen (für alte Browser oder oben nach unten Sortierung)." + +#: chat.php:2234 +msgid "For everyone" +msgstr "Für jeden" + +#: chat.php:2239 +msgid "For members only" +msgstr "Nur für Mitglieder" + +#: chat.php:2244 +msgid "For staff only" +msgstr "Nur für Moderatoren" + +#: chat.php:2248 +msgid "Time zone" +msgstr "Zeitzone" + +#: chat.php:2261 +msgid "Change Password" +msgstr "Passwort ändern" + +#: chat.php:2263 +msgid "Old password:" +msgstr "Altes Passwort:" + +#: chat.php:2264 +msgid "New password:" +msgstr "Neues Passwort:" + +#: chat.php:2265 +msgid "Confirm new password:" +msgstr "Passwort bestätigen:" + +#: chat.php:2268 +msgid "Change Nickname" +msgstr "Nickname ändern" + +#: chat.php:2269 +msgid "New nickname:" +msgstr "Neuer Nickname:" + +#: chat.php:2273 +msgid "Save changes" +msgstr "Änderungen speichern" + +#: chat.php:2275 +msgid "Delete account" +msgstr "Konto löschen" + +#: chat.php:2301 +msgid "Reload Post Box" +msgstr "Postbox neu laden" + +#: chat.php:2304 +msgid "Reload Messages" +msgstr "Nachrichten neu laden" + +#: chat.php:2307 +msgid "Profile" +msgstr "Profil" + +#: chat.php:2311 chat.php:2528 +msgid "Admin" +msgstr "Admin" + +#: chat.php:2318 +msgid "View public notes" +msgstr "Öffentliche Notizen anzeigen" + +#: chat.php:2325 +msgid "Clone" +msgstr "Klonen" + +#: chat.php:2334 +msgid "Rearrange" +msgstr "Umordnen" + +#: chat.php:2337 +msgid "Rules & Help" +msgstr "Regeln & Hilfe" + +#: chat.php:2358 chat.php:2362 +msgid "File not found!" +msgstr "Datei nicht gefunden!" + +#: chat.php:2370 +#, php-format +msgid "Bye %s, visit again soon!" +msgstr "Auf Wiedersehen %s, besuche uns bald wieder!" + +#: chat.php:2377 +msgid "Colourtable" +msgstr "Farbtabelle" + +#: chat.php:2388 +msgid "Back to your Profile" +msgstr "Zurück zu Ihrem Profil" + +#: chat.php:2412 +msgid "Repeat password
to register" +msgstr "Passwortwiederholung
(zur Neuregistrierung)" + +#: chat.php:2412 +msgid "(optional)" +msgstr "(optional)" + +#: chat.php:2417 +msgid "Guests, choose a colour:" +msgstr "Textfarbe auswählen:" + +#: chat.php:2417 +msgid "Random Colour" +msgstr "Zufällige Farbe" + +#: chat.php:2421 chat.php:2435 chat.php:2569 +msgid "Sorry, currently members only!" +msgstr "Entschuldigung, zur Zeit nur Mitglieder!" + +#: chat.php:2423 chat.php:2437 +msgid "Enter Chat" +msgstr "Chat beitreten" + +#: chat.php:2457 +#, php-format +msgid "Error: %s" +msgstr "Fehler: %s" + +#: chat.php:2467 +msgid "Fatal error" +msgstr "Fataler Fehler" + +#: chat.php:2470 +#, php-format +msgid "Fatal error: %s" +msgstr "Fataler Fehler: %s" + +#: chat.php:2482 chat.php:2693 +msgid "Failed login attempt(s)" +msgstr "Fehlgeschlagene(r) Anmeldeversuch(e)" + +#: chat.php:2489 +#, php-format +msgid "Read %d messages in your inbox" +msgstr "%d Nachrichten im Posteingang lesen" + +#: chat.php:2498 +#, php-format +msgid "%d new guests to approve" +msgstr "%d neue Gäste zum Hereinlassen" + +#: chat.php:2530 +msgid "Admin:" +msgstr "Admin:" + +#: chat.php:2533 +msgid "Staff" +msgstr "Moderatoren" + +#: chat.php:2535 +msgid "Staff:" +msgstr "Moderatoren:" + +#: chat.php:2540 +msgid "Members:" +msgstr "Mitglieder:" + +#: chat.php:2542 +msgid "Guests" +msgstr "Gäste" + +#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092 +#, php-format +msgid "" +"Invalid nickname (%1$d characters maximum and has to match the regular " +"expression \"%2$s\")" +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 +#, php-format +msgid "" +"Invalid password (At least %1$d characters and has to match the regular " +"expression \"%2$s\")" +msgstr "" +"Ungültiges Passwort (Mindestens %1$d Zeichen und muss dem regulären Ausdruck " +"\"%2$s\" entsprechen)" + +#: chat.php:2574 chat.php:2739 +msgid "Wrong global Password!" +msgstr "Falsches gloables Passwort!" + +#: chat.php:2591 chat.php:2612 +msgid "Wrong Captcha" +msgstr "Falsches Captcha" + +#: chat.php:2596 chat.php:2604 +msgid "Captcha already used or timed out." +msgstr "Captcha wurde bereits verwendet oder ist abgelaufen." + +#: chat.php:2652 +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 +msgid "Wrong Password!" +msgstr "Falsches Passwort!" + +#: chat.php:2696 +msgid "Dismiss" +msgstr "Ausblenden" + +#: chat.php:2747 chat.php:3171 chat.php:4096 +msgid "Password confirmation does not match!" +msgstr "Passwortbestätigung stimmt nicht überein!" + +#: chat.php:2859 +msgid "Invalid/expired session" +msgstr "Ungültige/abgelaufene Sitzung" + +#: chat.php:2875 chat.php:3412 +msgid "You have been kicked!" +msgstr "Du wurdest rausgeschmissen!" + +#: chat.php:2885 +#, php-format +msgid "Currently %d chatter(s) in room:" +msgstr "Zurzeit sind %d Teilnehmer im Raum:" + +#: chat.php:2933 +msgid "This nickname is a registered member." +msgstr "Dieser Nickname ist bereits ein registriertes Mitglied." + +#: chat.php:2960 chat.php:3001 +#, php-format +msgid "%s is already registered." +msgstr "%s ist bereits registriert." + +#: chat.php:2969 chat.php:2990 +#, php-format +msgid "Can't register %s" +msgstr "%s kann nicht registriert werden" + +#: chat.php:2978 chat.php:3023 +#, php-format +msgid "%s successfully registered." +msgstr "%s wurde erfolgreich registriert." + +#: chat.php:3031 chat.php:3036 +#, php-format +msgid "Can't change status of %s" +msgstr "Der Status von %s kann nicht geändert werden" + +#: chat.php:3047 +#, php-format +msgid "%s successfully deleted from database." +msgstr "%s wurde erfolgreich aus der Datenbank gelöscht." + +#: chat.php:3056 +#, php-format +msgid "Status of %s successfully changed." +msgstr "Status von %s erfolgreich geändert." + +#: chat.php:3073 +#, php-format +msgid "Successfully reset password for %s" +msgstr "Passwort für %s erfolgreich zurückgesetzt" + +#: chat.php:3075 +#, php-format +msgid "Can't reset password for %s" +msgstr "Passwort für %s kann nicht zurückgesetzt werden" + +#: chat.php:3190 +msgid "Your profile has successfully been saved." +msgstr "Ihr Profil wurde erfolgreich gespeichert." + +#: chat.php:3202 +msgid "Nickname is already taken" +msgstr "Nickname ist bereits vergeben" + +#: chat.php:3714 +msgid "system message" +msgstr "Systemnachricht" + +#: chat.php:3921 +msgid "Beige" +msgstr "Beige" + +#: chat.php:3922 +msgid "Black" +msgstr "Schwarz" + +#: chat.php:3923 +msgid "Blue" +msgstr "Blau" + +#: chat.php:3924 +msgid "Blue violet" +msgstr "Blauviolett" + +#: chat.php:3925 +msgid "Brown" +msgstr "Braun" + +#: chat.php:3926 +msgid "Cyan" +msgstr "Türkis" + +#: chat.php:3927 +msgid "Dark blue" +msgstr "Dunkelblau" + +#: chat.php:3928 +msgid "Dark green" +msgstr "Dunkelgrün" + +#: chat.php:3929 +msgid "Dark red" +msgstr "Dunkelrot" + +#: chat.php:3930 +msgid "Dark violet" +msgstr "Dunkelviolett" + +#: chat.php:3931 +msgid "Sky blue" +msgstr "Himmelsblau" + +#: chat.php:3932 +msgid "Gold" +msgstr "Gold" + +#: chat.php:3933 +msgid "Grey" +msgstr "Grau" + +#: chat.php:3934 +msgid "Green" +msgstr "Grün" + +#: chat.php:3935 +msgid "Hot pink" +msgstr "Pink" + +#: chat.php:3936 +msgid "Indigo" +msgstr "Indigoblau" + +#: chat.php:3937 +msgid "Light blue" +msgstr "Hellblau" + +#: chat.php:3938 +msgid "Light green" +msgstr "Hellgrün" + +#: chat.php:3939 +msgid "Lime green" +msgstr "Lindgrün" + +#: chat.php:3940 +msgid "Magenta" +msgstr "Magenta" + +#: chat.php:3941 +msgid "Olive" +msgstr "Oliv" + +#: chat.php:3942 +msgid "Orange" +msgstr "Orange" + +#: chat.php:3943 +msgid "Orange red" +msgstr "Orangerot" + +#: chat.php:3944 +msgid "Purple" +msgstr "Lila" + +#: chat.php:3945 +msgid "Red" +msgstr "Rot" + +#: chat.php:3946 +msgid "Royal blue" +msgstr "Königsblau" + +#: chat.php:3947 +msgid "Sea green" +msgstr "Seegrün" + +#: chat.php:3948 +msgid "Sienna" +msgstr "Siena" + +#: chat.php:3949 +msgid "Silver" +msgstr "Silber" + +#: chat.php:3950 +msgid "Tan" +msgstr "Hellbraun" + +#: chat.php:3951 +msgid "Teal" +msgstr "Blaugrün" + +#: chat.php:3952 +msgid "Violet" +msgstr "Violett" + +#: chat.php:3953 +msgid "White" +msgstr "Weiß" + +#: chat.php:3954 +msgid "Yellow" +msgstr "Gelb" + +#: chat.php:3955 +msgid "Yellow green" +msgstr "Gelbgrün" + +#: chat.php:4077 +msgid "Successfully destroyed chat" +msgstr "Chat erfolgreich zerstört" + +#: chat.php:4086 +msgid "" +"Database tables already exist! To continue, you have to delete these tables " +"manually first." +msgstr "" +"Datenbanktabellen existieren bereits! Um fortzufahren, müssen Sie diese " +"Tabellen zuerst manuell löschen." + +#: chat.php:4089 +msgid "A Superadmin already exists!" +msgstr "Ein Superadmin existiert bereits!" + +#: chat.php:4182 chat.php:4369 +#, php-format +msgid "%s - " +msgstr "%s - " + +#: chat.php:4183 chat.php:4369 +#, php-format +msgid "[M] %s - " +msgstr "[M] %s - " + +#: chat.php:4184 chat.php:4369 +#, php-format +msgid "[Staff] %s - " +msgstr "[Moderatoren] %s - " + +#: chat.php:4185 chat.php:4369 +#, php-format +msgid "[Admin] %s - " +msgstr "[Admin] %s - " + +#: chat.php:4186 chat.php:4369 +#, php-format +msgid "[%1$s to %2$s] - " +msgstr "[%1$s an %2$s] - " + +#: chat.php:4187 +#, php-format +msgid "%s entered the chat." +msgstr "%s hat den Chat betreten." + +#: chat.php:4188 +#, php-format +msgid "%s left the chat." +msgstr "%s hat den Chat verlassen." + +#: chat.php:4189 +#, php-format +msgid "%s is now a registered member." +msgstr "%s ist jetzt ein registriertes Mitglied." + +#: chat.php:4190 +#, 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." +msgstr "%s wurde rausgeschmissen." + +#: chat.php:4192 +#, php-format +msgid "%s have been kicked." +msgstr "%s wurden rausgeschmissen." + +#: chat.php:4193 +msgid "All guests have been kicked." +msgstr "Alle Gäste wurden rausgeschmissen." + +#: chat.php:4194 +#, php-format +msgid "%s has been cleaned." +msgstr "%s wurde geleert." + +#: chat.php:4202 chat.php:4396 +msgid "Temporarily disabled" +msgstr "Kurzzeitig deaktiviert" + +#: chat.php:4218 chat.php:4594 +msgid "A chat community" +msgstr "Eine Chatgemeinschaft" + +#: chat.php:4256 +msgid "Successfully registered!" +msgstr "Erfolgreich registriert!" + +#: chat.php:4522 chat.php:4721 chat.php:4728 +msgid "No connection to database!" +msgstr "Keine Verbindung zur Datenbank!" + +#: chat.php:4531 +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 +#, 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 "" +"Die %s PHP-Erweiterung wird benötigt, um die Verschlüsselungs-Funktion zu " +"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 +#, php-format +msgid "" +"The %s extension of PHP is required for the selected database driver. Please " +"install it first." +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 +msgid "" +"No connection to database, please create a database and edit the script to " +"use the correct database with given username and password!" +msgstr "" +"Keine Verbindung zur Datenbank, bitte erstelle eine Datenbank und bearbeite " +"das Skript, um die korrekte Datenbank mit angegebenem Benutzernamen und " +"Passwort zu benutzen!" + +#: 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 "" +"Die memcached PHP-Erweiterung wird benötigt, um die Cache-Funktion zu " +"benutzen. Bitte installieren Sie diese zuerst oder setzen Sie die memcached " +"Einstellung zurück auf false." + +#~ msgid "Back to setup" +#~ msgstr "Zurück zur Einrichtungsseite" + +#~ msgid "Admin Notes" +#~ msgstr "Adminnotizen" + +#~ msgid "Sorry, currently members only" +#~ msgstr "Entschuldigung, zur Zeit nur Mitglieder!" diff --git a/locale/es_ES/LC_MESSAGES/le-chat-php.mo b/locale/es_ES/LC_MESSAGES/le-chat-php.mo new file mode 100644 index 0000000..fedcfa3 Binary files /dev/null and b/locale/es_ES/LC_MESSAGES/le-chat-php.mo differ diff --git a/locale/es_ES/LC_MESSAGES/le-chat-php.po b/locale/es_ES/LC_MESSAGES/le-chat-php.po new file mode 100644 index 0000000..b2b4167 --- /dev/null +++ b/locale/es_ES/LC_MESSAGES/le-chat-php.po @@ -0,0 +1,1637 @@ +# 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: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-01-18 21:32+0100\n" +"PO-Revision-Date: 2023-01-18 21:37+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: es_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.1.1\n" + +#: chat.php:261 +msgid "Enable applicants" +msgstr "Habilitar aplicantes" + +#: chat.php:262 +msgid "Embed images" +msgstr "Habilitar imágenes" + +#: chat.php:263 chat.php:2202 +msgid "Show Timestamps" +msgstr "Mostrar fecha y hora" + +#: chat.php:264 +msgid "Show session-IP" +msgstr "Mostrar IP de la sesión" + +#: chat.php:265 +msgid "Members can kick, if no moderator is present" +msgstr "Los miembros pueden expulsar, si no hay moderador presente" + +#: chat.php:266 +msgid "Members can always kick" +msgstr "Los miembros siempre pueden expulsar" + +#: chat.php:267 +msgid "Force redirection" +msgstr "Forzar redirección" + +#: chat.php:268 +msgid "Incognito mode" +msgstr "Modo incógnito" + +#: chat.php:269 +msgid "Send mail on new public message" +msgstr "Enviar mail en nuevo mensaje público" + +#: chat.php:270 +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 +msgid "Disable private messages" +msgstr "Desactivar mensajes privados" + +#: chat.php:272 chat.php:2223 +msgid "Enable offline inbox" +msgstr "Activar inbox offline" + +#: chat.php:273 +msgid "Show a greeting message before showing the messages" +msgstr "Mostrar un saludo antes de los mensajes" + +#: chat.php:274 chat.php:2204 +msgid "Sort messages from top to bottom" +msgstr "Sort messages from top to bottom" + +#: chat.php:275 chat.php:2205 +msgid "Hide list of chatters" +msgstr "Esconder lista de chatters" + +#: chat.php:276 chat.php:1780 chat.php:1794 +msgid "Personal notes" +msgstr "Notas personales" + +#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110 +msgid "Public notes" +msgstr "Notas públicas" + +#: chat.php:278 +msgid "Apply kick filter on moderators" +msgstr "Aplicar Kick filter en moderadores o administradores" + +#: chat.php:279 +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 +msgid "Hide reload post box button" +msgstr "" + +#: chat.php:281 +msgid "Hide reload messages button" +msgstr "" + +#: chat.php:282 +msgid "Hide profile button" +msgstr "" + +#: chat.php:283 +msgid "Hide admin button" +msgstr "" + +#: chat.php:284 +msgid "Hide notes button" +msgstr "" + +#: chat.php:285 +msgid "Hide clone button" +msgstr "" + +#: chat.php:286 +msgid "Hide rearrange button" +msgstr "" + +#: chat.php:287 +msgid "Hide help button" +msgstr "" + +#: chat.php:288 +msgid "Apply postbox delete button globally" +msgstr "" + +#: chat.php:289 +msgid "Allow enhancing functionality with JavaScript" +msgstr "" + +#: chat.php:292 chat.php:2170 +msgid "Background colour" +msgstr "Color de fondo" + +#: chat.php:293 chat.php:2167 +msgid "Font colour" +msgstr "Color de texto" + +#: chat.php:296 +msgid "Entrance" +msgstr "Entrando" + +#: chat.php:297 +msgid "Leaving" +msgstr "Saliendo" + +#: chat.php:298 +msgid "Member registered" +msgstr "Miembro registrado" + +#: chat.php:299 +msgid "Applicant registered" +msgstr "Aplicante registrado" + +#: chat.php:300 +msgid "Kicked" +msgstr "Expulsado" + +#: chat.php:301 +msgid "Multiple kicked" +msgstr "Expulsión múltiple" + +#: chat.php:302 +msgid "All kicked" +msgstr "Todos expulsados" + +#: chat.php:303 +msgid "Room cleaned" +msgstr "Sala limpiada" + +#: chat.php:304 +msgid "Message to all" +msgstr "Mensajes a todos" + +#: chat.php:305 +msgid "Message to members only" +msgstr "Sólo mensajes a miembros" + +#: chat.php:306 +msgid "Message to staff only" +msgstr "Sólo mensajes a staff" + +#: chat.php:307 +msgid "Message to admins only" +msgstr "Sólo mensajes a administradores" + +#: chat.php:308 +msgid "Private message" +msgstr "Mensaje privado" + +#: chat.php:309 +msgid "Attachement" +msgstr "" + +#: chat.php:312 +msgid "Member timeout (minutes)" +msgstr "Vencimiento para miembros (minutos)" + +#: chat.php:313 +msgid "Guest timeout (minutes)" +msgstr "Vencimiento para invitados (minutos)" + +#: chat.php:314 +msgid "Kick penalty (minutes)" +msgstr "Penalidad al expulsar (minutos)" + +#: chat.php:315 +msgid "Waiting room time (seconds)" +msgstr "Tiempo en sala de espera (segundos)" + +#: chat.php:316 +msgid "Captcha timeout (seconds)" +msgstr "Vencimiento de captcha (segundos)" + +#: chat.php:317 +msgid "Message timeout (minutes)" +msgstr "Vencimiento de mensajes (minutos)" + +#: chat.php:318 +msgid "Message limit (public)" +msgstr "Límite de mensajes (público)" + +#: chat.php:319 +msgid "Maximal message length" +msgstr "Largo máximo de mensaje" + +#: chat.php:320 +msgid "Maximal nickname length" +msgstr "Largo máximo para apodos" + +#: chat.php:321 +msgid "Minimal password length" +msgstr "Largo mínimo para contraseñas" + +#: chat.php:322 +msgid "Default message reload time (seconds)" +msgstr "Tiempo de actualización de mensajes por defecto (segundos)" + +#: chat.php:323 +msgid "Number of notes revisions to keep" +msgstr "Numero de notas para revisar" + +#: chat.php:324 +msgid "Maximum upload size in KB" +msgstr "Máxima subida en KB" + +#: chat.php:325 +msgid "Enable file uploads" +msgstr "Habilitar subida de archivos" + +#: chat.php:326 +msgid "Lowest refresh rate" +msgstr "" + +#: chat.php:327 +msgid "Highest refresh rate" +msgstr "" + +#: chat.php:330 +msgid "Rules (html)" +msgstr "Reglas (html)" + +#: chat.php:331 +msgid "CSS Style" +msgstr "Estilo CSS" + +#: chat.php:332 +msgid "Chat disabled message (html)" +msgstr "Mensaje de chat desactivado (html)" + +#: chat.php:335 +msgid "" +"Date " +"formating" +msgstr "" +"Formato " +"de fechas" + +#: chat.php:336 +msgid "Characters used in Captcha" +msgstr "Caracteres usados en el Captcha" + +#: chat.php:337 +msgid "Custom redirection script" +msgstr "Script de redirección personalizado" + +#: chat.php:338 +msgid "Chat name" +msgstr "Nombre de la sala" + +#: chat.php:339 +msgid "Send mail using this address" +msgstr "Enviar mail usando esta dirección" + +#: chat.php:340 +msgid "Send mail to this address" +msgstr "Enviar mail a esta dirección" + +#: chat.php:341 +msgid "Nickname regex" +msgstr "" + +#: chat.php:342 +msgid "Password regex" +msgstr "" + +#: chat.php:343 +msgid "Link to external CSS file (on your own server)" +msgstr "Link para archivo CSS externo" + +#: chat.php:344 +msgid "Meta description (best 50 - 160 characters for SEO)" +msgstr "" + +#: chat.php:345 +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 +msgid "Change Guestaccess" +msgstr "Cambiar acceso de invitado" + +#: chat.php:349 +msgid "Enable global Password" +msgstr "" + +#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433 +msgid "Global Password:" +msgstr "Contraseña global:" + +#: chat.php:351 chat.php:819 +msgid "Captcha" +msgstr "Captcha" + +#: chat.php:352 chat.php:775 chat.php:835 +msgid "Only for guests" +msgstr "Sólo para invitados" + +#: chat.php:353 chat.php:1220 +msgid "Topic" +msgstr "Asunto" + +#: chat.php:354 chat.php:781 +msgid "Let guests register themselves" +msgstr "Dar permisos de invitado a si mismos" + +#: chat.php:355 chat.php:862 +msgid "Default time zone" +msgstr "Zona horaria predeterminada" + +#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259 +msgid "Initial Setup" +msgstr "Configuración inicialInicializar chat" + +#: chat.php:588 +#, php-format +msgid "Redirecting to: %s" +msgstr "Redirigir a: %s" + +#: chat.php:595 +#, php-format +msgid "" +"Dangerous non-http link requested, copy paste this link if you are really " +"sure: %s" +msgstr "" + +#: chat.php:597 +#, php-format +msgid "Non-http link requested: %s" +msgstr "Petición de enlace que no es http: %s" + +#: chat.php:599 +#, php-format +msgid "If it's not working, try this one: %s" +msgstr "Si no funciona, probá esto: %s" + +#: chat.php:609 +msgid "Access denied" +msgstr "Acceso no permitido" + +#: chat.php:609 +#, 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 +msgid "Logout" +msgstr "Desconectar" + +#: chat.php:636 +msgid "Copy:" +msgstr "Copiar:" + +#: chat.php:724 +msgid "Chat Setup" +msgstr "Configuración del chat" + +#: chat.php:734 chat.php:1233 +msgid "Allow" +msgstr "Permitir" + +#: chat.php:739 chat.php:1238 +msgid "Allow with waitingroom" +msgstr "Permitir con sala de espera" + +#: chat.php:744 chat.php:1243 +msgid "Require moderator approval" +msgstr "Requiere aprobación del moderator" + +#: chat.php:749 chat.php:1248 +msgid "Only members" +msgstr "Sólo miembros" + +#: chat.php:754 chat.php:1251 +msgid "Disable chat" +msgstr "Desactivar chat" + +#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229 +msgid "Disabled" +msgstr "Deshabilitado" + +#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219 +msgid "Enabled" +msgstr "Habilitado" + +#: chat.php:792 +msgid "As applicant" +msgstr "Como aplicante" + +#: chat.php:797 +msgid "As member" +msgstr "Como miembro" + +#: chat.php:800 +msgid "System messages" +msgstr "Mensajes de sistema" + +#: chat.php:822 chat.php:1053 +#, 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 +msgid "Simple" +msgstr "" + +#: chat.php:852 +msgid "Moderate" +msgstr "Moderado" + +#: chat.php:857 +msgid "Extreme" +msgstr "Extremo" + +#: chat.php:906 chat.php:1548 chat.php:1610 +msgid "Apply" +msgstr "Aplicar" + +#: chat.php:910 chat.php:1050 +msgid "Backup and restore" +msgstr "Copias de seguridad" + +#: chat.php:912 +msgid "Destroy chat" +msgstr "Destruir sala" + +#: chat.php:1057 chat.php:1066 +msgid "Settings" +msgstr "Configuración" + +#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575 +#: chat.php:1622 +msgid "Filter" +msgstr "Filtro" + +#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538 +msgid "Members" +msgstr "Miembros" + +#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322 +msgid "Notes" +msgstr "Notas" + +#: chat.php:1061 +msgid "Backup" +msgstr "Hacer copia" + +#: chat.php:1070 +msgid "Restore" +msgstr "Restablecer copia" + +#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260 +msgid "Go to the Setup-Page" +msgstr "Ir a la página de configuración" + +#: chat.php:1082 chat.php:1091 chat.php:1949 +msgid "Are you sure?" +msgstr "¿Estás seguro?" + +#: chat.php:1083 chat.php:1092 chat.php:1956 +msgid "Yes" +msgstr "Sí" + +#: chat.php:1084 chat.php:1093 chat.php:1963 +msgid "No" +msgstr "No" + +#: chat.php:1101 chat.php:4259 +msgid "Superadmin Login" +msgstr "Registro de Superadministrador" + +#: chat.php:1102 +msgid "Superadmin Nickname:" +msgstr "Apodo del superadmin:" + +#: chat.php:1103 +msgid "Superadmin Password:" +msgstr "Contraseña del superadmin:" + +#: chat.php:1104 +msgid "Confirm Password:" +msgstr "Confirmar contraseña:" + +#: chat.php:1105 +msgid "Initialise Chat" +msgstr "Inicializar chat" + +#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439 +msgid "Change language:" +msgstr "Cambiar idioma:" + +#: chat.php:1117 +msgid "Database successfully updated!" +msgstr "¡La base de datos fue actualizada con éxito!" + +#: chat.php:1125 chat.php:1326 chat.php:2407 +msgid "Nickname:" +msgstr "Apodo:" + +#: chat.php:1126 chat.php:1327 chat.php:2408 +msgid "Password:" +msgstr "Contraseña:" + +#: chat.php:1128 +msgid "Login" +msgstr "Identificarse" + +#: chat.php:1129 +msgid "Forgot login?" +msgstr "" + +#: chat.php:1142 chat.php:1306 +msgid "Reset password" +msgstr "Reiniciar contraseña" + +#: chat.php:1150 +#, php-format +msgid "" +"Successfully reset password for username %s. Please remove the password " +"reset define from the script again." +msgstr "" + +#: 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 "" + +#: 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 +msgid "(choose)" +msgstr "(elegí)" + +#: chat.php:1170 +msgid "All guests" +msgstr "Todos invitados" + +#: chat.php:1182 +msgid "Administrative functions" +msgstr "Funciones administrativas" + +#: chat.php:1188 +msgid "Clean messages" +msgstr "Limpiar mensajes" + +#: chat.php:1191 +msgid "Whole room" +msgstr "Sala entera" + +#: chat.php:1192 +msgid "Selection" +msgstr "Selección" + +#: chat.php:1193 +msgid "Following nickname:" +msgstr "Siguiente Nick:" + +#: chat.php:1200 +msgid "Clean" +msgstr "Limpiar" + +#: chat.php:1202 +#, php-format +msgid "Kick Chatter (%d minutes)" +msgstr "Expulsado (%d minutos)" + +#: chat.php:1204 +msgid "Kickmessage:" +msgstr "Motivo de expulsión:" + +#: chat.php:1205 +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 +msgid "Kick" +msgstr "Expulsar" + +#: chat.php:1208 +msgid "Logout inactive Chatter" +msgstr "Desconectar persona inactiva" + +#: chat.php:1212 +msgid "View active sessions" +msgstr "Ver sesiones activas" + +#: chat.php:1212 chat.php:1603 +msgid "Linkfilter" +msgstr "Filtro de enlaces" + +#: chat.php:1217 +msgid "View" +msgstr "Ver" + +#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582 +#: chat.php:1626 +msgid "Change" +msgstr "Cambiar" + +#: chat.php:1256 +msgid "Register applicant" +msgstr "Agregar aplicante" + +#: chat.php:1264 chat.php:1322 chat.php:1328 +msgid "Register" +msgstr "Registrar" + +#: chat.php:1294 +msgid "Delete from database" +msgstr "Borrar de la base de datos" + +#: chat.php:1294 +msgid "Deny access (!)" +msgstr "Prohibir acceso (!)" + +#: chat.php:1296 +msgid "Set to applicant (SG)" +msgstr "Convertir en aplicante (SG)" + +#: chat.php:1298 +msgid "Set to regular member" +msgstr "Convertir en miembro regular" + +#: chat.php:1299 +msgid "Set to moderator (M)" +msgstr "Convertir en moderador (M)" + +#: chat.php:1300 +msgid "Set to supermod (SM)" +msgstr "Convertir en supermoderador (SM)" + +#: chat.php:1302 +msgid "Set to admin (A)" +msgstr "Convertir administrador (A)" + +#: chat.php:1314 +msgid "Register Guest" +msgstr "Registrar invitado" + +#: chat.php:1324 +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 +msgid "Reload" +msgstr "Recargar" + +#: chat.php:1345 +msgid "Active Sessions" +msgstr "Sesiones activas" + +#: chat.php:1346 chat.php:1873 +msgid "Nickname" +msgstr "Apodo" + +#: chat.php:1346 +msgid "Timeout in" +msgstr "Vencimiento" + +#: chat.php:1346 chat.php:1873 +msgid "User-Agent" +msgstr "Navegador" + +#: chat.php:1350 +msgid "IP-Address" +msgstr "Dirección IP" + +#: chat.php:1351 +msgid "Actions" +msgstr "Acciones" + +#: chat.php:1393 +msgid "Unban" +msgstr "Desbanear" + +#: chat.php:1416 +msgid "Incorrect regular expression!" +msgstr "¡Expresión regular incorrecta!" + +#: chat.php:1416 chat.php:1424 +#, php-format +msgid "Your match was as follows: %s" +msgstr "" + +#: chat.php:1424 +msgid "" +"Your match was too long. You can use max. 255 characters. Try splitting it " +"up." +msgstr "" + +#: chat.php:1541 chat.php:1606 +msgid "Filter ID:" +msgstr "ID del filtro:" + +#: chat.php:1542 chat.php:1607 +msgid "Match" +msgstr "Coincidencia" + +#: chat.php:1543 chat.php:1608 +msgid "Replace" +msgstr "Reemplazar" + +#: chat.php:1544 chat.php:1578 chat.php:1589 +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 +msgid "Regex" +msgstr "Expresión regular" + +#: chat.php:1547 chat.php:1581 chat.php:1592 +msgid "Case sensitive" +msgstr "" + +#: chat.php:1586 chat.php:1630 +msgid "New filter:" +msgstr "Filtro nuevo:" + +#: chat.php:1593 chat.php:1634 +msgid "Add" +msgstr "Agregar" + +#: chat.php:1691 +msgid "" +"This chat uses frames. Please enable frames in your browser or use a " +"suitable one!" +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 +msgid "Back to the login page." +msgstr "Volver a la página de identificación." + +#: chat.php:1709 +msgid "Bottom" +msgstr "Inicio" + +#: chat.php:1710 +msgid "Manual refresh required" +msgstr "Recarga manual requerida" + +#: chat.php:1726 +msgid "Top" +msgstr "Fin" + +#: chat.php:1734 chat.php:1940 chat.php:1942 +msgid "Delete selected messages" +msgstr "Borrar mensajes seleccionados" + +#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281 +msgid "Back to the chat." +msgstr "Volver a la sala." + +#: chat.php:1774 chat.php:1791 +msgid "Admin notes" +msgstr "Notas de administrador" + +#: chat.php:1777 chat.php:1788 +msgid "Staff notes" +msgstr "Notas del equipo" + +#: chat.php:1811 +msgid "Notes saved!" +msgstr "¡Notas guardadas!" + +#: chat.php:1835 chat.php:2122 +#, 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 +msgid "Save notes" +msgstr "Guardar notas" + +#: chat.php:1850 +msgid "Revisions:" +msgstr "Revisiones:" + +#: chat.php:1853 +msgid "Older" +msgstr "Antiguo" + +#: chat.php:1857 +msgid "Newer" +msgstr "Nuevo" + +#: chat.php:1868 chat.php:1914 +msgid "Waiting room" +msgstr "Sala de espera" + +#: chat.php:1880 +msgid "Allow checked" +msgstr "Aceptar marcados" + +#: chat.php:1881 +msgid "Allow all" +msgstr "Aceptar todos" + +#: chat.php:1882 +msgid "Deny checked" +msgstr "Rechazar marcados" + +#: chat.php:1883 +msgid "Deny all" +msgstr "Rechazar todos" + +#: chat.php:1883 +msgid "Send message to denied:" +msgstr "Enviar mensaje a rechazados:" + +#: chat.php:1884 +msgid "Submit" +msgstr "Enviar" + +#: chat.php:1886 +msgid "No more entry requests to approve." +msgstr "No hay más peticiones para aprobar." + +#: chat.php:1916 +#, php-format +msgid "" +"Welcome %1$s, your login has been delayed, you can access the chat in %2$d " +"seconds." +msgstr "" +"Bienvenido %1$s, tu identificación fue demorada, podrás acceder a la sala en " +"%2$d segundos." + +#: chat.php:1918 +#, 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 "" +"Bienvenido %1$s, tu identificación fue demorada, podrás acceder a la sala en " +"cuanto un administrador lo permita." + +#: chat.php:1921 +#, php-format +msgid "" +"If this page doesn't refresh every %d seconds, use the button below to " +"reload it manually!" +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 +msgid "Exit Chat" +msgstr "Salir de la sala" + +#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430 +msgid "Rules" +msgstr "Reglas" + +#: chat.php:1985 +msgid "Send to" +msgstr "Enviar a" + +#: chat.php:1990 +msgid "All chatters" +msgstr "Todos" + +#: chat.php:1996 +msgid "Members only" +msgstr "Sólo miembros" + +#: chat.php:2003 +msgid "Staff only" +msgstr "Sólo equipo" + +#: chat.php:2010 +msgid "Admin only" +msgstr "Sólo administradores" + +#: chat.php:2019 +msgid "(offline)" +msgstr "(offline)" + +#: chat.php:2043 +msgid "Also purge messages" +msgstr "Además purgar mensajes" + +#: chat.php:2050 +msgid "Delete last message" +msgstr "Eliminar el último mensaje" + +#: chat.php:2055 +msgid "Delete all messages" +msgstr "Eliminar todos los mensajes" + +#: chat.php:2057 +msgid "Switch to single-line" +msgstr "Cambiar a una sola línea" + +#: chat.php:2059 +msgid "Switch to multi-line" +msgstr "Cambiar a múltiples líneas" + +#: chat.php:2070 +#, php-format +msgid "Welcome %s!" +msgstr "Bienvenido %s!" + +#: chat.php:2071 +#, 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 "" +"Si no se te redirige en %d segundos, asegurate de tener activado la " +"redirección automática (meta refresh) en tu navegador. También asegurate de " +"que ningún filtro web, local proxy tool o browser plugin evita tu " +"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 +msgid "Help" +msgstr "Ayuda" + +#: 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." +msgstr "" +"Todas las funciones deberían ser auto-explicativas, sólo usa los botones. En " +"tu perfil puedes ajustar el tiempo de actualización, el color del texto y el " +"tamaño de caja que prefieras.
Nota: Esto es una sala de chat, así " +"que si no te mantenés hablando, vas a ser expulsado automáticamente después " +"de un tiempo." + +#: 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 "" +"Si querés incluir una imagen en tu publicación, simplemente poné [img] al " +"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 +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 "" +"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 +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 "" +"Moderadores: Notá el botón de administración al final de la página. Te va a " +"llevar a una página donde podés limpiar la sala, expulsar personas, ver " +"todas las sesiones activas y deshabilitar el acceso a invitados totalmente " +"si fuese necesario." + +#: chat.php:2097 +msgid "" +"Admins: You'll be furthermore able to register guests, edit members and " +"register new nicknames." +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 +msgid "Your Profile" +msgstr "Tu perfil" + +#: chat.php:2144 +msgid "Don't ignore anymore" +msgstr "Dejar de ignorar" + +#: chat.php:2152 +msgid "Ignore" +msgstr "Ignorar" + +#: chat.php:2163 +#, 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 +msgid "View examples" +msgstr "Ver ejemplos" + +#: chat.php:2174 +msgid "Fontface" +msgstr "Tipografía" + +#: chat.php:2175 +msgid "Room Default" +msgstr "Sala por defecto" + +#: chat.php:2188 +msgid "Bold" +msgstr "Negrita" + +#: chat.php:2192 +msgid "Italic" +msgstr "Bastardilla" + +#: chat.php:2196 +msgid "Small" +msgstr "Pequeño" + +#: chat.php:2199 +msgid "Example for your chosen font" +msgstr "Ejemplo de la tipografía seleccionada" + +#: chat.php:2203 +msgid "Autoscroll (for old browsers or top-to-bottom sort)." +msgstr "Autoscroll (para buscadores antiguos o tipo top to bottom)." + +#: chat.php:2234 +msgid "For everyone" +msgstr "Para todos" + +#: chat.php:2239 +msgid "For members only" +msgstr "Solo para miembros" + +#: chat.php:2244 +msgid "For staff only" +msgstr "Solo para staff" + +#: chat.php:2248 +msgid "Time zone" +msgstr "Zona horaria" + +#: chat.php:2261 +msgid "Change Password" +msgstr "Cambiar la contraseña" + +#: chat.php:2263 +msgid "Old password:" +msgstr "Contraseña anterior:" + +#: chat.php:2264 +msgid "New password:" +msgstr "Contraseña nueva:" + +#: chat.php:2265 +msgid "Confirm new password:" +msgstr "Confirmar contraseña nueva:" + +#: chat.php:2268 +msgid "Change Nickname" +msgstr "Cambiar Nick" + +#: chat.php:2269 +msgid "New nickname:" +msgstr "Nuevo apodo:" + +#: chat.php:2273 +msgid "Save changes" +msgstr "Guardar cambios" + +#: chat.php:2275 +msgid "Delete account" +msgstr "Borrar cuenta" + +#: chat.php:2301 +msgid "Reload Post Box" +msgstr "Recargar caja de publicación" + +#: chat.php:2304 +msgid "Reload Messages" +msgstr "Recargar mensajes" + +#: chat.php:2307 +msgid "Profile" +msgstr "Perfil" + +#: chat.php:2311 chat.php:2528 +msgid "Admin" +msgstr "Admin" + +#: chat.php:2318 +msgid "View public notes" +msgstr "Ver notas públicas" + +#: chat.php:2325 +msgid "Clone" +msgstr "Clone" + +#: chat.php:2334 +msgid "Rearrange" +msgstr "" + +#: chat.php:2337 +msgid "Rules & Help" +msgstr "" + +#: chat.php:2358 chat.php:2362 +msgid "File not found!" +msgstr "Documento no encontrado!" + +#: chat.php:2370 +#, php-format +msgid "Bye %s, visit again soon!" +msgstr "¡Chau %s, visítanos pronto!" + +#: chat.php:2377 +msgid "Colourtable" +msgstr "Colourtable" + +#: chat.php:2388 +msgid "Back to your Profile" +msgstr "Volver a tu perfil" + +#: chat.php:2412 +msgid "Repeat password
to register" +msgstr "Repetir contraseña
para registrarse" + +#: chat.php:2412 +msgid "(optional)" +msgstr "(opcional)" + +#: chat.php:2417 +msgid "Guests, choose a colour:" +msgstr "Invitado, elegí un color:" + +#: chat.php:2417 +msgid "Random Colour" +msgstr "Color al azar" + +#: chat.php:2421 chat.php:2435 chat.php:2569 +msgid "Sorry, currently members only!" +msgstr "¡Perdón! Actualmente sólo se permiten miembros!" + +#: chat.php:2423 chat.php:2437 +msgid "Enter Chat" +msgstr "Entrar a la sala" + +#: chat.php:2457 +#, php-format +msgid "Error: %s" +msgstr "Error: %s" + +#: chat.php:2467 +msgid "Fatal error" +msgstr "Error fatal" + +#: chat.php:2470 +#, php-format +msgid "Fatal error: %s" +msgstr "Error fatal: %s" + +#: chat.php:2482 chat.php:2693 +msgid "Failed login attempt(s)" +msgstr "Intento(s) de inicio de sesión fallido(s)" + +#: chat.php:2489 +#, php-format +msgid "Read %d messages in your inbox" +msgstr "Leer %d mensajes en tu bandeja" + +#: chat.php:2498 +#, php-format +msgid "%d new guests to approve" +msgstr "%d nuevos invitados para aprobar" + +#: chat.php:2530 +msgid "Admin:" +msgstr "Admin:" + +#: chat.php:2533 +msgid "Staff" +msgstr "Equipo" + +#: chat.php:2535 +msgid "Staff:" +msgstr "Equipo:" + +#: chat.php:2540 +msgid "Members:" +msgstr "Miembros:" + +#: chat.php:2542 +msgid "Guests" +msgstr "Invitados" + +#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092 +#, fuzzy, php-format +msgid "" +"Invalid nickname (%1$d characters maximum and has to match the regular " +"expression \"%2$s\")" +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 +#, fuzzy, php-format +msgid "" +"Invalid password (At least %1$d characters and has to match the regular " +"expression \"%2$s\")" +msgstr "" +"Contraseña erronea(At least %1$d characters and has to match the regular " +"expression \"%2$s\")" + +#: chat.php:2574 chat.php:2739 +msgid "Wrong global Password!" +msgstr "¡Contraseña global incorrecta!" + +#: chat.php:2591 chat.php:2612 +msgid "Wrong Captcha" +msgstr "Captcha incorrecto" + +#: chat.php:2596 chat.php:2604 +msgid "Captcha already used or timed out." +msgstr "Captcha ya usado o vencido." + +#: chat.php:2652 +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 +msgid "Wrong Password!" +msgstr "¡Contraseña incorrecta!" + +#: chat.php:2696 +msgid "Dismiss" +msgstr "Reconocido" + +#: chat.php:2747 chat.php:3171 chat.php:4096 +msgid "Password confirmation does not match!" +msgstr "¡La contraseña y su confirmación no coinciden!" + +#: chat.php:2859 +msgid "Invalid/expired session" +msgstr "La sesión es inválida o expiró" + +#: chat.php:2875 chat.php:3412 +msgid "You have been kicked!" +msgstr "¡Te expulsaron!" + +#: chat.php:2885 +#, php-format +msgid "Currently %d chatter(s) in room:" +msgstr "En este momento hay %d personas en la sala:" + +#: chat.php:2933 +msgid "This nickname is a registered member." +msgstr "Este nombre es un usuario registrado." + +#: chat.php:2960 chat.php:3001 +#, php-format +msgid "%s is already registered." +msgstr "%s ya fue registrado." + +#: chat.php:2969 chat.php:2990 +#, php-format +msgid "Can't register %s" +msgstr "No pudo registrarse %s" + +#: chat.php:2978 chat.php:3023 +#, php-format +msgid "%s successfully registered." +msgstr "%s se registro sin problemas." + +#: chat.php:3031 chat.php:3036 +#, php-format +msgid "Can't change status of %s" +msgstr "No pudo cambiarse el estado de %s" + +#: chat.php:3047 +#, php-format +msgid "%s successfully deleted from database." +msgstr "%s fue eliminado de la base de datos." + +#: chat.php:3056 +#, php-format +msgid "Status of %s successfully changed." +msgstr "Se cambió el estado de %s sin problemas." + +#: chat.php:3073 +#, php-format +msgid "Successfully reset password for %s" +msgstr "" + +#: chat.php:3075 +#, php-format +msgid "Can't reset password for %s" +msgstr "" + +#: chat.php:3190 +msgid "Your profile has successfully been saved." +msgstr "Tu perfil se guardó sin problemas." + +#: chat.php:3202 +msgid "Nickname is already taken" +msgstr "Ese apodo ya fue tomado" + +#: chat.php:3714 +msgid "system message" +msgstr "mensaje de sistema" + +#: chat.php:3921 +msgid "Beige" +msgstr "Beige" + +#: chat.php:3922 +msgid "Black" +msgstr "Negro" + +#: chat.php:3923 +msgid "Blue" +msgstr "Azul" + +#: chat.php:3924 +msgid "Blue violet" +msgstr "Azul violáceo" + +#: chat.php:3925 +msgid "Brown" +msgstr "Marrón" + +#: chat.php:3926 +msgid "Cyan" +msgstr "Cian" + +#: chat.php:3927 +msgid "Dark blue" +msgstr "Azul oscuro" + +#: chat.php:3928 +msgid "Dark green" +msgstr "Verde oscuro" + +#: chat.php:3929 +msgid "Dark red" +msgstr "Rojo oscuro" + +#: chat.php:3930 +msgid "Dark violet" +msgstr "Violeta oscuro" + +#: chat.php:3931 +msgid "Sky blue" +msgstr "Azul celeste" + +#: chat.php:3932 +msgid "Gold" +msgstr "Dorado" + +#: chat.php:3933 +msgid "Grey" +msgstr "Gris" + +#: chat.php:3934 +msgid "Green" +msgstr "Verde" + +#: chat.php:3935 +msgid "Hot pink" +msgstr "Rosa cálido" + +#: chat.php:3936 +msgid "Indigo" +msgstr "Índigo" + +#: chat.php:3937 +msgid "Light blue" +msgstr "Azul claro" + +#: chat.php:3938 +msgid "Light green" +msgstr "Verde claro" + +#: chat.php:3939 +msgid "Lime green" +msgstr "Verde lima" + +#: chat.php:3940 +msgid "Magenta" +msgstr "Magenta" + +#: chat.php:3941 +msgid "Olive" +msgstr "Oliva" + +#: chat.php:3942 +msgid "Orange" +msgstr "Naranja" + +#: chat.php:3943 +msgid "Orange red" +msgstr "Rojo anaranjado" + +#: chat.php:3944 +msgid "Purple" +msgstr "Púrpura" + +#: chat.php:3945 +msgid "Red" +msgstr "Rojo" + +#: chat.php:3946 +msgid "Royal blue" +msgstr "Azul real" + +#: chat.php:3947 +msgid "Sea green" +msgstr "Verde marino" + +#: chat.php:3948 +msgid "Sienna" +msgstr "Siena" + +#: chat.php:3949 +msgid "Silver" +msgstr "Plateado" + +#: chat.php:3950 +msgid "Tan" +msgstr "Bronceado" + +#: chat.php:3951 +msgid "Teal" +msgstr "Cerceta" + +#: chat.php:3952 +msgid "Violet" +msgstr "Violeta" + +#: chat.php:3953 +msgid "White" +msgstr "Blanco" + +#: chat.php:3954 +msgid "Yellow" +msgstr "Amarillo" + +#: chat.php:3955 +msgid "Yellow green" +msgstr "Verde amarillento" + +#: chat.php:4077 +msgid "Successfully destroyed chat" +msgstr "Sala destruida satisfactoriamente" + +#: chat.php:4086 +msgid "" +"Database tables already exist! To continue, you have to delete these tables " +"manually first." +msgstr "" +"¡La base de datos ya existe! Para continuar, primero tenés que borrar esas " +"tablas manualmente." + +#: chat.php:4089 +msgid "A Superadmin already exists!" +msgstr "¡Ya existe un superadministrador!" + +#: chat.php:4182 chat.php:4369 +#, php-format +msgid "%s - " +msgstr "%s - " + +#: chat.php:4183 chat.php:4369 +#, php-format +msgid "[M] %s - " +msgstr "[M] %s - " + +#: chat.php:4184 chat.php:4369 +#, php-format +msgid "[Staff] %s - " +msgstr "[Staff] %s - " + +#: chat.php:4185 chat.php:4369 +#, php-format +msgid "[Admin] %s - " +msgstr "[Admin] %s - " + +#: chat.php:4186 chat.php:4369 +#, php-format +msgid "[%1$s to %2$s] - " +msgstr "[%1$s a %2$s] - " + +#: chat.php:4187 +#, php-format +msgid "%s entered the chat." +msgstr "%s entró en la sala." + +#: chat.php:4188 +#, php-format +msgid "%s left the chat." +msgstr "%s se fue de la sala." + +#: chat.php:4189 +#, php-format +msgid "%s is now a registered member." +msgstr "%s ahora es un miembro registrado." + +#: chat.php:4190 +#, 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." +msgstr "%s fue expulsado." + +#: chat.php:4192 +#, php-format +msgid "%s have been kicked." +msgstr "%s fueron expulsados." + +#: chat.php:4193 +msgid "All guests have been kicked." +msgstr "Todas las personas fueron expulsadas." + +#: chat.php:4194 +#, php-format +msgid "%s has been cleaned." +msgstr "%s fue limpiada." + +#: chat.php:4202 chat.php:4396 +msgid "Temporarily disabled" +msgstr "Desactivado temporalmente" + +#: chat.php:4218 chat.php:4594 +msgid "A chat community" +msgstr "" + +#: chat.php:4256 +msgid "Successfully registered!" +msgstr "¡Registrado con éxito!" + +#: chat.php:4522 chat.php:4721 chat.php:4728 +msgid "No connection to database!" +msgstr "¡Sin conexión a la base de datos!" + +#: chat.php:4531 +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 +#, 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 "" +"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 +#, php-format +msgid "" +"The %s extension of PHP is required for the selected database driver. Please " +"install it first." +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 +msgid "" +"No connection to database, please create a database and edit the script to " +"use the correct database with given username and password!" +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 +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 "" +"La extensión memcached de PHP es requerida para esto. Instalela primero o " +"configure memcached en false." diff --git a/locale/fi_FI/LC_MESSAGES/le-chat-php.mo b/locale/fi_FI/LC_MESSAGES/le-chat-php.mo new file mode 100644 index 0000000..2135593 Binary files /dev/null and b/locale/fi_FI/LC_MESSAGES/le-chat-php.mo differ diff --git a/locale/fi_FI/LC_MESSAGES/le-chat-php.po b/locale/fi_FI/LC_MESSAGES/le-chat-php.po new file mode 100644 index 0000000..8ccbfa8 --- /dev/null +++ b/locale/fi_FI/LC_MESSAGES/le-chat-php.po @@ -0,0 +1,1625 @@ +# 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: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-01-18 21:32+0100\n" +"PO-Revision-Date: 2023-01-18 21:37+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: fi_FI\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.1.1\n" + +#: chat.php:261 +msgid "Enable applicants" +msgstr "Salli hakijat" + +#: chat.php:262 +msgid "Embed images" +msgstr "Upota kuvat" + +#: chat.php:263 chat.php:2202 +msgid "Show Timestamps" +msgstr "Näytä aikaleimat" + +#: chat.php:264 +msgid "Show session-IP" +msgstr "Näytä istunnon IP" + +#: chat.php:265 +msgid "Members can kick, if no moderator is present" +msgstr "Jäsenet voivat heittää ulos, jos moderaattori ei ole paikalla" + +#: chat.php:266 +msgid "Members can always kick" +msgstr "" + +#: chat.php:267 +msgid "Force redirection" +msgstr "Pakota uudelleenohjaus" + +#: chat.php:268 +msgid "Incognito mode" +msgstr "Yksityistila" + +#: chat.php:269 +msgid "Send mail on new public message" +msgstr "Lähetä sähköpostia yleisestä viestistä" + +#: chat.php:270 +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 +msgid "Disable private messages" +msgstr "Poista yksityisviestit käytöstä" + +#: chat.php:272 chat.php:2223 +msgid "Enable offline inbox" +msgstr "Ota käyttöön offline-viestilaatikko" + +#: chat.php:273 +msgid "Show a greeting message before showing the messages" +msgstr "Näytä tervetuloviesti ennen muita viestejä" + +#: chat.php:274 chat.php:2204 +msgid "Sort messages from top to bottom" +msgstr "Järjestä viestit ylhäältä alas" + +#: chat.php:275 chat.php:2205 +msgid "Hide list of chatters" +msgstr "Piilota osallistujalista" + +#: chat.php:276 chat.php:1780 chat.php:1794 +msgid "Personal notes" +msgstr "Henkilökohtaiset muistiinpanot" + +#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110 +msgid "Public notes" +msgstr "Julkiset muistiinpanot" + +#: chat.php:278 +msgid "Apply kick filter on moderators" +msgstr "Käytä ulosheittosuodatinta moderaattoreihin" + +#: chat.php:279 +msgid "Show who kicks people or purges all messages." +msgstr "" + +#: chat.php:280 +msgid "Hide reload post box button" +msgstr "" + +#: chat.php:281 +msgid "Hide reload messages button" +msgstr "" + +#: chat.php:282 +msgid "Hide profile button" +msgstr "" + +#: chat.php:283 +msgid "Hide admin button" +msgstr "" + +#: chat.php:284 +msgid "Hide notes button" +msgstr "" + +#: chat.php:285 +msgid "Hide clone button" +msgstr "" + +#: chat.php:286 +msgid "Hide rearrange button" +msgstr "" + +#: chat.php:287 +msgid "Hide help button" +msgstr "" + +#: chat.php:288 +msgid "Apply postbox delete button globally" +msgstr "" + +#: chat.php:289 +msgid "Allow enhancing functionality with JavaScript" +msgstr "" + +#: chat.php:292 chat.php:2170 +msgid "Background colour" +msgstr "Taustaväri" + +#: chat.php:293 chat.php:2167 +msgid "Font colour" +msgstr "Fontin väri" + +#: chat.php:296 +msgid "Entrance" +msgstr "Liittyi" + +#: chat.php:297 +msgid "Leaving" +msgstr "Poistui" + +#: chat.php:298 +msgid "Member registered" +msgstr "Käyttäjä luotu" + +#: chat.php:299 +msgid "Applicant registered" +msgstr "Hakija luotu" + +#: chat.php:300 +msgid "Kicked" +msgstr "Heitetty ulos" + +#: chat.php:301 +msgid "Multiple kicked" +msgstr "Moniulosheitto" + +#: chat.php:302 +msgid "All kicked" +msgstr "Kaikki heitetty" + +#: chat.php:303 +msgid "Room cleaned" +msgstr "Huone tyhjennetty" + +#: chat.php:304 +msgid "Message to all" +msgstr "Viesti kaikille" + +#: chat.php:305 +msgid "Message to members only" +msgstr "Viesti vain jäsenille" + +#: chat.php:306 +msgid "Message to staff only" +msgstr "Viesti vain henkilökunnalle" + +#: chat.php:307 +msgid "Message to admins only" +msgstr "Viesti vain ylläpidolle" + +#: chat.php:308 +msgid "Private message" +msgstr "Yksityisviesti" + +#: chat.php:309 +msgid "Attachement" +msgstr "Liite" + +#: chat.php:312 +msgid "Member timeout (minutes)" +msgstr "Jäsenten aikakatkaisu (minuuttia)" + +#: chat.php:313 +msgid "Guest timeout (minutes)" +msgstr "Vierailijoiden aikakatkaisu (minuuttia)" + +#: chat.php:314 +msgid "Kick penalty (minutes)" +msgstr "Ulosheiton kesto (minuuttia)" + +#: chat.php:315 +msgid "Waiting room time (seconds)" +msgstr "Odotusaika (sekuntia)" + +#: chat.php:316 +msgid "Captcha timeout (seconds)" +msgstr "Captchan aikakatkaisu (sekuntia)" + +#: chat.php:317 +msgid "Message timeout (minutes)" +msgstr "Viestin aikakatkaisu (minuuttia)" + +#: chat.php:318 +msgid "Message limit (public)" +msgstr "Viestiraja (julkinen)" + +#: chat.php:319 +msgid "Maximal message length" +msgstr "Viestin enimmäispituus" + +#: chat.php:320 +msgid "Maximal nickname length" +msgstr "Käyttäjänimen enimmäispituus" + +#: chat.php:321 +msgid "Minimal password length" +msgstr "Salasanan vähimmäispituus" + +#: chat.php:322 +msgid "Default message reload time (seconds)" +msgstr "Oletuspäivitysnopeus (sekuntia)" + +#: chat.php:323 +msgid "Number of notes revisions to keep" +msgstr "Muistissa pidettävien viestien määrä" + +#: chat.php:324 +msgid "Maximum upload size in KB" +msgstr "Tiedoston maksimikoko (KB)" + +#: chat.php:325 +msgid "Enable file uploads" +msgstr "Ota tiedostolataukset käyttöön" + +#: chat.php:326 +msgid "Lowest refresh rate" +msgstr "" + +#: chat.php:327 +msgid "Highest refresh rate" +msgstr "" + +#: chat.php:330 +msgid "Rules (html)" +msgstr "Säännöt (html)" + +#: chat.php:331 +msgid "CSS Style" +msgstr "CSS-tyyli" + +#: chat.php:332 +msgid "Chat disabled message (html)" +msgstr "Poist käytöstä -viesti (html)" + +#: chat.php:335 +msgid "" +"Date " +"formating" +msgstr "" +"Päivämäärän esitystapa" + +#: chat.php:336 +msgid "Characters used in Captcha" +msgstr "Captchan merkit" + +#: chat.php:337 +msgid "Custom redirection script" +msgstr "Oma uudelleenohjausskripti" + +#: chat.php:338 +msgid "Chat name" +msgstr "Chatin nimi" + +#: chat.php:339 +msgid "Send mail using this address" +msgstr "Lähetä sähköposti osoitteesta" + +#: chat.php:340 +msgid "Send mail to this address" +msgstr "Lähetä sähköposti osoitteeseen" + +#: chat.php:341 +msgid "Nickname regex" +msgstr "Käyttäjänimen regex" + +#: chat.php:342 +msgid "Password regex" +msgstr "Salasanan regex" + +#: chat.php:343 +msgid "Link to external CSS file (on your own server)" +msgstr "Linkki ulkoiseen CSS_tiedostoon" + +#: chat.php:344 +msgid "Meta description (best 50 - 160 characters for SEO)" +msgstr "Meta-kuvaus (50 - 160 merkkiä)" + +#: chat.php:345 +msgid "Prepend this text to system messages" +msgstr "" + +#: chat.php:348 chat.php:728 chat.php:1225 +msgid "Change Guestaccess" +msgstr "Muuta vierailijapääsyä" + +#: chat.php:349 +msgid "Enable global Password" +msgstr "" + +#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433 +msgid "Global Password:" +msgstr "Yleinen salasana:" + +#: chat.php:351 chat.php:819 +msgid "Captcha" +msgstr "Captcha" + +#: chat.php:352 chat.php:775 chat.php:835 +msgid "Only for guests" +msgstr "Vain vierailijoille" + +#: chat.php:353 chat.php:1220 +msgid "Topic" +msgstr "Aiher" + +#: chat.php:354 chat.php:781 +msgid "Let guests register themselves" +msgstr "Anna vierailijoiden rekisteröidä itsensä" + +#: chat.php:355 chat.php:862 +msgid "Default time zone" +msgstr "Oletusaikavyöhyke" + +#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259 +msgid "Initial Setup" +msgstr "Ensimmäinen asennus" + +#: chat.php:588 +#, php-format +msgid "Redirecting to: %s" +msgstr "Siirrytään: %s" + +#: chat.php:595 +#, 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 +#, php-format +msgid "Non-http link requested: %s" +msgstr "Ei-tuettu linkki: %s" + +#: chat.php:599 +#, php-format +msgid "If it's not working, try this one: %s" +msgstr "Jos se ei toimi, yritä tätä: %s" + +#: chat.php:609 +msgid "Access denied" +msgstr "Pääsy kielletty" + +#: chat.php:609 +#, 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 +msgid "Logout" +msgstr "Kirjaudu ulos" + +#: chat.php:636 +msgid "Copy:" +msgstr "Kopio:" + +#: chat.php:724 +msgid "Chat Setup" +msgstr "Chatin asennus" + +#: chat.php:734 chat.php:1233 +msgid "Allow" +msgstr "Salli" + +#: chat.php:739 chat.php:1238 +msgid "Allow with waitingroom" +msgstr "Salli odotushuoneella" + +#: chat.php:744 chat.php:1243 +msgid "Require moderator approval" +msgstr "Vaadi moderaattorin hyväksyntä" + +#: chat.php:749 chat.php:1248 +msgid "Only members" +msgstr "Vain jäsenet" + +#: chat.php:754 chat.php:1251 +msgid "Disable chat" +msgstr "Poista chat käytöstä" + +#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229 +msgid "Disabled" +msgstr "Ei käytössä" + +#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219 +msgid "Enabled" +msgstr "Käytössä" + +#: chat.php:792 +msgid "As applicant" +msgstr "Hakijoina" + +#: chat.php:797 +msgid "As member" +msgstr "Jäseninä" + +#: chat.php:800 +msgid "System messages" +msgstr "Järjestelmäviestit" + +#: chat.php:822 chat.php:1053 +#, 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 +msgid "Simple" +msgstr "Yksinkertainen" + +#: chat.php:852 +msgid "Moderate" +msgstr "Keskivaikea" + +#: chat.php:857 +msgid "Extreme" +msgstr "Vaikea" + +#: chat.php:906 chat.php:1548 chat.php:1610 +msgid "Apply" +msgstr "Käytä" + +#: chat.php:910 chat.php:1050 +msgid "Backup and restore" +msgstr "Varmuuskopioi ja palauta" + +#: chat.php:912 +msgid "Destroy chat" +msgstr "Tuhoa chat" + +#: chat.php:1057 chat.php:1066 +msgid "Settings" +msgstr "Asetukset" + +#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575 +#: chat.php:1622 +msgid "Filter" +msgstr "Suodata" + +#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538 +msgid "Members" +msgstr "Jäsenet" + +#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322 +msgid "Notes" +msgstr "Viestit" + +#: chat.php:1061 +msgid "Backup" +msgstr "Varmuuskopioi" + +#: chat.php:1070 +msgid "Restore" +msgstr "Palauta" + +#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260 +msgid "Go to the Setup-Page" +msgstr "Siirry asennukseen" + +#: chat.php:1082 chat.php:1091 chat.php:1949 +msgid "Are you sure?" +msgstr "Oletko varma?" + +#: chat.php:1083 chat.php:1092 chat.php:1956 +msgid "Yes" +msgstr "Kyllä" + +#: chat.php:1084 chat.php:1093 chat.php:1963 +msgid "No" +msgstr "Ei" + +#: chat.php:1101 chat.php:4259 +msgid "Superadmin Login" +msgstr "Pääkäyttäjän kirjautuminen" + +#: chat.php:1102 +msgid "Superadmin Nickname:" +msgstr "Pääkäyttäjän käyttäjänimi:" + +#: chat.php:1103 +msgid "Superadmin Password:" +msgstr "Pääkäyttäjän salasana:" + +#: chat.php:1104 +msgid "Confirm Password:" +msgstr "Vahvista salasana:" + +#: chat.php:1105 +msgid "Initialise Chat" +msgstr "Asenna chat" + +#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439 +msgid "Change language:" +msgstr "Vaihda kieltä:" + +#: chat.php:1117 +msgid "Database successfully updated!" +msgstr "Tietokanta päivitetty onnistuneesti!" + +#: chat.php:1125 chat.php:1326 chat.php:2407 +msgid "Nickname:" +msgstr "Käyttäjänimi:" + +#: chat.php:1126 chat.php:1327 chat.php:2408 +msgid "Password:" +msgstr "Salasana:" + +#: chat.php:1128 +msgid "Login" +msgstr "Kirjaudu" + +#: chat.php:1129 +msgid "Forgot login?" +msgstr "Unohditko tunnukset?" + +#: chat.php:1142 chat.php:1306 +msgid "Reset password" +msgstr "Nollaa salasana" + +#: chat.php:1150 +#, php-format +msgid "" +"Successfully reset password for username %s. Please remove the password " +"reset define from the script again." +msgstr "" +"Käyttäjän %s salasana nollattu. Poista nollausskripti skriptin lopusta." + +#: 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 "" +"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 +msgid "(choose)" +msgstr "(valitse)" + +#: chat.php:1170 +msgid "All guests" +msgstr "Kaikki vierailijat" + +#: chat.php:1182 +msgid "Administrative functions" +msgstr "Järjestelmänvalvojan toiminnot" + +#: chat.php:1188 +msgid "Clean messages" +msgstr "Tyhjennä viestit" + +#: chat.php:1191 +msgid "Whole room" +msgstr "Koko huone" + +#: chat.php:1192 +msgid "Selection" +msgstr "Valinta" + +#: chat.php:1193 +msgid "Following nickname:" +msgstr "Seuraava käyttäjänimi:" + +#: chat.php:1200 +msgid "Clean" +msgstr "Tyhjennä" + +#: chat.php:1202 +#, php-format +msgid "Kick Chatter (%d minutes)" +msgstr "Heitä ulos (%d minuuttia)" + +#: chat.php:1204 +msgid "Kickmessage:" +msgstr "Heittoviesti:" + +#: chat.php:1205 +msgid "Purge messages" +msgstr "Tuhoa viestit" + +#: chat.php:1206 chat.php:1388 chat.php:1546 chat.php:1580 chat.php:1591 +#: chat.php:2042 +msgid "Kick" +msgstr "Heitä ulos" + +#: chat.php:1208 +msgid "Logout inactive Chatter" +msgstr "Kirjaa ulos ei-aktiivinen käyttäjä" + +#: chat.php:1212 +msgid "View active sessions" +msgstr "Näytä aktiiviset istunnot" + +#: chat.php:1212 chat.php:1603 +msgid "Linkfilter" +msgstr "Linkkisuodatus" + +#: chat.php:1217 +msgid "View" +msgstr "Näytä" + +#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582 +#: chat.php:1626 +msgid "Change" +msgstr "Muuta" + +#: chat.php:1256 +msgid "Register applicant" +msgstr "Rekisteröi hakijaRekisteröi" + +#: chat.php:1264 chat.php:1322 chat.php:1328 +msgid "Register" +msgstr "Rekisteröi" + +#: chat.php:1294 +msgid "Delete from database" +msgstr "Poista tietokannasta" + +#: chat.php:1294 +msgid "Deny access (!)" +msgstr "Estä pääsy (!)" + +#: chat.php:1296 +msgid "Set to applicant (SG)" +msgstr "Aseta hakijaksi (G)" + +#: chat.php:1298 +msgid "Set to regular member" +msgstr "Aseta normaaliksi jäseneks" + +#: chat.php:1299 +msgid "Set to moderator (M)" +msgstr "Aseta moderaattoriksi (M)" + +#: chat.php:1300 +msgid "Set to supermod (SM)" +msgstr "Aseta ylimoderaattoriksi (SM)" + +#: chat.php:1302 +msgid "Set to admin (A)" +msgstr "Aseta ylläpitäjäksi (A)" + +#: chat.php:1314 +msgid "Register Guest" +msgstr "Rekisteröi vierailijaAnna vierailijoiden rekisteröidä itsensä" + +#: chat.php:1324 +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 +msgid "Reload" +msgstr "Päivitä" + +#: chat.php:1345 +msgid "Active Sessions" +msgstr "Aktiiviset istunnot" + +#: chat.php:1346 chat.php:1873 +msgid "Nickname" +msgstr "Käyttäjänimi" + +#: chat.php:1346 +msgid "Timeout in" +msgstr "Aikakatkaisu" + +#: chat.php:1346 chat.php:1873 +msgid "User-Agent" +msgstr "Selain" + +#: chat.php:1350 +msgid "IP-Address" +msgstr "IP-osoite" + +#: chat.php:1351 +msgid "Actions" +msgstr "Toiminnot" + +#: chat.php:1393 +msgid "Unban" +msgstr "Poista bänni" + +#: chat.php:1416 +msgid "Incorrect regular expression!" +msgstr "Virheellinen regexp!" + +#: chat.php:1416 chat.php:1424 +#, php-format +msgid "Your match was as follows: %s" +msgstr "Matchisi on seuraava: %s" + +#: chat.php:1424 +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 +msgid "Filter ID:" +msgstr "Suodatusnumero:" + +#: chat.php:1542 chat.php:1607 +msgid "Match" +msgstr "Match" + +#: chat.php:1543 chat.php:1608 +msgid "Replace" +msgstr "Korvaa" + +#: chat.php:1544 chat.php:1578 chat.php:1589 +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 +msgid "Regex" +msgstr "Regex" + +#: chat.php:1547 chat.php:1581 chat.php:1592 +msgid "Case sensitive" +msgstr "Kirjainkokko merkitsee" + +#: chat.php:1586 chat.php:1630 +msgid "New filter:" +msgstr "Uusi suodatin:" + +#: chat.php:1593 chat.php:1634 +msgid "Add" +msgstr "Lisää" + +#: chat.php:1691 +msgid "" +"This chat uses frames. Please enable frames in your browser or use a " +"suitable one!" +msgstr "" +"Tämä chat käyttää kehyksiä. Salli kehykset tai käytä jotain muuta " +"selainta!" + +#: chat.php:1691 chat.php:2370 chat.php:2457 +msgid "Back to the login page." +msgstr "Takaisin kirjautumiseen." + +#: chat.php:1709 +msgid "Bottom" +msgstr "Loppuun" + +#: chat.php:1710 +msgid "Manual refresh required" +msgstr "Manuaalinen päivitys tarvitaan" + +#: chat.php:1726 +msgid "Top" +msgstr "Alkuun" + +#: chat.php:1734 chat.php:1940 chat.php:1942 +msgid "Delete selected messages" +msgstr "Poista valitut viestit" + +#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281 +msgid "Back to the chat." +msgstr "Takaisin keskusteluun." + +#: chat.php:1774 chat.php:1791 +msgid "Admin notes" +msgstr "Ylläpidon viestit" + +#: chat.php:1777 chat.php:1788 +msgid "Staff notes" +msgstr "Henkilökunnan viestit" + +#: chat.php:1811 +msgid "Notes saved!" +msgstr "Viestit tallennettu!" + +#: chat.php:1835 chat.php:2122 +#, php-format +msgid "Last edited by %1$s at %2$s" +msgstr "Viimeksi muokannut %1$s kello %2$s" + +#: chat.php:1848 +msgid "Save notes" +msgstr "Tallenna viestit" + +#: chat.php:1850 +msgid "Revisions:" +msgstr "Versiot:" + +#: chat.php:1853 +msgid "Older" +msgstr "Vanhemmat" + +#: chat.php:1857 +msgid "Newer" +msgstr "Uudemmat" + +#: chat.php:1868 chat.php:1914 +msgid "Waiting room" +msgstr "Odotushuone" + +#: chat.php:1880 +msgid "Allow checked" +msgstr "Salli valitut" + +#: chat.php:1881 +msgid "Allow all" +msgstr "Salli kaikki" + +#: chat.php:1882 +msgid "Deny checked" +msgstr "Epää valitut" + +#: chat.php:1883 +msgid "Deny all" +msgstr "Epää kaikki" + +#: chat.php:1883 +msgid "Send message to denied:" +msgstr "Viesti evätyille:" + +#: chat.php:1884 +msgid "Submit" +msgstr "Lähetä" + +#: chat.php:1886 +msgid "No more entry requests to approve." +msgstr "Ei sisäänpääsypyyntöjä." + +#: chat.php:1916 +#, php-format +msgid "" +"Welcome %1$s, your login has been delayed, you can access the chat in %2$d " +"seconds." +msgstr "" +"Tervetuloa %1$s, kirjautumisesi on viivästynyt, pääset chattiin %2$d " +"sekunnin kuluttua." + +#: chat.php:1918 +#, 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 "" +"Tervetuloa %1$s, kirjautumisesi on viivästynyt pääset chattiin, kun " +"moderaattori päästää sinut." + +#: chat.php:1921 +#, php-format +msgid "" +"If this page doesn't refresh every %d seconds, use the button below to " +"reload it manually!" +msgstr "" +"Jos tämä sivu ei päivity %d sekunnin välein, päivitä se manuaalisesti " +"seuraavasta painikkeesta!" + +#: chat.php:1926 chat.php:2339 +msgid "Exit Chat" +msgstr "Poistu chatista" + +#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430 +msgid "Rules" +msgstr "Säännöt" + +#: chat.php:1985 +msgid "Send to" +msgstr "Lähetä vastaanottajille" + +#: chat.php:1990 +msgid "All chatters" +msgstr "Kaikki" + +#: chat.php:1996 +msgid "Members only" +msgstr "Vain jäsenet" + +#: chat.php:2003 +msgid "Staff only" +msgstr "Vain henkilökunta" + +#: chat.php:2010 +msgid "Admin only" +msgstr "Vain ylläpito" + +#: chat.php:2019 +msgid "(offline)" +msgstr "(offline)" + +#: chat.php:2043 +msgid "Also purge messages" +msgstr "Tuhoa myös viestit" + +#: chat.php:2050 +msgid "Delete last message" +msgstr "Poista viimeisin viesti" + +#: chat.php:2055 +msgid "Delete all messages" +msgstr "Poista kaikki viestit" + +#: chat.php:2057 +msgid "Switch to single-line" +msgstr "Vaihda yksiriviseen tekstikenttään" + +#: chat.php:2059 +msgid "Switch to multi-line" +msgstr "Vaihda moniriviseen tekstikenttään" + +#: chat.php:2070 +#, php-format +msgid "Welcome %s!" +msgstr "Tervetuloa, %s!" + +#: chat.php:2071 +#, 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 "" +"Jos tämä sivu ei päivity %d sekunnissa, sinun täytyy sallia automaattinen " +"uudelleenohjaus selaimessa. Varmista myös, ettei paikallinen proksi, web-" +"suodatin tai selainlisäosa poista automaattista päivitystä käytöstä! Jos " +"mikään ei toimi, voit painaa alla olevaa painiketta päivittääksesi " +"manuaalisesti." + +#: chat.php:2087 +msgid "Help" +msgstr "Ohje" + +#: 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." +msgstr "" +"Toiminnot ovat itsestäänselviä, käytä vain painikkeita. Profiilissasi voit " +"säätää päivitysnopeutta ja fontin väriä sekä mykistää käyttäjiä." +"
Huomaa, että tämä on chat, ja jos et ole aktiivinen tiettyyn aikaan, " +"sinut kirjataan ulos." + +#: 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 "" +"Lisää viestiin kuva seuraavasti: [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 "" +"Jäsenet: Sinulla on enemmän ominaisuuksia. Voit muuttaa fonttia, vaihtaa " +"salasanasi ja poistaa tilisi." + +#: 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 "" +"Moderaattorit: Ylläpito-painike antaa käyttöösi moderointiominaisuudet." + +#: chat.php:2097 +msgid "" +"Admins: You'll be furthermore able to register guests, edit members and " +"register new nicknames." +msgstr "" +"Ylläpitäjät: Voit rekisteröidä vierailijoita, muokata jäseniä ja " +"rekisteröidä uusia käyttäjiä." + +#: chat.php:2135 +msgid "Your Profile" +msgstr "Profiilisi" + +#: chat.php:2144 +msgid "Don't ignore anymore" +msgstr "Poista huomiottajättö" + +#: chat.php:2152 +msgid "Ignore" +msgstr "Jätä huomiotta" + +#: chat.php:2163 +#, php-format +msgid "Refresh rate (%1$d-%2$d seconds)" +msgstr "Päivitysnopeus (%1$d-%2$d sekuntia)" + +#: chat.php:2167 chat.php:2170 +msgid "View examples" +msgstr "Katso esimerkit" + +#: chat.php:2174 +msgid "Fontface" +msgstr "Fonttityyppi" + +#: chat.php:2175 +msgid "Room Default" +msgstr "Huoneen oletus" + +#: chat.php:2188 +msgid "Bold" +msgstr "Lihavoitu" + +#: chat.php:2192 +msgid "Italic" +msgstr "Yliviivaus" + +#: chat.php:2196 +msgid "Small" +msgstr "Pieni" + +#: chat.php:2199 +msgid "Example for your chosen font" +msgstr "Esimerkki valitusta fontista" + +#: chat.php:2203 +msgid "Autoscroll (for old browsers or top-to-bottom sort)." +msgstr "Automaattivieritys (vanhat selaimet tai ylhäältä alas -järjestys)." + +#: chat.php:2234 +msgid "For everyone" +msgstr "Kaikille" + +#: chat.php:2239 +msgid "For members only" +msgstr "Vain jäsenille" + +#: chat.php:2244 +msgid "For staff only" +msgstr "Vain henkilökunnalle" + +#: chat.php:2248 +msgid "Time zone" +msgstr "Aikavyöhyke" + +#: chat.php:2261 +msgid "Change Password" +msgstr "Vaihda salasana" + +#: chat.php:2263 +msgid "Old password:" +msgstr "Vanha salasana:" + +#: chat.php:2264 +msgid "New password:" +msgstr "Uusi salasana:" + +#: chat.php:2265 +msgid "Confirm new password:" +msgstr "Vahvista uusi salasana:" + +#: chat.php:2268 +msgid "Change Nickname" +msgstr "Vaihda käyttäjänimi" + +#: chat.php:2269 +msgid "New nickname:" +msgstr "Uusi käyttäjänimi:" + +#: chat.php:2273 +msgid "Save changes" +msgstr "Tallenna muutokset" + +#: chat.php:2275 +msgid "Delete account" +msgstr "Poista tili" + +#: chat.php:2301 +msgid "Reload Post Box" +msgstr "Päivitä kirjoituslaatikko" + +#: chat.php:2304 +msgid "Reload Messages" +msgstr "Päivitä viestit" + +#: chat.php:2307 +msgid "Profile" +msgstr "Profiili" + +#: chat.php:2311 chat.php:2528 +msgid "Admin" +msgstr "Ylläpito" + +#: chat.php:2318 +msgid "View public notes" +msgstr "Yleiset viestit" + +#: chat.php:2325 +msgid "Clone" +msgstr "Kloonaa" + +#: chat.php:2334 +msgid "Rearrange" +msgstr "Järjestä uudelleen" + +#: chat.php:2337 +msgid "Rules & Help" +msgstr "Säännöt ja ohjeet" + +#: chat.php:2358 chat.php:2362 +msgid "File not found!" +msgstr "Tiedostoa ei löydy!" + +#: chat.php:2370 +#, php-format +msgid "Bye %s, visit again soon!" +msgstr "Näkemiin %s, tuupa takas joskus!" + +#: chat.php:2377 +msgid "Colourtable" +msgstr "Väritaulukko" + +#: chat.php:2388 +msgid "Back to your Profile" +msgstr "Takaisin profiiliin" + +#: chat.php:2412 +msgid "Repeat password
to register" +msgstr "Salasana uudelleen
(jos rekisteröidyt)" + +#: chat.php:2412 +msgid "(optional)" +msgstr "(valinnainen)" + +#: chat.php:2417 +msgid "Guests, choose a colour:" +msgstr "Vierailijat, valitkaa väri:" + +#: chat.php:2417 +msgid "Random Colour" +msgstr "Satunnainen" + +#: chat.php:2421 chat.php:2435 chat.php:2569 +msgid "Sorry, currently members only!" +msgstr "Sori, vain jäsenet!" + +#: chat.php:2423 chat.php:2437 +msgid "Enter Chat" +msgstr "Chattiin" + +#: chat.php:2457 +#, php-format +msgid "Error: %s" +msgstr "Virhe: %s" + +#: chat.php:2467 +msgid "Fatal error" +msgstr "Kohtalokas virhe" + +#: chat.php:2470 +#, php-format +msgid "Fatal error: %s" +msgstr "Kohtalokas virhe: %s" + +#: chat.php:2482 chat.php:2693 +msgid "Failed login attempt(s)" +msgstr "" + +#: chat.php:2489 +#, php-format +msgid "Read %d messages in your inbox" +msgstr "Lue %d viesti(ä) Saapuneet-kansiossa" + +#: chat.php:2498 +#, php-format +msgid "%d new guests to approve" +msgstr "%d vierailijaa hyväksyttävissä" + +#: chat.php:2530 +msgid "Admin:" +msgstr "Ylläpito:" + +#: chat.php:2533 +msgid "Staff" +msgstr "Henkilökunta" + +#: chat.php:2535 +msgid "Staff:" +msgstr "Henkilökunta:" + +#: chat.php:2540 +msgid "Members:" +msgstr "Jäsenet:" + +#: chat.php:2542 +msgid "Guests" +msgstr "Vierailijat" + +#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092 +#, php-format +msgid "" +"Invalid nickname (%1$d characters maximum and has to match the regular " +"expression \"%2$s\")" +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 +#, 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\"" + +#: chat.php:2574 chat.php:2739 +msgid "Wrong global Password!" +msgstr "Väärä yleissalasana!" + +#: chat.php:2591 chat.php:2612 +msgid "Wrong Captcha" +msgstr "VÄärä Captcha" + +#: chat.php:2596 chat.php:2604 +msgid "Captcha already used or timed out." +msgstr "Captcha jo käytetty tai aikatkakaistu." + +#: chat.php:2652 +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 +msgid "Wrong Password!" +msgstr "Väärä salasana!" + +#: chat.php:2696 +msgid "Dismiss" +msgstr "" + +#: chat.php:2747 chat.php:3171 chat.php:4096 +msgid "Password confirmation does not match!" +msgstr "Salasanan vahvistus epäonnistui!" + +#: chat.php:2859 +msgid "Invalid/expired session" +msgstr "Istunto vanhentunut" + +#: chat.php:2875 chat.php:3412 +msgid "You have been kicked!" +msgstr "Sinut on heitetty ulos!" + +#: chat.php:2885 +#, php-format +msgid "Currently %d chatter(s) in room:" +msgstr "Paikalla: %d jäsen(tä):" + +#: chat.php:2933 +msgid "This nickname is a registered member." +msgstr "Tämä käyttäjänimi on jo rekisteröity." + +#: chat.php:2960 chat.php:3001 +#, php-format +msgid "%s is already registered." +msgstr "%s jo rekisteröity." + +#: chat.php:2969 chat.php:2990 +#, php-format +msgid "Can't register %s" +msgstr "Ei voi rekisteröidä %s" + +#: chat.php:2978 chat.php:3023 +#, php-format +msgid "%s successfully registered." +msgstr "%s rekisteröity." + +#: chat.php:3031 chat.php:3036 +#, php-format +msgid "Can't change status of %s" +msgstr "Ei voi muuttaa tilaa: %s" + +#: chat.php:3047 +#, php-format +msgid "%s successfully deleted from database." +msgstr "%s poistettu." + +#: chat.php:3056 +#, php-format +msgid "Status of %s successfully changed." +msgstr "%s - tila vaihdettu." + +#: chat.php:3073 +#, php-format +msgid "Successfully reset password for %s" +msgstr "Käyttäjän %s salasana nollattu" + +#: chat.php:3075 +#, php-format +msgid "Can't reset password for %s" +msgstr "" + +#: chat.php:3190 +msgid "Your profile has successfully been saved." +msgstr "Profiili tallennettu." + +#: chat.php:3202 +msgid "Nickname is already taken" +msgstr "Käyttäjänimi varattu" + +#: chat.php:3714 +msgid "system message" +msgstr "system message" + +#: chat.php:3921 +msgid "Beige" +msgstr "Beige" + +#: chat.php:3922 +msgid "Black" +msgstr "Musta" + +#: chat.php:3923 +msgid "Blue" +msgstr "Sininen" + +#: chat.php:3924 +msgid "Blue violet" +msgstr "Violetinsininen" + +#: chat.php:3925 +msgid "Brown" +msgstr "Ruskea" + +#: chat.php:3926 +msgid "Cyan" +msgstr "Syaani" + +#: chat.php:3927 +msgid "Dark blue" +msgstr "Tummansininen" + +#: chat.php:3928 +msgid "Dark green" +msgstr "Tummanvihreä" + +#: chat.php:3929 +msgid "Dark red" +msgstr "Tummanpunainen" + +#: chat.php:3930 +msgid "Dark violet" +msgstr "Tumma violetti" + +#: chat.php:3931 +msgid "Sky blue" +msgstr "Taivaansininen" + +#: chat.php:3932 +msgid "Gold" +msgstr "Kulta" + +#: chat.php:3933 +msgid "Grey" +msgstr "Harmaa" + +#: chat.php:3934 +msgid "Green" +msgstr "Vihreä" + +#: chat.php:3935 +msgid "Hot pink" +msgstr "Kuuma pinkki" + +#: chat.php:3936 +msgid "Indigo" +msgstr "Indigonsininen" + +#: chat.php:3937 +msgid "Light blue" +msgstr "Valeansininen" + +#: chat.php:3938 +msgid "Light green" +msgstr "Vaaleanvihreä" + +#: chat.php:3939 +msgid "Lime green" +msgstr "Limenvihreä" + +#: chat.php:3940 +msgid "Magenta" +msgstr "Magenta" + +#: chat.php:3941 +msgid "Olive" +msgstr "Oliivinvihreä" + +#: chat.php:3942 +msgid "Orange" +msgstr "Oranssi" + +#: chat.php:3943 +msgid "Orange red" +msgstr "Oranssinpunainen" + +#: chat.php:3944 +msgid "Purple" +msgstr "Purppura" + +#: chat.php:3945 +msgid "Red" +msgstr "Punainen" + +#: chat.php:3946 +msgid "Royal blue" +msgstr "Syvänsininen" + +#: chat.php:3947 +msgid "Sea green" +msgstr "Merenvihreä" + +#: chat.php:3948 +msgid "Sienna" +msgstr "Sienna" + +#: chat.php:3949 +msgid "Silver" +msgstr "Hopea" + +#: chat.php:3950 +msgid "Tan" +msgstr "Kellanruskea" + +#: chat.php:3951 +msgid "Teal" +msgstr "Sinivihreä" + +#: chat.php:3952 +msgid "Violet" +msgstr "Violetti" + +#: chat.php:3953 +msgid "White" +msgstr "Valkoinen" + +#: chat.php:3954 +msgid "Yellow" +msgstr "Keltainen" + +#: chat.php:3955 +msgid "Yellow green" +msgstr "Keltavihreä" + +#: chat.php:4077 +msgid "Successfully destroyed chat" +msgstr "Chat tuhottu" + +#: chat.php:4086 +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 +msgid "A Superadmin already exists!" +msgstr "Pääkäyttäjä on jo luotu!" + +#: chat.php:4182 chat.php:4369 +#, php-format +msgid "%s - " +msgstr "%s - " + +#: chat.php:4183 chat.php:4369 +#, php-format +msgid "[M] %s - " +msgstr "[Jäsenet] %s - " + +#: chat.php:4184 chat.php:4369 +#, php-format +msgid "[Staff] %s - " +msgstr "[Henkilökunta] %s - " + +#: chat.php:4185 chat.php:4369 +#, php-format +msgid "[Admin] %s - " +msgstr "[Ylläpito] %s - " + +#: chat.php:4186 chat.php:4369 +#, php-format +msgid "[%1$s to %2$s] - " +msgstr "[%1$s - %2$s] - " + +#: chat.php:4187 +#, php-format +msgid "%s entered the chat." +msgstr "%s liittyi." + +#: chat.php:4188 +#, php-format +msgid "%s left the chat." +msgstr "%s poistui." + +#: chat.php:4189 +#, php-format +msgid "%s is now a registered member." +msgstr "%s on nyt rekisteröity jäsen." + +#: chat.php:4190 +#, 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." +msgstr "%s heitettiin ulos." + +#: chat.php:4192 +#, php-format +msgid "%s have been kicked." +msgstr "%s heitettiin ulos." + +#: chat.php:4193 +msgid "All guests have been kicked." +msgstr "Kaikki vierailijat heitettiin ulos." + +#: chat.php:4194 +#, php-format +msgid "%s has been cleaned." +msgstr "%s tyhjennetty." + +#: chat.php:4202 chat.php:4396 +msgid "Temporarily disabled" +msgstr "Väliaikaisesti pois käytöstä" + +#: chat.php:4218 chat.php:4594 +msgid "A chat community" +msgstr "Chattiyhteisö" + +#: chat.php:4256 +msgid "Successfully registered!" +msgstr "Rekisteröinti onnistui!" + +#: chat.php:4522 chat.php:4721 chat.php:4728 +msgid "No connection to database!" +msgstr "Ei tietokantayhteyttä!" + +#: chat.php:4531 +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 +#, 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 +#, 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 +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 +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 "Memcached-lisäosan asennus vaaditaan." diff --git a/locale/fr_FR/LC_MESSAGES/le-chat-php.mo b/locale/fr_FR/LC_MESSAGES/le-chat-php.mo new file mode 100644 index 0000000..aeca3df Binary files /dev/null and b/locale/fr_FR/LC_MESSAGES/le-chat-php.mo differ diff --git a/locale/fr_FR/LC_MESSAGES/le-chat-php.po b/locale/fr_FR/LC_MESSAGES/le-chat-php.po new file mode 100644 index 0000000..fe1f9ca --- /dev/null +++ b/locale/fr_FR/LC_MESSAGES/le-chat-php.po @@ -0,0 +1,1623 @@ +# 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: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-01-18 21:32+0100\n" +"PO-Revision-Date: 2023-01-18 21:38+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: fr_FR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 3.1.1\n" + +#: chat.php:261 +msgid "Enable applicants" +msgstr "Autorisé un candidat" + +#: chat.php:262 +msgid "Embed images" +msgstr "Images imbriquées" + +#: chat.php:263 chat.php:2202 +msgid "Show Timestamps" +msgstr "Afficher l'horodatage" + +#: chat.php:264 +msgid "Show session-IP" +msgstr "Voir la session-IP" + +#: chat.php:265 +msgid "Members can kick, if no moderator is present" +msgstr "Membres peuvent expulsés, si le modérateur est absent" + +#: chat.php:266 +msgid "Members can always kick" +msgstr "Membres peuvent toujours expulser" + +#: chat.php:267 +msgid "Force redirection" +msgstr "Forcer la redirection" + +#: chat.php:268 +msgid "Incognito mode" +msgstr "Mode incognito" + +#: chat.php:269 +msgid "Send mail on new public message" +msgstr "" + +#: chat.php:270 +msgid "Fallback to waiting room, if no moderator is present to approve guests" +msgstr "" + +#: chat.php:271 +msgid "Disable private messages" +msgstr "" + +#: chat.php:272 chat.php:2223 +msgid "Enable offline inbox" +msgstr "" + +#: chat.php:273 +msgid "Show a greeting message before showing the messages" +msgstr "" + +#: chat.php:274 chat.php:2204 +msgid "Sort messages from top to bottom" +msgstr "" + +#: chat.php:275 chat.php:2205 +msgid "Hide list of chatters" +msgstr "" + +#: chat.php:276 chat.php:1780 chat.php:1794 +msgid "Personal notes" +msgstr "" + +#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110 +msgid "Public notes" +msgstr "Notes publiques" + +#: chat.php:278 +msgid "Apply kick filter on moderators" +msgstr "" + +#: chat.php:279 +msgid "Show who kicks people or purges all messages." +msgstr "Montrez qui expulse les gens ou nettoie tous les messages." + +#: chat.php:280 +msgid "Hide reload post box button" +msgstr "" + +#: chat.php:281 +msgid "Hide reload messages button" +msgstr "" + +#: chat.php:282 +msgid "Hide profile button" +msgstr "" + +#: chat.php:283 +msgid "Hide admin button" +msgstr "" + +#: chat.php:284 +msgid "Hide notes button" +msgstr "" + +#: chat.php:285 +msgid "Hide clone button" +msgstr "" + +#: chat.php:286 +msgid "Hide rearrange button" +msgstr "" + +#: chat.php:287 +msgid "Hide help button" +msgstr "" + +#: chat.php:288 +msgid "Apply postbox delete button globally" +msgstr "" + +#: chat.php:289 +msgid "Allow enhancing functionality with JavaScript" +msgstr "" + +#: chat.php:292 chat.php:2170 +msgid "Background colour" +msgstr "Couleur de fond" + +#: chat.php:293 chat.php:2167 +msgid "Font colour" +msgstr "Couleur des polices" + +#: chat.php:296 +msgid "Entrance" +msgstr "Entrer" + +#: chat.php:297 +msgid "Leaving" +msgstr "Quitter" + +#: chat.php:298 +msgid "Member registered" +msgstr "Membre enregisté" + +#: chat.php:299 +msgid "Applicant registered" +msgstr "Candidat inscrit" + +#: chat.php:300 +msgid "Kicked" +msgstr "Banni / éjecté" + +#: chat.php:301 +msgid "Multiple kicked" +msgstr "Multiples éjections" + +#: chat.php:302 +msgid "All kicked" +msgstr "Éjection globale" + +#: chat.php:303 +msgid "Room cleaned" +msgstr "Messages nettoyés" + +#: chat.php:304 +msgid "Message to all" +msgstr "Message à tous" + +#: chat.php:305 +msgid "Message to members only" +msgstr "Message aux membres seulement" + +#: chat.php:306 +msgid "Message to staff only" +msgstr "Message pour les gestionnaires seulement" + +#: chat.php:307 +msgid "Message to admins only" +msgstr "Message pour les administrateurs seulement" + +#: chat.php:308 +msgid "Private message" +msgstr "Message privé" + +#: chat.php:309 +msgid "Attachement" +msgstr "" + +#: chat.php:312 +msgid "Member timeout (minutes)" +msgstr "Délai expiré pour un membre (minutes)" + +#: chat.php:313 +msgid "Guest timeout (minutes)" +msgstr "Délai expiré pour un visiteur (minutes)" + +#: chat.php:314 +msgid "Kick penalty (minutes)" +msgstr "Pénalité d'expulsion (minutes)" + +#: chat.php:315 +msgid "Waiting room time (seconds)" +msgstr "Délai pour entrer au chat (seconds)" + +#: chat.php:316 +msgid "Captcha timeout (seconds)" +msgstr "Délai du Captcha expiré (seconds)" + +#: chat.php:317 +msgid "Message timeout (minutes)" +msgstr "Délai expiré pour le message (minutes)" + +#: chat.php:318 +msgid "Message limit (public)" +msgstr "Limite du message (publique)" + +#: chat.php:319 +msgid "Maximal message length" +msgstr "Longueur maximale du message" + +#: chat.php:320 +msgid "Maximal nickname length" +msgstr "Longueur maximale pour le Pseudo" + +#: chat.php:321 +msgid "Minimal password length" +msgstr "Longueur minimale du mot de passe" + +#: chat.php:322 +msgid "Default message reload time (seconds)" +msgstr "Temps de rechargement du message par défaut (seconds)" + +#: chat.php:323 +msgid "Number of notes revisions to keep" +msgstr "Nombre de notes révisées à conserver" + +#: chat.php:324 +msgid "Maximum upload size in KB" +msgstr "" + +#: chat.php:325 +msgid "Enable file uploads" +msgstr "" + +#: chat.php:326 +msgid "Lowest refresh rate" +msgstr "" + +#: chat.php:327 +msgid "Highest refresh rate" +msgstr "" + +#: chat.php:330 +msgid "Rules (html)" +msgstr "Règles (html)" + +#: chat.php:331 +msgid "CSS Style" +msgstr "Style css" + +#: chat.php:332 +msgid "Chat disabled message (html)" +msgstr "" + +#: chat.php:335 +msgid "" +"Date " +"formating" +msgstr "" +"Format " +"de date" + +#: chat.php:336 +msgid "Characters used in Captcha" +msgstr "Charactères utilisés dans le Captcha" + +#: chat.php:337 +msgid "Custom redirection script" +msgstr "Personnalisation du script de redirection" + +#: chat.php:338 +msgid "Chat name" +msgstr "Nom du chat" + +#: chat.php:339 +msgid "Send mail using this address" +msgstr "" + +#: chat.php:340 +msgid "Send mail to this address" +msgstr "" + +#: chat.php:341 +msgid "Nickname regex" +msgstr "" + +#: chat.php:342 +msgid "Password regex" +msgstr "" + +#: chat.php:343 +msgid "Link to external CSS file (on your own server)" +msgstr "" + +#: chat.php:344 +msgid "Meta description (best 50 - 160 characters for SEO)" +msgstr "" + +#: chat.php:345 +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 +msgid "Change Guestaccess" +msgstr "Changer l'accès de l'invité" + +#: chat.php:349 +msgid "Enable global Password" +msgstr "" + +#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433 +msgid "Global Password:" +msgstr "Mot de passe global:" + +#: chat.php:351 chat.php:819 +msgid "Captcha" +msgstr "Captcha" + +#: chat.php:352 chat.php:775 chat.php:835 +msgid "Only for guests" +msgstr "Seulements les invités" + +#: chat.php:353 chat.php:1220 +msgid "Topic" +msgstr "Sujet" + +#: chat.php:354 chat.php:781 +msgid "Let guests register themselves" +msgstr "" + +#: chat.php:355 chat.php:862 +msgid "Default time zone" +msgstr "" + +#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259 +msgid "Initial Setup" +msgstr "Initialisation" + +#: chat.php:588 +#, php-format +msgid "Redirecting to: %s" +msgstr "Redirection vers: %s" + +#: chat.php:595 +#, php-format +msgid "" +"Dangerous non-http link requested, copy paste this link if you are really " +"sure: %s" +msgstr "" + +#: chat.php:597 +#, php-format +msgid "Non-http link requested: %s" +msgstr "Lien Non-http demandé: %s" + +#: chat.php:599 +#, 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 +msgid "Access denied" +msgstr "Accès interdit" + +#: chat.php:609 +#, 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 +msgid "Logout" +msgstr "Déconnexion" + +#: chat.php:636 +msgid "Copy:" +msgstr "Copie:" + +#: chat.php:724 +msgid "Chat Setup" +msgstr "Installation du chat" + +#: chat.php:734 chat.php:1233 +msgid "Allow" +msgstr "Autorisé" + +#: chat.php:739 chat.php:1238 +msgid "Allow with waitingroom" +msgstr "Autorisé avec l'attente dans le salon" + +#: chat.php:744 chat.php:1243 +msgid "Require moderator approval" +msgstr "Demande l'approbation du modérateur" + +#: chat.php:749 chat.php:1248 +msgid "Only members" +msgstr "Seulement les membres" + +#: chat.php:754 chat.php:1251 +msgid "Disable chat" +msgstr "" + +#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229 +msgid "Disabled" +msgstr "Désinstallé" + +#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219 +msgid "Enabled" +msgstr "Installé" + +#: chat.php:792 +msgid "As applicant" +msgstr "" + +#: chat.php:797 +msgid "As member" +msgstr "" + +#: chat.php:800 +msgid "System messages" +msgstr "Messages du système" + +#: chat.php:822 chat.php:1053 +#, php-format +msgid "" +"The %s extension of PHP is required for this feature. Please install it " +"first." +msgstr "" + +#: chat.php:847 +msgid "Simple" +msgstr "Simple" + +#: chat.php:852 +msgid "Moderate" +msgstr "Moderé" + +#: chat.php:857 +msgid "Extreme" +msgstr "Extrême" + +#: chat.php:906 chat.php:1548 chat.php:1610 +msgid "Apply" +msgstr "Appliqué" + +#: chat.php:910 chat.php:1050 +msgid "Backup and restore" +msgstr "Sauvegarder et récupérer" + +#: chat.php:912 +msgid "Destroy chat" +msgstr "Destruction du chat" + +#: chat.php:1057 chat.php:1066 +msgid "Settings" +msgstr "Paramètres" + +#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575 +#: chat.php:1622 +msgid "Filter" +msgstr "Filtré" + +#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538 +msgid "Members" +msgstr "Membres" + +#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322 +msgid "Notes" +msgstr "Notes" + +#: chat.php:1061 +msgid "Backup" +msgstr "Sauvegarder" + +#: chat.php:1070 +msgid "Restore" +msgstr "Récupérer" + +#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260 +msgid "Go to the Setup-Page" +msgstr "Allez à la page d'installation" + +#: chat.php:1082 chat.php:1091 chat.php:1949 +msgid "Are you sure?" +msgstr "Êtes-vous certain?" + +#: chat.php:1083 chat.php:1092 chat.php:1956 +msgid "Yes" +msgstr "Oui" + +#: chat.php:1084 chat.php:1093 chat.php:1963 +msgid "No" +msgstr "Non" + +#: chat.php:1101 chat.php:4259 +msgid "Superadmin Login" +msgstr "Connexion du super administrateur" + +#: chat.php:1102 +msgid "Superadmin Nickname:" +msgstr "Pseudo super administrateur:" + +#: chat.php:1103 +msgid "Superadmin Password:" +msgstr "Mot de passe du super administrateur:" + +#: chat.php:1104 +msgid "Confirm Password:" +msgstr "Confirmer le mot de passe:" + +#: chat.php:1105 +msgid "Initialise Chat" +msgstr "Initalisation du chat" + +#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439 +msgid "Change language:" +msgstr "Changer la langue:" + +#: chat.php:1117 +msgid "Database successfully updated!" +msgstr "Base de données installée!" + +#: chat.php:1125 chat.php:1326 chat.php:2407 +msgid "Nickname:" +msgstr "Pseudo:" + +#: chat.php:1126 chat.php:1327 chat.php:2408 +msgid "Password:" +msgstr "Mot de passe:" + +#: chat.php:1128 +msgid "Login" +msgstr "Connexion" + +#: chat.php:1129 +msgid "Forgot login?" +msgstr "" + +#: chat.php:1142 chat.php:1306 +msgid "Reset password" +msgstr "Réinitialisation du mot de passe" + +#: chat.php:1150 +#, php-format +msgid "" +"Successfully reset password for username %s. Please remove the password " +"reset define from the script again." +msgstr "" + +#: 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 "" + +#: 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 +msgid "(choose)" +msgstr "(choisir)" + +#: chat.php:1170 +msgid "All guests" +msgstr "Tous les invités" + +#: chat.php:1182 +msgid "Administrative functions" +msgstr "Fonctions d'administration" + +#: chat.php:1188 +msgid "Clean messages" +msgstr "Messages nettoyés" + +#: chat.php:1191 +msgid "Whole room" +msgstr "Salon" + +#: chat.php:1192 +msgid "Selection" +msgstr "Sélection" + +#: chat.php:1193 +msgid "Following nickname:" +msgstr "Suivre le pseudo:" + +#: chat.php:1200 +msgid "Clean" +msgstr "Nettoyé" + +#: chat.php:1202 +#, php-format +msgid "Kick Chatter (%d minutes)" +msgstr "Pseudos éjectés (%d minutes)" + +#: chat.php:1204 +msgid "Kickmessage:" +msgstr "Messages interdis:" + +#: chat.php:1205 +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 +msgid "Kick" +msgstr "Banni / éjecté" + +#: chat.php:1208 +msgid "Logout inactive Chatter" +msgstr "Déconnexion chatteur inactif" + +#: chat.php:1212 +msgid "View active sessions" +msgstr "Visualiser les sessions actives" + +#: chat.php:1212 chat.php:1603 +msgid "Linkfilter" +msgstr "Lien filtré" + +#: chat.php:1217 +msgid "View" +msgstr "Voir" + +#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582 +#: chat.php:1626 +msgid "Change" +msgstr "Changer" + +#: chat.php:1256 +msgid "Register applicant" +msgstr "Ajouter un candidat" + +#: chat.php:1264 chat.php:1322 chat.php:1328 +msgid "Register" +msgstr "Enregistrer" + +#: chat.php:1294 +msgid "Delete from database" +msgstr "Effacer de la base de données" + +#: chat.php:1294 +msgid "Deny access (!)" +msgstr "Acces interdit (!)" + +#: chat.php:1296 +msgid "Set to applicant (SG)" +msgstr "Ajouter comme candidat (SG)" + +#: chat.php:1298 +msgid "Set to regular member" +msgstr "Ajouter comme membre regulier" + +#: chat.php:1299 +msgid "Set to moderator (M)" +msgstr "Ajouter comme modérateur (M)" + +#: chat.php:1300 +msgid "Set to supermod (SM)" +msgstr "Ajouter comme super modérateur (SM)" + +#: chat.php:1302 +msgid "Set to admin (A)" +msgstr "Ajouter comme administrateur (A)" + +#: chat.php:1314 +msgid "Register Guest" +msgstr "Enregister un invité" + +#: chat.php:1324 +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 +msgid "Reload" +msgstr "Rechargé" + +#: chat.php:1345 +msgid "Active Sessions" +msgstr "Sessions actives" + +#: chat.php:1346 chat.php:1873 +msgid "Nickname" +msgstr "Pseudo" + +#: chat.php:1346 +msgid "Timeout in" +msgstr "Expire dans" + +#: chat.php:1346 chat.php:1873 +msgid "User-Agent" +msgstr "User-Agent" + +#: chat.php:1350 +msgid "IP-Address" +msgstr "IP-Adresse" + +#: chat.php:1351 +msgid "Actions" +msgstr "Actions" + +#: chat.php:1393 +msgid "Unban" +msgstr "" + +#: chat.php:1416 +msgid "Incorrect regular expression!" +msgstr "Expression régulière incorrecte!" + +#: chat.php:1416 chat.php:1424 +#, php-format +msgid "Your match was as follows: %s" +msgstr "" + +#: chat.php:1424 +msgid "" +"Your match was too long. You can use max. 255 characters. Try splitting it " +"up." +msgstr "" + +#: chat.php:1541 chat.php:1606 +msgid "Filter ID:" +msgstr "Filtre ID:" + +#: chat.php:1542 chat.php:1607 +msgid "Match" +msgstr "Correspond" + +#: chat.php:1543 chat.php:1608 +msgid "Replace" +msgstr "Replacé" + +#: chat.php:1544 chat.php:1578 chat.php:1589 +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 +msgid "Regex" +msgstr "Regex" + +#: chat.php:1547 chat.php:1581 chat.php:1592 +msgid "Case sensitive" +msgstr "" + +#: chat.php:1586 chat.php:1630 +msgid "New filter:" +msgstr "Nouveau filtre:" + +#: chat.php:1593 chat.php:1634 +msgid "Add" +msgstr "Ajouter" + +#: chat.php:1691 +msgid "" +"This chat uses frames. Please enable frames in your browser or use a " +"suitable one!" +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 +msgid "Back to the login page." +msgstr "Retour à la page d'authentification." + +#: chat.php:1709 +msgid "Bottom" +msgstr "Bas" + +#: chat.php:1710 +msgid "Manual refresh required" +msgstr "" + +#: chat.php:1726 +msgid "Top" +msgstr "Haut" + +#: chat.php:1734 chat.php:1940 chat.php:1942 +msgid "Delete selected messages" +msgstr "Effacer les messages sélectionnés" + +#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281 +msgid "Back to the chat." +msgstr "Retour au chat." + +#: chat.php:1774 chat.php:1791 +msgid "Admin notes" +msgstr "Notes de l'administrateur" + +#: chat.php:1777 chat.php:1788 +msgid "Staff notes" +msgstr "Notes des gestionnaires" + +#: chat.php:1811 +msgid "Notes saved!" +msgstr "Notes enregistrées!" + +#: chat.php:1835 chat.php:2122 +#, php-format +msgid "Last edited by %1$s at %2$s" +msgstr "Dernière édition fait par %1$s à %2$s" + +#: chat.php:1848 +msgid "Save notes" +msgstr "Sauvegarder les notes" + +#: chat.php:1850 +msgid "Revisions:" +msgstr "Révisions:" + +#: chat.php:1853 +msgid "Older" +msgstr "Précédent" + +#: chat.php:1857 +msgid "Newer" +msgstr "Nouveau" + +#: chat.php:1868 chat.php:1914 +msgid "Waiting room" +msgstr "Salle d'attente" + +#: chat.php:1880 +msgid "Allow checked" +msgstr "Autoriser d'enregistrer" + +#: chat.php:1881 +msgid "Allow all" +msgstr "Autoriser tout le monde" + +#: chat.php:1882 +msgid "Deny checked" +msgstr "Refuser d'enregistrer" + +#: chat.php:1883 +msgid "Deny all" +msgstr "Refuser tout le monde" + +#: chat.php:1883 +msgid "Send message to denied:" +msgstr "Envoyer un message interdit:" + +#: chat.php:1884 +msgid "Submit" +msgstr "Transmettre" + +#: chat.php:1886 +msgid "No more entry requests to approve." +msgstr "Plus aucunes entrées à approuver." + +#: chat.php:1916 +#, php-format +msgid "" +"Welcome %1$s, your login has been delayed, you can access the chat in %2$d " +"seconds." +msgstr "" +"Bienvenue %1$s, votre connexion a été mise en attente, votre accès au chat " +"dans %2$d secondes." + +#: chat.php:1918 +#, 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 "" +"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 +#, php-format +msgid "" +"If this page doesn't refresh every %d seconds, use the button below to " +"reload it manually!" +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 +msgid "Exit Chat" +msgstr "Sortir du Chat" + +#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430 +msgid "Rules" +msgstr "Règles" + +#: chat.php:1985 +msgid "Send to" +msgstr "Envoyer à" + +#: chat.php:1990 +msgid "All chatters" +msgstr "À tous les chatteurs" + +#: chat.php:1996 +msgid "Members only" +msgstr "Membres seulement" + +#: chat.php:2003 +msgid "Staff only" +msgstr "Gestionnaire seulement" + +#: chat.php:2010 +msgid "Admin only" +msgstr "Administrateur seulement" + +#: chat.php:2019 +msgid "(offline)" +msgstr "" + +#: chat.php:2043 +msgid "Also purge messages" +msgstr "Purger les messages" + +#: chat.php:2050 +msgid "Delete last message" +msgstr "Effacer les derniers messages" + +#: chat.php:2055 +msgid "Delete all messages" +msgstr "Effacer tous les messages" + +#: chat.php:2057 +msgid "Switch to single-line" +msgstr "Baculer à une seule ligne" + +#: chat.php:2059 +msgid "Switch to multi-line" +msgstr "Basculer à plusieurs lignes" + +#: chat.php:2070 +#, php-format +msgid "Welcome %s!" +msgstr "" + +#: chat.php:2071 +#, 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 "" + +#: chat.php:2087 +msgid "Help" +msgstr "Aide" + +#: 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." +msgstr "" +"Toutes les fonctions devraient être plutôt bien auto-explicatives, il suffit " +"d'utiliser les boutons. Dans votre profil, vous pouvez ajuster le taux de " +"rafraîchissement, la couleur de police et votre taille préférée de la boîte " +"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 +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 "" +"Si vous souhaitez intégrer une image dans votre message, il suffit " +"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 +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 "" +"Membres: vous aurez encore plus d'options dans votre profil. Vous pouvez " +"ajuster votre type de police et vous pouvez changer votre mot de passe à " +"tout moment." + +#: 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 "" +"Moderateurs: Remarquez le bouton administrateur en bas. Il va mettre en " +"place une page où vous pouvez nettoyer le salon, les chatteurs éjectés, voir " +"toutes les sessions actives et désactiver complètement l'accès des invités " +"si nécessaire." + +#: chat.php:2097 +msgid "" +"Admins: You'll be furthermore able to register guests, edit members and " +"register new nicknames." +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 +msgid "Your Profile" +msgstr "Votre profile" + +#: chat.php:2144 +msgid "Don't ignore anymore" +msgstr "Ne jamais plus ignorer" + +#: chat.php:2152 +msgid "Ignore" +msgstr "Ignoré" + +#: chat.php:2163 +#, 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 +msgid "View examples" +msgstr "Visualiser les exemples" + +#: chat.php:2174 +msgid "Fontface" +msgstr "Ajustement des polices" + +#: chat.php:2175 +msgid "Room Default" +msgstr "Salon par défaut" + +#: chat.php:2188 +msgid "Bold" +msgstr "Gras" + +#: chat.php:2192 +msgid "Italic" +msgstr "Italique" + +#: chat.php:2196 +msgid "Small" +msgstr "" + +#: chat.php:2199 +msgid "Example for your chosen font" +msgstr "Exemple de choix de polices" + +#: chat.php:2203 +msgid "Autoscroll (for old browsers or top-to-bottom sort)." +msgstr "" + +#: chat.php:2234 +msgid "For everyone" +msgstr "" + +#: chat.php:2239 +msgid "For members only" +msgstr "" + +#: chat.php:2244 +msgid "For staff only" +msgstr "" + +#: chat.php:2248 +msgid "Time zone" +msgstr "" + +#: chat.php:2261 +msgid "Change Password" +msgstr "Changer le mot de passe" + +#: chat.php:2263 +msgid "Old password:" +msgstr "Ancien mot de passe:" + +#: chat.php:2264 +msgid "New password:" +msgstr "Nouveau mot de passe:" + +#: chat.php:2265 +msgid "Confirm new password:" +msgstr "Confirmer votre nouveau mot de passe:" + +#: chat.php:2268 +msgid "Change Nickname" +msgstr "" + +#: chat.php:2269 +msgid "New nickname:" +msgstr "Nouveau Pseudo:" + +#: chat.php:2273 +msgid "Save changes" +msgstr "Sauvegarder les modifications" + +#: chat.php:2275 +msgid "Delete account" +msgstr "" + +#: chat.php:2301 +msgid "Reload Post Box" +msgstr "Recharger la boite de texte" + +#: chat.php:2304 +msgid "Reload Messages" +msgstr "Recharger les messages" + +#: chat.php:2307 +msgid "Profile" +msgstr "Profile" + +#: chat.php:2311 chat.php:2528 +msgid "Admin" +msgstr "Administrateur" + +#: chat.php:2318 +msgid "View public notes" +msgstr "Voir notes publiques" + +#: chat.php:2325 +msgid "Clone" +msgstr "Clone" + +#: chat.php:2334 +msgid "Rearrange" +msgstr "" + +#: chat.php:2337 +msgid "Rules & Help" +msgstr "Règles & Aide" + +#: chat.php:2358 chat.php:2362 +msgid "File not found!" +msgstr "" + +#: chat.php:2370 +#, php-format +msgid "Bye %s, visit again soon!" +msgstr "Au revoir %s, revenez nous voir bientôt!" + +#: chat.php:2377 +msgid "Colourtable" +msgstr "Table de couleur" + +#: chat.php:2388 +msgid "Back to your Profile" +msgstr "Retourner à votre profile" + +#: chat.php:2412 +msgid "Repeat password
to register" +msgstr "" + +#: chat.php:2412 +msgid "(optional)" +msgstr "" + +#: chat.php:2417 +msgid "Guests, choose a colour:" +msgstr "Invité, choisir une couleur:" + +#: chat.php:2417 +msgid "Random Colour" +msgstr "Couleur aléatoire" + +#: chat.php:2421 chat.php:2435 chat.php:2569 +msgid "Sorry, currently members only!" +msgstr "Désolé, disponible seulement que pour les membres!" + +#: chat.php:2423 chat.php:2437 +msgid "Enter Chat" +msgstr "Entrer" + +#: chat.php:2457 +#, php-format +msgid "Error: %s" +msgstr "Erreur: %s" + +#: chat.php:2467 +msgid "Fatal error" +msgstr "" + +#: chat.php:2470 +#, php-format +msgid "Fatal error: %s" +msgstr "" + +#: chat.php:2482 chat.php:2693 +msgid "Failed login attempt(s)" +msgstr "Tentative de connexion ratée(s)" + +#: chat.php:2489 +#, php-format +msgid "Read %d messages in your inbox" +msgstr "" + +#: chat.php:2498 +#, php-format +msgid "%d new guests to approve" +msgstr "%d nouveaux invités à approuver" + +#: chat.php:2530 +msgid "Admin:" +msgstr "Administrateur:" + +#: chat.php:2533 +msgid "Staff" +msgstr "Gestionnaire" + +#: chat.php:2535 +msgid "Staff:" +msgstr "Gestionnaire:" + +#: chat.php:2540 +msgid "Members:" +msgstr "Membres:" + +#: chat.php:2542 +msgid "Guests" +msgstr "Invités" + +#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092 +#, 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 +#, 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 +msgid "Wrong global Password!" +msgstr "Mauvais mot de passe global!" + +#: chat.php:2591 chat.php:2612 +msgid "Wrong Captcha" +msgstr "Mauvais Captcha" + +#: chat.php:2596 chat.php:2604 +msgid "Captcha already used or timed out." +msgstr "Captcha déjà utilisé ou expiré." + +#: chat.php:2652 +msgid "A user with this nickname is already logged in." +msgstr "" + +#: chat.php:2652 chat.php:2933 chat.php:3176 +msgid "Wrong Password!" +msgstr "Mauvais mot de passe!" + +#: chat.php:2696 +msgid "Dismiss" +msgstr "Reconnu" + +#: chat.php:2747 chat.php:3171 chat.php:4096 +msgid "Password confirmation does not match!" +msgstr "Confirmation mot du passe ne correspond pas!" + +#: chat.php:2859 +msgid "Invalid/expired session" +msgstr "Session invalide / expirée" + +#: chat.php:2875 chat.php:3412 +msgid "You have been kicked!" +msgstr "Banni / éjecté!" + +#: chat.php:2885 +#, php-format +msgid "Currently %d chatter(s) in room:" +msgstr "Actuellement il y a %d chatteur(s) dans le salon:" + +#: chat.php:2933 +msgid "This nickname is a registered member." +msgstr "" + +#: chat.php:2960 chat.php:3001 +#, php-format +msgid "%s is already registered." +msgstr "%s est déjà enregistré." + +#: chat.php:2969 chat.php:2990 +#, php-format +msgid "Can't register %s" +msgstr "Ne peut enregistrer %s" + +#: chat.php:2978 chat.php:3023 +#, php-format +msgid "%s successfully registered." +msgstr "%s enregistré avec succes." + +#: chat.php:3031 chat.php:3036 +#, php-format +msgid "Can't change status of %s" +msgstr "Ne peut changer le statut de %s" + +#: chat.php:3047 +#, php-format +msgid "%s successfully deleted from database." +msgstr "%s effacé de la base de données avec succès." + +#: chat.php:3056 +#, php-format +msgid "Status of %s successfully changed." +msgstr "Le statut de %s a changé avec succès." + +#: chat.php:3073 +#, php-format +msgid "Successfully reset password for %s" +msgstr "" + +#: chat.php:3075 +#, php-format +msgid "Can't reset password for %s" +msgstr "" + +#: chat.php:3190 +msgid "Your profile has successfully been saved." +msgstr "Votre profile a bien étét enregistré." + +#: chat.php:3202 +msgid "Nickname is already taken" +msgstr "Pseudo déjà pris" + +#: chat.php:3714 +msgid "system message" +msgstr "message du système" + +#: chat.php:3921 +msgid "Beige" +msgstr "Beige" + +#: chat.php:3922 +msgid "Black" +msgstr "Noir" + +#: chat.php:3923 +msgid "Blue" +msgstr "Bleu" + +#: chat.php:3924 +msgid "Blue violet" +msgstr "Bleu violet" + +#: chat.php:3925 +msgid "Brown" +msgstr "Brun" + +#: chat.php:3926 +msgid "Cyan" +msgstr "Cyan" + +#: chat.php:3927 +msgid "Dark blue" +msgstr "Bleu foncé" + +#: chat.php:3928 +msgid "Dark green" +msgstr "Vert foncé" + +#: chat.php:3929 +msgid "Dark red" +msgstr "Rouge foncé" + +#: chat.php:3930 +msgid "Dark violet" +msgstr "Violet foncé" + +#: chat.php:3931 +msgid "Sky blue" +msgstr "Bleu ciel" + +#: chat.php:3932 +msgid "Gold" +msgstr "Or" + +#: chat.php:3933 +msgid "Grey" +msgstr "Gris" + +#: chat.php:3934 +msgid "Green" +msgstr "Vert" + +#: chat.php:3935 +msgid "Hot pink" +msgstr "Rose indien" + +#: chat.php:3936 +msgid "Indigo" +msgstr "Indigo" + +#: chat.php:3937 +msgid "Light blue" +msgstr "Bleu Pâle" + +#: chat.php:3938 +msgid "Light green" +msgstr "Vert pâle" + +#: chat.php:3939 +msgid "Lime green" +msgstr "Vert lime" + +#: chat.php:3940 +msgid "Magenta" +msgstr "Magenta" + +#: chat.php:3941 +msgid "Olive" +msgstr "Olive" + +#: chat.php:3942 +msgid "Orange" +msgstr "Orange" + +#: chat.php:3943 +msgid "Orange red" +msgstr "Rouge orangé" + +#: chat.php:3944 +msgid "Purple" +msgstr "Mauve" + +#: chat.php:3945 +msgid "Red" +msgstr "Rouge" + +#: chat.php:3946 +msgid "Royal blue" +msgstr "Bleu royal" + +#: chat.php:3947 +msgid "Sea green" +msgstr "Vert océan" + +#: chat.php:3948 +msgid "Sienna" +msgstr "Sienna" + +#: chat.php:3949 +msgid "Silver" +msgstr "Argent" + +#: chat.php:3950 +msgid "Tan" +msgstr "Beige" + +#: chat.php:3951 +msgid "Teal" +msgstr "Bleu-vert foncé" + +#: chat.php:3952 +msgid "Violet" +msgstr "Violet" + +#: chat.php:3953 +msgid "White" +msgstr "Blanc" + +#: chat.php:3954 +msgid "Yellow" +msgstr "Jaune" + +#: chat.php:3955 +msgid "Yellow green" +msgstr "Jaune-verdâtre" + +#: chat.php:4077 +msgid "Successfully destroyed chat" +msgstr "Chat supprimé" + +#: chat.php:4086 +msgid "" +"Database tables already exist! To continue, you have to delete these tables " +"manually first." +msgstr "" +"Les tables de base de données existent déjà! Pour continuer, vous devez " +"supprimer les tables manuellement." + +#: chat.php:4089 +msgid "A Superadmin already exists!" +msgstr "Un super administrateur existe déjà!" + +#: chat.php:4182 chat.php:4369 +#, php-format +msgid "%s - " +msgstr "%s - " + +#: chat.php:4183 chat.php:4369 +#, php-format +msgid "[M] %s - " +msgstr "[Membre] %s - " + +#: chat.php:4184 chat.php:4369 +#, php-format +msgid "[Staff] %s - " +msgstr "[Gestionnaire] %s - " + +#: chat.php:4185 chat.php:4369 +#, php-format +msgid "[Admin] %s - " +msgstr "[Administrateur] %s - " + +#: chat.php:4186 chat.php:4369 +#, php-format +msgid "[%1$s to %2$s] - " +msgstr "[%1$s to %2$s] - " + +#: chat.php:4187 +#, php-format +msgid "%s entered the chat." +msgstr "%s est arrivé sur le chat." + +#: chat.php:4188 +#, php-format +msgid "%s left the chat." +msgstr "%s a quitté le chat." + +#: chat.php:4189 +#, php-format +msgid "%s is now a registered member." +msgstr "%s est maintenant un membre enregistré." + +#: chat.php:4190 +#, 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." +msgstr "%s a été expulsé." + +#: chat.php:4192 +#, php-format +msgid "%s have been kicked." +msgstr "%s ont été expulsé." + +#: chat.php:4193 +msgid "All guests have been kicked." +msgstr "Tous les chatteurs ont été expulsé." + +#: chat.php:4194 +#, php-format +msgid "%s has been cleaned." +msgstr "%s a été nettoyé." + +#: chat.php:4202 chat.php:4396 +msgid "Temporarily disabled" +msgstr "" + +#: chat.php:4218 chat.php:4594 +msgid "A chat community" +msgstr "" + +#: chat.php:4256 +msgid "Successfully registered!" +msgstr "Enregistré avec succès!" + +#: chat.php:4522 chat.php:4721 chat.php:4728 +msgid "No connection to database!" +msgstr "Pas de connexion à la base de données!" + +#: chat.php:4531 +msgid "" +"Note: Default CSS is now hardcoded and can be removed from the CSS setting" +msgstr "" + +#: chat.php:4611 +#, 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 +#, 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 +msgid "" +"No connection to database, please create a database and edit the script to " +"use the correct database with given username and password!" +msgstr "" +"Pas de connexion à la base de données, s'il vous plaît créer une base de " +"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 +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 "" diff --git a/locale/id_ID/LC_MESSAGES/le-chat-php.mo b/locale/id_ID/LC_MESSAGES/le-chat-php.mo new file mode 100644 index 0000000..866a140 Binary files /dev/null and b/locale/id_ID/LC_MESSAGES/le-chat-php.mo differ diff --git a/locale/id_ID/LC_MESSAGES/le-chat-php.po b/locale/id_ID/LC_MESSAGES/le-chat-php.po new file mode 100644 index 0000000..46604ca --- /dev/null +++ b/locale/id_ID/LC_MESSAGES/le-chat-php.po @@ -0,0 +1,1621 @@ +# 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: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-01-18 21:32+0100\n" +"PO-Revision-Date: 2023-01-18 21:38+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: id_ID\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: Poedit 3.1.1\n" + +#: chat.php:261 +msgid "Enable applicants" +msgstr "Memungkinkan pemohon" + +#: chat.php:262 +msgid "Embed images" +msgstr "Tanamkan gambar" + +#: chat.php:263 chat.php:2202 +msgid "Show Timestamps" +msgstr "Tunjukkan penanda waktu" + +#: chat.php:264 +msgid "Show session-IP" +msgstr "Tunjukkan sesi-IP" + +#: chat.php:265 +msgid "Members can kick, if no moderator is present" +msgstr "Anggota dapat mengusir, jika tak ada moderator" + +#: chat.php:266 +msgid "Members can always kick" +msgstr "Anggota selalu dapat mengusir" + +#: chat.php:267 +msgid "Force redirection" +msgstr "Paksa pengalihan" + +#: chat.php:268 +msgid "Incognito mode" +msgstr "Mode penyamaran" + +#: chat.php:269 +msgid "Send mail on new public message" +msgstr "" + +#: chat.php:270 +msgid "Fallback to waiting room, if no moderator is present to approve guests" +msgstr "" + +#: chat.php:271 +msgid "Disable private messages" +msgstr "" + +#: chat.php:272 chat.php:2223 +msgid "Enable offline inbox" +msgstr "" + +#: chat.php:273 +msgid "Show a greeting message before showing the messages" +msgstr "" + +#: chat.php:274 chat.php:2204 +msgid "Sort messages from top to bottom" +msgstr "" + +#: chat.php:275 chat.php:2205 +msgid "Hide list of chatters" +msgstr "" + +#: chat.php:276 chat.php:1780 chat.php:1794 +msgid "Personal notes" +msgstr "" + +#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110 +msgid "Public notes" +msgstr "Catatan terbuka" + +#: chat.php:278 +msgid "Apply kick filter on moderators" +msgstr "" + +#: chat.php:279 +msgid "Show who kicks people or purges all messages." +msgstr "" +"Memperlihatkan siapa yang mengusir orang atau membersihkan semua pesan." + +#: chat.php:280 +msgid "Hide reload post box button" +msgstr "" + +#: chat.php:281 +msgid "Hide reload messages button" +msgstr "" + +#: chat.php:282 +msgid "Hide profile button" +msgstr "" + +#: chat.php:283 +msgid "Hide admin button" +msgstr "" + +#: chat.php:284 +msgid "Hide notes button" +msgstr "" + +#: chat.php:285 +msgid "Hide clone button" +msgstr "" + +#: chat.php:286 +msgid "Hide rearrange button" +msgstr "" + +#: chat.php:287 +msgid "Hide help button" +msgstr "" + +#: chat.php:288 +msgid "Apply postbox delete button globally" +msgstr "" + +#: chat.php:289 +msgid "Allow enhancing functionality with JavaScript" +msgstr "" + +#: chat.php:292 chat.php:2170 +msgid "Background colour" +msgstr "Warna latar belakang" + +#: chat.php:293 chat.php:2167 +msgid "Font colour" +msgstr "Warna tulisan" + +#: chat.php:296 +msgid "Entrance" +msgstr "Memasuki" + +#: chat.php:297 +msgid "Leaving" +msgstr "Meninggalkan" + +#: chat.php:298 +msgid "Member registered" +msgstr "Anggota terdaftar" + +#: chat.php:299 +msgid "Applicant registered" +msgstr "Pemohon terdaftar" + +#: chat.php:300 +msgid "Kicked" +msgstr "Diusir" + +#: chat.php:301 +msgid "Multiple kicked" +msgstr "Pemohon diusir" + +#: chat.php:302 +msgid "All kicked" +msgstr "Semuanya diusir" + +#: chat.php:303 +msgid "Room cleaned" +msgstr "Ruang dibersihkan" + +#: chat.php:304 +msgid "Message to all" +msgstr "Pesan ke semuany" + +#: chat.php:305 +msgid "Message to members only" +msgstr "Pesan hanya kepada member" + +#: chat.php:306 +msgid "Message to staff only" +msgstr "Pesan hanya kepada staf" + +#: chat.php:307 +msgid "Message to admins only" +msgstr "Pesan hanya kepada admin" + +#: chat.php:308 +msgid "Private message" +msgstr "Pesan pribadi" + +#: chat.php:309 +msgid "Attachement" +msgstr "" + +#: chat.php:312 +msgid "Member timeout (minutes)" +msgstr "Batas waktu anggota (menit)" + +#: chat.php:313 +msgid "Guest timeout (minutes)" +msgstr "Batas waktu tamu (menit)" + +#: chat.php:314 +msgid "Kick penalty (minutes)" +msgstr "Sanksi pengusiran (menit)" + +#: chat.php:315 +msgid "Waiting room time (seconds)" +msgstr "Waktu ruang tunggu (detik)" + +#: chat.php:316 +msgid "Captcha timeout (seconds)" +msgstr "Batas waktu captcha (detik)" + +#: chat.php:317 +msgid "Message timeout (minutes)" +msgstr "Batas waktu pesan (menit)" + +#: chat.php:318 +msgid "Message limit (public)" +msgstr "Batas pesan (publik)" + +#: chat.php:319 +msgid "Maximal message length" +msgstr "Panjang pesan maksimal" + +#: chat.php:320 +msgid "Maximal nickname length" +msgstr "Panjang maksimal nama" + +#: chat.php:321 +msgid "Minimal password length" +msgstr "Panjang minimal kata sandi" + +#: chat.php:322 +msgid "Default message reload time (seconds)" +msgstr "Waktu muat-ulang pesan bawaan (detik)" + +#: chat.php:323 +msgid "Number of notes revisions to keep" +msgstr "Jumlah catatan Revisi yang disimpan" + +#: chat.php:324 +msgid "Maximum upload size in KB" +msgstr "" + +#: chat.php:325 +msgid "Enable file uploads" +msgstr "" + +#: chat.php:326 +msgid "Lowest refresh rate" +msgstr "" + +#: chat.php:327 +msgid "Highest refresh rate" +msgstr "" + +#: chat.php:330 +msgid "Rules (html)" +msgstr "Peraturan (html)" + +#: chat.php:331 +msgid "CSS Style" +msgstr "CSS Style" + +#: chat.php:332 +msgid "Chat disabled message (html)" +msgstr "" + +#: chat.php:335 +msgid "" +"Date " +"formating" +msgstr "" +"Date " +"formating" + +#: chat.php:336 +msgid "Characters used in Captcha" +msgstr "Karakter yang digunakan dalam Captcha" + +#: chat.php:337 +msgid "Custom redirection script" +msgstr "Skrip pengalihan kustom" + +#: chat.php:338 +msgid "Chat name" +msgstr "Nama obrolan" + +#: chat.php:339 +msgid "Send mail using this address" +msgstr "" + +#: chat.php:340 +msgid "Send mail to this address" +msgstr "" + +#: chat.php:341 +msgid "Nickname regex" +msgstr "" + +#: chat.php:342 +msgid "Password regex" +msgstr "" + +#: chat.php:343 +msgid "Link to external CSS file (on your own server)" +msgstr "" + +#: chat.php:344 +msgid "Meta description (best 50 - 160 characters for SEO)" +msgstr "" + +#: chat.php:345 +msgid "Prepend this text to system messages" +msgstr "Teks ini mendahului pesan dari sistem" + +#: chat.php:348 chat.php:728 chat.php:1225 +msgid "Change Guestaccess" +msgstr "Ubah akses tamu" + +#: chat.php:349 +msgid "Enable global Password" +msgstr "" + +#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433 +msgid "Global Password:" +msgstr "Sandi global:" + +#: chat.php:351 chat.php:819 +msgid "Captcha" +msgstr "Captcha" + +#: chat.php:352 chat.php:775 chat.php:835 +msgid "Only for guests" +msgstr "Hanya untuk tamu" + +#: chat.php:353 chat.php:1220 +msgid "Topic" +msgstr "Topik" + +#: chat.php:354 chat.php:781 +msgid "Let guests register themselves" +msgstr "" + +#: chat.php:355 chat.php:862 +msgid "Default time zone" +msgstr "" + +#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259 +msgid "Initial Setup" +msgstr "Pengaturan awal" + +#: chat.php:588 +#, php-format +msgid "Redirecting to: %s" +msgstr "Mengarahkan ke: %s" + +#: chat.php:595 +#, php-format +msgid "" +"Dangerous non-http link requested, copy paste this link if you are really " +"sure: %s" +msgstr "" + +#: chat.php:597 +#, php-format +msgid "Non-http link requested: %s" +msgstr "Meminta tautan non-http: %s" + +#: chat.php:599 +#, php-format +msgid "If it's not working, try this one: %s" +msgstr "Jika tak bekerja, pilih salah satu: %s" + +#: chat.php:609 +msgid "Access denied" +msgstr "Akses ditolak" + +#: chat.php:609 +#, 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 +msgid "Logout" +msgstr "Keluar" + +#: chat.php:636 +msgid "Copy:" +msgstr "Salin:" + +#: chat.php:724 +msgid "Chat Setup" +msgstr "Pengaturan obrolan" + +#: chat.php:734 chat.php:1233 +msgid "Allow" +msgstr "Izinkan" + +#: chat.php:739 chat.php:1238 +msgid "Allow with waitingroom" +msgstr "Memungkinkan dengan ruang tunggu" + +#: chat.php:744 chat.php:1243 +msgid "Require moderator approval" +msgstr "Memerlukan persetujuan moderator" + +#: chat.php:749 chat.php:1248 +msgid "Only members" +msgstr "Hanya anggota" + +#: chat.php:754 chat.php:1251 +msgid "Disable chat" +msgstr "" + +#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229 +msgid "Disabled" +msgstr "Dimatikan" + +#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219 +msgid "Enabled" +msgstr "Diaktifkan" + +#: chat.php:792 +msgid "As applicant" +msgstr "" + +#: chat.php:797 +msgid "As member" +msgstr "" + +#: chat.php:800 +msgid "System messages" +msgstr "Sistem perpesanan" + +#: chat.php:822 chat.php:1053 +#, php-format +msgid "" +"The %s extension of PHP is required for this feature. Please install it " +"first." +msgstr "" + +#: chat.php:847 +msgid "Simple" +msgstr "Sederhana" + +#: chat.php:852 +msgid "Moderate" +msgstr "Moderat" + +#: chat.php:857 +msgid "Extreme" +msgstr "Ekstrim" + +#: chat.php:906 chat.php:1548 chat.php:1610 +msgid "Apply" +msgstr "Terapkan" + +#: chat.php:910 chat.php:1050 +msgid "Backup and restore" +msgstr "Cadang dan pulihkan" + +#: chat.php:912 +msgid "Destroy chat" +msgstr "Musnahkan obrolan" + +#: chat.php:1057 chat.php:1066 +msgid "Settings" +msgstr "Pengaturan" + +#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575 +#: chat.php:1622 +msgid "Filter" +msgstr "Saring" + +#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538 +msgid "Members" +msgstr "Anggota" + +#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322 +msgid "Notes" +msgstr "Catatan" + +#: chat.php:1061 +msgid "Backup" +msgstr "Cadangkan" + +#: chat.php:1070 +msgid "Restore" +msgstr "Pulihkan" + +#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260 +msgid "Go to the Setup-Page" +msgstr "Ke halaman-pengaturan" + +#: chat.php:1082 chat.php:1091 chat.php:1949 +msgid "Are you sure?" +msgstr "Apakah Anda yakin?" + +#: chat.php:1083 chat.php:1092 chat.php:1956 +msgid "Yes" +msgstr "Ya" + +#: chat.php:1084 chat.php:1093 chat.php:1963 +msgid "No" +msgstr "Tidak" + +#: chat.php:1101 chat.php:4259 +msgid "Superadmin Login" +msgstr "Masuk Superadmin" + +#: chat.php:1102 +msgid "Superadmin Nickname:" +msgstr "Nama Superadmin:" + +#: chat.php:1103 +msgid "Superadmin Password:" +msgstr "Kata sandi Superadmin:" + +#: chat.php:1104 +msgid "Confirm Password:" +msgstr "Konfirmasi kata sandi:" + +#: chat.php:1105 +msgid "Initialise Chat" +msgstr "Memulai obrolan" + +#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439 +msgid "Change language:" +msgstr "Ubah bahasa:" + +#: chat.php:1117 +msgid "Database successfully updated!" +msgstr "Basisdata berhasil diperbarui!" + +#: chat.php:1125 chat.php:1326 chat.php:2407 +msgid "Nickname:" +msgstr "Nama:" + +#: chat.php:1126 chat.php:1327 chat.php:2408 +msgid "Password:" +msgstr "Kata sandi:" + +#: chat.php:1128 +msgid "Login" +msgstr "Masuk" + +#: chat.php:1129 +msgid "Forgot login?" +msgstr "" + +#: chat.php:1142 chat.php:1306 +msgid "Reset password" +msgstr "Atur-ulang kata sandi" + +#: chat.php:1150 +#, php-format +msgid "" +"Successfully reset password for username %s. Please remove the password " +"reset define from the script again." +msgstr "" + +#: 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 "" + +#: 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 +msgid "(choose)" +msgstr "(pilih)" + +#: chat.php:1170 +msgid "All guests" +msgstr "Semua tamu" + +#: chat.php:1182 +msgid "Administrative functions" +msgstr "Fungsi administrasi" + +#: chat.php:1188 +msgid "Clean messages" +msgstr "Bersihkan pesan" + +#: chat.php:1191 +msgid "Whole room" +msgstr "Seluruh ruangan" + +#: chat.php:1192 +msgid "Selection" +msgstr "Pilihan" + +#: chat.php:1193 +msgid "Following nickname:" +msgstr "Nama berikut:" + +#: chat.php:1200 +msgid "Clean" +msgstr "Bersih" + +#: chat.php:1202 +#, php-format +msgid "Kick Chatter (%d minutes)" +msgstr "Usir pengobrol (%d menit)" + +#: chat.php:1204 +msgid "Kickmessage:" +msgstr "Pesan pengusiran:" + +#: chat.php:1205 +msgid "Purge messages" +msgstr "Bersihkan pesan" + +#: chat.php:1206 chat.php:1388 chat.php:1546 chat.php:1580 chat.php:1591 +#: chat.php:2042 +msgid "Kick" +msgstr "Usir" + +#: chat.php:1208 +msgid "Logout inactive Chatter" +msgstr "Keluar pengobrol aktif" + +#: chat.php:1212 +msgid "View active sessions" +msgstr "Lihat sesi yang aktif" + +#: chat.php:1212 chat.php:1603 +msgid "Linkfilter" +msgstr "Penyaring-tautan" + +#: chat.php:1217 +msgid "View" +msgstr "Lihat" + +#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582 +#: chat.php:1626 +msgid "Change" +msgstr "Ubah" + +#: chat.php:1256 +msgid "Register applicant" +msgstr "Tambah pemohon" + +#: chat.php:1264 chat.php:1322 chat.php:1328 +msgid "Register" +msgstr "Daftar" + +#: chat.php:1294 +msgid "Delete from database" +msgstr "Hapus dari basisdata" + +#: chat.php:1294 +msgid "Deny access (!)" +msgstr "Akses ditolak (!)" + +#: chat.php:1296 +msgid "Set to applicant (SG)" +msgstr "Tetapkan menjadi pemohon (SG)" + +#: chat.php:1298 +msgid "Set to regular member" +msgstr "Tetapkan menjadi anggota biasa" + +#: chat.php:1299 +msgid "Set to moderator (M)" +msgstr "Tetapkan menjadi moderator (M)" + +#: chat.php:1300 +msgid "Set to supermod (SM)" +msgstr "Tetapkan menjadi supermod (SM)" + +#: chat.php:1302 +msgid "Set to admin (A)" +msgstr "Tetapkan menjadi admin (A)" + +#: chat.php:1314 +msgid "Register Guest" +msgstr "Mendaftar tamu" + +#: chat.php:1324 +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 +msgid "Reload" +msgstr "Muat-ulang" + +#: chat.php:1345 +msgid "Active Sessions" +msgstr "Sesi aktif" + +#: chat.php:1346 chat.php:1873 +msgid "Nickname" +msgstr "Nama" + +#: chat.php:1346 +msgid "Timeout in" +msgstr "Waktu habis dalam" + +#: chat.php:1346 chat.php:1873 +msgid "User-Agent" +msgstr "User-Agent" + +#: chat.php:1350 +msgid "IP-Address" +msgstr "Alamat-IP" + +#: chat.php:1351 +msgid "Actions" +msgstr "Tindakan" + +#: chat.php:1393 +msgid "Unban" +msgstr "" + +#: chat.php:1416 +msgid "Incorrect regular expression!" +msgstr "Regular expression salah!" + +#: chat.php:1416 chat.php:1424 +#, php-format +msgid "Your match was as follows: %s" +msgstr "" + +#: chat.php:1424 +msgid "" +"Your match was too long. You can use max. 255 characters. Try splitting it " +"up." +msgstr "" + +#: chat.php:1541 chat.php:1606 +msgid "Filter ID:" +msgstr "ID penyaring:" + +#: chat.php:1542 chat.php:1607 +msgid "Match" +msgstr "Cocok" + +#: chat.php:1543 chat.php:1608 +msgid "Replace" +msgstr "Ganti" + +#: chat.php:1544 chat.php:1578 chat.php:1589 +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 +msgid "Regex" +msgstr "Regex" + +#: chat.php:1547 chat.php:1581 chat.php:1592 +msgid "Case sensitive" +msgstr "" + +#: chat.php:1586 chat.php:1630 +msgid "New filter:" +msgstr "Penyaring baru:" + +#: chat.php:1593 chat.php:1634 +msgid "Add" +msgstr "Tambah" + +#: chat.php:1691 +msgid "" +"This chat uses frames. Please enable frames in your browser or use a " +"suitable one!" +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 +msgid "Back to the login page." +msgstr "Kembali ke halaman masuk." + +#: chat.php:1709 +msgid "Bottom" +msgstr "Bawah" + +#: chat.php:1710 +msgid "Manual refresh required" +msgstr "" + +#: chat.php:1726 +msgid "Top" +msgstr "Atas" + +#: chat.php:1734 chat.php:1940 chat.php:1942 +msgid "Delete selected messages" +msgstr "Hapus pesan terpilih" + +#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281 +msgid "Back to the chat." +msgstr "Kembali ke obrolan." + +#: chat.php:1774 chat.php:1791 +msgid "Admin notes" +msgstr "Catatan admin" + +#: chat.php:1777 chat.php:1788 +msgid "Staff notes" +msgstr "Catatan Staf" + +#: chat.php:1811 +msgid "Notes saved!" +msgstr "Catatan tersimpan!" + +#: chat.php:1835 chat.php:2122 +#, php-format +msgid "Last edited by %1$s at %2$s" +msgstr "Terakhir disunting oleh %1$s pada %2$s" + +#: chat.php:1848 +msgid "Save notes" +msgstr "Simpan catatan" + +#: chat.php:1850 +msgid "Revisions:" +msgstr "Revisi:" + +#: chat.php:1853 +msgid "Older" +msgstr "Lama" + +#: chat.php:1857 +msgid "Newer" +msgstr "Baru" + +#: chat.php:1868 chat.php:1914 +msgid "Waiting room" +msgstr "Ruang tunggu" + +#: chat.php:1880 +msgid "Allow checked" +msgstr "Izinkan terpilih" + +#: chat.php:1881 +msgid "Allow all" +msgstr "Izinkan semuanya" + +#: chat.php:1882 +msgid "Deny checked" +msgstr "Tolak terpilih" + +#: chat.php:1883 +msgid "Deny all" +msgstr "Tolak semuanya" + +#: chat.php:1883 +msgid "Send message to denied:" +msgstr "Kirim pesan untuk menolak:" + +#: chat.php:1884 +msgid "Submit" +msgstr "Kirim" + +#: chat.php:1886 +msgid "No more entry requests to approve." +msgstr "Tak ada lagi permintaan masuk untuk disetujui." + +#: chat.php:1916 +#, php-format +msgid "" +"Welcome %1$s, your login has been delayed, you can access the chat in %2$d " +"seconds." +msgstr "" +"Selamat datang %1$s, info masuk anda telah tertunda, Anda dapat mengakses " +"obrolan dalam %2$d detik." + +#: chat.php:1918 +#, 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 "" +"Selamat datang %1$s, info masuk anda telah tertunda, Anda dapat mengakses " +"obrolan segera, Sebagai moderator memungkinkan anda untuk masuk." + +#: chat.php:1921 +#, php-format +msgid "" +"If this page doesn't refresh every %d seconds, use the button below to " +"reload it manually!" +msgstr "" +"Jika halaman tidak memuat-ulang dalam %d detik, Gunakan tombol dibawah ini " +"untuk memuat-ulang secara manual!" + +#: chat.php:1926 chat.php:2339 +msgid "Exit Chat" +msgstr "Keluar dari obrolan" + +#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430 +msgid "Rules" +msgstr "Peraturan" + +#: chat.php:1985 +msgid "Send to" +msgstr "Kirim ke" + +#: chat.php:1990 +msgid "All chatters" +msgstr "Semua pengobrol" + +#: chat.php:1996 +msgid "Members only" +msgstr "Hanya member" + +#: chat.php:2003 +msgid "Staff only" +msgstr "Hanya staf" + +#: chat.php:2010 +msgid "Admin only" +msgstr "Hanya Admin" + +#: chat.php:2019 +msgid "(offline)" +msgstr "" + +#: chat.php:2043 +msgid "Also purge messages" +msgstr "Juga hapus bersih pesan" + +#: chat.php:2050 +msgid "Delete last message" +msgstr "Hapus pesan terakhir" + +#: chat.php:2055 +msgid "Delete all messages" +msgstr "Hapus semua pesan" + +#: chat.php:2057 +msgid "Switch to single-line" +msgstr "Beralih ke baris-tunggal" + +#: chat.php:2059 +msgid "Switch to multi-line" +msgstr "Beralih ke multi-baris" + +#: chat.php:2070 +#, php-format +msgid "Welcome %s!" +msgstr "" + +#: chat.php:2071 +#, 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 "" + +#: chat.php:2087 +msgid "Help" +msgstr "Bantuan" + +#: 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." +msgstr "" +"Semua fungsi seharusnya cukup banyak memberikan penjelasan, tinggal gunakan " +"tombol. Dalam profil Anda dapat menentukan jangka waktu muat-ulang halaman, " +"warna font dan ukuran kotak masukan.
Note: Ini adalah obrolan, " +"jadi jika Anda tidak ikut dalam obrolan, Anda akan otomatis dikeluarkan dari " +"obrolan dalam jangka waktu yang sudah ditentukan." + +#: 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 "" +"Jika anda ingin menyisipkan gambar pada pos anda, taruh saja [img] didepan " +"url gambar. Contoh: [img]http://example.com/images/file.jpg akan menyisipkan " +"gambar pada pos anda." + +#: 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 "" +"Anggota: Anda akan memiliki beberapa pilihan di profil Anda. Anda dapat " +"menyesuaikan font dan dapat mengubah kata sandi kapan saja." + +#: 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 "" +"Moderator: Perhatikan tombol admin di bagian bawah. Ini akan memunculkan " +"halaman dimana Anda dapat membersihkan ruangan, mengusir pengobrol, melihat " +"semua sesi aktif dan mematikan semua hak akses tamu jika diperlukan." + +#: chat.php:2097 +msgid "" +"Admins: You'll be furthermore able to register guests, edit members and " +"register new nicknames." +msgstr "" +"Admin: Anda dapat lebih jauh lagi bisa mendaftarkan tamu, menyunting anggota " +"dan mendaftarkan nama baru tanpa mereka berada di ruangan." + +#: chat.php:2135 +msgid "Your Profile" +msgstr "Profil Anda" + +#: chat.php:2144 +msgid "Don't ignore anymore" +msgstr "Tak setuju apapun" + +#: chat.php:2152 +msgid "Ignore" +msgstr "Setuju" + +#: chat.php:2163 +#, php-format +msgid "Refresh rate (%1$d-%2$d seconds)" +msgstr "Kecepatan penyegaran (%1$d-%2$d detik)" + +#: chat.php:2167 chat.php:2170 +msgid "View examples" +msgstr "Lihat contoh" + +#: chat.php:2174 +msgid "Fontface" +msgstr "Jenis font" + +#: chat.php:2175 +msgid "Room Default" +msgstr "Ruang bawaan" + +#: chat.php:2188 +msgid "Bold" +msgstr "Tebal" + +#: chat.php:2192 +msgid "Italic" +msgstr "Miring" + +#: chat.php:2196 +msgid "Small" +msgstr "" + +#: chat.php:2199 +msgid "Example for your chosen font" +msgstr "Contoh untuk font yang anda pilih" + +#: chat.php:2203 +msgid "Autoscroll (for old browsers or top-to-bottom sort)." +msgstr "" + +#: chat.php:2234 +msgid "For everyone" +msgstr "" + +#: chat.php:2239 +msgid "For members only" +msgstr "" + +#: chat.php:2244 +msgid "For staff only" +msgstr "" + +#: chat.php:2248 +msgid "Time zone" +msgstr "" + +#: chat.php:2261 +msgid "Change Password" +msgstr "Ubah kata sandi" + +#: chat.php:2263 +msgid "Old password:" +msgstr "Kata sandi lama:" + +#: chat.php:2264 +msgid "New password:" +msgstr "Kata sandi baru:" + +#: chat.php:2265 +msgid "Confirm new password:" +msgstr "Konfirmasi kata sandi baru:" + +#: chat.php:2268 +msgid "Change Nickname" +msgstr "" + +#: chat.php:2269 +msgid "New nickname:" +msgstr "Nama baru:" + +#: chat.php:2273 +msgid "Save changes" +msgstr "Simpan perubahan" + +#: chat.php:2275 +msgid "Delete account" +msgstr "" + +#: chat.php:2301 +msgid "Reload Post Box" +msgstr "Muat-ulang kotak pos" + +#: chat.php:2304 +msgid "Reload Messages" +msgstr "Muat-ulang pesan" + +#: chat.php:2307 +msgid "Profile" +msgstr "Profil" + +#: chat.php:2311 chat.php:2528 +msgid "Admin" +msgstr "Admin" + +#: chat.php:2318 +msgid "View public notes" +msgstr "Baca catatan terbuka" + +#: chat.php:2325 +msgid "Clone" +msgstr "Klon" + +#: chat.php:2334 +msgid "Rearrange" +msgstr "" + +#: chat.php:2337 +msgid "Rules & Help" +msgstr "Peraturan & Bantuan" + +#: chat.php:2358 chat.php:2362 +msgid "File not found!" +msgstr "" + +#: chat.php:2370 +#, php-format +msgid "Bye %s, visit again soon!" +msgstr "Dah %s, Kunjungi lagi nanti!" + +#: chat.php:2377 +msgid "Colourtable" +msgstr "Tabel warna" + +#: chat.php:2388 +msgid "Back to your Profile" +msgstr "Kembali ke profil anda" + +#: chat.php:2412 +msgid "Repeat password
to register" +msgstr "" + +#: chat.php:2412 +msgid "(optional)" +msgstr "" + +#: chat.php:2417 +msgid "Guests, choose a colour:" +msgstr "Silahkan pilih warna:" + +#: chat.php:2417 +msgid "Random Colour" +msgstr "Warna acak" + +#: chat.php:2421 chat.php:2435 chat.php:2569 +msgid "Sorry, currently members only!" +msgstr "Maaf, saat ini hanya anggota!" + +#: chat.php:2423 chat.php:2437 +msgid "Enter Chat" +msgstr "Masuk obrolan" + +#: chat.php:2457 +#, php-format +msgid "Error: %s" +msgstr "Kesalahan: %s" + +#: chat.php:2467 +msgid "Fatal error" +msgstr "" + +#: chat.php:2470 +#, php-format +msgid "Fatal error: %s" +msgstr "" + +#: chat.php:2482 chat.php:2693 +msgid "Failed login attempt(s)" +msgstr "Upaya log masuk gagal" + +#: chat.php:2489 +#, php-format +msgid "Read %d messages in your inbox" +msgstr "" + +#: chat.php:2498 +#, php-format +msgid "%d new guests to approve" +msgstr "%d tamu baru untuk disetujui" + +#: chat.php:2530 +msgid "Admin:" +msgstr "Admin:" + +#: chat.php:2533 +msgid "Staff" +msgstr "Staf" + +#: chat.php:2535 +msgid "Staff:" +msgstr "Staf:" + +#: chat.php:2540 +msgid "Members:" +msgstr "Anggota:" + +#: chat.php:2542 +msgid "Guests" +msgstr "Tamu" + +#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092 +#, 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 +#, 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 +msgid "Wrong global Password!" +msgstr "Kata sani global salah!" + +#: chat.php:2591 chat.php:2612 +msgid "Wrong Captcha" +msgstr "Captcha salah" + +#: chat.php:2596 chat.php:2604 +msgid "Captcha already used or timed out." +msgstr "Captcha sudah digunakan atau kadaluarsa." + +#: chat.php:2652 +msgid "A user with this nickname is already logged in." +msgstr "" + +#: chat.php:2652 chat.php:2933 chat.php:3176 +msgid "Wrong Password!" +msgstr "Kata sandi salah!" + +#: chat.php:2696 +msgid "Dismiss" +msgstr "Mengakui" + +#: chat.php:2747 chat.php:3171 chat.php:4096 +msgid "Password confirmation does not match!" +msgstr "Konfirmasi kata sandi tidak cocok!" + +#: chat.php:2859 +msgid "Invalid/expired session" +msgstr "Sesi salah/kadaluarsa" + +#: chat.php:2875 chat.php:3412 +msgid "You have been kicked!" +msgstr "Diusir!" + +#: chat.php:2885 +#, php-format +msgid "Currently %d chatter(s) in room:" +msgstr "Sekarang terdapat %d pengobrol di ruangan:" + +#: chat.php:2933 +msgid "This nickname is a registered member." +msgstr "" + +#: chat.php:2960 chat.php:3001 +#, php-format +msgid "%s is already registered." +msgstr "%s sudah terdaftar." + +#: chat.php:2969 chat.php:2990 +#, php-format +msgid "Can't register %s" +msgstr "Tak bisa mendaftarkan %s" + +#: chat.php:2978 chat.php:3023 +#, php-format +msgid "%s successfully registered." +msgstr "%s berhasil terdaftar." + +#: chat.php:3031 chat.php:3036 +#, php-format +msgid "Can't change status of %s" +msgstr "Tak dapat mengganti status dari %s" + +#: chat.php:3047 +#, php-format +msgid "%s successfully deleted from database." +msgstr "%s berhasil dihapus dari basisdata." + +#: chat.php:3056 +#, php-format +msgid "Status of %s successfully changed." +msgstr "Status dari %s berhasil dirubah." + +#: chat.php:3073 +#, php-format +msgid "Successfully reset password for %s" +msgstr "" + +#: chat.php:3075 +#, php-format +msgid "Can't reset password for %s" +msgstr "" + +#: chat.php:3190 +msgid "Your profile has successfully been saved." +msgstr "Profil anda sudah berhasil disimpan." + +#: chat.php:3202 +msgid "Nickname is already taken" +msgstr "Nama sudah ada" + +#: chat.php:3714 +msgid "system message" +msgstr "pesan dari sistem" + +#: chat.php:3921 +msgid "Beige" +msgstr "Krem" + +#: chat.php:3922 +msgid "Black" +msgstr "Hitam" + +#: chat.php:3923 +msgid "Blue" +msgstr "Biru" + +#: chat.php:3924 +msgid "Blue violet" +msgstr "Lembayung biru" + +#: chat.php:3925 +msgid "Brown" +msgstr "Coklat" + +#: chat.php:3926 +msgid "Cyan" +msgstr "Sian" + +#: chat.php:3927 +msgid "Dark blue" +msgstr "Biru tua" + +#: chat.php:3928 +msgid "Dark green" +msgstr "Hihau tua" + +#: chat.php:3929 +msgid "Dark red" +msgstr "Merah tua" + +#: chat.php:3930 +msgid "Dark violet" +msgstr "Lembayung tua" + +#: chat.php:3931 +msgid "Sky blue" +msgstr "Biru langit" + +#: chat.php:3932 +msgid "Gold" +msgstr "Emas" + +#: chat.php:3933 +msgid "Grey" +msgstr "Abu-abu" + +#: chat.php:3934 +msgid "Green" +msgstr "Hijau" + +#: chat.php:3935 +msgid "Hot pink" +msgstr "Merah jambu" + +#: chat.php:3936 +msgid "Indigo" +msgstr "Nila" + +#: chat.php:3937 +msgid "Light blue" +msgstr "Biru muda" + +#: chat.php:3938 +msgid "Light green" +msgstr "Hijau muda" + +#: chat.php:3939 +msgid "Lime green" +msgstr "Hijau limu" + +#: chat.php:3940 +msgid "Magenta" +msgstr "Magenta" + +#: chat.php:3941 +msgid "Olive" +msgstr "Zaitun" + +#: chat.php:3942 +msgid "Orange" +msgstr "Jingga" + +#: chat.php:3943 +msgid "Orange red" +msgstr "Merah jingga" + +#: chat.php:3944 +msgid "Purple" +msgstr "Ungu" + +#: chat.php:3945 +msgid "Red" +msgstr "Merah" + +#: chat.php:3946 +msgid "Royal blue" +msgstr "Biru royal" + +#: chat.php:3947 +msgid "Sea green" +msgstr "Hijau laut" + +#: chat.php:3948 +msgid "Sienna" +msgstr "Sienna" + +#: chat.php:3949 +msgid "Silver" +msgstr "Perak" + +#: chat.php:3950 +msgid "Tan" +msgstr "Kecoklatan" + +#: chat.php:3951 +msgid "Teal" +msgstr "Teal" + +#: chat.php:3952 +msgid "Violet" +msgstr "Lembayung" + +#: chat.php:3953 +msgid "White" +msgstr "Putih" + +#: chat.php:3954 +msgid "Yellow" +msgstr "Kuning" + +#: chat.php:3955 +msgid "Yellow green" +msgstr "Hjau kuning" + +#: chat.php:4077 +msgid "Successfully destroyed chat" +msgstr "Berhasil memusnahkan obrolan" + +#: chat.php:4086 +msgid "" +"Database tables already exist! To continue, you have to delete these tables " +"manually first." +msgstr "" +"Tabel basisdata sudah ada! Untuk melanjutkan, Anda harus menghapus tabel ini " +"secara manual terlebih dahulu." + +#: chat.php:4089 +msgid "A Superadmin already exists!" +msgstr "Superadmin sudah ada!" + +#: chat.php:4182 chat.php:4369 +#, php-format +msgid "%s - " +msgstr "%s - " + +#: chat.php:4183 chat.php:4369 +#, php-format +msgid "[M] %s - " +msgstr "[M] %s - " + +#: chat.php:4184 chat.php:4369 +#, php-format +msgid "[Staff] %s - " +msgstr "[Staf] %s - " + +#: chat.php:4185 chat.php:4369 +#, php-format +msgid "[Admin] %s - " +msgstr "[Admin] %s - " + +#: chat.php:4186 chat.php:4369 +#, php-format +msgid "[%1$s to %2$s] - " +msgstr "[%1$s ke %2$s] - " + +#: chat.php:4187 +#, php-format +msgid "%s entered the chat." +msgstr "%s memasuki obrolan." + +#: chat.php:4188 +#, php-format +msgid "%s left the chat." +msgstr "%s keluar dari obrolan." + +#: chat.php:4189 +#, php-format +msgid "%s is now a registered member." +msgstr "%s sekarang adalah anggota terdaftar." + +#: chat.php:4190 +#, 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." +msgstr "%s sudah diusir." + +#: chat.php:4192 +#, php-format +msgid "%s have been kicked." +msgstr "%s telah diusir." + +#: chat.php:4193 +msgid "All guests have been kicked." +msgstr "Semua pengobrol sudah diusir." + +#: chat.php:4194 +#, php-format +msgid "%s has been cleaned." +msgstr "%s sudah dibersihkan." + +#: chat.php:4202 chat.php:4396 +msgid "Temporarily disabled" +msgstr "" + +#: chat.php:4218 chat.php:4594 +msgid "A chat community" +msgstr "" + +#: chat.php:4256 +msgid "Successfully registered!" +msgstr "Berhasil terdaftar!" + +#: chat.php:4522 chat.php:4721 chat.php:4728 +msgid "No connection to database!" +msgstr "Tak ada sambungan ke basisdata!" + +#: chat.php:4531 +msgid "" +"Note: Default CSS is now hardcoded and can be removed from the CSS setting" +msgstr "" + +#: chat.php:4611 +#, 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 +#, 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 +msgid "" +"No connection to database, please create a database and edit the script to " +"use the correct database with given username and password!" +msgstr "" +"Tak ada sambungan ke basisdata, silahkan buat basisdata dan sunting skrip " +"ini agar menggunakan basisdata yang benar dengan nama pengguna dan kata " +"sandi yang telah diberikan!" + +#: 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 "" diff --git a/locale/it_IT/LC_MESSAGES/le-chat-php.mo b/locale/it_IT/LC_MESSAGES/le-chat-php.mo new file mode 100644 index 0000000..ed65601 Binary files /dev/null and b/locale/it_IT/LC_MESSAGES/le-chat-php.mo differ diff --git a/locale/it_IT/LC_MESSAGES/le-chat-php.po b/locale/it_IT/LC_MESSAGES/le-chat-php.po new file mode 100644 index 0000000..2e63d36 --- /dev/null +++ b/locale/it_IT/LC_MESSAGES/le-chat-php.po @@ -0,0 +1,1633 @@ +# 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: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-01-18 21:32+0100\n" +"PO-Revision-Date: 2023-01-18 21:38+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: it_IT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.1.1\n" + +#: chat.php:261 +msgid "Enable applicants" +msgstr "Accettare ospiti" + +#: chat.php:262 +msgid "Embed images" +msgstr "Incollare immagine" + +#: chat.php:263 chat.php:2202 +msgid "Show Timestamps" +msgstr "Visualizzare il tempo" + +#: chat.php:264 +msgid "Show session-IP" +msgstr "Visualizzare IP-sessione" + +#: chat.php:265 +msgid "Members can kick, if no moderator is present" +msgstr "Membri possono espellere, se non è presente moderatore" + +#: chat.php:266 +msgid "Members can always kick" +msgstr "Membri sempre possono espellere" + +#: chat.php:267 +msgid "Force redirection" +msgstr "Riendirizzamento forzato" + +#: chat.php:268 +msgid "Incognito mode" +msgstr "Modalità incognito" + +#: chat.php:269 +msgid "Send mail on new public message" +msgstr "Mandare messaggio come nuovo pubblico" + +#: chat.php:270 +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 +msgid "Disable private messages" +msgstr "Disabilitare mess. privati" + +#: chat.php:272 chat.php:2223 +msgid "Enable offline inbox" +msgstr "Abilitare offline-posta" + +#: chat.php:273 +msgid "Show a greeting message before showing the messages" +msgstr "Visualizzare benvenuto prima del ultimo messaggio" + +#: chat.php:274 chat.php:2204 +msgid "Sort messages from top to bottom" +msgstr "Riordinare messaggi dal alto in basso" + +#: chat.php:275 chat.php:2205 +msgid "Hide list of chatters" +msgstr "Nascondere lista dei partecipanti" + +#: chat.php:276 chat.php:1780 chat.php:1794 +msgid "Personal notes" +msgstr "Appunti personali" + +#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110 +msgid "Public notes" +msgstr "Appunti pubbliche" + +#: chat.php:278 +msgid "Apply kick filter on moderators" +msgstr "Utlizzare filtro di esclusione per moderatori" + +#: chat.php:279 +msgid "Show who kicks people or purges all messages." +msgstr "Mostra chi espelle le persone o elimina tutti i messaggi." + +#: chat.php:280 +msgid "Hide reload post box button" +msgstr "" + +#: chat.php:281 +msgid "Hide reload messages button" +msgstr "" + +#: chat.php:282 +msgid "Hide profile button" +msgstr "" + +#: chat.php:283 +msgid "Hide admin button" +msgstr "" + +#: chat.php:284 +msgid "Hide notes button" +msgstr "" + +#: chat.php:285 +msgid "Hide clone button" +msgstr "" + +#: chat.php:286 +msgid "Hide rearrange button" +msgstr "" + +#: chat.php:287 +msgid "Hide help button" +msgstr "" + +#: chat.php:288 +msgid "Apply postbox delete button globally" +msgstr "" + +#: chat.php:289 +msgid "Allow enhancing functionality with JavaScript" +msgstr "" + +#: chat.php:292 chat.php:2170 +msgid "Background colour" +msgstr "Colore sfondo" + +#: chat.php:293 chat.php:2167 +msgid "Font colour" +msgstr "Colore carattere" + +#: chat.php:296 +msgid "Entrance" +msgstr "Entrata" + +#: chat.php:297 +msgid "Leaving" +msgstr "Uscita" + +#: chat.php:298 +msgid "Member registered" +msgstr "Registarto" + +#: chat.php:299 +msgid "Applicant registered" +msgstr "Richiedente registrato" + +#: chat.php:300 +msgid "Kicked" +msgstr "Bannato" + +#: chat.php:301 +msgid "Multiple kicked" +msgstr "Bannati più volte" + +#: chat.php:302 +msgid "All kicked" +msgstr "Tutti bannati" + +#: chat.php:303 +msgid "Room cleaned" +msgstr "Pulizia chat" + +#: chat.php:304 +msgid "Message to all" +msgstr "Messaggio a tutti" + +#: chat.php:305 +msgid "Message to members only" +msgstr "Messaggio ai membri" + +#: chat.php:306 +msgid "Message to staff only" +msgstr "Messaggio solo ai moderatori" + +#: chat.php:307 +msgid "Message to admins only" +msgstr "Messaggio solo al amministratore" + +#: chat.php:308 +msgid "Private message" +msgstr "Messaggio privato" + +#: chat.php:309 +msgid "Attachement" +msgstr "Annotazione" + +#: chat.php:312 +msgid "Member timeout (minutes)" +msgstr "Time-Out membri (minuti)" + +#: chat.php:313 +msgid "Guest timeout (minutes)" +msgstr "Time-out ospiti (minuti)" + +#: chat.php:314 +msgid "Kick penalty (minutes)" +msgstr "Ban (minuti)" + +#: chat.php:315 +msgid "Waiting room time (seconds)" +msgstr "Tempo di attesa stanza ospiti (secondi)" + +#: chat.php:316 +msgid "Captcha timeout (seconds)" +msgstr "Time-Out Captcha (secondi)" + +#: chat.php:317 +msgid "Message timeout (minutes)" +msgstr "Time-Out messaggi (minuti)" + +#: chat.php:318 +msgid "Message limit (public)" +msgstr "Limite messaggi (pubblici)" + +#: chat.php:319 +msgid "Maximal message length" +msgstr "Lunghezza massimale dei messaggi" + +#: chat.php:320 +msgid "Maximal nickname length" +msgstr "Lunghezza nome massimale" + +#: chat.php:321 +msgid "Minimal password length" +msgstr "Lunghezza minima password" + +#: chat.php:322 +msgid "Default message reload time (seconds)" +msgstr "In predefinito tempo di ricarica (secondi)" + +#: chat.php:323 +msgid "Number of notes revisions to keep" +msgstr "Numero per salvare" + +#: chat.php:324 +msgid "Maximum upload size in KB" +msgstr "Dimensione massima del file KB" + +#: chat.php:325 +msgid "Enable file uploads" +msgstr "Abilitare upload dei file" + +#: chat.php:326 +msgid "Lowest refresh rate" +msgstr "" + +#: chat.php:327 +msgid "Highest refresh rate" +msgstr "" + +#: chat.php:330 +msgid "Rules (html)" +msgstr "Regole (html)" + +#: chat.php:331 +msgid "CSS Style" +msgstr "CSS stili" + +#: chat.php:332 +msgid "Chat disabled message (html)" +msgstr "Messaggio di chat disabilitata (html)" + +#: chat.php:335 +msgid "" +"Date " +"formating" +msgstr "" +"Fuso " +"Orario" + +#: chat.php:336 +msgid "Characters used in Captcha" +msgstr "Simboli, utilizzati in Captcha" + +#: chat.php:337 +msgid "Custom redirection script" +msgstr "Riendirizzamento forzato membri" + +#: chat.php:338 +msgid "Chat name" +msgstr "Nome Chat" + +#: chat.php:339 +msgid "Send mail using this address" +msgstr "Mandare messaggio utilizzando questo indirizzo" + +#: chat.php:340 +msgid "Send mail to this address" +msgstr "Mandare messaggio a questo indirizzo" + +#: chat.php:341 +msgid "Nickname regex" +msgstr "" + +#: chat.php:342 +msgid "Password regex" +msgstr "" + +#: chat.php:343 +msgid "Link to external CSS file (on your own server)" +msgstr "Link per CSS esterno" + +#: chat.php:344 +msgid "Meta description (best 50 - 160 characters for SEO)" +msgstr "" + +#: chat.php:345 +msgid "Prepend this text to system messages" +msgstr "Questo testo precede i messaggi del sistema" + +#: chat.php:348 chat.php:728 chat.php:1225 +msgid "Change Guestaccess" +msgstr "Cambia entrata nella chat" + +#: chat.php:349 +msgid "Enable global Password" +msgstr "" + +#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433 +msgid "Global Password:" +msgstr "Password globale:" + +#: chat.php:351 chat.php:819 +msgid "Captcha" +msgstr "Captcha" + +#: chat.php:352 chat.php:775 chat.php:835 +msgid "Only for guests" +msgstr "Solo per ospiti" + +#: chat.php:353 chat.php:1220 +msgid "Topic" +msgstr "Tema" + +#: chat.php:354 chat.php:781 +msgid "Let guests register themselves" +msgstr "Permettere di registrarsi agli ospiti" + +#: chat.php:355 chat.php:862 +msgid "Default time zone" +msgstr "Fus orario predefinito" + +#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259 +msgid "Initial Setup" +msgstr "Impostazioni iniziali" + +#: chat.php:588 +#, php-format +msgid "Redirecting to: %s" +msgstr "Riendirizzamento su: %s" + +#: chat.php:595 +#, php-format +msgid "" +"Dangerous non-http link requested, copy paste this link if you are really " +"sure: %s" +msgstr "" + +#: chat.php:597 +#, php-format +msgid "Non-http link requested: %s" +msgstr "Url richiesto non è http: %s" + +#: chat.php:599 +#, php-format +msgid "If it's not working, try this one: %s" +msgstr "Se non funziona prova questo: %s" + +#: chat.php:609 +msgid "Access denied" +msgstr "Rifiutato" + +#: chat.php:609 +#, 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 +msgid "Logout" +msgstr "Logout" + +#: chat.php:636 +msgid "Copy:" +msgstr "Copia:" + +#: chat.php:724 +msgid "Chat Setup" +msgstr "Impostare chat" + +#: chat.php:734 chat.php:1233 +msgid "Allow" +msgstr "Accettare" + +#: chat.php:739 chat.php:1238 +msgid "Allow with waitingroom" +msgstr "Accettare ospiti" + +#: chat.php:744 chat.php:1243 +msgid "Require moderator approval" +msgstr "Richiedere il permesso al moderatore" + +#: chat.php:749 chat.php:1248 +msgid "Only members" +msgstr "Solo membri" + +#: chat.php:754 chat.php:1251 +msgid "Disable chat" +msgstr "Disabilitare chat" + +#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229 +msgid "Disabled" +msgstr "Disabilitato" + +#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219 +msgid "Enabled" +msgstr "Abilitato" + +#: chat.php:792 +msgid "As applicant" +msgstr "Come candidato" + +#: chat.php:797 +msgid "As member" +msgstr "Come membro" + +#: chat.php:800 +msgid "System messages" +msgstr "Messaggi del sistema" + +#: chat.php:822 chat.php:1053 +#, php-format +msgid "" +"The %s extension of PHP is required for this feature. Please install it " +"first." +msgstr "" + +#: chat.php:847 +msgid "Simple" +msgstr "Facile" + +#: chat.php:852 +msgid "Moderate" +msgstr "Medio" + +#: chat.php:857 +msgid "Extreme" +msgstr "Difficile" + +#: chat.php:906 chat.php:1548 chat.php:1610 +msgid "Apply" +msgstr "Salvare" + +#: chat.php:910 chat.php:1050 +msgid "Backup and restore" +msgstr "Backup e ripristino" + +#: chat.php:912 +msgid "Destroy chat" +msgstr "Distruggere chat" + +#: chat.php:1057 chat.php:1066 +msgid "Settings" +msgstr "Impostazioni" + +#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575 +#: chat.php:1622 +msgid "Filter" +msgstr "Filtro" + +#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538 +msgid "Members" +msgstr "Membri" + +#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322 +msgid "Notes" +msgstr "Appunti" + +#: chat.php:1061 +msgid "Backup" +msgstr "Backup" + +#: chat.php:1070 +msgid "Restore" +msgstr "Ripristino" + +#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260 +msgid "Go to the Setup-Page" +msgstr "Impostazioni Chat" + +#: chat.php:1082 chat.php:1091 chat.php:1949 +msgid "Are you sure?" +msgstr "Sei sicuro?" + +#: chat.php:1083 chat.php:1092 chat.php:1956 +msgid "Yes" +msgstr "Si" + +#: chat.php:1084 chat.php:1093 chat.php:1963 +msgid "No" +msgstr "No" + +#: chat.php:1101 chat.php:4259 +msgid "Superadmin Login" +msgstr "Entrata per super-amministratore" + +#: chat.php:1102 +msgid "Superadmin Nickname:" +msgstr "Nome super-amministratore:" + +#: chat.php:1103 +msgid "Superadmin Password:" +msgstr "Password super-amministratore:" + +#: chat.php:1104 +msgid "Confirm Password:" +msgstr "Conferma password:" + +#: chat.php:1105 +msgid "Initialise Chat" +msgstr "Inizio della chat" + +#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439 +msgid "Change language:" +msgstr "Cambia lingua:" + +#: chat.php:1117 +msgid "Database successfully updated!" +msgstr "Database aggiornato!" + +#: chat.php:1125 chat.php:1326 chat.php:2407 +msgid "Nickname:" +msgstr "Nome:" + +#: chat.php:1126 chat.php:1327 chat.php:2408 +msgid "Password:" +msgstr "Password:" + +#: chat.php:1128 +msgid "Login" +msgstr "Entrare" + +#: chat.php:1129 +msgid "Forgot login?" +msgstr "" + +#: chat.php:1142 chat.php:1306 +msgid "Reset password" +msgstr "Cambia password" + +#: chat.php:1150 +#, php-format +msgid "" +"Successfully reset password for username %s. Please remove the password " +"reset define from the script again." +msgstr "" + +#: 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 "" + +#: 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 +msgid "(choose)" +msgstr "(sclegli)" + +#: chat.php:1170 +msgid "All guests" +msgstr "Tutti ospiti" + +#: chat.php:1182 +msgid "Administrative functions" +msgstr "Funzioni del amministratore" + +#: chat.php:1188 +msgid "Clean messages" +msgstr "Cancella messaggi" + +#: chat.php:1191 +msgid "Whole room" +msgstr "Stanza pubblica" + +#: chat.php:1192 +msgid "Selection" +msgstr "Scelta" + +#: chat.php:1193 +msgid "Following nickname:" +msgstr "Al Nome:" + +#: chat.php:1200 +msgid "Clean" +msgstr "Cancella" + +#: chat.php:1202 +#, php-format +msgid "Kick Chatter (%d minutes)" +msgstr "Ban (%d minuti)" + +#: chat.php:1204 +msgid "Kickmessage:" +msgstr "Messaggio al bannato:" + +#: chat.php:1205 +msgid "Purge messages" +msgstr "Pulizia messaggi" + +#: chat.php:1206 chat.php:1388 chat.php:1546 chat.php:1580 chat.php:1591 +#: chat.php:2042 +msgid "Kick" +msgstr "Kick" + +#: chat.php:1208 +msgid "Logout inactive Chatter" +msgstr "Espelli partecipante" + +#: chat.php:1212 +msgid "View active sessions" +msgstr "Sessioni attive" + +#: chat.php:1212 chat.php:1603 +msgid "Linkfilter" +msgstr "Filtaggio link" + +#: chat.php:1217 +msgid "View" +msgstr "Visualizza" + +#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582 +#: chat.php:1626 +msgid "Change" +msgstr "Cambia" + +#: chat.php:1256 +msgid "Register applicant" +msgstr "Aggiungere candidato" + +#: chat.php:1264 chat.php:1322 chat.php:1328 +msgid "Register" +msgstr "Registrare" + +#: chat.php:1294 +msgid "Delete from database" +msgstr "Eliminare dal database" + +#: chat.php:1294 +msgid "Deny access (!)" +msgstr "Aggiungere membro (!)" + +#: chat.php:1296 +msgid "Set to applicant (SG)" +msgstr "Aggiunzione al candidato (SG)" + +#: chat.php:1298 +msgid "Set to regular member" +msgstr "Aggiornare stato" + +#: chat.php:1299 +msgid "Set to moderator (M)" +msgstr "Aggiunzione moderatore (M)" + +#: chat.php:1300 +msgid "Set to supermod (SM)" +msgstr "Aggiunzione super-moderatore (SM)" + +#: chat.php:1302 +msgid "Set to admin (A)" +msgstr "Aggiunzione amministratore (A)" + +#: chat.php:1314 +msgid "Register Guest" +msgstr "Registra opspiti" + +#: chat.php:1324 +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 +msgid "Reload" +msgstr "Ricaricare" + +#: chat.php:1345 +msgid "Active Sessions" +msgstr "Sessioni attive" + +#: chat.php:1346 chat.php:1873 +msgid "Nickname" +msgstr "Nome" + +#: chat.php:1346 +msgid "Timeout in" +msgstr "Tempo di attesa in" + +#: chat.php:1346 chat.php:1873 +msgid "User-Agent" +msgstr "User-Agent" + +#: chat.php:1350 +msgid "IP-Address" +msgstr "IP-indirizzo" + +#: chat.php:1351 +msgid "Actions" +msgstr "Azioni" + +#: chat.php:1393 +msgid "Unban" +msgstr "Sbloccare" + +#: chat.php:1416 +msgid "Incorrect regular expression!" +msgstr "Testo non corretto!" + +#: chat.php:1416 chat.php:1424 +#, php-format +msgid "Your match was as follows: %s" +msgstr "Testi nei campi coincidono: %s" + +#: chat.php:1424 +msgid "" +"Your match was too long. You can use max. 255 characters. Try splitting it " +"up." +msgstr "" +"Testo troppo lungo. Si puà utilizzare solo 255 simboli, provare suddividere " +"campo in parti." + +#: chat.php:1541 chat.php:1606 +msgid "Filter ID:" +msgstr "Filtro ID:" + +#: chat.php:1542 chat.php:1607 +msgid "Match" +msgstr "Coincidenza" + +#: chat.php:1543 chat.php:1608 +msgid "Replace" +msgstr "Sostituire" + +#: chat.php:1544 chat.php:1578 chat.php:1589 +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 +msgid "Regex" +msgstr "Testo regolare" + +#: chat.php:1547 chat.php:1581 chat.php:1592 +msgid "Case sensitive" +msgstr "Registrazione-sensibile" + +#: chat.php:1586 chat.php:1630 +msgid "New filter:" +msgstr "Nuovo filtro:" + +#: chat.php:1593 chat.php:1634 +msgid "Add" +msgstr "Aggiungere" + +#: chat.php:1691 +msgid "" +"This chat uses frames. Please enable frames in your browser or use a " +"suitable one!" +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 +msgid "Back to the login page." +msgstr "Tornare nella pag. pincipale." + +#: chat.php:1709 +msgid "Bottom" +msgstr "Giù" + +#: chat.php:1710 +msgid "Manual refresh required" +msgstr "Bisogna aggiornare pagina manualmente" + +#: chat.php:1726 +msgid "Top" +msgstr "Su" + +#: chat.php:1734 chat.php:1940 chat.php:1942 +msgid "Delete selected messages" +msgstr "Eliminare messaggi selezionati" + +#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281 +msgid "Back to the chat." +msgstr "Tornare nella chat." + +#: chat.php:1774 chat.php:1791 +msgid "Admin notes" +msgstr "Note del amministratore" + +#: chat.php:1777 chat.php:1788 +msgid "Staff notes" +msgstr "Note del supporto" + +#: chat.php:1811 +msgid "Notes saved!" +msgstr "Note salvate!" + +#: chat.php:1835 chat.php:2122 +#, php-format +msgid "Last edited by %1$s at %2$s" +msgstr "Ultima redazione %1$s %2$s" + +#: chat.php:1848 +msgid "Save notes" +msgstr "Salvare note" + +#: chat.php:1850 +msgid "Revisions:" +msgstr "Ripristino:" + +#: chat.php:1853 +msgid "Older" +msgstr "Vecchi" + +#: chat.php:1857 +msgid "Newer" +msgstr "Nuovi" + +#: chat.php:1868 chat.php:1914 +msgid "Waiting room" +msgstr "Degli ospiti" + +#: chat.php:1880 +msgid "Allow checked" +msgstr "Permettere verifica" + +#: chat.php:1881 +msgid "Allow all" +msgstr "Permettere a tutti" + +#: chat.php:1882 +msgid "Deny checked" +msgstr "Non permettere verifica" + +#: chat.php:1883 +msgid "Deny all" +msgstr "Non permettere a nessuno" + +#: chat.php:1883 +msgid "Send message to denied:" +msgstr "Mandare messaggio con rifiuto:" + +#: chat.php:1884 +msgid "Submit" +msgstr "Inviare" + +#: chat.php:1886 +msgid "No more entry requests to approve." +msgstr "Non ci sono più richieste disponibili." + +#: chat.php:1916 +#, php-format +msgid "" +"Welcome %1$s, your login has been delayed, you can access the chat in %2$d " +"seconds." +msgstr "" +"Benvenuto %1$s, rimani in attesa, chat sarà disponibile tra %2$d secondi." + +#: chat.php:1918 +#, 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 "" +"Benvenuto %1$s, rimani in attesa, chat sarà disponibile dopo che moderazione " +"accetta entrata." + +#: chat.php:1921 +#, php-format +msgid "" +"If this page doesn't refresh every %d seconds, use the button below to " +"reload it manually!" +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 +msgid "Exit Chat" +msgstr "Abbandona" + +#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430 +msgid "Rules" +msgstr "Regole" + +#: chat.php:1985 +msgid "Send to" +msgstr "Invia" + +#: chat.php:1990 +msgid "All chatters" +msgstr "Tutti nella chat" + +#: chat.php:1996 +msgid "Members only" +msgstr "Membri" + +#: chat.php:2003 +msgid "Staff only" +msgstr "Staff" + +#: chat.php:2010 +msgid "Admin only" +msgstr "Amministratore" + +#: chat.php:2019 +msgid "(offline)" +msgstr "(offline)" + +#: chat.php:2043 +msgid "Also purge messages" +msgstr "Eliminare messaggi" + +#: chat.php:2050 +msgid "Delete last message" +msgstr "Eliminare utlimo messaggio" + +#: chat.php:2055 +msgid "Delete all messages" +msgstr "Eliminare tutti messaggi" + +#: chat.php:2057 +msgid "Switch to single-line" +msgstr "Abilitare modalità riga(e)" + +#: chat.php:2059 +msgid "Switch to multi-line" +msgstr "Abilitare multiriga" + +#: chat.php:2070 +#, php-format +msgid "Welcome %s!" +msgstr "Benvenuto %s!" + +#: chat.php:2071 +#, 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 "" +"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." + +#: chat.php:2087 +msgid "Help" +msgstr "Aiuto" + +#: 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." +msgstr "" +"Tutte le funzioni sono chiare, solo utilizzate i tasti. Nelle impostazioni " +"del vostro profilo potete impostare tempo di aggiornamento, colore del " +"carattere e dimensione della finestra.
Nota: é una chat, per " +"questo anche se non scrivete niente, sarà in automatico salvato dopo un tot " +"di tempo." + +#: 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 "" +"Se volete impostare immagine nel vostro post, attaccate [img] davanti al " +"vostro URL-immagine. Esempio: [img]http://example.com/images/file.jpg sarà " +"agganciato al vostro messaggio.
Anche disponibile carica file cliccando " +"pulsante in alro \"Browse...\"." + +#: 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 "" +"Membri: Avete alcune scelte nelle impostazioni del profilo. Si può impostare " +"carattere e cambiare la password in qualsiasi momento." + +#: 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 "" +"Staff: Visualizzate il tasto dell amministratore giù. Questo vi riendizzerà, " +"dove potete ripulire la stanza, bannare, visualizzare sessioni attive e " +"disabilitare accesso agli ospiti, se necessario." + +#: chat.php:2097 +msgid "" +"Admins: You'll be furthermore able to register guests, edit members and " +"register new nicknames." +msgstr "" +"Amministratori: Vi è disponibile registrare utenti, modificare e rigistrare " +"nuovi nomi senza che ci siano nella stanza." + +#: chat.php:2135 +msgid "Your Profile" +msgstr "Mio profilo" + +#: chat.php:2144 +msgid "Don't ignore anymore" +msgstr "Non ignorare più" + +#: chat.php:2152 +msgid "Ignore" +msgstr "Ignorare" + +#: chat.php:2163 +#, php-format +msgid "Refresh rate (%1$d-%2$d seconds)" +msgstr "Ricarica Chat (%1$d-%2$d secondi)" + +#: chat.php:2167 chat.php:2170 +msgid "View examples" +msgstr "Visualizza esempi" + +#: chat.php:2174 +msgid "Fontface" +msgstr "Carattere" + +#: chat.php:2175 +msgid "Room Default" +msgstr "Predefinito" + +#: chat.php:2188 +msgid "Bold" +msgstr "Grassetto" + +#: chat.php:2192 +msgid "Italic" +msgstr "Corsivo" + +#: chat.php:2196 +msgid "Small" +msgstr "Diminuito" + +#: chat.php:2199 +msgid "Example for your chosen font" +msgstr "Esempio del carattere selezionato" + +#: chat.php:2203 +msgid "Autoscroll (for old browsers or top-to-bottom sort)." +msgstr "" +"Avtoricarica (per i Browser precedenti, per suddividere dal alto-basso)" + +#: chat.php:2234 +msgid "For everyone" +msgstr "Per tutti" + +#: chat.php:2239 +msgid "For members only" +msgstr "Solo per membri" + +#: chat.php:2244 +msgid "For staff only" +msgstr "Solo per moderatori" + +#: chat.php:2248 +msgid "Time zone" +msgstr "Fuso Orario" + +#: chat.php:2261 +msgid "Change Password" +msgstr "Cambia password" + +#: chat.php:2263 +msgid "Old password:" +msgstr "Vecchio profilo:" + +#: chat.php:2264 +msgid "New password:" +msgstr "Nuovo profilo:" + +#: chat.php:2265 +msgid "Confirm new password:" +msgstr "Conferma:" + +#: chat.php:2268 +msgid "Change Nickname" +msgstr "Cambia nome" + +#: chat.php:2269 +msgid "New nickname:" +msgstr "Nuovo nome:" + +#: chat.php:2273 +msgid "Save changes" +msgstr "Salavre cambiamenti" + +#: chat.php:2275 +msgid "Delete account" +msgstr "Eliminare account" + +#: chat.php:2301 +msgid "Reload Post Box" +msgstr "Ricarica Chat" + +#: chat.php:2304 +msgid "Reload Messages" +msgstr "Aggiorna/Indietro" + +#: chat.php:2307 +msgid "Profile" +msgstr "Profilo" + +#: chat.php:2311 chat.php:2528 +msgid "Admin" +msgstr "Amministratore" + +#: chat.php:2318 +msgid "View public notes" +msgstr "Leggere appunti pubbliche" + +#: chat.php:2325 +msgid "Clone" +msgstr "Clona" + +#: chat.php:2334 +msgid "Rearrange" +msgstr "Ribaltare chat" + +#: chat.php:2337 +msgid "Rules & Help" +msgstr "Regole/Aiuto" + +#: chat.php:2358 chat.php:2362 +msgid "File not found!" +msgstr "File non trovato!" + +#: chat.php:2370 +#, php-format +msgid "Bye %s, visit again soon!" +msgstr "Ti salutiamo %s, entra ancora!" + +#: chat.php:2377 +msgid "Colourtable" +msgstr "Esempio colori" + +#: chat.php:2388 +msgid "Back to your Profile" +msgstr "Tornare nel mio profilo" + +#: chat.php:2412 +msgid "Repeat password
to register" +msgstr "Ripetere password
Registrarsi" + +#: chat.php:2412 +msgid "(optional)" +msgstr "(optional)" + +#: chat.php:2417 +msgid "Guests, choose a colour:" +msgstr "Selezionate colore:" + +#: chat.php:2417 +msgid "Random Colour" +msgstr "Colore a caso" + +#: chat.php:2421 chat.php:2435 chat.php:2569 +msgid "Sorry, currently members only!" +msgstr "Scusate, entrano solo registrati!" + +#: chat.php:2423 chat.php:2437 +msgid "Enter Chat" +msgstr "Entrare" + +#: chat.php:2457 +#, php-format +msgid "Error: %s" +msgstr "Errore: %s" + +#: chat.php:2467 +msgid "Fatal error" +msgstr "Errore fatale" + +#: chat.php:2470 +#, php-format +msgid "Fatal error: %s" +msgstr "Errore fatale: %s" + +#: chat.php:2482 chat.php:2693 +msgid "Failed login attempt(s)" +msgstr "Tentativi di accesso non riusciti" + +#: chat.php:2489 +#, php-format +msgid "Read %d messages in your inbox" +msgstr "Leggete %d messaggi in entrata" + +#: chat.php:2498 +#, php-format +msgid "%d new guests to approve" +msgstr "%d nuovi ospiti da accettare" + +#: chat.php:2530 +msgid "Admin:" +msgstr "Amministratore:" + +#: chat.php:2533 +msgid "Staff" +msgstr "Staff" + +#: chat.php:2535 +msgid "Staff:" +msgstr "Staff:" + +#: chat.php:2540 +msgid "Members:" +msgstr "Membri:" + +#: chat.php:2542 +msgid "Guests" +msgstr "Ospiti" + +#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092 +#, 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\")" + +#: chat.php:2566 chat.php:2996 chat.php:3162 chat.php:4094 +#, 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\")" + +#: chat.php:2574 chat.php:2739 +msgid "Wrong global Password!" +msgstr "Password globale sbagliata!" + +#: chat.php:2591 chat.php:2612 +msgid "Wrong Captcha" +msgstr "Captcha errata" + +#: chat.php:2596 chat.php:2604 +msgid "Captcha already used or timed out." +msgstr "Codice di protezione è già in utilizzo oppure tempo scaduto." + +#: chat.php:2652 +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 +msgid "Wrong Password!" +msgstr "Password errata!" + +#: chat.php:2696 +msgid "Dismiss" +msgstr "Riconosciuto" + +#: chat.php:2747 chat.php:3171 chat.php:4096 +msgid "Password confirmation does not match!" +msgstr "Password inserite non coincidono!" + +#: chat.php:2859 +msgid "Invalid/expired session" +msgstr "Sessione invalida" + +#: chat.php:2875 chat.php:3412 +msgid "You have been kicked!" +msgstr "Bannato!" + +#: chat.php:2885 +#, php-format +msgid "Currently %d chatter(s) in room:" +msgstr "Attualmente %d partecipante (i) in stanza:" + +#: chat.php:2933 +msgid "This nickname is a registered member." +msgstr "Questo nome appartiene già ad un altro." + +#: chat.php:2960 chat.php:3001 +#, php-format +msgid "%s is already registered." +msgstr "%s Già registrato." + +#: chat.php:2969 chat.php:2990 +#, php-format +msgid "Can't register %s" +msgstr "Non puoi registrarti %s" + +#: chat.php:2978 chat.php:3023 +#, php-format +msgid "%s successfully registered." +msgstr "%s Registrato con successo." + +#: chat.php:3031 chat.php:3036 +#, php-format +msgid "Can't change status of %s" +msgstr "Impossibile cambiare stato %s" + +#: chat.php:3047 +#, php-format +msgid "%s successfully deleted from database." +msgstr "%s eliminato dal database." + +#: chat.php:3056 +#, php-format +msgid "Status of %s successfully changed." +msgstr "Stato %s cambaito con successo." + +#: chat.php:3073 +#, php-format +msgid "Successfully reset password for %s" +msgstr "" + +#: chat.php:3075 +#, php-format +msgid "Can't reset password for %s" +msgstr "" + +#: chat.php:3190 +msgid "Your profile has successfully been saved." +msgstr "Tuo profilo è stato salvato." + +#: chat.php:3202 +msgid "Nickname is already taken" +msgstr "Nome occupato" + +#: chat.php:3714 +msgid "system message" +msgstr "messaggio del sistema" + +#: chat.php:3921 +msgid "Beige" +msgstr "Beige" + +#: chat.php:3922 +msgid "Black" +msgstr "Nero" + +#: chat.php:3923 +msgid "Blue" +msgstr "Blu" + +#: chat.php:3924 +msgid "Blue violet" +msgstr "Viola-blu" + +#: chat.php:3925 +msgid "Brown" +msgstr "Marrone" + +#: chat.php:3926 +msgid "Cyan" +msgstr "Azzurro" + +#: chat.php:3927 +msgid "Dark blue" +msgstr "Blu-scuro" + +#: chat.php:3928 +msgid "Dark green" +msgstr "Verde-scuro" + +#: chat.php:3929 +msgid "Dark red" +msgstr "Rosso-scuro" + +#: chat.php:3930 +msgid "Dark violet" +msgstr "Viola-scuro" + +#: chat.php:3931 +msgid "Sky blue" +msgstr "Azzurro chiaro" + +#: chat.php:3932 +msgid "Gold" +msgstr "Oro" + +#: chat.php:3933 +msgid "Grey" +msgstr "Griggio" + +#: chat.php:3934 +msgid "Green" +msgstr "Verde" + +#: chat.php:3935 +msgid "Hot pink" +msgstr "Rosa-chiaro" + +#: chat.php:3936 +msgid "Indigo" +msgstr "Indigo" + +#: chat.php:3937 +msgid "Light blue" +msgstr "Blu-chiaro" + +#: chat.php:3938 +msgid "Light green" +msgstr "Verde-charo" + +#: chat.php:3939 +msgid "Lime green" +msgstr "Verde lime" + +#: chat.php:3940 +msgid "Magenta" +msgstr "Magenta" + +#: chat.php:3941 +msgid "Olive" +msgstr "Oliva" + +#: chat.php:3942 +msgid "Orange" +msgstr "Arancione" + +#: chat.php:3943 +msgid "Orange red" +msgstr "Arancione-rosso" + +#: chat.php:3944 +msgid "Purple" +msgstr "Viola" + +#: chat.php:3945 +msgid "Red" +msgstr "Rosso" + +#: chat.php:3946 +msgid "Royal blue" +msgstr "Re blu" + +#: chat.php:3947 +msgid "Sea green" +msgstr "Verde mare" + +#: chat.php:3948 +msgid "Sienna" +msgstr "Siena" + +#: chat.php:3949 +msgid "Silver" +msgstr "Cromato" + +#: chat.php:3950 +msgid "Tan" +msgstr "Abbronzato" + +#: chat.php:3951 +msgid "Teal" +msgstr "Teal" + +#: chat.php:3952 +msgid "Violet" +msgstr "Viola" + +#: chat.php:3953 +msgid "White" +msgstr "Bianco" + +#: chat.php:3954 +msgid "Yellow" +msgstr "Giallo" + +#: chat.php:3955 +msgid "Yellow green" +msgstr "Giallo-verde" + +#: chat.php:4077 +msgid "Successfully destroyed chat" +msgstr "Chat distrutto" + +#: chat.php:4086 +msgid "" +"Database tables already exist! To continue, you have to delete these tables " +"manually first." +msgstr "" +"Tabelle nel database esistono! Per continuare, prima devi eliminare tabelle " +"manualmente." + +#: chat.php:4089 +msgid "A Superadmin already exists!" +msgstr "Super-amministratore è già esistente!" + +#: chat.php:4182 chat.php:4369 +#, php-format +msgid "%s - " +msgstr "%s - " + +#: chat.php:4183 chat.php:4369 +#, php-format +msgid "[M] %s - " +msgstr "[M] %s - " + +#: chat.php:4184 chat.php:4369 +#, php-format +msgid "[Staff] %s - " +msgstr "[Staff] %s - " + +#: chat.php:4185 chat.php:4369 +#, php-format +msgid "[Admin] %s - " +msgstr "[Admin] %s - " + +#: chat.php:4186 chat.php:4369 +#, php-format +msgid "[%1$s to %2$s] - " +msgstr "[%1$s a %2$s] - " + +#: chat.php:4187 +#, php-format +msgid "%s entered the chat." +msgstr "%s entrato in chat." + +#: chat.php:4188 +#, php-format +msgid "%s left the chat." +msgstr "%s abbandonato chat." + +#: chat.php:4189 +#, php-format +msgid "%s is now a registered member." +msgstr "%s ora registrato membro." + +#: chat.php:4190 +#, php-format +msgid "%s is now a registered applicant." +msgstr "%s ora registrato candidato." + +#: chat.php:4191 +#, php-format +msgid "%s has been kicked." +msgstr "%s espcluso dalla chat." + +#: chat.php:4192 +#, php-format +msgid "%s have been kicked." +msgstr "%s esclusi dalla chat." + +#: chat.php:4193 +msgid "All guests have been kicked." +msgstr "Tutti ospiti esplusi dalla chat." + +#: chat.php:4194 +#, php-format +msgid "%s has been cleaned." +msgstr "%s pulito prima." + +#: chat.php:4202 chat.php:4396 +msgid "Temporarily disabled" +msgstr "Attualmente disabilitato" + +#: chat.php:4218 chat.php:4594 +msgid "A chat community" +msgstr "" + +#: chat.php:4256 +msgid "Successfully registered!" +msgstr "Registrato con successo!" + +#: chat.php:4522 chat.php:4721 chat.php:4728 +msgid "No connection to database!" +msgstr "Non cè collegamento al database!" + +#: chat.php:4531 +msgid "" +"Note: Default CSS is now hardcoded and can be removed from the CSS setting" +msgstr "" + +#: chat.php:4611 +#, 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 +#, 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 +msgid "" +"No connection to database, please create a database and edit the script to " +"use the correct database with given username and password!" +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 +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 "" diff --git a/locale/le-chat-php.pot b/locale/le-chat-php.pot new file mode 100644 index 0000000..abe99cb --- /dev/null +++ b/locale/le-chat-php.pot @@ -0,0 +1,1588 @@ +# 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. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-01-18 21:32+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#: chat.php:261 +msgid "Enable applicants" +msgstr "" + +#: chat.php:262 +msgid "Embed images" +msgstr "" + +#: chat.php:263 chat.php:2202 +msgid "Show Timestamps" +msgstr "" + +#: chat.php:264 +msgid "Show session-IP" +msgstr "" + +#: chat.php:265 +msgid "Members can kick, if no moderator is present" +msgstr "" + +#: chat.php:266 +msgid "Members can always kick" +msgstr "" + +#: chat.php:267 +msgid "Force redirection" +msgstr "" + +#: chat.php:268 +msgid "Incognito mode" +msgstr "" + +#: chat.php:269 +msgid "Send mail on new public message" +msgstr "" + +#: chat.php:270 +msgid "Fallback to waiting room, if no moderator is present to approve guests" +msgstr "" + +#: chat.php:271 +msgid "Disable private messages" +msgstr "" + +#: chat.php:272 chat.php:2223 +msgid "Enable offline inbox" +msgstr "" + +#: chat.php:273 +msgid "Show a greeting message before showing the messages" +msgstr "" + +#: chat.php:274 chat.php:2204 +msgid "Sort messages from top to bottom" +msgstr "" + +#: chat.php:275 chat.php:2205 +msgid "Hide list of chatters" +msgstr "" + +#: chat.php:276 chat.php:1780 chat.php:1794 +msgid "Personal notes" +msgstr "" + +#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110 +msgid "Public notes" +msgstr "" + +#: chat.php:278 +msgid "Apply kick filter on moderators" +msgstr "" + +#: chat.php:279 +msgid "Show who kicks people or purges all messages." +msgstr "" + +#: chat.php:280 +msgid "Hide reload post box button" +msgstr "" + +#: chat.php:281 +msgid "Hide reload messages button" +msgstr "" + +#: chat.php:282 +msgid "Hide profile button" +msgstr "" + +#: chat.php:283 +msgid "Hide admin button" +msgstr "" + +#: chat.php:284 +msgid "Hide notes button" +msgstr "" + +#: chat.php:285 +msgid "Hide clone button" +msgstr "" + +#: chat.php:286 +msgid "Hide rearrange button" +msgstr "" + +#: chat.php:287 +msgid "Hide help button" +msgstr "" + +#: chat.php:288 +msgid "Apply postbox delete button globally" +msgstr "" + +#: chat.php:289 +msgid "Allow enhancing functionality with JavaScript" +msgstr "" + +#: chat.php:292 chat.php:2170 +msgid "Background colour" +msgstr "" + +#: chat.php:293 chat.php:2167 +msgid "Font colour" +msgstr "" + +#: chat.php:296 +msgid "Entrance" +msgstr "" + +#: chat.php:297 +msgid "Leaving" +msgstr "" + +#: chat.php:298 +msgid "Member registered" +msgstr "" + +#: chat.php:299 +msgid "Applicant registered" +msgstr "" + +#: chat.php:300 +msgid "Kicked" +msgstr "" + +#: chat.php:301 +msgid "Multiple kicked" +msgstr "" + +#: chat.php:302 +msgid "All kicked" +msgstr "" + +#: chat.php:303 +msgid "Room cleaned" +msgstr "" + +#: chat.php:304 +msgid "Message to all" +msgstr "" + +#: chat.php:305 +msgid "Message to members only" +msgstr "" + +#: chat.php:306 +msgid "Message to staff only" +msgstr "" + +#: chat.php:307 +msgid "Message to admins only" +msgstr "" + +#: chat.php:308 +msgid "Private message" +msgstr "" + +#: chat.php:309 +msgid "Attachement" +msgstr "" + +#: chat.php:312 +msgid "Member timeout (minutes)" +msgstr "" + +#: chat.php:313 +msgid "Guest timeout (minutes)" +msgstr "" + +#: chat.php:314 +msgid "Kick penalty (minutes)" +msgstr "" + +#: chat.php:315 +msgid "Waiting room time (seconds)" +msgstr "" + +#: chat.php:316 +msgid "Captcha timeout (seconds)" +msgstr "" + +#: chat.php:317 +msgid "Message timeout (minutes)" +msgstr "" + +#: chat.php:318 +msgid "Message limit (public)" +msgstr "" + +#: chat.php:319 +msgid "Maximal message length" +msgstr "" + +#: chat.php:320 +msgid "Maximal nickname length" +msgstr "" + +#: chat.php:321 +msgid "Minimal password length" +msgstr "" + +#: chat.php:322 +msgid "Default message reload time (seconds)" +msgstr "" + +#: chat.php:323 +msgid "Number of notes revisions to keep" +msgstr "" + +#: chat.php:324 +msgid "Maximum upload size in KB" +msgstr "" + +#: chat.php:325 +msgid "Enable file uploads" +msgstr "" + +#: chat.php:326 +msgid "Lowest refresh rate" +msgstr "" + +#: chat.php:327 +msgid "Highest refresh rate" +msgstr "" + +#: chat.php:330 +msgid "Rules (html)" +msgstr "" + +#: chat.php:331 +msgid "CSS Style" +msgstr "" + +#: chat.php:332 +msgid "Chat disabled message (html)" +msgstr "" + +#: chat.php:335 +msgid "" +"Date " +"formating" +msgstr "" + +#: chat.php:336 +msgid "Characters used in Captcha" +msgstr "" + +#: chat.php:337 +msgid "Custom redirection script" +msgstr "" + +#: chat.php:338 +msgid "Chat name" +msgstr "" + +#: chat.php:339 +msgid "Send mail using this address" +msgstr "" + +#: chat.php:340 +msgid "Send mail to this address" +msgstr "" + +#: chat.php:341 +msgid "Nickname regex" +msgstr "" + +#: chat.php:342 +msgid "Password regex" +msgstr "" + +#: chat.php:343 +msgid "Link to external CSS file (on your own server)" +msgstr "" + +#: chat.php:344 +msgid "Meta description (best 50 - 160 characters for SEO)" +msgstr "" + +#: chat.php:345 +msgid "Prepend this text to system messages" +msgstr "" + +#: chat.php:348 chat.php:728 chat.php:1225 +msgid "Change Guestaccess" +msgstr "" + +#: chat.php:349 +msgid "Enable global Password" +msgstr "" + +#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433 +msgid "Global Password:" +msgstr "" + +#: chat.php:351 chat.php:819 +msgid "Captcha" +msgstr "" + +#: chat.php:352 chat.php:775 chat.php:835 +msgid "Only for guests" +msgstr "" + +#: chat.php:353 chat.php:1220 +msgid "Topic" +msgstr "" + +#: chat.php:354 chat.php:781 +msgid "Let guests register themselves" +msgstr "" + +#: chat.php:355 chat.php:862 +msgid "Default time zone" +msgstr "" + +#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259 +msgid "Initial Setup" +msgstr "" + +#: chat.php:588 +#, php-format +msgid "Redirecting to: %s" +msgstr "" + +#: chat.php:595 +#, php-format +msgid "" +"Dangerous non-http link requested, copy paste this link if you are really " +"sure: %s" +msgstr "" + +#: chat.php:597 +#, php-format +msgid "Non-http link requested: %s" +msgstr "" + +#: chat.php:599 +#, php-format +msgid "If it's not working, try this one: %s" +msgstr "" + +#: chat.php:609 +msgid "Access denied" +msgstr "" + +#: chat.php:609 +#, 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 +msgid "Logout" +msgstr "" + +#: chat.php:636 +msgid "Copy:" +msgstr "" + +#: chat.php:724 +msgid "Chat Setup" +msgstr "" + +#: chat.php:734 chat.php:1233 +msgid "Allow" +msgstr "" + +#: chat.php:739 chat.php:1238 +msgid "Allow with waitingroom" +msgstr "" + +#: chat.php:744 chat.php:1243 +msgid "Require moderator approval" +msgstr "" + +#: chat.php:749 chat.php:1248 +msgid "Only members" +msgstr "" + +#: chat.php:754 chat.php:1251 +msgid "Disable chat" +msgstr "" + +#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229 +msgid "Disabled" +msgstr "" + +#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219 +msgid "Enabled" +msgstr "" + +#: chat.php:792 +msgid "As applicant" +msgstr "" + +#: chat.php:797 +msgid "As member" +msgstr "" + +#: chat.php:800 +msgid "System messages" +msgstr "" + +#: chat.php:822 chat.php:1053 +#, php-format +msgid "" +"The %s extension of PHP is required for this feature. Please install it " +"first." +msgstr "" + +#: chat.php:847 +msgid "Simple" +msgstr "" + +#: chat.php:852 +msgid "Moderate" +msgstr "" + +#: chat.php:857 +msgid "Extreme" +msgstr "" + +#: chat.php:906 chat.php:1548 chat.php:1610 +msgid "Apply" +msgstr "" + +#: chat.php:910 chat.php:1050 +msgid "Backup and restore" +msgstr "" + +#: chat.php:912 +msgid "Destroy chat" +msgstr "" + +#: chat.php:1057 chat.php:1066 +msgid "Settings" +msgstr "" + +#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575 +#: chat.php:1622 +msgid "Filter" +msgstr "" + +#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538 +msgid "Members" +msgstr "" + +#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322 +msgid "Notes" +msgstr "" + +#: chat.php:1061 +msgid "Backup" +msgstr "" + +#: chat.php:1070 +msgid "Restore" +msgstr "" + +#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260 +msgid "Go to the Setup-Page" +msgstr "" + +#: chat.php:1082 chat.php:1091 chat.php:1949 +msgid "Are you sure?" +msgstr "" + +#: chat.php:1083 chat.php:1092 chat.php:1956 +msgid "Yes" +msgstr "" + +#: chat.php:1084 chat.php:1093 chat.php:1963 +msgid "No" +msgstr "" + +#: chat.php:1101 chat.php:4259 +msgid "Superadmin Login" +msgstr "" + +#: chat.php:1102 +msgid "Superadmin Nickname:" +msgstr "" + +#: chat.php:1103 +msgid "Superadmin Password:" +msgstr "" + +#: chat.php:1104 +msgid "Confirm Password:" +msgstr "" + +#: chat.php:1105 +msgid "Initialise Chat" +msgstr "" + +#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439 +msgid "Change language:" +msgstr "" + +#: chat.php:1117 +msgid "Database successfully updated!" +msgstr "" + +#: chat.php:1125 chat.php:1326 chat.php:2407 +msgid "Nickname:" +msgstr "" + +#: chat.php:1126 chat.php:1327 chat.php:2408 +msgid "Password:" +msgstr "" + +#: chat.php:1128 +msgid "Login" +msgstr "" + +#: chat.php:1129 +msgid "Forgot login?" +msgstr "" + +#: chat.php:1142 chat.php:1306 +msgid "Reset password" +msgstr "" + +#: chat.php:1150 +#, php-format +msgid "" +"Successfully reset password for username %s. Please remove the password " +"reset define from the script again." +msgstr "" + +#: 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 "" + +#: 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 +msgid "(choose)" +msgstr "" + +#: chat.php:1170 +msgid "All guests" +msgstr "" + +#: chat.php:1182 +msgid "Administrative functions" +msgstr "" + +#: chat.php:1188 +msgid "Clean messages" +msgstr "" + +#: chat.php:1191 +msgid "Whole room" +msgstr "" + +#: chat.php:1192 +msgid "Selection" +msgstr "" + +#: chat.php:1193 +msgid "Following nickname:" +msgstr "" + +#: chat.php:1200 +msgid "Clean" +msgstr "" + +#: chat.php:1202 +#, php-format +msgid "Kick Chatter (%d minutes)" +msgstr "" + +#: chat.php:1204 +msgid "Kickmessage:" +msgstr "" + +#: chat.php:1205 +msgid "Purge messages" +msgstr "" + +#: chat.php:1206 chat.php:1388 chat.php:1546 chat.php:1580 chat.php:1591 +#: chat.php:2042 +msgid "Kick" +msgstr "" + +#: chat.php:1208 +msgid "Logout inactive Chatter" +msgstr "" + +#: chat.php:1212 +msgid "View active sessions" +msgstr "" + +#: chat.php:1212 chat.php:1603 +msgid "Linkfilter" +msgstr "" + +#: chat.php:1217 +msgid "View" +msgstr "" + +#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582 +#: chat.php:1626 +msgid "Change" +msgstr "" + +#: chat.php:1256 +msgid "Register applicant" +msgstr "" + +#: chat.php:1264 chat.php:1322 chat.php:1328 +msgid "Register" +msgstr "" + +#: chat.php:1294 +msgid "Delete from database" +msgstr "" + +#: chat.php:1294 +msgid "Deny access (!)" +msgstr "" + +#: chat.php:1296 +msgid "Set to applicant (SG)" +msgstr "" + +#: chat.php:1298 +msgid "Set to regular member" +msgstr "" + +#: chat.php:1299 +msgid "Set to moderator (M)" +msgstr "" + +#: chat.php:1300 +msgid "Set to supermod (SM)" +msgstr "" + +#: chat.php:1302 +msgid "Set to admin (A)" +msgstr "" + +#: chat.php:1314 +msgid "Register Guest" +msgstr "" + +#: chat.php:1324 +msgid "Register new Member" +msgstr "" + +#: chat.php:1332 chat.php:1408 chat.php:1595 chat.php:1636 chat.php:1710 +#: chat.php:1924 +msgid "Reload" +msgstr "" + +#: chat.php:1345 +msgid "Active Sessions" +msgstr "" + +#: chat.php:1346 chat.php:1873 +msgid "Nickname" +msgstr "" + +#: chat.php:1346 +msgid "Timeout in" +msgstr "" + +#: chat.php:1346 chat.php:1873 +msgid "User-Agent" +msgstr "" + +#: chat.php:1350 +msgid "IP-Address" +msgstr "" + +#: chat.php:1351 +msgid "Actions" +msgstr "" + +#: chat.php:1393 +msgid "Unban" +msgstr "" + +#: chat.php:1416 +msgid "Incorrect regular expression!" +msgstr "" + +#: chat.php:1416 chat.php:1424 +#, php-format +msgid "Your match was as follows: %s" +msgstr "" + +#: chat.php:1424 +msgid "" +"Your match was too long. You can use max. 255 characters. Try splitting it " +"up." +msgstr "" + +#: chat.php:1541 chat.php:1606 +msgid "Filter ID:" +msgstr "" + +#: chat.php:1542 chat.php:1607 +msgid "Match" +msgstr "" + +#: chat.php:1543 chat.php:1608 +msgid "Replace" +msgstr "" + +#: chat.php:1544 chat.php:1578 chat.php:1589 +msgid "Allow in PM" +msgstr "" + +#: chat.php:1545 chat.php:1579 chat.php:1590 chat.php:1609 chat.php:1625 +#: chat.php:1633 +msgid "Regex" +msgstr "" + +#: chat.php:1547 chat.php:1581 chat.php:1592 +msgid "Case sensitive" +msgstr "" + +#: chat.php:1586 chat.php:1630 +msgid "New filter:" +msgstr "" + +#: chat.php:1593 chat.php:1634 +msgid "Add" +msgstr "" + +#: chat.php:1691 +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 +msgid "Back to the login page." +msgstr "" + +#: chat.php:1709 +msgid "Bottom" +msgstr "" + +#: chat.php:1710 +msgid "Manual refresh required" +msgstr "" + +#: chat.php:1726 +msgid "Top" +msgstr "" + +#: chat.php:1734 chat.php:1940 chat.php:1942 +msgid "Delete selected messages" +msgstr "" + +#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281 +msgid "Back to the chat." +msgstr "" + +#: chat.php:1774 chat.php:1791 +msgid "Admin notes" +msgstr "" + +#: chat.php:1777 chat.php:1788 +msgid "Staff notes" +msgstr "" + +#: chat.php:1811 +msgid "Notes saved!" +msgstr "" + +#: chat.php:1835 chat.php:2122 +#, php-format +msgid "Last edited by %1$s at %2$s" +msgstr "" + +#: chat.php:1848 +msgid "Save notes" +msgstr "" + +#: chat.php:1850 +msgid "Revisions:" +msgstr "" + +#: chat.php:1853 +msgid "Older" +msgstr "" + +#: chat.php:1857 +msgid "Newer" +msgstr "" + +#: chat.php:1868 chat.php:1914 +msgid "Waiting room" +msgstr "" + +#: chat.php:1880 +msgid "Allow checked" +msgstr "" + +#: chat.php:1881 +msgid "Allow all" +msgstr "" + +#: chat.php:1882 +msgid "Deny checked" +msgstr "" + +#: chat.php:1883 +msgid "Deny all" +msgstr "" + +#: chat.php:1883 +msgid "Send message to denied:" +msgstr "" + +#: chat.php:1884 +msgid "Submit" +msgstr "" + +#: chat.php:1886 +msgid "No more entry requests to approve." +msgstr "" + +#: chat.php:1916 +#, php-format +msgid "" +"Welcome %1$s, your login has been delayed, you can access the chat in %2$d " +"seconds." +msgstr "" + +#: chat.php:1918 +#, 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 +#, 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 +msgid "Exit Chat" +msgstr "" + +#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430 +msgid "Rules" +msgstr "" + +#: chat.php:1985 +msgid "Send to" +msgstr "" + +#: chat.php:1990 +msgid "All chatters" +msgstr "" + +#: chat.php:1996 +msgid "Members only" +msgstr "" + +#: chat.php:2003 +msgid "Staff only" +msgstr "" + +#: chat.php:2010 +msgid "Admin only" +msgstr "" + +#: chat.php:2019 +msgid "(offline)" +msgstr "" + +#: chat.php:2043 +msgid "Also purge messages" +msgstr "" + +#: chat.php:2050 +msgid "Delete last message" +msgstr "" + +#: chat.php:2055 +msgid "Delete all messages" +msgstr "" + +#: chat.php:2057 +msgid "Switch to single-line" +msgstr "" + +#: chat.php:2059 +msgid "Switch to multi-line" +msgstr "" + +#: chat.php:2070 +#, php-format +msgid "Welcome %s!" +msgstr "" + +#: chat.php:2071 +#, 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 "" + +#: chat.php:2087 +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." +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 "" + +#: 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 "" + +#: 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 "" + +#: chat.php:2097 +msgid "" +"Admins: You'll be furthermore able to register guests, edit members and " +"register new nicknames." +msgstr "" + +#: chat.php:2135 +msgid "Your Profile" +msgstr "" + +#: chat.php:2144 +msgid "Don't ignore anymore" +msgstr "" + +#: chat.php:2152 +msgid "Ignore" +msgstr "" + +#: chat.php:2163 +#, php-format +msgid "Refresh rate (%1$d-%2$d seconds)" +msgstr "" + +#: chat.php:2167 chat.php:2170 +msgid "View examples" +msgstr "" + +#: chat.php:2174 +msgid "Fontface" +msgstr "" + +#: chat.php:2175 +msgid "Room Default" +msgstr "" + +#: chat.php:2188 +msgid "Bold" +msgstr "" + +#: chat.php:2192 +msgid "Italic" +msgstr "" + +#: chat.php:2196 +msgid "Small" +msgstr "" + +#: chat.php:2199 +msgid "Example for your chosen font" +msgstr "" + +#: chat.php:2203 +msgid "Autoscroll (for old browsers or top-to-bottom sort)." +msgstr "" + +#: chat.php:2234 +msgid "For everyone" +msgstr "" + +#: chat.php:2239 +msgid "For members only" +msgstr "" + +#: chat.php:2244 +msgid "For staff only" +msgstr "" + +#: chat.php:2248 +msgid "Time zone" +msgstr "" + +#: chat.php:2261 +msgid "Change Password" +msgstr "" + +#: chat.php:2263 +msgid "Old password:" +msgstr "" + +#: chat.php:2264 +msgid "New password:" +msgstr "" + +#: chat.php:2265 +msgid "Confirm new password:" +msgstr "" + +#: chat.php:2268 +msgid "Change Nickname" +msgstr "" + +#: chat.php:2269 +msgid "New nickname:" +msgstr "" + +#: chat.php:2273 +msgid "Save changes" +msgstr "" + +#: chat.php:2275 +msgid "Delete account" +msgstr "" + +#: chat.php:2301 +msgid "Reload Post Box" +msgstr "" + +#: chat.php:2304 +msgid "Reload Messages" +msgstr "" + +#: chat.php:2307 +msgid "Profile" +msgstr "" + +#: chat.php:2311 chat.php:2528 +msgid "Admin" +msgstr "" + +#: chat.php:2318 +msgid "View public notes" +msgstr "" + +#: chat.php:2325 +msgid "Clone" +msgstr "" + +#: chat.php:2334 +msgid "Rearrange" +msgstr "" + +#: chat.php:2337 +msgid "Rules & Help" +msgstr "" + +#: chat.php:2358 chat.php:2362 +msgid "File not found!" +msgstr "" + +#: chat.php:2370 +#, php-format +msgid "Bye %s, visit again soon!" +msgstr "" + +#: chat.php:2377 +msgid "Colourtable" +msgstr "" + +#: chat.php:2388 +msgid "Back to your Profile" +msgstr "" + +#: chat.php:2412 +msgid "Repeat password
to register" +msgstr "" + +#: chat.php:2412 +msgid "(optional)" +msgstr "" + +#: chat.php:2417 +msgid "Guests, choose a colour:" +msgstr "" + +#: chat.php:2417 +msgid "Random Colour" +msgstr "" + +#: chat.php:2421 chat.php:2435 chat.php:2569 +msgid "Sorry, currently members only!" +msgstr "" + +#: chat.php:2423 chat.php:2437 +msgid "Enter Chat" +msgstr "" + +#: chat.php:2457 +#, php-format +msgid "Error: %s" +msgstr "" + +#: chat.php:2467 +msgid "Fatal error" +msgstr "" + +#: chat.php:2470 +#, php-format +msgid "Fatal error: %s" +msgstr "" + +#: chat.php:2482 chat.php:2693 +msgid "Failed login attempt(s)" +msgstr "" + +#: chat.php:2489 +#, php-format +msgid "Read %d messages in your inbox" +msgstr "" + +#: chat.php:2498 +#, php-format +msgid "%d new guests to approve" +msgstr "" + +#: chat.php:2530 +msgid "Admin:" +msgstr "" + +#: chat.php:2533 +msgid "Staff" +msgstr "" + +#: chat.php:2535 +msgid "Staff:" +msgstr "" + +#: chat.php:2540 +msgid "Members:" +msgstr "" + +#: chat.php:2542 +msgid "Guests" +msgstr "" + +#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092 +#, 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 +#, 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 +msgid "Wrong global Password!" +msgstr "" + +#: chat.php:2591 chat.php:2612 +msgid "Wrong Captcha" +msgstr "" + +#: chat.php:2596 chat.php:2604 +msgid "Captcha already used or timed out." +msgstr "" + +#: chat.php:2652 +msgid "A user with this nickname is already logged in." +msgstr "" + +#: chat.php:2652 chat.php:2933 chat.php:3176 +msgid "Wrong Password!" +msgstr "" + +#: chat.php:2696 +msgid "Dismiss" +msgstr "" + +#: chat.php:2747 chat.php:3171 chat.php:4096 +msgid "Password confirmation does not match!" +msgstr "" + +#: chat.php:2859 +msgid "Invalid/expired session" +msgstr "" + +#: chat.php:2875 chat.php:3412 +msgid "You have been kicked!" +msgstr "" + +#: chat.php:2885 +#, php-format +msgid "Currently %d chatter(s) in room:" +msgstr "" + +#: chat.php:2933 +msgid "This nickname is a registered member." +msgstr "" + +#: chat.php:2960 chat.php:3001 +#, php-format +msgid "%s is already registered." +msgstr "" + +#: chat.php:2969 chat.php:2990 +#, php-format +msgid "Can't register %s" +msgstr "" + +#: chat.php:2978 chat.php:3023 +#, php-format +msgid "%s successfully registered." +msgstr "" + +#: chat.php:3031 chat.php:3036 +#, php-format +msgid "Can't change status of %s" +msgstr "" + +#: chat.php:3047 +#, php-format +msgid "%s successfully deleted from database." +msgstr "" + +#: chat.php:3056 +#, php-format +msgid "Status of %s successfully changed." +msgstr "" + +#: chat.php:3073 +#, php-format +msgid "Successfully reset password for %s" +msgstr "" + +#: chat.php:3075 +#, php-format +msgid "Can't reset password for %s" +msgstr "" + +#: chat.php:3190 +msgid "Your profile has successfully been saved." +msgstr "" + +#: chat.php:3202 +msgid "Nickname is already taken" +msgstr "" + +#: chat.php:3714 +msgid "system message" +msgstr "" + +#: chat.php:3921 +msgid "Beige" +msgstr "" + +#: chat.php:3922 +msgid "Black" +msgstr "" + +#: chat.php:3923 +msgid "Blue" +msgstr "" + +#: chat.php:3924 +msgid "Blue violet" +msgstr "" + +#: chat.php:3925 +msgid "Brown" +msgstr "" + +#: chat.php:3926 +msgid "Cyan" +msgstr "" + +#: chat.php:3927 +msgid "Dark blue" +msgstr "" + +#: chat.php:3928 +msgid "Dark green" +msgstr "" + +#: chat.php:3929 +msgid "Dark red" +msgstr "" + +#: chat.php:3930 +msgid "Dark violet" +msgstr "" + +#: chat.php:3931 +msgid "Sky blue" +msgstr "" + +#: chat.php:3932 +msgid "Gold" +msgstr "" + +#: chat.php:3933 +msgid "Grey" +msgstr "" + +#: chat.php:3934 +msgid "Green" +msgstr "" + +#: chat.php:3935 +msgid "Hot pink" +msgstr "" + +#: chat.php:3936 +msgid "Indigo" +msgstr "" + +#: chat.php:3937 +msgid "Light blue" +msgstr "" + +#: chat.php:3938 +msgid "Light green" +msgstr "" + +#: chat.php:3939 +msgid "Lime green" +msgstr "" + +#: chat.php:3940 +msgid "Magenta" +msgstr "" + +#: chat.php:3941 +msgid "Olive" +msgstr "" + +#: chat.php:3942 +msgid "Orange" +msgstr "" + +#: chat.php:3943 +msgid "Orange red" +msgstr "" + +#: chat.php:3944 +msgid "Purple" +msgstr "" + +#: chat.php:3945 +msgid "Red" +msgstr "" + +#: chat.php:3946 +msgid "Royal blue" +msgstr "" + +#: chat.php:3947 +msgid "Sea green" +msgstr "" + +#: chat.php:3948 +msgid "Sienna" +msgstr "" + +#: chat.php:3949 +msgid "Silver" +msgstr "" + +#: chat.php:3950 +msgid "Tan" +msgstr "" + +#: chat.php:3951 +msgid "Teal" +msgstr "" + +#: chat.php:3952 +msgid "Violet" +msgstr "" + +#: chat.php:3953 +msgid "White" +msgstr "" + +#: chat.php:3954 +msgid "Yellow" +msgstr "" + +#: chat.php:3955 +msgid "Yellow green" +msgstr "" + +#: chat.php:4077 +msgid "Successfully destroyed chat" +msgstr "" + +#: chat.php:4086 +msgid "" +"Database tables already exist! To continue, you have to delete these tables " +"manually first." +msgstr "" + +#: chat.php:4089 +msgid "A Superadmin already exists!" +msgstr "" + +#: chat.php:4182 chat.php:4369 +#, php-format +msgid "%s - " +msgstr "" + +#: chat.php:4183 chat.php:4369 +#, php-format +msgid "[M] %s - " +msgstr "" + +#: chat.php:4184 chat.php:4369 +#, php-format +msgid "[Staff] %s - " +msgstr "" + +#: chat.php:4185 chat.php:4369 +#, php-format +msgid "[Admin] %s - " +msgstr "" + +#: chat.php:4186 chat.php:4369 +#, php-format +msgid "[%1$s to %2$s] - " +msgstr "" + +#: chat.php:4187 +#, php-format +msgid "%s entered the chat." +msgstr "" + +#: chat.php:4188 +#, php-format +msgid "%s left the chat." +msgstr "" + +#: chat.php:4189 +#, php-format +msgid "%s is now a registered member." +msgstr "" + +#: chat.php:4190 +#, php-format +msgid "%s is now a registered applicant." +msgstr "" + +#: chat.php:4191 +#, php-format +msgid "%s has been kicked." +msgstr "" + +#: chat.php:4192 +#, php-format +msgid "%s have been kicked." +msgstr "" + +#: chat.php:4193 +msgid "All guests have been kicked." +msgstr "" + +#: chat.php:4194 +#, php-format +msgid "%s has been cleaned." +msgstr "" + +#: chat.php:4202 chat.php:4396 +msgid "Temporarily disabled" +msgstr "" + +#: chat.php:4218 chat.php:4594 +msgid "A chat community" +msgstr "" + +#: chat.php:4256 +msgid "Successfully registered!" +msgstr "" + +#: chat.php:4522 chat.php:4721 chat.php:4728 +msgid "No connection to database!" +msgstr "" + +#: chat.php:4531 +msgid "" +"Note: Default CSS is now hardcoded and can be removed from the CSS setting" +msgstr "" + +#: chat.php:4611 +#, 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 +#, 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 +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 "" diff --git a/locale/pt_PT/LC_MESSAGES/le-chat-php.mo b/locale/pt_PT/LC_MESSAGES/le-chat-php.mo new file mode 100644 index 0000000..32cef8a Binary files /dev/null and b/locale/pt_PT/LC_MESSAGES/le-chat-php.mo differ diff --git a/locale/pt_PT/LC_MESSAGES/le-chat-php.po b/locale/pt_PT/LC_MESSAGES/le-chat-php.po new file mode 100644 index 0000000..9cee358 --- /dev/null +++ b/locale/pt_PT/LC_MESSAGES/le-chat-php.po @@ -0,0 +1,1656 @@ +# 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: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-01-18 21:32+0100\n" +"PO-Revision-Date: 2023-01-18 21:39+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.1.1\n" + +#: chat.php:261 +msgid "Enable applicants" +msgstr "Habilitar candidatos" + +#: chat.php:262 +msgid "Embed images" +msgstr "Incorporar imagens" + +#: chat.php:263 chat.php:2202 +msgid "Show Timestamps" +msgstr "Mostrar carimbos de hora" + +#: chat.php:264 +msgid "Show session-IP" +msgstr "Mostrar os endereços IP das sessões ativas" + +#: chat.php:265 +msgid "Members can kick, if no moderator is present" +msgstr "Os membros podem kickar, se nenhum moderador estiver presente" + +#: chat.php:266 +msgid "Members can always kick" +msgstr "Os membros podem sempre espulsar" + +#: chat.php:267 +msgid "Force redirection" +msgstr "Forçar redirecionamento" + +#: chat.php:268 +msgid "Incognito mode" +msgstr "Modo incógnito" + +#: chat.php:269 +msgid "Send mail on new public message" +msgstr "Mandar mensagems públicas por e-mail" + +#: chat.php:270 +msgid "Fallback to waiting room, if no moderator is present to approve guests" +msgstr "" +"Alternativa para a sala de espera, se nenhum moderador estiver presente para " +"aprovar os convidados" + +#: chat.php:271 +msgid "Disable private messages" +msgstr "Desativar mensagens privadas" + +#: chat.php:272 chat.php:2223 +msgid "Enable offline inbox" +msgstr "Ativar caixa de entrada offline" + +#: chat.php:273 +msgid "Show a greeting message before showing the messages" +msgstr "Mostrar uma mensagem de saudação antes de mostrar as mensagens" + +#: chat.php:274 chat.php:2204 +msgid "Sort messages from top to bottom" +msgstr "Sortir mensagens de topo a base" + +#: chat.php:275 chat.php:2205 +msgid "Hide list of chatters" +msgstr "Ocultar lista de usuários" + +#: chat.php:276 chat.php:1780 chat.php:1794 +msgid "Personal notes" +msgstr "Notas pessoais" + +#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110 +msgid "Public notes" +msgstr "Notas públicas" + +#: chat.php:278 +msgid "Apply kick filter on moderators" +msgstr "Aplicar filtro da expulsão nos moderadores" + +#: chat.php:279 +msgid "Show who kicks people or purges all messages." +msgstr "Mostre quem expulsa as pessoas ou expurga todas as mensagens." + +#: chat.php:280 +msgid "Hide reload post box button" +msgstr "" + +#: chat.php:281 +msgid "Hide reload messages button" +msgstr "" + +#: chat.php:282 +msgid "Hide profile button" +msgstr "" + +#: chat.php:283 +msgid "Hide admin button" +msgstr "" + +#: chat.php:284 +msgid "Hide notes button" +msgstr "" + +#: chat.php:285 +msgid "Hide clone button" +msgstr "" + +#: chat.php:286 +msgid "Hide rearrange button" +msgstr "" + +#: chat.php:287 +msgid "Hide help button" +msgstr "" + +#: chat.php:288 +msgid "Apply postbox delete button globally" +msgstr "" + +#: chat.php:289 +msgid "Allow enhancing functionality with JavaScript" +msgstr "" + +#: chat.php:292 chat.php:2170 +msgid "Background colour" +msgstr "Cor de fundo" + +#: chat.php:293 chat.php:2167 +msgid "Font colour" +msgstr "Cor da fonte" + +#: chat.php:296 +msgid "Entrance" +msgstr "Entrada" + +#: chat.php:297 +msgid "Leaving" +msgstr "Saída" + +#: chat.php:298 +msgid "Member registered" +msgstr "Membro registrado" + +#: chat.php:299 +msgid "Applicant registered" +msgstr "Candidato registrado" + +#: chat.php:300 +msgid "Kicked" +msgstr "Expulso" + +#: chat.php:301 +msgid "Multiple kicked" +msgstr "Expulsão múltiplo" + +#: chat.php:302 +msgid "All kicked" +msgstr "Todos expulsos" + +#: chat.php:303 +msgid "Room cleaned" +msgstr "Sala limpa" + +#: chat.php:304 +msgid "Message to all" +msgstr "Mensagem a todos" + +#: chat.php:305 +msgid "Message to members only" +msgstr "Mensagem a membros" + +#: chat.php:306 +msgid "Message to staff only" +msgstr "Mensagem a equipe" + +#: chat.php:307 +msgid "Message to admins only" +msgstr "Mensagem a admins" + +#: chat.php:308 +msgid "Private message" +msgstr "Mensagem privada" + +#: chat.php:309 +msgid "Attachement" +msgstr "Anexar" + +#: chat.php:312 +msgid "Member timeout (minutes)" +msgstr "Intervalo antes do desconexão dos membros (minutos)" + +#: chat.php:313 +msgid "Guest timeout (minutes)" +msgstr "Intervalo antes do desconexão dos convidados (minutos)" + +#: chat.php:314 +msgid "Kick penalty (minutes)" +msgstr "Duração da expulsão (minutos)" + +#: chat.php:315 +msgid "Waiting room time (seconds)" +msgstr "Duração da sala de espera (segundos)" + +#: chat.php:316 +msgid "Captcha timeout (seconds)" +msgstr "Duração para resolver CAPTCHA (segundos)" + +#: chat.php:317 +msgid "Message timeout (minutes)" +msgstr "Minutos até que mensagens se expire" + +#: chat.php:318 +msgid "Message limit (public)" +msgstr "Número máximo das mensagens publicas" + +#: chat.php:319 +msgid "Maximal message length" +msgstr "Comprimento máximo da mensagem" + +#: chat.php:320 +msgid "Maximal nickname length" +msgstr "Comprimento máximo do nickname" + +#: chat.php:321 +msgid "Minimal password length" +msgstr "Comprimento mínimo da senha" + +#: chat.php:322 +msgid "Default message reload time (seconds)" +msgstr "Tempo padrão de recarga de mensagem (segundos)" + +#: chat.php:323 +msgid "Number of notes revisions to keep" +msgstr "Número de revisões de notas para manter" + +#: chat.php:324 +msgid "Maximum upload size in KB" +msgstr "Tamanho máximo de upload em KB" + +#: chat.php:325 +msgid "Enable file uploads" +msgstr "Habilitar uploads de arquivos" + +#: chat.php:326 +msgid "Lowest refresh rate" +msgstr "" + +#: chat.php:327 +msgid "Highest refresh rate" +msgstr "" + +#: chat.php:330 +msgid "Rules (html)" +msgstr "Regras (html)" + +#: chat.php:331 +msgid "CSS Style" +msgstr "Estilo CSS" + +#: chat.php:332 +msgid "Chat disabled message (html)" +msgstr "Mensagem de chat desativado (html)" + +#: chat.php:335 +msgid "" +"Date " +"formating" +msgstr "" +"Formatação da data" + +#: chat.php:336 +msgid "Characters used in Captcha" +msgstr "Caracteres usados no Captcha" + +#: chat.php:337 +msgid "Custom redirection script" +msgstr "Personalizar script de redirecionamento" + +#: chat.php:338 +msgid "Chat name" +msgstr "Nome do chat" + +#: chat.php:339 +msgid "Send mail using this address" +msgstr "Envie o e-mail do endereço seguinte" + +#: chat.php:340 +msgid "Send mail to this address" +msgstr "Envie o e-mail ao endereço seguinte" + +#: chat.php:341 +msgid "Nickname regex" +msgstr "Expressão regular da nickname" + +#: chat.php:342 +msgid "Password regex" +msgstr "Expressão regular da senha" + +#: chat.php:343 +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 +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 +msgid "Prepend this text to system messages" +msgstr "Este texto precede mensagens do sistema" + +#: chat.php:348 chat.php:728 chat.php:1225 +msgid "Change Guestaccess" +msgstr "Mudar Acesso do convidados" + +#: chat.php:349 +msgid "Enable global Password" +msgstr "" + +#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433 +msgid "Global Password:" +msgstr "Senha global:" + +#: chat.php:351 chat.php:819 +msgid "Captcha" +msgstr "Captcha" + +#: chat.php:352 chat.php:775 chat.php:835 +msgid "Only for guests" +msgstr "Apenas para convidadosSimples" + +#: chat.php:353 chat.php:1220 +msgid "Topic" +msgstr "Assunto" + +#: chat.php:354 chat.php:781 +msgid "Let guests register themselves" +msgstr "Permitir que os convidados se registrem" + +#: chat.php:355 chat.php:862 +msgid "Default time zone" +msgstr "Fuso horário padrão" + +#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259 +msgid "Initial Setup" +msgstr "Configuração inicial" + +#: chat.php:588 +#, php-format +msgid "Redirecting to: %s" +msgstr "Redirecionando para: %s" + +#: chat.php:595 +#, php-format +msgid "" +"Dangerous non-http link requested, copy paste this link if you are really " +"sure: %s" +msgstr "" +"Hiperligação não http perigoso solicitado, copie e cole esta hiperligação se " +"você tiver certeza: %s" + +#: chat.php:597 +#, php-format +msgid "Non-http link requested: %s" +msgstr "Link não http solicitado: %s" + +#: chat.php:599 +#, php-format +msgid "If it's not working, try this one: %s" +msgstr "Se não estiver funcionando, tente este: %s" + +#: chat.php:609 +msgid "Access denied" +msgstr "Acesso negado" + +#: chat.php:609 +#, 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 +msgid "Logout" +msgstr "Terminar sessão" + +#: chat.php:636 +msgid "Copy:" +msgstr "Copiar:" + +#: chat.php:724 +msgid "Chat Setup" +msgstr "Configuração do Chat" + +#: chat.php:734 chat.php:1233 +msgid "Allow" +msgstr "Permitir" + +#: chat.php:739 chat.php:1238 +msgid "Allow with waitingroom" +msgstr "Permitir com sala de espera" + +#: chat.php:744 chat.php:1243 +msgid "Require moderator approval" +msgstr "Requer aprovação do moderador" + +#: chat.php:749 chat.php:1248 +msgid "Only members" +msgstr "Apenas membros" + +#: chat.php:754 chat.php:1251 +msgid "Disable chat" +msgstr "Desativar chat" + +#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229 +msgid "Disabled" +msgstr "Desativado" + +#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219 +msgid "Enabled" +msgstr "Ativado" + +#: chat.php:792 +msgid "As applicant" +msgstr "Como convidado" + +#: chat.php:797 +msgid "As member" +msgstr "Como membro" + +#: chat.php:800 +msgid "System messages" +msgstr "Mensagens do sistema" + +#: chat.php:822 chat.php:1053 +#, php-format +msgid "" +"The %s extension of PHP is required for this feature. Please install it " +"first." +msgstr "" +"La biblioteca de extensão %s da PHP é obrigada por usando esta feição. Por " +"favor instalar isso primeiramente." + +#: chat.php:847 +msgid "Simple" +msgstr "Simples" + +#: chat.php:852 +msgid "Moderate" +msgstr "Médio" + +#: chat.php:857 +msgid "Extreme" +msgstr "Extremo" + +#: chat.php:906 chat.php:1548 chat.php:1610 +msgid "Apply" +msgstr "Aplicar" + +#: chat.php:910 chat.php:1050 +msgid "Backup and restore" +msgstr "Backup e restauração" + +#: chat.php:912 +msgid "Destroy chat" +msgstr "Destruir chat" + +#: chat.php:1057 chat.php:1066 +msgid "Settings" +msgstr "Configurações" + +#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575 +#: chat.php:1622 +msgid "Filter" +msgstr "Filtro" + +#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538 +msgid "Members" +msgstr "Membros" + +#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322 +msgid "Notes" +msgstr "Notas" + +#: chat.php:1061 +msgid "Backup" +msgstr "Backup" + +#: chat.php:1070 +msgid "Restore" +msgstr "Restauração" + +#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260 +msgid "Go to the Setup-Page" +msgstr "Ir para a página de configuração" + +#: chat.php:1082 chat.php:1091 chat.php:1949 +msgid "Are you sure?" +msgstr "Você tem certeza?" + +#: chat.php:1083 chat.php:1092 chat.php:1956 +msgid "Yes" +msgstr "Sim" + +#: chat.php:1084 chat.php:1093 chat.php:1963 +msgid "No" +msgstr "Não" + +#: chat.php:1101 chat.php:4259 +msgid "Superadmin Login" +msgstr "Superadmin Login" + +#: chat.php:1102 +msgid "Superadmin Nickname:" +msgstr "Nickname do Superadmin:" + +#: chat.php:1103 +msgid "Superadmin Password:" +msgstr "Senha do Superadmin:" + +#: chat.php:1104 +msgid "Confirm Password:" +msgstr "Confirmar senha:" + +#: chat.php:1105 +msgid "Initialise Chat" +msgstr "Inicializar Chat" + +#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439 +msgid "Change language:" +msgstr "Mudar idioma:" + +#: chat.php:1117 +msgid "Database successfully updated!" +msgstr "Banco de dados atualizado com sucesso!" + +#: chat.php:1125 chat.php:1326 chat.php:2407 +msgid "Nickname:" +msgstr "Nickname:" + +#: chat.php:1126 chat.php:1327 chat.php:2408 +msgid "Password:" +msgstr "Senha:" + +#: chat.php:1128 +msgid "Login" +msgstr "Login" + +#: chat.php:1129 +msgid "Forgot login?" +msgstr "Esqueceu o login?" + +#: chat.php:1142 chat.php:1306 +msgid "Reset password" +msgstr "Redefinir senha" + +#: chat.php:1150 +#, php-format +msgid "" +"Successfully reset password for username %s. Please remove the password " +"reset define from the script again." +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 +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 "" +"Por favor modifique a script e escreva as seguintes no fim. Mudar a senha. " +"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 +msgid "(choose)" +msgstr "(escolher)" + +#: chat.php:1170 +msgid "All guests" +msgstr "Todos os convidados" + +#: chat.php:1182 +msgid "Administrative functions" +msgstr "Funções administrativas" + +#: chat.php:1188 +msgid "Clean messages" +msgstr "Limpar mensagens" + +#: chat.php:1191 +msgid "Whole room" +msgstr "Sala inteira" + +#: chat.php:1192 +msgid "Selection" +msgstr "Selecionar" + +#: chat.php:1193 +msgid "Following nickname:" +msgstr "Seguinte nickname:" + +#: chat.php:1200 +msgid "Clean" +msgstr "Limpar" + +#: chat.php:1202 +#, php-format +msgid "Kick Chatter (%d minutes)" +msgstr "Expulsar usuário (%d minutos)" + +#: chat.php:1204 +msgid "Kickmessage:" +msgstr "Mensagem da expulsão:" + +#: chat.php:1205 +msgid "Purge messages" +msgstr "Limpar mensagens" + +#: chat.php:1206 chat.php:1388 chat.php:1546 chat.php:1580 chat.php:1591 +#: chat.php:2042 +msgid "Kick" +msgstr "Expulsar" + +#: chat.php:1208 +msgid "Logout inactive Chatter" +msgstr "Terminar sessão da pessoa inativa" + +#: chat.php:1212 +msgid "View active sessions" +msgstr "Ver sessões ativas" + +#: chat.php:1212 chat.php:1603 +msgid "Linkfilter" +msgstr "Filtro das hiperligações" + +#: chat.php:1217 +msgid "View" +msgstr "Ver" + +#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582 +#: chat.php:1626 +msgid "Change" +msgstr "Alterar" + +#: chat.php:1256 +msgid "Register applicant" +msgstr "Registrar candidato" + +#: chat.php:1264 chat.php:1322 chat.php:1328 +msgid "Register" +msgstr "Registrar" + +#: chat.php:1294 +msgid "Delete from database" +msgstr "Excluir do banco de dados" + +#: chat.php:1294 +msgid "Deny access (!)" +msgstr "Negar acesso (!)" + +#: chat.php:1296 +msgid "Set to applicant (SG)" +msgstr "Definir como candidato (SG)" + +#: chat.php:1298 +msgid "Set to regular member" +msgstr "Definir como membro regular" + +#: chat.php:1299 +msgid "Set to moderator (M)" +msgstr "Definir como moderador (M)" + +#: chat.php:1300 +msgid "Set to supermod (SM)" +msgstr "Definir como supermod (SM)" + +#: chat.php:1302 +msgid "Set to admin (A)" +msgstr "Definir como administrador (A)" + +#: chat.php:1314 +msgid "Register Guest" +msgstr "Registrar convidado" + +#: chat.php:1324 +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 +msgid "Reload" +msgstr "Recarregar" + +#: chat.php:1345 +msgid "Active Sessions" +msgstr "Sessões ativas" + +#: chat.php:1346 chat.php:1873 +msgid "Nickname" +msgstr "Nickname" + +#: chat.php:1346 +msgid "Timeout in" +msgstr "Tempo restante" + +#: chat.php:1346 chat.php:1873 +msgid "User-Agent" +msgstr "User-Agent" + +#: chat.php:1350 +msgid "IP-Address" +msgstr "Endereço de IP" + +#: chat.php:1351 +msgid "Actions" +msgstr "Ações" + +#: chat.php:1393 +msgid "Unban" +msgstr "Permitir" + +#: chat.php:1416 +msgid "Incorrect regular expression!" +msgstr "Expressão regular incorreta!" + +#: chat.php:1416 chat.php:1424 +#, php-format +msgid "Your match was as follows: %s" +msgstr "O texto correspondente é o seguinte: %s" + +#: chat.php:1424 +msgid "" +"Your match was too long. You can use max. 255 characters. Try splitting it " +"up." +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 +msgid "Filter ID:" +msgstr "Número do filtro:" + +#: chat.php:1542 chat.php:1607 +msgid "Match" +msgstr "Match" + +#: chat.php:1543 chat.php:1608 +msgid "Replace" +msgstr "Substituir" + +#: chat.php:1544 chat.php:1578 chat.php:1589 +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 +msgid "Regex" +msgstr "Expressão regular" + +#: chat.php:1547 chat.php:1581 chat.php:1592 +msgid "Case sensitive" +msgstr "Sensível à caixa das letras" + +#: chat.php:1586 chat.php:1630 +msgid "New filter:" +msgstr "Novo filtro:" + +#: chat.php:1593 chat.php:1634 +msgid "Add" +msgstr "Adicionar" + +#: chat.php:1691 +msgid "" +"This chat uses frames. Please enable frames in your browser or use a " +"suitable one!" +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 +msgid "Back to the login page." +msgstr "Voltar para a página de login." + +#: chat.php:1709 +msgid "Bottom" +msgstr "Base" + +#: chat.php:1710 +msgid "Manual refresh required" +msgstr "Recarregar a página manualmente" + +#: chat.php:1726 +msgid "Top" +msgstr "Topo" + +#: chat.php:1734 chat.php:1940 chat.php:1942 +msgid "Delete selected messages" +msgstr "Excluir mensagens selecionadas" + +#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281 +msgid "Back to the chat." +msgstr "Voltar para o chat." + +#: chat.php:1774 chat.php:1791 +msgid "Admin notes" +msgstr "Notas dos administradores" + +#: chat.php:1777 chat.php:1788 +msgid "Staff notes" +msgstr "Notas do equipe" + +#: chat.php:1811 +msgid "Notes saved!" +msgstr "Notas salvadas!" + +#: chat.php:1835 chat.php:2122 +#, php-format +msgid "Last edited by %1$s at %2$s" +msgstr "Última edição por %1$s em %2$s" + +#: chat.php:1848 +msgid "Save notes" +msgstr "Salvar Notas" + +#: chat.php:1850 +msgid "Revisions:" +msgstr "Revisões:" + +#: chat.php:1853 +msgid "Older" +msgstr "Mais velho" + +#: chat.php:1857 +msgid "Newer" +msgstr "Mais recente" + +#: chat.php:1868 chat.php:1914 +msgid "Waiting room" +msgstr "Sala de espera" + +#: chat.php:1880 +msgid "Allow checked" +msgstr "Permitir selecionado" + +#: chat.php:1881 +msgid "Allow all" +msgstr "Permitir todos" + +#: chat.php:1882 +msgid "Deny checked" +msgstr "Negar selecionado" + +#: chat.php:1883 +msgid "Deny all" +msgstr "Negar todos" + +#: chat.php:1883 +msgid "Send message to denied:" +msgstr "Enviar mensagem para negado:" + +#: chat.php:1884 +msgid "Submit" +msgstr "Enviar" + +#: chat.php:1886 +msgid "No more entry requests to approve." +msgstr "Não há mais solicitações de entrada para aprovar." + +#: chat.php:1916 +#, php-format +msgid "" +"Welcome %1$s, your login has been delayed, you can access the chat in %2$d " +"seconds." +msgstr "" +"Bem-vindo %1$s, seu login foi atrasado, você pode acessar o chat em %2$d " +"segundos." + +#: chat.php:1918 +#, 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 "" +"Bem-vindo %1$s, seu login foi atrasado, você pode acessar o chat assim que " +"um moderador permitir que você entre." + +#: chat.php:1921 +#, php-format +msgid "" +"If this page doesn't refresh every %d seconds, use the button below to " +"reload it manually!" +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 +msgid "Exit Chat" +msgstr "Sair do chat" + +#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430 +msgid "Rules" +msgstr "Regras" + +#: chat.php:1985 +msgid "Send to" +msgstr "Enviar para" + +#: chat.php:1990 +msgid "All chatters" +msgstr "Todos" + +#: chat.php:1996 +msgid "Members only" +msgstr "Apenas membros" + +#: chat.php:2003 +msgid "Staff only" +msgstr "Apenas equipe" + +#: chat.php:2010 +msgid "Admin only" +msgstr "Apenas administradores" + +#: chat.php:2019 +msgid "(offline)" +msgstr "(offline)" + +#: chat.php:2043 +msgid "Also purge messages" +msgstr "Também limpar mensagens" + +#: chat.php:2050 +msgid "Delete last message" +msgstr "Apagar a última mensagem" + +#: chat.php:2055 +msgid "Delete all messages" +msgstr "Apagar todas as mensagens" + +#: chat.php:2057 +msgid "Switch to single-line" +msgstr "Mudar para linha única" + +#: chat.php:2059 +msgid "Switch to multi-line" +msgstr "Mudar para multilinhas" + +#: chat.php:2070 +#, php-format +msgid "Welcome %s!" +msgstr "Bem-vindo %s!" + +#: chat.php:2071 +#, 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 "" +"Se esse frame não é recarregada em %d segundos, você deve habilitar o " +"redirecionamento automático (meta refresh) no seu navegador. E veja se " +"filtro de Web, proxy ou plugin para o navegador não impede la recarga! Para " +"exemplos, isso pode ser \"Polipo\", \"NoScript\", e assim por diante." +"
Como solução alternativa (ou em caso dos erros de servidor ou proxy) " +"você pode usar os botoes na parte inferior da página para atualizar " +"manualmente." + +#: chat.php:2087 +msgid "Help" +msgstr "Ajuda" + +#: 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." +msgstr "" +"Todas as funções devem ser autoexplicativas, basta usar os botões. Em seu " +"perfil, você pode ajustar a taxa de atualização e a cor da fonte, além de " +"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 +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 "" +"Se você quiser incorporar uma imagem em sua postagem, basta colocar [img] na " +"frente do URL da imagem. Exemplo: [img]http://example.com/images/file.jpg " +"irá incorporar a imagem em sua postagem." + +#: 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 "" +"Membros: Vocês teram algumas opções a mais em seu perfil. Você pode ajustar " +"sua fonte, alterar sua senha a qualquer momento e, claro, você pode excluir " +"sua conta." + +#: 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 "" +"Moderadores: Observe o botão Admin na parte inferior. Isso abrirá uma página " +"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 +msgid "" +"Admins: You'll be furthermore able to register guests, edit members and " +"register new nicknames." +msgstr "" +"Admins: Além de tudo isso, você poderá registrar convidados, editar membros " +"e registrar novas nicknames." + +#: chat.php:2135 +msgid "Your Profile" +msgstr "Seu perfil" + +#: chat.php:2144 +msgid "Don't ignore anymore" +msgstr "Não ignorar mais" + +#: chat.php:2152 +msgid "Ignore" +msgstr "Ignorar" + +#: chat.php:2163 +#, 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 +msgid "View examples" +msgstr "Ver exemplos" + +#: chat.php:2174 +msgid "Fontface" +msgstr "Tipo de letra" + +#: chat.php:2175 +msgid "Room Default" +msgstr "Padrão" + +#: chat.php:2188 +msgid "Bold" +msgstr "Negrito" + +#: chat.php:2192 +msgid "Italic" +msgstr "Itálico" + +#: chat.php:2196 +msgid "Small" +msgstr "Pequeno" + +#: chat.php:2199 +msgid "Example for your chosen font" +msgstr "Exemplo para a fonte escolhida" + +#: chat.php:2203 +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 +msgid "For everyone" +msgstr "Para todos" + +#: chat.php:2239 +msgid "For members only" +msgstr "Apenas para membros" + +#: chat.php:2244 +msgid "For staff only" +msgstr "Apenas para equipe" + +#: chat.php:2248 +msgid "Time zone" +msgstr "Fuso horário" + +#: chat.php:2261 +msgid "Change Password" +msgstr "Mudar Senha" + +#: chat.php:2263 +msgid "Old password:" +msgstr "Senha Antiga:" + +#: chat.php:2264 +msgid "New password:" +msgstr "Nova senha:" + +#: chat.php:2265 +msgid "Confirm new password:" +msgstr "Confirmar nova senha:" + +#: chat.php:2268 +msgid "Change Nickname" +msgstr "Mudar nickname" + +#: chat.php:2269 +msgid "New nickname:" +msgstr "Nova nickname:" + +#: chat.php:2273 +msgid "Save changes" +msgstr "Salvar alterações" + +#: chat.php:2275 +msgid "Delete account" +msgstr "Deletar conta" + +#: chat.php:2301 +msgid "Reload Post Box" +msgstr "Recarregar caixa de postagem" + +#: chat.php:2304 +msgid "Reload Messages" +msgstr "Recarregar Mensagens" + +#: chat.php:2307 +msgid "Profile" +msgstr "Perfil" + +#: chat.php:2311 chat.php:2528 +msgid "Admin" +msgstr "Admin" + +#: chat.php:2318 +msgid "View public notes" +msgstr "Ler notas públicas" + +#: chat.php:2325 +msgid "Clone" +msgstr "Clonar" + +#: chat.php:2334 +msgid "Rearrange" +msgstr "Rearrumar" + +#: chat.php:2337 +msgid "Rules & Help" +msgstr "Regras & Ajuda" + +#: chat.php:2358 chat.php:2362 +msgid "File not found!" +msgstr "Arquivo não encontrado!" + +#: chat.php:2370 +#, php-format +msgid "Bye %s, visit again soon!" +msgstr "Tchau %s, te vejo em breve!" + +#: chat.php:2377 +msgid "Colourtable" +msgstr "" + +#: chat.php:2388 +msgid "Back to your Profile" +msgstr "Voltar para o seu Perfil" + +#: chat.php:2412 +msgid "Repeat password
to register" +msgstr "Repita a senha
para registrar" + +#: chat.php:2412 +msgid "(optional)" +msgstr "(opcional)" + +#: chat.php:2417 +msgid "Guests, choose a colour:" +msgstr "Convidados, escolham uma cor:" + +#: chat.php:2417 +msgid "Random Colour" +msgstr "Cor Aleatória" + +#: chat.php:2421 chat.php:2435 chat.php:2569 +msgid "Sorry, currently members only!" +msgstr "Desculpe, atualmente apenas membros!" + +#: chat.php:2423 chat.php:2437 +msgid "Enter Chat" +msgstr "Entrar no Chat" + +#: chat.php:2457 +#, php-format +msgid "Error: %s" +msgstr "Erro: %s" + +#: chat.php:2467 +msgid "Fatal error" +msgstr "Erro fatal" + +#: chat.php:2470 +#, php-format +msgid "Fatal error: %s" +msgstr "Erro fatal: %s" + +#: chat.php:2482 chat.php:2693 +msgid "Failed login attempt(s)" +msgstr "Tentativas de login falhada(s)" + +#: chat.php:2489 +#, php-format +msgid "Read %d messages in your inbox" +msgstr "Leia %d mensagens na sua caixa de entrada" + +#: chat.php:2498 +#, php-format +msgid "%d new guests to approve" +msgstr "%d novos convidados para aprovar" + +#: chat.php:2530 +msgid "Admin:" +msgstr "Admin:" + +#: chat.php:2533 +msgid "Staff" +msgstr "Equipe" + +#: chat.php:2535 +msgid "Staff:" +msgstr "Equipe:" + +#: chat.php:2540 +msgid "Members:" +msgstr "Membros:" + +#: chat.php:2542 +msgid "Guests" +msgstr "Convidados" + +#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092 +#, php-format +msgid "" +"Invalid nickname (%1$d characters maximum and has to match the regular " +"expression \"%2$s\")" +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 +#, php-format +msgid "" +"Invalid password (At least %1$d characters and has to match the regular " +"expression \"%2$s\")" +msgstr "" +"Senha inválida (Pelo menos %1$d caracteres e tem que corresponder à " +"expressão regular \"%2$s\")" + +#: chat.php:2574 chat.php:2739 +msgid "Wrong global Password!" +msgstr "Senha global incorreta!" + +#: chat.php:2591 chat.php:2612 +msgid "Wrong Captcha" +msgstr "Captcha Errado" + +#: chat.php:2596 chat.php:2604 +msgid "Captcha already used or timed out." +msgstr "Captcha já usado ou expirou." + +#: chat.php:2652 +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 +msgid "Wrong Password!" +msgstr "Senha incorreta!" + +#: chat.php:2696 +msgid "Dismiss" +msgstr "Reconhecido" + +#: chat.php:2747 chat.php:3171 chat.php:4096 +msgid "Password confirmation does not match!" +msgstr "A confirmação da senha não corresponde!" + +#: chat.php:2859 +msgid "Invalid/expired session" +msgstr "Sessão inválida/expirada" + +#: chat.php:2875 chat.php:3412 +msgid "You have been kicked!" +msgstr "Você foi expulso!" + +#: chat.php:2885 +#, php-format +msgid "Currently %d chatter(s) in room:" +msgstr "Atualmente %d usuário(s) na sala:" + +#: chat.php:2933 +msgid "This nickname is a registered member." +msgstr "Este nickname é de um membro registrado." + +#: chat.php:2960 chat.php:3001 +#, php-format +msgid "%s is already registered." +msgstr "%s já está registrado." + +#: chat.php:2969 chat.php:2990 +#, php-format +msgid "Can't register %s" +msgstr "Não é possível registrar %s" + +#: chat.php:2978 chat.php:3023 +#, php-format +msgid "%s successfully registered." +msgstr "%s registrado com sucesso." + +#: chat.php:3031 chat.php:3036 +#, php-format +msgid "Can't change status of %s" +msgstr "Não é possível alterar o status de %s" + +#: chat.php:3047 +#, php-format +msgid "%s successfully deleted from database." +msgstr "%s excluído com sucesso do banco de dados." + +#: chat.php:3056 +#, php-format +msgid "Status of %s successfully changed." +msgstr "Status de %s alterado com sucesso." + +#: chat.php:3073 +#, php-format +msgid "Successfully reset password for %s" +msgstr "" + +#: chat.php:3075 +#, php-format +msgid "Can't reset password for %s" +msgstr "" + +#: chat.php:3190 +msgid "Your profile has successfully been saved." +msgstr "Seu perfil foi salvo com sucesso." + +#: chat.php:3202 +msgid "Nickname is already taken" +msgstr "A nickname já foi escolhida" + +#: chat.php:3714 +msgid "system message" +msgstr "mensagem do sistema" + +#: chat.php:3921 +msgid "Beige" +msgstr "Bege" + +#: chat.php:3922 +msgid "Black" +msgstr "Preto" + +#: chat.php:3923 +msgid "Blue" +msgstr "Azul" + +#: chat.php:3924 +msgid "Blue violet" +msgstr "Violeta azul" + +#: chat.php:3925 +msgid "Brown" +msgstr "Marrom" + +#: chat.php:3926 +msgid "Cyan" +msgstr "Ciano" + +#: chat.php:3927 +msgid "Dark blue" +msgstr "Azul escuro" + +#: chat.php:3928 +msgid "Dark green" +msgstr "Verde escuro" + +#: chat.php:3929 +msgid "Dark red" +msgstr "Vermelho escuro" + +#: chat.php:3930 +msgid "Dark violet" +msgstr "Violeta escuro" + +#: chat.php:3931 +msgid "Sky blue" +msgstr "Azul-celeste" + +#: chat.php:3932 +msgid "Gold" +msgstr "Dourado" + +#: chat.php:3933 +msgid "Grey" +msgstr "Cinza" + +#: chat.php:3934 +msgid "Green" +msgstr "Verde" + +#: chat.php:3935 +msgid "Hot pink" +msgstr "Rosa quente" + +#: chat.php:3936 +msgid "Indigo" +msgstr "Índigo" + +#: chat.php:3937 +msgid "Light blue" +msgstr "Azul claro" + +#: chat.php:3938 +msgid "Light green" +msgstr "Verde claro" + +#: chat.php:3939 +msgid "Lime green" +msgstr "Verde limão" + +#: chat.php:3940 +msgid "Magenta" +msgstr "Magenta" + +#: chat.php:3941 +msgid "Olive" +msgstr "Oliva" + +#: chat.php:3942 +msgid "Orange" +msgstr "Laranja" + +#: chat.php:3943 +msgid "Orange red" +msgstr "Vermelho alaranjado" + +#: chat.php:3944 +msgid "Purple" +msgstr "Roxo" + +#: chat.php:3945 +msgid "Red" +msgstr "Vermelho" + +#: chat.php:3946 +msgid "Royal blue" +msgstr "Azul royal" + +#: chat.php:3947 +msgid "Sea green" +msgstr "Verde Mar" + +#: chat.php:3948 +msgid "Sienna" +msgstr "Sienna" + +#: chat.php:3949 +msgid "Silver" +msgstr "Prata" + +#: chat.php:3950 +msgid "Tan" +msgstr "Bronzeado" + +#: chat.php:3951 +msgid "Teal" +msgstr "Cerceta" + +#: chat.php:3952 +msgid "Violet" +msgstr "Violeta" + +#: chat.php:3953 +msgid "White" +msgstr "Branco" + +#: chat.php:3954 +msgid "Yellow" +msgstr "Amarelo" + +#: chat.php:3955 +msgid "Yellow green" +msgstr "Amarelo verde" + +#: chat.php:4077 +msgid "Successfully destroyed chat" +msgstr "Chat destruído com sucesso" + +#: chat.php:4086 +msgid "" +"Database tables already exist! To continue, you have to delete these tables " +"manually first." +msgstr "" +"As tabelas de banco de dados já existem! Para continuar, você deve primeiro " +"excluir essas tabelas manualmente." + +#: chat.php:4089 +msgid "A Superadmin already exists!" +msgstr "Já existe um Superadmin!" + +#: chat.php:4182 chat.php:4369 +#, php-format +msgid "%s - " +msgstr "%s - " + +#: chat.php:4183 chat.php:4369 +#, php-format +msgid "[M] %s - " +msgstr "[M] %s - " + +#: chat.php:4184 chat.php:4369 +#, php-format +msgid "[Staff] %s - " +msgstr "[Equipe] %s - " + +#: chat.php:4185 chat.php:4369 +#, php-format +msgid "[Admin] %s - " +msgstr "[Admin] %s - " + +#: chat.php:4186 chat.php:4369 +#, php-format +msgid "[%1$s to %2$s] - " +msgstr "[%1$s a %2$s] - " + +#: chat.php:4187 +#, php-format +msgid "%s entered the chat." +msgstr "%s entrou no chat." + +#: chat.php:4188 +#, php-format +msgid "%s left the chat." +msgstr "%s saiu do chat." + +#: chat.php:4189 +#, php-format +msgid "%s is now a registered member." +msgstr "%s agora é um membro registrado." + +#: chat.php:4190 +#, 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." +msgstr "%s foi kickado." + +#: chat.php:4192 +#, php-format +msgid "%s have been kicked." +msgstr "%s foram kickados." + +#: chat.php:4193 +msgid "All guests have been kicked." +msgstr "Todos os convidados foram expulsos." + +#: chat.php:4194 +#, php-format +msgid "%s has been cleaned." +msgstr "%s foi limpa." + +#: chat.php:4202 chat.php:4396 +msgid "Temporarily disabled" +msgstr "Temporariamente desativado" + +#: chat.php:4218 chat.php:4594 +msgid "A chat community" +msgstr "Uma comunidade de bate-papo" + +#: chat.php:4256 +msgid "Successfully registered!" +msgstr "Registrado com sucesso!" + +#: chat.php:4522 chat.php:4721 chat.php:4728 +msgid "No connection to database!" +msgstr "Sem conexão com o banco de dados!" + +#: chat.php:4531 +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 +#, 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 "" +"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 +#, php-format +msgid "" +"The %s extension of PHP is required for the selected database driver. Please " +"install it first." +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 +msgid "" +"No connection to database, please create a database and edit the script to " +"use the correct database with given username and password!" +msgstr "" +"Sem conexão com o banco de dados, crie um banco de dados e edite o script " +"para usar o banco de dados correto com o nome de usuário e a senha " +"fornecidos!" + +#: 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 "" +"La biblioteca de extensão memcached da PHP é obrigada por usando os caching. " +"Por favor instalar isso primeiramente ou altere a opção MEMCACHED para false." diff --git a/locale/ru_RU/LC_MESSAGES/le-chat-php.mo b/locale/ru_RU/LC_MESSAGES/le-chat-php.mo new file mode 100644 index 0000000..890de2c Binary files /dev/null and b/locale/ru_RU/LC_MESSAGES/le-chat-php.mo differ diff --git a/locale/ru_RU/LC_MESSAGES/le-chat-php.po b/locale/ru_RU/LC_MESSAGES/le-chat-php.po new file mode 100644 index 0000000..578e65d --- /dev/null +++ b/locale/ru_RU/LC_MESSAGES/le-chat-php.po @@ -0,0 +1,1641 @@ +# 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: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-01-18 21:32+0100\n" +"PO-Revision-Date: 2023-01-18 21:39+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: ru_RU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n" +"X-Generator: Poedit 3.1.1\n" + +#: chat.php:261 +msgid "Enable applicants" +msgstr "Разрешить гостей" + +#: chat.php:262 +msgid "Embed images" +msgstr "Вставить изображения" + +#: chat.php:263 chat.php:2202 +msgid "Show Timestamps" +msgstr "Показать отметки времени" + +#: chat.php:264 +msgid "Show session-IP" +msgstr "Показать IP-сессию" + +#: chat.php:265 +msgid "Members can kick, if no moderator is present" +msgstr "Пользователи могут исключать, если не присутствует модератор" + +#: chat.php:266 +msgid "Members can always kick" +msgstr "Пользователи могут всегда́ исключать" + +#: chat.php:267 +msgid "Force redirection" +msgstr "Принудительное перенаправление" + +#: chat.php:268 +msgid "Incognito mode" +msgstr "Режим инкогнито" + +#: chat.php:269 +msgid "Send mail on new public message" +msgstr "Отправить сообщение как новое публичное" + +#: chat.php:270 +msgid "Fallback to waiting room, if no moderator is present to approve guests" +msgstr "" +"Вернуться в комнату ожидания, если отстутсвует модератор для подтверждения " +"гостей" + +#: chat.php:271 +msgid "Disable private messages" +msgstr "Отключить личные сообщения" + +#: chat.php:272 chat.php:2223 +msgid "Enable offline inbox" +msgstr "Включить оффлайн-почту" + +#: chat.php:273 +msgid "Show a greeting message before showing the messages" +msgstr "Показывать приветственное сообщение перед остальными сообщениями" + +#: chat.php:274 chat.php:2204 +msgid "Sort messages from top to bottom" +msgstr "Сортировать сообщения сверху вниз" + +#: chat.php:275 chat.php:2205 +msgid "Hide list of chatters" +msgstr "Спрятать список людей в чате" + +#: chat.php:276 chat.php:1780 chat.php:1794 +msgid "Personal notes" +msgstr "Личные заметки" + +#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110 +msgid "Public notes" +msgstr "Профиля пользователяь" + +#: chat.php:278 +msgid "Apply kick filter on moderators" +msgstr "Применить фильтр исключения для модераторов" + +#: chat.php:279 +msgid "Show who kicks people or purges all messages." +msgstr "Покажите, кто изгоняет людей или очищает все сообщения." + +#: chat.php:280 +msgid "Hide reload post box button" +msgstr "" + +#: chat.php:281 +msgid "Hide reload messages button" +msgstr "" + +#: chat.php:282 +msgid "Hide profile button" +msgstr "" + +#: chat.php:283 +msgid "Hide admin button" +msgstr "" + +#: chat.php:284 +msgid "Hide notes button" +msgstr "" + +#: chat.php:285 +msgid "Hide clone button" +msgstr "" + +#: chat.php:286 +msgid "Hide rearrange button" +msgstr "" + +#: chat.php:287 +msgid "Hide help button" +msgstr "" + +#: chat.php:288 +msgid "Apply postbox delete button globally" +msgstr "" + +#: chat.php:289 +msgid "Allow enhancing functionality with JavaScript" +msgstr "" + +#: chat.php:292 chat.php:2170 +msgid "Background colour" +msgstr "Фоновый цвет" + +#: chat.php:293 chat.php:2167 +msgid "Font colour" +msgstr "Цвет шрифта" + +#: chat.php:296 +msgid "Entrance" +msgstr "Вход" + +#: chat.php:297 +msgid "Leaving" +msgstr "Выход" + +#: chat.php:298 +msgid "Member registered" +msgstr "Зарегистрированные" + +#: chat.php:299 +msgid "Applicant registered" +msgstr "Заявитель зарегистрирован" + +#: chat.php:300 +msgid "Kicked" +msgstr "Забаненые" + +#: chat.php:301 +msgid "Multiple kicked" +msgstr "Многократно забаненые" + +#: chat.php:302 +msgid "All kicked" +msgstr "Все забаненые" + +#: chat.php:303 +msgid "Room cleaned" +msgstr "Очистка чата" + +#: chat.php:304 +msgid "Message to all" +msgstr "Сообщение всем" + +#: chat.php:305 +msgid "Message to members only" +msgstr "Сообщение только членам" + +#: chat.php:306 +msgid "Message to staff only" +msgstr "Сообщение только модераторам" + +#: chat.php:307 +msgid "Message to admins only" +msgstr "Сообщение только администраторам" + +#: chat.php:308 +msgid "Private message" +msgstr "Личное сообщение" + +#: chat.php:309 +msgid "Attachement" +msgstr "Прикрепление" + +#: chat.php:312 +msgid "Member timeout (minutes)" +msgstr "Тайм-аут пользователей (минут)" + +#: chat.php:313 +msgid "Guest timeout (minutes)" +msgstr "Тайм-аут гостей (минут)" + +#: chat.php:314 +msgid "Kick penalty (minutes)" +msgstr "Бан (минут)" + +#: chat.php:315 +msgid "Waiting room time (seconds)" +msgstr "Время ожидания в гостевой (секунд)" + +#: chat.php:316 +msgid "Captcha timeout (seconds)" +msgstr "Тайм-аут Captcha (секунд)" + +#: chat.php:317 +msgid "Message timeout (minutes)" +msgstr "Тайм-аут сообщения (минут)" + +#: chat.php:318 +msgid "Message limit (public)" +msgstr "Лимит сообщений (общих)" + +#: chat.php:319 +msgid "Maximal message length" +msgstr "Максимальная длина сообщения" + +#: chat.php:320 +msgid "Maximal nickname length" +msgstr "Максимальная длина имени" + +#: chat.php:321 +msgid "Minimal password length" +msgstr "Минимальная длина пароля" + +#: chat.php:322 +msgid "Default message reload time (seconds)" +msgstr "По умолчанию время перезагрузки сообщения (секунды)" + +#: chat.php:323 +msgid "Number of notes revisions to keep" +msgstr "Число исправлений для сохранения" + +#: chat.php:324 +msgid "Maximum upload size in KB" +msgstr "Максимальный размер файла в КБ" + +#: chat.php:325 +msgid "Enable file uploads" +msgstr "Разрешить файловые загрузки" + +#: chat.php:326 +msgid "Lowest refresh rate" +msgstr "" + +#: chat.php:327 +msgid "Highest refresh rate" +msgstr "" + +#: chat.php:330 +msgid "Rules (html)" +msgstr "Правила (html)" + +#: chat.php:331 +msgid "CSS Style" +msgstr "CSS стили" + +#: chat.php:332 +msgid "Chat disabled message (html)" +msgstr "Чат отключил сообщение (html)" + +#: chat.php:335 +msgid "" +"Date " +"formating" +msgstr "" +"Формат " +"даты" + +#: chat.php:336 +msgid "Characters used in Captcha" +msgstr "Символы, используемые в Captcha" + +#: chat.php:337 +msgid "Custom redirection script" +msgstr "Пользовательский скрипт перенаправления" + +#: chat.php:338 +msgid "Chat name" +msgstr "Название чата" + +#: chat.php:339 +msgid "Send mail using this address" +msgstr "Отправить сообщение на этот адрес" + +#: chat.php:340 +msgid "Send mail to this address" +msgstr "Отправить сообщение по этому адресу" + +#: chat.php:341 +msgid "Nickname regex" +msgstr "Ник regex" + +#: chat.php:342 +msgid "Password regex" +msgstr "Пароль regex" + +#: chat.php:343 +msgid "Link to external CSS file (on your own server)" +msgstr "Ссылка на внешний CSS файл" + +#: chat.php:344 +msgid "Meta description (best 50 - 160 characters for SEO)" +msgstr "" + +#: chat.php:345 +msgid "Prepend this text to system messages" +msgstr "Этот текст предшествует сообщениям из системы" + +#: chat.php:348 chat.php:728 chat.php:1225 +msgid "Change Guestaccess" +msgstr "Изменить гостевой доступ" + +#: chat.php:349 +msgid "Enable global Password" +msgstr "" + +#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433 +msgid "Global Password:" +msgstr "Глобальный пароль:" + +#: chat.php:351 chat.php:819 +msgid "Captcha" +msgstr "Captcha" + +#: chat.php:352 chat.php:775 chat.php:835 +msgid "Only for guests" +msgstr "Только для гостей" + +#: chat.php:353 chat.php:1220 +msgid "Topic" +msgstr "Тема" + +#: chat.php:354 chat.php:781 +msgid "Let guests register themselves" +msgstr "Разрешить гостям регистрироваться самостоятельно" + +#: chat.php:355 chat.php:862 +msgid "Default time zone" +msgstr "Часовой пояс по умолчанию" + +#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259 +msgid "Initial Setup" +msgstr "Начальная установка" + +#: chat.php:588 +#, php-format +msgid "Redirecting to: %s" +msgstr "Перенаправление на: %s" + +#: chat.php:595 +#, php-format +msgid "" +"Dangerous non-http link requested, copy paste this link if you are really " +"sure: %s" +msgstr "" + +#: chat.php:597 +#, php-format +msgid "Non-http link requested: %s" +msgstr "Запрошенная ссылка не http: %s" + +#: chat.php:599 +#, php-format +msgid "If it's not working, try this one: %s" +msgstr "Если это не работает, попробуйте это: %s" + +#: chat.php:609 +msgid "Access denied" +msgstr "В доступе отказано" + +#: chat.php:609 +#, 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 +msgid "Logout" +msgstr "Выйти" + +#: chat.php:636 +msgid "Copy:" +msgstr "Копия:" + +#: chat.php:724 +msgid "Chat Setup" +msgstr "Установка чата" + +#: chat.php:734 chat.php:1233 +msgid "Allow" +msgstr "Позволить" + +#: chat.php:739 chat.php:1238 +msgid "Allow with waitingroom" +msgstr "Разрешить с гостевой" + +#: chat.php:744 chat.php:1243 +msgid "Require moderator approval" +msgstr "Требовать одобрения модератора" + +#: chat.php:749 chat.php:1248 +msgid "Only members" +msgstr "Только участники" + +#: chat.php:754 chat.php:1251 +msgid "Disable chat" +msgstr "Отключить чат" + +#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229 +msgid "Disabled" +msgstr "Выключен" + +#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219 +msgid "Enabled" +msgstr "Включен" + +#: chat.php:792 +msgid "As applicant" +msgstr "Как заявитель" + +#: chat.php:797 +msgid "As member" +msgstr "Как член" + +#: chat.php:800 +msgid "System messages" +msgstr "Системные сообщения" + +#: chat.php:822 chat.php:1053 +#, php-format +msgid "" +"The %s extension of PHP is required for this feature. Please install it " +"first." +msgstr "" +"%s расширение для PHP требуетса для етой функции. Пожалуйста установите его " +"сначала." + +#: chat.php:847 +msgid "Simple" +msgstr "Простая" + +#: chat.php:852 +msgid "Moderate" +msgstr "Умеренная" + +#: chat.php:857 +msgid "Extreme" +msgstr "Сильная" + +#: chat.php:906 chat.php:1548 chat.php:1610 +msgid "Apply" +msgstr "Применить" + +#: chat.php:910 chat.php:1050 +msgid "Backup and restore" +msgstr "Бэкап и восстановление" + +#: chat.php:912 +msgid "Destroy chat" +msgstr "Уничтожить чат" + +#: chat.php:1057 chat.php:1066 +msgid "Settings" +msgstr "Настройки" + +#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575 +#: chat.php:1622 +msgid "Filter" +msgstr "Фильтр" + +#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538 +msgid "Members" +msgstr "Участники" + +#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322 +msgid "Notes" +msgstr "Примечания" + +#: chat.php:1061 +msgid "Backup" +msgstr "Бэкап" + +#: chat.php:1070 +msgid "Restore" +msgstr "Восстановление" + +#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260 +msgid "Go to the Setup-Page" +msgstr "Перейти к странице установки" + +#: chat.php:1082 chat.php:1091 chat.php:1949 +msgid "Are you sure?" +msgstr "Вы уверены?" + +#: chat.php:1083 chat.php:1092 chat.php:1956 +msgid "Yes" +msgstr "Да" + +#: chat.php:1084 chat.php:1093 chat.php:1963 +msgid "No" +msgstr "Нет" + +#: chat.php:1101 chat.php:4259 +msgid "Superadmin Login" +msgstr "Вход для суперадминистратора" + +#: chat.php:1102 +msgid "Superadmin Nickname:" +msgstr "Пароль суперадминистратора:" + +#: chat.php:1103 +msgid "Superadmin Password:" +msgstr "Подтверждение пароля:" + +#: chat.php:1104 +msgid "Confirm Password:" +msgstr "Успешно зарегистрирован:" + +#: chat.php:1105 +msgid "Initialise Chat" +msgstr "Инициализация чата" + +#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439 +msgid "Change language:" +msgstr "Изменить язык:" + +#: chat.php:1117 +msgid "Database successfully updated!" +msgstr "База данных успешно обновлена!" + +#: chat.php:1125 chat.php:1326 chat.php:2407 +msgid "Nickname:" +msgstr "Ник:" + +#: chat.php:1126 chat.php:1327 chat.php:2408 +msgid "Password:" +msgstr "Пароль:" + +#: chat.php:1128 +msgid "Login" +msgstr "Войти" + +#: chat.php:1129 +msgid "Forgot login?" +msgstr "" + +#: chat.php:1142 chat.php:1306 +msgid "Reset password" +msgstr "Сброс пароля" + +#: chat.php:1150 +#, php-format +msgid "" +"Successfully reset password for username %s. Please remove the password " +"reset define from the script again." +msgstr "" + +#: 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 "" + +#: 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 +msgid "(choose)" +msgstr "(выбрать)" + +#: chat.php:1170 +msgid "All guests" +msgstr "Все гости" + +#: chat.php:1182 +msgid "Administrative functions" +msgstr "Административные функции" + +#: chat.php:1188 +msgid "Clean messages" +msgstr "Очистка сообщений" + +#: chat.php:1191 +msgid "Whole room" +msgstr "Общая комната" + +#: chat.php:1192 +msgid "Selection" +msgstr "Выбор" + +#: chat.php:1193 +msgid "Following nickname:" +msgstr "По нику:" + +#: chat.php:1200 +msgid "Clean" +msgstr "Очистить" + +#: chat.php:1202 +#, php-format +msgid "Kick Chatter (%d minutes)" +msgstr "Бан (%d минут)" + +#: chat.php:1204 +msgid "Kickmessage:" +msgstr "Сообщение забаненому:" + +#: chat.php:1205 +msgid "Purge messages" +msgstr "Очистка сообщений" + +#: chat.php:1206 chat.php:1388 chat.php:1546 chat.php:1580 chat.php:1591 +#: chat.php:2042 +msgid "Kick" +msgstr "Бан" + +#: chat.php:1208 +msgid "Logout inactive Chatter" +msgstr "Выход неактивного чата" + +#: chat.php:1212 +msgid "View active sessions" +msgstr "Активные сеансы" + +#: chat.php:1212 chat.php:1603 +msgid "Linkfilter" +msgstr "Фильтрация ссылок" + +#: chat.php:1217 +msgid "View" +msgstr "Просмотр" + +#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582 +#: chat.php:1626 +msgid "Change" +msgstr "Изменить" + +#: chat.php:1256 +msgid "Register applicant" +msgstr "Добавить заявителя" + +#: chat.php:1264 chat.php:1322 chat.php:1328 +msgid "Register" +msgstr "Зарегистрировать" + +#: chat.php:1294 +msgid "Delete from database" +msgstr "Удалить из базы данных" + +#: chat.php:1294 +msgid "Deny access (!)" +msgstr "Запретить доступ (!)" + +#: chat.php:1296 +msgid "Set to applicant (SG)" +msgstr "Набор к претенденту (SG)" + +#: chat.php:1298 +msgid "Set to regular member" +msgstr "Установить участника" + +#: chat.php:1299 +msgid "Set to moderator (M)" +msgstr "Набор модератора (M)" + +#: chat.php:1300 +msgid "Set to supermod (SM)" +msgstr "Набор супермодератора (SM)" + +#: chat.php:1302 +msgid "Set to admin (A)" +msgstr "Набор администратора (A)" + +#: chat.php:1314 +msgid "Register Guest" +msgstr "Регистрация гостей" + +#: chat.php:1324 +msgid "Register new Member" +msgstr "Регистрация новых участников" + +#: chat.php:1332 chat.php:1408 chat.php:1595 chat.php:1636 chat.php:1710 +#: chat.php:1924 +msgid "Reload" +msgstr "Перезагрузить" + +#: chat.php:1345 +msgid "Active Sessions" +msgstr "Активные сессии" + +#: chat.php:1346 chat.php:1873 +msgid "Nickname" +msgstr "Ник" + +#: chat.php:1346 +msgid "Timeout in" +msgstr "Время ожидания в" + +#: chat.php:1346 chat.php:1873 +msgid "User-Agent" +msgstr "User-Agent" + +#: chat.php:1350 +msgid "IP-Address" +msgstr "IP-адрес" + +#: chat.php:1351 +msgid "Actions" +msgstr "Действия" + +#: chat.php:1393 +msgid "Unban" +msgstr "Разблокировать" + +#: chat.php:1416 +msgid "Incorrect regular expression!" +msgstr "Неправильное регулярное выражение!" + +#: chat.php:1416 chat.php:1424 +#, 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." +msgstr "" +"Текст в поле слишком длинний. Можно использовать максимум 255 символов, " +"попробуйте разбить поле на части." + +#: chat.php:1541 chat.php:1606 +msgid "Filter ID:" +msgstr "Фильтр ID:" + +#: chat.php:1542 chat.php:1607 +msgid "Match" +msgstr "Совпадение" + +#: chat.php:1543 chat.php:1608 +msgid "Replace" +msgstr "Заменять" + +#: chat.php:1544 chat.php:1578 chat.php:1589 +msgid "Allow in PM" +msgstr "Разрешить в личку" + +#: chat.php:1545 chat.php:1579 chat.php:1590 chat.php:1609 chat.php:1625 +#: chat.php:1633 +msgid "Regex" +msgstr "Регулярное выражение" + +#: chat.php:1547 chat.php:1581 chat.php:1592 +msgid "Case sensitive" +msgstr "Регистр-чувствительный" + +#: chat.php:1586 chat.php:1630 +msgid "New filter:" +msgstr "Новый фильтр:" + +#: chat.php:1593 chat.php:1634 +msgid "Add" +msgstr "Добавить" + +#: chat.php:1691 +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 +msgid "Back to the login page." +msgstr "Вернуться на страницу входа." + +#: chat.php:1709 +msgid "Bottom" +msgstr "Вниз" + +#: chat.php:1710 +msgid "Manual refresh required" +msgstr "Требуется обновить страницу вручную" + +#: chat.php:1726 +msgid "Top" +msgstr "" + +#: chat.php:1734 chat.php:1940 chat.php:1942 +msgid "Delete selected messages" +msgstr "Удалить выбранные сообщения" + +#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281 +msgid "Back to the chat." +msgstr "Вернуться в чат." + +#: chat.php:1774 chat.php:1791 +msgid "Admin notes" +msgstr "Примечания администратора" + +#: chat.php:1777 chat.php:1788 +msgid "Staff notes" +msgstr "Служебные заметки" + +#: chat.php:1811 +msgid "Notes saved!" +msgstr "Заметки сохранены!" + +#: chat.php:1835 chat.php:2122 +#, php-format +msgid "Last edited by %1$s at %2$s" +msgstr "Последний раз редактировал %1$s %2$s" + +#: chat.php:1848 +msgid "Save notes" +msgstr "Сохранить заметки" + +#: chat.php:1850 +msgid "Revisions:" +msgstr "Исправления:" + +#: chat.php:1853 +msgid "Older" +msgstr "Старые" + +#: chat.php:1857 +msgid "Newer" +msgstr "Новые" + +#: chat.php:1868 chat.php:1914 +msgid "Waiting room" +msgstr "Гостевая" + +#: chat.php:1880 +msgid "Allow checked" +msgstr "Разрешить проверку" + +#: chat.php:1881 +msgid "Allow all" +msgstr "Разрешить всем" + +#: chat.php:1882 +msgid "Deny checked" +msgstr "Запретить проверку" + +#: chat.php:1883 +msgid "Deny all" +msgstr "Запретить всем" + +#: chat.php:1883 +msgid "Send message to denied:" +msgstr "Отправить сообщение с отказом:" + +#: chat.php:1884 +msgid "Submit" +msgstr "Отправить" + +#: chat.php:1886 +msgid "No more entry requests to approve." +msgstr "Больше запросов для одобрения нет." + +#: chat.php:1916 +#, 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 +#, 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 +#, 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 +msgid "Exit Chat" +msgstr "Выход" + +#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430 +msgid "Rules" +msgstr "Правила" + +#: chat.php:1985 +msgid "Send to" +msgstr "Отправить" + +#: chat.php:1990 +msgid "All chatters" +msgstr "Все в чате" + +#: chat.php:1996 +msgid "Members only" +msgstr "Участники" + +#: chat.php:2003 +msgid "Staff only" +msgstr "Служебные" + +#: chat.php:2010 +msgid "Admin only" +msgstr "Администратор" + +#: chat.php:2019 +msgid "(offline)" +msgstr "(оффлайн)" + +#: chat.php:2043 +msgid "Also purge messages" +msgstr "Также очистить сообщения" + +#: chat.php:2050 +msgid "Delete last message" +msgstr "Удалить последнее сообщение" + +#: chat.php:2055 +msgid "Delete all messages" +msgstr "Удалить все сообщения" + +#: chat.php:2057 +msgid "Switch to single-line" +msgstr "Включить однострочный режим" + +#: chat.php:2059 +msgid "Switch to multi-line" +msgstr "Включить многострочный режим" + +#: chat.php:2070 +#, php-format +msgid "Welcome %s!" +msgstr "Добро пожаловать %s!" + +#: chat.php:2071 +#, 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 секунд, Вам нужно включить " +"автоматическое обновление (meta refresh) в вашем браузере. Также убедитесь в " +"отстутствии веб-фильтра, проверьте настройки прокси, либо плагины браузера " +"на блокировку автоматического обновления! Примеры плагинов: \"Polipo\", " +"\"NoScript\", и т.д.
Тем не менее, (в случае ошибок перезагрузки страниц " +"из-за сервера/прокси) вы всегда можете использовать кнопки внизу страницы " +"для ручного обновления страницыы." + +#: chat.php:2087 +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." +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 "" +"Если вы хотите встроить изображение в свой пост, прикрепите [img] перед " +"вашим URL-изображением. Пример: [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 "" +"Участники: У вас есть несколько вариантов настроек в вашем профиле. Можно " +"настроить шрифт и изменить свой пароль в любое время." + +#: 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 "" +"Модераторы: Обратите внимание кнопку администратора внизу. Это перенесет вас " +"на страницу, где вы можете очистить комнату, забанить, просмотреть все " +"активные сеансы и отключить гостевой доступ полностью, если необходимо." + +#: chat.php:2097 +msgid "" +"Admins: You'll be furthermore able to register guests, edit members and " +"register new nicknames." +msgstr "" +"Администраторы: Вы способны регистрировать гостей и новые ники без их " +"присутствия в комнате а также редактировать пользователей." + +#: chat.php:2135 +msgid "Your Profile" +msgstr "Ваш профиль" + +#: chat.php:2144 +msgid "Don't ignore anymore" +msgstr "Больше не игнорировать" + +#: chat.php:2152 +msgid "Ignore" +msgstr "Игнорировать" + +#: chat.php:2163 +#, php-format +msgid "Refresh rate (%1$d-%2$d seconds)" +msgstr "Частота обновления (%1$d-%2$d секунд)" + +#: chat.php:2167 chat.php:2170 +msgid "View examples" +msgstr "Посмотреть примеры" + +#: chat.php:2174 +msgid "Fontface" +msgstr "Шрифт" + +#: chat.php:2175 +msgid "Room Default" +msgstr "По умолчанию" + +#: chat.php:2188 +msgid "Bold" +msgstr "Жирный" + +#: chat.php:2192 +msgid "Italic" +msgstr "Курсив" + +#: chat.php:2196 +msgid "Small" +msgstr "Маленький" + +#: chat.php:2199 +msgid "Example for your chosen font" +msgstr "Пример выбранного вами шрифта" + +#: chat.php:2203 +msgid "Autoscroll (for old browsers or top-to-bottom sort)." +msgstr "Автозагрузка (для старых браузеров, для сортрировки сверху-вниз)." + +#: chat.php:2234 +msgid "For everyone" +msgstr "Для всех" + +#: chat.php:2239 +msgid "For members only" +msgstr "Только для членов" + +#: chat.php:2244 +msgid "For staff only" +msgstr "Только для модераторов" + +#: chat.php:2248 +msgid "Time zone" +msgstr "Часовой пояс" + +#: chat.php:2261 +msgid "Change Password" +msgstr "Изменить пароль" + +#: chat.php:2263 +msgid "Old password:" +msgstr "Старый пароль:" + +#: chat.php:2264 +msgid "New password:" +msgstr "Новый пароль:" + +#: chat.php:2265 +msgid "Confirm new password:" +msgstr "Подтверждение:" + +#: chat.php:2268 +msgid "Change Nickname" +msgstr "Изменить имя" + +#: chat.php:2269 +msgid "New nickname:" +msgstr "Новое имя:" + +#: chat.php:2273 +msgid "Save changes" +msgstr "Сохранить изменения" + +#: chat.php:2275 +msgid "Delete account" +msgstr "Удалить аккаунт" + +#: chat.php:2301 +msgid "Reload Post Box" +msgstr "Перезагрузить почтовый ящик" + +#: chat.php:2304 +msgid "Reload Messages" +msgstr "Обновить" + +#: chat.php:2307 +msgid "Profile" +msgstr "Профиль" + +#: chat.php:2311 chat.php:2528 +msgid "Admin" +msgstr "Администратор" + +#: chat.php:2318 +msgid "View public notes" +msgstr "Читать профили пользователей" + +#: chat.php:2325 +msgid "Clone" +msgstr "Клонировать" + +#: chat.php:2334 +msgid "Rearrange" +msgstr "Перестроить" + +#: chat.php:2337 +msgid "Rules & Help" +msgstr "Правила и помощь" + +#: chat.php:2358 chat.php:2362 +msgid "File not found!" +msgstr "Файл не обнаружен!" + +#: chat.php:2370 +#, php-format +msgid "Bye %s, visit again soon!" +msgstr "Пока %s, заходите снова!" + +#: chat.php:2377 +msgid "Colourtable" +msgstr "Примеры цветов" + +#: chat.php:2388 +msgid "Back to your Profile" +msgstr "Вернуться к вашему профилю" + +#: chat.php:2412 +msgid "Repeat password
to register" +msgstr "Повторите пароль
Зарегистрироваться" + +#: chat.php:2412 +msgid "(optional)" +msgstr "(опционально)" + +#: chat.php:2417 +msgid "Guests, choose a colour:" +msgstr "Выберите ваш цвет:" + +#: chat.php:2417 +msgid "Random Colour" +msgstr "Случайный цвет" + +#: chat.php:2421 chat.php:2435 chat.php:2569 +msgid "Sorry, currently members only!" +msgstr "Извините, входят только зарегистрированные!" + +#: chat.php:2423 chat.php:2437 +msgid "Enter Chat" +msgstr "Войти в чат" + +#: chat.php:2457 +#, php-format +msgid "Error: %s" +msgstr "Ошибка: %s" + +#: chat.php:2467 +msgid "Fatal error" +msgstr "Фатальная ошибка" + +#: chat.php:2470 +#, php-format +msgid "Fatal error: %s" +msgstr "Фатальная ошибка: %s" + +#: chat.php:2482 chat.php:2693 +msgid "Failed login attempt(s)" +msgstr "Неудачная попытка входа (ы)" + +#: chat.php:2489 +#, php-format +msgid "Read %d messages in your inbox" +msgstr "Прочитайте %d входящих сообщений" + +#: chat.php:2498 +#, php-format +msgid "%d new guests to approve" +msgstr "%d новые гости для одобрения" + +#: chat.php:2530 +msgid "Admin:" +msgstr "Администратор:" + +#: chat.php:2533 +msgid "Staff" +msgstr "Служебные" + +#: chat.php:2535 +msgid "Staff:" +msgstr "Служебные:" + +#: chat.php:2540 +msgid "Members:" +msgstr "Участники:" + +#: chat.php:2542 +msgid "Guests" +msgstr "Гости" + +#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092 +#, 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 +#, 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 +msgid "Wrong global Password!" +msgstr "Неправильный глобальный пароль!" + +#: chat.php:2591 chat.php:2612 +msgid "Wrong Captcha" +msgstr "Неверная капча" + +#: chat.php:2596 chat.php:2604 +msgid "Captcha already used or timed out." +msgstr "Защитный код уже используется или время истекло." + +#: chat.php:2652 +msgid "A user with this nickname is already logged in." +msgstr "Пользователь с текущим именем уже в сети." + +#: chat.php:2652 chat.php:2933 chat.php:3176 +msgid "Wrong Password!" +msgstr "Неправильный пароль!" + +#: chat.php:2696 +msgid "Dismiss" +msgstr "Признал" + +#: chat.php:2747 chat.php:3171 chat.php:4096 +msgid "Password confirmation does not match!" +msgstr "Введенные пароли не совпадают!" + +#: chat.php:2859 +msgid "Invalid/expired session" +msgstr "Недействительная/с истекшим сроком сессия" + +#: chat.php:2875 chat.php:3412 +msgid "You have been kicked!" +msgstr "Забанен!" + +#: chat.php:2885 +#, php-format +msgid "Currently %d chatter(s) in room:" +msgstr "Сейчас %d разговор (ов) в комнате:" + +#: chat.php:2933 +msgid "This nickname is a registered member." +msgstr "Это имя принадлежит зарегистрированному пользователю." + +#: chat.php:2960 chat.php:3001 +#, php-format +msgid "%s is already registered." +msgstr "%s уже зарегистрирован." + +#: chat.php:2969 chat.php:2990 +#, php-format +msgid "Can't register %s" +msgstr "Вы не можете зарегистрироваться %s" + +#: chat.php:2978 chat.php:3023 +#, php-format +msgid "%s successfully registered." +msgstr "%s успешно зарегистрирован." + +#: chat.php:3031 chat.php:3036 +#, php-format +msgid "Can't change status of %s" +msgstr "Невозможно изменить статус %s" + +#: chat.php:3047 +#, php-format +msgid "%s successfully deleted from database." +msgstr "%s успешно удален из базы данных." + +#: chat.php:3056 +#, php-format +msgid "Status of %s successfully changed." +msgstr "Статус %s успешно изменен." + +#: chat.php:3073 +#, php-format +msgid "Successfully reset password for %s" +msgstr "" + +#: chat.php:3075 +#, php-format +msgid "Can't reset password for %s" +msgstr "" + +#: chat.php:3190 +msgid "Your profile has successfully been saved." +msgstr "Ваш профиль был успешно сохранен." + +#: chat.php:3202 +msgid "Nickname is already taken" +msgstr "Имя уже занято" + +#: chat.php:3714 +msgid "system message" +msgstr "системное сообщение" + +#: chat.php:3921 +msgid "Beige" +msgstr "Бежевый" + +#: chat.php:3922 +msgid "Black" +msgstr "Черный" + +#: chat.php:3923 +msgid "Blue" +msgstr "Синий" + +#: chat.php:3924 +msgid "Blue violet" +msgstr "Фиолетово-синий" + +#: chat.php:3925 +msgid "Brown" +msgstr "Коричневый" + +#: chat.php:3926 +msgid "Cyan" +msgstr "Голубой" + +#: chat.php:3927 +msgid "Dark blue" +msgstr "Темно-синий" + +#: chat.php:3928 +msgid "Dark green" +msgstr "Темно-зеленый" + +#: chat.php:3929 +msgid "Dark red" +msgstr "Темно-красный" + +#: chat.php:3930 +msgid "Dark violet" +msgstr "Темно-фиолетовый" + +#: chat.php:3931 +msgid "Sky blue" +msgstr "Голубое небо" + +#: chat.php:3932 +msgid "Gold" +msgstr "Золотой" + +#: chat.php:3933 +msgid "Grey" +msgstr "Серый" + +#: chat.php:3934 +msgid "Green" +msgstr "Зеленый" + +#: chat.php:3935 +msgid "Hot pink" +msgstr "Ярко-розовый" + +#: chat.php:3936 +msgid "Indigo" +msgstr "Индиго" + +#: chat.php:3937 +msgid "Light blue" +msgstr "Светло-синий" + +#: chat.php:3938 +msgid "Light green" +msgstr "Светло-зеленый" + +#: chat.php:3939 +msgid "Lime green" +msgstr "Зеленый лайм" + +#: chat.php:3940 +msgid "Magenta" +msgstr "Пурпурный" + +#: chat.php:3941 +msgid "Olive" +msgstr "Оливковый" + +#: chat.php:3942 +msgid "Orange" +msgstr "Оранжевый" + +#: chat.php:3943 +msgid "Orange red" +msgstr "Оранжево-красный" + +#: chat.php:3944 +msgid "Purple" +msgstr "Фиолетовый" + +#: chat.php:3945 +msgid "Red" +msgstr "Красный" + +#: chat.php:3946 +msgid "Royal blue" +msgstr "Королевский синий" + +#: chat.php:3947 +msgid "Sea green" +msgstr "Морской зеленый" + +#: chat.php:3948 +msgid "Sienna" +msgstr "Сиена" + +#: chat.php:3949 +msgid "Silver" +msgstr "Серебряный" + +#: chat.php:3950 +msgid "Tan" +msgstr "Загар" + +#: chat.php:3951 +msgid "Teal" +msgstr "Чирок" + +#: chat.php:3952 +msgid "Violet" +msgstr "Фиолетовый" + +#: chat.php:3953 +msgid "White" +msgstr "Белый" + +#: chat.php:3954 +msgid "Yellow" +msgstr "Желтый" + +#: chat.php:3955 +msgid "Yellow green" +msgstr "Желто-зеленый" + +#: chat.php:4077 +msgid "Successfully destroyed chat" +msgstr "Чат успешно уничтожен" + +#: chat.php:4086 +msgid "" +"Database tables already exist! To continue, you have to delete these tables " +"manually first." +msgstr "" +"Таблицы базы данных уже существуют! Чтобы продолжить, вы должны сначала " +"удалить эти таблицы вручную." + +#: chat.php:4089 +msgid "A Superadmin already exists!" +msgstr "Суперадминистратор уже существует!" + +#: chat.php:4182 chat.php:4369 +#, php-format +msgid "%s - " +msgstr "%s - " + +#: chat.php:4183 chat.php:4369 +#, php-format +msgid "[M] %s - " +msgstr "[M] %s - " + +#: chat.php:4184 chat.php:4369 +#, php-format +msgid "[Staff] %s - " +msgstr "[Staff] %s - " + +#: chat.php:4185 chat.php:4369 +#, php-format +msgid "[Admin] %s - " +msgstr "[Admin] %s - " + +#: chat.php:4186 chat.php:4369 +#, php-format +msgid "[%1$s to %2$s] - " +msgstr "[%1$s to %2$s] - " + +#: chat.php:4187 +#, php-format +msgid "%s entered the chat." +msgstr "%s вошел в чат." + +#: chat.php:4188 +#, php-format +msgid "%s left the chat." +msgstr "%s покинул чат." + +#: chat.php:4189 +#, php-format +msgid "%s is now a registered member." +msgstr "%s теперь зарегистрированный член." + +#: chat.php:4190 +#, php-format +msgid "%s is now a registered applicant." +msgstr "%s теперь зарегистрированный заявитель." + +#: chat.php:4191 +#, php-format +msgid "%s has been kicked." +msgstr "%s исключен из чата." + +#: chat.php:4192 +#, php-format +msgid "%s have been kicked." +msgstr "%s исключены из чата." + +#: chat.php:4193 +msgid "All guests have been kicked." +msgstr "Все гости исключены из чата." + +#: chat.php:4194 +#, php-format +msgid "%s has been cleaned." +msgstr "%s был очищен." + +#: chat.php:4202 chat.php:4396 +msgid "Temporarily disabled" +msgstr "Временно отключен" + +#: chat.php:4218 chat.php:4594 +msgid "A chat community" +msgstr "" + +#: chat.php:4256 +msgid "Successfully registered!" +msgstr "" + +#: chat.php:4522 chat.php:4721 chat.php:4728 +msgid "No connection to database!" +msgstr "Нет соединения с базой данных!" + +#: chat.php:4531 +msgid "" +"Note: Default CSS is now hardcoded and can be removed from the CSS setting" +msgstr "" +"Заметка: по установлению CSS он тяжелый и можна убрать его в CSS настройках" + +#: chat.php:4611 +#, 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 +#, php-format +msgid "" +"The %s extension of PHP is required for the selected database driver. Please " +"install it first." +msgstr "" +"%s расширение для PHP требуетса для драйверов базы данных. Пожалуйста " +"установите его сначала." + +#: 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 "" +"Нет соединения с базой данных, пожалуйста, создайте базу данных и измените " +"сценарий, чтобы использовать правильную базу данных с заданными именем " +"пользователя и паролем!" + +#: 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 "" diff --git a/locale/tr_TR/LC_MESSAGES/le-chat-php.mo b/locale/tr_TR/LC_MESSAGES/le-chat-php.mo new file mode 100644 index 0000000..5b5c120 Binary files /dev/null and b/locale/tr_TR/LC_MESSAGES/le-chat-php.mo differ diff --git a/locale/tr_TR/LC_MESSAGES/le-chat-php.po b/locale/tr_TR/LC_MESSAGES/le-chat-php.po new file mode 100644 index 0000000..05a19e1 --- /dev/null +++ b/locale/tr_TR/LC_MESSAGES/le-chat-php.po @@ -0,0 +1,1642 @@ +# 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: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-01-18 21:32+0100\n" +"PO-Revision-Date: 2023-01-18 21:40+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.1.1\n" + +#: chat.php:261 +msgid "Enable applicants" +msgstr "Başvuru sahiplerini etkinleştir" + +#: chat.php:262 +msgid "Embed images" +msgstr "Gömülü görseller" + +#: chat.php:263 chat.php:2202 +msgid "Show Timestamps" +msgstr "Zaman damgalarını göster" + +#: chat.php:264 +msgid "Show session-IP" +msgstr "Oturum IP\\'sini göster" + +#: chat.php:265 +msgid "Members can kick, if no moderator is present" +msgstr "Eğer herhangi bir moderatör yoksa, üyeler birini atabilir" + +#: chat.php:266 +msgid "Members can always kick" +msgstr "Üyeler her zaman birini atabilir" + +#: chat.php:267 +msgid "Force redirection" +msgstr "Yönlendirmeye zorla" + +#: chat.php:268 +msgid "Incognito mode" +msgstr "Incognito modu" + +#: chat.php:269 +msgid "Send mail on new public message" +msgstr "Yeni herkese açık mesajla posta gönder" + +#: chat.php:270 +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 +msgid "Disable private messages" +msgstr "Özel mesajları devre dışı bırak" + +#: chat.php:272 chat.php:2223 +msgid "Enable offline inbox" +msgstr "Çevrimdışı gelen kutusunu etkinleştir" + +#: chat.php:273 +msgid "Show a greeting message before showing the messages" +msgstr "İletileri göstermeden önce selamlama mesajı göster" + +#: chat.php:274 chat.php:2204 +msgid "Sort messages from top to bottom" +msgstr "İletileri yukarıdan aşağıya doğru sırala" + +#: chat.php:275 chat.php:2205 +msgid "Hide list of chatters" +msgstr "Sohbet edenlerin listesini gizle" + +#: chat.php:276 chat.php:1780 chat.php:1794 +msgid "Personal notes" +msgstr "Kişisel notlar" + +#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110 +msgid "Public notes" +msgstr "Kamu profiller" + +#: chat.php:278 +msgid "Apply kick filter on moderators" +msgstr "Moderatörler için atma filtresini etkinleştir" + +#: chat.php:279 +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 +msgid "Hide reload post box button" +msgstr "" + +#: chat.php:281 +msgid "Hide reload messages button" +msgstr "" + +#: chat.php:282 +msgid "Hide profile button" +msgstr "" + +#: chat.php:283 +msgid "Hide admin button" +msgstr "" + +#: chat.php:284 +msgid "Hide notes button" +msgstr "" + +#: chat.php:285 +msgid "Hide clone button" +msgstr "" + +#: chat.php:286 +msgid "Hide rearrange button" +msgstr "" + +#: chat.php:287 +msgid "Hide help button" +msgstr "" + +#: chat.php:288 +msgid "Apply postbox delete button globally" +msgstr "" + +#: chat.php:289 +msgid "Allow enhancing functionality with JavaScript" +msgstr "" + +#: chat.php:292 chat.php:2170 +msgid "Background colour" +msgstr "Arkaplan rengi" + +#: chat.php:293 chat.php:2167 +msgid "Font colour" +msgstr "Yazı tipi rengi" + +#: chat.php:296 +msgid "Entrance" +msgstr "Giriş" + +#: chat.php:297 +msgid "Leaving" +msgstr "Ayrılınıyor" + +#: chat.php:298 +msgid "Member registered" +msgstr "Üye kaydedildi" + +#: chat.php:299 +msgid "Applicant registered" +msgstr "Başvuru kaydedildi" + +#: chat.php:300 +msgid "Kicked" +msgstr "Atıldı" + +#: chat.php:301 +msgid "Multiple kicked" +msgstr "Toplu atıldı" + +#: chat.php:302 +msgid "All kicked" +msgstr "Hepsi atıldı" + +#: chat.php:303 +msgid "Room cleaned" +msgstr "Oda temizlendi" + +#: chat.php:304 +msgid "Message to all" +msgstr "Herkese gönder" + +#: chat.php:305 +msgid "Message to members only" +msgstr "Sadece üyelere gönder" + +#: chat.php:306 +msgid "Message to staff only" +msgstr "Sadece yetkililere gönder" + +#: chat.php:307 +msgid "Message to admins only" +msgstr "Sadece yöneticilere gönder" + +#: chat.php:308 +msgid "Private message" +msgstr "Özel ileti" + +#: chat.php:309 +msgid "Attachement" +msgstr "Ek" + +#: chat.php:312 +msgid "Member timeout (minutes)" +msgstr "Üye zaman aşımı (dakika)" + +#: chat.php:313 +msgid "Guest timeout (minutes)" +msgstr "Konuk zaman aşımı (dakika)" + +#: chat.php:314 +msgid "Kick penalty (minutes)" +msgstr "Atım cezası (dakika)" + +#: chat.php:315 +msgid "Waiting room time (seconds)" +msgstr "Bekleme odası zamanı (saniye)" + +#: chat.php:316 +msgid "Captcha timeout (seconds)" +msgstr "Captcha zaman aşımı (saniye)" + +#: chat.php:317 +msgid "Message timeout (minutes)" +msgstr "İleti zaman aşımı (dakika)" + +#: chat.php:318 +msgid "Message limit (public)" +msgstr "İleti sınırı (herkese açık)" + +#: chat.php:319 +msgid "Maximal message length" +msgstr "Maksimum ileti uzunluğu" + +#: chat.php:320 +msgid "Maximal nickname length" +msgstr "Maksimum şifre uzunluğu" + +#: chat.php:321 +msgid "Minimal password length" +msgstr "Minimum şifre uzunluğu" + +#: chat.php:322 +msgid "Default message reload time (seconds)" +msgstr "Varsayılan mesaj yenileme süresi (saniye)" + +#: chat.php:323 +msgid "Number of notes revisions to keep" +msgstr "" + +#: chat.php:324 +msgid "Maximum upload size in KB" +msgstr "KB olarak en fazla yükleme boyutu" + +#: chat.php:325 +msgid "Enable file uploads" +msgstr "Dosya yüklemelerine izin ver" + +#: chat.php:326 +msgid "Lowest refresh rate" +msgstr "" + +#: chat.php:327 +msgid "Highest refresh rate" +msgstr "" + +#: chat.php:330 +msgid "Rules (html)" +msgstr "Kurallar (html)" + +#: chat.php:331 +msgid "CSS Style" +msgstr "CSS Stili" + +#: chat.php:332 +msgid "Chat disabled message (html)" +msgstr "Sohbet mesajı devre dışı bıraktı (html)" + +#: chat.php:335 +msgid "" +"Date " +"formating" +msgstr "" +"Tarih " +"biçimlendirme" + +#: chat.php:336 +msgid "Characters used in Captcha" +msgstr "Captcha'da kullanılan harfler" + +#: chat.php:337 +msgid "Custom redirection script" +msgstr "Özel yönlendirme script'i" + +#: chat.php:338 +msgid "Chat name" +msgstr "Sohbet ismi" + +#: chat.php:339 +msgid "Send mail using this address" +msgstr "Bu adresi kullanarak posta gönder" + +#: chat.php:340 +msgid "Send mail to this address" +msgstr "Bu adrese posta gönder" + +#: chat.php:341 +msgid "Nickname regex" +msgstr "Kullanıcı adı regex" + +#: chat.php:342 +msgid "Password regex" +msgstr "Şifre regex" + +#: chat.php:343 +msgid "Link to external CSS file (on your own server)" +msgstr "Dış CSS dosyasının bağlantısı" + +#: chat.php:344 +msgid "Meta description (best 50 - 160 characters for SEO)" +msgstr "" + +#: chat.php:345 +msgid "Prepend this text to system messages" +msgstr "Bu metin, sistemden gelen iletilerden önce gelir" + +#: chat.php:348 chat.php:728 chat.php:1225 +msgid "Change Guestaccess" +msgstr "Konuk erişimini değiştir" + +#: chat.php:349 +msgid "Enable global Password" +msgstr "" + +#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433 +msgid "Global Password:" +msgstr "Global şifre:" + +#: chat.php:351 chat.php:819 +msgid "Captcha" +msgstr "Captcha" + +#: chat.php:352 chat.php:775 chat.php:835 +msgid "Only for guests" +msgstr "Sadece konuklar için" + +#: chat.php:353 chat.php:1220 +msgid "Topic" +msgstr "Konu" + +#: chat.php:354 chat.php:781 +msgid "Let guests register themselves" +msgstr "Konukların kendilerini kayıt etmelerine izin ver" + +#: chat.php:355 chat.php:862 +msgid "Default time zone" +msgstr "Varsayılan zaman dilimi" + +#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259 +msgid "Initial Setup" +msgstr "İlk kurulum" + +#: chat.php:588 +#, php-format +msgid "Redirecting to: %s" +msgstr "Şuna yönlendiriliyor: %s" + +#: chat.php:595 +#, php-format +msgid "" +"Dangerous non-http link requested, copy paste this link if you are really " +"sure: %s" +msgstr "" +"Tehlikeli HTTP olmayan bağlantı istenildi, eğer eminseniz bu bağlantıyı " +"kopyalayıp yapıştırın: %s" + +#: chat.php:597 +#, php-format +msgid "Non-http link requested: %s" +msgstr "HTTP olmayan bağlantı istenildi: %s" + +#: chat.php:599 +#, php-format +msgid "If it's not working, try this one: %s" +msgstr "Eğer çalışmıyorsa, bunu deneyin: %s" + +#: chat.php:609 +msgid "Access denied" +msgstr "Erişin reddedildi" + +#: chat.php:609 +#, 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 +msgid "Logout" +msgstr "Çıkış yap" + +#: chat.php:636 +msgid "Copy:" +msgstr "Kopyala:" + +#: chat.php:724 +msgid "Chat Setup" +msgstr "Sohbet kurulumu" + +#: chat.php:734 chat.php:1233 +msgid "Allow" +msgstr "İzin ver" + +#: chat.php:739 chat.php:1238 +msgid "Allow with waitingroom" +msgstr "Bekleme odasına izin ver" + +#: chat.php:744 chat.php:1243 +msgid "Require moderator approval" +msgstr "Moderatör onayı gerekiyor" + +#: chat.php:749 chat.php:1248 +msgid "Only members" +msgstr "Sadece üyeler" + +#: chat.php:754 chat.php:1251 +msgid "Disable chat" +msgstr "Sohbeti devre dışı bırak" + +#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229 +msgid "Disabled" +msgstr "Devre dışı" + +#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219 +msgid "Enabled" +msgstr "Etkinleştirildi" + +#: chat.php:792 +msgid "As applicant" +msgstr "Başvuru sahibi olarak" + +#: chat.php:797 +msgid "As member" +msgstr "Üye olarak" + +#: chat.php:800 +msgid "System messages" +msgstr "Sistem iletileri" + +#: chat.php:822 chat.php:1053 +#, 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 +msgid "Simple" +msgstr "Basit" + +#: chat.php:852 +msgid "Moderate" +msgstr "Orta" + +#: chat.php:857 +msgid "Extreme" +msgstr "Aşırı" + +#: chat.php:906 chat.php:1548 chat.php:1610 +msgid "Apply" +msgstr "Uygula" + +#: chat.php:910 chat.php:1050 +msgid "Backup and restore" +msgstr "Yedekle ve onar" + +#: chat.php:912 +msgid "Destroy chat" +msgstr "Sohbeti yok et" + +#: chat.php:1057 chat.php:1066 +msgid "Settings" +msgstr "Ayarlar" + +#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575 +#: chat.php:1622 +msgid "Filter" +msgstr "Filtrele" + +#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538 +msgid "Members" +msgstr "Üyeler" + +#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322 +msgid "Notes" +msgstr "Notlar" + +#: chat.php:1061 +msgid "Backup" +msgstr "Yedekle" + +#: chat.php:1070 +msgid "Restore" +msgstr "Onar" + +#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260 +msgid "Go to the Setup-Page" +msgstr "Kurulum sayfasına git" + +#: chat.php:1082 chat.php:1091 chat.php:1949 +msgid "Are you sure?" +msgstr "Emin misiniz?" + +#: chat.php:1083 chat.php:1092 chat.php:1956 +msgid "Yes" +msgstr "Evet" + +#: chat.php:1084 chat.php:1093 chat.php:1963 +msgid "No" +msgstr "Hayır" + +#: chat.php:1101 chat.php:4259 +msgid "Superadmin Login" +msgstr "Superadmin Girişi" + +#: chat.php:1102 +msgid "Superadmin Nickname:" +msgstr "Superadmin Kullanıcı adı:" + +#: chat.php:1103 +msgid "Superadmin Password:" +msgstr "Superadmin Şifre:" + +#: chat.php:1104 +msgid "Confirm Password:" +msgstr "Şifreyi doğrula:" + +#: chat.php:1105 +msgid "Initialise Chat" +msgstr "Sohbeti Başlat" + +#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439 +msgid "Change language:" +msgstr "Dili değiştir:" + +#: chat.php:1117 +msgid "Database successfully updated!" +msgstr "Veritabanı başarıyla güncellendi!" + +#: chat.php:1125 chat.php:1326 chat.php:2407 +msgid "Nickname:" +msgstr "Kullanıcı adı:" + +#: chat.php:1126 chat.php:1327 chat.php:2408 +msgid "Password:" +msgstr "Şifre:" + +#: chat.php:1128 +msgid "Login" +msgstr "Giriş" + +#: chat.php:1129 +msgid "Forgot login?" +msgstr "" + +#: chat.php:1142 chat.php:1306 +msgid "Reset password" +msgstr "Şifreyi değiştir" + +#: chat.php:1150 +#, php-format +msgid "" +"Successfully reset password for username %s. Please remove the password " +"reset define from the script again." +msgstr "" + +#: 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 "" + +#: 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 +msgid "(choose)" +msgstr "(seç)" + +#: chat.php:1170 +msgid "All guests" +msgstr "Tüm konuklar" + +#: chat.php:1182 +msgid "Administrative functions" +msgstr "Yönetici işlemleri" + +#: chat.php:1188 +msgid "Clean messages" +msgstr "İletileri temizle" + +#: chat.php:1191 +msgid "Whole room" +msgstr "Tüm oda" + +#: chat.php:1192 +msgid "Selection" +msgstr "Seçim" + +#: chat.php:1193 +msgid "Following nickname:" +msgstr "Şu kullanıcı adını:" + +#: chat.php:1200 +msgid "Clean" +msgstr "Temizle" + +#: chat.php:1202 +#, php-format +msgid "Kick Chatter (%d minutes)" +msgstr "Kullanıcıyı at (%d dakika)" + +#: chat.php:1204 +msgid "Kickmessage:" +msgstr "Atılma nedeni:" + +#: chat.php:1205 +msgid "Purge messages" +msgstr "İletileri temizle" + +#: chat.php:1206 chat.php:1388 chat.php:1546 chat.php:1580 chat.php:1591 +#: chat.php:2042 +msgid "Kick" +msgstr "At" + +#: chat.php:1208 +msgid "Logout inactive Chatter" +msgstr "İnaktif kişiyi oturumdan çıkar" + +#: chat.php:1212 +msgid "View active sessions" +msgstr "Aktif oturumlara bak" + +#: chat.php:1212 chat.php:1603 +msgid "Linkfilter" +msgstr "" + +#: chat.php:1217 +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 +msgid "Change" +msgstr "Değiştir" + +#: chat.php:1256 +msgid "Register applicant" +msgstr "Başvuru kayıt et" + +#: chat.php:1264 chat.php:1322 chat.php:1328 +msgid "Register" +msgstr "Kayıt ol" + +#: chat.php:1294 +msgid "Delete from database" +msgstr "Veritabanından sil" + +#: chat.php:1294 +msgid "Deny access (!)" +msgstr "Erişimi reddet (!)" + +#: chat.php:1296 +msgid "Set to applicant (SG)" +msgstr "" + +#: chat.php:1298 +msgid "Set to regular member" +msgstr "Normal üye yap" + +#: chat.php:1299 +msgid "Set to moderator (M)" +msgstr "Moderatör yap (Ü)" + +#: chat.php:1300 +msgid "Set to supermod (SM)" +msgstr "Süpermod yap (SM)" + +#: chat.php:1302 +msgid "Set to admin (A)" +msgstr "Yönetici yap (Y)" + +#: chat.php:1314 +msgid "Register Guest" +msgstr "Misafir kaydet" + +#: chat.php:1324 +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 +msgid "Reload" +msgstr "Yenile" + +#: chat.php:1345 +msgid "Active Sessions" +msgstr "Aktif Oturumlar" + +#: chat.php:1346 chat.php:1873 +msgid "Nickname" +msgstr "Kullanıcı adı" + +#: chat.php:1346 +msgid "Timeout in" +msgstr "Zaman aşımı" + +#: chat.php:1346 chat.php:1873 +msgid "User-Agent" +msgstr "User-Agent" + +#: chat.php:1350 +msgid "IP-Address" +msgstr "IP Adresi" + +#: chat.php:1351 +msgid "Actions" +msgstr "Eylemler" + +#: chat.php:1393 +msgid "Unban" +msgstr "Yasaklamayı kaldır" + +#: chat.php:1416 +msgid "Incorrect regular expression!" +msgstr "Yanlış normal ifade!" + +#: chat.php:1416 chat.php:1424 +#, php-format +msgid "Your match was as follows: %s" +msgstr "Eşleşmeniz aşağıdaki gibiydi: %s" + +#: chat.php:1424 +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 +msgid "Filter ID:" +msgstr "ID Filtrele:" + +#: chat.php:1542 chat.php:1607 +msgid "Match" +msgstr "Eşleş" + +#: chat.php:1543 chat.php:1608 +msgid "Replace" +msgstr "Değiştir" + +#: chat.php:1544 chat.php:1578 chat.php:1589 +msgid "Allow in PM" +msgstr "" + +#: chat.php:1545 chat.php:1579 chat.php:1590 chat.php:1609 chat.php:1625 +#: chat.php:1633 +msgid "Regex" +msgstr "Regex" + +#: chat.php:1547 chat.php:1581 chat.php:1592 +msgid "Case sensitive" +msgstr "Büyük harf/küçük harf duyarlı" + +#: chat.php:1586 chat.php:1630 +msgid "New filter:" +msgstr "Yeni filtre:" + +#: chat.php:1593 chat.php:1634 +msgid "Add" +msgstr "Ekle" + +#: chat.php:1691 +msgid "" +"This chat uses frames. Please enable frames in your browser or use a " +"suitable one!" +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 +msgid "Back to the login page." +msgstr "Giriş ekranına geri dön." + +#: chat.php:1709 +msgid "Bottom" +msgstr "Alt" + +#: chat.php:1710 +msgid "Manual refresh required" +msgstr "Manuel yenileme gerekli" + +#: chat.php:1726 +msgid "Top" +msgstr "Üst" + +#: chat.php:1734 chat.php:1940 chat.php:1942 +msgid "Delete selected messages" +msgstr "Seçili iletileri sil" + +#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281 +msgid "Back to the chat." +msgstr "Sohbete geri dön." + +#: chat.php:1774 chat.php:1791 +msgid "Admin notes" +msgstr "Yönetici notları" + +#: chat.php:1777 chat.php:1788 +msgid "Staff notes" +msgstr "Yetkili notları" + +#: chat.php:1811 +msgid "Notes saved!" +msgstr "Notlar kaydedildi!" + +#: chat.php:1835 chat.php:2122 +#, 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 +msgid "Save notes" +msgstr "Notları kaydet" + +#: chat.php:1850 +msgid "Revisions:" +msgstr "" + +#: chat.php:1853 +msgid "Older" +msgstr "Daha eski" + +#: chat.php:1857 +msgid "Newer" +msgstr "Daha yeni" + +#: chat.php:1868 chat.php:1914 +msgid "Waiting room" +msgstr "Bekleme odası" + +#: chat.php:1880 +msgid "Allow checked" +msgstr "Kontrol edilenlere izin ver" + +#: chat.php:1881 +msgid "Allow all" +msgstr "Hepsine izin ver" + +#: chat.php:1882 +msgid "Deny checked" +msgstr "Kontrol edilenleri reddet" + +#: chat.php:1883 +msgid "Deny all" +msgstr "Hepsini reddet" + +#: chat.php:1883 +msgid "Send message to denied:" +msgstr "Reddedilene ileti gönder:" + +#: chat.php:1884 +msgid "Submit" +msgstr "Gönder" + +#: chat.php:1886 +msgid "No more entry requests to approve." +msgstr "Onaylanacak daha fazla giriş isteği yok." + +#: chat.php:1916 +#, php-format +msgid "" +"Welcome %1$s, your login has been delayed, you can access the chat in %2$d " +"seconds." +msgstr "" +"Hoş geldiniz %1$s, girişiniz geciktirildi, sohbete %2$d saniye içinde " +"erişebilirsiniz." + +#: chat.php:1918 +#, 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 "" +"Hoş geldiniz %1$s, girişiniz geciktirildi, sohbete bir moderatör girmenize " +"izin verirse erişebilirsiniz." + +#: chat.php:1921 +#, php-format +msgid "" +"If this page doesn't refresh every %d seconds, use the button below to " +"reload it manually!" +msgstr "" +"Eğer sayfa %d saniye içinde yenilenmiyorsa, elinizle yenilemek için alttaki " +"düğmeyi kullanın!" + +#: chat.php:1926 chat.php:2339 +msgid "Exit Chat" +msgstr "Sohbetten çık" + +#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430 +msgid "Rules" +msgstr "Kurallar" + +#: chat.php:1985 +msgid "Send to" +msgstr "Şuna gönder" + +#: chat.php:1990 +msgid "All chatters" +msgstr "Tüm kullanıcılar" + +#: chat.php:1996 +msgid "Members only" +msgstr "Sadece üyeler" + +#: chat.php:2003 +msgid "Staff only" +msgstr "Sadece yetkililer" + +#: chat.php:2010 +msgid "Admin only" +msgstr "Sadece yönetici" + +#: chat.php:2019 +msgid "(offline)" +msgstr "(çevrimdışı)" + +#: chat.php:2043 +msgid "Also purge messages" +msgstr "Ayrıca iletileri temizle" + +#: chat.php:2050 +msgid "Delete last message" +msgstr "Son iletiyi sil" + +#: chat.php:2055 +msgid "Delete all messages" +msgstr "Tüm iletileri sil" + +#: chat.php:2057 +msgid "Switch to single-line" +msgstr "Tek-satıra geç" + +#: chat.php:2059 +msgid "Switch to multi-line" +msgstr "Çoklu-satıra geç" + +#: chat.php:2070 +#, php-format +msgid "Welcome %s!" +msgstr "Hoş geldin %s!" + +#: chat.php:2071 +#, 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 "" +"Eğer çerçeve %d saniye içinde yenilenmiyorsa, tarayıcınızda otomatik " +"yönlendirmeyi (meta refresh) açmanız lazım. Ayrıca web filtresi, yerel proxy " +"aracı veya tarayıcı uzantılarının otomatik yönlendirmeyi engellemediğinden " +"emin olun! Buna örnek olarak \"Polipo\", \"NoScript\", vb. " +"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 +msgid "Help" +msgstr "Yardım" + +#: 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." +msgstr "" +"Tüm işlemler anlaşılabilir olmalı, sadece düğmeleri kullanın. Profilinizde " +"yenileme aralığını ve yazı rengini değiştirebilir, aynı zamanda üyeleri göz " +"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 +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 "" +"Eğer iletinize bir görsel eklemek istiyorsanız, basit bir şekilde görsel " +"URL'sinin önüne [img] koyun. Örnek: [img]http://example.com/images/file.jpg " +"yazmak iletinizdeki görseli ekler." + +#: 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 "" +"Üyeler: Profilinizde biraz daha seçenek var. Yazı tipini ayarlayabilir, " +"şifrenizi istediğiniz zaman değiştirebilir ve tabii ki hesabınızı " +"silebilirsiniz." + +#: 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 "" +"Moderatörler: En alttaki Yönetici düğmesine dikkat edin. Odayı " +"temizleyebileceğiniz, kişileri atabileceğiniz, aktif oturumları " +"görebileceğiniz ve konuk erişimini kapatabileceğiniz bir sayfa gelecektir." + +#: chat.php:2097 +msgid "" +"Admins: You'll be furthermore able to register guests, edit members and " +"register new nicknames." +msgstr "" +"Yöneticiler: Konukları kaydedebilir, üyeleri düzenleyebilir ve yeni " +"kullanıcı adları kaydedebilirsiniz." + +#: chat.php:2135 +msgid "Your Profile" +msgstr "Profiliniz" + +#: chat.php:2144 +msgid "Don't ignore anymore" +msgstr "Görmezden gelmeyi bırak" + +#: chat.php:2152 +msgid "Ignore" +msgstr "Görmezden gel" + +#: chat.php:2163 +#, php-format +msgid "Refresh rate (%1$d-%2$d seconds)" +msgstr "Yenileme aralığı (%1$d-%2$d saniye)" + +#: chat.php:2167 chat.php:2170 +msgid "View examples" +msgstr "Örnekleri görüntüle" + +#: chat.php:2174 +msgid "Fontface" +msgstr "Yazıtipi yüzü" + +#: chat.php:2175 +msgid "Room Default" +msgstr "Oda Varsayılanı" + +#: chat.php:2188 +msgid "Bold" +msgstr "Kalın" + +#: chat.php:2192 +msgid "Italic" +msgstr "İtalik" + +#: chat.php:2196 +msgid "Small" +msgstr "Küçük" + +#: chat.php:2199 +msgid "Example for your chosen font" +msgstr "Seçtiğin yazı tipi için örnek" + +#: chat.php:2203 +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 +msgid "For everyone" +msgstr "Herkes için" + +#: chat.php:2239 +msgid "For members only" +msgstr "Sadece üyeler için" + +#: chat.php:2244 +msgid "For staff only" +msgstr "Sadece yetkililer için" + +#: chat.php:2248 +msgid "Time zone" +msgstr "Zaman dilimi" + +#: chat.php:2261 +msgid "Change Password" +msgstr "Şifreyi değiştir" + +#: chat.php:2263 +msgid "Old password:" +msgstr "Eski şifre:" + +#: chat.php:2264 +msgid "New password:" +msgstr "Yeni şifre:" + +#: chat.php:2265 +msgid "Confirm new password:" +msgstr "Yeni şifreyi doğrula:" + +#: chat.php:2268 +msgid "Change Nickname" +msgstr "Kullanıcı adını değiştir" + +#: chat.php:2269 +msgid "New nickname:" +msgstr "Yeni kullanıcı adı:" + +#: chat.php:2273 +msgid "Save changes" +msgstr "Değişiklikleri kaydet" + +#: chat.php:2275 +msgid "Delete account" +msgstr "Hesabı sil" + +#: chat.php:2301 +msgid "Reload Post Box" +msgstr "Posta Kutusunu Yenile" + +#: chat.php:2304 +msgid "Reload Messages" +msgstr "İletileri yenile" + +#: chat.php:2307 +msgid "Profile" +msgstr "Profil" + +#: chat.php:2311 chat.php:2528 +msgid "Admin" +msgstr "Yönetici" + +#: chat.php:2318 +msgid "View public notes" +msgstr "Oku kamu profilim" + +#: chat.php:2325 +msgid "Clone" +msgstr "Klonla" + +#: chat.php:2334 +msgid "Rearrange" +msgstr "Yeniden düzenle" + +#: chat.php:2337 +msgid "Rules & Help" +msgstr "Kurallar & Yardım" + +#: chat.php:2358 chat.php:2362 +msgid "File not found!" +msgstr "Dosya bulunamadı!" + +#: chat.php:2370 +#, php-format +msgid "Bye %s, visit again soon!" +msgstr "Görüşürüz %s, en yakın zamanda yine uğra!" + +#: chat.php:2377 +msgid "Colourtable" +msgstr "Renk tablosu" + +#: chat.php:2388 +msgid "Back to your Profile" +msgstr "Profiline geri dön" + +#: chat.php:2412 +msgid "Repeat password
to register" +msgstr "Kayıt olmak için
şifreyi tekrarla" + +#: chat.php:2412 +msgid "(optional)" +msgstr "(isteğe bağlı)" + +#: chat.php:2417 +msgid "Guests, choose a colour:" +msgstr "Konuklar, bir renk seçin:" + +#: chat.php:2417 +msgid "Random Colour" +msgstr "Rastgele renk" + +#: chat.php:2421 chat.php:2435 chat.php:2569 +msgid "Sorry, currently members only!" +msgstr "Üzgünüm, şu anlık sadece üyeler!" + +#: chat.php:2423 chat.php:2437 +msgid "Enter Chat" +msgstr "Sohbete gir" + +#: chat.php:2457 +#, php-format +msgid "Error: %s" +msgstr "Hata: %s" + +#: chat.php:2467 +msgid "Fatal error" +msgstr "Kritik hata" + +#: chat.php:2470 +#, php-format +msgid "Fatal error: %s" +msgstr "Kritik hata: %s" + +#: chat.php:2482 chat.php:2693 +msgid "Failed login attempt(s)" +msgstr "Başarısız oturum açma girişimleri" + +#: chat.php:2489 +#, php-format +msgid "Read %d messages in your inbox" +msgstr "Gelen kutunuzdaki %d mesajı okuyun" + +#: chat.php:2498 +#, php-format +msgid "%d new guests to approve" +msgstr "%d tane onaylanacak konuk" + +#: chat.php:2530 +msgid "Admin:" +msgstr "Yönetici:" + +#: chat.php:2533 +msgid "Staff" +msgstr "Yetkili" + +#: chat.php:2535 +msgid "Staff:" +msgstr "Yetkili:" + +#: chat.php:2540 +msgid "Members:" +msgstr "Üyeler:" + +#: chat.php:2542 +msgid "Guests" +msgstr "Konuklar" + +#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092 +#, php-format +msgid "" +"Invalid nickname (%1$d characters maximum and has to match the regular " +"expression \"%2$s\")" +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 +#, php-format +msgid "" +"Invalid password (At least %1$d characters and has to match the regular " +"expression \"%2$s\")" +msgstr "" +"Geçersiz şifre (En az %1$d harf ve normal ifade \"%2$s\" ile eşleşmeli)" + +#: chat.php:2574 chat.php:2739 +msgid "Wrong global Password!" +msgstr "Yanlış global şifre!" + +#: chat.php:2591 chat.php:2612 +msgid "Wrong Captcha" +msgstr "Yanlış captcha" + +#: chat.php:2596 chat.php:2604 +msgid "Captcha already used or timed out." +msgstr "Captcha zaten kullanılmış veya zamanı aşılmış." + +#: chat.php:2652 +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 +msgid "Wrong Password!" +msgstr "Yanlış şifre!" + +#: chat.php:2696 +msgid "Dismiss" +msgstr "Anlaşıldı" + +#: chat.php:2747 chat.php:3171 chat.php:4096 +msgid "Password confirmation does not match!" +msgstr "Şifreler birbirleriyle eşleşmiyor!" + +#: chat.php:2859 +msgid "Invalid/expired session" +msgstr "Geçersiz/tarihi geçmiş oturum" + +#: chat.php:2875 chat.php:3412 +msgid "You have been kicked!" +msgstr "Atıldınız!" + +#: chat.php:2885 +#, php-format +msgid "Currently %d chatter(s) in room:" +msgstr "Şu anda odada %d kişi var:" + +#: chat.php:2933 +msgid "This nickname is a registered member." +msgstr "Bu kullanıcı adı kayıtlı bir üyeye ait." + +#: chat.php:2960 chat.php:3001 +#, php-format +msgid "%s is already registered." +msgstr "%s zaten kayıtlı." + +#: chat.php:2969 chat.php:2990 +#, php-format +msgid "Can't register %s" +msgstr "%s kayıt edilemiyor" + +#: chat.php:2978 chat.php:3023 +#, php-format +msgid "%s successfully registered." +msgstr "%s kayıt oldu." + +#: chat.php:3031 chat.php:3036 +#, php-format +msgid "Can't change status of %s" +msgstr "%s'ın statüsü değiştirilemiyor" + +#: chat.php:3047 +#, php-format +msgid "%s successfully deleted from database." +msgstr "%s başarılı bir şekilde veritabanından silindi." + +#: chat.php:3056 +#, php-format +msgid "Status of %s successfully changed." +msgstr "%s'ın statüsü başarıyla değiştirildi." + +#: chat.php:3073 +#, php-format +msgid "Successfully reset password for %s" +msgstr "" + +#: chat.php:3075 +#, php-format +msgid "Can't reset password for %s" +msgstr "" + +#: chat.php:3190 +msgid "Your profile has successfully been saved." +msgstr "Profiliniz başarıyla kaydedildi." + +#: chat.php:3202 +msgid "Nickname is already taken" +msgstr "Kullanıcı adı zaten alınmış" + +#: chat.php:3714 +msgid "system message" +msgstr "Sistem ileti" + +#: chat.php:3921 +msgid "Beige" +msgstr "Bej" + +#: chat.php:3922 +msgid "Black" +msgstr "Kahverengi" + +#: chat.php:3923 +msgid "Blue" +msgstr "Mavi" + +#: chat.php:3924 +msgid "Blue violet" +msgstr "Mavi mor" + +#: chat.php:3925 +msgid "Brown" +msgstr "Kahverengi" + +#: chat.php:3926 +msgid "Cyan" +msgstr "Camgöbeği" + +#: chat.php:3927 +msgid "Dark blue" +msgstr "Koyu mavi" + +#: chat.php:3928 +msgid "Dark green" +msgstr "Koyu yeşil" + +#: chat.php:3929 +msgid "Dark red" +msgstr "Koyu red" + +#: chat.php:3930 +msgid "Dark violet" +msgstr "Koyu mor" + +#: chat.php:3931 +msgid "Sky blue" +msgstr "Gökyüzü mavisi" + +#: chat.php:3932 +msgid "Gold" +msgstr "Altın" + +#: chat.php:3933 +msgid "Grey" +msgstr "Gri" + +#: chat.php:3934 +msgid "Green" +msgstr "Yeşil" + +#: chat.php:3935 +msgid "Hot pink" +msgstr "Sıcak pembe" + +#: chat.php:3936 +msgid "Indigo" +msgstr "Indigo" + +#: chat.php:3937 +msgid "Light blue" +msgstr "Açık mavi" + +#: chat.php:3938 +msgid "Light green" +msgstr "Açık yeşil" + +#: chat.php:3939 +msgid "Lime green" +msgstr "Limon yeşili" + +#: chat.php:3940 +msgid "Magenta" +msgstr "Magenta" + +#: chat.php:3941 +msgid "Olive" +msgstr "Zeytin" + +#: chat.php:3942 +msgid "Orange" +msgstr "Turuncu" + +#: chat.php:3943 +msgid "Orange red" +msgstr "Turuncu kırmızı" + +#: chat.php:3944 +msgid "Purple" +msgstr "Mor" + +#: chat.php:3945 +msgid "Red" +msgstr "Kırmızı" + +#: chat.php:3946 +msgid "Royal blue" +msgstr "Kraliyet mavisi" + +#: chat.php:3947 +msgid "Sea green" +msgstr "Deniz yeşili" + +#: chat.php:3948 +msgid "Sienna" +msgstr "Sienna" + +#: chat.php:3949 +msgid "Silver" +msgstr "Gümüş" + +#: chat.php:3950 +msgid "Tan" +msgstr "Tan" + +#: chat.php:3951 +msgid "Teal" +msgstr "Teal" + +#: chat.php:3952 +msgid "Violet" +msgstr "Mor" + +#: chat.php:3953 +msgid "White" +msgstr "Beyaz" + +#: chat.php:3954 +msgid "Yellow" +msgstr "Sarı" + +#: chat.php:3955 +msgid "Yellow green" +msgstr "Sarı yeşil" + +#: chat.php:4077 +msgid "Successfully destroyed chat" +msgstr "Sohbet başarıyla yok edildi" + +#: chat.php:4086 +msgid "" +"Database tables already exist! To continue, you have to delete these tables " +"manually first." +msgstr "" +"Veritabanı tabloları zaten bulunuyor! Devam etmek için, tabloları manuel " +"olarak silmeniz lazım." + +#: chat.php:4089 +msgid "A Superadmin already exists!" +msgstr "Bir Superadmin zaten bulunuyor!" + +#: chat.php:4182 chat.php:4369 +#, php-format +msgid "%s - " +msgstr "%s - " + +#: chat.php:4183 chat.php:4369 +#, php-format +msgid "[M] %s - " +msgstr "[Ü] %s - " + +#: chat.php:4184 chat.php:4369 +#, php-format +msgid "[Staff] %s - " +msgstr "[Yetkili] %s - " + +#: chat.php:4185 chat.php:4369 +#, php-format +msgid "[Admin] %s - " +msgstr "[Yönetici] %s - " + +#: chat.php:4186 chat.php:4369 +#, php-format +msgid "[%1$s to %2$s] - " +msgstr "[%1$s to %2$s] - " + +#: chat.php:4187 +#, php-format +msgid "%s entered the chat." +msgstr "%s sohbete katıldı." + +#: chat.php:4188 +#, php-format +msgid "%s left the chat." +msgstr "%s sohbetten çıktı." + +#: chat.php:4189 +#, php-format +msgid "%s is now a registered member." +msgstr "%s artık bir kayıtlı üye." + +#: chat.php:4190 +#, 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." +msgstr "%s atıldı." + +#: chat.php:4192 +#, php-format +msgid "%s have been kicked." +msgstr "%s atıldı." + +#: chat.php:4193 +msgid "All guests have been kicked." +msgstr "Tüm konuklar atıldı." + +#: chat.php:4194 +#, php-format +msgid "%s has been cleaned." +msgstr "%s temizlendi." + +#: chat.php:4202 chat.php:4396 +msgid "Temporarily disabled" +msgstr "Geçici olarak devre dışı" + +#: chat.php:4218 chat.php:4594 +msgid "A chat community" +msgstr "" + +#: chat.php:4256 +msgid "Successfully registered!" +msgstr "Başarılı bir şekilde kayıt olundu!" + +#: chat.php:4522 chat.php:4721 chat.php:4728 +msgid "No connection to database!" +msgstr "Veritabanına bağlantı yok!" + +#: chat.php:4531 +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 +#, 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 "" +"Ş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 +#, php-format +msgid "" +"The %s extension of PHP is required for the selected database driver. Please " +"install it first." +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 +msgid "" +"No connection to database, please create a database and edit the script to " +"use the correct database with given username and password!" +msgstr "" +"Veritabanına bağlantı yok, lütfen bir veritabanı oluşturun ve doğru " +"veritabanını kullanmak için script'i verilen kullanıcı adı ve şifre ile " +"düzenleyin!" + +#: 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 "" +"Önbelleğe alma özelliği için PHP'nin memcached uzantısı gerekiyor. Lütfen " +"ilk önce onu kurun veya memcached özelliğini devre dışı bırakın." diff --git a/locale/uk_UA/LC_MESSAGES/le-chat-php.mo b/locale/uk_UA/LC_MESSAGES/le-chat-php.mo new file mode 100644 index 0000000..7601433 Binary files /dev/null and b/locale/uk_UA/LC_MESSAGES/le-chat-php.mo differ diff --git a/locale/uk_UA/LC_MESSAGES/le-chat-php.po b/locale/uk_UA/LC_MESSAGES/le-chat-php.po new file mode 100644 index 0000000..214dd10 --- /dev/null +++ b/locale/uk_UA/LC_MESSAGES/le-chat-php.po @@ -0,0 +1,1643 @@ +# 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: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-01-18 21:32+0100\n" +"PO-Revision-Date: 2023-01-18 21:40+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: uk_UA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n" +"X-Generator: Poedit 3.1.1\n" + +#: chat.php:261 +msgid "Enable applicants" +msgstr "Дозволити гостей" + +#: chat.php:262 +msgid "Embed images" +msgstr "Вставити зображення" + +#: chat.php:263 chat.php:2202 +msgid "Show Timestamps" +msgstr "Показувати позначки часу" + +#: chat.php:264 +msgid "Show session-IP" +msgstr "Показати IP-сесію" + +#: chat.php:265 +msgid "Members can kick, if no moderator is present" +msgstr "Користувачі можуть виключати, якщо не є модератор" + +#: chat.php:266 +msgid "Members can always kick" +msgstr "Користувачі можуть завжди виключати" + +#: chat.php:267 +msgid "Force redirection" +msgstr "Примусове перенаправлення" + +#: chat.php:268 +msgid "Incognito mode" +msgstr "Режим інкогніто" + +#: chat.php:269 +msgid "Send mail on new public message" +msgstr "Надіслати повідомлення як нове публічне" + +#: chat.php:270 +msgid "Fallback to waiting room, if no moderator is present to approve guests" +msgstr "" +"Повернутися в кімнату очікування, якщо модератор відстутсвує для " +"підтвердження гостей" + +#: chat.php:271 +msgid "Disable private messages" +msgstr "Вимкнути особисті повідомлення" + +#: chat.php:272 chat.php:2223 +msgid "Enable offline inbox" +msgstr "Включити офлайн-пошту" + +#: chat.php:273 +msgid "Show a greeting message before showing the messages" +msgstr "Показувати вітальне повідомлення перед іншими повідомленнями" + +#: chat.php:274 chat.php:2204 +msgid "Sort messages from top to bottom" +msgstr "Сортувати повідомлення зверху вниз" + +#: chat.php:275 chat.php:2205 +msgid "Hide list of chatters" +msgstr "Приховати список людей у чаті'" + +#: chat.php:276 chat.php:1780 chat.php:1794 +msgid "Personal notes" +msgstr "Особисті нотатки" + +#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110 +msgid "Public notes" +msgstr "Профіль користувача" + +#: chat.php:278 +msgid "Apply kick filter on moderators" +msgstr "Застосувати фільтр виключення для модераторів" + +#: chat.php:279 +msgid "Show who kicks people or purges all messages." +msgstr "Покажіть, хто виганяє людей або очищає всі повідомлення." + +#: chat.php:280 +msgid "Hide reload post box button" +msgstr "" + +#: chat.php:281 +msgid "Hide reload messages button" +msgstr "" + +#: chat.php:282 +msgid "Hide profile button" +msgstr "" + +#: chat.php:283 +msgid "Hide admin button" +msgstr "" + +#: chat.php:284 +msgid "Hide notes button" +msgstr "" + +#: chat.php:285 +msgid "Hide clone button" +msgstr "" + +#: chat.php:286 +msgid "Hide rearrange button" +msgstr "" + +#: chat.php:287 +msgid "Hide help button" +msgstr "" + +#: chat.php:288 +msgid "Apply postbox delete button globally" +msgstr "" + +#: chat.php:289 +msgid "Allow enhancing functionality with JavaScript" +msgstr "" + +#: chat.php:292 chat.php:2170 +msgid "Background colour" +msgstr "Фоновий колір" + +#: chat.php:293 chat.php:2167 +msgid "Font colour" +msgstr "Колір шрифту" + +#: chat.php:296 +msgid "Entrance" +msgstr "Вхід" + +#: chat.php:297 +msgid "Leaving" +msgstr "Вихід" + +#: chat.php:298 +msgid "Member registered" +msgstr "Зареєстровані" + +#: chat.php:299 +msgid "Applicant registered" +msgstr "Заявник зареєстрований" + +#: chat.php:300 +msgid "Kicked" +msgstr "Забанені" + +#: chat.php:301 +msgid "Multiple kicked" +msgstr "Багаторазово забанені" + +#: chat.php:302 +msgid "All kicked" +msgstr "Всі забанені" + +#: chat.php:303 +msgid "Room cleaned" +msgstr "Очищення чату" + +#: chat.php:304 +msgid "Message to all" +msgstr "Повідомлення всім" + +#: chat.php:305 +msgid "Message to members only" +msgstr "Повідомлення лише членам" + +#: chat.php:306 +msgid "Message to staff only" +msgstr "Повідомлення лише модераторам" + +#: chat.php:307 +msgid "Message to admins only" +msgstr "Повідомлення лише адміністраторам" + +#: chat.php:308 +msgid "Private message" +msgstr "Особисте повідомлення" + +#: chat.php:309 +msgid "Attachement" +msgstr "Прикріплення" + +#: chat.php:312 +msgid "Member timeout (minutes)" +msgstr "Тайм-аут користувачів (хвилин)" + +#: chat.php:313 +msgid "Guest timeout (minutes)" +msgstr "Тайм-аут гостей (хвилин)" + +#: chat.php:314 +msgid "Kick penalty (minutes)" +msgstr "Бан (хвилин)" + +#: chat.php:315 +msgid "Waiting room time (seconds)" +msgstr "Час очікування в гостьовий (секунд)" + +#: chat.php:316 +msgid "Captcha timeout (seconds)" +msgstr "Тайм-аут Captcha (секунд)" + +#: chat.php:317 +msgid "Message timeout (minutes)" +msgstr "Тайм-аут повідомлення (хвилин)" + +#: chat.php:318 +msgid "Message limit (public)" +msgstr "Ліміт повідомлень (загальних)" + +#: chat.php:319 +msgid "Maximal message length" +msgstr "Максимальна довжина повідомлення" + +#: chat.php:320 +msgid "Maximal nickname length" +msgstr "Максимальна довжина імені" + +#: chat.php:321 +msgid "Minimal password length" +msgstr "Мінімальна довжина пароля" + +#: chat.php:322 +msgid "Default message reload time (seconds)" +msgstr "За замовчуванням час перезавантаження повідомлення (секунди)" + +#: chat.php:323 +msgid "Number of notes revisions to keep" +msgstr "Число виправлень для збереження" + +#: chat.php:324 +msgid "Maximum upload size in KB" +msgstr "Максимальний розмір файлу в КБ" + +#: chat.php:325 +msgid "Enable file uploads" +msgstr "Дозволити файлові завантаження" + +#: chat.php:326 +msgid "Lowest refresh rate" +msgstr "" + +#: chat.php:327 +msgid "Highest refresh rate" +msgstr "" + +#: chat.php:330 +msgid "Rules (html)" +msgstr "Правила (html)" + +#: chat.php:331 +msgid "CSS Style" +msgstr "CSS стилі" + +#: chat.php:332 +msgid "Chat disabled message (html)" +msgstr "Чат відключив повідомлення (html)" + +#: chat.php:335 +msgid "" +"Date " +"formating" +msgstr "" +"Формат " +"дати" + +#: chat.php:336 +msgid "Characters used in Captcha" +msgstr "Символи, що використовуються в Captcha" + +#: chat.php:337 +msgid "Custom redirection script" +msgstr "Скрипт користувача перенаправлення" + +#: chat.php:338 +msgid "Chat name" +msgstr "Назва чату" + +#: chat.php:339 +msgid "Send mail using this address" +msgstr "Надіслати повідомлення на цю адресу" + +#: chat.php:340 +msgid "Send mail to this address" +msgstr "Надіслати повідомлення за цією адресою" + +#: chat.php:341 +msgid "Nickname regex" +msgstr "Нік regex" + +#: chat.php:342 +msgid "Password regex" +msgstr "Пароль regex" + +#: chat.php:343 +msgid "Link to external CSS file (on your own server)" +msgstr "Посилання на зовнішній CSS файл" + +#: chat.php:344 +msgid "Meta description (best 50 - 160 characters for SEO)" +msgstr "" + +#: chat.php:345 +msgid "Prepend this text to system messages" +msgstr "Цей текст передує повідомленням із системи" + +#: chat.php:348 chat.php:728 chat.php:1225 +msgid "Change Guestaccess" +msgstr "Змінити гостьовий доступ" + +#: chat.php:349 +msgid "Enable global Password" +msgstr "" + +#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433 +msgid "Global Password:" +msgstr "Глобальний пароль:" + +#: chat.php:351 chat.php:819 +msgid "Captcha" +msgstr "Captcha" + +#: chat.php:352 chat.php:775 chat.php:835 +msgid "Only for guests" +msgstr "Тільки для гостей" + +#: chat.php:353 chat.php:1220 +msgid "Topic" +msgstr "Тема" + +#: chat.php:354 chat.php:781 +msgid "Let guests register themselves" +msgstr "Дозволити гостям реєструватися самостійно" + +#: chat.php:355 chat.php:862 +msgid "Default time zone" +msgstr "Годинний пояс за промовчанням" + +#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259 +msgid "Initial Setup" +msgstr "Початкова установка" + +#: chat.php:588 +#, php-format +msgid "Redirecting to: %s" +msgstr "Перенаправлення на: %s" + +#: chat.php:595 +#, php-format +msgid "" +"Dangerous non-http link requested, copy paste this link if you are really " +"sure: %s" +msgstr "" + +#: chat.php:597 +#, php-format +msgid "Non-http link requested: %s" +msgstr "Запитане посилання не http: %s" + +#: chat.php:599 +#, php-format +msgid "If it's not working, try this one: %s" +msgstr "Якщо це не працює, спробуйте це: %s" + +#: chat.php:609 +msgid "Access denied" +msgstr "У доступі відмовлено" + +#: chat.php:609 +#, 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 +msgid "Logout" +msgstr "Вийти" + +#: chat.php:636 +msgid "Copy:" +msgstr "Копія:" + +#: chat.php:724 +msgid "Chat Setup" +msgstr "Установка чату" + +#: chat.php:734 chat.php:1233 +msgid "Allow" +msgstr "Дозволити" + +#: chat.php:739 chat.php:1238 +msgid "Allow with waitingroom" +msgstr "Дозволити з гостьовою" + +#: chat.php:744 chat.php:1243 +msgid "Require moderator approval" +msgstr "Вимагати схвалення модератора" + +#: chat.php:749 chat.php:1248 +msgid "Only members" +msgstr "Лише учасники" + +#: chat.php:754 chat.php:1251 +msgid "Disable chat" +msgstr "Вимкнути чат" + +#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229 +msgid "Disabled" +msgstr "Вимкнено" + +#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219 +msgid "Enabled" +msgstr "Увімкнено" + +#: chat.php:792 +msgid "As applicant" +msgstr "Як заявник" + +#: chat.php:797 +msgid "As member" +msgstr "Як член" + +#: chat.php:800 +msgid "System messages" +msgstr "Системні повідомлення" + +#: chat.php:822 chat.php:1053 +#, php-format +msgid "" +"The %s extension of PHP is required for this feature. Please install it " +"first." +msgstr "" +"%s розширення для PHP вимагається для цієї функції. Будь ласка, встановіть " +"його спочатку." + +#: chat.php:847 +msgid "Simple" +msgstr "Проста" + +#: chat.php:852 +msgid "Moderate" +msgstr "Помірна" + +#: chat.php:857 +msgid "Extreme" +msgstr "Сильна" + +#: chat.php:906 chat.php:1548 chat.php:1610 +msgid "Apply" +msgstr "Застосувати" + +#: chat.php:910 chat.php:1050 +msgid "Backup and restore" +msgstr "Бекап та відновлення" + +#: chat.php:912 +msgid "Destroy chat" +msgstr "Знищити чат" + +#: chat.php:1057 chat.php:1066 +msgid "Settings" +msgstr "Налаштування" + +#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575 +#: chat.php:1622 +msgid "Filter" +msgstr "Фільтр" + +#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538 +msgid "Members" +msgstr "Учасники" + +#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322 +msgid "Notes" +msgstr "Примітки" + +#: chat.php:1061 +msgid "Backup" +msgstr "Бекап" + +#: chat.php:1070 +msgid "Restore" +msgstr "Відновлення" + +#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260 +msgid "Go to the Setup-Page" +msgstr "Перейти до сторінки установки" + +#: chat.php:1082 chat.php:1091 chat.php:1949 +msgid "Are you sure?" +msgstr "Ви впевнені?" + +#: chat.php:1083 chat.php:1092 chat.php:1956 +msgid "Yes" +msgstr "Так" + +#: chat.php:1084 chat.php:1093 chat.php:1963 +msgid "No" +msgstr "Ні" + +#: chat.php:1101 chat.php:4259 +msgid "Superadmin Login" +msgstr "Вхід для суперадміністратора" + +#: chat.php:1102 +msgid "Superadmin Nickname:" +msgstr "Нік суперадміністратора:" + +#: chat.php:1103 +msgid "Superadmin Password:" +msgstr "Пароль суперадміністратора:" + +#: chat.php:1104 +msgid "Confirm Password:" +msgstr "Підтвердження пароля:" + +#: chat.php:1105 +#, fuzzy +msgid "Initialise Chat" +msgstr "Ініціалізація чату" + +#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439 +msgid "Change language:" +msgstr "Змінити мову:" + +#: chat.php:1117 +msgid "Database successfully updated!" +msgstr "База даних успішно оновлена!" + +#: chat.php:1125 chat.php:1326 chat.php:2407 +msgid "Nickname:" +msgstr "Нік:" + +#: chat.php:1126 chat.php:1327 chat.php:2408 +msgid "Password:" +msgstr "Пароль:" + +#: chat.php:1128 +msgid "Login" +msgstr "Увійти" + +#: chat.php:1129 +msgid "Forgot login?" +msgstr "" + +#: chat.php:1142 chat.php:1306 +msgid "Reset password" +msgstr "Скидання пароля" + +#: chat.php:1150 +#, php-format +msgid "" +"Successfully reset password for username %s. Please remove the password " +"reset define from the script again." +msgstr "" + +#: 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 "" + +#: 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 +msgid "(choose)" +msgstr "(вибрати)" + +#: chat.php:1170 +msgid "All guests" +msgstr "Всі гості" + +#: chat.php:1182 +msgid "Administrative functions" +msgstr "Адміністративні функції" + +#: chat.php:1188 +msgid "Clean messages" +msgstr "Очищення повідомлень" + +#: chat.php:1191 +msgid "Whole room" +msgstr "Спільна кімната" + +#: chat.php:1192 +msgid "Selection" +msgstr "Вибір" + +#: chat.php:1193 +msgid "Following nickname:" +msgstr "За ніком:" + +#: chat.php:1200 +msgid "Clean" +msgstr "Очистити" + +#: chat.php:1202 +#, php-format +msgid "Kick Chatter (%d minutes)" +msgstr "Бан (%d хвилин)" + +#: chat.php:1204 +msgid "Kickmessage:" +msgstr "Повідомлення забаненому:" + +#: chat.php:1205 +msgid "Purge messages" +msgstr "Очищення повідомлень" + +#: chat.php:1206 chat.php:1388 chat.php:1546 chat.php:1580 chat.php:1591 +#: chat.php:2042 +msgid "Kick" +msgstr "Бан" + +#: chat.php:1208 +msgid "Logout inactive Chatter" +msgstr "Вихід неактивного чату" + +#: chat.php:1212 +msgid "View active sessions" +msgstr "Активні сесії" + +#: chat.php:1212 chat.php:1603 +msgid "Linkfilter" +msgstr "Фільтрування посилань" + +#: chat.php:1217 +msgid "View" +msgstr "Перегляд" + +#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582 +#: chat.php:1626 +msgid "Change" +msgstr "Змінити" + +#: chat.php:1256 +msgid "Register applicant" +msgstr "Додати заявника" + +#: chat.php:1264 chat.php:1322 chat.php:1328 +msgid "Register" +msgstr "Зареєструвати" + +#: chat.php:1294 +msgid "Delete from database" +msgstr "Видалити з бази даних" + +#: chat.php:1294 +msgid "Deny access (!)" +msgstr "Заборонити доступ (!)" + +#: chat.php:1296 +msgid "Set to applicant (SG)" +msgstr "Набір до претендента (SG)" + +#: chat.php:1298 +msgid "Set to regular member" +msgstr "Встановити учасника" + +#: chat.php:1299 +msgid "Set to moderator (M)" +msgstr "Набір модератора (M)" + +#: chat.php:1300 +msgid "Set to supermod (SM)" +msgstr "Набір супермодератора (SM)" + +#: chat.php:1302 +msgid "Set to admin (A)" +msgstr "Набір адміністратора (A)" + +#: chat.php:1314 +msgid "Register Guest" +msgstr "Реєстрація гостей" + +#: chat.php:1324 +msgid "Register new Member" +msgstr "Реєстрація нових учасників" + +#: chat.php:1332 chat.php:1408 chat.php:1595 chat.php:1636 chat.php:1710 +#: chat.php:1924 +msgid "Reload" +msgstr "Перезавантажити" + +#: chat.php:1345 +msgid "Active Sessions" +msgstr "Активні сеанси" + +#: chat.php:1346 chat.php:1873 +msgid "Nickname" +msgstr "Нік" + +#: chat.php:1346 +msgid "Timeout in" +msgstr "Час очікування" + +#: chat.php:1346 chat.php:1873 +msgid "User-Agent" +msgstr "Користувач-Агент" + +#: chat.php:1350 +msgid "IP-Address" +msgstr "IP-адреса" + +#: chat.php:1351 +msgid "Actions" +msgstr "Дії" + +#: chat.php:1393 +msgid "Unban" +msgstr "Розблокувати" + +#: chat.php:1416 +msgid "Incorrect regular expression!" +msgstr "Неправильний регулярний вираз!" + +#: chat.php:1416 chat.php:1424 +#, 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." +msgstr "" +"Текст у полі занадто довгий. Можна використати максимум 255 символів, " +"спробуйте розбити поле на частини." + +#: chat.php:1541 chat.php:1606 +msgid "Filter ID:" +msgstr "Фільтр ID:" + +#: chat.php:1542 chat.php:1607 +msgid "Match" +msgstr "Збіг" + +#: chat.php:1543 chat.php:1608 +msgid "Replace" +msgstr "Замінювати" + +#: chat.php:1544 chat.php:1578 chat.php:1589 +msgid "Allow in PM" +msgstr "Дозволити в личку" + +#: chat.php:1545 chat.php:1579 chat.php:1590 chat.php:1609 chat.php:1625 +#: chat.php:1633 +msgid "Regex" +msgstr "Регулярний вираз" + +#: chat.php:1547 chat.php:1581 chat.php:1592 +msgid "Case sensitive" +msgstr "Регістр-чутливий" + +#: chat.php:1586 chat.php:1630 +msgid "New filter:" +msgstr "Новий фільтр:" + +#: chat.php:1593 chat.php:1634 +msgid "Add" +msgstr "Додати" + +#: chat.php:1691 +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 +msgid "Back to the login page." +msgstr "Повернутися до сторінки входу." + +#: chat.php:1709 +msgid "Bottom" +msgstr "Вниз" + +#: chat.php:1710 +msgid "Manual refresh required" +msgstr "Потрібно оновити сторінку вручну" + +#: chat.php:1726 +msgid "Top" +msgstr "Вгору" + +#: chat.php:1734 chat.php:1940 chat.php:1942 +msgid "Delete selected messages" +msgstr "Видалити вибрані повідомлення" + +#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281 +msgid "Back to the chat." +msgstr "Повернутися до чату." + +#: chat.php:1774 chat.php:1791 +msgid "Admin notes" +msgstr "Примітки адміністратора" + +#: chat.php:1777 chat.php:1788 +msgid "Staff notes" +msgstr "Службові нотатки" + +#: chat.php:1811 +msgid "Notes saved!" +msgstr "Нотатки збережені!" + +#: chat.php:1835 chat.php:2122 +#, php-format +msgid "Last edited by %1$s at %2$s" +msgstr "Востаннє редагував %1$s %2$s" + +#: chat.php:1848 +msgid "Save notes" +msgstr "Зберегти нотатки" + +#: chat.php:1850 +msgid "Revisions:" +msgstr "Виправлення:" + +#: chat.php:1853 +msgid "Older" +msgstr "Старі" + +#: chat.php:1857 +msgid "Newer" +msgstr "Нові" + +#: chat.php:1868 chat.php:1914 +msgid "Waiting room" +msgstr "Гостьова" + +#: chat.php:1880 +msgid "Allow checked" +msgstr "Дозволити перевірку" + +#: chat.php:1881 +msgid "Allow all" +msgstr "Дозволити всім" + +#: chat.php:1882 +msgid "Deny checked" +msgstr "Заборонити перевірку" + +#: chat.php:1883 +msgid "Deny all" +msgstr "Заборонити всім" + +#: chat.php:1883 +msgid "Send message to denied:" +msgstr "Надіслати повідомлення з відмовою:" + +#: chat.php:1884 +msgid "Submit" +msgstr "Надіслати" + +#: chat.php:1886 +msgid "No more entry requests to approve." +msgstr "Більш запитів для затвердження немає." + +#: chat.php:1916 +#, 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 +#, 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 +#, 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 +msgid "Exit Chat" +msgstr "Вихід" + +#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430 +msgid "Rules" +msgstr "Правила" + +#: chat.php:1985 +msgid "Send to" +msgstr "Надіслати" + +#: chat.php:1990 +msgid "All chatters" +msgstr "Все в чаті" + +#: chat.php:1996 +msgid "Members only" +msgstr "Учасники" + +#: chat.php:2003 +msgid "Staff only" +msgstr "Службові" + +#: chat.php:2010 +msgid "Admin only" +msgstr "Адміністратор" + +#: chat.php:2019 +msgid "(offline)" +msgstr "(оффлайн)" + +#: chat.php:2043 +msgid "Also purge messages" +msgstr "Також очистити повідомлення" + +#: chat.php:2050 +msgid "Delete last message" +msgstr "Видалити останнє повідомлення" + +#: chat.php:2055 +msgid "Delete all messages" +msgstr "Видалити всі повідомлення" + +#: chat.php:2057 +msgid "Switch to single-line" +msgstr "Включити однорядковий режим" + +#: chat.php:2059 +msgid "Switch to multi-line" +msgstr "Увімкнути багаторядковий режим" + +#: chat.php:2070 +#, php-format +msgid "Welcome %s!" +msgstr "Ласкаво просимо %s!" + +#: chat.php:2071 +#, 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 секунд, Вам потрібно увімкнути " +"автоматичне оновлення (meta refresh) у вашому браузері. Також переконайтеся " +"у відсутності веб-фільтра, перевірте налаштування проксі або плагіни " +"браузера на блокування автоматичного оновлення! Приклади плагінів: " +"\"Polipo\", \"NoScript\", і т.д.
Проте, (у разі помилок перезавантаження " +"сторінок через сервер/проксі) ви завжди можете використовувати кнопки внизу " +"сторінки для ручного оновлення сторінки." + +#: chat.php:2087 +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." +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 "" +"Якщо ви хочете вбудувати зображення у свій пост, прикріпіть [img] перед " +"вашим URL-зображенням. Приклад: [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 "" +"Учасники: Ви маєте кілька варіантів налаштувань у вашому профілі. Можна " +"настроїти шрифт та змінити свій пароль у будь-який час." + +#: 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 "" +"Модератори: Зверніть увагу на кнопку адміністратора внизу. Це перенесе вас " +"на сторінку, де ви можете очистити кімнату, забанити, переглянути всі " +"активні сеанси та відключити гостьовий доступ, якщо необхідно." + +#: chat.php:2097 +msgid "" +"Admins: You'll be furthermore able to register guests, edit members and " +"register new nicknames." +msgstr "" +"Адміністратори: Ви здатні реєструвати гостей та нові ніки без їх присутності " +"в кімнаті, а також редагувати користувачів." + +#: chat.php:2135 +msgid "Your Profile" +msgstr "Ваш профіль" + +#: chat.php:2144 +msgid "Don't ignore anymore" +msgstr "Більше не ігнорувати" + +#: chat.php:2152 +msgid "Ignore" +msgstr "Ігнорувати" + +#: chat.php:2163 +#, php-format +msgid "Refresh rate (%1$d-%2$d seconds)" +msgstr "Частота оновлення (%1$d-%2$d секунд)" + +#: chat.php:2167 chat.php:2170 +msgid "View examples" +msgstr "Подивитися приклади" + +#: chat.php:2174 +msgid "Fontface" +msgstr "Шрифт" + +#: chat.php:2175 +msgid "Room Default" +msgstr "За замовчуванням" + +#: chat.php:2188 +msgid "Bold" +msgstr "Жирний" + +#: chat.php:2192 +msgid "Italic" +msgstr "Курсів" + +#: chat.php:2196 +msgid "Small" +msgstr "Маленький" + +#: chat.php:2199 +msgid "Example for your chosen font" +msgstr "Приклад вибраного вами шрифту" + +#: chat.php:2203 +msgid "Autoscroll (for old browsers or top-to-bottom sort)." +msgstr "Автозавантаження (для старих браузерів, для сортування зверху-вниз)." + +#: chat.php:2234 +msgid "For everyone" +msgstr "Для всіх" + +#: chat.php:2239 +msgid "For members only" +msgstr "Тільки для членів" + +#: chat.php:2244 +msgid "For staff only" +msgstr "Тільки для модераторів" + +#: chat.php:2248 +msgid "Time zone" +msgstr "Годинний пояс" + +#: chat.php:2261 +msgid "Change Password" +msgstr "Змінити пароль" + +#: chat.php:2263 +msgid "Old password:" +msgstr "Старий пароль:" + +#: chat.php:2264 +msgid "New password:" +msgstr "Новий пароль:" + +#: chat.php:2265 +msgid "Confirm new password:" +msgstr "Підтвердження:" + +#: chat.php:2268 +msgid "Change Nickname" +msgstr "Змінити ім`я" + +#: chat.php:2269 +msgid "New nickname:" +msgstr "Нове ім`я:" + +#: chat.php:2273 +msgid "Save changes" +msgstr "Зберегти зміни" + +#: chat.php:2275 +msgid "Delete account" +msgstr "Видалити обліковий запис" + +#: chat.php:2301 +msgid "Reload Post Box" +msgstr "Перезавантажити поштову скриньку" + +#: chat.php:2304 +msgid "Reload Messages" +msgstr "Оновити" + +#: chat.php:2307 +msgid "Profile" +msgstr "Профіль" + +#: chat.php:2311 chat.php:2528 +msgid "Admin" +msgstr "Адміністратор" + +#: chat.php:2318 +msgid "View public notes" +msgstr "Читати профілі користувачів" + +#: chat.php:2325 +msgid "Clone" +msgstr "Клонувати" + +#: chat.php:2334 +msgid "Rearrange" +msgstr "Перебудувати" + +#: chat.php:2337 +msgid "Rules & Help" +msgstr "Правила та допомога" + +#: chat.php:2358 chat.php:2362 +msgid "File not found!" +msgstr "Файл не виявлено!" + +#: chat.php:2370 +#, php-format +msgid "Bye %s, visit again soon!" +msgstr "Поки %s, заходьте знову!" + +#: chat.php:2377 +msgid "Colourtable" +msgstr "Приклади кольорів" + +#: chat.php:2388 +msgid "Back to your Profile" +msgstr "Повернутися до вашого профілю" + +#: chat.php:2412 +msgid "Repeat password
to register" +msgstr "Повторіть пароль
Зареєструватися" + +#: chat.php:2412 +msgid "(optional)" +msgstr "(опціонально)" + +#: chat.php:2417 +msgid "Guests, choose a colour:" +msgstr "Виберіть колір:" + +#: chat.php:2417 +msgid "Random Colour" +msgstr "Випадковий колір" + +#: chat.php:2421 chat.php:2435 chat.php:2569 +msgid "Sorry, currently members only!" +msgstr "Вибачте, входять лише зареєстровані!" + +#: chat.php:2423 chat.php:2437 +msgid "Enter Chat" +msgstr "Увійти в чат" + +#: chat.php:2457 +#, php-format +msgid "Error: %s" +msgstr "Помилка: %s" + +#: chat.php:2467 +msgid "Fatal error" +msgstr "Фатальна помилка" + +#: chat.php:2470 +#, php-format +msgid "Fatal error: %s" +msgstr "Фатальна помилка: %s" + +#: chat.php:2482 chat.php:2693 +msgid "Failed login attempt(s)" +msgstr "Невдала спроба входу(и)" + +#: chat.php:2489 +#, php-format +msgid "Read %d messages in your inbox" +msgstr "Прочитайте %d вхідних повідомлень" + +#: chat.php:2498 +#, php-format +msgid "%d new guests to approve" +msgstr "%d нові гості для схвалення" + +#: chat.php:2530 +msgid "Admin:" +msgstr "Адміністратор:" + +#: chat.php:2533 +msgid "Staff" +msgstr "Службові" + +#: chat.php:2535 +msgid "Staff:" +msgstr "Службові:" + +#: chat.php:2540 +msgid "Members:" +msgstr "Учасники:" + +#: chat.php:2542 +msgid "Guests" +msgstr "Гості" + +#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092 +#, 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 +#, 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 +msgid "Wrong global Password!" +msgstr "Неправильний глобальний пароль!" + +#: chat.php:2591 chat.php:2612 +msgid "Wrong Captcha" +msgstr "Неправильна капча" + +#: chat.php:2596 chat.php:2604 +msgid "Captcha already used or timed out." +msgstr "Захистний код вже використовується або час закінчився." + +#: chat.php:2652 +msgid "A user with this nickname is already logged in." +msgstr "Користувач з поточним ім`ям вже в мережі." + +#: chat.php:2652 chat.php:2933 chat.php:3176 +msgid "Wrong Password!" +msgstr "Неправильний пароль!" + +#: chat.php:2696 +msgid "Dismiss" +msgstr "Визнав" + +#: chat.php:2747 chat.php:3171 chat.php:4096 +msgid "Password confirmation does not match!" +msgstr "Введені паролі не співпадають!" + +#: chat.php:2859 +msgid "Invalid/expired session" +msgstr "Недійсна/з терміном сесія" + +#: chat.php:2875 chat.php:3412 +msgid "You have been kicked!" +msgstr "Забанен!" + +#: chat.php:2885 +#, php-format +msgid "Currently %d chatter(s) in room:" +msgstr "Зараз %d розмова(ів) у кімнаті:" + +#: chat.php:2933 +msgid "This nickname is a registered member." +msgstr "Це ім`я належить зареєстрованому користувачеві." + +#: chat.php:2960 chat.php:3001 +#, php-format +msgid "%s is already registered." +msgstr "%s вже зареєстрований." + +#: chat.php:2969 chat.php:2990 +#, php-format +msgid "Can't register %s" +msgstr "Ви не можете реєструватися %s" + +#: chat.php:2978 chat.php:3023 +#, php-format +msgid "%s successfully registered." +msgstr "%s успішно зареєстрований." + +#: chat.php:3031 chat.php:3036 +#, php-format +msgid "Can't change status of %s" +msgstr "Неможливо змінити статус %s" + +#: chat.php:3047 +#, php-format +msgid "%s successfully deleted from database." +msgstr "%s успішно видалено з бази даних." + +#: chat.php:3056 +#, php-format +msgid "Status of %s successfully changed." +msgstr "Статус %s успішно змінено." + +#: chat.php:3073 +#, php-format +msgid "Successfully reset password for %s" +msgstr "" + +#: chat.php:3075 +#, php-format +msgid "Can't reset password for %s" +msgstr "" + +#: chat.php:3190 +msgid "Your profile has successfully been saved." +msgstr "Ваш профіль був успішно збережений." + +#: chat.php:3202 +msgid "Nickname is already taken" +msgstr "Ім`я вже зайняте" + +#: chat.php:3714 +msgid "system message" +msgstr "системне повідомлення" + +#: chat.php:3921 +msgid "Beige" +msgstr "Бежевий" + +#: chat.php:3922 +msgid "Black" +msgstr "Чорний" + +#: chat.php:3923 +msgid "Blue" +msgstr "Синій" + +#: chat.php:3924 +msgid "Blue violet" +msgstr "Фіолетово-синій" + +#: chat.php:3925 +msgid "Brown" +msgstr "Коричневий" + +#: chat.php:3926 +msgid "Cyan" +msgstr "Блакитний" + +#: chat.php:3927 +msgid "Dark blue" +msgstr "Темно-синій" + +#: chat.php:3928 +msgid "Dark green" +msgstr "Темно-зелений" + +#: chat.php:3929 +msgid "Dark red" +msgstr "Темно-червоний" + +#: chat.php:3930 +msgid "Dark violet" +msgstr "Темно-фіолетовий" + +#: chat.php:3931 +msgid "Sky blue" +msgstr "Блакитне небо" + +#: chat.php:3932 +msgid "Gold" +msgstr "Золотий" + +#: chat.php:3933 +msgid "Grey" +msgstr "Сірий" + +#: chat.php:3934 +msgid "Green" +msgstr "Зелений" + +#: chat.php:3935 +msgid "Hot pink" +msgstr "Яскраво-рожевий" + +#: chat.php:3936 +msgid "Indigo" +msgstr "Індиго" + +#: chat.php:3937 +msgid "Light blue" +msgstr "Світло-синій" + +#: chat.php:3938 +msgid "Light green" +msgstr "Світло-зелений" + +#: chat.php:3939 +msgid "Lime green" +msgstr "Зелений лайм" + +#: chat.php:3940 +msgid "Magenta" +msgstr "Пурпурний" + +#: chat.php:3941 +msgid "Olive" +msgstr "Оливковий" + +#: chat.php:3942 +msgid "Orange" +msgstr "Помаранчевий" + +#: chat.php:3943 +msgid "Orange red" +msgstr "Оранжево-червоний" + +#: chat.php:3944 +msgid "Purple" +msgstr "Фіолетовий" + +#: chat.php:3945 +msgid "Red" +msgstr "Червоний" + +#: chat.php:3946 +msgid "Royal blue" +msgstr "Королівський синій" + +#: chat.php:3947 +msgid "Sea green" +msgstr "Морський зелений" + +#: chat.php:3948 +msgid "Sienna" +msgstr "Сієна" + +#: chat.php:3949 +msgid "Silver" +msgstr "Срібний" + +#: chat.php:3950 +msgid "Tan" +msgstr "Засмага" + +#: chat.php:3951 +msgid "Teal" +msgstr "Чирок" + +#: chat.php:3952 +msgid "Violet" +msgstr "Фіолетовий" + +#: chat.php:3953 +msgid "White" +msgstr "Білий" + +#: chat.php:3954 +msgid "Yellow" +msgstr "Жовтий" + +#: chat.php:3955 +msgid "Yellow green" +msgstr "Жовто-зелений" + +#: chat.php:4077 +msgid "Successfully destroyed chat" +msgstr "Чат успішно знищено" + +#: chat.php:4086 +msgid "" +"Database tables already exist! To continue, you have to delete these tables " +"manually first." +msgstr "" +"Таблиці бази даних вже є! Щоб продовжити, ви повинні спочатку видалити ці " +"таблиці вручну." + +#: chat.php:4089 +msgid "A Superadmin already exists!" +msgstr "Суперадміністратор вже існує!" + +#: chat.php:4182 chat.php:4369 +#, php-format +msgid "%s - " +msgstr "%s - " + +#: chat.php:4183 chat.php:4369 +#, php-format +msgid "[M] %s - " +msgstr "" + +#: chat.php:4184 chat.php:4369 +#, php-format +msgid "[Staff] %s - " +msgstr "" + +#: chat.php:4185 chat.php:4369 +#, php-format +msgid "[Admin] %s - " +msgstr "" + +#: chat.php:4186 chat.php:4369 +#, php-format +msgid "[%1$s to %2$s] - " +msgstr "" + +#: chat.php:4187 +#, php-format +msgid "%s entered the chat." +msgstr "%s увійшов до чату." + +#: chat.php:4188 +#, php-format +msgid "%s left the chat." +msgstr "%s залишив чат." + +#: chat.php:4189 +#, php-format +msgid "%s is now a registered member." +msgstr "%s тепер зареєстрований член." + +#: chat.php:4190 +#, php-format +msgid "%s is now a registered applicant." +msgstr "%s тепер зареєстрований заявник." + +#: chat.php:4191 +#, php-format +msgid "%s has been kicked." +msgstr "%s виключено з чату." + +#: chat.php:4192 +#, php-format +msgid "%s have been kicked." +msgstr "%s виключено з чату." + +#: chat.php:4193 +msgid "All guests have been kicked." +msgstr "Всі гості виключені з чату." + +#: chat.php:4194 +#, php-format +msgid "%s has been cleaned." +msgstr "%s було очищено." + +#: chat.php:4202 chat.php:4396 +msgid "Temporarily disabled" +msgstr "Тимчасово вимкнено" + +#: chat.php:4218 chat.php:4594 +msgid "A chat community" +msgstr "" + +#: chat.php:4256 +msgid "Successfully registered!" +msgstr "Успішно зареєстровано!" + +#: chat.php:4522 chat.php:4721 chat.php:4728 +msgid "No connection to database!" +msgstr "Немає з'єднання з базою даних!" + +#: chat.php:4531 +msgid "" +"Note: Default CSS is now hardcoded and can be removed from the CSS setting" +msgstr "" +"Замітка: по встановленню CSS він важкий і можна прибрати його в CSS " +"налаштуваннях" + +#: chat.php:4611 +#, 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 +#, php-format +msgid "" +"The %s extension of PHP is required for the selected database driver. Please " +"install it first." +msgstr "" +"%s розширення для PHP вимагається для драйверів бази даних. Будь ласка, " +"встановіть його спочатку." + +#: 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 "" +"Немає з`єднання з базою даних, будь ласка, створіть базу даних та змініть " +"сценарій, щоб використовувати правильну базу даних із заданим ім`ям " +"користувача та паролем!" + +#: 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 "" diff --git a/locale/zh_CN/LC_MESSAGES/le-chat-php.mo b/locale/zh_CN/LC_MESSAGES/le-chat-php.mo new file mode 100644 index 0000000..2db718e Binary files /dev/null and b/locale/zh_CN/LC_MESSAGES/le-chat-php.mo differ diff --git a/locale/zh_CN/LC_MESSAGES/le-chat-php.po b/locale/zh_CN/LC_MESSAGES/le-chat-php.po new file mode 100644 index 0000000..70df235 --- /dev/null +++ b/locale/zh_CN/LC_MESSAGES/le-chat-php.po @@ -0,0 +1,1606 @@ +# 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: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-01-18 21:32+0100\n" +"PO-Revision-Date: 2023-01-18 21:40+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: zh_CN\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: Poedit 3.1.1\n" + +#: chat.php:261 +msgid "Enable applicants" +msgstr "启用申请人" + +#: chat.php:262 +msgid "Embed images" +msgstr "嵌入图像" + +#: chat.php:263 chat.php:2202 +msgid "Show Timestamps" +msgstr "显示时间戳" + +#: chat.php:264 +msgid "Show session-IP" +msgstr "显示会话-IP" + +#: chat.php:265 +msgid "Members can kick, if no moderator is present" +msgstr "如果没有主持人,会员可以踢" + +#: chat.php:266 +msgid "Members can always kick" +msgstr "会员总是可以驱逐客人" + +#: chat.php:267 +msgid "Force redirection" +msgstr "强制重定向" + +#: chat.php:268 +msgid "Incognito mode" +msgstr "隐身模式" + +#: chat.php:269 +msgid "Send mail on new public message" +msgstr "发送新公共邮件的邮件" + +#: chat.php:270 +msgid "Fallback to waiting room, if no moderator is present to approve guests" +msgstr "如果没有主持人来批准客人,请回到候诊室" + +#: chat.php:271 +msgid "Disable private messages" +msgstr "禁用私人消息" + +#: chat.php:272 chat.php:2223 +msgid "Enable offline inbox" +msgstr "启用离线收件箱" + +#: chat.php:273 +msgid "Show a greeting message before showing the messages" +msgstr "在显示消息之前显示问候消息" + +#: chat.php:274 chat.php:2204 +msgid "Sort messages from top to bottom" +msgstr "从上到下对消息进行排序" + +#: chat.php:275 chat.php:2205 +msgid "Hide list of chatters" +msgstr "隐藏聊天列表" + +#: chat.php:276 chat.php:1780 chat.php:1794 +msgid "Personal notes" +msgstr "" + +#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110 +msgid "Public notes" +msgstr "用户配置文件" + +#: chat.php:278 +msgid "Apply kick filter on moderators" +msgstr "" + +#: chat.php:279 +msgid "Show who kicks people or purges all messages." +msgstr "显示谁驱逐人或清除所有消息。" + +#: chat.php:280 +msgid "Hide reload post box button" +msgstr "" + +#: chat.php:281 +msgid "Hide reload messages button" +msgstr "" + +#: chat.php:282 +msgid "Hide profile button" +msgstr "" + +#: chat.php:283 +msgid "Hide admin button" +msgstr "" + +#: chat.php:284 +msgid "Hide notes button" +msgstr "" + +#: chat.php:285 +msgid "Hide clone button" +msgstr "" + +#: chat.php:286 +msgid "Hide rearrange button" +msgstr "" + +#: chat.php:287 +msgid "Hide help button" +msgstr "" + +#: chat.php:288 +msgid "Apply postbox delete button globally" +msgstr "" + +#: chat.php:289 +msgid "Allow enhancing functionality with JavaScript" +msgstr "" + +#: chat.php:292 chat.php:2170 +msgid "Background colour" +msgstr "背景色" + +#: chat.php:293 chat.php:2167 +msgid "Font colour" +msgstr "字体颜色" + +#: chat.php:296 +msgid "Entrance" +msgstr "入口" + +#: chat.php:297 +msgid "Leaving" +msgstr "离开" + +#: chat.php:298 +msgid "Member registered" +msgstr "成员注册" + +#: chat.php:299 +msgid "Applicant registered" +msgstr "邀请人注册" + +#: chat.php:300 +msgid "Kicked" +msgstr "踢出" + +#: chat.php:301 +msgid "Multiple kicked" +msgstr "批量踢出" + +#: chat.php:302 +msgid "All kicked" +msgstr "全部踢出" + +#: chat.php:303 +msgid "Room cleaned" +msgstr "房间清理" + +#: chat.php:304 +msgid "Message to all" +msgstr "给所有人的信息" + +#: chat.php:305 +msgid "Message to members only" +msgstr "仅向会员发送消息" + +#: chat.php:306 +msgid "Message to staff only" +msgstr "仅向员工发送消息" + +#: chat.php:307 +msgid "Message to admins only" +msgstr "仅向管理员发送消息" + +#: chat.php:308 +msgid "Private message" +msgstr "私人信息" + +#: chat.php:309 +msgid "Attachement" +msgstr "附件" + +#: chat.php:312 +msgid "Member timeout (minutes)" +msgstr "会员超时(分钟)" + +#: chat.php:313 +msgid "Guest timeout (minutes)" +msgstr "访客超时(分钟)" + +#: chat.php:314 +msgid "Kick penalty (minutes)" +msgstr "踢罚(分钟)" + +#: chat.php:315 +msgid "Waiting room time (seconds)" +msgstr "等候室时间(秒)" + +#: chat.php:316 +msgid "Captcha timeout (seconds)" +msgstr "验证码超时(秒)" + +#: chat.php:317 +msgid "Message timeout (minutes)" +msgstr "消息超时(分钟)" + +#: chat.php:318 +msgid "Message limit (public)" +msgstr "消息限制(公开)" + +#: chat.php:319 +msgid "Maximal message length" +msgstr "最大消息长度" + +#: chat.php:320 +msgid "Maximal nickname length" +msgstr "最大昵称长度" + +#: chat.php:321 +msgid "Minimal password length" +msgstr "最小密码长度" + +#: chat.php:322 +msgid "Default message reload time (seconds)" +msgstr "默认消息重新加载时间(秒)" + +#: chat.php:323 +msgid "Number of notes revisions to keep" +msgstr "要保留的备注数量" + +#: chat.php:324 +msgid "Maximum upload size in KB" +msgstr "最大上载大小(KB)" + +#: chat.php:325 +msgid "Enable file uploads" +msgstr "启用文件上载" + +#: chat.php:326 +msgid "Lowest refresh rate" +msgstr "" + +#: chat.php:327 +msgid "Highest refresh rate" +msgstr "" + +#: chat.php:330 +msgid "Rules (html)" +msgstr "规则(html)" + +#: chat.php:331 +msgid "CSS Style" +msgstr "CSS风格" + +#: chat.php:332 +msgid "Chat disabled message (html)" +msgstr "聊天禁用消息(html)" + +#: chat.php:335 +msgid "" +"Date " +"formating" +msgstr "" +"日期格式" +"" + +#: chat.php:336 +msgid "Characters used in Captcha" +msgstr "验证码中使用的字符" + +#: chat.php:337 +msgid "Custom redirection script" +msgstr "自定义重定向脚本" + +#: chat.php:338 +msgid "Chat name" +msgstr "聊天名称" + +#: chat.php:339 +msgid "Send mail using this address" +msgstr "使用此地址发送邮件" + +#: chat.php:340 +msgid "Send mail to this address" +msgstr "发送邮件到这个地址" + +#: chat.php:341 +msgid "Nickname regex" +msgstr "昵称正则表达式" + +#: chat.php:342 +msgid "Password regex" +msgstr "密码正则表达式" + +#: chat.php:343 +msgid "Link to external CSS file (on your own server)" +msgstr "链接到外部CSS文件" + +#: chat.php:344 +msgid "Meta description (best 50 - 160 characters for SEO)" +msgstr "" + +#: chat.php:345 +msgid "Prepend this text to system messages" +msgstr "此文本先于来自系统的消息" + +#: chat.php:348 chat.php:728 chat.php:1225 +msgid "Change Guestaccess" +msgstr "修改游客访问" + +#: chat.php:349 +msgid "Enable global Password" +msgstr "" + +#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433 +msgid "Global Password:" +msgstr "全局密码:" + +#: chat.php:351 chat.php:819 +msgid "Captcha" +msgstr "验证码" + +#: chat.php:352 chat.php:775 chat.php:835 +msgid "Only for guests" +msgstr "只仅游客" + +#: chat.php:353 chat.php:1220 +msgid "Topic" +msgstr "话题" + +#: chat.php:354 chat.php:781 +msgid "Let guests register themselves" +msgstr "让客人自己注册" + +#: chat.php:355 chat.php:862 +msgid "Default time zone" +msgstr "默认时区" + +#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259 +msgid "Initial Setup" +msgstr "初始化设置" + +#: chat.php:588 +#, php-format +msgid "Redirecting to: %s" +msgstr "重定向到: %s" + +#: chat.php:595 +#, php-format +msgid "" +"Dangerous non-http link requested, copy paste this link if you are really " +"sure: %s" +msgstr "" + +#: chat.php:597 +#, php-format +msgid "Non-http link requested: %s" +msgstr "请求非http链接: %s" + +#: chat.php:599 +#, php-format +msgid "If it's not working, try this one: %s" +msgstr "如果它不起作用,试试这个: %s" + +#: chat.php:609 +msgid "Access denied" +msgstr "拒绝访问" + +#: chat.php:609 +#, 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 +msgid "Logout" +msgstr "登出" + +#: chat.php:636 +msgid "Copy:" +msgstr "验证码:" + +#: chat.php:724 +msgid "Chat Setup" +msgstr "安装程序" + +#: chat.php:734 chat.php:1233 +msgid "Allow" +msgstr "允许" + +#: chat.php:739 chat.php:1238 +msgid "Allow with waitingroom" +msgstr "等候室允许" + +#: chat.php:744 chat.php:1243 +msgid "Require moderator approval" +msgstr "请求审核人批准" + +#: chat.php:749 chat.php:1248 +msgid "Only members" +msgstr "只仅正式成员" + +#: chat.php:754 chat.php:1251 +msgid "Disable chat" +msgstr "禁用聊天" + +#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229 +msgid "Disabled" +msgstr "禁用" + +#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219 +msgid "Enabled" +msgstr "启用" + +#: chat.php:792 +msgid "As applicant" +msgstr "作为申请人" + +#: chat.php:797 +msgid "As member" +msgstr "作为会员" + +#: chat.php:800 +msgid "System messages" +msgstr "系统信息" + +#: chat.php:822 chat.php:1053 +#, php-format +msgid "" +"The %s extension of PHP is required for this feature. Please install it " +"first." +msgstr "此功能需要PHP的%s扩展名。 请先安装它。" + +#: chat.php:847 +msgid "Simple" +msgstr "简单" + +#: chat.php:852 +msgid "Moderate" +msgstr "中等" + +#: chat.php:857 +msgid "Extreme" +msgstr "超级" + +#: chat.php:906 chat.php:1548 chat.php:1610 +msgid "Apply" +msgstr "应用" + +#: chat.php:910 chat.php:1050 +msgid "Backup and restore" +msgstr "备份还原" + +#: chat.php:912 +msgid "Destroy chat" +msgstr "摧毁聊天" + +#: chat.php:1057 chat.php:1066 +msgid "Settings" +msgstr "设置" + +#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575 +#: chat.php:1622 +msgid "Filter" +msgstr "过滤" + +#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538 +msgid "Members" +msgstr "正式成员" + +#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322 +msgid "Notes" +msgstr "公告" + +#: chat.php:1061 +msgid "Backup" +msgstr "备用" + +#: chat.php:1070 +msgid "Restore" +msgstr "恢复" + +#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260 +msgid "Go to the Setup-Page" +msgstr "去设置界面" + +#: chat.php:1082 chat.php:1091 chat.php:1949 +msgid "Are you sure?" +msgstr "你确定吗?" + +#: chat.php:1083 chat.php:1092 chat.php:1956 +msgid "Yes" +msgstr "是" + +#: chat.php:1084 chat.php:1093 chat.php:1963 +msgid "No" +msgstr "否" + +#: chat.php:1101 chat.php:4259 +msgid "Superadmin Login" +msgstr "超级管理员登录" + +#: chat.php:1102 +msgid "Superadmin Nickname:" +msgstr "超级管理员用户名:" + +#: chat.php:1103 +msgid "Superadmin Password:" +msgstr "超级管理员密码:" + +#: chat.php:1104 +msgid "Confirm Password:" +msgstr "重复密码:" + +#: chat.php:1105 +msgid "Initialise Chat" +msgstr "初始化聊天室" + +#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439 +msgid "Change language:" +msgstr "修改语言:" + +#: chat.php:1117 +msgid "Database successfully updated!" +msgstr "数据库更新成功!" + +#: chat.php:1125 chat.php:1326 chat.php:2407 +msgid "Nickname:" +msgstr "用户名:" + +#: chat.php:1126 chat.php:1327 chat.php:2408 +msgid "Password:" +msgstr "密码:" + +#: chat.php:1128 +msgid "Login" +msgstr "登录" + +#: chat.php:1129 +msgid "Forgot login?" +msgstr "" + +#: chat.php:1142 chat.php:1306 +msgid "Reset password" +msgstr "重设密码" + +#: chat.php:1150 +#, php-format +msgid "" +"Successfully reset password for username %s. Please remove the password " +"reset define from the script again." +msgstr "" + +#: 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 "" + +#: 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 +msgid "(choose)" +msgstr "(选择)" + +#: chat.php:1170 +msgid "All guests" +msgstr "全部游客" + +#: chat.php:1182 +msgid "Administrative functions" +msgstr "管理员功能" + +#: chat.php:1188 +msgid "Clean messages" +msgstr "清理消息" + +#: chat.php:1191 +msgid "Whole room" +msgstr "整个房间" + +#: chat.php:1192 +msgid "Selection" +msgstr "选择" + +#: chat.php:1193 +msgid "Following nickname:" +msgstr "下面的名称:" + +#: chat.php:1200 +msgid "Clean" +msgstr "清理" + +#: chat.php:1202 +#, php-format +msgid "Kick Chatter (%d minutes)" +msgstr "" + +#: chat.php:1204 +msgid "Kickmessage:" +msgstr "踢出信息:" + +#: chat.php:1205 +msgid "Purge messages" +msgstr "清除信息" + +#: chat.php:1206 chat.php:1388 chat.php:1546 chat.php:1580 chat.php:1591 +#: chat.php:2042 +msgid "Kick" +msgstr "踢出" + +#: chat.php:1208 +msgid "Logout inactive Chatter" +msgstr "注销非活动聊天者" + +#: chat.php:1212 +msgid "View active sessions" +msgstr "查看活动聊天" + +#: chat.php:1212 chat.php:1603 +msgid "Linkfilter" +msgstr "链接过滤器" + +#: chat.php:1217 +msgid "View" +msgstr "显示" + +#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582 +#: chat.php:1626 +msgid "Change" +msgstr "修改" + +#: chat.php:1256 +msgid "Register applicant" +msgstr "注册申请员" + +#: chat.php:1264 chat.php:1322 chat.php:1328 +msgid "Register" +msgstr "注册" + +#: chat.php:1294 +msgid "Delete from database" +msgstr "从数据库删除" + +#: chat.php:1294 +msgid "Deny access (!)" +msgstr "拒绝访问 (!)" + +#: chat.php:1296 +msgid "Set to applicant (SG)" +msgstr "申请为申请人 (SG)" + +#: chat.php:1298 +msgid "Set to regular member" +msgstr "设置为正式成员" + +#: chat.php:1299 +msgid "Set to moderator (M)" +msgstr "设置为主持人 (M)" + +#: chat.php:1300 +msgid "Set to supermod (SM)" +msgstr "设置为0.5 (SM)" + +#: chat.php:1302 +msgid "Set to admin (A)" +msgstr "设置为管理员 (A)" + +#: chat.php:1314 +msgid "Register Guest" +msgstr "注册游客" + +#: chat.php:1324 +msgid "Register new Member" +msgstr "注册新成员" + +#: chat.php:1332 chat.php:1408 chat.php:1595 chat.php:1636 chat.php:1710 +#: chat.php:1924 +msgid "Reload" +msgstr "刷新" + +#: chat.php:1345 +msgid "Active Sessions" +msgstr "活动会话" + +#: chat.php:1346 chat.php:1873 +msgid "Nickname" +msgstr "用户名" + +#: chat.php:1346 +msgid "Timeout in" +msgstr "超时" + +#: chat.php:1346 chat.php:1873 +msgid "User-Agent" +msgstr "用户代理" + +#: chat.php:1350 +msgid "IP-Address" +msgstr "IP地址" + +#: chat.php:1351 +msgid "Actions" +msgstr "操作" + +#: chat.php:1393 +msgid "Unban" +msgstr "取消禁止" + +#: chat.php:1416 +msgid "Incorrect regular expression!" +msgstr "正则表达式错误!" + +#: chat.php:1416 chat.php:1424 +#, 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." +msgstr "你的申请太长了。 你可以用max。 255个字符。 尝试拆分它." + +#: chat.php:1541 chat.php:1606 +msgid "Filter ID:" +msgstr "过滤器ID:" + +#: chat.php:1542 chat.php:1607 +msgid "Match" +msgstr "匹配" + +#: chat.php:1543 chat.php:1608 +msgid "Replace" +msgstr "替换" + +#: chat.php:1544 chat.php:1578 chat.php:1589 +msgid "Allow in PM" +msgstr "允许在PM" + +#: chat.php:1545 chat.php:1579 chat.php:1590 chat.php:1609 chat.php:1625 +#: chat.php:1633 +msgid "Regex" +msgstr "正则表达式" + +#: chat.php:1547 chat.php:1581 chat.php:1592 +msgid "Case sensitive" +msgstr "大小写" + +#: chat.php:1586 chat.php:1630 +msgid "New filter:" +msgstr "新过滤器:" + +#: chat.php:1593 chat.php:1634 +msgid "Add" +msgstr "添加" + +#: chat.php:1691 +msgid "" +"This chat uses frames. Please enable frames in your browser or use a " +"suitable one!" +msgstr "" +"这个聊天室使用 frames. 请在浏览器中启用frames或使用合适的" +"frames!" + +#: chat.php:1691 chat.php:2370 chat.php:2457 +msgid "Back to the login page." +msgstr "返回登录页面." + +#: chat.php:1709 +msgid "Bottom" +msgstr "底部" + +#: chat.php:1710 +msgid "Manual refresh required" +msgstr "" + +#: chat.php:1726 +msgid "Top" +msgstr "顶部" + +#: chat.php:1734 chat.php:1940 chat.php:1942 +msgid "Delete selected messages" +msgstr "删除所选信息" + +#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281 +msgid "Back to the chat." +msgstr "回到聊天室." + +#: chat.php:1774 chat.php:1791 +msgid "Admin notes" +msgstr "管理员说明" + +#: chat.php:1777 chat.php:1788 +msgid "Staff notes" +msgstr "工作人员说明" + +#: chat.php:1811 +msgid "Notes saved!" +msgstr "说明已保存!" + +#: chat.php:1835 chat.php:2122 +#, php-format +msgid "Last edited by %1$s at %2$s" +msgstr "上次由%1$s编辑 时间为%2$s" + +#: chat.php:1848 +msgid "Save notes" +msgstr "保存说明" + +#: chat.php:1850 +msgid "Revisions:" +msgstr "修订:" + +#: chat.php:1853 +msgid "Older" +msgstr "旧的" + +#: chat.php:1857 +msgid "Newer" +msgstr "较新" + +#: chat.php:1868 chat.php:1914 +msgid "Waiting room" +msgstr "等候室" + +#: chat.php:1880 +msgid "Allow checked" +msgstr "允许检查" + +#: chat.php:1881 +msgid "Allow all" +msgstr "允许全部" + +#: chat.php:1882 +msgid "Deny checked" +msgstr "拒绝检查" + +#: chat.php:1883 +msgid "Deny all" +msgstr "全部拒绝" + +#: chat.php:1883 +msgid "Send message to denied:" +msgstr "发送消息给拒绝:" + +#: chat.php:1884 +msgid "Submit" +msgstr "提交" + +#: chat.php:1886 +msgid "No more entry requests to approve." +msgstr "不再需要批准入场申请." + +#: chat.php:1916 +#, 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 +#, 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 +#, 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 +msgid "Exit Chat" +msgstr "退出聊天室" + +#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430 +msgid "Rules" +msgstr "规则" + +#: chat.php:1985 +msgid "Send to" +msgstr "发送至" + +#: chat.php:1990 +msgid "All chatters" +msgstr "所有的聊天者" + +#: chat.php:1996 +msgid "Members only" +msgstr "内部使用" + +#: chat.php:2003 +msgid "Staff only" +msgstr "只供职员使用" + +#: chat.php:2010 +msgid "Admin only" +msgstr "仅限管理员" + +#: chat.php:2019 +msgid "(offline)" +msgstr "(离线)" + +#: chat.php:2043 +msgid "Also purge messages" +msgstr "同时清除消息" + +#: chat.php:2050 +msgid "Delete last message" +msgstr "删除上一条消息" + +#: chat.php:2055 +msgid "Delete all messages" +msgstr "删除所有信息" + +#: chat.php:2057 +msgid "Switch to single-line" +msgstr "切换到单行" + +#: chat.php:2059 +msgid "Switch to multi-line" +msgstr "切换到多行" + +#: chat.php:2070 +#, php-format +msgid "Welcome %s!" +msgstr "欢迎%s!" + +#: chat.php:2071 +#, 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 "" + +#: chat.php:2087 +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." +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 "" +"如果您想在帖子中嵌入图片,只需将[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 "" +"成员:您的个人资料中还有更多选项。 您可以随时调整字体,更改密码,当然也可以删" +"除您的帐户." + +#: 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 "" +"版主:请注意底部。 它将打开一个页面,您可以在其中清理房间,踢聊天,查看所有活" +"动会话并在需要时完全禁用访客访问权限." + +#: chat.php:2097 +msgid "" +"Admins: You'll be furthermore able to register guests, edit members and " +"register new nicknames." +msgstr "管理员:您还可以注册客人,编辑成员并注册新的昵称。" + +#: chat.php:2135 +msgid "Your Profile" +msgstr "你的个人资料" + +#: chat.php:2144 +msgid "Don't ignore anymore" +msgstr "取消忽略" + +#: chat.php:2152 +msgid "Ignore" +msgstr "忽略" + +#: chat.php:2163 +#, php-format +msgid "Refresh rate (%1$d-%2$d seconds)" +msgstr "刷新时间(%1$d秒-%2$d秒)" + +#: chat.php:2167 chat.php:2170 +msgid "View examples" +msgstr "查看示例" + +#: chat.php:2174 +msgid "Fontface" +msgstr "字体" + +#: chat.php:2175 +msgid "Room Default" +msgstr "默认房间" + +#: chat.php:2188 +msgid "Bold" +msgstr "大胆" + +#: chat.php:2192 +msgid "Italic" +msgstr "斜体" + +#: chat.php:2196 +msgid "Small" +msgstr "" + +#: chat.php:2199 +msgid "Example for your chosen font" +msgstr "您选择的字体的示例" + +#: chat.php:2203 +msgid "Autoscroll (for old browsers or top-to-bottom sort)." +msgstr "自动滚动(适用于旧浏览器或从上到下排序)." + +#: chat.php:2234 +msgid "For everyone" +msgstr "所以人" + +#: chat.php:2239 +msgid "For members only" +msgstr "仅限会员" + +#: chat.php:2244 +msgid "For staff only" +msgstr "仅限员工" + +#: chat.php:2248 +msgid "Time zone" +msgstr "时区" + +#: chat.php:2261 +msgid "Change Password" +msgstr "更改密码" + +#: chat.php:2263 +msgid "Old password:" +msgstr "旧密码:" + +#: chat.php:2264 +msgid "New password:" +msgstr "新密码:" + +#: chat.php:2265 +msgid "Confirm new password:" +msgstr "在重复一次新密码:" + +#: chat.php:2268 +msgid "Change Nickname" +msgstr "" + +#: chat.php:2269 +msgid "New nickname:" +msgstr "新昵称:" + +#: chat.php:2273 +msgid "Save changes" +msgstr "保存更改" + +#: chat.php:2275 +msgid "Delete account" +msgstr "删除帐户" + +#: chat.php:2301 +msgid "Reload Post Box" +msgstr "刷新缓存" + +#: chat.php:2304 +msgid "Reload Messages" +msgstr "刷新一下消息" + +#: chat.php:2307 +msgid "Profile" +msgstr "个人资料" + +#: chat.php:2311 chat.php:2528 +msgid "Admin" +msgstr "管理" + +#: chat.php:2318 +msgid "View public notes" +msgstr "阅读用户配置文件" + +#: chat.php:2325 +msgid "Clone" +msgstr "打开新标签" + +#: chat.php:2334 +msgid "Rearrange" +msgstr "改变方向" + +#: chat.php:2337 +msgid "Rules & Help" +msgstr "条款 & 帮助" + +#: chat.php:2358 chat.php:2362 +msgid "File not found!" +msgstr "找不到文件!" + +#: chat.php:2370 +#, php-format +msgid "Bye %s, visit again soon!" +msgstr "再见%s, 欢迎你再此访问!" + +#: chat.php:2377 +msgid "Colourtable" +msgstr "颜色表" + +#: chat.php:2388 +msgid "Back to your Profile" +msgstr "回到你的个人资料" + +#: chat.php:2412 +msgid "Repeat password
to register" +msgstr "重复密码
注册" + +#: chat.php:2412 +msgid "(optional)" +msgstr "(可选的)" + +#: chat.php:2417 +msgid "Guests, choose a colour:" +msgstr "客人,选择一种颜色:" + +#: chat.php:2417 +msgid "Random Colour" +msgstr "随机颜色" + +#: chat.php:2421 chat.php:2435 chat.php:2569 +msgid "Sorry, currently members only!" +msgstr "对不起,目前仅限会员!" + +#: chat.php:2423 chat.php:2437 +msgid "Enter Chat" +msgstr "回车" + +#: chat.php:2457 +#, php-format +msgid "Error: %s" +msgstr "错误: %s" + +#: chat.php:2467 +msgid "Fatal error" +msgstr "致命错误" + +#: chat.php:2470 +#, php-format +msgid "Fatal error: %s" +msgstr "致命错误: %s" + +#: chat.php:2482 chat.php:2693 +msgid "Failed login attempt(s)" +msgstr "登录尝试失败" + +#: chat.php:2489 +#, php-format +msgid "Read %d messages in your inbox" +msgstr "阅读收件箱中的%d条消息" + +#: chat.php:2498 +#, php-format +msgid "%d new guests to approve" +msgstr "%d新客人批准" + +#: chat.php:2530 +msgid "Admin:" +msgstr "管理:" + +#: chat.php:2533 +msgid "Staff" +msgstr "工作人员" + +#: chat.php:2535 +msgid "Staff:" +msgstr "工作人员:" + +#: chat.php:2540 +msgid "Members:" +msgstr "正式成员:" + +#: chat.php:2542 +msgid "Guests" +msgstr "游客" + +#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092 +#, 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 +#, 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 +msgid "Wrong global Password!" +msgstr "错误的全球密码!" + +#: chat.php:2591 chat.php:2612 +msgid "Wrong Captcha" +msgstr "错误验证码" + +#: chat.php:2596 chat.php:2604 +msgid "Captcha already used or timed out." +msgstr "验证码已经使用或超时." + +#: chat.php:2652 +msgid "A user with this nickname is already logged in." +msgstr "具有此昵称的用户已登录。" + +#: chat.php:2652 chat.php:2933 chat.php:3176 +msgid "Wrong Password!" +msgstr "密码错误!" + +#: chat.php:2696 +msgid "Dismiss" +msgstr "承认" + +#: chat.php:2747 chat.php:3171 chat.php:4096 +msgid "Password confirmation does not match!" +msgstr "重复密码不匹配!" + +#: chat.php:2859 +msgid "Invalid/expired session" +msgstr "无效/已过期的会话" + +#: chat.php:2875 chat.php:3412 +msgid "You have been kicked!" +msgstr "你被踢出该聊天室!" + +#: chat.php:2885 +#, php-format +msgid "Currently %d chatter(s) in room:" +msgstr "目前%d人在房间里聊天:" + +#: chat.php:2933 +msgid "This nickname is a registered member." +msgstr "这个昵称是注册会员." + +#: chat.php:2960 chat.php:3001 +#, php-format +msgid "%s is already registered." +msgstr "%s已经注册。" + +#: chat.php:2969 chat.php:2990 +#, php-format +msgid "Can't register %s" +msgstr "无法注册%s" + +#: chat.php:2978 chat.php:3023 +#, php-format +msgid "%s successfully registered." +msgstr "%s成功注册." + +#: chat.php:3031 chat.php:3036 +#, php-format +msgid "Can't change status of %s" +msgstr "无法改变状态%s" + +#: chat.php:3047 +#, php-format +msgid "%s successfully deleted from database." +msgstr "%s已成功从数据库中删除." + +#: chat.php:3056 +#, php-format +msgid "Status of %s successfully changed." +msgstr "%s的状态已更改." + +#: chat.php:3073 +#, php-format +msgid "Successfully reset password for %s" +msgstr "" + +#: chat.php:3075 +#, php-format +msgid "Can't reset password for %s" +msgstr "" + +#: chat.php:3190 +msgid "Your profile has successfully been saved." +msgstr "您的个人资料已成功保存." + +#: chat.php:3202 +msgid "Nickname is already taken" +msgstr "昵称已被取消" + +#: chat.php:3714 +msgid "system message" +msgstr "系统信息" + +#: chat.php:3921 +msgid "Beige" +msgstr "米色" + +#: chat.php:3922 +msgid "Black" +msgstr "黑色" + +#: chat.php:3923 +msgid "Blue" +msgstr "蓝色" + +#: chat.php:3924 +msgid "Blue violet" +msgstr "紫罗兰色" + +#: chat.php:3925 +msgid "Brown" +msgstr "棕色" + +#: chat.php:3926 +msgid "Cyan" +msgstr "青色" + +#: chat.php:3927 +msgid "Dark blue" +msgstr "深蓝" + +#: chat.php:3928 +msgid "Dark green" +msgstr "深绿色" + +#: chat.php:3929 +msgid "Dark red" +msgstr "深红" + +#: chat.php:3930 +msgid "Dark violet" +msgstr "深紫罗兰" + +#: chat.php:3931 +msgid "Sky blue" +msgstr "天蓝色" + +#: chat.php:3932 +msgid "Gold" +msgstr "金" + +#: chat.php:3933 +msgid "Grey" +msgstr "灰色" + +#: chat.php:3934 +msgid "Green" +msgstr "绿色" + +#: chat.php:3935 +msgid "Hot pink" +msgstr "亮粉色" + +#: chat.php:3936 +msgid "Indigo" +msgstr "靛青" + +#: chat.php:3937 +msgid "Light blue" +msgstr "浅蓝" + +#: chat.php:3938 +msgid "Light green" +msgstr "浅绿色" + +#: chat.php:3939 +msgid "Lime green" +msgstr "柠檬绿" + +#: chat.php:3940 +msgid "Magenta" +msgstr "品红" + +#: chat.php:3941 +msgid "Olive" +msgstr "橄榄" + +#: chat.php:3942 +msgid "Orange" +msgstr "橙子" + +#: chat.php:3943 +msgid "Orange red" +msgstr "橙红色" + +#: chat.php:3944 +msgid "Purple" +msgstr "紫色" + +#: chat.php:3945 +msgid "Red" +msgstr "红色" + +#: chat.php:3946 +msgid "Royal blue" +msgstr "宝蓝色" + +#: chat.php:3947 +msgid "Sea green" +msgstr "海绿色" + +#: chat.php:3948 +msgid "Sienna" +msgstr "黄土" + +#: chat.php:3949 +msgid "Silver" +msgstr "银色" + +#: chat.php:3950 +msgid "Tan" +msgstr "黄褐色" + +#: chat.php:3951 +msgid "Teal" +msgstr "蓝绿色" + +#: chat.php:3952 +msgid "Violet" +msgstr "紫色" + +#: chat.php:3953 +msgid "White" +msgstr "白色" + +#: chat.php:3954 +msgid "Yellow" +msgstr "黄色" + +#: chat.php:3955 +msgid "Yellow green" +msgstr "黄绿色" + +#: chat.php:4077 +msgid "Successfully destroyed chat" +msgstr "成功破坏了聊天" + +#: chat.php:4086 +msgid "" +"Database tables already exist! To continue, you have to delete these tables " +"manually first." +msgstr "数据库表已经存在!,要继续,您必须先手动删除这些表。" + +#: chat.php:4089 +msgid "A Superadmin already exists!" +msgstr "超级管理员已经存在!" + +#: chat.php:4182 chat.php:4369 +#, php-format +msgid "%s - " +msgstr "%s - " + +#: chat.php:4183 chat.php:4369 +#, php-format +msgid "[M] %s - " +msgstr "" + +#: chat.php:4184 chat.php:4369 +#, php-format +msgid "[Staff] %s - " +msgstr "" + +#: chat.php:4185 chat.php:4369 +#, php-format +msgid "[Admin] %s - " +msgstr "" + +#: chat.php:4186 chat.php:4369 +#, php-format +msgid "[%1$s to %2$s] - " +msgstr "" + +#: chat.php:4187 +#, php-format +msgid "%s entered the chat." +msgstr "%s进入聊天室." + +#: chat.php:4188 +#, php-format +msgid "%s left the chat." +msgstr "%s离开了聊天室。" + +#: chat.php:4189 +#, php-format +msgid "%s is now a registered member." +msgstr "%s现在是注册会员." + +#: chat.php:4190 +#, php-format +msgid "%s is now a registered applicant." +msgstr "%s现在是注册申请人." + +#: chat.php:4191 +#, php-format +msgid "%s has been kicked." +msgstr "%s被踢了." + +#: chat.php:4192 +#, php-format +msgid "%s have been kicked." +msgstr "%s被踢了." + +#: chat.php:4193 +msgid "All guests have been kicked." +msgstr "所有客人都被踢了." + +#: chat.php:4194 +#, php-format +msgid "%s has been cleaned." +msgstr "%s已经清理干净了." + +#: chat.php:4202 chat.php:4396 +msgid "Temporarily disabled" +msgstr "暂时禁用" + +#: chat.php:4218 chat.php:4594 +msgid "A chat community" +msgstr "" + +#: chat.php:4256 +msgid "Successfully registered!" +msgstr "成功注册!" + +#: chat.php:4522 chat.php:4721 chat.php:4728 +msgid "No connection to database!" +msgstr "没有连接到数据库!" + +#: chat.php:4531 +msgid "" +"Note: Default CSS is now hardcoded and can be removed from the CSS setting" +msgstr "注意:默认的CSS现在是硬编码的,可以从CSS设置中删除" + +#: chat.php:4611 +#, 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 +#, 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 "" +"没有连接到数据库,请创建一个数据库并编辑脚本并修改为用户名密码正确的数据库!" + +#: 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." diff --git a/locale/zh_TW/LC_MESSAGES/le-chat-php.mo b/locale/zh_TW/LC_MESSAGES/le-chat-php.mo new file mode 100644 index 0000000..cb54199 Binary files /dev/null and b/locale/zh_TW/LC_MESSAGES/le-chat-php.mo differ diff --git a/locale/zh_TW/LC_MESSAGES/le-chat-php.po b/locale/zh_TW/LC_MESSAGES/le-chat-php.po new file mode 100644 index 0000000..9b1cce7 --- /dev/null +++ b/locale/zh_TW/LC_MESSAGES/le-chat-php.po @@ -0,0 +1,1606 @@ +# 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: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-01-18 21:32+0100\n" +"PO-Revision-Date: 2023-01-18 21:41+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: zh_TW\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: Poedit 3.1.1\n" + +#: chat.php:261 +msgid "Enable applicants" +msgstr "啓用申請人" + +#: chat.php:262 +msgid "Embed images" +msgstr "嵌入圖像" + +#: chat.php:263 chat.php:2202 +msgid "Show Timestamps" +msgstr "顯示時間戳" + +#: chat.php:264 +msgid "Show session-IP" +msgstr "顯示會話-IP" + +#: chat.php:265 +msgid "Members can kick, if no moderator is present" +msgstr "如果沒有主持人,會員可以踢" + +#: chat.php:266 +msgid "Members can always kick" +msgstr "會員總是可以驅逐客人" + +#: chat.php:267 +msgid "Force redirection" +msgstr "強制重定向" + +#: chat.php:268 +msgid "Incognito mode" +msgstr "隱身模式" + +#: chat.php:269 +msgid "Send mail on new public message" +msgstr "發送新公共郵件的郵件" + +#: chat.php:270 +msgid "Fallback to waiting room, if no moderator is present to approve guests" +msgstr "如果沒有主持人來批准客人,請回到候診室" + +#: chat.php:271 +msgid "Disable private messages" +msgstr "禁用私人消息" + +#: chat.php:272 chat.php:2223 +msgid "Enable offline inbox" +msgstr "啓用離線收件箱" + +#: chat.php:273 +msgid "Show a greeting message before showing the messages" +msgstr "在顯示消息之前顯示問候消息" + +#: chat.php:274 chat.php:2204 +msgid "Sort messages from top to bottom" +msgstr "從上到下對消息進行排序" + +#: chat.php:275 chat.php:2205 +msgid "Hide list of chatters" +msgstr "隱藏聊天列表" + +#: chat.php:276 chat.php:1780 chat.php:1794 +msgid "Personal notes" +msgstr "" + +#: chat.php:277 chat.php:1783 chat.php:1797 chat.php:2110 +msgid "Public notes" +msgstr "用戶配置文件" + +#: chat.php:278 +msgid "Apply kick filter on moderators" +msgstr "" + +#: chat.php:279 +msgid "Show who kicks people or purges all messages." +msgstr "顯示誰驅逐人或清除所有消息。" + +#: chat.php:280 +msgid "Hide reload post box button" +msgstr "" + +#: chat.php:281 +msgid "Hide reload messages button" +msgstr "" + +#: chat.php:282 +msgid "Hide profile button" +msgstr "" + +#: chat.php:283 +msgid "Hide admin button" +msgstr "" + +#: chat.php:284 +msgid "Hide notes button" +msgstr "" + +#: chat.php:285 +msgid "Hide clone button" +msgstr "" + +#: chat.php:286 +msgid "Hide rearrange button" +msgstr "" + +#: chat.php:287 +msgid "Hide help button" +msgstr "" + +#: chat.php:288 +msgid "Apply postbox delete button globally" +msgstr "" + +#: chat.php:289 +msgid "Allow enhancing functionality with JavaScript" +msgstr "" + +#: chat.php:292 chat.php:2170 +msgid "Background colour" +msgstr "背景色" + +#: chat.php:293 chat.php:2167 +msgid "Font colour" +msgstr "字體顏色" + +#: chat.php:296 +msgid "Entrance" +msgstr "入口" + +#: chat.php:297 +msgid "Leaving" +msgstr "離開" + +#: chat.php:298 +msgid "Member registered" +msgstr "成員註冊" + +#: chat.php:299 +msgid "Applicant registered" +msgstr "邀請人註冊" + +#: chat.php:300 +msgid "Kicked" +msgstr "踢出" + +#: chat.php:301 +msgid "Multiple kicked" +msgstr "批量踢出" + +#: chat.php:302 +msgid "All kicked" +msgstr "全部踢出" + +#: chat.php:303 +msgid "Room cleaned" +msgstr "房間清理" + +#: chat.php:304 +msgid "Message to all" +msgstr "給所有人的信息" + +#: chat.php:305 +msgid "Message to members only" +msgstr "僅向會員發送消息" + +#: chat.php:306 +msgid "Message to staff only" +msgstr "僅向員工發送消息" + +#: chat.php:307 +msgid "Message to admins only" +msgstr "僅向管理員發送消息" + +#: chat.php:308 +msgid "Private message" +msgstr "私人信息" + +#: chat.php:309 +msgid "Attachement" +msgstr "附件" + +#: chat.php:312 +msgid "Member timeout (minutes)" +msgstr "會員超時(分鐘)" + +#: chat.php:313 +msgid "Guest timeout (minutes)" +msgstr "訪客超時(分鐘)" + +#: chat.php:314 +msgid "Kick penalty (minutes)" +msgstr "踢罰(分鐘)" + +#: chat.php:315 +msgid "Waiting room time (seconds)" +msgstr "等候室時間(秒)" + +#: chat.php:316 +msgid "Captcha timeout (seconds)" +msgstr "驗證碼超時(秒)" + +#: chat.php:317 +msgid "Message timeout (minutes)" +msgstr "消息超時(分鐘)" + +#: chat.php:318 +msgid "Message limit (public)" +msgstr "消息限制(公開)" + +#: chat.php:319 +msgid "Maximal message length" +msgstr "最大消息長度" + +#: chat.php:320 +msgid "Maximal nickname length" +msgstr "最大暱稱長度" + +#: chat.php:321 +msgid "Minimal password length" +msgstr "最小密碼長度" + +#: chat.php:322 +msgid "Default message reload time (seconds)" +msgstr "默認消息重新加載時間(秒)" + +#: chat.php:323 +msgid "Number of notes revisions to keep" +msgstr "要保留的備註數量" + +#: chat.php:324 +msgid "Maximum upload size in KB" +msgstr "最大上載大小(KB)" + +#: chat.php:325 +msgid "Enable file uploads" +msgstr "啓用文件上載" + +#: chat.php:326 +msgid "Lowest refresh rate" +msgstr "" + +#: chat.php:327 +msgid "Highest refresh rate" +msgstr "" + +#: chat.php:330 +msgid "Rules (html)" +msgstr "規則(html)" + +#: chat.php:331 +msgid "CSS Style" +msgstr "CSS風格" + +#: chat.php:332 +msgid "Chat disabled message (html)" +msgstr "聊天禁用消息(html)" + +#: chat.php:335 +msgid "" +"Date " +"formating" +msgstr "" +"日期格式" +"" + +#: chat.php:336 +msgid "Characters used in Captcha" +msgstr "驗證碼中使用的字符" + +#: chat.php:337 +msgid "Custom redirection script" +msgstr "自定義重定向腳本" + +#: chat.php:338 +msgid "Chat name" +msgstr "聊天名稱" + +#: chat.php:339 +msgid "Send mail using this address" +msgstr "使用此地址發送郵件" + +#: chat.php:340 +msgid "Send mail to this address" +msgstr "發送郵件到這個地址" + +#: chat.php:341 +msgid "Nickname regex" +msgstr "暱稱正則表達式" + +#: chat.php:342 +msgid "Password regex" +msgstr "密碼正則表達式" + +#: chat.php:343 +msgid "Link to external CSS file (on your own server)" +msgstr "鏈接到外部CSS文件" + +#: chat.php:344 +msgid "Meta description (best 50 - 160 characters for SEO)" +msgstr "" + +#: chat.php:345 +msgid "Prepend this text to system messages" +msgstr "此文本先於來自系統的消息" + +#: chat.php:348 chat.php:728 chat.php:1225 +msgid "Change Guestaccess" +msgstr "修改遊客訪問" + +#: chat.php:349 +msgid "Enable global Password" +msgstr "" + +#: chat.php:350 chat.php:758 chat.php:2415 chat.php:2433 +msgid "Global Password:" +msgstr "全局密碼:" + +#: chat.php:351 chat.php:819 +msgid "Captcha" +msgstr "驗證碼" + +#: chat.php:352 chat.php:775 chat.php:835 +msgid "Only for guests" +msgstr "只僅遊客" + +#: chat.php:353 chat.php:1220 +msgid "Topic" +msgstr "話題" + +#: chat.php:354 chat.php:781 +msgid "Let guests register themselves" +msgstr "讓客人自己註冊" + +#: chat.php:355 chat.php:862 +msgid "Default time zone" +msgstr "默認時區" + +#: chat.php:568 chat.php:1100 chat.php:4078 chat.php:4259 +msgid "Initial Setup" +msgstr "初始化設置" + +#: chat.php:588 +#, php-format +msgid "Redirecting to: %s" +msgstr "重定向到: %s" + +#: chat.php:595 +#, php-format +msgid "" +"Dangerous non-http link requested, copy paste this link if you are really " +"sure: %s" +msgstr "" + +#: chat.php:597 +#, php-format +msgid "Non-http link requested: %s" +msgstr "請求非http鏈接: %s" + +#: chat.php:599 +#, php-format +msgid "If it's not working, try this one: %s" +msgstr "如果它不起作用,試試這個: %s" + +#: chat.php:609 +msgid "Access denied" +msgstr "拒絕訪問" + +#: chat.php:609 +#, 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 +msgid "Logout" +msgstr "登出" + +#: chat.php:636 +msgid "Copy:" +msgstr "驗證碼:" + +#: chat.php:724 +msgid "Chat Setup" +msgstr "安裝程序" + +#: chat.php:734 chat.php:1233 +msgid "Allow" +msgstr "允許" + +#: chat.php:739 chat.php:1238 +msgid "Allow with waitingroom" +msgstr "等候室允許" + +#: chat.php:744 chat.php:1243 +msgid "Require moderator approval" +msgstr "請求審覈人批准" + +#: chat.php:749 chat.php:1248 +msgid "Only members" +msgstr "只僅正式成員" + +#: chat.php:754 chat.php:1251 +msgid "Disable chat" +msgstr "禁用聊天" + +#: chat.php:765 chat.php:787 chat.php:842 chat.php:896 chat.php:2229 +msgid "Disabled" +msgstr "禁用" + +#: chat.php:770 chat.php:830 chat.php:901 chat.php:2219 +msgid "Enabled" +msgstr "啓用" + +#: chat.php:792 +msgid "As applicant" +msgstr "作爲申請人" + +#: chat.php:797 +msgid "As member" +msgstr "作爲會員" + +#: chat.php:800 +msgid "System messages" +msgstr "系統信息" + +#: chat.php:822 chat.php:1053 +#, php-format +msgid "" +"The %s extension of PHP is required for this feature. Please install it " +"first." +msgstr "此功能需要PHP的%s擴展名。 請先安裝它。" + +#: chat.php:847 +msgid "Simple" +msgstr "簡單" + +#: chat.php:852 +msgid "Moderate" +msgstr "中等" + +#: chat.php:857 +msgid "Extreme" +msgstr "超級" + +#: chat.php:906 chat.php:1548 chat.php:1610 +msgid "Apply" +msgstr "應用" + +#: chat.php:910 chat.php:1050 +msgid "Backup and restore" +msgstr "備份還原" + +#: chat.php:912 +msgid "Destroy chat" +msgstr "摧毀聊天" + +#: chat.php:1057 chat.php:1066 +msgid "Settings" +msgstr "設置" + +#: chat.php:1058 chat.php:1067 chat.php:1212 chat.php:1538 chat.php:1575 +#: chat.php:1622 +msgid "Filter" +msgstr "過濾" + +#: chat.php:1059 chat.php:1068 chat.php:1268 chat.php:2538 +msgid "Members" +msgstr "正式成員" + +#: chat.php:1060 chat.php:1069 chat.php:2314 chat.php:2322 +msgid "Notes" +msgstr "公告" + +#: chat.php:1061 +msgid "Backup" +msgstr "備用" + +#: chat.php:1070 +msgid "Restore" +msgstr "恢復" + +#: chat.php:1074 chat.php:1117 chat.php:1155 chat.php:1185 chat.php:4260 +msgid "Go to the Setup-Page" +msgstr "去設置界面" + +#: chat.php:1082 chat.php:1091 chat.php:1949 +msgid "Are you sure?" +msgstr "你確定嗎?" + +#: chat.php:1083 chat.php:1092 chat.php:1956 +msgid "Yes" +msgstr "是" + +#: chat.php:1084 chat.php:1093 chat.php:1963 +msgid "No" +msgstr "否" + +#: chat.php:1101 chat.php:4259 +msgid "Superadmin Login" +msgstr "超級管理員登錄" + +#: chat.php:1102 +msgid "Superadmin Nickname:" +msgstr "超級管理員用戶名:" + +#: chat.php:1103 +msgid "Superadmin Password:" +msgstr "超級管理員密碼:" + +#: chat.php:1104 +msgid "Confirm Password:" +msgstr "重複密碼:" + +#: chat.php:1105 +msgid "Initialise Chat" +msgstr "初始化聊天室" + +#: chat.php:1106 chat.php:1130 chat.php:1156 chat.php:2277 chat.php:2439 +msgid "Change language:" +msgstr "修改語言:" + +#: chat.php:1117 +msgid "Database successfully updated!" +msgstr "數據庫更新成功!" + +#: chat.php:1125 chat.php:1326 chat.php:2407 +msgid "Nickname:" +msgstr "用戶名:" + +#: chat.php:1126 chat.php:1327 chat.php:2408 +msgid "Password:" +msgstr "密碼:" + +#: chat.php:1128 +msgid "Login" +msgstr "登錄" + +#: chat.php:1129 +msgid "Forgot login?" +msgstr "" + +#: chat.php:1142 chat.php:1306 +msgid "Reset password" +msgstr "重設密碼" + +#: chat.php:1150 +#, php-format +msgid "" +"Successfully reset password for username %s. Please remove the password " +"reset define from the script again." +msgstr "" + +#: 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 "" + +#: 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 +msgid "(choose)" +msgstr "(選擇)" + +#: chat.php:1170 +msgid "All guests" +msgstr "全部遊客" + +#: chat.php:1182 +msgid "Administrative functions" +msgstr "管理員功能" + +#: chat.php:1188 +msgid "Clean messages" +msgstr "清理消息" + +#: chat.php:1191 +msgid "Whole room" +msgstr "整個房間" + +#: chat.php:1192 +msgid "Selection" +msgstr "選擇" + +#: chat.php:1193 +msgid "Following nickname:" +msgstr "下面的名稱:" + +#: chat.php:1200 +msgid "Clean" +msgstr "清理" + +#: chat.php:1202 +#, php-format +msgid "Kick Chatter (%d minutes)" +msgstr "" + +#: chat.php:1204 +msgid "Kickmessage:" +msgstr "踢出信息:" + +#: chat.php:1205 +msgid "Purge messages" +msgstr "清除信息" + +#: chat.php:1206 chat.php:1388 chat.php:1546 chat.php:1580 chat.php:1591 +#: chat.php:2042 +msgid "Kick" +msgstr "踢出" + +#: chat.php:1208 +msgid "Logout inactive Chatter" +msgstr "註銷非活動聊天者" + +#: chat.php:1212 +msgid "View active sessions" +msgstr "查看活動聊天" + +#: chat.php:1212 chat.php:1603 +msgid "Linkfilter" +msgstr "鏈接過濾器" + +#: chat.php:1217 +msgid "View" +msgstr "顯示" + +#: chat.php:1223 chat.php:1253 chat.php:1304 chat.php:1312 chat.php:1582 +#: chat.php:1626 +msgid "Change" +msgstr "修改" + +#: chat.php:1256 +msgid "Register applicant" +msgstr "註冊申請員" + +#: chat.php:1264 chat.php:1322 chat.php:1328 +msgid "Register" +msgstr "註冊" + +#: chat.php:1294 +msgid "Delete from database" +msgstr "從數據庫刪除" + +#: chat.php:1294 +msgid "Deny access (!)" +msgstr "拒絕訪問 (!)" + +#: chat.php:1296 +msgid "Set to applicant (SG)" +msgstr "申請爲申請人 (SG)" + +#: chat.php:1298 +msgid "Set to regular member" +msgstr "設置爲正式成員" + +#: chat.php:1299 +msgid "Set to moderator (M)" +msgstr "設置爲主持人 (M)" + +#: chat.php:1300 +msgid "Set to supermod (SM)" +msgstr "設置爲0.5 (SM)" + +#: chat.php:1302 +msgid "Set to admin (A)" +msgstr "設置爲管理員 (A)" + +#: chat.php:1314 +msgid "Register Guest" +msgstr "註冊遊客" + +#: chat.php:1324 +msgid "Register new Member" +msgstr "註冊新成員" + +#: chat.php:1332 chat.php:1408 chat.php:1595 chat.php:1636 chat.php:1710 +#: chat.php:1924 +msgid "Reload" +msgstr "刷新" + +#: chat.php:1345 +msgid "Active Sessions" +msgstr "活動會話" + +#: chat.php:1346 chat.php:1873 +msgid "Nickname" +msgstr "用戶名" + +#: chat.php:1346 +msgid "Timeout in" +msgstr "超時" + +#: chat.php:1346 chat.php:1873 +msgid "User-Agent" +msgstr "用戶代理" + +#: chat.php:1350 +msgid "IP-Address" +msgstr "IP地址" + +#: chat.php:1351 +msgid "Actions" +msgstr "操作" + +#: chat.php:1393 +msgid "Unban" +msgstr "取消禁止" + +#: chat.php:1416 +msgid "Incorrect regular expression!" +msgstr "正則表達式錯誤!" + +#: chat.php:1416 chat.php:1424 +#, 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." +msgstr "你的申請太長了。 你可以用max。 255個字符。 嘗試拆分它." + +#: chat.php:1541 chat.php:1606 +msgid "Filter ID:" +msgstr "過濾器ID:" + +#: chat.php:1542 chat.php:1607 +msgid "Match" +msgstr "匹配" + +#: chat.php:1543 chat.php:1608 +msgid "Replace" +msgstr "替換" + +#: chat.php:1544 chat.php:1578 chat.php:1589 +msgid "Allow in PM" +msgstr "允許在PM" + +#: chat.php:1545 chat.php:1579 chat.php:1590 chat.php:1609 chat.php:1625 +#: chat.php:1633 +msgid "Regex" +msgstr "正則表達式" + +#: chat.php:1547 chat.php:1581 chat.php:1592 +msgid "Case sensitive" +msgstr "大小寫" + +#: chat.php:1586 chat.php:1630 +msgid "New filter:" +msgstr "新過濾器:" + +#: chat.php:1593 chat.php:1634 +msgid "Add" +msgstr "添加" + +#: chat.php:1691 +msgid "" +"This chat uses frames. Please enable frames in your browser or use a " +"suitable one!" +msgstr "" +"這個聊天室使用 frames. 請在瀏覽器中啓用frames或使用合適的" +"frames!" + +#: chat.php:1691 chat.php:2370 chat.php:2457 +msgid "Back to the login page." +msgstr "返回登錄頁面." + +#: chat.php:1709 +msgid "Bottom" +msgstr "底部" + +#: chat.php:1710 +msgid "Manual refresh required" +msgstr "" + +#: chat.php:1726 +msgid "Top" +msgstr "頂部" + +#: chat.php:1734 chat.php:1940 chat.php:1942 +msgid "Delete selected messages" +msgstr "刪除所選信息" + +#: chat.php:1761 chat.php:1888 chat.php:2101 chat.php:2281 +msgid "Back to the chat." +msgstr "回到聊天室." + +#: chat.php:1774 chat.php:1791 +msgid "Admin notes" +msgstr "管理員說明" + +#: chat.php:1777 chat.php:1788 +msgid "Staff notes" +msgstr "工作人員說明" + +#: chat.php:1811 +msgid "Notes saved!" +msgstr "" + +#: chat.php:1835 chat.php:2122 +#, php-format +msgid "Last edited by %1$s at %2$s" +msgstr "上次由%1$s編輯 時間爲%2$s" + +#: chat.php:1848 +msgid "Save notes" +msgstr "保存說明" + +#: chat.php:1850 +msgid "Revisions:" +msgstr "修訂:" + +#: chat.php:1853 +msgid "Older" +msgstr "舊的" + +#: chat.php:1857 +msgid "Newer" +msgstr "較新" + +#: chat.php:1868 chat.php:1914 +msgid "Waiting room" +msgstr "等候室" + +#: chat.php:1880 +msgid "Allow checked" +msgstr "允許檢查" + +#: chat.php:1881 +msgid "Allow all" +msgstr "允許全部" + +#: chat.php:1882 +msgid "Deny checked" +msgstr "拒絕檢查" + +#: chat.php:1883 +msgid "Deny all" +msgstr "全部拒絕" + +#: chat.php:1883 +msgid "Send message to denied:" +msgstr "發送消息給拒絕:" + +#: chat.php:1884 +msgid "Submit" +msgstr "提交" + +#: chat.php:1886 +msgid "No more entry requests to approve." +msgstr "不再需要批准入場申請." + +#: chat.php:1916 +#, 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 +#, 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 +#, 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 +msgid "Exit Chat" +msgstr "退出聊天室" + +#: chat.php:1929 chat.php:2074 chat.php:2085 chat.php:2430 +msgid "Rules" +msgstr "規則" + +#: chat.php:1985 +msgid "Send to" +msgstr "發送至" + +#: chat.php:1990 +msgid "All chatters" +msgstr "所有的聊天者" + +#: chat.php:1996 +msgid "Members only" +msgstr "內部使用" + +#: chat.php:2003 +msgid "Staff only" +msgstr "只供職員使用" + +#: chat.php:2010 +msgid "Admin only" +msgstr "僅限管理員" + +#: chat.php:2019 +msgid "(offline)" +msgstr "(離線)" + +#: chat.php:2043 +msgid "Also purge messages" +msgstr "同時清除消息" + +#: chat.php:2050 +msgid "Delete last message" +msgstr "刪除上一條消息" + +#: chat.php:2055 +msgid "Delete all messages" +msgstr "刪除所有信息" + +#: chat.php:2057 +msgid "Switch to single-line" +msgstr "切換到單行" + +#: chat.php:2059 +msgid "Switch to multi-line" +msgstr "切換到多行" + +#: chat.php:2070 +#, php-format +msgid "Welcome %s!" +msgstr "歡迎%s!" + +#: chat.php:2071 +#, 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 "" + +#: chat.php:2087 +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." +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 "" +"如果您想在帖子中嵌入圖片,只需將[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 "" +"成員:您的個人資料中還有更多選項。 您可以隨時調整字體,更改密碼,當然也可以刪" +"除您的帳戶." + +#: 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 "" +"版主:請注意底部。 它將打開一個頁面,您可以在其中清理房間,踢聊天,查看所有活" +"動會話並在需要時完全禁用訪客訪問權限." + +#: chat.php:2097 +msgid "" +"Admins: You'll be furthermore able to register guests, edit members and " +"register new nicknames." +msgstr "管理員:您還可以註冊客人,編輯成員並註冊新的暱稱。" + +#: chat.php:2135 +msgid "Your Profile" +msgstr "你的個人資料" + +#: chat.php:2144 +msgid "Don't ignore anymore" +msgstr "取消忽略" + +#: chat.php:2152 +msgid "Ignore" +msgstr "忽略" + +#: chat.php:2163 +#, php-format +msgid "Refresh rate (%1$d-%2$d seconds)" +msgstr "刷新時間(%1$d秒-%2$d秒)" + +#: chat.php:2167 chat.php:2170 +msgid "View examples" +msgstr "查看示例" + +#: chat.php:2174 +msgid "Fontface" +msgstr "字體" + +#: chat.php:2175 +msgid "Room Default" +msgstr "默認房間" + +#: chat.php:2188 +msgid "Bold" +msgstr "大膽" + +#: chat.php:2192 +msgid "Italic" +msgstr "斜體" + +#: chat.php:2196 +msgid "Small" +msgstr "" + +#: chat.php:2199 +msgid "Example for your chosen font" +msgstr "您選擇的字體的示例" + +#: chat.php:2203 +msgid "Autoscroll (for old browsers or top-to-bottom sort)." +msgstr "自動滾動(適用於舊瀏覽器或從上到下排序)." + +#: chat.php:2234 +msgid "For everyone" +msgstr "所以人" + +#: chat.php:2239 +msgid "For members only" +msgstr "僅限會員" + +#: chat.php:2244 +msgid "For staff only" +msgstr "僅限員工" + +#: chat.php:2248 +msgid "Time zone" +msgstr "時區" + +#: chat.php:2261 +msgid "Change Password" +msgstr "更改密碼" + +#: chat.php:2263 +msgid "Old password:" +msgstr "舊密碼:" + +#: chat.php:2264 +msgid "New password:" +msgstr "新密碼:" + +#: chat.php:2265 +msgid "Confirm new password:" +msgstr "在重複一次新密碼:" + +#: chat.php:2268 +msgid "Change Nickname" +msgstr "" + +#: chat.php:2269 +msgid "New nickname:" +msgstr "新暱稱:" + +#: chat.php:2273 +msgid "Save changes" +msgstr "保存更改" + +#: chat.php:2275 +msgid "Delete account" +msgstr "刪除帳戶" + +#: chat.php:2301 +msgid "Reload Post Box" +msgstr "刷新緩存" + +#: chat.php:2304 +msgid "Reload Messages" +msgstr "刷新一下消息" + +#: chat.php:2307 +msgid "Profile" +msgstr "個人資料" + +#: chat.php:2311 chat.php:2528 +msgid "Admin" +msgstr "管理" + +#: chat.php:2318 +msgid "View public notes" +msgstr "閱讀用戶配置文件" + +#: chat.php:2325 +msgid "Clone" +msgstr "打開新標籤" + +#: chat.php:2334 +msgid "Rearrange" +msgstr "改變方向" + +#: chat.php:2337 +msgid "Rules & Help" +msgstr "條款 & 幫助" + +#: chat.php:2358 chat.php:2362 +msgid "File not found!" +msgstr "找不到文件!" + +#: chat.php:2370 +#, php-format +msgid "Bye %s, visit again soon!" +msgstr "再見%s, 歡迎你再此訪問!" + +#: chat.php:2377 +msgid "Colourtable" +msgstr "顏色表" + +#: chat.php:2388 +msgid "Back to your Profile" +msgstr "回到你的個人資料" + +#: chat.php:2412 +msgid "Repeat password
to register" +msgstr "重複密碼
註冊" + +#: chat.php:2412 +msgid "(optional)" +msgstr "(可選的)" + +#: chat.php:2417 +msgid "Guests, choose a colour:" +msgstr "客人,選擇一種顏色:" + +#: chat.php:2417 +msgid "Random Colour" +msgstr "隨機顏色" + +#: chat.php:2421 chat.php:2435 chat.php:2569 +msgid "Sorry, currently members only!" +msgstr "對不起,目前僅限會員!" + +#: chat.php:2423 chat.php:2437 +msgid "Enter Chat" +msgstr "回車" + +#: chat.php:2457 +#, php-format +msgid "Error: %s" +msgstr "錯誤: %s" + +#: chat.php:2467 +msgid "Fatal error" +msgstr "致命錯誤" + +#: chat.php:2470 +#, php-format +msgid "Fatal error: %s" +msgstr "致命錯誤: %s" + +#: chat.php:2482 chat.php:2693 +msgid "Failed login attempt(s)" +msgstr "登錄嘗試失敗" + +#: chat.php:2489 +#, php-format +msgid "Read %d messages in your inbox" +msgstr "閱讀收件箱中的%d條消息" + +#: chat.php:2498 +#, php-format +msgid "%d new guests to approve" +msgstr "%d新客人批准" + +#: chat.php:2530 +msgid "Admin:" +msgstr "管理:" + +#: chat.php:2533 +msgid "Staff" +msgstr "工作人員" + +#: chat.php:2535 +msgid "Staff:" +msgstr "工作人員:" + +#: chat.php:2540 +msgid "Members:" +msgstr "正式成員:" + +#: chat.php:2542 +msgid "Guests" +msgstr "遊客" + +#: chat.php:2563 chat.php:2993 chat.php:3197 chat.php:4092 +#, 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 +#, 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 +msgid "Wrong global Password!" +msgstr "錯誤的全球密碼!" + +#: chat.php:2591 chat.php:2612 +msgid "Wrong Captcha" +msgstr "錯誤驗證碼" + +#: chat.php:2596 chat.php:2604 +msgid "Captcha already used or timed out." +msgstr "驗證碼已經使用或超時." + +#: chat.php:2652 +msgid "A user with this nickname is already logged in." +msgstr "具有此暱稱的用戶已登錄." + +#: chat.php:2652 chat.php:2933 chat.php:3176 +msgid "Wrong Password!" +msgstr "密碼錯誤!" + +#: chat.php:2696 +msgid "Dismiss" +msgstr "承認" + +#: chat.php:2747 chat.php:3171 chat.php:4096 +msgid "Password confirmation does not match!" +msgstr "重複密碼不匹配!" + +#: chat.php:2859 +msgid "Invalid/expired session" +msgstr "無效/已過期的會話" + +#: chat.php:2875 chat.php:3412 +msgid "You have been kicked!" +msgstr "你被踢出該聊天室!" + +#: chat.php:2885 +#, php-format +msgid "Currently %d chatter(s) in room:" +msgstr "目前%d人在房間裏聊天:" + +#: chat.php:2933 +msgid "This nickname is a registered member." +msgstr "這個暱稱是註冊會員." + +#: chat.php:2960 chat.php:3001 +#, php-format +msgid "%s is already registered." +msgstr "%s已經註冊。" + +#: chat.php:2969 chat.php:2990 +#, php-format +msgid "Can't register %s" +msgstr "無法註冊%s" + +#: chat.php:2978 chat.php:3023 +#, php-format +msgid "%s successfully registered." +msgstr "%s成功註冊." + +#: chat.php:3031 chat.php:3036 +#, php-format +msgid "Can't change status of %s" +msgstr "無法改變狀態%s" + +#: chat.php:3047 +#, php-format +msgid "%s successfully deleted from database." +msgstr "%s已成功從數據庫中刪除." + +#: chat.php:3056 +#, php-format +msgid "Status of %s successfully changed." +msgstr "%s的狀態已更改." + +#: chat.php:3073 +#, php-format +msgid "Successfully reset password for %s" +msgstr "" + +#: chat.php:3075 +#, php-format +msgid "Can't reset password for %s" +msgstr "" + +#: chat.php:3190 +msgid "Your profile has successfully been saved." +msgstr "您的個人資料已成功保存." + +#: chat.php:3202 +msgid "Nickname is already taken" +msgstr "暱稱已被取消" + +#: chat.php:3714 +msgid "system message" +msgstr "系統信息" + +#: chat.php:3921 +msgid "Beige" +msgstr "米色" + +#: chat.php:3922 +msgid "Black" +msgstr "黑色" + +#: chat.php:3923 +msgid "Blue" +msgstr "藍色" + +#: chat.php:3924 +msgid "Blue violet" +msgstr "紫羅蘭色" + +#: chat.php:3925 +msgid "Brown" +msgstr "棕色" + +#: chat.php:3926 +msgid "Cyan" +msgstr "青色" + +#: chat.php:3927 +msgid "Dark blue" +msgstr "深藍" + +#: chat.php:3928 +msgid "Dark green" +msgstr "深綠色" + +#: chat.php:3929 +msgid "Dark red" +msgstr "深紅" + +#: chat.php:3930 +msgid "Dark violet" +msgstr "深紫羅蘭" + +#: chat.php:3931 +msgid "Sky blue" +msgstr "天藍色" + +#: chat.php:3932 +msgid "Gold" +msgstr "金" + +#: chat.php:3933 +msgid "Grey" +msgstr "灰色" + +#: chat.php:3934 +msgid "Green" +msgstr "綠色" + +#: chat.php:3935 +msgid "Hot pink" +msgstr "亮粉色" + +#: chat.php:3936 +msgid "Indigo" +msgstr "靛青" + +#: chat.php:3937 +msgid "Light blue" +msgstr "淺藍" + +#: chat.php:3938 +msgid "Light green" +msgstr "淺綠色" + +#: chat.php:3939 +msgid "Lime green" +msgstr "檸檬綠" + +#: chat.php:3940 +msgid "Magenta" +msgstr "品紅" + +#: chat.php:3941 +msgid "Olive" +msgstr "橄欖" + +#: chat.php:3942 +msgid "Orange" +msgstr "橙子" + +#: chat.php:3943 +msgid "Orange red" +msgstr "橙紅色" + +#: chat.php:3944 +msgid "Purple" +msgstr "紫色" + +#: chat.php:3945 +msgid "Red" +msgstr "紅色" + +#: chat.php:3946 +msgid "Royal blue" +msgstr "寶藍色" + +#: chat.php:3947 +msgid "Sea green" +msgstr "海綠色" + +#: chat.php:3948 +msgid "Sienna" +msgstr "黃土" + +#: chat.php:3949 +msgid "Silver" +msgstr "銀色" + +#: chat.php:3950 +msgid "Tan" +msgstr "黃褐色" + +#: chat.php:3951 +msgid "Teal" +msgstr "藍綠色" + +#: chat.php:3952 +msgid "Violet" +msgstr "紫色" + +#: chat.php:3953 +msgid "White" +msgstr "白色" + +#: chat.php:3954 +msgid "Yellow" +msgstr "黃色" + +#: chat.php:3955 +msgid "Yellow green" +msgstr "黃綠色" + +#: chat.php:4077 +msgid "Successfully destroyed chat" +msgstr "成功破壞了聊天" + +#: chat.php:4086 +msgid "" +"Database tables already exist! To continue, you have to delete these tables " +"manually first." +msgstr "數據庫表已經存在!,要繼續,您必須先手動刪除這些表。" + +#: chat.php:4089 +msgid "A Superadmin already exists!" +msgstr "超級管理員已經存在!" + +#: chat.php:4182 chat.php:4369 +#, php-format +msgid "%s - " +msgstr "" + +#: chat.php:4183 chat.php:4369 +#, php-format +msgid "[M] %s - " +msgstr "" + +#: chat.php:4184 chat.php:4369 +#, php-format +msgid "[Staff] %s - " +msgstr "" + +#: chat.php:4185 chat.php:4369 +#, php-format +msgid "[Admin] %s - " +msgstr "" + +#: chat.php:4186 chat.php:4369 +#, php-format +msgid "[%1$s to %2$s] - " +msgstr "" + +#: chat.php:4187 +#, php-format +msgid "%s entered the chat." +msgstr "%s進入聊天室." + +#: chat.php:4188 +#, php-format +msgid "%s left the chat." +msgstr "%s離開了聊天室。" + +#: chat.php:4189 +#, php-format +msgid "%s is now a registered member." +msgstr "%s現在是註冊會員." + +#: chat.php:4190 +#, php-format +msgid "%s is now a registered applicant." +msgstr "%s現在是註冊申請人." + +#: chat.php:4191 +#, php-format +msgid "%s has been kicked." +msgstr "%s被踢了." + +#: chat.php:4192 +#, php-format +msgid "%s have been kicked." +msgstr "%s被踢了." + +#: chat.php:4193 +msgid "All guests have been kicked." +msgstr "所有客人都被踢了." + +#: chat.php:4194 +#, php-format +msgid "%s has been cleaned." +msgstr "%s已經清理乾淨了." + +#: chat.php:4202 chat.php:4396 +msgid "Temporarily disabled" +msgstr "暫時禁用" + +#: chat.php:4218 chat.php:4594 +msgid "A chat community" +msgstr "" + +#: chat.php:4256 +msgid "Successfully registered!" +msgstr "成功註冊!" + +#: chat.php:4522 chat.php:4721 chat.php:4728 +msgid "No connection to database!" +msgstr "沒有連接到數據庫!" + +#: chat.php:4531 +msgid "" +"Note: Default CSS is now hardcoded and can be removed from the CSS setting" +msgstr "注意:默認的CSS現在是硬編碼的,可以從CSS設置中刪除" + +#: chat.php:4611 +#, 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 +#, 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 "" +"沒有連接到數據庫,請創建一個數據庫並編輯腳本並修改爲用戶名密碼正確的數據庫!" + +#: 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." diff --git a/update-translation.sh b/update-translation.sh new file mode 100755 index 0000000..1a2138b --- /dev/null +++ b/update-translation.sh @@ -0,0 +1,3 @@ +#!/bin/bash +xgettext -o locale/le-chat-php.pot `find . -iname '*.php'` +for translation in `find locale -iname '*.po'`; do msgmerge -U "$translation" locale/le-chat-php.pot; msgfmt -o ${translation:0:-2}mo "$translation"; done
$I[bgcolour] ($I[viewexample])"; + echo '
'._('Background colour')." ("._('View examples').')'; echo "
$I[fontface]"; - echo ""; + echo '>'._('Small').'
 
'._('Fontface').''; + echo '
     
'.style_this(htmlspecialchars($U['nickname'])." : $I[fontexample]", $U['style']).'
'.style_this(htmlspecialchars($U['nickname'])." : "._('Example for your chosen font'), $U['style']).'
"; + echo '>'._('Enabled').'
".$I[$setting].''; + foreach($bool_settings as $setting => $title){ + echo "
".$title.''; echo "
'; thr(); } - echo "
$I[eninbox]"; - echo "
'._('Enable offline inbox').''; + echo '
'; thr(); if($U['status']>=2){ - echo ""; + echo ''; if($ga===0){ - echo ""; + echo ''; } - echo '
$I[tz]"; - echo "
'._('Time zone').''; + echo '
"; + echo ''; thr(); - echo "
$I[changepass]
'; echo '
'._('Change Password').'
'; - echo ""; - echo ""; - echo ""; + echo ''; + echo ''; + echo ''; echo '
 $I[oldpass]
 $I[newpass]
 $I[confirmpass]
 '._('Old password:').'
 '._('New password:').'
 '._('Confirm new password:').'
$I[changenick]"; - echo "'; thr(); } - echo '
 $I[newnickname]"; + echo '
'._('Change Nickname').''; + echo '
 '._('New nickname:').''; echo '
'.submit($I['savechanges']).'
'; + echo '
'.submit(_('Save changes')).'
'; if($U['status']>1 && $U['status']<8){ - echo '
'.form('profile', 'delete').submit($I['deleteacc'], 'class="delbutton"').''; + echo '
'.form('profile', 'delete').submit(_('Delete account'), 'class="delbutton"').''; } - echo "

$I[changelang]"; - foreach($L as $lang=>$name){ - echo " $name"; + echo '

'._('Change language:'); + foreach(LANGUAGES as $lang=>$data){ + echo " $data[name]"; } - echo '


'.form('view').submit($I['backtochat'], 'class="backbutton"').''; + echo '


'.form('view').submit(_('Back to the chat.'), 'class="backbutton"').''; print_end(); } function send_controls(): void { - global $I, $U; + global $U; print_start('controls'); $personalnotes=(bool) get_setting('personalnotes'); $publicnotes=(bool) get_setting('publicnotes'); @@ -2192,31 +2298,31 @@ function send_controls(): void $hide_help=(bool) get_setting('hide_help'); echo ''; if(!$hide_reload_post_box) { - echo ''; + echo ''; } if(!$hide_reload_messages) { - echo ''; + echo ''; } if(!$hide_profile) { - echo ''; + echo ''; } if($U['status']>=5){ if(!$hide_admin) { - echo ''; + echo ''; } if(!$personalnotes && !$hide_notes){ - echo ''; + echo ''; } } if($publicnotes){ - echo ''; + echo ''; } if($U['status']>=3){ if($personalnotes || $publicnotes){ - echo ''; + echo ''; } if(!$hide_clone) { - echo ''; + echo ''; } } if(!isset($_GET['sort'])){ @@ -2225,19 +2331,19 @@ function send_controls(): void $sort=1; } if(!$hide_rearrange) { - echo ''; + echo ''; } if(!$hide_help) { - echo ''; + echo ''; } - echo ''; + echo ''; echo '
' . form_target( 'post', 'post' ) . submit( $I[ 'reloadpb' ] ) . '' . form_target( 'post', 'post' ) . submit( _('Reload Post Box') ) . '' . form_target( 'view', 'view' ) . submit( $I[ 'reloadmsgs' ] ) . '' . form_target( 'view', 'view' ) . submit( _('Reload Messages') ) . '' . form_target( 'view', 'profile' ) . submit( $I[ 'chgprofile' ] ) . '' . form_target( 'view', 'profile' ) . submit( _('Profile') ) . '' . form_target( 'view', 'admin' ) . submit( $I[ 'adminbtn' ] ) . '' . form_target( 'view', 'admin' ) . submit( _('Admin') ) . ''.form_target('view', 'notes', 'staff').submit($I['notes']).''.form_target('view', 'notes', 'staff').submit(_('Notes')).''.form_target('view', 'viewpublicnotes').submit($I['viewpublicnotes']).''.form_target('view', 'viewpublicnotes').submit(_('View public notes')).''.form_target('view', 'notes').submit($I['notes']).''.form_target('view', 'notes').submit(_('Notes')).'' . form_target( '_blank', 'login' ) . submit( $I[ 'clone' ] ) . '' . form_target( '_blank', 'login' ) . submit( _('Clone') ) . '' . form_target( '_parent', 'login' ) . hidden( 'sort', $sort ) . submit( $I[ 'sortframe' ] ) . '' . form_target( '_parent', 'login' ) . hidden( 'sort', $sort ) . submit( _('Rearrange') ) . '' . form_target( 'view', 'help' ) . submit( $I[ 'randh' ] ) . '' . form_target( 'view', 'help' ) . submit( _('Rules & Help') ) . ''.form_target('_parent', 'logout').submit($I['exit'], 'id="exitbutton"').''.form_target('_parent', 'logout').submit(_('Exit Chat'), 'id="exitbutton"').'
'; print_end(); } function send_download(): void { - global $I, $db; + global $db; if(isset($_GET['id'])){ $stmt=$db->prepare('SELECT filename, type, data FROM ' . PREFIX . 'files WHERE hash=?;'); $stmt->execute([$_GET['id']]); @@ -2249,27 +2355,26 @@ function send_download(): void echo base64_decode($data['data']); }else{ http_response_code(404); - send_error($I['filenotfound']); + send_error(_('File not found!')); } }else{ http_response_code(404); - send_error($I['filenotfound']); + send_error(_('File not found!')); } } function send_logout(): void { - global $I, $U; + global $U; print_start('logout'); - echo '

'.sprintf($I['bye'], style_this(htmlspecialchars($U['nickname']), $U['style'])).'

'.form_target('_parent', '').submit($I['backtologin'], 'class="backbutton"').''; + echo '

'.sprintf(_('Bye %s, visit again soon!'), style_this(htmlspecialchars($U['nickname']), $U['style'])).'

'.form_target('_parent', '').submit(_('Back to the login page.'), 'class="backbutton"').''; print_end(); } function send_colours(): void { - global $I; print_start('colours'); - echo "

$I[colourtable]

"; + echo '

'._('Colourtable').'

'; for($red=0x00;$red<=0xFF;$red+=0x33){ for($green=0x00;$green<=0xFF;$green+=0x33){ for($blue=0x00;$blue<=0xFF;$blue+=0x33){ @@ -2280,13 +2385,12 @@ function send_colours(): void } echo '
'; } - echo '
'.form('profile').submit($I['backtoprofile'], ' class="backbutton"').''; + echo '
'.form('profile').submit(_('Back to your Profile'), ' class="backbutton"').''; print_end(); } function send_login(): void { - global $I, $L; $ga=(int) get_setting('guestaccess'); if($ga===4){ send_chat_disabled(); @@ -2300,41 +2404,41 @@ function send_login(): void } echo ''; if($englobal!==1 || (isset($_POST['globalpass']) && $_POST['globalpass']==get_setting('globalpass'))){ - echo ""; - echo ""; + echo ''; + echo ''; send_captcha(); if($ga!==0){ if(get_setting('guestreg')!=0){ - echo ""; + echo ''; } if($englobal===2){ - echo ""; + echo ''; } - echo "'; }else{ - echo ""; + echo ''; } - echo '
$I[nick]
$I[pass]
'._('Nickname:').'
'._('Password:').'
$I[regpass]
'._('Repeat password
to register').'
$I[globalloginpass]
'._('Global Password:').'
$I[choosecol]
'._('Guests, choose a colour:').'
$I[noguests]
'._('Sorry, currently members only!').'
'.submit($I['enter']).'
'; + echo '
'.submit(_('Enter Chat')).'
'; get_nowchatting(); echo '
'; echo get_setting('topic'); echo '
'; $rulestxt=get_setting('rulestxt'); if(!empty($rulestxt)){ - echo "

$I[rules]

$rulestxt
"; + echo '

'._('Rules')."

$rulestxt
"; } }else{ - echo "
$I[globalloginpass]
'._('Global Password:').'
$I[noguests]
'._('Sorry, currently members only!').'
'.submit($I['enter']).'
'; + echo '
'.submit(_('Enter Chat')).'
'; } - echo "

$I[changelang]"; - foreach($L as $lang=>$name){ - echo " $name"; + echo '

'._('Change language:'); + foreach(LANGUAGES as $lang=>$data){ + echo " $data[name]"; } echo '

'.credit(); print_end(); @@ -2349,41 +2453,40 @@ function send_chat_disabled(): void function send_error(string $err): void { - global $I; print_start('error'); - echo "

$I[error]: $err

".form_target('_parent', '').submit($I['backtologin'], 'class="backbutton"').''; + echo '

'.sprintf(_('Error: %s'), $err).'

'.form_target('_parent', '').submit(_('Back to the login page.'), 'class="backbutton"').''; print_end(); } function send_fatal_error(string $err): void { - global $I, $language, $styles; + global $language, $styles, $dir; prepare_stylesheets('fatal_error'); send_headers(); - echo ''.meta_html(); - echo "$I[fatalerror]"; + echo ''.meta_html(); + echo ''._('Fatal error').''; echo ""; echo ''; - echo "

$I[fatalerror]: $err

"; + echo '

'.sprintf(_('Fatal error: %s'), $err).'

'; print_end(); } function print_notifications(): void { - global $I, $U, $db; + global $U, $db; echo ''; $stmt=$db->prepare('SELECT loginfails FROM ' . PREFIX . 'members WHERE nickname=?;'); $stmt->execute([$U['nickname']]); $temp=$stmt->fetch(PDO::FETCH_NUM); if($temp && $temp[0]>0){ - echo '

' . $temp[0] . " " . $I['failednotice'] . "

"; + echo '

' . $temp[0] . " " . _('Failed login attempt(s)') . "

"; } if($U['status']>=2 && $U['eninbox']!=0){ $stmt=$db->prepare('SELECT COUNT(*) FROM ' . PREFIX . 'inbox WHERE recipient=?;'); $stmt->execute([$U['nickname']]); $tmp=$stmt->fetch(PDO::FETCH_NUM); if($tmp[0]>0){ - echo '

'.form('inbox').submit(sprintf($I['inboxmsgs'], $tmp[0])).'

'; + echo '

'.form('inbox').submit(sprintf(_('Read %d messages in your inbox'), $tmp[0])).'

'; } } if($U['status']>=5 && get_setting('guestaccess')==3){ @@ -2392,7 +2495,7 @@ function print_notifications(): void if($temp[0]>0){ echo '

'; echo form('admin', 'approve'); - echo submit(sprintf($I['approveguests'], $temp[0])).'

'; + echo submit(sprintf(_('%d new guests to approve'), $temp[0])).'

'; } } echo '
'; @@ -2400,7 +2503,7 @@ function print_notifications(): void function print_chatters(): void { - global $I, $U, $db, $language; + 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;'); @@ -2422,21 +2525,21 @@ function print_chatters(): void } } if($U['status']>5){ // can chat in admin channel - echo ''; + echo ''; } else { - echo "'; + echo ''; } if($U['status']>4){ // can chat in staff channel - echo ''; + echo ''; } else { - echo "'; + echo ''; } if($U['status']>=3){ // can chat in member channel - echo ''; + echo ''; } else { - echo "'; + echo ''; } - echo ''; + echo ''; echo '
' . $channellink . 's _" target="post">' . $I['admin'] . ': '.implode('   ', $A).'' . $channellink . 's _" target="post">' . _('Admin') . ': '.implode('   ', $A).'$I[admin]: ".implode('   ', $A).''._('Admin:').' '.implode('   ', $A).'' . $channellink . 's %" target="post">' . $I['staff'] . ': '.implode('   ', $S).'' . $channellink . 's %" target="post">' . _('Staff') . ': '.implode('   ', $S).'$I[staff]: ".implode('   ', $S).''._('Staff:').' '.implode('   ', $S).'' . $channellink . 's ?" target="post">' . $I['members'] . ': '.implode('   ', $M).'' . $channellink . 's ?" target="post">' . _('Members') . ': '.implode('   ', $M).'$I[members]: ".implode('   ', $M).''._('Members:').' '.implode('   ', $M).'' . $channellink . 's *" target="post">' . $I['guests'] . ': '.implode('   ', $G).'' . $channellink . 's *" target="post">' . _('Guests') . ': '.implode('   ', $G).'
'; } } @@ -2445,7 +2548,7 @@ function print_chatters(): void function create_session(bool $setup, string $nickname, string $password): void { - global $I, $U; + global $U; $U['nickname']=preg_replace('/\s/', '', $nickname); if(check_member($password)){ if($setup && $U['status']>=7){ @@ -2457,18 +2560,18 @@ function create_session(bool $setup, string $nickname, string $password): void check_captcha($_POST['challenge'] ?? '', $_POST['captcha'] ?? ''); $ga=(int) get_setting('guestaccess'); if(!valid_nick($U['nickname'])){ - send_error(sprintf($I['invalnick'], get_setting('maxname'), get_setting('nickregex'))); + send_error(sprintf(_('Invalid nickname (%1$d characters maximum and has to match the regular expression "%2$s")'), get_setting('maxname'), get_setting('nickregex'))); } if(!valid_pass($password)){ - send_error(sprintf($I['invalpass'], get_setting('minpass'), get_setting('passregex'))); + send_error(sprintf(_('Invalid password (At least %1$d characters and has to match the regular expression "%2$s")'), get_setting('minpass'), get_setting('passregex'))); } if($ga===0){ - send_error($I['noguests']); + send_error(_('Sorry, currently members only!')); }elseif(in_array($ga, [2, 3], true)){ $U['entry'] = 0; } if(get_setting('englobalpass')!=0 && isset($_POST['globalpass']) && $_POST['globalpass']!=get_setting('globalpass')){ - send_error($I['wrongglobalpass']); + send_error(_('Wrong global Password!')); } } try { @@ -2481,16 +2584,16 @@ function create_session(bool $setup, string $nickname, string $password): void function check_captcha(string $challenge, string $captcha_code): void { - global $I, $db, $memcached; + global $db, $memcached; $captcha=(int) get_setting('captcha'); if($captcha!==0){ if(empty($challenge)){ - send_error($I['wrongcaptcha']); + send_error(_('Wrong Captcha')); } $code = ''; if(MEMCACHED){ if(!$code=$memcached->get(DBNAME . '-' . PREFIX . "captcha-$_POST[challenge]")){ - send_error($I['captchaexpire']); + send_error(_('Captcha already used or timed out.')); } $memcached->delete(DBNAME . '-' . PREFIX . "captcha-$_POST[challenge]"); }else{ @@ -2498,7 +2601,7 @@ function check_captcha(string $challenge, string $captcha_code): void $stmt->execute([$challenge]); $stmt->bindColumn(1, $code); if(!$stmt->fetch(PDO::FETCH_BOUND)){ - send_error($I['captchaexpire']); + send_error(_('Captcha already used or timed out.')); } $time=time(); $stmt=$db->prepare('DELETE FROM ' . PREFIX . 'captcha WHERE id=? OR time<(?-(SELECT value FROM ' . PREFIX . "settings WHERE setting='captchatime'));"); @@ -2506,7 +2609,7 @@ function check_captcha(string $challenge, string $captcha_code): void } if($captcha_code!==$code){ if($captcha!==3 || strrev($captcha_code)!==$code){ - send_error($I['wrongcaptcha']); + send_error(_('Wrong Captcha')); } } } @@ -2536,7 +2639,7 @@ function set_secure_cookie(string $name, string $value): void function write_new_session(string $password): void { - global $I, $U, $db, $session; + global $U, $db, $session; $stmt=$db->prepare('SELECT * FROM ' . PREFIX . 'sessions WHERE nickname=?;'); $stmt->execute([$U['nickname']]); if($temp=$stmt->fetch(PDO::FETCH_ASSOC)){ @@ -2546,7 +2649,7 @@ function write_new_session(string $password): void check_kicked(); set_secure_cookie(COOKIENAME, $U['session']); }else{ - send_error("$I[userloggedin]
$I[wrongpass]"); + send_error(_('A user with this nickname is already logged in.')."
"._('Wrong Password!')); } }else{ // create new session @@ -2581,16 +2684,16 @@ function write_new_session(string $password): void function show_fails(): void { - global $db, $I, $U; + global $db, $U; $stmt=$db->prepare('SELECT loginfails FROM ' . PREFIX . 'members WHERE nickname=?;'); $stmt->execute([$U['nickname']]); $temp=$stmt->fetch(PDO::FETCH_NUM); if($temp && $temp[0]>0){ print_start('failednotice'); - echo $temp[0] . " " . $I['failednotice'] . "
"; + echo $temp[0] . " " . _('Failed login attempt(s)') . "
"; $stmt=$db->prepare('UPDATE ' . PREFIX . 'members SET loginfails=? WHERE nickname=?;'); $stmt->execute([0, $U['nickname']]); - echo form_target('_self', 'login').submit($I['dismiss']).'