Class: Array

Inherits:
Object
  • Object
show all
Defined in:
lib/tml/ext/array.rb

Overview

– Copyright © 2017 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

#tml_translatedObject



87
88
89
90
91
# File 'lib/tml/ext/array.rb', line 87

def tml_translated
  return self if frozen?
  @tml_translated = true
  self
end

#tml_translated?Boolean

Returns:

  • (Boolean)


93
94
95
# File 'lib/tml/ext/array.rb', line 93

def tml_translated?
  @tml_translated
end

#translate(description = '', options = {}) ⇒ Object

translate array values



58
59
60
61
62
63
64
65
66
67
68
# File 'lib/tml/ext/array.rb', line 58

def translate(description = '', options = {})
  return [] if empty?

  collect do |opt|
    if opt.is_a?(String)
      opt.translate(description, {}, options)
    else  
      opt
    end
  end
end

#translate_and_join(separator = ', ', description = '', options = {}) ⇒ Object

translates and joins all elements



53
54
55
# File 'lib/tml/ext/array.rb', line 53

def translate_and_join(separator = ', ', description = '', options = {})
  self.translate(description, options).join(separator).tml_translated
end

#translate_options(description = '', options = {}) ⇒ Object Also known as: tro

translates an array of options for a select tag



35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/tml/ext/array.rb', line 35

def translate_options(description = '', options = {})
  return [] if empty?

  options = options.merge(:skip_decorations => true)

  collect do |opt|
    if opt.is_a?(Array) and opt.first.is_a?(String) 
      [opt.first.translate(description, {}, options), opt.last]
    elsif opt.is_a?(String)
      [opt.translate(description, {}, options), opt]
    else  
      opt
    end
  end
end

#translate_sentence(description = nil, options = {}) ⇒ Object

creates a sentence with tr “and” joiner



71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# File 'lib/tml/ext/array.rb', line 71

def translate_sentence(description = nil, options = {})
  return '' if empty?
  return first if size == 1

  elements = translate(description, options)

  options[:separator] ||= ', '
  options[:joiner] ||= 'and'

  result = elements[0..-2].join(options[:separator])
  result << ' ' << options[:joiner].translate(description || 'List elements joiner', {}, options) << ' '
  result << elements.last

  result.tml_translated
end