1. While running web2py navigate to: http://localhost:8000/admin/default/design/admin
2. >From the controller default.py copy the method edit_language() into default.py of your application (myapp). 3. At the beginning of default.py of myapp add: from gluon.utils import * from gluon.admin import * 4. Copy the file: web2py/applications/admin/views/default/ edit_language.html to: web2py/applications/myapp/views/default/edit_language.html 5. At the address: http://...../myapp/default/edit_language/myapp/languages/xx.py is possible to translate into xx language.

