实施全球化ư
我对使用全球化文件和会话[“lang”]在asp.net MVC中进行全球化感到好奇,
会话lang可以很容易地设置和更改,但这里的问题是全球化文件。
我应该做什么以及如何实现这个目标?
非常感谢
PS:我在 Google 和此处搜索了一些解决方案,但很可能使用 asp.net mvc,我们需要为 EN、JP、FR 创建另一个 VIEW 文件夹,这可能会在将来造成很多麻烦改变设计。
实际上,它的意思是翻译:->切换语言之类的
im curious about doing Globalization in asp.net MVC with globalization File and a Session["lang"]
the session lang can be setup quite easy to change, but the problem here is the Globalization File.
What should i do and how should i do to implement this?
Thank you very much
PS: I've search on Google and here for some solution but most likely with asp.net mvc we need to create another VIEW folder for EN, JP, FR, and this can cause a lot of trouble in the future to change the design.
Actually, it's mean translation: -> switching languages, something like that
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
codeproject.com 上有一篇关于 l10n 和 i18n 的文章。对于单纯的翻译(= 本地化),它建议资源文件(这对于 .NET 应用程序来说很常见)或数据库。
您的问题没有明确说明您只想翻译您的项目还是还想将其全球化?!
There's an article on l10n and i18n over at codeproject.com. For mere translation (= localization), it suggests either resource files (which is very common for .NET applications) or a database.
Your question doesn't make clear if you only want to translate your project or also want to globalize it?!