2015-08-10 11:05:06 +02:00
|
|
|
# Be sure to restart your server when you modify this file.
|
|
|
|
|
|
|
|
# Add new inflection rules using the following format. Inflections
|
|
|
|
# are locale specific, and you may define rules for as many different
|
|
|
|
# locales as you wish. All of these examples are active by default:
|
2015-08-13 15:55:19 +02:00
|
|
|
ActiveSupport::Inflector.inflections(:en) do |inflect|
|
|
|
|
# inflect.plural /^(ox)$/i, '\1en'
|
|
|
|
# inflect.singular /^(ox)en/i, '\1'
|
|
|
|
# inflect.irregular 'person', 'people'
|
|
|
|
# inflect.uncountable %w( fish sheep )
|
2015-08-17 15:53:35 +02:00
|
|
|
inflect.acronym 'API'
|
2015-12-11 10:36:16 +01:00
|
|
|
inflect.acronym 'RNA'
|
2015-09-21 17:59:03 +02:00
|
|
|
inflect.irregular 'piece_justificative', 'pieces_justificatives'
|
|
|
|
inflect.irregular 'type_de_piece_justificative', 'types_de_piece_justificative'
|
2015-11-05 11:21:44 +01:00
|
|
|
inflect.irregular 'type_de_champ', 'types_de_champ'
|
2016-08-03 18:19:56 +02:00
|
|
|
inflect.irregular 'type_de_champ_private', 'types_de_champ_private'
|
2016-05-20 15:39:17 +02:00
|
|
|
inflect.irregular 'assign_to', 'assign_tos'
|
2018-02-14 11:25:54 +01:00
|
|
|
inflect.uncountable(['avis', 'pays'])
|
2015-08-13 15:55:19 +02:00
|
|
|
end
|
2015-08-10 11:05:06 +02:00
|
|
|
|
2017-07-04 17:14:59 +02:00
|
|
|
# From https://github.com/davidcelis/inflections
|
2017-01-30 15:17:45 +01:00
|
|
|
ActiveSupport::Inflector.inflections(:fr) do |inflect|
|
2017-07-04 17:14:59 +02:00
|
|
|
inflect.clear
|
|
|
|
|
2017-01-30 15:17:45 +01:00
|
|
|
inflect.plural(/$/, 's')
|
2017-07-04 17:14:59 +02:00
|
|
|
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')
|
2017-01-30 15:17:45 +01:00
|
|
|
end
|