diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2010-05-24 17:49:21 -0300 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2010-05-24 23:42:20 +0200 |
commit | b5f9c8822dce55b33a4a6ab929f5b86b055a0284 (patch) | |
tree | 821ab94d54cd8d1a49b8b5ff178203371879b98f /actionpack/test/fixtures | |
parent | 2b8eb5404e5545fb80eb6edf09c61bd5030034e8 (diff) | |
download | rails-b5f9c8822dce55b33a4a6ab929f5b86b055a0284.tar.gz rails-b5f9c8822dce55b33a4a6ab929f5b86b055a0284.tar.bz2 rails-b5f9c8822dce55b33a4a6ab929f5b86b055a0284.zip |
translate method doesn't support arrays anymore and is optimized to be used with strings or symbols
Signed-off-by: José Valim <jose.valim@gmail.com>
Diffstat (limited to 'actionpack/test/fixtures')
-rw-r--r-- | actionpack/test/fixtures/test/array_translation.erb | 1 | ||||
-rw-r--r-- | actionpack/test/fixtures/test/scoped_array_translation.erb | 1 | ||||
-rw-r--r-- | actionpack/test/fixtures/test/scoped_translation.erb | 1 |
3 files changed, 1 insertions, 2 deletions
diff --git a/actionpack/test/fixtures/test/array_translation.erb b/actionpack/test/fixtures/test/array_translation.erb deleted file mode 100644 index def3a1a0c1..0000000000 --- a/actionpack/test/fixtures/test/array_translation.erb +++ /dev/null @@ -1 +0,0 @@ -<%= t(['foo', 'bar', 'html']) %>
\ No newline at end of file diff --git a/actionpack/test/fixtures/test/scoped_array_translation.erb b/actionpack/test/fixtures/test/scoped_array_translation.erb deleted file mode 100644 index 0a0c79f717..0000000000 --- a/actionpack/test/fixtures/test/scoped_array_translation.erb +++ /dev/null @@ -1 +0,0 @@ -<%= t(['.foo', '.bar']) %>
\ No newline at end of file diff --git a/actionpack/test/fixtures/test/scoped_translation.erb b/actionpack/test/fixtures/test/scoped_translation.erb new file mode 100644 index 0000000000..30baa61c77 --- /dev/null +++ b/actionpack/test/fixtures/test/scoped_translation.erb @@ -0,0 +1 @@ +<%= t('.foo.bar') %>
\ No newline at end of file |