1

我正在使用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| %>

有关图片的更多详细信息:

作为客人提供

I18n::InvalidPluralizationData in Spree/checkout#update_registration

但我的 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} ошибок не позволяют сохранить запись в базе"
4

2 回答 2

2

我认为这与以下问题有关: https ://github.com/spree/spree_i18n/pull/88

你能看看这是否:A)解决你的问题,B)验证俄语(假设它是你的母语)

于 2012-06-26T02:45:43.163 回答
-2

一切看起来都不错,您可以检查 ru.yml 的正确对齐/缩进,也许有错位的空格或制表符

于 2012-06-25T16:41:20.823 回答