mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-15 08:50:45 -07:00
Change interpolation syntax to %{key}
This commit is contained in:
Vendored
+3
-3
@@ -1,9 +1,9 @@
|
||||
---
|
||||
simple: "less is more"
|
||||
whatever: "something :something"
|
||||
whatever: "something %{something}"
|
||||
errors:
|
||||
i18n:
|
||||
undefined_interpolation: "undefined key :key"
|
||||
unknown_translation: "translation ':name' wasn't found"
|
||||
undefined_interpolation: "undefined key %{key}"
|
||||
unknown_translation: "translation '%{name}' wasn't found"
|
||||
syntax:
|
||||
oops: "something wasn't right"
|
||||
|
||||
@@ -34,12 +34,4 @@ class I18nTest < Test::Unit::TestCase
|
||||
def test_sets_default_path_to_en
|
||||
assert_equal I18n::DEFAULT_LOCALE, I18n.new.path
|
||||
end
|
||||
|
||||
def test_escaping_of_symbols
|
||||
assert_equal "do replaced! not :gsub", @i18n.send(:interpolate,
|
||||
'do :replace not \\:gsub',
|
||||
{
|
||||
:replace => "replaced!"
|
||||
})
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user