ninechan/lang/en.php

74 lines
3 KiB
PHP

<?php
/*
* Default English translation
* By Flashwave <https://github.com/flashwave>
*/
// Version of ninechan this language file is created for
$langVersion = '2.1';
$language = [
// Board
'THREADS' => 'Threads',
'THREAD' => 'Thread',
'NEWTHREAD' => '&#8288;N&#8288;e&#8288;w&#8288; &#8288;T&#8288;h&#8288;r&#8288;e&#8288;a&#8288;d&#8288;',
'NEWREPLY' => '&#8288;N&#8288;e&#8288;w&#8288; &#8288;R&#8288;e&#8288;p&#8288;l&#8288;y&#8288;',
'LOCKED' => 'Locked',
'BY' => 'by',
'RETURN' => 'Return to Index',
'MANAGE' => 'Manage',
'INDEX' => 'Index',
// Posting
'RETO' => 'Reply to',
'TITLE' => 'Title',
'NAME' => 'Name',
'EMAIL' => 'E-mail',
'COMMENT' => 'Comment',
'SUBMIT' => 'Submit',
'VERIFICATION' => 'Verification',
'PASSWORD' => 'Password',
'PASSWORDCONTEXT' => 'used for post deletion',
'DELPOST' => 'Delete post',
// Messages
'BOARD_CLOSED' => 'The board is closed at the moment.',
'REASON' => 'Reason',
'BANNED' => 'You have been banned from this board.',
'POSTBANNED' => '(USER WAS BANNED FOR THIS POST)',
'EMPTY' => 'No threads have been made yet.',
'NONEXISTENT' => 'The requested thread does not exist.',
'LOCKEDMSG' => 'The thread you are trying to reply to is locked.',
'LOCKEDMSGDEL' => 'The thread your post was in is locked and deletion is not possible.',
'POSTED' => 'Posted!',
'MODTOOLS' => 'The moderator tools should now appear next to posts.',
'TITLETOOSHORT' => 'The given title is too short.',
'TITLETOOLONG' => 'The given title is too long.',
'COMMENTTOOSHORT' => 'The given comment is too short.',
'COMMENTTOOLONG' => 'The given comment is too long.',
'NOTNUMERIC' => 'Could not retrieve post data because the ID you requested is not numeric, check your URL and try again.',
// Warnings and errors
'PHP_OUTDATED' => 'Please upgrade your PHP installation to at least 5.3 or higher.',
'SQL_FUNCTION' => 'Your PHP installation does not support PDO.',
'SQL_CONNECT' => 'SQL Connection Error',
'INVALIDCAPTCHA' => 'Verification failed',
'DEL_SUCCEED' => 'Successfully deleted!',
'DEL_FAILED' => 'Failed to delete.',
'USERBANNEDMSG' => 'You are banned from posting on this board.',
'USERBANNED' => 'Could not complete this action because your IP is banned.',
// Moderator tools
'DELETE' => 'Delete',
'PURGE' => 'Purge Thread',
'LOCK' => 'Lock Thread',
'UNLOCK' => 'Unlock Thread',
'BAN' => 'Ban IP',
'UNBAN' => 'Unban IP',
'MODLOGOUT' => 'Moderator Logout',
'MODLOGIN' => 'Moderator Login',
'LOGOUT' => 'Logout',
'LOGIN' => 'Login'
];