Module: Riak::Util::Translation

Overview

Methods for doing i18n string lookup

Instance Method Summary collapse

Instance Method Details

#i18n_scopeObject

The scope of i18n messages



8
9
10
# File 'lib/riak/util/translation.rb', line 8

def i18n_scope
  :riak
end

#t(message, options = {}) ⇒ Object

Provides the translation for a given internationalized message



13
14
15
# File 'lib/riak/util/translation.rb', line 13

def t(message, options = {})
  I18n.t("#{i18n_scope}.#{message}", options)
end