Class: Date

Inherits:
Object
  • Object
show all
Defined in:
lib/tr8n_core/ext/date.rb

Overview

– Copyright © 2015 Translation Exchange Inc. translationexchange.com

_______                  _       _   _             ______          _

|__ __| | | | | (_) | __| | |

| |_ __ __ _ _ __  ___| | __ _| |_ _  ___  _ __ | |__  __  _____| |__   __ _ _ __   __ _  ___
| | '__/ _` | '_ \/ __| |/ _` | __| |/ _ \| '_ \|  __| \ \/ / __| '_ \ / _` | '_ \ / _` |/ _ \
| | | | (_| | | | \__ \ | (_| | |_| | (_) | | | | |____ >  < (__| | | | (_| | | | | (_| |  __/
|_|_|  \__,_|_| |_|___/_|\__,_|\__|_|\___/|_| |_|______/_/\_\___|_| |_|\__,_|_| |_|\__, |\___|
                                                                                    __/ |
                                                                                   |___/

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ++

Instance Method Summary collapse

Instance Method Details

#translate(format = :default, options = {}) ⇒ Object Also known as: tr

The translation of the date can use one of the formats:

Using the Symbol to pull the default format defined in the config:

date.translate(:verbose)

Using a string with format with native Date elements

date.translate("%m/%d/%Y")

Or using a string with tokens:

date.translate("{month_name} {days::ord}")

The last allows you to use language cases to get something like “on March 1st”.



50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# File 'lib/tr8n_core/ext/date.rb', line 50

def translate(format = :default, options = {})
  language = Tr8n.session.target_language

  label = (format.is_a?(String) ? format.clone : Tr8n.config.default_date_formats[format].clone)

  selected_tokens = []
  using_tokens = label.index('{')

  if using_tokens
    selected_tokens = Tr8n::Tokens::Data.parse(label).collect{ |token| token.name(:parens => true) }

  else
    symbols = label.scan(/(%\w)/).flatten.uniq

    symbols.each do |symbol|
      token = Tr8n.config.strftime_symbol_to_token(symbol)
      next unless token
      selected_tokens << token
      label.gsub!(symbol, token)
    end
  end

  tokens = {}
  selected_tokens.each do |token|
    case token
      when "{days}"                 then tokens[:days] = options[:with_leading_zero] ? day.with_leading_zero : day.to_s
      when "{year_days}"            then tokens[:year_days] = options[:with_leading_zero] ? yday.with_leading_zero : yday.to_s
      when "{months}"               then tokens[:months] = options[:with_leading_zero] ? month.with_leading_zero : month.to_s
      when "{week_num}"             then tokens[:week_num] = wday
      when "{week_days}"            then tokens[:week_days] = strftime("%w")
      when "{short_years}"          then tokens[:short_years] = strftime("%y")
      when "{years}"                then tokens[:years] = year
      when "{short_week_day_name}"  then tokens[:short_week_day_name] = language.tr(Tr8n.config.default_abbr_day_name(wday), "Short name for a day of a week", {}, options)
      when "{week_day_name}"        then tokens[:week_day_name] = language.tr(Tr8n.config.default_day_name(wday), "Day of a week", {}, options)
      when "{short_month_name}"     then tokens[:short_month_name] = language.tr(Tr8n.config.default_abbr_month_name(month - 1), "Short month name", {}, options)
      when "{month_name}"           then tokens[:month_name] = language.tr(Tr8n.config.default_month_name(month - 1), "Month name", {}, options)
      when "{day_of_month}"         then tokens[:day_of_month] = strftime("%e")
    end
  end

  language.tr(label, nil, tokens, options)
end

#trl(format = :default, options = {}) ⇒ Object



94
95
96
# File 'lib/tr8n_core/ext/date.rb', line 94

def trl(format = :default, options = {})
  tr(format, options.merge!(:skip_decorations => true))
end