rails-i18n

    3熱度

    1回答

    我有一個Rails應用程序依賴於單獨的引擎(存儲在vendor/engine_name)。發動機有一個ActiveRecord對象Bar: module Foo class Bar < ActiveRecord::Base # has an attribute bar_attr end end 在發動機的config/locales/en.yml文件,我已經試過

    0熱度

    2回答

    我有一個表格,並驗證如下所示: Create - Nom/titre de votre objet doit être rempli(e) - Catégorie doit être rempli(e) - Description doit être rempli(e) 我想Create翻譯成別的東西。我怎樣才能做到這一點 ? 我猜我可以在fr.yml添加如下內容: activereco

    0熱度

    1回答

    我想根據以下網站製作我的Rails3.2應用程序i18n,並在URL路徑中包含區域設置參數。 (http://www.wordchuck.com/en/website/blogs/5) 我實現 scope ':locale' do resources :nodes end 等方法 def set_locale I18n.locale = params[:locale] i

    1熱度

    2回答

    我正在使用github.com/fnando/i18n-js gem進行JavaScript翻譯。我注意到當我查看源頁面並檢查翻譯.js時,它會加載完整的翻譯文件,即使該頁面只使用一個翻譯詞。 任何想法JavaScript如何加載當前頁面所需的翻譯,而不是加載完整的文件。

    0熱度

    1回答

    我加入了人性化的貨幣,存取如下所述:Decimals and commas when entering a number into a Ruby on Rails form 現在我已經在我的模型的兩個屬性爲相同的數據類型:原始版本和人類可讀的版本。問題:由於我使用的是activerecord-translation-yml-files,因此我必須對原始屬性和humanized_attribute進

    0熱度

    1回答

    如何翻譯默認submit_tag按鈕文字?我能翻譯f.submit因爲如此,但這並不對不處理的對象的形式工作,如密碼重置: en: helpers: submit: user: create: "Sign up" password_resets: # doesn't work as password_resets uses form_tag

    8熱度

    1回答

    在默認情況下,邀請郵件的主題是 mailer: invitation_instructions: subject: 'Invitation instructions' 我想將其更改爲 subject: '%{invited_by} has invited you!' 但是這需要有invited_by變量訪問的翻譯方法爲i18n。 如何在不更改默認行爲的情況下訪問/聲

    0熱度

    1回答

    我用的滑軌國際化,所以我的網址似乎是這樣的: http://localhost:3000/dashboard/index?locale=es 我有GET方法的形式追加雪人蔘數去的網址: http://localhost:3000/dashboard/index?locale=es?utf8=%E2%9C%93&dateregistration=2013-06-20 代替: http://l

    0熱度

    1回答

    很新的Ruby和Rails,所以它可能是一個愚蠢的問題;) 我試圖得到一個「國際化」路線與「admin」的命名空間的工作。 所以,我的路由文件看起來像 scope '/:locale' do root 'admin#index', as: :root namespace :admin do resources :foos end end 在我的Appl

    3熱度

    1回答

    階段: 我有一個Rails 3.2的應用程序,我將添加到我的Gemfile: gem 'rails-i18n' 然後我執行bundle install。 在視圖中我請求I18N消息,例如: <%= l Time.now, format: :short %> 和config/initializers/locate.rb,我設置默認定位: I18n.default_locale = :es