Class: Array

Inherits:
Object
  • Object
show all
Defined in:
lib/tr8n_core/ext/array.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(description = '', options = {}) ⇒ Object

translate array values



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

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_sentence(description = '', options = {}) ⇒ Object

creates a sentence with tr “and” joiner



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

def translate_sentence(description = '', 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('List elements joiner', {}, options) << ' '
  result << elements.last

  result.tr8n_translated
end

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

translates and joins all elements



52
53
54
# File 'lib/tr8n_core/ext/array.rb', line 52

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

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

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/tr8n_core/ext/array.rb', line 35

def tro(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