fix inflections

irregular sollte bei inflections genutzt werden
This commit is contained in:
Andreas Stephanides
2013-08-18 20:48:45 +02:00
parent 51f59bcd83
commit d17b911809
2 changed files with 60 additions and 4 deletions

View File

@@ -16,19 +16,22 @@
ActiveSupport::Inflector.inflections do |inflect|
inflect.plural 'studium', 'studien'
inflect.singular 'studien', 'studium'
inflect.plural 'neuigkeit', 'neuigkeiten'
inflect.singular 'neuigkeiten', 'neuigkeit'
inflect.irregular 'studium', 'studien'
inflect.irregular 'neuigkeit', 'neuigkeiten'
#inflect.irregular 'neuigkeiten', 'neuigkeit'
inflect.plural 'modulgruppe', 'modulgruppen'
inflect.singular 'modulgruppen', 'modulgruppe'
inflect.irregular 'modulgruppe', 'modulgruppen'
inflect.plural 'rubrik', 'rubriken'
inflect.singular 'rubriken', 'rubrik'
inflect.irregular 'rubrik', 'rubriken'
inflect.plural 'beispiel', 'beispiele'
inflect.singular 'beispiele', 'beispiel'
inflect.plural 'themengruppe', 'themengruppen'
inflect.singular 'themengruppen', 'themengruppe'
inflect.irregular 'themengruppe', 'themengruppen'
inflect.plural /thema$/, 'themen'
inflect.singular /themen$/, 'thema'
inflect.irregular 'thema', 'themen'
inflect.plural 'frage', 'fragen'
inflect.singular 'fragen', 'frage'
inflect.irregular 'frage', 'fragen'
end