Module ArkanisDevelopment::SimpleLocalization::LocalizedArray
In: lib/features/localized_array.rb

Methods

Public Instance methods

Localizes the Array#to_sentence method by using default options from the language file.

[Source]

    # File lib/features/localized_array.rb, line 22
22:     def to_sentence(options = {})
23:       options = ArkanisDevelopment::SimpleLocalization::Language[:arrays, :to_sentence].symbolize_keys.update(options)
24:       super options
25:     end

[Validate]