多种语言模型

发布于 2024-12-05 08:40:02 字数 101 浏览 0 评论 0原文

我被要求设计一个多语言应用程序,我需要有关 Rails 最佳方法的建议。

基本上所有的表都有一些不需要的公共字段 需要翻译和其他一些需要翻译的内容。

谢谢

I've been asked to design a multiple language application and I need advice with which is the best approach with Rails.

Basically all the tables have some common fields that doesn't need to
be translated and some others that need translation.

thank you

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

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

发布评论

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

评论(1

澜川若宁 2024-12-12 08:40:02

为此,将使用 gem globalize3。便于使用。

在你的 gemfile 中:

gem 'globalize'

模型:

class Article < ActiveRecord::Base
  translates :title, :text
end

和迁移:

class CreateArticles < ActiveRecord::Migration
  def up
    create_table :articles do |t|
      t.timestamps
    end
    Article.create_translation_table! :title => :string, :text => :text
  end

  def down
    drop_table :articles
    Article.drop_translation_table!
  end
end

并运行

rake db:migrate

For this purpose, will approach gem globalize3. Easy to use.

In your gemfile:

gem 'globalize'

Model:

class Article < ActiveRecord::Base
  translates :title, :text
end

And migration:

class CreateArticles < ActiveRecord::Migration
  def up
    create_table :articles do |t|
      t.timestamps
    end
    Article.create_translation_table! :title => :string, :text => :text
  end

  def down
    drop_table :articles
    Article.drop_translation_table!
  end
end

And run

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