Sha256: 7fe3f2f96c9014cd8d986210c54f91697911ad67c664c5e21c91fddacd3db807

Contents?: true

Size: 1.61 KB

Versions: 19

Compression:

Stored size: 1.61 KB

Contents

# heavily based on Masao Mutoh's gettext String interpolation extension
# http://github.com/mutoh/gettext/blob/f6566738b981fe0952548c421042ad1e0cdfb31e/lib/gettext/core_ext/string.rb

module I18n
  DEFAULT_INTERPOLATION_PATTERNS = [
    /%%/,
    /%\{([\w|]+)\}/,                            # matches placeholders like "%{foo} or %{foo|word}"
    /%<(\w+)>(.*?\d*\.?\d*[bBdiouxXeEfgGcps])/  # matches placeholders like "%<foo>.d"
  ].freeze
  INTERPOLATION_PATTERN = Regexp.union(DEFAULT_INTERPOLATION_PATTERNS)
  deprecate_constant :INTERPOLATION_PATTERN if method_defined? :INTERPOLATION_PATTERN

  class << self
    # Return String or raises MissingInterpolationArgument exception.
    # Missing argument's logic is handled by I18n.config.missing_interpolation_argument_handler.
    def interpolate(string, values)
      raise ReservedInterpolationKey.new($1.to_sym, string) if string =~ RESERVED_KEYS_PATTERN
      raise ArgumentError.new('Interpolation values must be a Hash.') unless values.kind_of?(Hash)
      interpolate_hash(string, values)
    end

    def interpolate_hash(string, values)
      string.gsub(Regexp.union(config.interpolation_patterns)) do |match|
        if match == '%%'
          '%'
        else
          key = ($1 || $2 || match.tr("%{}", "")).to_sym
          value = if values.key?(key)
                    values[key]
                  else
                    config.missing_interpolation_argument_handler.call(key, values, string)
                  end
          value = value.call(values) if value.respond_to?(:call)
          $3 ? sprintf("%#{$3}", value) : value
        end
      end
    end
  end
end

Version data entries

19 entries across 19 versions & 7 rubygems

Version Path
grape-extra_validators-2.0.0 vendor/bundle/ruby/2.6.0/gems/i18n-1.8.0/lib/i18n/interpolate/ruby.rb
i18n-1.8.3 lib/i18n/interpolate/ruby.rb
vagrant-unbundled-2.2.9.0 vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/interpolate/ruby.rb
vagrant-unbundled-2.2.8.0 vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/interpolate/ruby.rb
argon-1.3.1 vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/interpolate/ruby.rb
symbolic_enum-1.1.5 vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/interpolate/ruby.rb
vagrant-unbundled-2.2.7.0 vendor/bundle/ruby/2.7.0/gems/i18n-1.8.2/lib/i18n/interpolate/ruby.rb
i18n-1.8.2 lib/i18n/interpolate/ruby.rb
i18n-1.8.1 lib/i18n/interpolate/ruby.rb
grape-extra_validators-1.0.0 vendor/bundle/ruby/2.4.0/gems/i18n-1.8.0/lib/i18n/interpolate/ruby.rb
i18n-1.8.0 lib/i18n/interpolate/ruby.rb
i18n-1.7.1 lib/i18n/interpolate/ruby.rb
zuora_connect_ui-0.10.0 vendor/ruby/2.6.0/gems/i18n-1.7.0/lib/i18n/interpolate/ruby.rb
zuora_connect_ui-0.9.2 vendor/ruby/2.6.0/gems/i18n-1.7.0/lib/i18n/interpolate/ruby.rb
chatops-rpc-0.0.2 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/i18n-1.7.0/lib/i18n/interpolate/ruby.rb
chatops-rpc-0.0.1 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/i18n-1.7.0/lib/i18n/interpolate/ruby.rb
zuora_connect_ui-0.9.1 vendor/ruby/2.6.0/gems/i18n-1.7.0/lib/i18n/interpolate/ruby.rb
zuora_connect_ui-0.9.0 vendor/ruby/2.6.0/gems/i18n-1.7.0/lib/i18n/interpolate/ruby.rb
i18n-1.7.0 lib/i18n/interpolate/ruby.rb