Sha256: b530a62c714aed13bc9b6cca68164c3638894e489fe0f6e475661d109efcec0d
Contents?: true
Size: 1.73 KB
Versions: 5
Compression:
Stored size: 1.73 KB
Contents
module Lolita module I18nHelper def locale_options [[::I18n.t("lolita-i18n.choose-other-language"),nil]] + (::I18n.available_locales - [::I18n.default_locale]).sort.map{|locale| [::I18n.t("#{locale}", :default => locale.to_s.upcase), locale] } end def translation active_locale, key, original_key, translation, original %Q{ <td style="width:450px", data-key="#{active_locale}.#{original_key}" data-locale="#{active_locale}"> <p> #{text_area_tag "#{active_locale}.#{key}", translation} </p> </td> <td style="width:90%" data-key="#{::I18n.default_locale}.#{original_key}" data-locale="#{::I18n.default_locale}"> <p> #{text_area_tag "#{::I18n.default_locale}.#{key}", original} </p> #{!key.blank? && "<span class='hint'>#{key}</span>"} </td> } end def translation_visible? value !!(!params[:show_untranslated] || value.is_a?(Array) || value.is_a?(Hash) || (params[:show_untranslated] && value.blank?)) end def any_translation_visible? values if values.is_a?(Array) values.empty? || values.detect{|value| translation_visible?(value)} elsif values.is_a?(Hash) values.empty? || values.detect{|key,value| translation_visible?(value)} else translation_visible?(values) end end def sort_link sort_params = unless params[:sort] params.merge({:sort => 1}) else params.reject{|k,v| k == "sort" || k == :sort} end url_for_sort = url_for(sort_params) link_to(raw("#{::I18n.t(::I18n.default_locale)} #{params[:sort] && "⇑"}"), url_for_sort, :id => "translation_sort_link") end end end
Version data entries
5 entries across 5 versions & 1 rubygems