获取可用(语言)resx 文件的列表

发布于 2024-08-01 18:55:32 字数 269 浏览 5 评论 0原文

许多程序都有社区,在应用程序发布后向其添加语言。

因此,在程序的设置窗口中,人们可以看到可用语言的下拉列表。 那么,人们在使用 resx 文件进行本地化时如何编码呢? 我在网上搜索了一遍又一遍,但找不到任何答案。

一切都运行良好,但现在,我需要制作一个可用语言的下拉列表。 为了明确起见,我不想每次有人为该程序创建一种新语言时就发布一个新版本..因为如果我必须制作一个可供选择的语言的硬编码列表,那就是我必须做的。

如何获取可用 resx 文件的列表?

Many many programs have communities that adds languages to the application after it got released.

So, in the settings window of a program, people can see a dropdown list of available languages. Well how do people code this while using resx files for localization? I've searched the web over and over again, but couldn't find any answer.

everything is working well, but now, i need to make a dropdown list of available languages. To make it clear, i do not want to release a new version every time someone created a new language for the program.. because that's what i have to do if i have to make a hardcoded list of languages that are available to pick.

How do i get a list of available resx files?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

饮惑 2024-08-08 18:55:32

好吧,即使您可以获得一个列表(我可以通过检查文件系统来猜测),根据您实现本地化的方式,它可能不准确(可能没有提供翻译)您正在寻找的特定 .resx)。

我建议最好的方法是在某个地方(或数据库)的 .config 中。 这样您就可以独立于 .resx 系统禁用语言; 这是不可避免会出现的事情。

Well, even if you could get a list (and you can I guess, by inspecting the filesystem), depending on how you implemented your localisation, it may not be accurate (may have not provided a translation for the specific .resx you're looking for).

I'd suggest the best way to do this is in a .config somewhere (or database). That way you can disable languages independantly of the .resx system; which is something that will inevitably come up.

白龙吟 2024-08-08 18:55:32

您可以以编程方式列出应用程序中可用的文化。 此处描述了该方法

You can programatically list the cultures available in your application. The approach is described here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文