Sha256: e9e7335bf074a5268520622c20d2b4658663a9abfb66aed66f331fae42f36931
Contents?: true
Size: 481 Bytes
Versions: 12
Compression:
Stored size: 481 Bytes
Contents
module Lolita module I18n module Exceptions class MissingInterpolationArgument < StandardError def initialize missing_arguments super "Translation should contain all these variables #{missing_arguments.join(', ')}" end end class TranslationDoesNotMatch < ArgumentError def initialize translation, original super "Translation #{translation} does not match #{original}" end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems