# File lib/fast_gettext/translation.rb, line 62
    def ns_(*args, &block)
      translation = n_(*args, &block)
      # block is called once again to compare result
      block && translation == block.call ? translation : translation.split(NAMESPACE_SEPARATOR).last
    end