X-Git-Url: https://git.p6c8.net/jirafeau_project.git/blobdiff_plain/1fe28b19ecaaeedfb9b5087f6d8c742968934ddb..53517d3b939f85007001beb3a01a32b032a9070b:/admin.php?ds=sidebyside diff --git a/admin.php b/admin.php index 7aceff9..e9e5342 100755 --- a/admin.php +++ b/admin.php @@ -37,7 +37,7 @@ if (file_exists (JIRAFEAU_ROOT . 'install.php')) { require (JIRAFEAU_ROOT . 'lib/template/header.php'); echo '

'. - _('Installer script still present') . + t('Installer script still present') . '

'; require (JIRAFEAU_ROOT.'lib/template/footer.php'); exit; @@ -48,7 +48,7 @@ if (!$cfg['admin_password']) { require (JIRAFEAU_ROOT . 'lib/template/header.php'); echo '

'. - _('Sorry, the admin interface is not enabled.') . + t('Sorry, the admin interface is not enabled.') . '

'; require (JIRAFEAU_ROOT.'lib/template/footer.php'); exit; @@ -71,7 +71,7 @@ if (isset ($_POST['admin_password'])) $_SESSION['admin_auth'] = false; require (JIRAFEAU_ROOT . 'lib/template/header.php'); echo '

'. - _('Wrong password.') . '

'; + t('Wrong password.') . '

'; require (JIRAFEAU_ROOT.'lib/template/footer.php'); exit; } @@ -85,7 +85,7 @@ elseif (!isset ($_SESSION['admin_auth']) || $_SESSION['admin_auth'] != true)
+
@@ -109,22 +109,22 @@ elseif (!isset ($_SESSION['admin_auth']) || $_SESSION['admin_auth'] != true) /* Admin interface. */ require (JIRAFEAU_ROOT . 'lib/template/header.php'); -?>

-
+
@@ -132,11 +132,11 @@ require (JIRAFEAU_ROOT . 'lib/template/header.php'); @@ -144,13 +144,13 @@ require (JIRAFEAU_ROOT . 'lib/template/header.php'); @@ -158,13 +158,13 @@ require (JIRAFEAU_ROOT . 'lib/template/header.php'); @@ -172,20 +172,20 @@ require (JIRAFEAU_ROOT . 'lib/template/header.php');
- + - +
- + - +
- + - +
- + - +
- + - +
- +
' . NL; echo '

'; - echo _('Number of cleaned files') . ' : ' . $total; + echo t('Number of cleaned files') . ' : ' . $total; echo '

'; } elseif (strcmp ($_POST['action'], 'list') == 0) @@ -221,13 +221,13 @@ if (isset ($_POST['action'])) { jirafeau_delete ($_POST['link']); echo '
' . NL; - echo '

' . _('Link deleted') . '

'; + echo '

' . t('Link deleted') . '

'; } elseif (strcmp ($_POST['action'], 'delete_file') == 0) { $count = jirafeau_delete_file ($_POST['md5']); echo '
' . NL; - echo '

' . _('Deleted links') . ' : ' . $count . '

'; + echo '

' . t('Deleted links') . ' : ' . $count . '

'; } }