mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-29 14:48:53 +00:00
splitted language files
git-svn-id: file:///svn/phpbb/trunk@4844 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
77dedf68a0
commit
52cc21864c
33 changed files with 4040 additions and 100 deletions
|
@ -27,6 +27,8 @@ $phpEx = substr(strrchr(__FILE__, '.'), 1);
|
|||
require('pagestart.' . $phpEx);
|
||||
include($phpbb_root_path . 'includes/functions_posting.' . $phpEx);
|
||||
|
||||
$user->add_lang(array('posting', 'viewtopic'));
|
||||
|
||||
if (!$auth->acl_get('a_attach'))
|
||||
{
|
||||
trigger_error($user->lang['NO_ADMIN']);
|
||||
|
|
|
@ -31,6 +31,8 @@ require('pagestart.' . $phpEx);
|
|||
include($phpbb_root_path.'includes/functions_user.'.$phpEx);
|
||||
include($phpbb_root_path.'includes/functions_profile_fields.'.$phpEx);
|
||||
|
||||
$user->add_lang(array('posting', 'ucp', 'gcp'));
|
||||
|
||||
//
|
||||
// Get and set basic vars
|
||||
//
|
||||
|
|
|
@ -31,7 +31,7 @@ require($phpbb_root_path . 'includes/functions_admin.'.$phpEx);
|
|||
|
||||
// Start session management
|
||||
$user->start();
|
||||
$user->setup();
|
||||
$user->setup('admin');
|
||||
|
||||
// Did user forget to login? Give 'em a chance to here ...
|
||||
if ($user->data['user_id'] == ANONYMOUS)
|
||||
|
|
|
@ -17,13 +17,14 @@ $phpEx = substr(strrchr(__FILE__, '.'), 1);
|
|||
include($phpbb_root_path . 'common.'.$phpEx);
|
||||
|
||||
$download_id = request_var('id', 0);
|
||||
// Thumbnails are not called from this file by default
|
||||
$thumbnail = request_var('thumb', false);
|
||||
|
||||
// Thumbnails are not handled by this file by default - but for modders this should be interesting. ;)
|
||||
$thumbnail = request_var('t', false);
|
||||
|
||||
// Start session management
|
||||
$user->start();
|
||||
$auth->acl($user->data);
|
||||
$user->setup();
|
||||
$user->setup('viewtopic');
|
||||
|
||||
if (!$download_id)
|
||||
{
|
||||
|
@ -46,7 +47,7 @@ if (!($attachment = $db->sql_fetchrow($result)))
|
|||
}
|
||||
$db->sql_freeresult($result);
|
||||
|
||||
// Additional query, because of more than one attachment assigned to posts and private messages
|
||||
//
|
||||
$sql = 'SELECT p.forum_id, f.forum_password, f.parent_id
|
||||
FROM ' . POSTS_TABLE . ' p, ' . FORUMS_TABLE . ' f
|
||||
WHERE p.post_id = ' . $attachment['post_id'] . '
|
||||
|
@ -177,6 +178,7 @@ function send_file_to_browser($attachment, $upload_dir, $category)
|
|||
}
|
||||
|
||||
// Now the tricky part... let's dance
|
||||
// TODO: needs a little bit more testing... seems to break on some configurations (incomplete files)
|
||||
@ob_end_clean();
|
||||
@ini_set('zlib.output_compression', 'Off');
|
||||
header('Pragma: public');
|
||||
|
@ -212,13 +214,9 @@ function download_allowed()
|
|||
return true;
|
||||
}
|
||||
|
||||
$url = trim(getenv('HTTP_REFERER'));
|
||||
if ($url == '')
|
||||
{
|
||||
$url = trim($_SERVER['HTTP_REFERER']);
|
||||
}
|
||||
$url = (getenv('HTTP_REFERER')) ? trim(getenv('HTTP_REFERER')) : trim($_SERVER['HTTP_REFERER']);
|
||||
|
||||
if ($url == '')
|
||||
if (!$url)
|
||||
{
|
||||
return ($config['secure_allow_empty_referer']) ? true : false;
|
||||
}
|
||||
|
@ -228,14 +226,14 @@ function download_allowed()
|
|||
$hostname = trim($url[0]);
|
||||
unset($url);
|
||||
|
||||
$allowed = ($config['secure_allow_deny']) ? FALSE : TRUE;
|
||||
$allowed = ($config['secure_allow_deny']) ? false : true;
|
||||
$iplist = array();
|
||||
|
||||
$ip_ary = gethostbynamel($hostname);
|
||||
|
||||
foreach ($ip_ary as $ip)
|
||||
{
|
||||
if (!empty($ip))
|
||||
if ($ip)
|
||||
{
|
||||
$iplist[] = $ip;
|
||||
}
|
||||
|
@ -256,13 +254,16 @@ function download_allowed()
|
|||
|
||||
while ($row = $db->sql_fetchrow($result))
|
||||
{
|
||||
if (!empty($row['site_ip']))
|
||||
$site_ip = trim($row['site_ip']);
|
||||
$site_hostname = trim($row['site_hostname']);
|
||||
|
||||
if ($site_ip)
|
||||
{
|
||||
foreach ($iplist as $ip)
|
||||
{
|
||||
if (preg_match('#^' . str_replace('*', '.*?', $row['site_ip']) . '$#i', $ip))
|
||||
if (preg_match('#^' . str_replace('*', '.*?', $site_ip) . '$#i', $ip))
|
||||
{
|
||||
if (!empty($row['ip_exclude']))
|
||||
if ($row['ip_exclude'])
|
||||
{
|
||||
$allowed = ($config['secure_allow_deny']) ? false : true;
|
||||
break 2;
|
||||
|
@ -275,11 +276,11 @@ function download_allowed()
|
|||
}
|
||||
}
|
||||
|
||||
if (!empty($row['site_hostname']))
|
||||
if ($site_hostname)
|
||||
{
|
||||
if (preg_match('#^' . str_replace('*', '.*?', $row['site_hostname']) . '$#i', $hostname))
|
||||
if (preg_match('#^' . str_replace('*', '.*?', $site_hostname) . '$#i', $hostname))
|
||||
{
|
||||
if (!empty($row['ip_exclude']))
|
||||
if ($row['ip_exclude'])
|
||||
{
|
||||
$allowed = ($config['secure_allow_deny']) ? false : true;
|
||||
break;
|
||||
|
@ -291,6 +292,7 @@ function download_allowed()
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
$db->sql_freeresult($result);
|
||||
}
|
||||
|
||||
|
|
|
@ -21,43 +21,36 @@ $user->start();
|
|||
$auth->acl($user->data);
|
||||
$user->setup();
|
||||
|
||||
$mode = request_var('mode', '');
|
||||
|
||||
// Load the appropriate faq file
|
||||
if (isset($_GET['mode']))
|
||||
{
|
||||
switch($_GET['mode'])
|
||||
switch ($mode)
|
||||
{
|
||||
case 'bbcode':
|
||||
$lang_file = 'lang_bbcode';
|
||||
$l_title = $lang['BBCode_guide'];
|
||||
$l_title = $user->lang['BBCODE_GUIDE'];
|
||||
$user->add_lang('bbcode', false, true);
|
||||
break;
|
||||
default:
|
||||
$lang_file = 'lang_faq';
|
||||
$l_title = $lang['FAQ'];
|
||||
break;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
$lang_file = 'lang_faq';
|
||||
$l_title = $lang['FAQ'];
|
||||
}
|
||||
|
||||
include($user->lang_path . $lang_file . '.' . $phpEx);
|
||||
default:
|
||||
$l_title = $user->lang['FAQ'];
|
||||
$user->add_lang('faq', false, true);
|
||||
break;
|
||||
}
|
||||
|
||||
// Pull the array data from the lang pack
|
||||
$j = 0;
|
||||
$counter = 0;
|
||||
$counter_2 = 0;
|
||||
$faq_block = array();
|
||||
$faq_block_titles = array();
|
||||
$help_block = array();
|
||||
$help_block_titles = array();
|
||||
|
||||
for($i = 0; $i < count($faq); $i++)
|
||||
foreach ($user->help as $help_ary)
|
||||
{
|
||||
if ($faq[$i][0] != '--')
|
||||
if ($help_ary[0] != '--')
|
||||
{
|
||||
$faq_block[$j][$counter]['id'] = $counter_2;
|
||||
$faq_block[$j][$counter]['question'] = $faq[$i][0];
|
||||
$faq_block[$j][$counter]['answer'] = $faq[$i][1];
|
||||
$help_block[$j][$counter]['id'] = $counter_2;
|
||||
$help_block[$j][$counter]['question'] = $help_ary[0];
|
||||
$help_block[$j][$counter]['answer'] = $help_ary[1];
|
||||
|
||||
$counter++;
|
||||
$counter_2++;
|
||||
|
@ -66,7 +59,7 @@ for($i = 0; $i < count($faq); $i++)
|
|||
{
|
||||
$j = ($counter != 0) ? $j + 1 : 0;
|
||||
|
||||
$faq_block_titles[$j] = $faq[$i][1];
|
||||
$help_block_titles[$j] = $help_ary[1];
|
||||
|
||||
$counter = 0;
|
||||
}
|
||||
|
@ -74,39 +67,38 @@ for($i = 0; $i < count($faq); $i++)
|
|||
|
||||
//
|
||||
// Lets build a page ...
|
||||
//
|
||||
$template->assign_vars(array(
|
||||
'L_FAQ_TITLE' => $l_title,
|
||||
'L_BACK_TO_TOP' => $lang['Back_to_top'])
|
||||
'L_BACK_TO_TOP' => $user->lang['BACK_TO_TOP'])
|
||||
);
|
||||
|
||||
for($i = 0; $i < count($faq_block); $i++)
|
||||
for ($i = 0; $i < count($help_block); $i++)
|
||||
{
|
||||
if (count($faq_block[$i]))
|
||||
if (sizeof($help_block[$i]))
|
||||
{
|
||||
$template->assign_block_vars('faq_block', array(
|
||||
'BLOCK_TITLE' => $faq_block_titles[$i])
|
||||
'BLOCK_TITLE' => $help_block_titles[$i])
|
||||
);
|
||||
|
||||
$template->assign_block_vars('faq_block_link', array(
|
||||
'BLOCK_TITLE' => $faq_block_titles[$i])
|
||||
'BLOCK_TITLE' => $help_block_titles[$i])
|
||||
);
|
||||
|
||||
for($j = 0; $j < count($faq_block[$i]); $j++)
|
||||
for ($j = 0; $j < count($help_block[$i]); $j++)
|
||||
{
|
||||
$template->assign_block_vars('faq_block.faq_row', array(
|
||||
'FAQ_QUESTION' => $faq_block[$i][$j]['question'],
|
||||
'FAQ_ANSWER' => $faq_block[$i][$j]['answer'],
|
||||
'FAQ_QUESTION' => $help_block[$i][$j]['question'],
|
||||
'FAQ_ANSWER' => $help_block[$i][$j]['answer'],
|
||||
|
||||
'S_ROW_COUNT' => $j,
|
||||
'U_FAQ_ID' => $faq_block[$i][$j]['id'])
|
||||
'U_FAQ_ID' => $help_block[$i][$j]['id'])
|
||||
);
|
||||
|
||||
$template->assign_block_vars('faq_block_link.faq_row_link', array(
|
||||
'FAQ_LINK' => $faq_block[$i][$j]['question'],
|
||||
'FAQ_LINK' => $help_block[$i][$j]['question'],
|
||||
|
||||
'S_ROW_COUNT' => $j,
|
||||
'U_FAQ_LINK' => '#' . $faq_block[$i][$j]['id'])
|
||||
'U_FAQ_LINK' => '#' . $help_block[$i][$j]['id'])
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -19,7 +19,7 @@ include($phpbb_root_path . 'common.'.$phpEx);
|
|||
// Start session management
|
||||
$user->start();
|
||||
$auth->acl($user->data);
|
||||
$user->setup();
|
||||
$user->setup('gcp');
|
||||
|
||||
$script_name = preg_replace('/^\/?(.*?)\/?$/', "\\1", trim($config['script_path']));
|
||||
$script_name = ($script_name != '') ? $script_name . '/groupcp.'.$phpEx : 'groupcp.'.$phpEx;
|
||||
|
|
|
@ -1452,7 +1452,7 @@ function page_header($page_title = '')
|
|||
'S_CONTENT_ENCODING' => $user->lang['ENCODING'],
|
||||
'S_CONTENT_DIR_LEFT' => $user->lang['LEFT'],
|
||||
'S_CONTENT_DIR_RIGHT' => $user->lang['RIGHT'],
|
||||
'S_TIMEZONE' => ($user->data['user_dst'] || ($user->data['user_id'] == ANONYMOUS && $config['board_dst'])) ? sprintf($user->lang['ALL_TIMES'], $user->lang[$tz], $user->lang['tz']['dst']) : sprintf($user->lang['ALL_TIMES'], $user->lang[$tz], ''),
|
||||
'S_TIMEZONE' => ($user->data['user_dst'] || ($user->data['user_id'] == ANONYMOUS && $config['board_dst'])) ? sprintf($user->lang['ALL_TIMES'], $user->lang['tz'][$tz], $user->lang['tz']['dst']) : sprintf($user->lang['ALL_TIMES'], $user->lang['tz'][$tz], ''),
|
||||
'S_DISPLAY_ONLINE_LIST' => (!empty($config['load_online'])) ? 1 : 0,
|
||||
'S_DISPLAY_SEARCH' => (!empty($config['load_search'])) ? 1 : 0,
|
||||
'S_DISPLAY_PM' => (empty($config['privmsg_disable'])) ? 1 : 0,
|
||||
|
|
|
@ -31,7 +31,7 @@ function generate_smilies($mode, $forum_id)
|
|||
$row = $db->sql_fetchrow($result);
|
||||
$db->sql_freeresult($result);
|
||||
|
||||
$user->setup(false, (int) $row['forum_style']);
|
||||
$user->setup('posting', (int) $row['forum_style']);
|
||||
|
||||
page_header($user->lang['SMILIES']);
|
||||
|
||||
|
|
|
@ -43,7 +43,7 @@ class custom_profile
|
|||
|
||||
function generate_profile_fields($mode, $lang_id, $cp_error)
|
||||
{
|
||||
global $db, $template, $auth;
|
||||
global $db, $template, $auth, $user;
|
||||
|
||||
$sql = "SELECT l.*, f.*
|
||||
FROM phpbb_profile_lang l, phpbb_profile_fields f
|
||||
|
|
|
@ -453,6 +453,7 @@ class session
|
|||
class user extends session
|
||||
{
|
||||
var $lang = array();
|
||||
var $help = array();
|
||||
var $theme = array();
|
||||
var $date_format;
|
||||
var $timezone;
|
||||
|
@ -467,7 +468,7 @@ class user extends session
|
|||
|
||||
function setup($lang_set = false, $style = false)
|
||||
{
|
||||
global $db, $template, $config, $auth, $phpEx, $phpbb_root_path;
|
||||
global $db, $template, $config, $auth, $phpEx, $phpbb_root_path, $lang, $help;
|
||||
|
||||
if ($this->data['user_id'] != ANONYMOUS)
|
||||
{
|
||||
|
@ -514,28 +515,9 @@ class user extends session
|
|||
}
|
||||
}
|
||||
|
||||
include($this->lang_path . 'lang_main.' . $phpEx);
|
||||
if (defined('IN_ADMIN'))
|
||||
{
|
||||
include($this->lang_path . 'lang_admin.' . $phpEx);
|
||||
}
|
||||
$this->lang = &$lang;
|
||||
|
||||
/* if (is_array($lang_set))
|
||||
{
|
||||
include($this->lang_path . '/common.' . $phpEx);
|
||||
|
||||
foreach ($lang_set as $lang_file)
|
||||
{
|
||||
include($this->lang_path . '/' . $lang_file . '.' . $phpEx);
|
||||
}
|
||||
$this->add_lang($lang_set);
|
||||
unset($lang_set);
|
||||
}
|
||||
else
|
||||
{
|
||||
include($this->lang_path . '/common.' . $phpEx);
|
||||
include($this->lang_path . '/' . $lang_set . '.' . $phpEx);
|
||||
}*/
|
||||
|
||||
if (!empty($_GET['style']) && $auth->acl_get('a_styles'))
|
||||
{
|
||||
|
@ -591,6 +573,77 @@ class user extends session
|
|||
return;
|
||||
}
|
||||
|
||||
// Internal usage
|
||||
function set_lang($lang_file, $use_db = false, $use_help = false)
|
||||
{
|
||||
global $lang, $help, $phpEx;
|
||||
|
||||
if (!$use_db)
|
||||
{
|
||||
include($this->lang_path . '/' . (($use_help) ? 'help_' : '') . $lang_file . '.' . $phpEx);
|
||||
}
|
||||
else if ($use_db)
|
||||
{
|
||||
// Get Database Language Strings
|
||||
// Put them into $lang if nothing is prefixed, put them into $help if help: is prefixed
|
||||
// For example: help:faq, posting
|
||||
}
|
||||
}
|
||||
|
||||
// Add Language Items - use_db and use_help are assigned where needed (only use them to force inclusion)
|
||||
//
|
||||
// $lang_set = array('posting', 'help' => 'faq');
|
||||
// $lang_set = array('posting', 'viewtopic', 'help' => array('bbcode', 'faq'))
|
||||
// $lang_set = array(array('posting', 'viewtopic'), 'help' => array('bbcode', 'faq'))
|
||||
// $lang_set = 'posting'
|
||||
// $lang_set = array('help' => 'faq', 'db' => array('help:faq', 'posting'))
|
||||
function add_lang($lang_set, $use_db = false, $use_help = false)
|
||||
{
|
||||
global $lang, $help, $phpEx;
|
||||
|
||||
if (is_array($lang_set))
|
||||
{
|
||||
foreach ($lang_set as $key => $lang_file)
|
||||
{
|
||||
$key = (string) $key;
|
||||
if ($key == 'db')
|
||||
{
|
||||
$this->add_lang($lang_file, true, $use_help);
|
||||
}
|
||||
else if ($key == 'help')
|
||||
{
|
||||
$this->add_lang($lang_file, $use_db, true);
|
||||
}
|
||||
else if (!is_array($lang_file))
|
||||
{
|
||||
$this->set_lang($lang_file, $use_db, $use_help);
|
||||
}
|
||||
else
|
||||
{
|
||||
$this->add_lang($lang_file, $use_db, $use_help);
|
||||
}
|
||||
}
|
||||
unset($lang_set);
|
||||
}
|
||||
else if ($lang_set)
|
||||
{
|
||||
$this->set_lang($lang_set, $use_db, $use_help);
|
||||
}
|
||||
|
||||
if ($use_help || sizeof($help))
|
||||
{
|
||||
$this->help += $help;
|
||||
unset($help);
|
||||
}
|
||||
|
||||
if (sizeof($lang))
|
||||
{
|
||||
$this->lang += $lang;
|
||||
// Yes, we unset $lang here, this variable is in use elsewhere
|
||||
unset($lang);
|
||||
}
|
||||
}
|
||||
|
||||
function format_date($gmepoch, $format = false)
|
||||
{
|
||||
static $lang_dates;
|
||||
|
|
|
@ -50,7 +50,7 @@ class ucp_pm extends ucp
|
|||
// Is PM disabled?
|
||||
if (!empty($config['privmsg_disable']))
|
||||
{
|
||||
trigger_error($user->lang['PM_disabled']);
|
||||
trigger_error($user->lang['PM_DISABLED']);
|
||||
}
|
||||
|
||||
$html_entities_match = array('#&#', '#<#', '#>#');
|
||||
|
|
|
@ -17,6 +17,8 @@ class ucp_profile extends module
|
|||
{
|
||||
global $config, $db, $user, $auth, $SID, $template, $phpbb_root_path, $phpEx;
|
||||
|
||||
$user->add_lang('posting');
|
||||
|
||||
$preview = (!empty($_POST['preview'])) ? true : false;
|
||||
$submit = (!empty($_POST['submit'])) ? true : false;
|
||||
$delete = (!empty($_POST['delete'])) ? true : false;
|
||||
|
|
1950
phpBB/language/en/admin.php
Normal file
1950
phpBB/language/en/admin.php
Normal file
File diff suppressed because it is too large
Load diff
611
phpBB/language/en/common.php
Normal file
611
phpBB/language/en/common.php
Normal file
|
@ -0,0 +1,611 @@
|
|||
<?php
|
||||
// -------------------------------------------------------------
|
||||
//
|
||||
// $Id$
|
||||
//
|
||||
// FILENAME : common.php [ English ]
|
||||
// STARTED : Sat Dec 16, 2000
|
||||
// COPYRIGHT : © 2001, 2003 phpBB Group
|
||||
// WWW : http://www.phpbb.com/
|
||||
// LICENCE : GPL vs2.0 [ see /docs/COPYING ]
|
||||
//
|
||||
// -------------------------------------------------------------
|
||||
|
||||
// DO NOT CHANGE
|
||||
if (empty($lang))
|
||||
{
|
||||
$lang = array();
|
||||
}
|
||||
|
||||
// DEVELOPERS PLEASE NOTE
|
||||
//
|
||||
// Placeholders can now contain order information, e.g. instead of
|
||||
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||
// translators to re-order the output of data while ensuring it remains correct
|
||||
//
|
||||
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||
// equally where a string contains only two placeholders which are used to wrap text
|
||||
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||
|
||||
$lang += array(
|
||||
'ENCODING' => 'iso-8859-15',
|
||||
'DIRECTION' => 'ltr',
|
||||
'LEFT' => 'left',
|
||||
'RIGHT' => 'right',
|
||||
'DATE_FORMAT' => 'd M Y',
|
||||
|
||||
|
||||
'1_DAY' => '1 Day',
|
||||
'1_MONTH' => '1 Month',
|
||||
'1_YEAR' => '1 Year',
|
||||
'2_WEEKS' => '2 Weeks',
|
||||
'3_MONTHS' => '3 Months',
|
||||
'6_MONTHS' => '6 Months',
|
||||
'7_DAYS' => '7 Days',
|
||||
|
||||
'ACP' => 'Administration Control Panel',
|
||||
'ACTIVE_ERROR' => 'You have specified an inactive username. Please activate your account and try again. If you continue to have problems please contact a board administrator.',
|
||||
'ALL_POSTS' => 'All Posts',
|
||||
'ALL_TIMES' => 'All times are %s %s',
|
||||
'ALL_TOPICS' => 'All Topics',
|
||||
'ARE_WATCHING_FORUM' => 'You have subscribed to receive updates on this forum',
|
||||
'ARE_WATCHING_TOPIC' => 'You have subscribed to receive updates on this topic.',
|
||||
'ASCENDING' => 'Ascending',
|
||||
'ATTACHMENTS' => 'Attachments',
|
||||
'AUTHOR' => 'Author',
|
||||
'AVATAR_NOT_UPLOADED' => 'Avatar could not be uploaded.',
|
||||
'AVATAR_NO_SIZE' => 'Could not obtain width or height of linked avatar, please enter them manually.',
|
||||
'AVATAR_URL_INVALID' => 'The URL you specified is invalid.',
|
||||
'AVATAR_WRONG_FILESIZE' => 'The avatar must be between 0 and %d bytes.',
|
||||
'AVATAR_WRONG_SIZE' => 'The avatar must be at least %1$d pixels wide, %2$d pixels high and at most %3$d pixels wide and %4$d pixels high.',
|
||||
|
||||
'BACK_TO_TOP' => 'Top',
|
||||
'BIRTHDAYS' => 'Birthdays',
|
||||
'BOARD_BAN_PERM' => 'You have been <b>permanently</b> banned from this board.<br /><br />Please contact the %2$sBoard Administrator%3$s for more information.',
|
||||
'BOARD_BAN_REASON' => 'Reason given for ban: <b>%s</b>',
|
||||
'BOARD_BAN_TIME' => 'You have been banned from this board until <b>%1$s</b>.<br /><br />Please contact the %2$sBoard Administrator%3$s for more information.',
|
||||
'BOARD_DISABLE' => 'Sorry but this board is currently unavailable',
|
||||
'BOARD_UNAVAILABLE' => 'Sorry but the board is temporarily unavailable, please try again in a few minutes',
|
||||
'BROWSING_FORUM_GUEST' => 'Users browsing this forum: %1$s and %2$d guest',
|
||||
'BROWSING_FORUM_GUESTS' => 'Users browsing this forum: %1$s and %2$d guests',
|
||||
'BYTES' => 'Bytes',
|
||||
|
||||
'CANCEL' => 'Cancel',
|
||||
'CONFIRM' => 'Confirm',
|
||||
'CONGRATULATIONS' => 'Congratulations to',
|
||||
'CURRENT_TIME' => 'The time is %s',
|
||||
|
||||
'DAY' => 'Day',
|
||||
'DELETE' => 'Delete',
|
||||
'DESCENDING' => 'Descending',
|
||||
'DISPLAY_POSTS' => 'Display posts from previous',
|
||||
'DISPLAY_TOPICS' => 'Display topics from previous',
|
||||
'DOWNLOADED' => 'Downloaded',
|
||||
'DOWNLOAD_COUNT' => '%d Time',
|
||||
'DOWNLOAD_COUNTS' => '%d Times',
|
||||
'DOWNLOAD_NONE' => '0 Times',
|
||||
|
||||
'EMAIL' => 'Email',
|
||||
'EMAIL_ADDRESS' => 'Email address',
|
||||
'EMPTY_SUBJECT' => 'You must specify a subject when posting a new topic.',
|
||||
'EXTENSION_DISABLED_AFTER_POSTING' => 'The extension <b>%s</b> has been deactivated and can no longer be displayed.',
|
||||
|
||||
'FAQ' => 'FAQ',
|
||||
'FILENAME' => 'Filename',
|
||||
'FILESIZE' => 'Filesize',
|
||||
'FILE_COMMENT' => 'File comment',
|
||||
'FIND_USERNAME' => 'Find a member',
|
||||
'FORGOT_PASS' => 'I forgot my password',
|
||||
'FORUM' => 'Forum',
|
||||
'FORUMS_MARKED' => 'All forums have been marked read',
|
||||
'FORUM_INDEX' => 'Board Index',
|
||||
'FORUM_LOCATION' => 'Forum Location',
|
||||
'FORUM_LOCKED' => 'Forum Locked',
|
||||
'FROM' => 'from',
|
||||
|
||||
'GO' => 'Go',
|
||||
'GOTO_PAGE' => 'Goto page',
|
||||
'GROUP_ERR_DESC_LONG' => 'Group description too long.',
|
||||
'GROUP_ERR_TYPE' => 'Inappropriate group type specified.',
|
||||
'GROUP_ERR_USERNAME' => 'No group name specified.',
|
||||
'GROUP_ERR_USER_LONG' => 'Group name too long.',
|
||||
'GUEST' => 'Guest',
|
||||
'GUEST_USERS_ONLINE' => 'There are %d Guest users online',
|
||||
'GUEST_USERS_TOTAL' => '%d Guests',
|
||||
'GUEST_USERS_ZERO_ONLINE' => 'There are 0 Guest users online',
|
||||
'GUEST_USERS_ZERO_TOTAL'=> '0 Guests',
|
||||
'GUEST_USER_ONLINE' => 'There is %d Guest user online',
|
||||
'GUEST_USER_TOTAL' => '%d Guest',
|
||||
'G_ADMINISTRATORS' => 'Administrators',
|
||||
'G_BOTS' => 'Bots',
|
||||
'G_GUESTS' => 'Guests',
|
||||
'G_INACTIVE' => 'Unapproved Users',
|
||||
'G_INACTIVE_COPPA' => 'Unapproved COPPA Users',
|
||||
'G_REGISTERED' => 'Registered Users',
|
||||
'G_REGISTERED_COPPA' => 'Registered COPPA Users',
|
||||
'G_SUPER_MODERATORS' => 'Super Moderators',
|
||||
|
||||
'HIDDEN_USERS_ONLINE' => '%d Hidden users online',
|
||||
'HIDDEN_USERS_TOTAL' => '%d Hidden and ',
|
||||
'HIDDEN_USERS_ZERO_ONLINE' => '0 Hidden users online',
|
||||
'HIDDEN_USERS_ZERO_TOTAL' => '0 Hidden and ',
|
||||
'HIDDEN_USER_ONLINE' => '%d Hidden user online',
|
||||
'HIDDEN_USER_TOTAL' => '%d Hidden and ',
|
||||
'HIDE_ME' => 'Hide my online status this session',
|
||||
'HOURS' => 'Hours',
|
||||
|
||||
'ICQ_STATUS' => 'ICQ Status',
|
||||
'INDEX' => 'Index page',
|
||||
'INTERESTS' => 'Interests',
|
||||
'INVALID_EMAIL_LOG' => '<b>%s</b> possibly an invalid email address?',
|
||||
'IP' => 'IP',
|
||||
|
||||
'JOINED' => 'Joined',
|
||||
'JUMP_PAGE' => 'Enter the page number you wish to goto',
|
||||
'JUMP_TO' => 'Jump to',
|
||||
|
||||
'KARMA' => array(
|
||||
'-5' => 'Extremely Bad',
|
||||
'-4' => 'Very Bad',
|
||||
'-3' => 'Very Poor',
|
||||
'-2' => 'Bad',
|
||||
'-1' => 'Poor',
|
||||
'0' => 'Neutral',
|
||||
'1' => 'Positive',
|
||||
'2' => 'Good',
|
||||
'3' => 'Very Good',
|
||||
'4' => 'Extremely good',
|
||||
'5' => 'Excellent'
|
||||
),
|
||||
'KB' => 'KB',
|
||||
|
||||
'LAST_POST' => 'Last Post',
|
||||
'LAST_UPDATED' => 'Last Updated',
|
||||
'LDAP_DN' => 'LDAP base dn',
|
||||
'LDAP_DN_EXPLAIN' => 'This is the Distinguished Name, locating the user information, e.g. o=My Company,c=US',
|
||||
'LDAP_SERVER' => 'LDAP server name',
|
||||
'LDAP_SERVER_EXPLAIN' => 'If using LDAP this is the name or IP address of the server.',
|
||||
'LDAP_UID' => 'LDAP uid',
|
||||
'LDAP_UID_EXPLAIN' => 'This is the key under which to search for a given login identity, e.g. uid, sn, etc.',
|
||||
'LEGEND' => 'Legend',
|
||||
'LOCATION' => 'Location',
|
||||
'LOCK_POST' => 'Lock Post',
|
||||
'LOCK_POST_EXPLAIN' => 'Prevent editing',
|
||||
'LOCK_TOPIC' => 'Lock Topic',
|
||||
'LOGIN' => 'Login',
|
||||
'LOGIN_ERROR' => 'You have specified an incorrect username or password. Please check them both and try again. If you continue to have problems please contact a board administrator.',
|
||||
'LOGIN_FORUM' => 'To view or post in this forum you must enter a password.',
|
||||
'LOGIN_INFO' => 'In order to login you must be registered. Registering takes only a few seconds but gives you increased capabilies. The board administrator may also grant additional permissions to registered users. Before you login please ensure you are familiar with our terms of use and related policies. Please ensure you read any forum rules as you navigate around the board.',
|
||||
'LOGIN_VIEWFORUM' => 'The board administrator requires you to be registered and logged in to view this forum.',
|
||||
'LOGOUT_USER' => 'Logout [ %s ]',
|
||||
'LOG_ME_IN' => 'Log me on automatically each visit',
|
||||
|
||||
'MARK' => 'Mark',
|
||||
'MARK_ALL' => 'Mark all',
|
||||
'MARK_FORUMS_READ' => 'Mark Forums Read',
|
||||
'MB' => 'MB',
|
||||
'MCP' => 'Moderator Control Panel',
|
||||
'MEMBERLIST' => 'Members',
|
||||
'MERGE_TOPIC' => 'Merge Topic',
|
||||
'MESSAGE' => 'Message',
|
||||
'MESSAGE_BODY' => 'Message body',
|
||||
'MINUTES' => 'Minutes',
|
||||
'MODERATOR' => 'Moderator',
|
||||
'MODERATORS' => 'Moderators',
|
||||
'MONTH' => 'Month',
|
||||
'MOVE' => 'Move',
|
||||
|
||||
'NEWEST_USER' => 'Our newest member <b>%s%s%s</b>',
|
||||
'NEW_PM' => '<b>%d</b> new message',
|
||||
'NEW_PMS' => '<b>%d</b> new messages',
|
||||
'NEW_POST' => 'New post',
|
||||
'NEW_POSTS' => 'New posts',
|
||||
'NEXT' => 'Next',
|
||||
'NO' => 'No',
|
||||
'NONE' => 'None',
|
||||
'NOT_WATCHING_FORUM'=> 'You no subscribe to updates on this forum',
|
||||
'NOT_WATCHING_TOPIC'=> 'You are no longer subscribed to this topic.',
|
||||
'NO_BIRTHDAYS' => 'No birthdays today',
|
||||
'NO_FORUM' => 'The forum you selected does not exist',
|
||||
'NO_FORUMS' => 'This board has no forums',
|
||||
'NO_GROUP' => 'The requested usergroup does not exist.',
|
||||
'NO_MEMBERS' => 'No members found for this search criteria',
|
||||
'NO_NEW_PM' => '<b>0</b> new messages',
|
||||
'NO_NEW_POSTS' => 'No new posts',
|
||||
'NO_POSTS' => 'No Posts',
|
||||
'NO_TOPIC' => 'The requested topic does not exist.',
|
||||
'NO_TOPICS' => 'There are no topics or posts in this forum.',
|
||||
'NO_UNREAD_PM' => '<b>0</b> unread messages',
|
||||
'NO_USER' => 'The requested user does not exist.',
|
||||
|
||||
'OCCUPATION' => 'Occupation',
|
||||
'ONLINE_BUDDIES' => 'Online Buddies',
|
||||
'ONLINE_USERS_TOTAL'=> 'In total there are <b>%d</b> users online :: ',
|
||||
'ONLINE_USERS_ZERO_TOTAL' => 'In total there are <b>0</b> users online :: ',
|
||||
'ONLINE_USER_TOTAL' => 'In total there is <b>%d</b> user online :: ',
|
||||
'OPTIONS' => 'Options',
|
||||
|
||||
'PAGE_OF' => 'Page <b>%1$d</b> of <b>%2$d</b>',
|
||||
'PASSWORD' => 'Password',
|
||||
'PM' => 'PM',
|
||||
'POSTING_MESSAGE' => 'Posting message in %s',
|
||||
'POST' => 'Post',
|
||||
'POSTED' => 'Posted',
|
||||
'POSTS' => 'Posts',
|
||||
'POST_BY_FOE' => 'This post was made by <b>%1$s</b> who is currently on your ignore list. To display this post click %2$sHERE%3$s.',
|
||||
'POST_DAY' => '%.2f posts per day',
|
||||
'POST_PCT' => '%.2f%% of all posts',
|
||||
'POST_REPORTED' => 'Click to view reports',
|
||||
'POST_SUBJECT' => 'Post Subject',
|
||||
'POST_TIME' => 'Post time',
|
||||
'POST_UNAPPROVED' => 'Click to approve post',
|
||||
'PREVIEW' => 'Preview',
|
||||
'PREVIOUS' => 'Previous',
|
||||
'PRIVACY' => 'Privacy Policy',
|
||||
'PROFILE' => 'User Control Panel',
|
||||
|
||||
'READING_FORUM' => 'Viewing topics in %s',
|
||||
'READING_TOPIC' => 'Reading topic in %s',
|
||||
'REASON' => 'Reason',
|
||||
'RECORD_ONLINE_USERS' => 'Most users ever online was <b>%1$s</b> on %2$s',
|
||||
'REDIRECTS' => 'Total redirects',
|
||||
'REGISTER' => 'Register',
|
||||
'REGISTERED_USERS' => 'Registered Users:',
|
||||
'REG_USERS_ONLINE' => 'There are %d Registered users and ',
|
||||
'REG_USERS_TOTAL' => '%d Registered, ',
|
||||
'REG_USERS_ZERO_ONLINE' => 'There are 0 Registered users and ',
|
||||
'REG_USERS_ZERO_TOTAL' => '0 Registered, ',
|
||||
'REG_USER_ONLINE' => 'There is %d Registered user and ',
|
||||
'REG_USER_TOTAL' => '%d Registered, ',
|
||||
'REMOVE_INSTALL' => 'Please delete, move or rename the install directory.',
|
||||
'REPLIES' => 'Replies',
|
||||
'REPLYING_MESSAGE' => 'Replying to message in %s',
|
||||
'RESET' => 'Reset',
|
||||
'RETURN_INDEX' => 'Click %sHere%s to return to the index',
|
||||
'RETURN_FORUM' => 'Click %sHere%s to return to the forum',
|
||||
'RETURN_TOPIC' => 'Click %sHere%s to return to the topic',
|
||||
'RULES_ATTACH_CAN' => 'You <b>can</b> post attachments in this forum',
|
||||
'RULES_ATTACH_CANNOT' => 'You <b>cannot</b> post attachments in this forum',
|
||||
'RULES_DELETE_CAN' => 'You <b>can</b> delete your posts in this forum',
|
||||
'RULES_DELETE_CANNOT' => 'You <b>cannot</b> delete your posts in this forum',
|
||||
'RULES_DOWNLOAD_CAN' => 'You <b>can</b> download attachments in this forum',
|
||||
'RULES_DOWNLOAD_CANNOT' => 'You <b>cannot</b> download attachments in this forum',
|
||||
'RULES_EDIT_CAN' => 'You <b>can</b> edit your posts in this forum',
|
||||
'RULES_EDIT_CANNOT' => 'You <b>cannot</b> edit your posts in this forum',
|
||||
'RULES_LOCK_CAN' => 'You <b>can</b> lock your topics in this forum',
|
||||
'RULES_LOCK_CANNOT' => 'You <b>cannot</b> lock your topics in this forum',
|
||||
'RULES_POST_CAN' => 'You <b>can</b> post new topics in this forum',
|
||||
'RULES_POST_CANNOT' => 'You <b>cannot</b> post new topics in this forum',
|
||||
'RULES_REPLY_CAN' => 'You <b>can</b> reply to topics in this forum',
|
||||
'RULES_REPLY_CANNOT'=> 'You <b>cannot</b> reply to topics in this forum',
|
||||
'RULES_VOTE_CAN' => 'You <b>can</b> vote in polls in this forum',
|
||||
'RULES_VOTE_CANNOT' => 'You <b>cannot</b> vote in polls in this forum',
|
||||
|
||||
'SEARCH' => 'Search',
|
||||
'SEARCHING_FORUMS' => 'Searching forums',
|
||||
'SELECT_DESTINATION_FORUM' => 'Please select a forum for destination',
|
||||
'SEARCH_FOR' => 'Search for',
|
||||
'SEARCH_NEW' => 'View new posts',
|
||||
'SEARCH_SELF' => 'View your posts',
|
||||
'SEARCH_UNANSWERED' => 'View unanswered posts',
|
||||
'SELECT' => 'Select',
|
||||
'SELECT_FORUM' => 'Select a forum',
|
||||
'SIGNATURE' => 'Signature',
|
||||
'SORT_BY' => 'Sort by',
|
||||
'SORT_JOINED' => 'Joined Date',
|
||||
'SORT_LOCATION' => 'Location',
|
||||
'SORT_TOPIC_TITLE' => 'Topic Title',
|
||||
'SORT_USERNAME' => 'Username',
|
||||
'SPLIT_TOPIC' => 'Split Topic',
|
||||
'STATISTICS' => 'Statistics',
|
||||
'START_WATCHING_FORUM' => 'Subscribe Forum',
|
||||
'START_WATCHING_TOPIC' => 'Subscribe Topic',
|
||||
'STOP_WATCHING_FORUM' => 'Unsubscribe Forum',
|
||||
'STOP_WATCHING_TOPIC' => 'Unsubscribe Topic',
|
||||
'SUBFORUM' => 'Subforum',
|
||||
'SUBFORUMS' => 'Subforums',
|
||||
'SUBJECT' => 'Subject',
|
||||
'SUBMIT' => 'Submit',
|
||||
|
||||
'TERMS_USE' => 'Terms of Use',
|
||||
'TOO_LONG_USER_PASSWORD' => 'The password you entered is too long.',
|
||||
'TOO_MANY_VOTE_OPTIONS' => 'You have tried to vote for too many options.',
|
||||
'TOO_SHORT_NEW_PASSWORD' => 'The password you entered is too short.',
|
||||
'TOO_SHORT_PASSWORD_CONFIRM'=> 'The password confirmation you entered is too short.',
|
||||
'TOO_SHORT_USER_PASSWORD' => 'The password you entered is too short.',
|
||||
'TOPIC' => 'Topic',
|
||||
'TOPICS' => 'Topics',
|
||||
'TOPIC_ICON' => 'Topic icon',
|
||||
'TOPIC_LOCKED' => 'This topic is locked you cannot edit posts or make replies',
|
||||
'TOPIC_TITLE' => 'Topic Title',
|
||||
'TOPIC_UNAPPROVED' => 'This topic has not been approved',
|
||||
'TOTAL_ATTACHMENTS' => '%d Attachments',
|
||||
'TOTAL_NO_PM' => '0 private messages in total',
|
||||
'TOTAL_PM' => '1 private messages in total',
|
||||
'TOTAL_PMS' => '$d private messages in total',
|
||||
'TOTAL_POSTS' => 'Total posts',
|
||||
'TOTAL_POSTS_OTHER' => 'Total posts <b>%d</b>',
|
||||
'TOTAL_POSTS_ZERO' => 'Total posts <b>0</b>',
|
||||
'TOTAL_TOPICS_OTHER'=> 'Total topics <b>%d</b>',
|
||||
'TOTAL_TOPICS_ZERO' => 'Total topics <b>0</b>',
|
||||
'TOTAL_USERS_OTHER' => 'Total members <b>%d</b>',
|
||||
'TOTAL_USERS_ZERO' => 'Total members <b>0</b>',
|
||||
|
||||
'UNMARK_ALL' => 'Unmark all',
|
||||
'UNREAD_PM' => '<b>%d</b> unread message',
|
||||
'UNREAD_PMS' => '<b>%d</b> unread messages',
|
||||
'URL_REDIRECT' => 'If your browser does not support meta redirection please click %sHERE%s to be redirected.',
|
||||
'USERGROUPS' => 'Groups',
|
||||
'USERNAME' => 'Username',
|
||||
'USER_POST' => '%d Post',
|
||||
'USER_POSTS' => '%d Posts',
|
||||
|
||||
'VIEWED' => 'Viewed',
|
||||
'VIEWING_FAQ' => 'Viewing FAQ',
|
||||
'VIEWING_MEMBERS' => 'Viewing member details',
|
||||
'VIEWING_ONLINE' => 'Viewing who is online',
|
||||
'VIEWS' => 'Views',
|
||||
'VIEW_LATEST_POST' => 'View latest post',
|
||||
'VIEW_NEWEST_POST' => 'View newest post',
|
||||
'VIEW_ONLINE_TIME' => 'This data is based on users active over the past %d minute',
|
||||
'VIEW_ONLINE_TIMES' => 'This data is based on users active over the past %d minutes',
|
||||
'VIEW_TOPIC' => 'View topic',
|
||||
'VIEW_TOPIC_ANNOUNCEMENT' => 'Announcement: ',
|
||||
'VIEW_TOPIC_LOCKED' => 'Locked: ',
|
||||
'VIEW_TOPIC_LOGS' => 'View Logs',
|
||||
'VIEW_TOPIC_MOVED' => 'Moved: ',
|
||||
'VIEW_TOPIC_POLL' => 'Poll: ',
|
||||
'VIEW_TOPIC_STICKY' => 'Sticky: ',
|
||||
|
||||
'WEBSITE' => 'Website',
|
||||
'WHOIS' => 'Whois',
|
||||
'WHO_IS_ONLINE' => 'Who is Online',
|
||||
'WRONG_PASSWORD' => 'You entered an incorrect password.',
|
||||
|
||||
'YEAR' => 'Year',
|
||||
'YES' => 'Yes',
|
||||
'YOU_LAST_VISIT' => 'Last visit on %s',
|
||||
|
||||
'datetime' => array(
|
||||
'Sunday' => 'Sunday',
|
||||
'Monday' => 'Monday',
|
||||
'Tuesday' => 'Tuesday',
|
||||
'Wednesday' => 'Wednesday',
|
||||
'Thursday' => 'Thursday',
|
||||
'Friday' => 'Friday',
|
||||
'Saturday' => 'Saturday',
|
||||
|
||||
'Sun' => 'Sun',
|
||||
'Mon' => 'Mon',
|
||||
'Tue' => 'Tue',
|
||||
'Wed' => 'Wed',
|
||||
'Thu' => 'Thu',
|
||||
'Fri' => 'Fri',
|
||||
'Sat' => 'Sat',
|
||||
|
||||
'January' => 'January',
|
||||
'February' => 'February',
|
||||
'March' => 'March',
|
||||
'April' => 'April',
|
||||
'May' => 'May',
|
||||
'June' => 'June',
|
||||
'July' => 'July',
|
||||
'August' => 'August',
|
||||
'September' => 'September',
|
||||
'October' => 'October',
|
||||
'November' => 'November',
|
||||
'December' => 'December',
|
||||
|
||||
'Jan' => 'Jan',
|
||||
'Feb' => 'Feb',
|
||||
'Mar' => 'Mar',
|
||||
'Apr' => 'Apr',
|
||||
'Jun' => 'Jun',
|
||||
'Jul' => 'Jul',
|
||||
'Aug' => 'Aug',
|
||||
'Sep' => 'Sep',
|
||||
'Oct' => 'Oct',
|
||||
'Nov' => 'Nov',
|
||||
'Dec' => 'Dec',
|
||||
),
|
||||
|
||||
'tz' => array(
|
||||
'-13' => 'GMT - 13 Hours',
|
||||
'-12' => 'GMT - 12 Hours',
|
||||
'-11' => 'GMT - 11 Hours',
|
||||
'-10' => 'GMT - 10 Hours',
|
||||
'-9' => 'GMT - 9 Hours',
|
||||
'-8' => 'GMT - 8 Hours',
|
||||
'-7' => 'GMT - 7 Hours',
|
||||
'-6' => 'GMT - 6 Hours',
|
||||
'-5' => 'GMT - 5 Hours',
|
||||
'-4' => 'GMT - 4 Hours',
|
||||
'-3.5' => 'GMT - 3.5 Hours',
|
||||
'-3' => 'GMT - 3 Hours',
|
||||
'-2.5' => 'GMT - 2.5 Hours',
|
||||
'-2' => 'GMT - 2 Hours',
|
||||
'-1' => 'GMT - 1 Hours',
|
||||
'0' => 'GMT',
|
||||
'1' => 'GMT + 1 Hour',
|
||||
'2' => 'GMT + 2 Hours',
|
||||
'3' => 'GMT + 3 Hours',
|
||||
'3.5' => 'GMT + 3.5 Hours',
|
||||
'4' => 'GMT + 4 Hours',
|
||||
'4.5' => 'GMT + 4.5 Hours',
|
||||
'5' => 'GMT + 5 Hours',
|
||||
'5.5' => 'GMT + 5.5 Hours',
|
||||
'6' => 'GMT + 6 Hours',
|
||||
'6.5' => 'GMT + 6.5 Hours',
|
||||
'7' => 'GMT + 7 Hours',
|
||||
'8' => 'GMT + 8 Hours',
|
||||
'9' => 'GMT + 9 Hours',
|
||||
'9.5' => 'GMT + 9.5 Hours',
|
||||
'10' => 'GMT + 10 Hours',
|
||||
'10.5' => 'GMT + 10.5 Hours',
|
||||
'11' => 'GMT + 11 Hours',
|
||||
'12' => 'GMT + 12 Hours',
|
||||
'13' => 'GMT + 13 Hours',
|
||||
'dst' => '[ DST ]'
|
||||
),
|
||||
);
|
||||
|
||||
// Pool of unused or currently not assignable language variables
|
||||
$unused = array(
|
||||
'ALLOWED' => 'Allowed',
|
||||
'ALREADY_VOTED' => 'You have already voted in this poll and may not change your selection.',
|
||||
'AM' => 'AM',
|
||||
'AVATAR' => 'Avatar',
|
||||
'Add_member' => 'Add Member',
|
||||
'All_Messages' => 'All Messages',
|
||||
'Already_member_group' => 'You are already a member of this group',
|
||||
'Approve_selected' => 'Approve Selected',
|
||||
'Are_group_moderator' => 'You are the group moderator',
|
||||
'BY' => 'by',
|
||||
'CANNOT_DELETE_POLL' => 'Sorry but you cannot delete an active poll.',
|
||||
'CANNOT_SPLIT_FIRST_POST' => 'You cannot split the first post of a topic',
|
||||
'CONTACT' => 'Contact',
|
||||
'Cannot_send_privmsg' => 'Sorry but the administrator has prevented you from sending private messages',
|
||||
'Click_return_inbox' => 'Click %sHere%s to return to your Inbox',
|
||||
'Click_view_privmsg' => 'Click %sHere%s to visit your Inbox',
|
||||
'Confirm_delete_pm' => 'Are you sure you want to delete this message?',
|
||||
'Confirm_delete_pms' => 'Are you sure you want to delete these messages?',
|
||||
'Confirm_unsub' => 'Are you sure you want to unsubscribe from this group?',
|
||||
'Confirm_unsub_pending' => 'Your subscription to this group has not yet been approved, are you sure you want to unsubscribe?',
|
||||
'Could_not_add_user' => 'The user you selected does not exist',
|
||||
'Could_not_anon_user' => 'You cannot make Anonymous a group member',
|
||||
'Current_memberships' => 'Current memberships',
|
||||
'DESCRIPTION' => 'Description',
|
||||
'DISABLED' => 'Disabled',
|
||||
'DOWNLOAD' => 'Download',
|
||||
'Date' => 'Date',
|
||||
'Delete_all' => 'Delete All',
|
||||
'Deny_selected' => 'Deny Selected',
|
||||
'Disable_BBCode_pm' => 'Disable BBCode in this message',
|
||||
'Disable_HTML_pm' => 'Disable HTML in this message',
|
||||
'Disable_Smilies_pm' => 'Disable Smilies in this message',
|
||||
'Display_messages' => 'Display messages from previous',
|
||||
'EDIT_OWN_POSTS' => 'Sorry but you can only edit your own posts.',
|
||||
'EMAIL_TAKEN_EMAIL' => 'The email address you specified is already in use, please select an alternative.',
|
||||
'ENABLED' => 'Enabled',
|
||||
'ERROR' => 'Error',
|
||||
'EXTENSION' => 'Extension',
|
||||
'Edit_message' => 'Edit private message',
|
||||
'Edit_pm' => 'Edit message',
|
||||
'Find' => 'Find',
|
||||
'Flag' => 'Flag',
|
||||
'From' => 'From',
|
||||
'Group_Control_Panel' => 'Group Control Panel',
|
||||
'Group_Information' => 'Group Information',
|
||||
'Group_Members' => 'Group Members',
|
||||
'Group_Moderator' => 'Group Moderator',
|
||||
'Group_added' => 'You have been added to this usergroup',
|
||||
'Group_approved' => 'Your request has been approved',
|
||||
'Group_closed' => 'Closed group',
|
||||
'Group_description' => 'Group description',
|
||||
'Group_hidden' => 'Hidden group',
|
||||
'Group_hidden_members' => 'This group is hidden, you cannot view its membership',
|
||||
'Group_joined' => 'You have successfully subscribed to this group<br />You will be notified when your subscription is approved by the group moderator',
|
||||
'Group_member_details' => 'Group Membership Details',
|
||||
'Group_member_join' => 'Join a Group',
|
||||
'Group_membership' => 'Group membership',
|
||||
'Group_name' => 'Group name',
|
||||
'Group_not_exist' => 'That user group does not exist',
|
||||
'Group_open' => 'Open group',
|
||||
'Group_request' => 'A request to join your group has been made',
|
||||
'Group_type' => 'Group type',
|
||||
'Group_type_updated' => 'Successfully updated group type',
|
||||
'IP_ADDRESS' => 'IP Address',
|
||||
'Inbox' => 'Inbox',
|
||||
'Inbox_size' => 'Your Inbox is %d%% full',
|
||||
'Join_group' => 'Join Group',
|
||||
'LOGOUT' => 'Logout',
|
||||
'LOG_DELETE_TOPIC' => '<b>Deleted topic</b><br />» %s',
|
||||
'LOG_USER_GENERAL' => '%s',
|
||||
'Login_to_join' => 'Login to join or manage group memberships',
|
||||
'Member_this_group' => 'You are a member of this group',
|
||||
'Memberships_pending' => 'Memberships pending',
|
||||
'Message_sent' => 'Your message has been sent',
|
||||
'NEVER' => 'Never',
|
||||
'NOT_AUTHORISED' => 'Not Authorised',
|
||||
'NO_MODE' => 'No mode specified.',
|
||||
'No_folder' => 'No folder specified',
|
||||
'No_group_members' => 'This group has no members',
|
||||
'No_match' => 'No matches found',
|
||||
'No_messages_folder' => 'You have no messages in this folder',
|
||||
'No_pending_group_members' => 'This group has no pending members',
|
||||
'No_such_folder' => 'No such folder exists',
|
||||
'No_such_user' => 'Sorry but no such user exists',
|
||||
'No_to_user' => 'You must specify a username to send this message',
|
||||
'Non_member_groups' => 'Non-member groups',
|
||||
'Not_group_moderator' => 'You are not this groups moderator therefor you cannot preform that action.',
|
||||
'Not_logged_in' => 'You must be logged in to join a group.',
|
||||
'Notification_subject' => 'New Private Message has arrived',
|
||||
'Outbox' => 'Outbox',
|
||||
'PASSWORD_MISMATCH' => 'The passwords you entered did not match',
|
||||
'PLEASE_SELECT_FORUM' => 'Please select a forum',
|
||||
'POLL_DELETED' => 'Your poll has been deleted successfully',
|
||||
'POSTER_CHANGED_SUCESS' => 'The poster of this message has been successfully changed',
|
||||
'POST_IGNORE' => 'This post was made by <b>%1$s</b> who is on your ignore list. To display this post click %sHERE%s.',
|
||||
'POST_TOPIC_LOCKED' => 'Topic is locked',
|
||||
'Pending_members' => 'Pending Members',
|
||||
'Pending_this_group' => 'Your membership of this group is pending',
|
||||
'Post_new_pm' => 'Post message',
|
||||
'Post_quote_pm' => 'Quote message',
|
||||
'Post_reply_pm' => 'Reply to message',
|
||||
'Private_Message' => 'Private Message',
|
||||
'Private_Messages' => 'Private Messages',
|
||||
'Private_Messaging' => 'Private Messaging',
|
||||
'RATING' => 'Rating',
|
||||
'READING_GLOBAL_ANNOUNCE' => 'Reading global announcement',
|
||||
'REPLYING_GLOBAL_ANNOUNCE' => 'Replying to global announcement',
|
||||
'REPLY_WITH_QUOTE' => 'Reply with quote',
|
||||
'RESULT_DIR' => 'Order results',
|
||||
'RETURN_GROUP' => 'Click %sHere%s to return to the Group Control Panel',
|
||||
'RETURN_LOGIN' => 'Click %sHere%s to try again',
|
||||
'RETURN_MCP' => 'Click %sHere%s to return to the Moderator Control Panel',
|
||||
'Read_message' => 'Read message',
|
||||
'Read_pm' => 'Read message',
|
||||
'Remove_selected' => 'Remove Selected',
|
||||
'SEARCH_PREVIOUS' => 'Search previous',
|
||||
'SIGNATURE_NOTICE' => 'Please note that some forums limit the size and content of your signature. Be sure to read any forum or board rules to ensure you comply with them.',
|
||||
'SORT_POSTS' => 'Total posts',
|
||||
'SORT_WEBSITE' => 'Website',
|
||||
'SPELLCHECK' => 'Spellcheck',
|
||||
'START_PAGE' => 'Make my start page',
|
||||
'Save_marked' => 'Save Marked',
|
||||
'Save_message' => 'Save Message',
|
||||
'Savebox' => 'Savebox',
|
||||
'Savebox_size' => 'Your Savebox is %d%% full',
|
||||
'Saved' => 'Saved',
|
||||
'Send_a_new_message' => 'Send a new private message',
|
||||
'Send_a_reply' => 'Reply to a private message',
|
||||
'Sent' => 'Sent',
|
||||
'Sentbox' => 'Sentbox',
|
||||
'Sentbox_size' => 'Your Sentbox is %d%% full',
|
||||
'Subscribe' => 'Subscribe',
|
||||
'This_closed_group' => 'This is a closed group, no more users accepted',
|
||||
'This_hidden_group' => 'This is a hidden group, automatic user addition is not allowed',
|
||||
'This_open_group' => 'This is an open group, click to request membership',
|
||||
'To' => 'To',
|
||||
'To_long_subject' => 'The subject is too long it must be 60 characters or less.',
|
||||
'UNREAD_NO_PM' => 'You have no unread private messages',
|
||||
'UNWATCHED_FORUMS' => 'You are no longer watching the selected forums.',
|
||||
'UNWATCHED_FORUMS_TOPICS' => 'You are no longer watching the selected forums or topics.',
|
||||
'UNWATCHED_TOPICS' => 'You are no longer watching the selected topics.',
|
||||
'UPDATE' => 'Update',
|
||||
'USERS' => 'Users',
|
||||
'USER_OFFLINE' => 'Offline',
|
||||
'Unread_message' => 'Unread message',
|
||||
'Unsub_success' => 'You have been un-subscribed from this group.',
|
||||
'Unsubscribe' => 'Unsubscribe',
|
||||
'User_is_member_group' => 'User is already a member of this group',
|
||||
'VIEWING_MESSAGES' => 'Viewing Private Messages',
|
||||
'View_Information' => 'View Information',
|
||||
'View_forum' => 'View Forum',
|
||||
'YOU_NEW_PM' => 'A new private message is waiting for you in your Inbox',
|
||||
'YOU_NEW_PMS' => 'New private messages are waiting for you in your Inbox',
|
||||
'YOU_NO_NEW_PM' => 'No new private messages are waiting for you',
|
||||
);
|
||||
|
||||
|
||||
?>
|
44
phpBB/language/en/gcp.php
Normal file
44
phpBB/language/en/gcp.php
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?php
|
||||
// -------------------------------------------------------------
|
||||
//
|
||||
// $Id$
|
||||
//
|
||||
// FILENAME : gcp.php [ English ]
|
||||
// STARTED : Sat Dec 16, 2000
|
||||
// COPYRIGHT : © 2001, 2003 phpBB Group
|
||||
// WWW : http://www.phpbb.com/
|
||||
// LICENCE : GPL vs2.0 [ see /docs/COPYING ]
|
||||
//
|
||||
// -------------------------------------------------------------
|
||||
|
||||
// DO NOT CHANGE
|
||||
if (empty($lang))
|
||||
{
|
||||
$lang = array();
|
||||
}
|
||||
|
||||
// DEVELOPERS PLEASE NOTE
|
||||
//
|
||||
// Placeholders can now contain order information, e.g. instead of
|
||||
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||
// translators to re-order the output of data while ensuring it remains correct
|
||||
//
|
||||
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||
// equally where a string contains only two placeholders which are used to wrap text
|
||||
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||
|
||||
$lang += array(
|
||||
'GROUP_CLOSED' => 'Closed',
|
||||
'GROUP_DESC' => 'Group description',
|
||||
'GROUP_HIDDEN' => 'Hidden',
|
||||
'GROUP_MEMBERS' => 'Group members',
|
||||
'GROUP_NAME' => 'Group name',
|
||||
'GROUP_OPEN' => 'Open',
|
||||
'GROUP_TYPE' => 'Group type',
|
||||
|
||||
'No_groups_exist' => 'No Groups Exist',
|
||||
|
||||
'REMOVE_SELECTED' => 'Remove selected'
|
||||
);
|
||||
|
||||
?>
|
99
phpBB/language/en/help_bbcode.php
Normal file
99
phpBB/language/en/help_bbcode.php
Normal file
|
@ -0,0 +1,99 @@
|
|||
<?php
|
||||
// -------------------------------------------------------------
|
||||
//
|
||||
// $Id$
|
||||
//
|
||||
// FILENAME : help_bbcode.php [ English ]
|
||||
// STARTED : Sat Dec 16, 2000
|
||||
// COPYRIGHT : © 2001, 2003 phpBB Group
|
||||
// WWW : http://www.phpbb.com/
|
||||
// LICENCE : GPL vs2.0 [ see /docs/COPYING ]
|
||||
//
|
||||
// -------------------------------------------------------------
|
||||
|
||||
// DEVELOPERS PLEASE NOTE
|
||||
//
|
||||
// Placeholders can now contain order information, e.g. instead of
|
||||
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||
// translators to re-order the output of data while ensuring it remains correct
|
||||
//
|
||||
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||
// equally where a string contains only two placeholders which are used to wrap text
|
||||
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||
|
||||
$help = array(
|
||||
array(
|
||||
0 => '--',
|
||||
1 => 'Introduction'
|
||||
),
|
||||
array(
|
||||
0 => 'What is BBCode?',
|
||||
1 => 'BBCode is a special implementation of HTML. Whether you can actually use BBCode in your posts on the forum is determined by the administrator. In addition you can disable BBCode on a per post basis via the posting form. BBCode itself is similar in style to HTML, tags are enclosed in square braces [ and ] rather than < and > and it offers greater control over what and how something is displayed. Depending on the template you are using you may find adding BBCode to your posts is made much easier through a clickable interface above the message area on the posting form. Even with this you may find the following guide useful.'
|
||||
),
|
||||
array(
|
||||
0 => '--',
|
||||
1 => 'Text Formatting'
|
||||
),
|
||||
array(
|
||||
0 => 'How to create bold, italic and underlined text',
|
||||
1 => 'BBCode includes tags to allow you to quickly change the basic style of your text. This is achieved in the following ways: <ul><li>To make a piece of text bold enclose it in <b>[b][/b]</b>, eg. <br /><br /><b>[b]</b>Hello<b>[/b]</b><br /><br />will become <b>Hello</b></li><li>For underlining use <b>[u][/u]</b>, for example:<br /><br /><b>[u]</b>Good Morning<b>[/u]</b><br /><br />becomes <u>Good Morning</u></li><li>To italicise text use <b>[i][/i]</b>, eg.<br /><br />This is <b>[i]</b>Great!<b>[/i]</b><br /><br />would give This is <i>Great!</i></li></ul>'
|
||||
),
|
||||
array(
|
||||
0 => 'How to change the text colour or size',
|
||||
1 => 'To alter the color or size of your text the following tags can be used. Keep in mind that how the output appears will depend on the viewers browser and system: <ul><li>Changing the colour of text is achieved by wrapping it in <b>[color=][/color]</b>. You can specify either a recognised colour name (eg. red, blue, yellow, etc.) or the hexadecimal triplet alternative, eg. #FFFFFF, #000000. For example, to create red text you could use:<br /><br /><b>[color=red]</b>Hello!<b>[/color]</b><br /><br />or<br /><br /><b>[color=#FF0000]</b>Hello!<b>[/color]</b><br /><br />will both output <span style=\"color:red\">Hello!</span></li><li>Changing the text size is achieved in a similar way using <b>[size=][/size]</b>. This tag is dependent on the template you are using but the recommended format is a numerical value representing the text size in pixels, starting at 1 (so tiny you will not see it) through to 29 (very large). For example:<br /><br /><b>[size=9]</b>SMALL<b>[/size]</b><br /><br />will generally be <span style=\"font-size:9px\">SMALL</span><br /><br />whereas:<br /><br /><b>[size=24]</b>HUGE!<b>[/size]</b><br /><br />will be <span style=\"font-size:24px\">HUGE!</span></li></ul>'
|
||||
),
|
||||
array(
|
||||
0 => 'Can I combine formatting tags?',
|
||||
1 => 'Yes, of course you can, for example to get someones attention you may write:<br /><br /><b>[size=18][color=red][b]</b>LOOK AT ME!<b>[/b][/color][/size]</b><br /><br />this would output <span style=\"color:red;font-size:18px\"><b>LOOK AT ME!</b></span><br /><br />We don\'t recommend you output lots of text that looks like this though! Remember it is up to you, the poster to ensure tags are closed correctly. For example the following is incorrect:<br /><br /><b>[b][u]</b>This is wrong<b>[/b][/u]</b>'
|
||||
),
|
||||
array(
|
||||
0 => '--',
|
||||
1 => 'Quoting and outputting fixed-width text'
|
||||
),
|
||||
array(
|
||||
0 => 'Quoting text in replies',
|
||||
1 => 'There are two ways you can quote text, with a reference or without.<ul><li>When you utilise the Quote function to reply to a post on the board you should notice that the post text is added to the message window enclosed in a <b>[quote=\"\"][/quote]</b> block. This method allows you to quote with a reference to a person or whatever else you choose to put! For example to quote a piece of text Mr. Blobby wrote you would enter:<br /><br /><b>[quote=\"Mr. Blobby\"]</b>The text Mr. Blobby wrote would go here<b>[/quote]</b><br /><br />The resulting output will automatically add, Mr. Blobby wrote: before the actual text. Remember you <b>must</b> include the parenthesis \"\" around the name you are quoting, they are not optional.</li><li>The second method allows you to blindly quote something. To utilise this enclose the text in <b>[quote][/quote]</b> tags. When you view the message it will simply show, Quote: before the text itself.</li></ul>'
|
||||
),
|
||||
array(
|
||||
0 => 'Outputting code or fixed width data',
|
||||
1 => 'If you want to output a piece of code or in fact anything that requires a fixed width, eg. Courier type font you should enclose the text in <b>[code][/code]</b> tags, eg.<br /><br /><b>[code]</b>echo \"This is some code\";<b>[/code]</b><br /><br />All formatting used within <b>[code][/code]</b> tags is retained when you later view it.'
|
||||
),
|
||||
array(
|
||||
0 => '--',
|
||||
1 => 'Generating lists'
|
||||
),
|
||||
array(
|
||||
0 => 'Creating an Un-ordered list',
|
||||
1 => 'BBCode supports two types of lists, unordered and ordered. They are essentially the same as their HTML equivalents. An unordered list ouputs each item in your list sequentially one after the other indenting each with a bullet character. To create an unordered list you use <b>[list][/list]</b> and define each item within the list using <b>[*]</b>. For example to list your favorite colours you could use:<br /><br /><b>[list]</b><br /><b>[*]</b>Red<br /><b>[*]</b>Blue<br /><b>[*]</b>Yellow<br /><b>[/list]</b><br /><br />This would generate the following list:<ul><li>Red</li><li>Blue</li><li>Yellow</li></ul>'
|
||||
),
|
||||
array(
|
||||
0 => 'Creating an Ordered list',
|
||||
1 => 'The second type of list, an ordered list gives you control over what is output before each item. To create an ordered list you use <b>[list=1][/list]</b> to create a numbered list or alternatively <b>[list=a][/list]</b> for an alphabetical list. As with the unordered list items are specified using <b>[*]</b>. For example:<br /><br /><b>[list=1]</b><br /><b>[*]</b>Go to the shops<br /><b>[*]</b>Buy a new computer<br /><b>[*]</b>Swear at computer when it crashes<br /><b>[/list]</b><br /><br />will generate the following:<ol type=\"1\"><li>Go to the shops</li><li>Buy a new computer</li><li>Swear at computer when it crashes</li></ol>Whereas for an alphabetical list you would use:<br /><br /><b>[list=a]</b><br /><b>[*]</b>The first possible answer<br /><b>[*]</b>The second possible answer<br /><b>[*]</b>The third possible answer<br /><b>[/list]</b><br /><br />giving<ol type=\"a\"><li>The first possible answer</li><li>The second possible answer</li><li>The third possible answer</li></ol>'
|
||||
),
|
||||
array(
|
||||
0 => '--',
|
||||
1 => 'Creating Links'
|
||||
),
|
||||
array(
|
||||
0 => 'Linking to another site',
|
||||
1 => 'phpBB BBCode supports a number of ways of creating URIs, Uniform Resource Indicators better known as URLs.<ul><li>The first of these uses the <b>[url=][/url]</b> tag, whatever you type after the = sign will cause the contents of that tag to act as a URL. For example to link to phpBB.com you could use:<br /><br /><b>[url=http://www.phpbb.com/]</b>Visit phpBB!<b>[/url]</b><br /><br />This would generate the following link, <a href=\"http://www.phpbb.com/\" target=\"_blank\">Visit phpBB!</a> You will notice the link opens in a new window so the user can continue browsing the forums if they wish.</li><li>If you want the URL itself displayed as the link you can do this by simply using:<br /><br /><b>[url]</b>http://www.phpbb.com/<b>[/url]</b><br /><br />This would generate the following link, <a href=\"http://www.phpbb.com/\" target=\"_blank\">http://www.phpbb.com/</a></li><li>Additionally phpBB features something called <i>Magic Links</i>, this will turn any syntatically correct URL into a link without you needing to specify any tags or even the leading http://. For example typing www.phpbb.com into your message will automatically lead to <a href=\"http://www.phpbb.com/\" target=\"_blank\">www.phpbb.com</a> being output when you view the message.</li><li>The same thing applies equally to email addresses, you can either specify an address explicitly for example:<br /><br /><b>[email]</b>no.one@domain.adr<b>[/email]</b><br /><br />which will output <a href=\"emailto:no.one@domain.adr\">no.one@domain.adr</a> or you can just type no.one@domain.adr into your message and it will be automatically converted when you view.</li></ul>As with all the BBCode tags you can wrap URLs around any of the other tags such as <b>[img][/img]</b> (see next entry), <b>[b][/b]</b>, etc. As with the formatting tags it is up to you to ensure the correct open and close order is following, for example:<br /><br /><b>[url=http://www.phpbb.com/][img]</b>http://www.phpbb.com/images/phplogo.gif<b>[/url][/img]</b><br /><br />is <u>not</u> correct which may lead to your post being deleted so take care.'
|
||||
),
|
||||
array(
|
||||
0 => '--',
|
||||
1 => 'Showing images in posts'
|
||||
),
|
||||
array(
|
||||
0 => 'Adding an image to a post',
|
||||
1 => 'phpBB BBCode incorporates a tag for including images in your posts. Two very important things to remember when using this tag are; many users do not appreciate lots of images being shown in posts and secondly the image you display must already be available on the internet (it cannot exist only on your computer for example, unless you run a webserver!). There is currently no way of storing images locally with phpBB (all these issues are expected to be addressed in the next release of phpBB). To display an image you must surround the URL pointing to the image with <b>[img][/img]</b> tags. For example:<br /><br /><b>[img]</b>http://www.phpbb.com/images/phplogo.gif<b>[/img]</b><br /><br />As noted in the URL section above you can wrap an image in a <b>[url][/url]</b> tag if you wish, eg.<br /><br /><b>[url=http://www.phpbb.com/][img]</b>http://www.phpbb.com/images/phplogo.gif<b>[/img][/url]</b><br /><br />would generate:<br /><br /><a href=\"http://www.phpbb.com/\" target=\"_blank\"><img src=\"http://www.phpbb.com/images/phplogo.gif\" border=\"0\" alt=\"\" /></a><br />'
|
||||
),
|
||||
array(
|
||||
0 => '--',
|
||||
1 => 'Other matters'
|
||||
),
|
||||
array(
|
||||
0 => 'Can I add my own tags?',
|
||||
1 => 'No, I am afraid not directly in phpBB 2.0. We are looking at offering customisable BBCode tags for the next major version'
|
||||
)
|
||||
);
|
||||
|
||||
?>
|
211
phpBB/language/en/help_faq.php
Normal file
211
phpBB/language/en/help_faq.php
Normal file
|
@ -0,0 +1,211 @@
|
|||
<?php
|
||||
// -------------------------------------------------------------
|
||||
//
|
||||
// $Id$
|
||||
//
|
||||
// FILENAME : help_faq.php [ English ]
|
||||
// STARTED : Sat Dec 16, 2000
|
||||
// COPYRIGHT : © 2001, 2003 phpBB Group
|
||||
// WWW : http://www.phpbb.com/
|
||||
// LICENCE : GPL vs2.0 [ see /docs/COPYING ]
|
||||
//
|
||||
// -------------------------------------------------------------
|
||||
|
||||
// DEVELOPERS PLEASE NOTE
|
||||
//
|
||||
// Placeholders can now contain order information, e.g. instead of
|
||||
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||
// translators to re-order the output of data while ensuring it remains correct
|
||||
//
|
||||
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||
// equally where a string contains only two placeholders which are used to wrap text
|
||||
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||
|
||||
$help = array(
|
||||
array(
|
||||
0 => '--',
|
||||
1 => 'Login and Registration Issues'
|
||||
),
|
||||
array(
|
||||
0 => 'Why can\'t I login?',
|
||||
1 => 'Have you registered? Seriously, you must register in order to login. Have you been banned from the board (a message will be displayed if you have)? If so then you should contact the webmaster or board administrator to find out why. If you have registered and are not banned and you still cannot login then check and double check your username and password. Usually this is the problem, if not then contact the board administrator they may have incorrect configuration settings for the board.'
|
||||
),
|
||||
array(
|
||||
0 => 'Why do I need to register at all?',
|
||||
1 => 'You may not have too, it is up to the administrator of the board as to whether you need to register in order to post messages. However registration will give you access to additional features not available to guest users such as definable avatar images, private messaging, emailing of fellow users, usergroup subscription, etc. It only takes a few moments to register so it is recommended you do so.'
|
||||
),
|
||||
array(
|
||||
0 => 'Why do I get logged off automatically?',
|
||||
1 => 'If you do not check the <i>Log me in automatically</i> box when you login the board will only keep you logged in for a preset time. This prevents misuse of your account by anyone else. To stay logged in check the box during login, this is not recommended if you access the board from a shared computer, e.g. library, internet cafe, university cluster, etc.'
|
||||
),
|
||||
array(
|
||||
0 => 'How do I prevent my username appearing in the online user listings?',
|
||||
1 => 'In your profile you will find an option <i>Hide your online status</i>, if you switch this <i>on</i> you\'ll only appear to board administrators or to yourself. You will be counted as a hidden user.'
|
||||
),
|
||||
array(
|
||||
0 => 'I\'ve lost my password!',
|
||||
1 => 'Don\'t panic! While your password cannot be retrieved it can be reset. To do this go to the login page and click <u>I\'ve forgotten my password</u>, follow the instructions and you should be back online in no time'
|
||||
),
|
||||
array(
|
||||
0 => 'I registered but cannot login!',
|
||||
1 => 'Firstly check your are entering the correct username and password. If they are okay then one of two things may have happened. If COPPA support is enabled and you clicked the <u>I am under 13 years old</u> link while registering then you will have to follow the instructions you received. If this is not the case then does your account need activating? Some boards will require all new registrations be activated, either by yourself or by the administrator before you can logon. When you registered it would have told you whether activation was required. If you were sent an email then follow the instructions, if you did not receive the email then are you sure your email address is valid? One reason activation is used is to reduce the possibility of <i>rouge</i> users abusing the board anonymously. If you are sure the email address you used is valid then try contacting the board administrator.'
|
||||
),
|
||||
array(
|
||||
0 => 'I registered in the past but cannot login any more?!',
|
||||
1 => 'The most likely reasons for this are; you entered an incorrect username or password (check the email you were sent when you first registered) or the administrator has deleted your account for some reason. If it is the later case then perhaps you did not post anything? It is usual for boards to periodically remove users who have not posted anything so as to reduce the size of the database. Try registering again and get involved in discussions.'
|
||||
),
|
||||
array(
|
||||
0 => '--',
|
||||
1 => 'User Preferences and settings'
|
||||
),
|
||||
array(
|
||||
0 => 'How do I change my settings?',
|
||||
1 => 'All your settings (if you are registered) are stored in the database. To alter them click the <u>Profile</u> link (generally shown at the top of pages but this may not be the case). This will allow you to change all your settings'
|
||||
),
|
||||
array(
|
||||
0 => 'The times are not correct!',
|
||||
1 => 'The times are almost certainly correct, however what you may be seeing are times displayed in a timezone different from the one you are in. If this is the case you should change your profile setting for the timezone to match your particular area, e.g. London, Paris, New York, Sydney, etc. Please note that changing the timezone, like most settings can only be done by registered users. So if you are not registered this is a good time to do so, if you pardon the pun!'
|
||||
),
|
||||
array(
|
||||
0 => 'I changed the timezone and the time is still wrong!',
|
||||
1 => 'If you are sure you have set the timezone correctly and the time is still different the most likely answer is daylight savings time (or summer time as it is known in the UK and other places). The board is not designed to handle the changeovers between standard and daylight time so during summer months the time may be an hour different from the real local time.'
|
||||
),
|
||||
array(
|
||||
0 => 'My language is not in the list!',
|
||||
1 => 'The most likely reasons for this are either the administrator did not install your language or someone has not translated this board into your language. Try asking the board administrator if they can install the language pack you need, if it does not exist then please feel free to create a new translation. More information can be found at the phpBB Group website (see link at bottom of pages)'
|
||||
),
|
||||
array(
|
||||
0 => 'How do I show an image below my username?',
|
||||
1 => 'There may be two images below a username when viewing posts. The first is an image associated with your rank, generally these take the form of stars or blocks indicating how many posts you have made or your status on the forums. Below this may be a larger image known as an avatar, this is generally unique or personal to each user. It is up to the board administrator to enable avatars and they have a choice over the way in which avatars can be made available. If you are unable to use avatars then this is the decision of the board admin, you should ask them their reasons (we\'re sure they\'ll be good!)'
|
||||
),
|
||||
array(
|
||||
0 => 'How do I change my rank?',
|
||||
1 => 'In general you cannot directly change the wording of any rank (ranks appear below your username in topics and on your profile depending on the style used). Most boards use ranks to indicate the number of posts you have made and to identify certain users, e.g. moderators and administrators may have a special rank. Please do not abuse the board by posting unnecessarily just to increase your rank, you will probably find the moderator or administrator will simply lower your post count.'
|
||||
),
|
||||
array(
|
||||
0 => 'When I click the email link for a user it asks me to login?',
|
||||
1 => 'Sorry but only registered users can send email to people via the built-in email form (if the admin has enabled this feature). This is to prevent malicious use of the email system by anonymous users.'
|
||||
),
|
||||
array(
|
||||
0 => '--',
|
||||
1 => 'Posting Issues'
|
||||
),
|
||||
array(
|
||||
0 => 'How do I post a topic in a forum?',
|
||||
1 => 'Easy, click the relevant button on either the forum or topic screens. You may need to register before you can post a message, the facilities available to you are listed at the bottom of the forum and topic screens (the <i>You can post new topics, You can vote in polls, etc.<i> list)'
|
||||
),
|
||||
array(
|
||||
0 => 'How do I edit or delete a post?',
|
||||
1 => 'Unless you are the board admin or forum moderator you can only edit or delete your own posts. You can edit a post (sometimes for only a limited time after it was made) by clicking the <i>edit</i> button for the relevant post. If someone has already replied to the post you will find a small piece of text output below the post when you return to the topic, this lists the number of times you edited it. This will only appear if no one has replied, it also will not appear if moderators or administrators edit the post (they should leave a message saying what they altered and why). Please note that normal users cannot delete a post once someone has replied.'
|
||||
),
|
||||
array(
|
||||
0 => 'How do I add a signature to my post?',
|
||||
1 => 'To add a signature to a post you must first create one, this is done via your profile. Once created you can check the <i>Add Signature</i> box on the posting form to add your signature. You can also add a signature by default to all your posts by checking the appropriate radio box in your profile (you can still prevent a signature being added to individual posts by un-checking the add signature box on the posting form)'
|
||||
),
|
||||
array(
|
||||
0 => 'How do I create a poll?',
|
||||
1 => 'Creating a poll is easy, when you post a new topic (or edit the first post of a topic, if you have permission) you should see a <i>Add Poll</i> form below the main posting box (if you cannot see this then you probably do not have rights to create polls). You should enter a title for the poll and then at least two options (to set an option type in the poll question and click the <i>Add option</i> button. You can also set a time limit for the poll, 0 is an infinite poll. There will be a limit to the number of options you can list, this is set by the board administrator'
|
||||
),
|
||||
array(
|
||||
0 => 'How do I edit or delete a poll?',
|
||||
1 => 'As with posts, polls can only be edited by the original poster, a moderator or board admin. To edit a poll click the first post in the topic (this always has the poll associated with it). If no one has cast a vote then users can delete the poll or edit any poll option, however if people have already placed votes only moderators or administrators can edit or delete it. This is to prevent people rigging polls by changing options mid-way through a poll'
|
||||
),
|
||||
array(
|
||||
0 => 'Why can\'t I access a forum?',
|
||||
1 => 'Some forums may be limited to certain users or groups. To view, read, post, etc. you may need special authorisation, only the forum moderator and board admin can grant this access, you should contact them.'
|
||||
),
|
||||
array(
|
||||
0 => 'Why can\'t I vote in polls?',
|
||||
1 => 'Only registered users can vote in polls (so as to prevent spoofing of results). If you have registered and still cannot vote then you probably do not have appropriate access rights.'
|
||||
),
|
||||
array(
|
||||
0 => '--',
|
||||
1 => 'Formatting and Topic Types'
|
||||
),
|
||||
array(
|
||||
0 => 'What is BBCode?',
|
||||
1 => 'BBCode is a special implementation of HTML, whether you can use BBCode is determined by the administrator (you can also disable it on a per post basis from the posting form). BBCode itself is similar in style to HTML, tags are enclosed in square braces [ and ] rather than < and > and it offers greater control over what and how something is displayed. For more information on BBCode see the guide which can be accessed from the posting page.'
|
||||
),
|
||||
array(
|
||||
0 => 'Can I use HTML?',
|
||||
1 => 'That depends on whether the administrator allows you too, they have complete control over it. If you are allowed to use it you will probably find only certain tags work. This is a <i>safety</i> feature to prevent people abusing the board by using tags which may destroy the layout or cause other problems. If HTML is enabled you can disable it on a per post basis from the posting form.'
|
||||
),
|
||||
array(
|
||||
0 => 'What are Smileys?',
|
||||
1 => 'Smileys, or Emoticons are small graphical images which can be used to express some feeling using a short code, e.g. :) means happy, :( means sad. The full list of emoticons can be seen via the posting form. Try not to overuse smileys though, they can quickly render a post unreadable and a moderator may decide to edit them out or remove the post altogether'
|
||||
),
|
||||
array(
|
||||
0 => 'Can I post Images?',
|
||||
1 => 'Images can indeed be shown in your posts. However, there is no facility at present for uploading images directly to this board. Therefore you must link to an image stored on a publicly accessible web server, e.g. http://www.some-unknown-place.net/my-picture.gif. You cannot link to pictures stored on your own PC (unless it is a publicly accessible server) nor images stored behind authentication mechanisms, e.g. hotmail or yahoo mailboxes, password protected sites, etc. To display the image use either the BBCode [img] tag or appropriate HTML (if allowed).'
|
||||
),
|
||||
array(
|
||||
0 => 'What are Announcements?',
|
||||
1 => 'Announcements often contain important information and you should read them as soon as possible. Announcements appear at the top of every page in the forum to which they are posted. Whether or not you can post an announcement depends on the permissions required, these are set by the administrator.'
|
||||
),
|
||||
array(
|
||||
0 => 'What are Sticky topics?',
|
||||
1 => 'Sticky topics appear below any announcements in viewforum and only on the first page. They are often quite important so you should read them where possible. As with announcements the board administrator determines what permissions are required to post sticky topics in each forum.'
|
||||
),
|
||||
array(
|
||||
0 => 'What are Locked topics?',
|
||||
1 => 'Locked topics are set this way by either the forum moderator or board administrator. You cannot reply to locked topics and any poll it contained is automatically ended. Topics may be locked for many reasons.'
|
||||
),
|
||||
array(
|
||||
0 => '--',
|
||||
1 => 'User Levels and Groups'
|
||||
),
|
||||
array(
|
||||
0 => 'What are Administrators?',
|
||||
1 => 'Administrators are people assigned the highest level of control over the entire board. These people can control all facets of board operation which includes setting permissions, banning users, creating usergroups or moderators, etc. They also have full moderator capabilities in all the forums.'
|
||||
),
|
||||
array(
|
||||
0 => 'What are Moderators?',
|
||||
1 => 'Moderators are individuals (or groups of individuals) whose job it is to look after the running of the forums from day to day. They have the power to edit or delete posts and lock, unlock, move, delete and split topics in the forum they moderate. Generally moderators are there to prevent people going <i>off-topic<i> or posting abusive or offensive material.'
|
||||
),
|
||||
array(
|
||||
0 => 'What are Usergroups?',
|
||||
1 => 'Usergroups are a way in which board administrators can group users. Each user can belong to several groups (this differs from most other boards) and each group can be assigned individual access rights. This makes it easy for administrators to set up several users as moderators of a forum, or to give them access to a private forum, etc.'
|
||||
),
|
||||
array(
|
||||
0 => 'How do I join a Usergroup?',
|
||||
1 => 'To join a usergroup click the usergroup link on the page header (dependent on template design), you can then view all usergroups. Not all groups are <i>open access</i>, some are closed and some may even have hidden memberships. If the board is open then you can request to join it by clicking the appropriate button. The user group moderator will need to approve your request, they may ask why you want to join the group. Please do not pester a group moderator if they turn your request down, they will have their reasons.'
|
||||
),
|
||||
array(
|
||||
0 => 'How do I become a Usergroup Moderator?',
|
||||
1 => 'Usergroups are initially created by the board admin, they also assign a board moderator. If you are interested in creating a usergroup then your first point of contact should be the admin, try dropping them a private message.'
|
||||
),
|
||||
array(
|
||||
0 => '--',
|
||||
1 => 'Private Messaging'
|
||||
),
|
||||
array(
|
||||
0 => 'I cannot send private messages!',
|
||||
1 => 'There are three reasons for this; you are not registered and/or not logged on, the board administrator has disabled private messaging for the entire board or the board administrator has prevented you from sending messages. If it is the later case you should try asking the administrator why.'
|
||||
),
|
||||
array(
|
||||
0 => 'I keep getting unwanted private messages!',
|
||||
1 => 'In the future we will be adding an ignore list to the private messaging system. For now though if you keep receiving unwanted private messages from someone inform the board admin, they have the power to prevent a user from sending private messages at all.'
|
||||
),
|
||||
array(
|
||||
0 => 'I have received a spamming or abusive email from someone on this board!',
|
||||
1 => 'We are sorry to hear that. The email form feature of this board includes safeguards to try and track users who send such posts. You should email the board administrator with a full copy of the email you received, it is very important this include the headers (these list details of the user that sent the email). They can then take action.'
|
||||
),
|
||||
array(
|
||||
0 => '--',
|
||||
1 => 'phpBB 2 Issues'
|
||||
),
|
||||
array(
|
||||
0 => 'Who wrote this bulletin board?',
|
||||
1 => 'This software (in its unmodified form) is produced, released and is copyright <a href=\"http://www.phpbb.com/\" target=\"_blank\">phpBB Group</a>. It is made available under the GNU General Public Licence and may be freely distributed, see link for more details'
|
||||
),
|
||||
array(
|
||||
0 => 'Why isn\'t X feature available?',
|
||||
1 => 'This software was written by and licensed through phpBB Group. If you believe a feature needs to be added then please visit the phpbb.com website and see what phpBB Group have to say. Please do not post feature requests to the board at phpbb.com, the Group uses sourceforge to handle tasking of new features. Please read through the forums and see what, if any, our position may already be for a feature and then follow the procedure given there.'
|
||||
),
|
||||
array(
|
||||
0 => 'Who do I contact about abusive and/or legal matters related to this board?',
|
||||
1 => 'You should contact the administrator of this board. If you cannot find who this you should first contact one of the forum moderators and ask them who you should in turn contact. If still get no response you should contact the owner of the domain (do a whois lookup) or, if this is running on a free service (e.g. yahoo, free.fr, f2s.com, etc.), the management or abuse department of that service. Please note that phpBB Group has absolutely no control and cannot in any way be held liable over how, where or by whom this board is used. It is absolutely pointless contacting phpBB Group in relation to any legal (cease and desist, liable, defamatory comment, etc.) matter not directly related to the phpbb.com website or the discrete software of phpBB itself. If you do email phpBB Group about any third party use of this software then you should expect a terse response or no response at all.'
|
||||
)
|
||||
);
|
||||
|
||||
?>
|
200
phpBB/language/en/mcp.php
Normal file
200
phpBB/language/en/mcp.php
Normal file
|
@ -0,0 +1,200 @@
|
|||
<?php
|
||||
// -------------------------------------------------------------
|
||||
//
|
||||
// $Id$
|
||||
//
|
||||
// FILENAME : mcp.php [ English ]
|
||||
// STARTED : Sat Dec 16, 2000
|
||||
// COPYRIGHT : © 2001, 2003 phpBB Group
|
||||
// WWW : http://www.phpbb.com/
|
||||
// LICENCE : GPL vs2.0 [ see /docs/COPYING ]
|
||||
//
|
||||
// -------------------------------------------------------------
|
||||
|
||||
// DO NOT CHANGE
|
||||
if (empty($lang))
|
||||
{
|
||||
$lang = array();
|
||||
}
|
||||
|
||||
// DEVELOPERS PLEASE NOTE
|
||||
//
|
||||
// Placeholders can now contain order information, e.g. instead of
|
||||
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||
// translators to re-order the output of data while ensuring it remains correct
|
||||
//
|
||||
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||
// equally where a string contains only two placeholders which are used to wrap text
|
||||
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||
|
||||
$lang += array(
|
||||
'ACTION' => 'Action',
|
||||
'ALL_ENTRIES' => 'All entries',
|
||||
'ALREADY_REPORTED' => 'This post has already been reported',
|
||||
'APPROVE' => 'Approve',
|
||||
|
||||
'CANNOT_MOVE_SAME_FORUM'=> 'You cannot move a topic to the forum it\'s already in',
|
||||
'CAN_LEAVE_BLANK' => 'This can be left blank.',
|
||||
'CHANGE_POSTER' => 'Change poster',
|
||||
|
||||
'DELETE_POSTS' => 'Delete posts',
|
||||
'DELETE_POSTS_CONFIRM' => 'Are you sure you want to delete these posts?',
|
||||
'DELETE_POST_CONFIRM' => 'Are you sure you want to delete this post?',
|
||||
'DELETE_TOPICS_CONFIRM' => 'Are you sure you want to delete these topics?',
|
||||
'DELETE_TOPIC_CONFIRM' => 'Are you sure you want to delete this topic?',
|
||||
'DISAPPROVE' => 'Disapprove',
|
||||
'DISPLAY_LOG' => 'Display entries from previous',
|
||||
'DISPLAY_OPTIONS' => 'Display options',
|
||||
|
||||
'EMPTY_REPORT' => 'You must enter a description when selecting this reason',
|
||||
'EMPTY_TOPICS_REMOVED_WARNING' => 'Please note that one or several topics have been removed from the database because they were or become empty',
|
||||
|
||||
'FORK' => 'Fork',
|
||||
'FORUM_DESC' => 'Description',
|
||||
'FORUM_NAME' => 'Forum Name',
|
||||
'FORUM_NOT_EXIST' => 'The forum you selected does not exist',
|
||||
'FORUM_NOT_POSTABLE' => 'The forum you selected cannot be posted to',
|
||||
'FORUM_STATUS' => 'Forum Status',
|
||||
'FORUM_STYLE' => 'Forum Style',
|
||||
|
||||
'IP_INFO' => 'IP Information',
|
||||
|
||||
'LATEST_LOGS' => 'Latest 5 logged actions',
|
||||
'LATEST_REPORTED' => 'Latest 5 reports',
|
||||
'LATEST_UNAPPROVED' => 'Latest 5 posts awaiting for approval',
|
||||
'LOCK' => 'Lock',
|
||||
'LOGS_CURRENT_TOPIC' => 'Currently viewing logs of:',
|
||||
'LOG_APPROVE_TOPIC' => '<b>Approved topic</b><br />» %s',
|
||||
'LOG_FORK' => '<b>Copied topic</b><br />» from %s',
|
||||
'LOG_LOCK' => '<b>Locked topic</b><br />» %s',
|
||||
'LOG_LOCK_POST' => '<b>Locked post</b><br />» %s',
|
||||
'LOG_MERGE' => '<b>Merged posts</b> into topic<br />»%s',
|
||||
'LOG_MOVE' => '<b>Moved topic</b><br />» from %s',
|
||||
'LOG_TOPIC_RESYNC' => '<b>Resynchronised topic counters</b><br />» %s',
|
||||
'LOG_UNLOCK' => '<b>Unlocked topic</b><br />» %s',
|
||||
'LOG_UNLOCK_POST' => '<b>Unlocked post</b><br />» %s',
|
||||
'LOG_UNRATE' => '<b>Unrated post</b><br />» %s',
|
||||
'LOOKUP_ALL' => 'Look up all IP',
|
||||
'LOOKUP_IP' => 'Look up IP',
|
||||
|
||||
'MCP_ADD' => 'Add a warning',
|
||||
'MCP_FORUM_VIEW' => 'View forum',
|
||||
'MCP_FRONT' => 'Front page',
|
||||
'MCP_MAIN' => 'Main',
|
||||
'MCP_POST_DETAILS' => 'Post details',
|
||||
'MCP_QUEUE' => 'Moderation Queue',
|
||||
'MCP_REPORTS' => 'Reports',
|
||||
'MCP_TOPIC_VIEW' => 'View topic',
|
||||
'MCP_UNAPPROVED_POSTS' => 'Posts awaiting for approval (%s)',
|
||||
'MCP_UNAPPROVED_TOPICS' => 'Topics awaiting for approval (%s)',
|
||||
'MCP_VIEW_ALL' => 'View all (%s)',
|
||||
'MCP_VIEW_LOGS' => 'View logs',
|
||||
'MCP_VIEW_RECENT' => 'View recent (%s)',
|
||||
'MCP_VIEW_USER' => 'View warnings for a specific user',
|
||||
'MCP_WARNINGS' => 'Warnings',
|
||||
'MERGE_POSTS' => 'Merge posts',
|
||||
'MERGE_TOPIC_EXPLAIN' => 'Using the form below you can merge selected posts into another topic. These posts will not be reordered and will appear as if the users posted them to the new topic.<br />Please enter the destination topic id or click on the "Select" button to search for one',
|
||||
'MERGE_TOPIC_ID' => 'Destination topic id',
|
||||
'MOD_OPTIONS' => 'Moderator Options',
|
||||
'MORE_INFO' => 'Further information',
|
||||
|
||||
'NOT_MODERATOR' => 'You are not a moderator of this forum',
|
||||
'NO_DESTINATION_FORUM' => 'Please select a forum for destination',
|
||||
'NO_ENTRIES' => 'No log entries for this period',
|
||||
'NO_MATCHES_FOUND' => 'No matches found',
|
||||
'NO_POST_SELECTED' => 'You must select at least one post to perform this action',
|
||||
'NO_TOPIC_SELECTED' => 'You must select at least one topic to perform this action',
|
||||
|
||||
'OTHER_IPS' => 'Other IP addresses this user has posted from',
|
||||
'OTHER_USERS' => 'Users posting from this IP',
|
||||
|
||||
'POSTER' => 'Poster',
|
||||
'POSTS_APPROVED_SUCCESS'=> 'The selected posts have been approved',
|
||||
'POSTS_DELETED_SUCCESS' => 'The selected posts have been successfully removed from the database',
|
||||
'POSTS_MERGED_SUCCESS' => 'The selected posts have been merged',
|
||||
'POSTS_PER_PAGE' => 'Posts per page',
|
||||
'POSTS_PER_PAGE_EXPLAIN'=> '(Set to 0 to view all posts)',
|
||||
'POST_APPROVED_SUCCESS' => 'The selected post has been approved',
|
||||
'POST_DELETED_SUCCESS' => 'The selected post has been successfully removed from the database',
|
||||
'POST_DETAILS' => 'Post details',
|
||||
'POST_LOCKED_SUCCESS' => 'Post locked successsfully',
|
||||
'POST_NOT_EXIST' => 'The post you requested does not exist',
|
||||
'POST_REPORTED_SUCCESS' => 'This post has been successfully reported',
|
||||
'POST_UNLOCKED_SUCCESS' => 'Post unlocked successsfully',
|
||||
'POST_UNRATED_SUCCESS' => 'Post unrated successfully',
|
||||
|
||||
'READ_PROFILE' => 'Profile',
|
||||
'READ_USERNOTES' => 'User notes',
|
||||
'READ_WARNINGS' => 'User warnings',
|
||||
'REPORTS_TOTAL' => 'In total there are <b>%d</b> reports to review',
|
||||
'REPORTS_ZERO_TOTAL' => 'There are no reports to review',
|
||||
'REPORT_NOTIFY' => 'Notify me',
|
||||
'REPORT_NOTIFY_EXPLAIN' => 'Informs you when your report is dealt with',
|
||||
'REPORT_POST' => 'Report this post',
|
||||
'REPORT_POST_EXPLAIN' => 'Use this form to report the selected post to the forum moderators and board administrators. Reporting should generally be used only if the post breaks forum rules.',
|
||||
'REPORT_TOTAL' => 'In total there is <b>1</b> report to review',
|
||||
'RESYNC' => 'Resync',
|
||||
'RETURN_NEW_FORUM' => 'Click %sHere%s to return to the new forum',
|
||||
'RETURN_NEW_TOPIC' => 'Click %sHere%s to return to the new topic',
|
||||
|
||||
'SELECT_TOPIC' => 'Select topic',
|
||||
'SORT_ACTION' => 'Log action',
|
||||
'SORT_DATE' => 'Date',
|
||||
'SORT_IP' => 'IP address',
|
||||
'SPLIT_AFTER' => 'Split from selected post',
|
||||
'SPLIT_FORUM' => 'Forum for new topic',
|
||||
'SPLIT_POSTS' => 'Split selected posts',
|
||||
'SPLIT_SUBJECT' => 'New topic title',
|
||||
'SPLIT_TOPIC_EXPLAIN' => 'Using the form below you can split a topic in two, either by selecting the posts individually or by splitting at a selected post',
|
||||
|
||||
'THIS_POST_IP' => 'IP for this post',
|
||||
'TIME' => 'Time',
|
||||
'TOPICS_APPROVED_SUCCESS' => 'The selected topics have been approved',
|
||||
'TOPICS_DELETED_SUCCESS'=> 'The selected topics have been successfully removed from the database',
|
||||
'TOPICS_FORKED_SUCCESS' => 'The selected topics have been copied successfully',
|
||||
'TOPICS_LOCKED_SUCCESS' => 'The selected topics have been locked',
|
||||
'TOPICS_MOVED_SUCCESS' => 'The selected topics have been moved successfully',
|
||||
'TOPICS_RESYNC_SUCCESS' => 'The selected topics have been resynchronised',
|
||||
'TOPICS_UNLOCKED_SUCCESS' => 'The selected topics have been unlocked',
|
||||
'TOPIC_APPROVED_SUCCESS'=> 'The selected topic has been approved',
|
||||
'TOPIC_DELETED_SUCCESS' => 'The selected topic has been successfully removed from the database',
|
||||
'TOPIC_FORKED_SUCCESS' => 'The selected topic has been copied successfully',
|
||||
'TOPIC_LOCKED_SUCCESS' => 'The selected topic has been locked',
|
||||
'TOPIC_MOVED_SUCCESS' => 'The selected topic has been moved successfully',
|
||||
'TOPIC_NOT_EXIST' => 'The topic you selected does not exist',
|
||||
'TOPIC_REPORTED' => 'This topic has been reported',
|
||||
'TOPIC_RESYNC_SUCCESS' => 'The selected topic has been resynchronised',
|
||||
'TOPIC_SPLIT_SUCCESS' => 'The selected topic has been split successfully',
|
||||
'TOPIC_TIME' => 'Topic time',
|
||||
'TOPIC_UNLOCKED_SUCCESS'=> 'The selected topic has been unlocked',
|
||||
|
||||
'UNAPPROVED_POSTS_TOTAL'=> 'In total there are <b>%d</b> posts waiting for approval',
|
||||
'UNAPPROVED_POSTS_ZERO_TOTAL' => 'There are no posts waiting for approval',
|
||||
'UNAPPROVED_POST_TOTAL' => 'In total there is <b>1</b> post waiting for approval',
|
||||
'UNLOCK' => 'Unlock',
|
||||
'UNLOCK_POST' => 'Unlock Post',
|
||||
'UNLOCK_POST_EXPLAIN' => 'Allow editing',
|
||||
'UNRATE_POST' => 'Unrate post',
|
||||
'UNRATE_POST_EXPLAIN' => 'Reset post rating',
|
||||
'USER_CANNOT_POST' => 'You cannot post in this forum',
|
||||
'USER_CANNOT_REPORT' => 'You cannot report posts in this forum',
|
||||
|
||||
'YOU_SELECTED_TOPIC' => 'You selected topic number %d: %s',
|
||||
|
||||
'report_reasons' => array(
|
||||
'TITLE' => array(
|
||||
'WAREZ' => 'Warez',
|
||||
'SPAM' => 'Spam',
|
||||
'OFF_TOPIC' => 'Off-topic',
|
||||
'OTHER' => 'Other'
|
||||
),
|
||||
'DESCRIPTION' => array(
|
||||
'WAREZ' => 'The post contains links to illegal or pirated software',
|
||||
'SPAM' => 'The reported post has for only purpose to advertise for a website or another product',
|
||||
'OFF_TOPIC' => 'The reported post is off topic',
|
||||
'OTHER' => 'The reported post does not fit into any other category, please use the description field'
|
||||
)
|
||||
)
|
||||
);
|
||||
|
||||
?>
|
117
phpBB/language/en/memberlist.php
Normal file
117
phpBB/language/en/memberlist.php
Normal file
|
@ -0,0 +1,117 @@
|
|||
<?php
|
||||
// -------------------------------------------------------------
|
||||
//
|
||||
// $Id$
|
||||
//
|
||||
// FILENAME : memberlist.php [ English ]
|
||||
// STARTED : Sat Dec 16, 2000
|
||||
// COPYRIGHT : © 2001, 2003 phpBB Group
|
||||
// WWW : http://www.phpbb.com/
|
||||
// LICENCE : GPL vs2.0 [ see /docs/COPYING ]
|
||||
//
|
||||
// -------------------------------------------------------------
|
||||
|
||||
// DO NOT CHANGE
|
||||
if (empty($lang))
|
||||
{
|
||||
$lang = array();
|
||||
}
|
||||
|
||||
// DEVELOPERS PLEASE NOTE
|
||||
//
|
||||
// Placeholders can now contain order information, e.g. instead of
|
||||
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||
// translators to re-order the output of data while ensuring it remains correct
|
||||
//
|
||||
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||
// equally where a string contains only two placeholders which are used to wrap text
|
||||
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||
|
||||
$lang += array(
|
||||
'ABOUT_USER' => 'Profile',
|
||||
'ACTIVE_IN_FORUM' => 'Most active forum',
|
||||
'ACTIVE_IN_TOPIC' => 'Most active topic',
|
||||
'ADD_FRIEND' => 'Add friend',
|
||||
'AFTER' => 'After',
|
||||
'AIM' => 'AIM',
|
||||
|
||||
'BEFORE' => 'Before',
|
||||
|
||||
'CC_EMAIL' => 'Send a copy of this email to yourself',
|
||||
'CONTACT_USER' => 'Contact',
|
||||
|
||||
'DEST_LANG' => 'Language',
|
||||
'DEST_LANG_EXPLAIN' => 'Select an appropriate language (if available) for the recipient of this message.',
|
||||
|
||||
'EMAIL_BODY_EXPLAIN' => 'This message will be sent as plain text, do not include any HTML or BBCode. The return address for this message will be set to your email address.',
|
||||
'EMAIL_DISABLED' => 'Sorry but all email related functions have been disabled.',
|
||||
'EMAIL_SENT' => 'The email has been sent.',
|
||||
'EMAIL_TOPIC_EXPLAIN' => 'This message will be sent as plain text, do not include any HTML or BBCode. Please note that the topic information is already included in the message. The return address for this message will be set to your email address.',
|
||||
'EMPTY_ADDRESS_EMAIL' => 'You must provide a valid email address for the recipient.',
|
||||
'EMPTY_MESSAGE_EMAIL' => 'You must enter a message to be emailed.',
|
||||
'EMPTY_NAME_EMAIL' => 'You must enter the real name of the recipient.',
|
||||
'EMPTY_SUBJECT_EMAIL' => 'You must specify a subject for the email.',
|
||||
'EQUAL_TO' => 'Equal to',
|
||||
|
||||
'FIND_USERNAME_EXPLAIN' => 'Use this form to search for specific members. You do not need to fill out all fields. To match partial data use * as a wildcard. When entering dates use the format yyyy-mm-dd, e.g. 2002-01-01. Use the mark checkboxes to select one or more usernames (several usernames may be accepted depending on the form itself). Alternatively you can mark the users required and click the Insert Marked button.',
|
||||
'FLOOD_EMAIL_LIMIT' => 'You cannot send another email at this time. Please try again later.',
|
||||
|
||||
'ICQ' => 'ICQ',
|
||||
'IM_ADD_CONTACT' => 'Add Contact',
|
||||
'IM_AIM' => 'Please note that you need AOL Instant Messenger installed to use this.',
|
||||
'IM_AIM_EXPRESS' => 'AIM Express',
|
||||
'IM_DOWNLOAD_APP' => 'Download Application',
|
||||
'IM_ICQ' => 'Please note that users may have elected to not receive unsolicited instant messages.',
|
||||
'IM_JABBER' => 'Please note that users may have elected to not receive unsolicited instant messages.',
|
||||
'IM_JABBER_SUBJECT' => 'This is an automated message please do not reply! Message from user %1$s at %2$s',
|
||||
'IM_MESSAGE' => 'Your Message',
|
||||
'IM_MSN' => 'Please note that you need Windows Messenger installed to use this.',
|
||||
'IM_NAME' => 'Your Name',
|
||||
'IM_NO_JABBER' => 'Sorry, direct messaging of Jabber users is not supported on this server. You will need a Jabber client installed on your system to contact the recipient above.',
|
||||
'IM_RECIPIENT' => 'Recipient',
|
||||
'IM_SEND' => 'Send Message',
|
||||
'IM_SEND_MESSAGE' => 'Send Message',
|
||||
'IM_SENT_JABBER' => 'Your message to %1$s has been sent successfully.',
|
||||
|
||||
'JABBER' => 'Jabber',
|
||||
|
||||
'LAST_ACTIVE' => 'Last active',
|
||||
'LESS_THAN' => 'Less than',
|
||||
'LIST_USER' => '1 User',
|
||||
'LIST_USERS' => '%d Users',
|
||||
|
||||
'MORE_THAN' => 'More than',
|
||||
'MSNM' => 'MSNM',
|
||||
|
||||
'NO_EMAIL' => 'You are not permitted to send email to this user.',
|
||||
'NO_VIEW_USERS' => 'You are not authorised to view the member list or profiles.',
|
||||
|
||||
'ORDER' => 'Order',
|
||||
|
||||
'POST_IP' => 'Posted from IP/domain',
|
||||
|
||||
'RANK' => 'Rank',
|
||||
'REAL_NAME' => 'Recipient Name',
|
||||
'RECIPIENT' => 'Recipient',
|
||||
|
||||
'SEARCH_USER_POSTS' => 'Search users posts',
|
||||
'SELECT_MARKED' => 'Select Marked',
|
||||
'SELECT_SORT_METHOD' => 'Select sort method',
|
||||
'SEND_EMAIL' => 'Email',
|
||||
'SEND_IM' => 'Instant Messaging',
|
||||
'SEND_MESSAGE' => 'Message',
|
||||
'SORT_EMAIL' => 'Email',
|
||||
'SORT_LAST_ACTIVE' => 'Last active',
|
||||
'SORT_POST_COUNT' => 'Post count',
|
||||
|
||||
'USER_FORUM' => 'Forum statistics',
|
||||
'USER_ONLINE' => 'Online',
|
||||
'USER_PRESENCE' => 'Forum presence',
|
||||
|
||||
'VIEWING_PROFILE' => 'Profile view',
|
||||
'VISITED' => 'Last visited',
|
||||
|
||||
'YIM' => 'YIM'
|
||||
);
|
||||
|
||||
?>
|
184
phpBB/language/en/posting.php
Normal file
184
phpBB/language/en/posting.php
Normal file
|
@ -0,0 +1,184 @@
|
|||
<?php
|
||||
// -------------------------------------------------------------
|
||||
//
|
||||
// $Id$
|
||||
//
|
||||
// FILENAME : posting.php [ English ]
|
||||
// STARTED : Sat Dec 16, 2000
|
||||
// COPYRIGHT : © 2001, 2003 phpBB Group
|
||||
// WWW : http://www.phpbb.com/
|
||||
// LICENCE : GPL vs2.0 [ see /docs/COPYING ]
|
||||
//
|
||||
// -------------------------------------------------------------
|
||||
|
||||
// DO NOT CHANGE
|
||||
if (empty($lang))
|
||||
{
|
||||
$lang = array();
|
||||
}
|
||||
|
||||
// DEVELOPERS PLEASE NOTE
|
||||
//
|
||||
// Placeholders can now contain order information, e.g. instead of
|
||||
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||
// translators to re-order the output of data while ensuring it remains correct
|
||||
//
|
||||
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||
// equally where a string contains only two placeholders which are used to wrap text
|
||||
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||
|
||||
$lang += array(
|
||||
'ADD_ATTACHMENT' => 'Add an Attachment',
|
||||
'ADD_ATTACHMENT_EXPLAIN' => 'If you wish to attach one or more files enter the details below',
|
||||
'ADD_FILE' => 'Add File',
|
||||
'ADD_POLL' => 'Add Poll',
|
||||
'ADD_POLL_EXPLAIN' => 'If you do not want to add a poll to your topic leave the fields blank',
|
||||
'ALREADY_DELETED' => 'Sorry but this message is already deleted.',
|
||||
'ATTACHMENT_PHP_SIZE_NA' => 'The attachment is too big.<br />Could not get determine the maximum size defined by PHP in php.ini.',
|
||||
'ATTACHMENT_PHP_SIZE_OVERRUN' => 'The attachment is too big, maximum upload size is %d MB.<br />Please note this is set in php.ini and cannot be overriden.',
|
||||
'ATTACHMENT_TOO_BIG' => 'The attachment is too big, maximum allowed size is %1d %2s',
|
||||
'ATTACH_QUOTA_REACHED' => 'Sorry, the board attachment quota has been reached.',
|
||||
'ATTACH_SIG' => 'Attach a signature (signatures can be altered via the UCP)',
|
||||
|
||||
'BBCODE_A_HELP' => 'Close all open bbCode tags',
|
||||
'BBCODE_B_HELP' => 'Bold text: [b]text[/b] (alt+b)',
|
||||
'BBCODE_C_HELP' => 'Code display: [code]code[/code] (alt+c)',
|
||||
'BBCODE_E_HELP' => 'List: Add list element',
|
||||
'BBCODE_F_HELP' => 'Font size: [size=x-small]small text[/size]',
|
||||
'BBCODE_IS_OFF' => '%sBBCode%s is <u>OFF</u>',
|
||||
'BBCODE_IS_ON' => '%sBBCode%s is <u>ON</u>',
|
||||
'BBCODE_I_HELP' => 'Italic text: [i]text[/i] (alt+i)',
|
||||
'BBCODE_L_HELP' => 'List: [list]text[/list] (alt+l)',
|
||||
'BBCODE_O_HELP' => 'Ordered list: [list=]text[/list] (alt+o)',
|
||||
'BBCODE_P_HELP' => 'Insert image: [img]http://image_url[/img] (alt+p)',
|
||||
'BBCODE_Q_HELP' => 'Quote text: [quote]text[/quote] (alt+q)',
|
||||
'BBCODE_S_HELP' => 'Font color: [color=red]text[/color] Tip: you can also use color=#FF0000',
|
||||
'BBCODE_U_HELP' => 'Underline text: [u]text[/u] (alt+u)',
|
||||
'BBCODE_W_HELP' => 'Insert URL: [url]http://url[/url] or [url=http://url]URL text[/url] (alt+w)',
|
||||
'BUMP_ERROR' => 'You cannot bump this topic so soon after the last post.',
|
||||
|
||||
'CANNOT_DELETE_REPLIED' => 'Sorry but you may only delete posts which have not been replied to.',
|
||||
'CANNOT_EDIT_POST_LOCKED' => 'This post has been locked. You can no longer edit that post.',
|
||||
'CANNOT_EDIT_TIME' => 'You can no longer edit or delete that post',
|
||||
'CANNOT_POST_ANNOUNCE' => 'Sorry but you cannot post announcements.',
|
||||
'CANNOT_POST_NEWS' => 'Sorry but you cannot post news topics.',
|
||||
'CANNOT_POST_STICKY' => 'Sorry but you cannot post sticky topics.',
|
||||
'CHANGE_TOPIC_TO' => 'Change topic type to',
|
||||
'CLOSE_TAGS' => 'Close Tags',
|
||||
'CLOSE_WINDOW' => 'Close Window',
|
||||
'CURRENT_TOPIC' => 'Current Topic',
|
||||
|
||||
'DAYS' => 'Days',
|
||||
'DELETE_FILE' => 'Delete File',
|
||||
'DELETE_MESSAGE' => 'Delete Message',
|
||||
'DELETE_OWN_POSTS' => 'Sorry but you can only delete your own posts.',
|
||||
'DELETE_POST' => 'Delete',
|
||||
'DELETE_POST_WARN' => 'Once deleted the post cannot be recovered',
|
||||
'DISABLE_BBCODE' => 'Disable BBCode',
|
||||
'DISABLE_HTML' => 'Disable HTML',
|
||||
'DISABLE_MAGIC_URL' => 'Do not automatically parse URLs',
|
||||
'DISABLE_SMILIES' => 'Disable Smilies',
|
||||
'DISALLOWED_EXTENSION' => 'The Extension %s is not allowed',
|
||||
'DRAFT_LOADED' => 'Draft loaded into posting area, you may want to finish your post now.<br />Your Draft will be deleted after submitting this post.',
|
||||
'DRAFT_SAVED' => 'Draft successfully saved.',
|
||||
'DRAFT_TITLE' => 'Draft Title',
|
||||
|
||||
'EDIT_POST' => 'Edit',
|
||||
'EDIT_REASON' => 'Reason for editing this post',
|
||||
'EMOTICONS' => 'Emoticons',
|
||||
'EMPTY_MESSAGE' => 'You must enter a message when posting.',
|
||||
'ERROR_IMAGESIZE' => 'The Image you tried to attach is too big, maximum allowed dimensions are %1d px X %2d px.',
|
||||
|
||||
'FLASH_IS_OFF' => '[flash] is <u>ON</u>',
|
||||
'FLASH_IS_ON' => '[flash] is <u>ON</u>',
|
||||
'FLOOD_ERROR' => 'You cannot make another post so soon after your last.',
|
||||
'FONT_COLOR' => 'Font color',
|
||||
'FONT_HUGE' => 'Huge',
|
||||
'FONT_LARGE' => 'Large',
|
||||
'FONT_NORMAL' => 'Normal',
|
||||
'FONT_SIZE' => 'Font size',
|
||||
'FONT_SMALL' => 'Small',
|
||||
'FONT_TINY' => 'Tiny',
|
||||
|
||||
'GENERAL_UPLOAD_ERROR' => 'Could not upload Attachment to %s',
|
||||
|
||||
'HTML_IS_OFF' => 'HTML is <u>OFF</u>',
|
||||
'HTML_IS_ON' => 'HTML is <u>ON</u>',
|
||||
|
||||
'IMAGES_ARE_OFF' => '[img] is <u>OFF</u>',
|
||||
'IMAGES_ARE_ON' => '[img] is <u>ON</u>',
|
||||
'INFORMATION' => 'Information',
|
||||
'INVALID_FILENAME' => '%s is an invalid filename',
|
||||
|
||||
'KARMA_LEVEL' => 'Karma Level',
|
||||
|
||||
'LOAD' => 'Load',
|
||||
'LOAD_DRAFT' => 'Load Draft',
|
||||
'LOAD_DRAFT_EXPLAIN' => 'Here you are able to select the draft you want to continue writing. Your current post will be canceled, all current post contents will be deleted. View, edit and delete drafts within your User Control Panel.',
|
||||
|
||||
'MESSAGE_BODY_EXPLAIN' => 'Enter your message here, it may contain no more than <b>%d</b> characters.',
|
||||
'MORE_EMOTICONS' => 'View more Emoticons',
|
||||
|
||||
'NOTIFY_REPLY' => 'Send me an email when a reply is posted',
|
||||
'NO_DELETE_POLL_OPTIONS' => 'You cannot delete existing poll options',
|
||||
'NO_POLL_TITLE' => 'You have to enter a poll title',
|
||||
'NO_POST' => 'The requested post does not exist.',
|
||||
'NO_POST_MODE' => 'No post mode specified',
|
||||
|
||||
'PLACE_INLINE' => 'Place Inline',
|
||||
'POLL_DELETE' => 'Delete Poll',
|
||||
'POLL_FOR' => 'Run poll for',
|
||||
'POLL_FOR_EXPLAIN' => 'Enter 0 or leave blank for a never ending poll',
|
||||
'POLL_MAX_OPTIONS' => 'Options per user',
|
||||
'POLL_MAX_OPTIONS_EXPLAIN' => 'This is the number of options each user may select when voting.',
|
||||
'POLL_OPTIONS' => 'Poll options',
|
||||
'POLL_OPTIONS_EXPLAIN' => 'Place each option on a new line. You may enter up to <b>%d</b> options',
|
||||
'POLL_QUESTION' => 'Poll question',
|
||||
'POSTED_ATTACHMENTS' => 'Posted attachments',
|
||||
'POST_ANNOUNCEMENT' => 'Announce',
|
||||
'POST_DELETED' => 'Your message has been deleted successfully',
|
||||
'POST_GLOBAL' => 'Global',
|
||||
'POST_ICON' => 'Post icon',
|
||||
'POST_NORMAL' => 'Normal',
|
||||
'POST_REPLY' => 'Post a reply',
|
||||
'POST_REVIEW' => 'Post Review',
|
||||
'POST_REVIEW_EXPLAIN' => 'At least one new post has been made to this topic. You may wish to review your post inlight of this.',
|
||||
'POST_STICKY' => 'Sticky',
|
||||
'POST_STORED' => 'Your message has been posted successfully',
|
||||
'POST_STORED_MOD' => 'Your message has been saved but requires approval',
|
||||
'POST_TOPIC' => 'Post a new topic',
|
||||
'POST_TOPIC_AS' => 'Post topic as',
|
||||
|
||||
'QUOTE_DEPTH_EXCEEDED' => 'You may embed only %1$d quotes within each other.',
|
||||
|
||||
'SAVE' => 'Save',
|
||||
'SAVE_DATE' => 'Saved at',
|
||||
'SMILIES_ARE_OFF' => 'Smilies are <u>OFF</u>',
|
||||
'SMILIES_ARE_ON' => 'Smilies are <u>ON</u>',
|
||||
'STICKY_ANNOUNCE_TIME_LIMIT'=> 'Sticky/Announcement time limit',
|
||||
'STICK_TOPIC_FOR' => 'Stick topic for',
|
||||
'STICK_TOPIC_FOR_EXPLAIN' => 'Enter 0 or leave blank for a never ending Sticky/Announcement',
|
||||
'STYLES_TIP' => 'Tip: Styles can be applied quickly to selected text',
|
||||
|
||||
'TOO_FEW_CHARS' => 'Your message contains too few characters.',
|
||||
'TOO_FEW_POLL_OPTIONS' => 'You must enter at least two poll options',
|
||||
'TOO_MANY_ATTACHMENTS' => 'Cannot add another attacment, %d is the maxmimum.',
|
||||
'TOO_MANY_CHARS' => 'Your message contains too many characters.',
|
||||
'TOO_MANY_POLL_OPTIONS' => 'You have tried to enter too many poll options',
|
||||
'TOO_MANY_SMILIES' => 'Your message contains too many emoticons.',
|
||||
'TOO_MANY_USER_OPTIONS' => 'You cannot specify more Options per User than existing poll options',
|
||||
'TOPIC_BUMPED' => 'Topic has been bumped successfully',
|
||||
'TOPIC_REVIEW' => 'Topic review',
|
||||
|
||||
'UNAUTHORISED_BBCODE' => 'You cannot use certain bbcodes: ',
|
||||
'UPDATE_COMMENT' => 'Update comment',
|
||||
'USER_CANNOT_BUMP' => 'You cannot bump topics in this forum',
|
||||
'USER_CANNOT_DELETE' => 'You cannot delete posts in this forum',
|
||||
'USER_CANNOT_EDIT' => 'You cannot edit posts in this forum',
|
||||
'USER_CANNOT_QUOTE' => 'You cannot quote posts in this forum',
|
||||
'USER_CANNOT_REPLY' => 'You cannot reply in this forum',
|
||||
|
||||
'VIEW_MESSAGE' => 'Click %sHere%s to view your message',
|
||||
);
|
||||
|
||||
?>
|
78
phpBB/language/en/search.php
Normal file
78
phpBB/language/en/search.php
Normal file
|
@ -0,0 +1,78 @@
|
|||
<?php
|
||||
// -------------------------------------------------------------
|
||||
//
|
||||
// $Id$
|
||||
//
|
||||
// FILENAME : search.php [ English ]
|
||||
// STARTED : Sat Dec 16, 2000
|
||||
// COPYRIGHT : © 2001, 2003 phpBB Group
|
||||
// WWW : http://www.phpbb.com/
|
||||
// LICENCE : GPL vs2.0 [ see /docs/COPYING ]
|
||||
//
|
||||
// -------------------------------------------------------------
|
||||
|
||||
// DO NOT CHANGE
|
||||
if (empty($lang))
|
||||
{
|
||||
$lang = array();
|
||||
}
|
||||
|
||||
// DEVELOPERS PLEASE NOTE
|
||||
//
|
||||
// Placeholders can now contain order information, e.g. instead of
|
||||
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||
// translators to re-order the output of data while ensuring it remains correct
|
||||
//
|
||||
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||
// equally where a string contains only two placeholders which are used to wrap text
|
||||
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||
|
||||
$lang += array(
|
||||
'ALL_AVAILABLE' => 'All available',
|
||||
'ALL_RESULTS' => 'All results',
|
||||
|
||||
'DISPLAY_RESULTS' => 'Display results as',
|
||||
|
||||
'FOUND_SEARCH_MATCH' => 'Search found %d match',
|
||||
'FOUND_SEARCH_MATCHES' => 'Search found %d matches',
|
||||
|
||||
'IGNORED_TERMS' => 'ignored',
|
||||
|
||||
'NO_RECENT_SEARCHES' => 'No searches have been carried out recently',
|
||||
'NO_SEARCH' => 'Sorry but you are not permitted to use the search system.',
|
||||
'NO_SEARCH_RESULTS' => 'No suitable matches were found.',
|
||||
'NO_SEARCH_TIME' => 'Sorry but you cannot use search at this time. Please try again in a few minutes.',
|
||||
|
||||
'POST_CHARACTERS' => 'characters of posts',
|
||||
|
||||
'RECENT_SEARCHES' => 'Recent searches',
|
||||
'RESULT_DAYS' => 'Limit results to previous',
|
||||
'RESULT_SORT' => 'Sort results by',
|
||||
'RETURN_FIRST' => 'Return first',
|
||||
|
||||
'SEARCHED_FOR' => 'Search term used',
|
||||
'SEARCH_ALL_TERMS' => 'Search for all terms or use query as entered',
|
||||
'SEARCH_ANY_TERMS' => 'Search for any terms',
|
||||
'SEARCH_AUTHOR' => 'Search for Author',
|
||||
'SEARCH_AUTHOR_EXPLAIN' => 'Use * as a wildcard for partial matches',
|
||||
'SEARCH_FORUMS' => 'Search in forums',
|
||||
'SEARCH_FORUMS_EXPLAIN' => 'Select the forum or forums you wish to search in. For speed all subforums can be searched by selecting the parent and setting enable search subforums below.',
|
||||
'SEARCH_IN_RESULTS' => 'Search these results',
|
||||
'SEARCH_KEYWORDS' => 'Search for Keywords',
|
||||
'SEARCH_KEYWORDS_EXPLAIN' => 'Use <b>+</b> for words which must be found, <b>-</b> for words which must not be found and <b>|</b> for words which may or may not be found. Use * as a wildcard for partial matches',
|
||||
'SEARCH_MSG_ONLY' => 'Message text only',
|
||||
'SEARCH_OPTIONS' => 'Search Options',
|
||||
'SEARCH_QUERY' => 'Search Query',
|
||||
'SEARCH_SUBFORUMS' => 'Search subforums',
|
||||
'SEARCH_TITLE_MSG' => 'Topic titles and message text',
|
||||
'SEARCH_TITLE_ONLY' => 'Topic titles only',
|
||||
'SEARCH_WITHIN' => 'Search within',
|
||||
'SORT_ASCENDING' => 'Ascending',
|
||||
'SORT_AUTHOR' => 'Author',
|
||||
'SORT_DESCENDING' => 'Descending',
|
||||
'SORT_FORUM' => 'Forum',
|
||||
'SORT_POST_SUBJECT' => 'Post Subject',
|
||||
'SORT_TIME' => 'Post Time',
|
||||
);
|
||||
|
||||
?>
|
235
phpBB/language/en/ucp.php
Normal file
235
phpBB/language/en/ucp.php
Normal file
|
@ -0,0 +1,235 @@
|
|||
<?php
|
||||
// -------------------------------------------------------------
|
||||
//
|
||||
// $Id$
|
||||
//
|
||||
// FILENAME : ucp.php [ English ]
|
||||
// STARTED : Sat Dec 16, 2000
|
||||
// COPYRIGHT : © 2001, 2003 phpBB Group
|
||||
// WWW : http://www.phpbb.com/
|
||||
// LICENCE : GPL vs2.0 [ see /docs/COPYING ]
|
||||
//
|
||||
// -------------------------------------------------------------
|
||||
|
||||
// DO NOT CHANGE
|
||||
if (empty($lang))
|
||||
{
|
||||
$lang = array();
|
||||
}
|
||||
|
||||
// DEVELOPERS PLEASE NOTE
|
||||
//
|
||||
// Placeholders can now contain order information, e.g. instead of
|
||||
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||
// translators to re-order the output of data while ensuring it remains correct
|
||||
//
|
||||
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||
// equally where a string contains only two placeholders which are used to wrap text
|
||||
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||
$lang += array(
|
||||
'ACCOUNT_ACTIVE' => 'Your account has now been activated. Thank you for registering',
|
||||
'ACCOUNT_ACTIVE_ADMIN' => 'The account has now been activated',
|
||||
'ACCOUNT_ADDED' => 'Thank you for registering, your account has been created. You may now login with your username and password',
|
||||
'ACCOUNT_COPPA' => 'Your account has been created but has to be approved, please check your email for details.',
|
||||
'ACCOUNT_INACTIVE' => 'Your account has been created. However, this forum requires account activation, an activation key has been sent to the email address you provided. Please check your email for further information',
|
||||
'ACCOUNT_INACTIVE_ADMIN' => 'Your account has been created. However, this forum requires account activation by the administrator. An email has been sent to them and you will be informed when your account has been activated',
|
||||
'ADD_FOES' => 'Add new foes',
|
||||
'ADD_FOES_EXPLAIN' => 'You may enter several usernames each on a different line',
|
||||
'ADD_FRIENDS' => 'Add new friends',
|
||||
'ADD_FRIENDS_EXPLAIN' => 'You may enter several usernames each on a different line',
|
||||
'ADMIN_EMAIL' => 'Administrators can email me information',
|
||||
'AGREE' => 'I agree to these terms',
|
||||
'ALLOW_PM' => 'Allow users to send you private messages',
|
||||
'ALLOW_PM_EXPLAIN' => 'Note that admins and moderators will always be able to send you messages.',
|
||||
'ALREADY_ACTIVATED' => 'You have already activated your account',
|
||||
'ATTACHMENTS_DELETED' => 'Attachments successfully deleted',
|
||||
'ATTACHMENT_DELETED' => 'Attachment successfully deleted',
|
||||
'AVATAR_CATEGORY' => 'Category',
|
||||
'AVATAR_EXPLAIN' => 'Maximum dimensions; width %1$d pixels, height %2$d pixels, filesize %3$dkB.',
|
||||
'AVATAR_GALLERY' => 'Local gallery',
|
||||
'AVATAR_PAGE' => 'Page',
|
||||
|
||||
'BACK_TO_DRAFTS' => 'Back to saved drafts',
|
||||
'BIRTHDAY' => 'Birthday',
|
||||
'BIRTHDAY_EXPLAIN' => 'Setting a year will list your age when it is your birthday.',
|
||||
'BOARD_DATE_FORMAT' => 'My date format',
|
||||
'BOARD_DATE_FORMAT_EXPLAIN' => 'The syntax used is identical to the PHP <a href=\"http://www.php.net/date\" target=\"_other\">date()</a> function',
|
||||
'BOARD_DST' => 'Daylight Saving Time is in effect',
|
||||
'BOARD_LANGUAGE' => 'My language',
|
||||
'BOARD_STYLE' => 'My board style',
|
||||
'BOARD_TIMEZONE' => 'My timezone',
|
||||
|
||||
'CHANGE_PASSWORD' => 'Change password',
|
||||
'CHANGE_PASSWORD_EXPLAIN' => 'Must be between %1$d and %2$d characters.',
|
||||
'CONFIRMATION' => 'Confirmation of registration',
|
||||
'CONFIRM_CODE' => 'Confirmation code',
|
||||
'CONFIRM_CODE_EXPLAIN' => 'Enter the code exactly as you see it in the image, it is case sensitive, zero has a diagonal line through it.',
|
||||
'CONFIRM_CODE_WRONG' => 'The confirmation code you entered was incorrect.',
|
||||
'CONFIRM_DELETE_ATTACHMENT' => 'Are you sure you want to delete this attachment?',
|
||||
'CONFIRM_DELETE_ATTACHMENTS'=> 'Are you sure you want to delete these attachments?',
|
||||
'CONFIRM_EMAIL' => 'Confirm email address',
|
||||
'CONFIRM_EMAIL_EXPLAIN' => 'You only need to specify this if you are changing your email address.',
|
||||
'CONFIRM_EXPLAIN' => 'To prevent automated registrations the board administrator requires you to enter a confirmation code. The code is displayed in the image you should see below. If you are visually impaired or cannot otherwise read this code please contact the %sBoard Administrator%s.',
|
||||
'CONFIRM_PASSWORD' => 'Confirm password',
|
||||
'CONFIRM_PASSWORD_EXPLAIN' => 'You only need to confirm your password if you changed it above',
|
||||
'COPPA_BIRTHDAY' => 'To continue with the registration procedure please tell us when you were born.',
|
||||
'COPPA_COMPLIANCE' => 'COPPA Compliance',
|
||||
'COPPA_EXPLAIN' => 'Please note that clicking submit will create your account. However it cannot be activated until a parent or guardian approves your registration. You will be emailed a copy of the necessary form with details of where to send it.',
|
||||
'CURRENT_IMAGE' => 'Current Image',
|
||||
'CURRENT_PASSWORD' => 'Current password',
|
||||
'CURRENT_PASSWORD_EXPLAIN' => 'You must confirm your current password if you wish to change it, alter your email address or username.',
|
||||
'CUR_PASSWORD_ERROR' => 'The current password you entered is incorrect.',
|
||||
|
||||
'DEFAULT_ADD_SIG' => 'Attach my signature by default',
|
||||
'DEFAULT_BBCODE' => 'Enable BBCode by default',
|
||||
'DEFAULT_HTML' => 'Enable HTML by default',
|
||||
'DEFAULT_NOTIFY' => 'Notify me upon replies by default',
|
||||
'DEFAULT_SMILE' => 'Enable smilies by default',
|
||||
'DELETE_ALL' => 'Delete all',
|
||||
'DELETE_AVATAR' => 'Delete Image',
|
||||
'DELETE_MARKED' => 'Delete Marked',
|
||||
'DISABLE_CENSORS' => 'Enable Word censoring',
|
||||
'DISPLAY_GALLERY' => 'Display gallery',
|
||||
'DOWNLOADS' => 'Downloads',
|
||||
'DRAFTS_DELETED' => 'All selected drafts were successfully deleted.',
|
||||
'DRAFTS_EXPLAIN' => 'Here you can view, edit and delete your saved drafts.',
|
||||
'DRAFT_UPDATED' => 'Draft successfully updated.',
|
||||
|
||||
'EDIT_DRAFT_EXPLAIN' => 'Here you are able to edit your draft.',
|
||||
'EMAIL_REMIND' => 'This must be the email address you supplied when registering.',
|
||||
'EMPTY_DRAFT' => 'You must enter a message to submit your changes',
|
||||
'EMPTY_DRAFT_TITLE' => 'You must enter a draft title',
|
||||
|
||||
'FOES_EXPLAIN' => 'Foes are users which will be ignored by default. Posts by these users will not be fully visible and personal messages will not be permitted. Please note that you cannot ignore moderators or administrators.',
|
||||
'FOES_UPDATED' => 'Your foes list has been updated successfully',
|
||||
'FRIENDS' => 'Friends',
|
||||
'FRIENDS_EXPLAIN' => 'Friends enable you quick access to members you communicate with frequently. If the template has relevant support any posts made by a friend may be highlighted.',
|
||||
'FRIENDS_OFFLINE' => 'Offline',
|
||||
'FRIENDS_ONLINE' => 'Online',
|
||||
'FRIENDS_UPDATED' => 'Your friends list has been updated successfully',
|
||||
|
||||
'HIDE_ONLINE' => 'Hide my online status',
|
||||
|
||||
'IMPORTANT_NEWS' => 'Important announcements',
|
||||
|
||||
'LANGUAGE' => 'Language',
|
||||
'LINK_REMOTE_AVATAR' => 'Link off-site',
|
||||
'LINK_REMOTE_AVATAR_EXPLAIN'=> 'Enter the URL of the location containing the Avatar image you wish to link to.',
|
||||
'LINK_REMOTE_SIZE' => 'Avatar dimensions',
|
||||
'LINK_REMOTE_SIZE_EXPLAIN' => 'Specify the width and height of the avatar, leave blank to attempt automatic verification.',
|
||||
'LOGIN_REDIRECT' => 'You have been successfully logged in.',
|
||||
'LOGOUT_REDIRECT' => 'You have been successfully logged out.',
|
||||
|
||||
'MINIMUM_KARMA' => 'Minimum User Karma',
|
||||
'MINIMUM_KARMA_EXPLAIN' => 'Posts by users with Karma less than this will be ignored.',
|
||||
|
||||
'NEW_EMAIL_ERROR' => 'The email addresses you entered do not match.',
|
||||
'NEW_PASSWORD' => 'Password',
|
||||
'NEW_PASSWORD_ERROR' => 'The passwords you entered do not match.',
|
||||
'NEW_PASSWORD_EXPLAIN' => 'Must be between %1$d and %2$d characters.',
|
||||
'NOTIFY_METHOD' => 'Notification method',
|
||||
'NOTIFY_METHOD_BOTH' => 'Both',
|
||||
'NOTIFY_METHOD_EMAIL' => 'Email only',
|
||||
'NOTIFY_METHOD_EXPLAIN' => 'Method for sending messages sent via this board.',
|
||||
'NOTIFY_METHOD_IM' => 'Jabber only',
|
||||
'NOTIFY_ON_PM' => 'Email me on new private messages',
|
||||
'NOT_AGREE' => 'I do not agree to these terms',
|
||||
'NO_FOES' => 'No foes currently defined',
|
||||
'NO_FRIENDS' => 'No friends currently defined',
|
||||
'NO_FRIENDS_OFFLINE' => 'No friends offline',
|
||||
'NO_FRIENDS_ONLINE' => 'No friends online',
|
||||
'NO_WATCHED_FORUMS' => 'You are not watching any forums.',
|
||||
'NO_WATCHED_TOPICS' => 'You are not watching any topics.',
|
||||
|
||||
'PASSWORD_ACTIVATED' => 'Your new password has been activated',
|
||||
'PASSWORD_UPDATED' => 'Your password has been sent successfully to your original email address.',
|
||||
'PM_DISABLED' => 'Private messaging has been disabled on this board',
|
||||
'POPUP_ON_PM' => 'Pop up window on new private message',
|
||||
'PREFERENCES_UPDATED' => 'Your preferences have been updated.',
|
||||
'PROFILE_INFO_NOTICE' => 'Please note that this information will be viewable to other members. Be careful when including any personal details. Any fields marked with a * must be completed.',
|
||||
'PROFILE_UPDATED' => 'Your profile has been updated.',
|
||||
|
||||
'REGISTRATION' => 'Registration',
|
||||
'RETURN_PAGE' => 'Click %sHere%s to return to the previous page',
|
||||
'RETURN_UCP' => 'Click %sHere%s to return to the User Control Panel',
|
||||
|
||||
'SEARCH_YOUR_POSTS' => 'Show your posts',
|
||||
'SEND_PASSWORD' => 'Send password',
|
||||
'SHOW_EMAIL' => 'Users can contact me by email',
|
||||
'SIGNATURE_EXPLAIN' => 'This is a block of text that can be added to posts you make. There is a %d character limit',
|
||||
'SIGNATURE_PREVIEW' => 'Your signature will appear like this in posts',
|
||||
'SIGNATURE_TOO_LONG' => 'Your signature is too long.',
|
||||
'SORT' => 'Sort',
|
||||
'SORT_COMMENT' => 'File Comment',
|
||||
'SORT_DOWNLOADS' => 'Downloads',
|
||||
'SORT_EXTENSION' => 'Extension',
|
||||
'SORT_FILENAME' => 'Filename',
|
||||
'SORT_POST_TIME' => 'Post Time',
|
||||
'SORT_SIZE' => 'Filesize',
|
||||
|
||||
'TIMEZONE' => 'Timezone',
|
||||
'TOO_MANY_REGISTERS' => 'You have exceeded the maximum number of registration attempts for this session. Please try again later.',
|
||||
|
||||
'UCP' => 'User Control Panel',
|
||||
'UCP_ADMIN_ACTIVATE' => 'Please note that you will need to enter a valid email address before your account is activated. The administrator will review your account and if approved you will an email at the address you specified.',
|
||||
'UCP_AGREEMENT' => 'While the administrators and moderators of this forum will attempt to remove or edit any generally objectionable material as quickly as possible, it is impossible to review every message. Therefore you acknowledge that all posts made to these forums express the views and opinions of the author and not the administrators, moderators or webmaster (except for posts by these people) and hence will not be held liable.<br /><br />You agree not to post any abusive, obscene, vulgar, slanderous, hateful, threatening, sexually-orientated or any other material that may violate any applicable laws. Doing so may lead to you being immediately and permanently banned (and your service provider being informed). The IP address of all posts is recorded to aid in enforcing these conditions. You agree that the webmaster, administrator and moderators of this forum have the right to remove, edit, move or close any topic at any time should they see fit. As a user you agree to any information you have entered above being stored in a database. While this information will not be disclosed to any third party without your consent the webmaster, administrator and moderators cannot be held responsible for any hacking attempt that may lead to the data being compromised.<br /><br />This forum system uses cookies to store information on your local computer. These cookies do not contain any of the information you have entered above, they serve only to improve your viewing pleasure. The email address is used only for confirming your registration details and password (and for sending new passwords should you forget your current one).<br /><br />By clicking Register below you agree to be bound by these conditions.',
|
||||
'UCP_AIM' => 'AOL Instant Messenger',
|
||||
'UCP_AVATAR' => 'Your avatar',
|
||||
'UCP_COPPA_BEFORE' => 'Before %s',
|
||||
'UCP_COPPA_ON_AFTER' => 'On or After %s',
|
||||
'UCP_DRAFTS' => 'Saved drafts',
|
||||
'UCP_EMAIL_ACTIVATE' => 'Please note that you will need to enter a valid email address before your account is activated. You will recieve an email at the address you provide that contains an account activation link.',
|
||||
'UCP_FOES' => 'Foes',
|
||||
'UCP_FRIENDS' => 'Friends',
|
||||
'UCP_FRONT' => 'Front page',
|
||||
'UCP_ICQ' => 'ICQ Number',
|
||||
'UCP_JABBER' => 'Jabber Address',
|
||||
'UCP_MAIN' => 'Overview',
|
||||
'UCP_MSNM' => 'MSN Messenger',
|
||||
'UCP_NO_ATTACHMENTS' => 'You have posted no files',
|
||||
'UCP_OPTIONS' => 'Options',
|
||||
'UCP_PERSONAL' => 'Personal Settings',
|
||||
'UCP_POST' => 'Posting Messages',
|
||||
'UCP_PREFS' => 'Preferences',
|
||||
'UCP_PROFILE' => 'Profile',
|
||||
'UCP_PROFILE_INFO' => 'Your Profile',
|
||||
'UCP_REG_DETAILS' => 'Registration details',
|
||||
'UCP_SIGNATURE' => 'Your signature',
|
||||
'UCP_VIEW' => 'Viewing Posts',
|
||||
'UCP_WATCHED' => 'Watched items',
|
||||
'UCP_WELCOME' => 'Welcome to the User Control Panel. From here you can monitor, view and update your profile, preferences, subscribed forums and topics. You can also send messages to other users (if permitted). Please ensure you read any announcements before continuing.',
|
||||
'UCP_YIM' => 'Yahoo Messenger',
|
||||
'UCP_ZEBRA' => 'Friends and Foes',
|
||||
'UNWATCH_MARKED' => 'Unwatch marked',
|
||||
'UPLOAD_AVATAR_FILE' => 'Upload from your machine',
|
||||
'UPLOAD_AVATAR_URL' => 'Upload from a URL',
|
||||
'UPLOAD_AVATAR_URL_EXPLAIN' => 'Enter the URL of the location containing the image, it will be copied to this site.',
|
||||
'USERNAME_ALPHA_ONLY_EXPLAIN' => 'Username must be between %1$d and %2$d chars long and use only alphanumeric characters',
|
||||
'USERNAME_ALPHA_SPACERS_EXPLAIN'=> 'Username must be between %1$d and %2$d chars long and use alphanumeric, space or -+_[] characters.',
|
||||
'USERNAME_CHARS_ANY_EXPLAIN'=> 'Length must be between %1$d and %2$d characters.',
|
||||
'USERNAME_TAKEN_USERNAME' => 'The username you entered is already in use, please select an alternative.',
|
||||
|
||||
'VIEW_AVATARS' => 'Display Avatars',
|
||||
'VIEW_EDIT' => 'View/Edit',
|
||||
'VIEW_FLASH' => 'Display Flash animations',
|
||||
'VIEW_IMAGES' => 'Display Images within posts',
|
||||
'VIEW_SIGS' => 'Display Signatures',
|
||||
'VIEW_SMILIES' => 'Display Smileys as images',
|
||||
'VIEW_TOPICS_DAYS' => 'Display topics from previous days',
|
||||
'VIEW_TOPICS_DIR' => 'Display topic order direction',
|
||||
'VIEW_TOPICS_KEY' => 'Display topics ordering by',
|
||||
|
||||
'WATCHED_FORUMS' => 'Watched Forums',
|
||||
'WATCHED_TOPICS' => 'Watched Topics',
|
||||
'WRONG_ACTIVATION' => 'The activation key you supplied does not match any in the database',
|
||||
|
||||
'YOUR_DETAILS' => 'Your activity',
|
||||
'YOUR_FOES' => 'Your foes',
|
||||
'YOUR_FOES_EXPLAIN' => 'To remove usernames select them and click submit',
|
||||
'YOUR_FRIENDS' => 'Your friends',
|
||||
'YOUR_FRIENDS_EXPLAIN' => 'To remove usernames select them and click submit',
|
||||
'YOUR_KARMA' => 'Your Karma level',
|
||||
'YOUR_WARNINGS' => 'Your Warning level',
|
||||
);
|
||||
|
||||
?>
|
51
phpBB/language/en/viewforum.php
Normal file
51
phpBB/language/en/viewforum.php
Normal file
|
@ -0,0 +1,51 @@
|
|||
<?php
|
||||
// -------------------------------------------------------------
|
||||
//
|
||||
// $Id$
|
||||
//
|
||||
// FILENAME : viewforum.php [ English ]
|
||||
// STARTED : Sat Dec 16, 2000
|
||||
// COPYRIGHT : © 2001, 2003 phpBB Group
|
||||
// WWW : http://www.phpbb.com/
|
||||
// LICENCE : GPL vs2.0 [ see /docs/COPYING ]
|
||||
//
|
||||
// -------------------------------------------------------------
|
||||
|
||||
// DO NOT CHANGE
|
||||
if (empty($lang))
|
||||
{
|
||||
$lang = array();
|
||||
}
|
||||
|
||||
// DEVELOPERS PLEASE NOTE
|
||||
//
|
||||
// Placeholders can now contain order information, e.g. instead of
|
||||
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||
// translators to re-order the output of data while ensuring it remains correct
|
||||
//
|
||||
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||
// equally where a string contains only two placeholders which are used to wrap text
|
||||
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||
|
||||
$lang += array(
|
||||
'ANNOUNCEMENTS' => 'Announcements',
|
||||
|
||||
'LOGIN_NOTIFY_FORUM' => 'You have been notified about this forum, please login to view it.',
|
||||
|
||||
'MARK_TOPICS_READ' => 'Mark Topics Read',
|
||||
|
||||
'NEW_POSTS_HOT' => 'New posts [ Popular ]',
|
||||
'NEW_POSTS_LOCKED' => 'New posts [ Locked ]',
|
||||
'NO_NEW_POSTS_HOT' => 'No new posts [ Popular ]',
|
||||
'NO_NEW_POSTS_LOCKED' => 'No new posts [ Locked ]',
|
||||
|
||||
'POST_FORUM_LOCKED' => 'Forum is locked',
|
||||
'POST_NEW_TOPIC' => 'Post new topic',
|
||||
|
||||
'TOPICS_MARKED' => 'The topics for this forum have now been marked read',
|
||||
|
||||
'VIEW_FORUM_TOPIC' => '1 Topic',
|
||||
'VIEW_FORUM_TOPICS' => '%d Topics',
|
||||
);
|
||||
|
||||
?>
|
104
phpBB/language/en/viewtopic.php
Normal file
104
phpBB/language/en/viewtopic.php
Normal file
|
@ -0,0 +1,104 @@
|
|||
<?php
|
||||
// -------------------------------------------------------------
|
||||
//
|
||||
// $Id$
|
||||
//
|
||||
// FILENAME : viewtopic.php [ English ]
|
||||
// STARTED : Sat Dec 16, 2000
|
||||
// COPYRIGHT : © 2001, 2003 phpBB Group
|
||||
// WWW : http://www.phpbb.com/
|
||||
// LICENCE : GPL v2.0 [ see /docs/COPYING ]
|
||||
//
|
||||
// -------------------------------------------------------------
|
||||
|
||||
// DO NOT CHANGE
|
||||
if (empty($lang))
|
||||
{
|
||||
$lang = array();
|
||||
}
|
||||
|
||||
// DEVELOPERS PLEASE NOTE
|
||||
//
|
||||
// Placeholders can now contain order information, e.g. instead of
|
||||
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||
// translators to re-order the output of data while ensuring it remains correct
|
||||
//
|
||||
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||
// equally where a string contains only two placeholders which are used to wrap text
|
||||
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||
|
||||
$lang += array(
|
||||
'ATTACHMENT' => 'Attachment',
|
||||
|
||||
'BUMPED_BY' => 'Last bumped by %1$s on %2$s',
|
||||
'BUMP_TOPIC' => 'Bump Topic',
|
||||
|
||||
'CODE' => 'Code',
|
||||
|
||||
'DELETE_TOPIC' => 'Delete Topic',
|
||||
'DOWNLOAD_NOTICE' => 'You do not have the required permissions to view the files attached to this post.',
|
||||
|
||||
'EDITED_TIMES_TOTAL' => 'Last edited by %1$s on %2$s, edited %3$d times in total',
|
||||
'EDITED_TIME_TOTAL' => 'Last edited by %1$s on %2$s, edited %3$d time in total',
|
||||
'EMAIL_TOPIC' => 'Email Friend',
|
||||
'ERROR_NO_ATTACHMENT' => 'The selected Attachment does not exist anymore',
|
||||
|
||||
'FILE_NOT_FOUND_404' => 'The file <b>%s</b> does not exist.',
|
||||
'FORK_TOPIC' => 'Copy Topic',
|
||||
|
||||
'LINKAGE_FORBIDDEN' => 'You are not authorized to view, download or link from/to this Site.',
|
||||
'LOGIN_NOTIFY_TOPIC' => 'You have been notified about this topic, please login to view it.',
|
||||
'LOGIN_VIEWTOPIC' => 'The board administrator requires you to be registered and logged in to view this topic.',
|
||||
|
||||
'MAKE_ANNOUNCE' => 'Make Announce',
|
||||
'MAKE_GLOBAL' => 'Make Global',
|
||||
'MAKE_NORMAL' => 'Make Normal',
|
||||
'MAKE_STICKY' => 'Make Sticky',
|
||||
'MAX_OPTIONS_SELECT' => 'You may select up to <b>%d</b> options',
|
||||
'MAX_OPTION_SELECT' => 'You may select <b>1</b> option',
|
||||
'MISSING_INLINE_ATTACHMENT' => 'The Attachment <b>%s</b> is no longer available',
|
||||
'MOVE_TOPIC' => 'Move Topic',
|
||||
|
||||
'NO_ATTACHMENT_SELECTED'=> 'You haven\'t selected an attachment to download or view.',
|
||||
'NO_NEWER_TOPICS' => 'There are no newer topics in this forum',
|
||||
'NO_OLDER_TOPICS' => 'There are no older topics in this forum',
|
||||
'NO_UNREAD_POSTS' => 'There are no new unread posts for this topic.',
|
||||
'NO_VOTE_OPTION' => 'You must specify an option when voting.',
|
||||
|
||||
'POLL_RUN_TILL' => 'Poll runs till %s',
|
||||
'POLL_VOTED_OPTION' => 'You voted for this option',
|
||||
'POST_BELOW_KARMA' => 'This post was made by <b>%1$s</b> whose karma rating of <b>%2$d</b> is below your desired minimum. To display this post click %3$sHERE%4$s.',
|
||||
'POST_ENCODING' => 'This post by <b>%1$s</b> was made in a character set different to yours. To view this post in its proper encoding click %2$sHERE%3$s.',
|
||||
'PRINT_TOPIC' => 'Print View',
|
||||
|
||||
'QUICK_MOD' => 'Quick-mod tools',
|
||||
'QUOTE' => 'Quote',
|
||||
|
||||
'RATE' => 'Rate',
|
||||
'RATE_BAD' => 'Bad',
|
||||
'RATE_GOOD' => 'Good',
|
||||
'RATING_ADDED' => 'Your rating for this poster has been saved.',
|
||||
'RATING_UPDATED' => 'Your existing rating for this poster has been updated',
|
||||
'REPLY_TO_TOPIC' => 'Reply to topic',
|
||||
'RETURN_POST' => 'Click %sHere%s to return to the post',
|
||||
|
||||
'SUBMIT_VOTE' => 'Submit Vote',
|
||||
|
||||
'TOTAL_VOTES' => 'Total Votes',
|
||||
|
||||
'UNLOCK_TOPIC' => 'Unlock Topic',
|
||||
|
||||
'VIEW_IP' => 'IP',
|
||||
'VIEW_NEXT_TOPIC' => 'Next topic',
|
||||
'VIEW_PREVIOUS_TOPIC' => 'Previous topic',
|
||||
'VIEW_RESULTS' => 'View Results',
|
||||
'VIEW_TOPIC_POST' => '1 Post',
|
||||
'VIEW_TOPIC_POSTS' => '%d Posts',
|
||||
'VIEW_UNREAD_POST' => 'First unread post',
|
||||
'VISIT_WEBSITE' => 'WWW',
|
||||
'VOTE_SUBMITTED' => 'Your vote has been cast',
|
||||
|
||||
'WROTE' => 'wrote',
|
||||
);
|
||||
|
||||
?>
|
|
@ -842,7 +842,7 @@ function return_link($msg, $url)
|
|||
// Start session management
|
||||
$user->start();
|
||||
$auth->acl($user->data);
|
||||
$user->setup();
|
||||
$user->setup('mcp');
|
||||
|
||||
$mcp = new module();
|
||||
|
||||
|
|
|
@ -19,6 +19,9 @@ include($phpbb_root_path . 'includes/functions_admin.'.$phpEx);
|
|||
include($phpbb_root_path . 'includes/functions_posting.'.$phpEx);
|
||||
include($phpbb_root_path . 'includes/message_parser.'.$phpEx);
|
||||
|
||||
$lang_set = array(
|
||||
'file' => array('posting')
|
||||
);
|
||||
|
||||
// Start session management
|
||||
$user->start();
|
||||
|
@ -125,7 +128,7 @@ if ($sql)
|
|||
|
||||
$post_edit_locked = (int) $post_edit_locked;
|
||||
|
||||
$user->setup(false, $forum_style);
|
||||
$user->setup('posting', $forum_style);
|
||||
|
||||
if ($forum_password)
|
||||
{
|
||||
|
|
|
@ -19,7 +19,7 @@ include($phpbb_root_path . 'common.'.$phpEx);
|
|||
// Start session management
|
||||
$user->start();
|
||||
$auth->acl($user->data);
|
||||
$user->setup();
|
||||
$user->setup('mcp');
|
||||
|
||||
// var definitions
|
||||
$post_id = (!empty($_REQUEST['p'])) ? intval($_REQUEST['p']) : 0;
|
||||
|
|
|
@ -48,7 +48,7 @@ $sort_dir = (!empty($_REQUEST['sd'])) ? htmlspecialchars($_REQUEST['sd']) : 'd';
|
|||
// Start session management
|
||||
$user->start();
|
||||
$auth->acl($user->data);
|
||||
$user->setup();
|
||||
$user->setup('search');
|
||||
|
||||
// Is user able to search? Has search been disabled?
|
||||
if (!$auth->acl_get('u_search') || !$config['load_search'])
|
||||
|
|
|
@ -60,13 +60,13 @@
|
|||
<!-- END IMAGE -->
|
||||
|
||||
<!-- BEGIN THUMBNAIL -->
|
||||
<span class="gensmall"><b>{L_COMMENT}:</b> {COMMENT}</span><hr />
|
||||
<span class="gensmall"><b>{L_FILE_COMMENT}:</b> {COMMENT}</span><hr />
|
||||
<a href="{U_DOWNLOAD_LINK}" target="_blank"><img src="{THUMB_IMG}" alt="{DOWNLOAD_NAME}" border="0" /></a></span><br clear="all" />
|
||||
<span class="gensmall">{DOWNLOAD_NAME} - {L_DOWNLOADED_VIEWED} {L_DOWNLOAD_COUNT}</span>
|
||||
<!-- END THUMBNAIL -->
|
||||
|
||||
<!-- BEGIN FILE -->
|
||||
<span class="gensmall"><b>{L_COMMENT}:</b> {COMMENT}</span><hr />
|
||||
<span class="gensmall"><b>{L_FILE_COMMENT}:</b> {COMMENT}</span><hr />
|
||||
<span class="postbody">{UPLOAD_IMG} <a href="{U_DOWNLOAD_LINK}" target="_blank">{DOWNLOAD_NAME}</a> - {FILESIZE} {SIZE_VAR}</span><br clear="all" />
|
||||
<span class="gensmall">{L_DOWNLOADED_VIEWED} {L_DOWNLOAD_COUNT}</span>
|
||||
<!-- END FILE -->
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<!-- INCLUDE overall_header.html -->
|
||||
|
||||
<!-- $Id$ -->
|
||||
|
||||
<a name="Top"></a>
|
||||
<div id="pagecontent">
|
||||
|
||||
<table class="tablebg" width="100%" cellspacing="1">
|
||||
|
|
|
@ -223,7 +223,7 @@ class module
|
|||
// Start session management
|
||||
$user->start();
|
||||
$auth->acl($user->data);
|
||||
$user->setup();
|
||||
$user->setup('ucp');
|
||||
|
||||
$ucp = new module();
|
||||
|
||||
|
|
|
@ -102,7 +102,7 @@ if ($forum_data['forum_link'])
|
|||
}
|
||||
|
||||
// Configure style, language, etc.
|
||||
$user->setup(false, $forum_data['forum_style']);
|
||||
$user->setup('viewforum', $forum_data['forum_style']);
|
||||
|
||||
// Forum is passworded ... check whether access has been granted to this
|
||||
// user this session, if not show login box
|
||||
|
|
|
@ -84,7 +84,7 @@ if ($view && !$post_id)
|
|||
if (!($row = $db->sql_fetchrow($result)))
|
||||
{
|
||||
// Setup user environment so we can process lang string
|
||||
$user->setup();
|
||||
$user->setup('viewtopic');
|
||||
|
||||
meta_refresh(3, "viewtopic.$phpEx$SID&f=$forum_id&t=$topic_id");
|
||||
$message = $user->lang['NO_UNREAD_POSTS'] . '<br /><br />' . sprintf($user->lang['RETURN_TOPIC'], "<a href=\"viewtopic.$phpEx$SID&f=$forum_id&t=$topic_id\">", '</a>');
|
||||
|
@ -196,7 +196,7 @@ if (($topic_type == POST_STICKY || $topic_type == POST_ANNOUNCE) && $topic_time_
|
|||
}
|
||||
|
||||
// Setup look and feel
|
||||
$user->setup(false, $forum_style);
|
||||
$user->setup('viewtopic', $forum_style);
|
||||
|
||||
if (!$topic_approved && !$auth->acl_get('m_approve', $forum_id))
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue