From fcd83e78399af866fc8501702b1af055b7630898 Mon Sep 17 00:00:00 2001 From: ddtddt Date: Mon, 28 May 2012 14:22:19 +0000 Subject: [trunk] - l10n page no found message 1 git-svn-id: http://piwigo.org/svn/trunk@15381 68402e56-0260-453c-a942-63ccdbb3a9ee --- include/functions_html.inc.php | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'include/functions_html.inc.php') diff --git a/include/functions_html.inc.php b/include/functions_html.inc.php index 84a4a8f05..ae9eb1bb0 100644 --- a/include/functions_html.inc.php +++ b/include/functions_html.inc.php @@ -342,11 +342,12 @@ function access_denied() function page_forbidden($msg, $alternate_url=null) { set_status_header(403); + $forbidden=l10n('Forbidden'); if ($alternate_url==null) $alternate_url = make_index_url(); redirect_html( $alternate_url, '
-

Forbidden


' +

'.$forbidden.'


' .$msg.'
', 5 ); } @@ -359,11 +360,12 @@ function page_forbidden($msg, $alternate_url=null) function bad_request($msg, $alternate_url=null) { set_status_header(400); + $bad=l10n('Bad request'); if ($alternate_url==null) $alternate_url = make_index_url(); redirect_html( $alternate_url, '
-

Bad request


' +

'.$bad.'


' .$msg.'
', 5 ); } @@ -376,11 +378,12 @@ function bad_request($msg, $alternate_url=null) function page_not_found($msg, $alternate_url=null) { set_status_header(404); + $found=l10n('Page not found'); if ($alternate_url==null) $alternate_url = make_index_url(); redirect_html( $alternate_url, '
-

Page not found


' +

'.$found.'


' .$msg.'
', 5 ); } @@ -394,7 +397,7 @@ function fatal_error($msg, $title=null, $show_trace=true) { if (empty($title)) { - $title = 'Piwigo encountered a non recoverable error'; + $title = l10n('Piwigo encountered a non recoverable error'); } $btrace_msg = ''; -- cgit v1.2.3