切换网站语言
我计划开发一个使用两种语言的网站,而不是制作单独的 html,一种语言为“a”,另一种语言为“b”,我想知道你有什么推荐?如果我想更改像buttonNames这样的变量的值而不是设计一个单独的东西,我应该注意什么?
或者我应该设计两个 html,一个用于语言“a”的动态 Web 模板,一个用于语言“b”的动态 Web 模板?
谢谢!
到目前为止,我正在使用 html、javascript/jquery,我不需要任何数据库访问或其他东西,它基本上是一个信息丰富的网页。没有登录等。
I'm planning on developing a website that uses two languages, instead of making separate htmls one in language "a" and one in language "b", I wanted to know what do you recommend? What should I be looking at if I want to change the value of the variables like buttonNames instead of designing a separate thing?
Or should I be designing two htmls, one dynamic web template for language "a" and one dynamic web template for language "b"?
Thanks!
So far I'm using html, javascript/jquery, I don't need any database access or something, it's basically an informative webpage. No login etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的问题很主观。在大多数实际情况下,您最终会存储 2 个不同的 HTML 副本。有些人可能对内容有不同的抽象,也许正在使用内容管理系统,但在某个地方您有一个语言 1 的字符串,而另一个则代表您支持的每种其他语言。
您可以通过以下方式更轻松地支持多种语言:
Your question is very subjective. In most practical cases you end up storing 2 distinct copies of the HTML. Some people may have different abstractions for the content, perhaps if a content management system is in use but somewhere you have a string in language 1 and another for each other language you support.
You can make supporting multiple languages easier by: