Missing things after updating.
In that example theres a missing thing in the configuration of the admin cp. With an english language you can see the missing part is:
"Enable Visual Confirmation"
Thats an option that was added to phpBB 2.0.16 (or something like that :P) so your language file is missing that part.
When something like this happen, just:
"Enable Visual Confirmation"
Thats an option that was added to phpBB 2.0.16 (or something like that :P) so your language file is missing that part.
When something like this happen, just:
Code:
- #
- #-----[ OPEN ]------------------------------------------
- #
- language/lang_english/lang_admin.php
- #
- #-----[ FIND & COPY ]------------------------------------------
- #
- // Visual Confirmation
- $lang['Visual_confirm'] = 'Enable Visual Confirmation';
- $lang['Visual_confirm_explain'] = 'Requires users enter a code defined by an image when registering.';
- #
- #-----[ OPEN ]------------------------------------------
- #
- language/lang_spanish/lang_admin.php
- #
- #-----[ FIND ]------------------------------------------
- #
- ?>
- #
- #-----[ BEFORE ADD ]------------------------------------------
- #
- // Visual Confirmation
- $lang['Visual_confirm'] = 'Activar Confirmación Visual';
- $lang['Visual_confirm_explain'] = 'Requiere que el usuario ingrese un código definido por una imágen cuando se registre.';
Everytime they release a newer version, you´ll need to do this kind of things (at least on realeases that include a new option or functionality to the board).