remove translation keys for strings that were changed
Change-Id: I51841f3b03a4e20ca815cb536d62f4752308e59a Reviewed-on: https://gerrit.instructure.com/57073 Tested-by: Jenkins Reviewed-by: Cody Cutrer <cody@instructure.com> Product-Review: Rob Orton <rob@instructure.com> QA-Review: Rob Orton <rob@instructure.com>
This commit is contained in:
parent
1190543a18
commit
74cb0f5c6d
|
@ -29,9 +29,9 @@ define [
|
|||
count = @model.usersCount()
|
||||
if @model.theLimit()
|
||||
if ENV.group_user_type is 'student'
|
||||
I18n.t "student_count_max", "%{count} / %{max} students", count: count, max: @model.theLimit()
|
||||
I18n.t "%{count} / %{max} students", count: count, max: @model.theLimit()
|
||||
else
|
||||
I18n.t "user_count_max", "%{count} / %{max} users", count: count, max: @model.theLimit()
|
||||
I18n.t "%{count} / %{max} users", count: count, max: @model.theLimit()
|
||||
else
|
||||
if ENV.group_user_type is 'student'
|
||||
I18n.t "student_count", "student", count: count
|
||||
|
|
|
@ -298,7 +298,8 @@
|
|||
<%= before_label(:file_upload, "Or upload a new file") %><br/>
|
||||
<%= file_field :attachment, :uploaded_data, :class => "file_upload", :style => "padding-left: 50px;" %>
|
||||
<div style="font-size: 0.8em; margin-left: 20px;">
|
||||
<%= t(:upload_limit, "limit %{file_size_limit} per file", file_size_limit: number_to_human_size(@current_user.quota)) %>
|
||||
<%= t("limit %{file_size_limit} per file",
|
||||
file_size_limit: number_to_human_size(@current_user.quota)) %>
|
||||
</div>
|
||||
</div>
|
||||
<div class='button-container button-container-right-aligned'>
|
||||
|
|
Loading…
Reference in New Issue