mirror of
https://github.com/moodle/moodle.git
synced 2025-02-05 07:39:09 +01:00
51 lines
2.9 KiB
PHP
51 lines
2.9 KiB
PHP
<?PHP // $Id$
|
|
// chat.php - created with Moodle 1.2 development (2003111400)
|
|
|
|
|
|
$string['beep'] = 'beep';
|
|
$string['chatintro'] = 'Introduction text';
|
|
$string['chatname'] = 'Name of this chat room';
|
|
$string['chatreport'] = 'Chat sessions';
|
|
$string['chattime'] = 'Next chat time';
|
|
$string['configmethod'] = 'The normal chat method involves the clients regularly contacting the server for updates. It requires no configuration and works everywhere, but it can create a large load on the server with many chatters. Using a server daemon requires shell access to Unix, but it results in a fast scalable chat environment.';
|
|
$string['configoldping'] = 'After how long of not hearing from a user should we consider them gone?';
|
|
$string['configrefreshroom'] = 'How often should the chat room itself be refreshed? (in seconds). Setting this low will make the chat room seem quicker, but it may place a higher load on your web server when many people are chatting';
|
|
$string['configrefreshuserlist'] = 'How often should the list of users be refreshed? (in seconds)';
|
|
$string['configserverhost'] = 'The hostname of the computer where the server daemon is';
|
|
$string['configserverip'] = 'The numerical IP address that matches the above hostname';
|
|
$string['configservermax'] = 'Max number of clients allowed';
|
|
$string['configserverport'] = 'Port to use on the server for the daemon';
|
|
$string['currentchats'] = 'Active chat sessions';
|
|
$string['currentusers'] = 'Current users';
|
|
$string['deletesession'] = 'Delete this session';
|
|
$string['deletesessionsure'] = 'Are you sure you want to delete this session?';
|
|
$string['donotusechattime'] = 'Don\'t publish any chat times';
|
|
$string['enterchat'] = 'Click here to enter the chat now';
|
|
$string['errornousers'] = 'Could not find any users!';
|
|
$string['helpchatting'] = 'Help with chatting';
|
|
$string['idle'] = 'Idle';
|
|
$string['messagebeepseveryone'] = '$a beeps everyone!';
|
|
$string['messagebeepsyou'] = '$a has just beeped you!';
|
|
$string['messageenter'] = '$a has just entered this chat';
|
|
$string['messageexit'] = '$a has left this chat';
|
|
$string['messages'] = 'Messages';
|
|
$string['methodnormal'] = 'Normal method';
|
|
$string['methoddaemon'] = 'Chat server daemon';
|
|
$string['modulename'] = 'Chat';
|
|
$string['modulenameplural'] = 'Chats';
|
|
$string['neverdeletemessages'] = 'Never delete messages';
|
|
$string['nextsession'] = 'Next scheduled session';
|
|
$string['nomessages'] = 'No messages yet';
|
|
$string['repeatdaily'] = 'At the same time every day';
|
|
$string['repeatnone'] = 'No repeats - publish the specified time only';
|
|
$string['repeattimes'] = 'Repeat sessions';
|
|
$string['repeatweekly'] = 'At the same time every week';
|
|
$string['savemessages'] = 'Save past sessions';
|
|
$string['seesession'] = 'See this session';
|
|
$string['sessions'] = 'Chat sessions';
|
|
$string['strftimemessage'] = '%%H:%%M';
|
|
$string['studentseereports'] = 'Everyone can view past sessions';
|
|
$string['viewreport'] = 'View past chat sessions';
|
|
|
|
?>
|