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') . '
'. - _('Sorry, the admin interface is not enabled.') . + t('Sorry, the admin interface is not enabled.') . '
'. - _('Wrong password.') . '
+ | " /> + "" /> |
'; - 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 ' '; + echo '' . t('Link deleted') . '
'; } elseif (strcmp ($_POST['action'], 'delete_file') == 0) { $count = jirafeau_delete_file ($_POST['md5']); echo ' '; + echo '' . t('Deleted links') . ' : ' . $count . '
'; } }