mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-11 19:24:01 +02:00
- forum administration (now working and modified for easier handling the different forum types [UI])
- Changed += for arrays into array_merge. We do not want to append, we want to merge. ;) git-svn-id: file:///svn/phpbb/trunk@5330 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
*
|
||||
* ucp [English]
|
||||
*
|
||||
* @package phpBB3
|
||||
* @package language
|
||||
* @version $Id$
|
||||
* @copyright (c) 2005 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
||||
@@ -27,7 +27,7 @@ if (empty($lang) || !is_array($lang))
|
||||
// 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(
|
||||
$lang = array_merge($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',
|
||||
@@ -464,6 +464,6 @@ $lang += array(
|
||||
'QUIT_MARKED' => 'Quit marked',
|
||||
'JOIN_ALL' => 'Join all',
|
||||
'JOIN_MARKED' => 'Join marked',
|
||||
);
|
||||
));
|
||||
|
||||
?>
|
||||
|
Reference in New Issue
Block a user