diff options
author | momo-i <momo-i@ampache> | 2008-08-25 00:30:35 +0000 |
---|---|---|
committer | momo-i <momo-i@ampache> | 2008-08-25 00:30:35 +0000 |
commit | f9270baba89803586e3d4eaf0b246961b5df75ca (patch) | |
tree | c06212a071f9571786d379ffd807d45b0fc53eb5 /templates/show_denied.inc.php | |
parent | c16f287900ca5ec869b151af00759ea852f39287 (diff) | |
download | ampache-f9270baba89803586e3d4eaf0b246961b5df75ca.tar.gz ampache-f9270baba89803586e3d4eaf0b246961b5df75ca.tar.bz2 ampache-f9270baba89803586e3d4eaf0b246961b5df75ca.zip |
Modified: More translatable templates.
Diffstat (limited to 'templates/show_denied.inc.php')
-rw-r--r-- | templates/show_denied.inc.php | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/templates/show_denied.inc.php b/templates/show_denied.inc.php index fbd4bbab..19b1507d 100644 --- a/templates/show_denied.inc.php +++ b/templates/show_denied.inc.php @@ -34,11 +34,16 @@ </div> <p class="error"> <?php if (!Config::get('demo_mode')) { ?> -You've been redirected to this page because you do not have access to this function. If you believe this is an error please -contact an Ampache administrator. This event has been logged +<?php +echo _("You've been redirected to this page because you do not have access to this function."); +echo _("If you believe this is an error please contact an Ampache administrator."); +echo _("This event has been logged"); +?> <?php } else { ?> -You've been redirected to this page because you've attempted to access a function that is disabled in the demo. -Functions are disabled in the demo because previous users of the demo have used the functionality to post inappropriate materials +<?php +echo _("You've been redirected to this page because you've attempted to access a function that is disabled in the demo."); +echo _("Functions are disabled in the demo because previous users of the demo have used the functionality to post inappropriate materials"); +?> <?php } ?> </p> <div id="bottom"> |