Skip to content

Instantly share code, notes, and snippets.

@alekpopovic
Last active November 23, 2015 00:15
Show Gist options
  • Save alekpopovic/0715d87c692bb08139d3 to your computer and use it in GitHub Desktop.
Save alekpopovic/0715d87c692bb08139d3 to your computer and use it in GitHub Desktop.
Simple Form Rails Fix i18
#./lib/patches/i18n_patch'
require 'i18n'
module I18n
class << self
def translate(*args)
res = super(*args)
res = res[nil, {}] if res.is_a? Proc
res
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment