# File lib/active_support/vendor/i18n-0.4.1/i18n/backend/interpolation_compiler.rb, line 100
      def interpolate(locale, string, values)
        if string.respond_to?(:i18n_interpolate)
          string.i18n_interpolate(values)
        elsif values
          super
        else
          string
        end
      end