From 42fbc911322db2a5fa8a9550ffceecd4da29f572 Mon Sep 17 00:00:00 2001
From: David Pursehouse <david.pursehouse@gmail.com>
Date: Fri, 18 Oct 2013 12:10:42 +0900
Subject: [PATCH] Correct date label on project information page

The label "Created at" would be appropriate for a timestamp such
as "09:30".

However the timestamp is actually being displayed as a date in
the format "Oct 15, 2013".  In this case "Created on" is better.
---
 app/views/admin/projects/show.html.haml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/views/admin/projects/show.html.haml b/app/views/admin/projects/show.html.haml
index c8a87328207..65b9911dc46 100644
--- a/app/views/admin/projects/show.html.haml
+++ b/app/views/admin/projects/show.html.haml
@@ -35,7 +35,7 @@
             = @project.creator.try(:name) || '(deleted)'
 
         %li
-          %span.light Created at:
+          %span.light Created on:
           %strong
             = @project.created_at.stamp("March 1, 1999")
 
-- 
GitLab