summaryrefslogtreecommitdiff
path: root/vendor/bundle/ruby/3.4.0/gems/i18n-1.14.7/lib/i18n/interpolate
diff options
context:
space:
mode:
authorBenjamin Sanders <ben@Benjamins-MacBook-Pro.local>2025-10-11 10:34:24 -0400
committerBenjamin Sanders <ben@Benjamins-MacBook-Pro.local>2025-10-11 10:34:24 -0400
commit5571dc766e2143e39762ff0b47c41d1c2e154f4c (patch)
treef4f124d314a7e76c04484515aa0fd1f2e271a601 /vendor/bundle/ruby/3.4.0/gems/i18n-1.14.7/lib/i18n/interpolate
parent359f3309c97fc894b63e0a295c76ab298504d635 (diff)
Vendor bundled gems for deployment
Diffstat (limited to 'vendor/bundle/ruby/3.4.0/gems/i18n-1.14.7/lib/i18n/interpolate')
-rw-r--r--vendor/bundle/ruby/3.4.0/gems/i18n-1.14.7/lib/i18n/interpolate/ruby.rb53
1 files changed, 53 insertions, 0 deletions
diff --git a/vendor/bundle/ruby/3.4.0/gems/i18n-1.14.7/lib/i18n/interpolate/ruby.rb b/vendor/bundle/ruby/3.4.0/gems/i18n-1.14.7/lib/i18n/interpolate/ruby.rb
new file mode 100644
index 0000000..5b50593
--- /dev/null
+++ b/vendor/bundle/ruby/3.4.0/gems/i18n-1.14.7/lib/i18n/interpolate/ruby.rb
@@ -0,0 +1,53 @@
+# frozen_string_literal: true
+
+# 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*\.?\d*[bBdiouxXeEfgGcps])/ # matches placeholders like "%<foo>.d"
+ ].freeze
+ INTERPOLATION_PATTERN = Regexp.union(DEFAULT_INTERPOLATION_PATTERNS)
+ deprecate_constant :INTERPOLATION_PATTERN
+
+ INTERPOLATION_PATTERNS_CACHE = Hash.new do |hash, patterns|
+ hash[patterns] = Regexp.union(patterns)
+ end
+ private_constant :INTERPOLATION_PATTERNS_CACHE
+
+ 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 =~ I18n.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)
+ pattern = INTERPOLATION_PATTERNS_CACHE[config.interpolation_patterns]
+ interpolated = false
+
+ interpolated_string = string.gsub(pattern) do |match|
+ interpolated = true
+
+ 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
+
+ interpolated ? interpolated_string : string
+ end
+ end
+end