diff options
author | Ciaran Downey <me@ciarand.me> | 2014-07-25 20:51:05 -0700 |
---|---|---|
committer | Ciaran Downey <me@ciarand.me> | 2014-07-25 20:51:05 -0700 |
commit | 7921e60f304f876dd595707b077ad1d4756497a1 (patch) | |
tree | 2321ee03bc3b92167e2e99237ce05920d490d6c6 /templates/status | |
parent | 0a739cf9ac901f54484c34bba8322418dedb09b0 (diff) | |
download | gitea-7921e60f304f876dd595707b077ad1d4756497a1.tar.gz gitea-7921e60f304f876dd595707b077ad1d4756497a1.zip |
Change "an error is occurred" to "has occurred"
Diffstat (limited to 'templates/status')
-rw-r--r-- | templates/status/200.tmpl | 4 | ||||
-rw-r--r-- | templates/status/500.tmpl | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/templates/status/200.tmpl b/templates/status/200.tmpl index 0846ad7951..16d653034c 100644 --- a/templates/status/200.tmpl +++ b/templates/status/200.tmpl @@ -1,7 +1,7 @@ {{template "base/head" .}} {{template "base/navbar" .}} <div id="body" class="container"> - <p>An error is occurred : {{.ErrorMsg}}</p> + <p>An error has occurred: {{.ErrorMsg}}</p> <p>Application Version: {{AppVer}}</p> </div> -{{template "base/footer" .}}
\ No newline at end of file +{{template "base/footer" .}} diff --git a/templates/status/500.tmpl b/templates/status/500.tmpl index 07edd3620a..a9eff9e5c3 100644 --- a/templates/status/500.tmpl +++ b/templates/status/500.tmpl @@ -3,8 +3,8 @@ <div id="body" class="container text-center"> <p style="margin-top: 80px"><img src="/img/500.png" alt="404"/></p> {{if .ErrorMsg}}<hr/> - <p>An error is occurred : {{.ErrorMsg}}</p>{{end}} + <p>An error has occurred: {{.ErrorMsg}}</p>{{end}} <hr/> <p>Application Version: {{AppVer}}</p> </div> -{{template "base/footer" .}}
\ No newline at end of file +{{template "base/footer" .}} |