add missing description for ungraded timespan alerts, refs #4317

Change-Id: Ifd9e1bddb2f8d4b93f21d8f5e5d40f5a41563525
Reviewed-on: https://gerrit.instructure.com/7335
Tested-by: Hudson <hudson@instructure.com>
Reviewed-by: Brian Whitmer <brian@instructure.com>
This commit is contained in:
Cody Cutrer 2011-12-07 11:15:54 -07:00 committed by Brian Palmer
parent 52e2dc701e
commit 0f8969b8fd
1 changed files with 3 additions and 1 deletions

View File

@ -18,7 +18,9 @@
when 'Interaction'
t('interaction_description', 'No student/teacher interaction for %{count} days', :count => criterion.threshold)
when 'UngradedCount'
t('ungraded_count_description', '%{count} or more assignments have not been graded', :count => criterion.threshold)
t('ungraded_count_description', '%{count} or more submissions have not been graded', :count => criterion.threshold)
when 'UngradedTimespan'
t('ungraded_timespan_description', 'A submission has been left ungraded for %{count} days', :count => criterion.threshold)
when 'UserNote'
t('usernote_description', 'No faculty journal entries for %{count} days', :count => criterion.threshold)
end