# File lib/fast_gettext/translation.rb, line 47 def s_(key, separator=nil, &block) translation = FastGettext.cached_find(key) and return translation block ? block.call : key.split(separator||NAMESPACE_SEPARATOR).last end