aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorddtddt <ddtddt@piwigo.org>2012-05-28 14:56:21 +0000
committerddtddt <ddtddt@piwigo.org>2012-05-28 14:56:21 +0000
commit6239d54d085e6afe85eeaa83b5cac09c2a8c699e (patch)
tree013439d464a2904944c44ca12629b982b2189bdd /include
parentfcd83e78399af866fc8501702b1af055b7630898 (diff)
[trunk] - l10n page no found message 2
git-svn-id: http://piwigo.org/svn/trunk@15383 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include')
-rw-r--r--include/functions_url.inc.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/functions_url.inc.php b/include/functions_url.inc.php
index 34c9bbfbd..8d9dba93e 100644
--- a/include/functions_url.inc.php
+++ b/include/functions_url.inc.php
@@ -485,7 +485,7 @@ function parse_section_url( $tokens, &$next_token)
}
else
{
- page_not_found('Permalink for album not found');
+ page_not_found(l10n('Permalink for album not found'));
}
}
}
@@ -496,7 +496,7 @@ function parse_section_url( $tokens, &$next_token)
$result = get_cat_info($page['category']);
if (empty($result))
{
- page_not_found('Requested category does not exist' );
+ page_not_found(l10n('Requested album does not exist'));
}
$page['category']=$result;
}
@@ -541,7 +541,7 @@ function parse_section_url( $tokens, &$next_token)
$page['tags'] = find_tags($requested_tag_ids, $requested_tag_url_names);
if ( empty($page['tags']) )
{
- page_not_found('Requested tag does not exist', get_root_url().'tags.php' );
+ page_not_found(l10n('Requested tag does not exist'), get_root_url().'tags.php' );
}
}
elseif ( 'favorites' == @$tokens[$next_token] )