Missing things after updating.

Submitted by Reiji Kurosaky, Feb 2007.
Page: 3
Pages: [1] [2] [3]
Lets take another example:

In phpBB 2.0.18 they included this and in 2.0.19 they added a new part to the code of the lang_english/lang_admin.php:
Code:
  1. // Autologin Keys - added 2.0.18  
  2. $lang['Allow_autologin'] = 'Allow automatic logins';  
  3. $lang['Allow_autologin_explain'] = 'Determines whether users are allowed to select to be automatically logged in when visiting the forum';  
  4. $lang['Autologin_time'] = 'Automatic login key expiry';  
  5. $lang['Autologin_time_explain'] = 'How long a autologin key is valid for in days if the user does not visit the board. Set to zero to disable expiry.';  
So if you updated to 2.0.18 and use another language other than english (spanish again for this example), you will se missing parts of the forum content...so you´ll need to repeat the proccess but this time doing this:
Code:
  1. #  
  2. #-----[ OPEN ]------------------------------------------  
  3. #  
  4. language/lang_english/lang_admin.php  
  5.  
  6. #  
  7. #-----[ FIND & COPY ]------------------------------------------  
  8. #  
  9.  
  10. // Autologin Keys - added 2.0.18  
  11. $lang['Allow_autologin'] = 'Allow automatic logins';  
  12. $lang['Allow_autologin_explain'] = 'Determines whether users are allowed to select to be automatically logged in when visiting the forum';  
  13. $lang['Autologin_time'] = 'Automatic login key expiry';  
  14. $lang['Autologin_time_explain'] = 'How long a autologin key is valid for in days if the user does not visit the board. Set to zero to disable expiry.';  
  15.  
  16. #  
  17. #-----[ OPEN ]------------------------------------------  
  18. #  
  19. language/lang_spanish/lang_admin.php  
  20.  
  21. #  
  22. #-----[ FIND ]------------------------------------------  
  23. #  
  24.  
  25. ?>  
  26.  
  27. #  
  28. #-----[ BEFORE ADD ]------------------------------------------  
  29. #  
  30.  
  31. // Autologin Keys - added 2.0.18  
  32. $lang['Allow_autologin'] = 'Permitir Ingresos Automáticos';  
  33. $lang['Allow_autologin_explain'] = 'Determina si los usuarios están permitidos a seleccionar si quieren estar automáticamente loggeados cuando visiten el foro.';  
  34. $lang['Autologin_time'] = 'Tiempo de expiración del Autoingreso';  
  35. $lang['Autologin_time_explain'] = 'Cuanto tiempo es válido el autoingreso para los usuarios en días si el usuario no visita el foro. Déjelo en cero (0) para desactivar la expiración.';  
  36.  
  37.  
Its basically just copying the new thing AND translating it to your language.
Page: 3
Pages: [1] [2] [3]

Share this tutorial

If you want to show this tutorial to someone else please use following code to link to this tutorial:
HTML Link:
Forum BBCode:
Content of this tutorial may not be published anywhere else without author's permission. Please link to this page instead.