blob: de4d677d8ce8dbc182ccff9cf121261011bd00a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
module ApplicationHelper
# nicely_joined_with_commata(['1', '2', '3', '4'])
# = '1, 2, 3 und 4'
#
def nicely_joined_with_commata(array_of_things)
if array_of_things.count == 1
array_of_things.first.to_s
else
if array_of_things.count > 1
output = array_of_things[0, array_of_things.count - 1].map{|item| item.to_s}.join(', ')
if I18n.locale == :de
output += ' und '
else
output += ' and '
end
output += array_of_things.last.to_s
end
end
end
end
|