fix #1164 and fix #1159 whre a localization was wrong and adding brackets at NOT sql statements for older MySQL versions

This commit is contained in:
Reinier Balt 2011-05-03 11:43:02 +02:00
parent 58641a2fd0
commit 7d5ca16044
3 changed files with 6 additions and 6 deletions

View file

@ -56,7 +56,7 @@ module ApplicationHelper
t('todos.next_actions_due_date.overdue_by', :days => pluralize(days * -1, 'day'))
else
# more than a week away - relax
t('todos.next_actions_due_date.due_in', :days => pluralize(days, 'day'))
t('models.preference.due_in', :days => days)
end
end
}