X-Git-Url: https://git.p6c8.net/jirafeau.git/blobdiff_plain/0d601dd942a8b709adf5812045afcdc5873706c8..ae198477d047cd44cbc65cbfc20d53e73f9d07f8:/file.php diff --git a/file.php b/file.php index 8cd7000..fefeffd 100644 --- a/file.php +++ b/file.php @@ -35,7 +35,7 @@ if (isset ($_GET['h']) && !empty ($_GET['h'])) if (!preg_match ('/[0-9a-f]{32}$/', $link_name)) { require (JIRAFEAU_ROOT.'lib/template/header.php'); - echo '

' . _('Sorry, the requested file is not found') . '

'; + echo '

' . t('Sorry, the requested file is not found') . '

'; require (JIRAFEAU_ROOT.'lib/template/footer.php'); exit; } @@ -44,7 +44,7 @@ if (isset ($_GET['h']) && !empty ($_GET['h'])) if (count ($link) == 0) { require (JIRAFEAU_ROOT.'lib/template/header.php'); - echo '

' . _('Sorry, the requested file is not found') . + echo '

' . t('Sorry, the requested file is not found') . '

'; require (JIRAFEAU_ROOT.'lib/template/footer.php'); exit; @@ -54,7 +54,7 @@ if (isset ($_GET['h']) && !empty ($_GET['h'])) { jirafeau_delete ($link_name); require (JIRAFEAU_ROOT.'lib/template/header.php'); - echo '

'._('File not available.'). + echo '

'.t('File not available.'). '

'; require (JIRAFEAU_ROOT.'lib/template/footer.php'); exit; @@ -64,7 +64,7 @@ if (isset ($_GET['h']) && !empty ($_GET['h'])) { jirafeau_delete ($link_name); require (JIRAFEAU_ROOT.'lib/template/header.php'); - echo '

'._('File has been deleted.'). + echo '

'.t('File has been deleted.'). '

'; require (JIRAFEAU_ROOT.'lib/template/footer.php'); exit; @@ -75,8 +75,8 @@ if (isset ($_GET['h']) && !empty ($_GET['h'])) jirafeau_delete ($link_name); require (JIRAFEAU_ROOT.'lib/template/header.php'); echo '

'. - _('The time limit of this file has expired.') . ' ' . - _('File has been deleted.') . + t('The time limit of this file has expired.') . ' ' . + t('File has been deleted.') . '

'; require (JIRAFEAU_ROOT.'lib/template/footer.php'); exit; @@ -92,13 +92,13 @@ if (isset ($_GET['h']) && !empty ($_GET['h'])) "" method = "post">
- -
" + "" />

' . _('Access denied') . + echo '

' . t('Access denied') . '

'; require (JIRAFEAU_ROOT.'lib/template/footer.php'); exit;