Plurals in rails mailer don't work with TextHelper

76 Views Asked by At

I'm trying to pluralize a word in the subject of a rails mailer :

these two don't working :

subject: "Réservation pour #{pluralize(@step.number_of_people.to_i, "personne")}"
subject: "Réservation pour #{pluralize(@step.number_of_people.to_i, "personne", locale: :fr)}"

but these two are working :

subject: "Réservation pour #{pluralize(@step.number_of_people.to_i, "personne", plural: 'personnes')}"
subject: "Réservation pour #{@step.number_of_people.to_i} #{"personne".pluralize(@step.number_of_people.to_i)}"

inflections.rb :

module Inflections
  ActiveSupport::Inflector.inflections(:fr) do |inflect|

    inflect.plural(/$/, 's')
    inflect.singular(/s$/, '')

    inflect.plural(/(bijou|caillou|chou|genou|hibou|joujou|pou|au|eu|eau)$/, '\1x')
    inflect.singular(/(bijou|caillou|chou|genou|hibou|joujou|pou|au|eu|eau)x$/, '\1')

    inflect.plural(/(bleu|émeu|landau|lieu|pneu|sarrau)$/, '\1s')
    inflect.plural(/al$/, 'aux')
    inflect.plural(/ail$/, 'ails')
    inflect.singular(/(journ|chev)aux$/, '\1al')
    inflect.singular(/ails$/, 'ail')

    inflect.plural(/(b|cor|ém|gemm|soupir|trav|vant|vitr)ail$/, '\1aux')
    inflect.singular(/(b|cor|ém|gemm|soupir|trav|vant|vitr)aux$/, '\1ail')

    inflect.plural(/(s|x|z)$/, '\1')

    inflect.irregular('monsieur', 'messieurs')
    inflect.irregular('madame', 'mesdames')
    inflect.irregular('mademoiselle', 'mesdemoiselles')
  end
end
0

There are 0 best solutions below