From f32f1ea9a37d298c17d6a0fbebec7b27f2fd1bb2 Mon Sep 17 00:00:00 2001 From: Reinier Balt Date: Mon, 24 Jan 2011 16:48:18 +0800 Subject: [PATCH] fix #1088. Small copy-and-paste error in i18n code --- app/views/todos/_edit_form.rhtml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/todos/_edit_form.rhtml b/app/views/todos/_edit_form.rhtml index d0279ca9..2c2eabff 100644 --- a/app/views/todos/_edit_form.rhtml +++ b/app/views/todos/_edit_form.rhtml @@ -27,7 +27,7 @@ <%= date_field_tag("todo[due]", dom_id(@todo, 'due'), format_date(@todo.due), "tabindex" => 13) %> - <%= image_tag("delete_off.png", :alt => "<%= t('todos.clear_due_date') %>") %> + <%= image_tag("delete_off.png", :alt => t('todos.clear_due_date') ) %> @@ -35,7 +35,7 @@ <%= date_field_tag("todo[show_from]", dom_id(@todo, 'show_from'), format_date(@todo.show_from), "tabindex" => 14) %> - <%= image_tag("delete_off.png", :alt => "<%= t('todos.clear_show_from_date') %>") %> + <%= image_tag("delete_off.png", :alt => t('todos.clear_show_from_date') ) %>