21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-05-02 08:50:49 +02:00
chexpire/app/helpers/application_helper.rb
2018-08-02 00:29:53 +02:00

17 lines
481 B
Ruby

# Copyright (C) 2018 Colin Darie <colin@darie.eu>, 2018 Jeremy Lecour <jlecour@evolix.fr>, 2018 Evolix <info@evolix.fr>
# License: GNU AGPL-3+ (see full text in LICENSE file)
module ApplicationHelper
def format_date(time, format: :long)
l(time.utc.to_date, format: format)
end
def format_utc(time, format: :default)
l(time.utc, format: format)
end
def available_locales_collection
I18n.available_locales.map { |k| [t("shared.locales.#{k}"), k] }
end
end