如何在 Rails 中本地化 file_field 的标签?

发布于 2024-08-22 12:49:07 字数 113 浏览 4 评论 0原文

我想本地化我的应用程序中的表单,以便所有标签都是芬兰语。对于所有其他表单组件来说这很容易,但是如何使用文件字段来做到这一点?它似乎总是在按钮中给我一个标签“选择文件”,并在按钮之后立即给我一个标签“未选择文件”。

I want to localize a form in my app so that all the labels are in Finnish. This is easy with all other form components, but how do I do this with a file field? It always seems to give me a label "choose file" in the button and "no file chosen" immediately after the button.

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

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

发布评论

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

评论(1

唐婉 2024-08-29 12:49:07

这个哑文件字段仅取决于您的系统区域设置。你无法改变它的外观或行为方式,这让我们许多人感到烦恼,更不用说它在不同平台上看起来完全不同的事实。

要解决这个问题,您可以选择:

  1. 使用闪存解决方案,例如
    SWFUpload等
  2. 使用的是Javascript+CSS
    解决方案(有很多,
    例如这个

This dumb file field depends only on your system locale. You cannot change way it looks or behaves, which annoys many of us, not to mention the fact that it can look completely different across different platforms.

To fight the problem you have options:

  1. use a flash solution like
    SWFUpload, etc.
  2. use a Javascript + CSS
    solution (there are many of them,
    e.g. this one)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文