module SeleniumRecord::Translations
Contains helper methods for translations
Public Instance Methods
trans(key)
click to toggle source
@param key [String] the key to be used to lookup text translations @return [String] the translation for the given key
# File lib/selenium_record/translations.rb, line 6 def trans(key) I18n.t(key) end