t some_translation_key僅在some_translation_key處於第一級時纔會發現,即en.some_translation_key。我想,這將在任何級別找到一個翻譯的方法,那就是: en:
level1:
level2:
some_translation_key: 'The translation of some translation
我有一個名爲「StoryPresenter」的類,它充當我的模型對象(名爲「Story」類的一個實例)的包裝,並幫助將模型的數據呈現給我的視圖。 StoryPresenter的實例包含一個故事的一個實例,以及下面的方法: def state
if story.school_state_territory.blank?
""
else
" | #{ story
我在我的應用程序中使用了Services,這不是「標準」應用程序組件之一。 比方說,我有一個規範的測試如下 要求「rails_helper」 # spec/services/create_user.rb
RSpec.describe CreateUser, type: :service do
it "returns the error message" do
error_me
我使用Rails的國際化,我注意到,對於個月零必須輸入(如文檔在這裏提到:https://github.com/rails/rails/blob/master/activesupport/lib/active_support/locale/en.yml#L15_)是這樣的: month_names: [~, January, February, March, April, May, June, J