foodsoft/config/initializers/gettext_helper.rb

10 lines
203 B
Ruby
Raw Normal View History

# Remove this file, when every gettext-method <_("text to translate..")>
# is replaced by rails l18n method: l18n.name.name...
module ActionView
class Base
def _(text)
text
end
end
end