gpt4 book ai didi

ruby-on-rails - 定位图像的最佳方法

转载 作者:行者123 更新时间:2023-12-04 00:18:42 25 4
gpt4 key购买 nike

在 i18n rails 应用程序中本地化图像(按钮和其他内容)的最佳方法是什么?

最佳答案

我通常在每个路径或图像名称中注入(inject)语言环境名称。
在第一种情况下,为不同的语言环境创建不同的文件夹

/public/images/en/file.png
/public/images/it/file.png

image_tag("#{I18n.locale}/file.png")

在第二种情况下
/public/images/file.it.png
/public/images/file.en.png

image_tag("file.#{I18n.locale}.png")

我通常更喜欢第二种解决方案,因为有很多 Assets 我不需要本地化,而且我经常需要将翻译/公共(public) Assets 保存在同一个文件夹中,以利用约定优于配置模式。

关于ruby-on-rails - 定位图像的最佳方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1253468/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com