Commit 03dec79c74f8f067258f26ed2cacc6353e9be401

Authored by David Pursehouse
1 parent c2084639

Fix some more instances of "Created at"

"Created on" should be used when the timestamp is only a date.
app/views/admin/groups/show.html.haml
... ... @@ -25,7 +25,7 @@
25 25 = @group.description
26 26  
27 27 %li
28   - %span.light Created at:
  28 + %span.light Created on:
29 29 %strong
30 30 = @group.created_at.stamp("March 1, 1999")
31 31  
... ...
app/views/profiles/keys/show.html.haml
... ... @@ -8,7 +8,7 @@
8 8 %span.light Title:
9 9 %strong= @key.title
10 10 %li
11   - %span.light Created at:
  11 + %span.light Created on:
12 12 %strong= @key.created_at.stamp("Aug 21, 2011")
13 13  
14 14 .span8
... ...
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
... ...
app/views/projects/show.html.haml
... ... @@ -59,7 +59,7 @@
59 59 %br
60 60 .light-well
61 61 %p
62   - %span.light Created at
  62 + %span.light Created on
63 63 #{@project.created_at.stamp('Aug 22, 2013')}
64 64 %p
65 65 %span.light Owned by
... ...