Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何翻译我系统的登录页面
通过使用这个网址:http://ip:8000/init/default/user/login
默认显示两个文本框用户名和密码我如何翻译这些标签。
提前致谢
在模型数据库的底部,您可以执行以下操作:
db.auth_user.username.label=T("username") db.auth_user.password.label=T("password")
然后通过管理界面创建单击[设计] [语言] 创建一个语言文件,如“fr-fr.py”,我将为您提供一个翻译“用户名”和“密码”的界面。
当访问者将浏览器设置为“fr-fr”时,访问者将看到翻译后的标签。