internationalization: 404 and 403

This commit is contained in:
psychobunny
2013-09-24 13:22:10 -04:00
parent 5a10f7fcfe
commit c11920ac08
3 changed files with 9 additions and 5 deletions

View File

@@ -1,4 +1,8 @@
{
"home": "Home",
"buttons.close": "Close"
"buttons.close": "Close",
"403.title": "Access Denied",
"403.message": "You seem to have stumbled upon a page that you do not have access to. Perhaps you should <a href='/login'>try logging in</a>?",
"404.title": "Not Found",
"404.message": "You seem to have stumbled upon a page that does not exist. Return to the <a href='/''>home page</a>."
}

View File

@@ -1,4 +1,4 @@
<div class="alert alert-danger">
<strong>Access Denied</strong>
<p>You seem to have stumbled upon a page that you do not have access to. Perhaps you should <a href="/login">try logging in?</a></p>
<strong>[[global:403.title]]</strong>
<p>[[global:403.message]]</p>
</div>

View File

@@ -1,4 +1,4 @@
<div class="alert alert-danger">
<strong>Not found</strong>
<p>You seem to have stumbled upon a page that does not exist. Return to the <a href="/">home page</a></p>
<strong>[[global:404.title]]</strong>
<p>[[global:404.message]]</p>
</div>