我正在使用Spree。当我使用空内容时,出现以下错误:
I18n::InvalidPluralizationData in Spree/checkout#update_registration
Showing /home/itsnikolay/.rvm/gems/ruby-1.9.3-p194@rails3/gems/spree_core-1.1.0/app/views/spree/shared/_error_messages.html.erb where line #3 raised:
translation data {:one=>"1 ошибка не позволяет сохранить запись в базе", :other=>"%{count} ошибок не позволяют сохранить запись в базе", :many=>"%{count} ошибок не позволяют сохранить запись в базе"} can not be used with :count => 2
Extracted source (around line #3):
1: <% if target && target.errors.any? %>
2: <div id="errorExplanation" class="errorExplanation" data-hook>
3: <h2><%= t(:errors_prohibited_this_record_from_being_saved, :count => target.errors.count) %>:</h2>
4: <p><%= t(:there_were_problems_with_the_following_fields) %>:</p>
5: <ul>
6: <% target.errors.full_messages.each do |msg| %>
有关图片的更多详细信息:
但我的 Gemfile 包含宝石:
gem 'spree_i18n', :git => 'git://github.com/spree/spree_i18n.git'
gem 'russian'
并且 /config/localest/ru.yml 有几行:
errors_prohibited_this_record_from_being_saved:
one: "1 ошибка не позволяет сохранить запись в базе"
other: "%{count} ошибок не позволяют сохранить запись в базе"