MyBB Community Forums

Full Version: what is the {$lang->} for this
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
what is the {$lang->} or $l['.......'] = "......"; for this error :

...is already registered by another member


in this page /member.php?action=register whene we use a username that belong to an already registred member

thank you
$lang->error_alreadyregistered in member.lang.php file
where i can find that (error) in templates ?

thank you
^ that is not available on templates - let us know what you are trying to get ...
can you tell me plz which template contains " is already registered by another member " i want to change it, thanx
It's not in a template. Language strings are stored in files:

1. Open ./inc/languages/english/xmlhttp.lang.php.

2. In line 28 find:

$l['username_taken'] = "{1} is already registered by another member";

3. Change it to whatever you want. (don't remove {1} though)
(2011-08-07, 05:57 PM)faviouz Wrote: [ -> ]It's not in a template. Language strings are stored in files:

1. Open ./inc/languages/english/xmlhttp.lang.php.

2. In line 28 find:

$l['username_taken'] = "{1} is already registered by another member";

3. Change it to whatever you want. (don't remove {1} though)

the probleme is when i change the language it doesn't get translated

all the errors are translated exept that one and i'm sure it available in that language file, so i need to know which templates contains that "error"
THANK YOU