2019-03-16 09:37:35 +00:00
|
|
|
# frozen_string_literal: true
|
2019-03-15 01:32:57 +00:00
|
|
|
|
2012-11-18 18:21:16 +00:00
|
|
|
# Redmine - project management software
|
2024-02-26 22:55:54 +00:00
|
|
|
# Copyright (C) 2006- Jean-Philippe Lang
|
2012-11-18 18:21:16 +00:00
|
|
|
#
|
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
|
#
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
|
2021-11-17 20:45:39 +00:00
|
|
|
require 'redmine'
|
|
|
|
|
|
2009-02-21 11:04:50 +00:00
|
|
|
module Redmine
|
|
|
|
|
module I18n
|
2024-01-04 07:01:09 +00:00
|
|
|
include ActionView::Helpers::NumberHelper
|
|
|
|
|
|
2009-02-21 11:04:50 +00:00
|
|
|
def self.included(base)
|
|
|
|
|
base.extend Redmine::I18n
|
|
|
|
|
end
|
2011-09-01 00:45:09 +00:00
|
|
|
|
2009-02-21 11:04:50 +00:00
|
|
|
def l(*args)
|
|
|
|
|
case args.size
|
|
|
|
|
when 1
|
|
|
|
|
::I18n.t(*args)
|
|
|
|
|
when 2
|
|
|
|
|
if args.last.is_a?(Hash)
|
2020-01-23 15:42:50 +00:00
|
|
|
::I18n.t(*args.first, **args.last)
|
2009-02-21 11:04:50 +00:00
|
|
|
elsif args.last.is_a?(String)
|
|
|
|
|
::I18n.t(args.first, :value => args.last)
|
|
|
|
|
else
|
|
|
|
|
::I18n.t(args.first, :count => args.last)
|
|
|
|
|
end
|
|
|
|
|
else
|
|
|
|
|
raise "Translation string with multiple values: #{args.first}"
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def l_or_humanize(s, options={})
|
2023-12-20 07:16:35 +00:00
|
|
|
k = :"#{options[:prefix]}#{s}"
|
2009-02-21 11:04:50 +00:00
|
|
|
::I18n.t(k, :default => s.to_s.humanize)
|
|
|
|
|
end
|
2011-09-01 00:45:09 +00:00
|
|
|
|
2009-02-21 11:04:50 +00:00
|
|
|
def l_hours(hours)
|
2024-08-31 09:26:50 +00:00
|
|
|
hours = hours.to_f unless hours.is_a?(Numeric)
|
2016-11-18 12:42:20 +00:00
|
|
|
l((hours < 2.0 ? :label_f_hour : :label_f_hour_plural), :value => format_hours(hours))
|
2009-02-21 11:04:50 +00:00
|
|
|
end
|
2011-09-01 00:45:09 +00:00
|
|
|
|
2015-05-25 12:06:38 +00:00
|
|
|
def l_hours_short(hours)
|
2024-08-31 09:26:50 +00:00
|
|
|
l(:label_f_hour_short, :value => format_hours(hours.is_a?(Numeric) ? hours : hours.to_f))
|
2015-05-25 12:06:38 +00:00
|
|
|
end
|
|
|
|
|
|
2015-08-14 08:20:32 +00:00
|
|
|
def ll(lang, str, arg=nil)
|
|
|
|
|
options = arg.is_a?(Hash) ? arg : {:value => arg}
|
2020-11-22 13:43:51 +00:00
|
|
|
locale = lang.to_s.gsub(%r{(.+)\-(.+)$}) {"#{$1}-#{$2.upcase}"}
|
2020-01-23 15:42:50 +00:00
|
|
|
::I18n.t(str.to_s, **options, locale: locale)
|
2015-08-14 08:20:32 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# Localizes the given args with user's language
|
2025-04-21 05:57:01 +00:00
|
|
|
def lu(user, *)
|
2015-08-15 09:19:12 +00:00
|
|
|
lang = user.try(:language).presence || Setting.default_language
|
2025-04-21 05:57:01 +00:00
|
|
|
ll(lang, *)
|
2009-02-21 11:04:50 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def format_date(date)
|
|
|
|
|
return nil unless date
|
2020-12-04 13:59:36 +00:00
|
|
|
|
2012-06-16 21:45:47 +00:00
|
|
|
options = {}
|
|
|
|
|
options[:format] = Setting.date_format unless Setting.date_format.blank?
|
2020-01-23 15:42:50 +00:00
|
|
|
::I18n.l(date.to_date, **options)
|
2009-02-21 11:04:50 +00:00
|
|
|
end
|
2011-09-01 00:45:09 +00:00
|
|
|
|
2016-03-20 07:23:33 +00:00
|
|
|
def format_time(time, include_date=true, user=nil)
|
2009-02-21 11:04:50 +00:00
|
|
|
return nil unless time
|
2020-12-04 13:59:36 +00:00
|
|
|
|
2016-03-20 07:23:33 +00:00
|
|
|
user ||= User.current
|
2012-06-16 21:45:47 +00:00
|
|
|
options = {}
|
|
|
|
|
options[:format] = (Setting.time_format.blank? ? :time : Setting.time_format)
|
2009-02-21 11:04:50 +00:00
|
|
|
time = time.to_time if time.is_a?(String)
|
2019-06-20 06:23:48 +00:00
|
|
|
local = user.convert_time_to_user_timezone(time)
|
2020-01-23 15:42:50 +00:00
|
|
|
(include_date ? "#{format_date(local)} " : "") + ::I18n.l(local, **options)
|
2009-02-21 11:04:50 +00:00
|
|
|
end
|
|
|
|
|
|
2016-11-18 12:42:20 +00:00
|
|
|
def format_hours(hours)
|
|
|
|
|
return "" if hours.blank?
|
|
|
|
|
|
2024-08-08 04:24:44 +00:00
|
|
|
minutes = (hours * 60).round
|
2016-11-18 12:42:20 +00:00
|
|
|
if Setting.timespan_format == 'minutes'
|
2025-01-30 22:11:19 +00:00
|
|
|
h, m = minutes.abs.divmod(60)
|
|
|
|
|
sign = minutes.negative? ? '-' : ''
|
|
|
|
|
"%s%d:%02d" % [sign, h, m]
|
2016-11-18 12:42:20 +00:00
|
|
|
else
|
2024-08-08 04:24:44 +00:00
|
|
|
number_with_delimiter(sprintf('%.2f', minutes.fdiv(60)), delimiter: nil)
|
2016-11-18 12:42:20 +00:00
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2024-01-04 06:55:14 +00:00
|
|
|
# Will consider language specific separator in user input
|
|
|
|
|
# and normalize them to a unified format to be accepted by Kernel.Float().
|
|
|
|
|
#
|
|
|
|
|
# @param value [String] A string represenation of a float value.
|
|
|
|
|
#
|
|
|
|
|
# @note The delimiter cannot be used here if it is a decimal point since it
|
|
|
|
|
# will clash with the dot separator.
|
|
|
|
|
def normalize_float(value)
|
|
|
|
|
separator = ::I18n.t('number.format.separator')
|
2025-02-08 06:42:11 +00:00
|
|
|
value.to_s.gsub(/[#{separator}]/, separator => '.')
|
2024-01-04 06:55:14 +00:00
|
|
|
end
|
|
|
|
|
|
2009-02-21 11:04:50 +00:00
|
|
|
def day_name(day)
|
|
|
|
|
::I18n.t('date.day_names')[day % 7]
|
|
|
|
|
end
|
2011-09-01 00:45:09 +00:00
|
|
|
|
2023-08-27 06:40:59 +00:00
|
|
|
def abbr_day_name(day)
|
|
|
|
|
::I18n.t('date.abbr_day_names')[day % 7]
|
|
|
|
|
end
|
|
|
|
|
|
2012-08-13 18:13:10 +00:00
|
|
|
def day_letter(day)
|
|
|
|
|
::I18n.t('date.abbr_day_names')[day % 7].first
|
|
|
|
|
end
|
|
|
|
|
|
2009-02-21 11:04:50 +00:00
|
|
|
def month_name(month)
|
|
|
|
|
::I18n.t('date.month_names')[month]
|
|
|
|
|
end
|
2011-06-17 00:56:48 +00:00
|
|
|
|
2009-02-21 11:04:50 +00:00
|
|
|
def valid_languages
|
2012-11-18 17:41:31 +00:00
|
|
|
::I18n.available_locales
|
2009-02-21 11:04:50 +00:00
|
|
|
end
|
2011-06-17 00:56:48 +00:00
|
|
|
|
2012-11-18 18:01:24 +00:00
|
|
|
# Returns an array of languages names and code sorted by names, example:
|
|
|
|
|
# [["Deutsch", "de"], ["English", "en"] ...]
|
|
|
|
|
#
|
2014-10-18 09:07:51 +00:00
|
|
|
# The result is cached to prevent from loading all translations files
|
|
|
|
|
# unless :cache => false option is given
|
|
|
|
|
def languages_options(options={})
|
2019-10-17 11:22:17 +00:00
|
|
|
options =
|
|
|
|
|
if options[:cache] == false
|
|
|
|
|
available_locales = ::I18n.backend.available_locales
|
|
|
|
|
valid_languages.
|
|
|
|
|
select {|locale| available_locales.include?(locale)}.
|
|
|
|
|
map {|lang| [ll(lang.to_s, :general_lang_name), lang.to_s]}.
|
|
|
|
|
sort_by(&:first)
|
|
|
|
|
else
|
|
|
|
|
ActionController::Base.cache_store.fetch "i18n/languages_options/#{Redmine::VERSION}" do
|
|
|
|
|
languages_options :cache => false
|
|
|
|
|
end
|
2014-10-18 09:07:51 +00:00
|
|
|
end
|
2025-04-08 10:04:59 +00:00
|
|
|
options.map {|name, lang| [(+name).force_encoding("UTF-8"), (+lang).force_encoding("UTF-8")]}
|
2012-11-18 18:01:24 +00:00
|
|
|
end
|
|
|
|
|
|
2009-02-21 11:04:50 +00:00
|
|
|
def find_language(lang)
|
2020-11-19 13:30:23 +00:00
|
|
|
@@languages_lookup ||=
|
|
|
|
|
valid_languages.inject({}) do |k, v|
|
|
|
|
|
k[v.to_s.downcase] = v
|
|
|
|
|
k
|
|
|
|
|
end
|
2009-02-21 11:04:50 +00:00
|
|
|
@@languages_lookup[lang.to_s.downcase]
|
|
|
|
|
end
|
2011-09-01 00:45:09 +00:00
|
|
|
|
2009-02-21 11:04:50 +00:00
|
|
|
def set_language_if_valid(lang)
|
|
|
|
|
if l = find_language(lang)
|
|
|
|
|
::I18n.locale = l
|
|
|
|
|
end
|
|
|
|
|
end
|
2011-09-01 00:45:09 +00:00
|
|
|
|
2009-02-21 11:04:50 +00:00
|
|
|
def current_language
|
|
|
|
|
::I18n.locale
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|