Skip to content

Instantly share code, notes, and snippets.

@Fonsan
Created June 28, 2011 07:19
Show Gist options
  • Save Fonsan/1050660 to your computer and use it in GitHub Desktop.
Save Fonsan/1050660 to your computer and use it in GitHub Desktop.
module I18n
class << self
def translate(*args)
args.inspect
end
def localize(*args)
args.inspect
end
alias_method :l, :localize
alias_method :t, :translate
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment