Proper inflection for de and nl
This commit is contained in:
parent
4249c91af9
commit
a35b71f68f
@ -289,7 +289,7 @@ GEM
|
|||||||
activerecord (>= 4.2)
|
activerecord (>= 4.2)
|
||||||
request_store (~> 1.1)
|
request_store (~> 1.1)
|
||||||
parallel (1.19.1)
|
parallel (1.19.1)
|
||||||
parser (2.7.0.2)
|
parser (2.7.0.3)
|
||||||
ast (~> 2.4.0)
|
ast (~> 2.4.0)
|
||||||
piwik_analytics (1.0.2)
|
piwik_analytics (1.0.2)
|
||||||
actionpack
|
actionpack
|
||||||
@ -303,7 +303,7 @@ GEM
|
|||||||
coderay (~> 1.1.0)
|
coderay (~> 1.1.0)
|
||||||
method_source (~> 0.9.0)
|
method_source (~> 0.9.0)
|
||||||
public_suffix (4.0.3)
|
public_suffix (4.0.3)
|
||||||
puma (4.3.1)
|
puma (4.3.2)
|
||||||
nio4r (~> 2.0)
|
nio4r (~> 2.0)
|
||||||
rack (2.2.2)
|
rack (2.2.2)
|
||||||
rack-livereload (0.3.17)
|
rack-livereload (0.3.17)
|
||||||
|
@ -47,7 +47,7 @@
|
|||||||
= t '.tags'
|
= t '.tags'
|
||||||
= link_to orgas_path do
|
= link_to orgas_path do
|
||||||
%em.fa.fa-users
|
%em.fa.fa-users
|
||||||
= Orga.model_name.human.pluralize
|
= Orga.model_name.human.pluralize I18n.locale
|
||||||
= link_to versions_path do
|
= link_to versions_path do
|
||||||
%em.fa.fa-history
|
%em.fa.fa-history
|
||||||
= t 'versions.index.title'
|
= t 'versions.index.title'
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
%th(colspan='8')
|
%th(colspan='8')
|
||||||
%h3
|
%h3
|
||||||
%em.fa.fa-users
|
%em.fa.fa-users
|
||||||
= Orga.model_name.human.pluralize @orgas.count
|
= Orga.model_name.human.pluralize @orgas.count, I18n.locale
|
||||||
|
|
||||||
- @orgas.group_by { |orga| orga.region.flag }.each do |code, orgas|
|
- @orgas.group_by { |orga| orga.region.flag }.each do |code, orgas|
|
||||||
%thead
|
%thead
|
||||||
@ -46,7 +46,7 @@
|
|||||||
%th(colspan='8')
|
%th(colspan='8')
|
||||||
%h3
|
%h3
|
||||||
%em.fa.fa-calendar
|
%em.fa.fa-calendar
|
||||||
= Event.model_name.human.pluralize @events.count
|
= Event.model_name.human.pluralize @events.count, I18n.locale
|
||||||
|
|
||||||
- @events.group_by { |event| event.region.flag }.each do |code, events|
|
- @events.group_by { |event| event.region.flag }.each do |code, events|
|
||||||
%thead
|
%thead
|
||||||
|
@ -7,11 +7,11 @@
|
|||||||
%li
|
%li
|
||||||
= link_to orgas_path q: params[:q], page: params[:page] do
|
= link_to orgas_path q: params[:q], page: params[:page] do
|
||||||
%em.fa.fa-li.fa-arrow-left
|
%em.fa.fa-li.fa-arrow-left
|
||||||
= Orga.model_name.human.pluralize
|
= Orga.model_name.human.pluralize I18n.locale
|
||||||
%li
|
%li
|
||||||
= link_to tag_path @orga.name_as_tag do
|
= link_to tag_path @orga.name_as_tag do
|
||||||
%em.fa.fa-li.fa-tag
|
%em.fa.fa-li.fa-tag
|
||||||
= Event.model_name.human.pluralize
|
= Event.model_name.human.pluralize I18n.locale
|
||||||
%li
|
%li
|
||||||
= link_to events_path tag: @orga.name_as_tag do
|
= link_to events_path tag: @orga.name_as_tag do
|
||||||
%em.fa.fa-li.fa-calendar
|
%em.fa.fa-li.fa-calendar
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
%h2
|
%h2
|
||||||
= link_to orgas_path do
|
= link_to orgas_path do
|
||||||
%em.fa.fa-users
|
%em.fa.fa-users
|
||||||
= Orga.model_name.human.pluralize
|
= Orga.model_name.human.pluralize I18n.locale
|
||||||
%ul.fa-ul
|
%ul.fa-ul
|
||||||
- @orgas.each do |orga|
|
- @orgas.each do |orga|
|
||||||
%li
|
%li
|
||||||
|
@ -11,11 +11,14 @@
|
|||||||
# end
|
# end
|
||||||
|
|
||||||
ActiveSupport::Inflector.inflections(:de) do |inflect|
|
ActiveSupport::Inflector.inflections(:de) do |inflect|
|
||||||
inflect.plural 'veranstaltung', 'veranstaltungen'
|
inflect.plural 'Evenement', 'Evenementen'
|
||||||
|
inflect.plural 'Veranstaltung', 'Veranstaltungen'
|
||||||
|
inflect.plural 'Organisatie', 'Organisatien'
|
||||||
end
|
end
|
||||||
|
|
||||||
ActiveSupport::Inflector.inflections(:nl) do |inflect|
|
ActiveSupport::Inflector.inflections(:nl) do |inflect|
|
||||||
inflect.plural 'evenement', 'evenementen'
|
inflect.plural 'Evenement', 'Evenementen'
|
||||||
|
inflect.plural 'Organisatie', 'Organisaties'
|
||||||
end
|
end
|
||||||
|
|
||||||
# These inflection rules are supported but not enabled by default:
|
# These inflection rules are supported but not enabled by default:
|
||||||
|
@ -17,7 +17,7 @@ de:
|
|||||||
models:
|
models:
|
||||||
event: Veranstaltung
|
event: Veranstaltung
|
||||||
user: Moderator
|
user: Moderator
|
||||||
orga: Orga
|
orga: Organisatie
|
||||||
kind: Typ
|
kind: Typ
|
||||||
city: Stadt
|
city: Stadt
|
||||||
region: Region
|
region: Region
|
||||||
|
Loading…
Reference in New Issue
Block a user