Commit 03dec79c74f8f067258f26ed2cacc6353e9be401
1 parent
c2084639
Exists in
master
and in
4 other branches
Fix some more instances of "Created at"
"Created on" should be used when the timestamp is only a date.
Showing
4 changed files
with
4 additions
and
4 deletions
Show diff stats
app/views/admin/groups/show.html.haml
app/views/profiles/keys/show.html.haml
app/views/projects/merge_requests/show/_mr_box.html.haml
... | ... | @@ -13,7 +13,7 @@ |
13 | 13 | .ui-box-body |
14 | 14 | %div |
15 | 15 | %cite.cgray |
16 | - Created at #{@merge_request.created_at.stamp("Aug 21, 2011")} by #{link_to_member(@project, @merge_request.author)} | |
16 | + Created on #{@merge_request.created_at.stamp("Aug 21, 2011")} by #{link_to_member(@project, @merge_request.author)} | |
17 | 17 | - if @merge_request.assignee |
18 | 18 | \, currently assigned to #{link_to_member(@project, @merge_request.assignee)} |
19 | 19 | - if @merge_request.milestone | ... | ... |