'. - t('Sorry, the admin interface is not enabled.') . - '
'. - t('Wrong password.') . '
'. - t('Sorry, you are not authenticated on admin interface.') . - '
'; - require (JIRAFEAU_ROOT.'lib/template/footer.php'); - exit; -} - -/* Operations may take a long time. - * Be sure PHP's safe mode is off. - */ -@set_time_limit(0); -/* Remove errors. */ -@error_reporting(0); - -/* Show admin interface if not downloading a file. */ -if (!(isset ($_POST['action']) && strcmp ($_POST['action'], 'download') == 0)) -{ - require (JIRAFEAU_ROOT . 'lib/template/header.php'); - ?>'; - echo t('Number of cleaned files') . ' : ' . $total; - echo '
'; - } - elseif (strcmp ($_POST['action'], 'clean_async') == 0) - { - $total = jirafeau_admin_clean_async (); - echo ' '; - } - elseif (strcmp ($_POST['action'], 'list') == 0) - { - jirafeau_admin_list ("", "", ""); - } - elseif (strcmp ($_POST['action'], 'search_by_name') == 0) - { - jirafeau_admin_list ($_POST['name'], "", ""); - } - elseif (strcmp ($_POST['action'], 'search_by_file_hash') == 0) - { - jirafeau_admin_list ("", $_POST['hash'], ""); - } - elseif (strcmp ($_POST['action'], 'search_link') == 0) - { - jirafeau_admin_list ("", "", $_POST['link']); - } - elseif (strcmp ($_POST['action'], 'delete_link') == 0) - { - jirafeau_delete_link ($_POST['link']); - echo ' '; - } - elseif (strcmp ($_POST['action'], 'delete_file') == 0) - { - $count = jirafeau_delete_file ($_POST['md5']); - echo ' '; - } - elseif (strcmp ($_POST['action'], 'download') == 0) - { - $l = jirafeau_get_link ($_POST['link']); - if (!count ($l)) - return; - $p = s2p ($l['md5']); - header ('Content-Length: ' . $l['file_size']); - header ('Content-Type: ' . $l['mime_type']); - header ('Content-Disposition: attachment; filename="' . - $l['file_name'] . '"'); - if (file_exists(VAR_FILES . $p . $l['md5'])) - readfile (VAR_FILES . $p . $l['md5']); - exit; - } -} - -require (JIRAFEAU_ROOT.'lib/template/footer.php'); - -?> diff --git a/sources/f.php b/sources/f.php deleted file mode 100644 index 0218602..0000000 --- a/sources/f.php +++ /dev/null @@ -1,292 +0,0 @@ - - * Copyright (C) 2015 Jerome Jutteau' . t('Sorry, the requested file is not found') . '
' . t('Sorry, the requested file is not found') . - '
'.t('File not available.'). - '
'. - t('The time limit of this file has expired.') . ' ' . - t('File has been deleted.') . - '
' . t('Sorry, the requested file is not found') . - '
' . t('Access denied') . - '
' . t('Access denied') . '
' . t('Wrong password.') . '
- -
- - - -' .
- $path . '
' .
- $subpath . '
' .
- t('The local configuration file could not be created. Create a ' .
- 'lib/config.local.php
file and give the write ' .
- 'permission to the web server (preferred solution), or give the ' .
- 'write permission to the web server on the lib
' .
- 'directory.') .
- '
' .
- t('The local configuration is not writable by the web server. ' .
- 'Give the write permission to the web server on the ' .
- 'lib/config.local.php
file.') .
- '
'.$err['why'].'
'.NL;
- ?>
" + text + "
"; - document.getElementById('error_pop').innerHTML = e; - - document.getElementById('uploading').style.display = 'none'; - document.getElementById('error_pop').style.display = ''; - document.getElementById('upload').style.display = ''; - document.getElementById('send').style.display = ''; -} - -function add_time_string_to_date(d, time) -{ - if(typeof(d) != 'object' || !(d instanceof Date)) - { - return false; - } - - if (time == 'minute') - { - d.setSeconds (d.getSeconds() + 60); - return true; - } - if (time == 'hour') - { - d.setSeconds (d.getSeconds() + 3600); - return true; - } - if (time == 'day') - { - d.setSeconds (d.getSeconds() + 86400); - return true; - } - if (time == 'week') - { - d.setSeconds (d.getSeconds() + 604800); - return true; - } - if (time == 'month') - { - d.setSeconds (d.getSeconds() + 2419200); - return true; - } - if (time == 'year') - { - d.setSeconds (d.getSeconds() + 29030400); - return true; - } - return false; -} - -function classic_upload (url, file, time, password, one_time, upload_password) -{ - // Delay time estimation init as we can't have file size - upload_time_estimation_init(0); - - var req = new XMLHttpRequest (); - req.upload.addEventListener ("progress", upload_progress, false); - req.addEventListener ("error", pop_failure, false); - req.addEventListener ("abort", pop_failure, false); - req.onreadystatechange = function () - { - if (req.readyState == 4 && req.status == 200) - { - var res = req.responseText; - if (res == "Error") - { - pop_failure (); - return; - } - res = res.split ("\n"); - if (time != 'none') - { - var d = new Date(); - if(!add_time_string_to_date(d, time)) - return; - show_link (url, res[0], res[1], res[2], d.toString()); - } - else - show_link (url, res[0], res[1], res[2]); - } - } - req.open ("POST", url + 'script.php' , true); - - var form = new FormData(); - form.append ("file", file); - if (time) - form.append ("time", time); - if (password) - form.append ("key", password); - if (one_time) - form.append ("one_time_download", '1'); - if (upload_password.length > 0) - form.append ("upload_password", upload_password); - - req.send (form); -} - -function check_html5_file_api () -{ - return window.File && window.FileReader && window.FileList && window.Blob; -} - -var async_global_transfered = 0; -var async_global_url = ''; -var async_global_file; -var async_global_ref = ''; -var async_global_max_size = 0; -var async_global_time; -var async_global_transfering = 0; - -function async_upload_start (url, max_size, file, time, password, one_time, upload_password) -{ - async_global_transfered = 0; - async_global_url = url; - async_global_file = file; - async_global_max_size = max_size; - async_global_time = time; - - var req = new XMLHttpRequest (); - req.addEventListener ("error", pop_failure, false); - req.addEventListener ("abort", pop_failure, false); - req.onreadystatechange = function () - { - if (req.readyState == 4 && req.status == 200) - { - var res = req.responseText; - if (res == "Error") - { - pop_failure (); - return; - } - res = res.split ("\n"); - async_global_ref = res[0]; - var code = res[1]; - async_upload_push (code); - } - } - req.open ("POST", async_global_url + 'script.php?init_async' , true); - - var form = new FormData(); - form.append ("filename", async_global_file.name); - form.append ("type", async_global_file.type); - if (time) - form.append ("time", time); - if (password) - form.append ("key", password); - if (one_time) - form.append ("one_time_download", '1'); - if (upload_password.length > 0) - form.append ("upload_password", upload_password); - - // Start time estimation - upload_time_estimation_init(async_global_file.size); - - req.send (form); -} - -function async_upload_progress (e) -{ - if (e == undefined || e == null || !e.lengthComputable && async_global_file.size != 0) - return; - - // Compute percentage - var p = Math.round ((e.loaded + async_global_transfered) * 100 / (async_global_file.size)); - var p_str = ' '; - if (p != 100) - p_str = p.toString() + '%'; - // Update estimation speed - upload_time_estimation_add(e.loaded + async_global_transfered); - // Get speed string - var speed_str = upload_time_estimation_speed_string(); - speed_str = upload_speed_refresh_limiter(speed_str); - // Get time string - var time_str = chrono_update(upload_time_estimation_time()); - - show_upload_progression (p_str, speed_str, time_str); -} - -function async_upload_push (code) -{ - if (async_global_transfered == async_global_file.size) - { - hide_upload_progression (); - async_upload_end (code); - return; - } - var req = new XMLHttpRequest (); - req.upload.addEventListener ("progress", async_upload_progress, false); - req.addEventListener ("error", pop_failure, false); - req.addEventListener ("abort", pop_failure, false); - req.onreadystatechange = function () - { - if (req.readyState == 4 && req.status == 200) - { - var res = req.responseText; - if (res == "Error") - { - pop_failure (); - return; - } - res = res.split ("\n"); - var code = res[0] - async_global_transfered = async_global_transfering; - async_upload_push (code); - } - } - req.open ("POST", async_global_url + 'script.php?push_async' , true); - - var chunk_size = parseInt (async_global_max_size * 0.50); - var start = async_global_transfered; - var end = start + chunk_size; - if (end >= async_global_file.size) - end = async_global_file.size; - var blob = async_global_file.slice (start, end); - async_global_transfering = end; - - var form = new FormData(); - form.append ("ref", async_global_ref); - form.append ("data", blob); - form.append ("code", code); - req.send (form); -} - -function async_upload_end (code) -{ - var req = new XMLHttpRequest (); - req.addEventListener ("error", pop_failure, false); - req.addEventListener ("abort", pop_failure, false); - req.onreadystatechange = function () - { - if (req.readyState == 4 && req.status == 200) - { - var res = req.responseText; - if (res == "Error") - { - pop_failure (); - return; - } - res = res.split ("\n"); - if (async_global_time != 'none') - { - var d = new Date(); - if(!add_time_string_to_date(d, async_global_time)) - return; - show_link (async_global_url, res[0], res[1], res[2], d.toString()); - } - else - show_link (async_global_url, res[0], res[1], res[2]); - } - } - req.open ("POST", async_global_url + 'script.php?end_async' , true); - - var form = new FormData(); - form.append ("ref", async_global_ref); - form.append ("code", code); - req.send (form); -} - -function upload (url, max_size) -{ - if (check_html5_file_api () - && document.getElementById('file_select').files[0].size >= max_size) - { - async_upload_start (url, - max_size, - document.getElementById('file_select').files[0], - document.getElementById('select_time').value, - document.getElementById('input_key').value, - document.getElementById('one_time_download').checked, - document.getElementById('upload_password').value - ); - } - else - { - classic_upload (url, - document.getElementById('file_select').files[0], - document.getElementById('select_time').value, - document.getElementById('input_key').value, - document.getElementById('one_time_download').checked, - document.getElementById('upload_password').value - ); - } -} - -var upload_time_estimation_total_size = 42; -var upload_time_estimation_transfered_size = 42; -var upload_time_estimation_transfered_date = 42; -var upload_time_estimation_moving_average_speed = 42; - -function upload_time_estimation_init(total_size) -{ - upload_time_estimation_total_size = total_size; - upload_time_estimation_transfered_size = 0; - upload_time_estimation_moving_average_speed = 0; - var d = new Date(); - upload_time_estimation_transfered_date = d.getTime(); -} - -function upload_time_estimation_add(total_transfered_size) -{ - // Let's compute the current speed - var d = new Date(); - var speed = upload_time_estimation_moving_average_speed; - if (d.getTime() - upload_time_estimation_transfered_date != 0) - speed = (total_transfered_size - upload_time_estimation_transfered_size) - / (d.getTime() - upload_time_estimation_transfered_date); - // Let's compute moving average speed on 30 values - var m = (upload_time_estimation_moving_average_speed * 29 + speed) / 30; - // Update global values - upload_time_estimation_transfered_size = total_transfered_size; - upload_time_estimation_transfered_date = d.getTime(); - upload_time_estimation_moving_average_speed = m; -} - -function upload_time_estimation_speed_string() -{ - // speed ms -> s - var s = upload_time_estimation_moving_average_speed * 1000; - var res = 0; - var scale = ''; - if (s <= 1000) - { - res = s.toString(); - scale = "o/s"; - } - else if (s < 1000000) - { - res = Math.floor(s/100) / 10; - scale = "Ko/s"; - } - else - { - res = Math.floor(s/100000) / 10; - scale = "Mo/s"; - } - if (res == 0) - return ''; - return res.toString() + ' ' + scale; -} - -function milliseconds_to_time_string (milliseconds) -{ - function numberEnding (number) { - return (number > 1) ? 's' : ''; - } - - var temp = Math.floor(milliseconds / 1000); - var years = Math.floor(temp / 31536000); - if (years) { - return years + ' ' + translate ('year') + numberEnding(years); - } - var days = Math.floor((temp %= 31536000) / 86400); - if (days) { - return days + ' ' + translate ('day') + numberEnding(days); - } - var hours = Math.floor((temp %= 86400) / 3600); - if (hours) { - return hours + ' ' + translate ('hour') + numberEnding(hours); - } - var minutes = Math.floor((temp %= 3600) / 60); - if (minutes) { - return minutes + ' ' + translate ('minute') + numberEnding(minutes); - } - var seconds = temp % 60; - if (seconds) { - return seconds + ' ' + translate ('second') + numberEnding(seconds); - } - return translate ('less than a second'); -} - -function upload_time_estimation_time() -{ - // Estimate remaining time - if (upload_time_estimation_moving_average_speed == 0) - return 0; - return (upload_time_estimation_total_size - upload_time_estimation_transfered_size) - / upload_time_estimation_moving_average_speed; -} - -var chrono_last_update = 0; -var chrono_time_ms = 0; -var chrono_time_ms_last_update = 0; -function chrono_update(time_ms) -{ - var d = new Date(); - var chrono = 0; - // Don't update too often - if (d.getTime() - chrono_last_update < 3000 && - chrono_time_ms_last_update > 0) - chrono = chrono_time_ms; - else - { - chrono_last_update = d.getTime(); - chrono_time_ms = time_ms; - chrono = time_ms; - chrono_time_ms_last_update = d.getTime(); - } - - // Adjust chrono for smooth estimation - chrono = chrono - (d.getTime() - chrono_time_ms_last_update); - - // Let's update chronometer - var time_str = ''; - if (chrono > 0) - time_str = milliseconds_to_time_string (chrono); - return time_str; -} - -var upload_speed_refresh_limiter_last_update = 0; -var upload_speed_refresh_limiter_last_value = ''; -function upload_speed_refresh_limiter(speed_str) -{ - var d = new Date(); - if (d.getTime() - upload_speed_refresh_limiter_last_update > 1500) - { - upload_speed_refresh_limiter_last_value = speed_str; - upload_speed_refresh_limiter_last_update = d.getTime(); - } - return upload_speed_refresh_limiter_last_value; -} diff --git a/sources/lib/functions.php b/sources/lib/functions.php deleted file mode 100644 index 592e841..0000000 --- a/sources/lib/functions.php +++ /dev/null @@ -1,1359 +0,0 @@ - - * Copyright (C) 2015 Jerome Jutteau' . $title. '
' . $description. '
" + text + "
"; - document.getElementById('error_pop').innerHTML = e; - - document.getElementById('uploading').style.display = 'none'; - document.getElementById('error_pop').style.display = ''; - document.getElementById('upload').style.display = ''; - document.getElementById('send').style.display = ''; -} - -function classic_upload (url, file, time, password, one_time, upload_password) -{ - // Delay time estimation init as we can't have file size - upload_time_estimation_init(0); - - var req = new XMLHttpRequest (); - req.upload.addEventListener ("progress", upload_progress, false); - req.addEventListener ("error", pop_failure, false); - req.addEventListener ("abort", pop_failure, false); - req.onreadystatechange = function () - { - if (req.readyState == 4 && req.status == 200) - { - var res = req.responseText; - if (res == "Error") - { - pop_failure (); - return; - } - res = res.split ("\n"); - if (time != 'none') - { - var d = new Date(); - if (time == 'minute') - d.setSeconds (d.getSeconds() + 60); - else if (time == 'hour') - d.setSeconds (d.getSeconds() + 3600); - else if (time == 'day') - d.setSeconds (d.getSeconds() + 86400); - else if (time == 'week') - d.setSeconds (d.getSeconds() + 604800); - else if (time == 'month') - d.setSeconds (d.getSeconds() + 2419200); - else if (time == 'year') - d.setSeconds (d.getSeconds() + 29030400); - else - return; - show_link (url, res[0], res[1], res[2], d.toString()); - } - else - show_link (url, res[0], res[1], res[2]); - } - } - req.open ("POST", url + 'script.php' , true); - - var form = new FormData(); - form.append ("file", file); - if (time) - form.append ("time", time); - if (password) - form.append ("key", password); - if (one_time) - form.append ("one_time_download", '1'); - if (upload_password.length > 0) - form.append ("upload_password", upload_password); - - req.send (form); -} - -function check_html5_file_api () -{ - if (window.File && window.FileReader && window.FileList && window.Blob) - return true; - return false; -} - -var async_global_transfered = 0; -var async_global_url = ''; -var async_global_file; -var async_global_ref = ''; -var async_global_max_size = 0; -var async_global_time; -var async_global_transfering = 0; - -function async_upload_start (url, max_size, file, time, password, one_time, upload_password) -{ - async_global_transfered = 0; - async_global_url = url; - async_global_file = file; - async_global_max_size = max_size; - async_global_time = time; - - var req = new XMLHttpRequest (); - req.addEventListener ("error", pop_failure, false); - req.addEventListener ("abort", pop_failure, false); - req.onreadystatechange = function () - { - if (req.readyState == 4 && req.status == 200) - { - var res = req.responseText; - if (res == "Error") - { - pop_failure (); - return; - } - res = res.split ("\n"); - async_global_ref = res[0]; - var code = res[1]; - async_upload_push (code); - } - } - req.open ("POST", async_global_url + 'script.php?init_async' , true); - - var form = new FormData(); - form.append ("filename", async_global_file.name); - form.append ("type", async_global_file.type); - if (time) - form.append ("time", time); - if (password) - form.append ("key", password); - if (one_time) - form.append ("one_time_download", '1'); - if (upload_password.length > 0) - form.append ("upload_password", upload_password); - - // Start time estimation - upload_time_estimation_init(async_global_file.size); - - req.send (form); -} - -function async_upload_progress (e) -{ - if (!e.lengthComputable && async_global_file.size != 0) - return; - - // Compute percentage - var p = Math.round ((e.loaded + async_global_transfered) * 100 / (async_global_file.size)); - var p_str = ' '; - if (p != 100) - p_str = p.toString() + '%'; - // Update estimation speed - upload_time_estimation_add(e.loaded + async_global_transfered); - // Get speed string - var speed_str = upload_time_estimation_speed_string(); - // Get time string - var time_str = chrono_update(upload_time_estimation_time()); - - show_upload_progression (p_str, speed_str, time_str); -} - -function async_upload_push (code) -{ - if (async_global_transfered == async_global_file.size) - { - hide_upload_progression (); - async_upload_end (code); - return; - } - var req = new XMLHttpRequest (); - req.upload.addEventListener ("progress", async_upload_progress, false); - req.addEventListener ("error", pop_failure, false); - req.addEventListener ("abort", pop_failure, false); - req.onreadystatechange = function () - { - if (req.readyState == 4 && req.status == 200) - { - var res = req.responseText; - if (res == "Error") - { - pop_failure (); - return; - } - res = res.split ("\n"); - var code = res[0] - async_global_transfered = async_global_transfering; - async_upload_push (code); - } - } - req.open ("POST", async_global_url + 'script.php?push_async' , true); - - var chunk_size = parseInt (async_global_max_size * 0.50); - var start = async_global_transfered; - var end = start + chunk_size; - if (end >= async_global_file.size) - end = async_global_file.size; - var blob = async_global_file.slice (start, end); - async_global_transfering = end; - - var form = new FormData(); - form.append ("ref", async_global_ref); - form.append ("data", blob); - form.append ("code", code); - req.send (form); -} - -function async_upload_end (code) -{ - var req = new XMLHttpRequest (); - req.addEventListener ("error", pop_failure, false); - req.addEventListener ("abort", pop_failure, false); - req.onreadystatechange = function () - { - if (req.readyState == 4 && req.status == 200) - { - var res = req.responseText; - if (res == "Error") - { - pop_failure (); - return; - } - res = res.split ("\n"); - if (async_global_time != 'none') - { - var d = new Date(); - if (async_global_time == 'minute') - d.setSeconds (d.getSeconds() + 60); - else if (async_global_time == 'hour') - d.setSeconds (d.getSeconds() + 3600); - else if (async_global_time == 'day') - d.setSeconds (d.getSeconds() + 86400); - else if (async_global_time == 'week') - d.setSeconds (d.getSeconds() + 604800); - else if (async_global_time == 'month') - d.setSeconds (d.getSeconds() + 2419200); - else if (async_global_time == 'year') - d.setSeconds (d.getSeconds() + 29030400); - else - return; - show_link (async_global_url, res[0], res[1], res[2], d.toString()); - } - else - show_link (async_global_url, res[0], res[1], res[2]); - } - } - req.open ("POST", async_global_url + 'script.php?end_async' , true); - - var form = new FormData(); - form.append ("ref", async_global_ref); - form.append ("code", code); - req.send (form); -} - -function upload (url, max_size) -{ - if (check_html5_file_api () - && document.getElementById('file_select').files[0].size >= max_size) - { - async_upload_start (url, - max_size, - document.getElementById('file_select').files[0], - document.getElementById('select_time').value, - document.getElementById('input_key').value, - document.getElementById('one_time_download').checked, - document.getElementById('upload_password').value - ); - } - else - { - classic_upload (url, - document.getElementById('file_select').files[0], - document.getElementById('select_time').value, - document.getElementById('input_key').value, - document.getElementById('one_time_download').checked, - document.getElementById('upload_password').value - ); - } -} - -var upload_time_estimation_total_size = 42; -var upload_time_estimation_transfered_size = 42; -var upload_time_estimation_transfered_date = 42; -var upload_time_estimation_moving_average_speed = 42; - -function upload_time_estimation_init(total_size) -{ - upload_time_estimation_total_size = total_size; - upload_time_estimation_transfered_size = 0; - upload_time_estimation_moving_average_speed = 0; - var d = new Date(); - upload_time_estimation_transfered_date = d.getTime(); -} - -function upload_time_estimation_add(total_transfered_size) -{ - // Let's compute the current speed - var d = new Date(); - var speed = upload_time_estimation_moving_average_speed; - if (d.getTime() - upload_time_estimation_transfered_date != 0) - speed = (total_transfered_size - upload_time_estimation_transfered_size) - / (d.getTime() - upload_time_estimation_transfered_date); - // Let's compute moving average speed on 30 values - var m = (upload_time_estimation_moving_average_speed * 29 + speed) / 30; - // Update global values - upload_time_estimation_transfered_size = total_transfered_size; - upload_time_estimation_transfered_date = d.getTime(); - upload_time_estimation_moving_average_speed = m; -} - -function upload_time_estimation_speed_string() -{ - // speed ms -> s - var s = upload_time_estimation_moving_average_speed * 1000; - var res = 0; - var scale = ''; - if (s <= 1000) - { - res = s.toString(); - scale = "o/s"; - } - else if (s < 1000000) - { - res = Math.floor(s/100) / 10; - scale = "Ko/s"; - } - else - { - res = Math.floor(s/100000) / 10; - scale = "Mo/s"; - } - if (res == 0) - return ''; - else - return res.toString() + ' ' + scale; -} - -function milliseconds_to_time_string (milliseconds) -{ - function numberEnding (number) { - return (number > 1) ? 's' : ''; - } - - var temp = Math.floor(milliseconds / 1000); - var years = Math.floor(temp / 31536000); - if (years) { - return years + ' year' + numberEnding(years); - } - var days = Math.floor((temp %= 31536000) / 86400); - if (days) { - return days + ' day' + numberEnding(days); - } - var hours = Math.floor((temp %= 86400) / 3600); - if (hours) { - return hours + ' hour' + numberEnding(hours); - } - var minutes = Math.floor((temp %= 3600) / 60); - if (minutes) { - return minutes + ' minute' + numberEnding(minutes); - } - var seconds = temp % 60; - if (seconds) { - return seconds + ' second' + numberEnding(seconds); - } - return 'less than a second'; -} - -function upload_time_estimation_time() -{ - // Estimate remaining time - if (upload_time_estimation_moving_average_speed == 0) - return 0; - return (upload_time_estimation_total_size - upload_time_estimation_transfered_size) - / upload_time_estimation_moving_average_speed; -} - -var chrono_last_update = 0; -var chrono_time_ms = 0; -var chrono_time_ms_last_update = 0; -function chrono_update(time_ms) -{ - var d = new Date(); - var chrono = 0; - // Don't update too often - if (d.getTime() - chrono_last_update < 3000 && - chrono_time_ms_last_update > 0) - chrono = chrono_time_ms; - else - { - chrono_last_update = d.getTime(); - chrono_time_ms = time_ms; - chrono = time_ms; - chrono_time_ms_last_update = d.getTime(); - } - - // Adjust chrono for smooth estimation - chrono = chrono - (d.getTime() - chrono_time_ms_last_update); - - // Let's update chronometer - var time_str = ''; - if (chrono > 0) - time_str = milliseconds_to_time_string (chrono); - return time_str; -} diff --git a/sources/lib/lang.php b/sources/lib/lang.php deleted file mode 100644 index 79e32d2..0000000 --- a/sources/lib/lang.php +++ /dev/null @@ -1,107 +0,0 @@ - - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, seelib/config.local.php
file and give the write ' .
- 'permission to the web server (preferred solution), or give the ' .
- 'write permission to the web server on the lib
' .
- 'directory.' => 'Le fichier de configuration local ne peut être créé. Creez le fichier lib/config.local.php
et donnez lui les droits d\'écriture par le serveur web (solution préférable) ou bien donnez les accès en écriture au dossier lib
',
- 'The local configuration is not writable by the web server. ' .
- 'Give the write permission to the web server on the ' .
- 'lib/config.local.php
file.' => 'Le fichier de configuration local ne peut être écrit. Donnez les droits d\'écriture au fichier lib/config.local.php
par le serveur web.',
- 'Installation of Jirafeau' => 'Installation de Jirafeau',
- 'step' => 'étape',
- 'out of' => 'sur',
- 'Administration password' => 'Mot de passe d\'administration',
- 'Finalisation' => 'Finalisation',
- 'Jirafeau is setting the website according to the configuration you provided.' => 'Jirafeau se configure selon les paramêtres donnés',
- 'Previous step' => 'Etape précedente',
- 'Retry this step' => 'Ressayer cette étape',
- 'Jirafeau is now fully operational' => 'Jirafeau est maintenant utilisable',
- 'Information' => 'Information',
- 'The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: "http://www.example.com/". Do not forget the trailing slash!'
- => 'L\'adresse d\'origine de Jirafeau est la première partie de l\'URL (slash de fin inclue). Par exemple: "http://www.exemple.com/". N\'oubliez pas le slash de fin !',
- 'Base address' => 'Addresse d\'origine',
- 'The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!'
- => 'Le dossier "data" est là où seront stoqués les fichiers ainsi que leurs informations. Ce dossier ne devrait pas être accessible directement par l\'utilisateur. N\'oubliez pas le slash de fin !',
- 'Data directory' => 'Dossier de stockage des données',
- 'Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user\'s browser).'
- => 'Jirafeau supporte plusieurs languages. Choisissez un langage spécific ou Automatic (la langue utilisée est alors fournie par le navigateur du visiteur).',
- 'Choose the default language' => 'Choisissez la langue par defaut',
- 'Next step' => 'Etape suivante',
- 'Jirafeau has an administration interface (through admin.php). ' .
- 'You can set a password to access the interface or leave it empty ' .
- 'to disable the interface.' => 'Jirafeau a une interface d\'administration (accessible via admin.php). Vous pouvez saisir un mot de passe pour y acceder ou ne pas en mettre pour désactiver l\'accès à l\'interface.',
- 'Administration password' => 'Mot de passe d\'administration',
- /* admin.php */
- 'Sorry, the admin interface is not enabled.' => 'Désolé, l\'interface d\'administration n\'est pas activée.',
- 'Sorry, you are not authenticated on admin interface.' => 'Désolé, vous n\'êtes pas authentifié sur l\'interface d\'administration',
- 'Login' => 'Connexion',
- 'Wrong password.' => 'Mot de passe invalide.',
- 'Admin interface' => 'Interface d\'administration',
- 'Clean expired files' => 'Nettoyer les fichiers périmés',
- 'Clean old unfinished transfers' => 'Nettoyer les anciens transferts inachevés',
- 'Clean' => 'Nettoyage',
- 'Search files by name' => 'Rechercher les fichiers par leur nom',
- 'Search' => 'Rechercher',
- 'List all files' => 'Lister tous les fichiers',
- 'List' => 'Lister',
- 'Actions' => 'Actions',
- 'Search files by file hash' => 'Rechercher par empreinte de fichier',
- 'Search a specific link' => 'Rechercher un lien particulier',
- 'Number of cleaned files' => 'Nombre de fichiers nettoyés',
- 'Logout' => 'Déconnexion',
- 'You are now loggued out' => 'Vous êtes maintenant déconnecté',
- 'Link deleted' => 'Lien supprimé',
- 'Filename' => 'Nom',
- 'file' => 'fichier',
- 'link' => 'lien',
- 'Type' => 'Type',
- 'Size' => 'Taille',
- 'Expire' => 'Expiration',
- 'Onetime' => 'Une fois',
- 'Upload date' => 'Date d\'envoie',
- 'Origin' => 'Origine',
- 'Action' => 'Action',
- 'Del link' => 'Supprimer le lien',
- 'Del file and links' => 'Supprimer fichier et liens',
- 'Deleted links' => 'Liens supprimés',
- /* script.php */
- 'Welcome to Jirafeau\'s query interface' => 'Bienvenue sur l\'interface programmable de Jirafeau',
- 'This interface permits to script your uploads and downloads.' => 'Cette interface permet de programmer vos envoie et téléversements.',
- 'The instructions above show how to query this interface.' => 'Les instructions ci-dessous montrent comment interroger cette interface.',
- 'Get server capacity' => 'Récupérer la capacité d\'envoie du serveur',
- 'Maximal allowed size of an uploaded file' => 'Récupérer la taille maximal autorisée d\'un envoie de fichier',
- 'First line returns size (in MB).' => 'La première ligne correspond à la taille exprimée en MB.',
- 'Get Jirafeau\'s version' => 'Récupérer la version de Jirafeau',
- 'Send a GET query to' => 'Envoyez une requette GET à',
- 'Send a POST query to' => 'Envoyez une requette POST à',
- 'Upload a file' => 'Envoyer un fichier',
- 'Get a file' => 'Récupérer un ficher',
- 'Required' => 'Requis',
- 'Optional' => 'Optionel',
- 'Parameters' => 'Paramètres',
- 'This will return brut text content.' => 'Retourne un texte brut.',
- 'First line is the download reference and the second line the delete code.' => 'La première ligne correspond à la reference de l\'envoie et la seconde ligne correspond au code de suppréssion.',
- 'First line is the server capacity (in Bytes).' => 'La première ligne correspond à la capacité du serveur (en octets).',
- 'Example' => 'Exemple',
- 'If a password has been set, send a POST request with it.' => 'Si un mot de passe a été définis, envoyer une requette POST avec.',
- 'Delete a file' => 'Supprimer un fichier',
- 'This will return "Ok" if succeeded, "Error" otherwhise.' => 'Retourne "OK" en cas de succès, "Error" dans le cas contraire.',
- 'Get a generated script' => 'Récupérer un script généré',
- 'This will return brut text content of the code.' => 'Renvoie le code sous forme the texte brut.',
- 'Initalize an asynchronous transfer' => 'Initialiser un transfert asynchrone',
- 'The goal is to permit to transfer big file, chunk by chunk.' => 'Le but est de permettre de transférer de gros fichiers, morceaux par morceaux.',
- 'Chunks of data must be sent in order.' => 'Chaque morceau doit être envoyé dans l\'ordre.',
- 'First line is the asynchronous transfer reference and the second line the code to use in the next operation.'
- => 'La première ligne correspond à la référence de transfert asynchrone, la seconde au code à utiliser dans la prochaine requette.',
- 'Push data during asynchronous transfer' => 'Envoyer des données pendant un transfert asynchrone',
- 'Returns the next code to use.' => 'Renvoie le prochain code à utiliser.',
- 'Finalize asynchronous transfer' => 'Finaliser un transfert asynchrone',
- 'This will return "Ok" or "Error" string.' => 'Retourn la chaine "Ok" ou "Error".',
- );
- ?>
diff --git a/sources/lib/lang/template.php b/sources/lib/lang/template.php
deleted file mode 100644
index 990be64..0000000
--- a/sources/lib/lang/template.php
+++ /dev/null
@@ -1,157 +0,0 @@
- '',
- 'Select a file' => '',
- 'Send' => '',
- 'Uploading ...' => '',
- 'One time download' => '',
- 'Password' => '',
- 'Time limit' => '',
- 'Maximum file size' => '',
- 'powered by Open-Source project Jirafeau' => '',
- 'Jirafeau Project' => '',
- 'One minute' => '',
- 'One hour' => '',
- 'One day' => '',
- 'One week' => '',
- 'One month' => '',
- 'One year' => '',
- 'None' => '',
- 'Upload password' => '',
- 'File is too big' => '',
- 'File size is limited to' => '',
- 'The file directory is not writable' => '',
- 'The link directory is not writable' => '',
- 'The async directory is not writable!' => '',
- 'Installer script still present' => '',
- 'Please make sure to delete the installer script "install.php" before continuing.' => '',
- 'An error occurred.' => '',
- 'File uploaded !' => '',
- 'Download page' => '',
- 'This file is valid until the following date' => '',
- 'View link' => '',
- 'Direct download link' => '',
- 'Delete link' => '',
- /* f.php */
- 'Download' => '',
- 'Preview' => '',
- 'Sorry, the requested file is not found' => '',
- 'File not available.' => '',
- 'File has been deleted.' => '',
- 'The time limit of this file has expired.' => '',
- 'Password protection' => '',
- 'Give the password of this file' => '',
- 'Access denied' => '',
- 'You are about to download' => '',
- 'By using our services, you accept our' => '',
- 'Term Of Service' => '',
- /* functions.php */
- 'Internal error during file creation.' => '',
- /* install.hpp */
- 'This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.' => '',
- 'The following directory could not be created' => '',
- 'You should create this directory manually.' => '',
- 'The following directory is not writable' => '',
- 'You should give the write permission to the web server on this directory.' => '',
- 'Here is a solution' => '',
- 'The local configuration file could not be created. Create a ' .
- 'lib/config.local.php
file and give the write ' .
- 'permission to the web server (preferred solution), or give the ' .
- 'write permission to the web server on the lib
' .
- 'directory.' => '',
- 'The local configuration is not writable by the web server. ' .
- 'Give the write permission to the web server on the ' .
- 'lib/config.local.php
file.' => '',
- 'Installation of Jirafeau' => '',
- 'step' => '',
- 'out of' => '',
- 'Administration password' => '',
- 'Finalisation' => '',
- 'Jirafeau is setting the website according to the configuration you provided.' => '',
- 'Previous step' => '',
- 'Retry this step' => '',
- 'Jirafeau is now fully operational' => '',
- 'Information' => '',
- 'The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: "http://www.example.com/". Do not forget the trailing slash!'
- => '',
- 'Base address' => '',
- 'The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!'
- => '',
- 'Data directory' => '',
- 'Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user\'s browser).'
- => '',
- 'Choose the default language' => '',
- 'Next step' => '',
- '' .
- 'You can set a password to access the interface or leave it empty ' .
- 'to disable the interface.' => '',
- 'Administration password' => '',
- /* admin.php */
- 'Sorry, the admin interface is not enabled.' => '',
- 'Sorry, you are not authenticated on admin interface.' => '',
- 'Login' => '',
- 'Wrong password.' => '',
- 'Admin interface' => '',
- 'Clean expired files' => '',
- 'Clean old unfinished transfers' => '',
- 'Clean' => '',
- 'Search files by name' => '',
- 'Search' => '',
- 'List all files' => '',
- 'List' => '',
- 'Actions' => '',
- 'Search files by file hash' => '',
- 'Search a specific link' => '',
- 'Number of cleaned files' => '',
- 'Logout' => '',
- 'You are now loggued out' => '',
- 'Link deleted' => '',
- 'Filename' => '',
- 'file' => '',
- 'link' => '',
- 'Type' => '',
- 'Size' => '',
- 'Expire' => '',
- 'Onetime' => '',
- 'Upload date' => '',
- 'Origin' => '',
- 'Action' => '',
- 'Del link' => '',
- 'Del file and links' => '',
- 'Deleted links' => '',
- /* script.php */
- 'Welcome to Jirafeau\'s query interface' => '',
- 'This interface permits to script your uploads and downloads.' => '',
- 'The instructions above show how to query this interface.' => '',
- 'Get server capacity' => '',
- 'Maximal allowed size of an uploaded file' => '',
- 'First line returns size (in MB).' => '',
- 'Get Jirafeau\'s version' => '',
- 'Send a GET query to' => '',
- 'Send a POST query to' => '',
- 'Upload a file' => '',
- 'Get a file' => '',
- 'Required' => '',
- 'Optional' => '',
- 'Parameters' => '',
- 'This will return brut text content.' => '',
- 'First line is the download reference and the second line the delete code.' => '',
- 'First line is the server capacity (in Bytes).' => '',
- 'Example' => '',
- 'If a password has been set, send a POST request with it.' => '',
- 'Delete a file' => '',
- 'This will return "Ok" if succeeded, "Error" otherwhise.' => '',
- 'Get a generated script' => '',
- 'This will return brut text content of the code.' => '',
- 'Initalize an asynchronous transfer' => '',
- 'The goal is to permit to transfer big file, chunk by chunk.' => '',
- 'Chunks of data must be sent in order.' => '',
- 'First line is the asynchronous transfer reference and the second line the code to use in the next operation.'
- => '',
- 'Push data during asynchronous transfer' => '',
- 'Returns the next code to use.' => '',
- 'Finalize asynchronous transfer' => '',
- 'This will return "Ok" or "Error" string.' => '',
- );
-?>
diff --git a/sources/lib/locales/ar.json b/sources/lib/locales/ar.json
deleted file mode 100644
index d681a6a..0000000
--- a/sources/lib/locales/ar.json
+++ /dev/null
@@ -1,112 +0,0 @@
-{
- "Access denied": "",
- "Action": "",
- "Actions": "",
- "Admin interface": "",
- "Administration password": "",
- "An error occurred.": "",
- "Base address": "",
- "By using our services, you accept our": "",
- "Choose the default language": "",
- "Clean": "",
- "Clean expired files": "",
- "Clean old unfinished transfers": "",
- "Data directory": "",
- "Del file and links": "",
- "Del link": "",
- "Delete link": "",
- "Deleted links": "",
- "Direct download link": "",
- "Download": "",
- "Download page": "",
- "Expire": "",
- "File has been deleted.": "",
- "File is too big": "",
- "File not available.": "",
- "File size is limited to": "",
- "File uploaded !": "",
- "Filename": "",
- "Finalisation": "",
- "Give the password of this file": "",
- "Here is a solution": "",
- "Information": "",
- "Installation of Jirafeau": "",
- "Installer script still present": "",
- "Internal error during file creation.": "",
- "Jirafeau Project": "",
- "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
- "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "",
- "Jirafeau is now fully operational": "",
- "Jirafeau is setting the website according to the configuration you provided.": "",
- "Jirafeau, your web file repository": "",
- "Link deleted": "",
- "List": "",
- "List all files": "",
- "Login": "",
- "Logout": "",
- "Maximum file size": "",
- "Next step": "",
- "None": "",
- "Number of cleaned files": "",
- "One day": "",
- "One hour": "",
- "One minute": "",
- "One month": "",
- "One time download": "",
- "One week": "",
- "One year": "",
- "Onetime": "",
- "Origin": "",
- "Password": "",
- "Password protection": "",
- "Please make sure to delete the installer script \"install.php\" before continuing.": "",
- "Preview": "",
- "Previous step": "",
- "Retry this step": "",
- "Search": "",
- "Search a specific link": "",
- "Search files by file hash": "",
- "Search files by name": "",
- "Select a file": "",
- "Send": "",
- "Size": "",
- "Sorry, the admin interface is not enabled.": "",
- "Sorry, the requested file is not found": "",
- "Sorry, you are not authenticated on admin interface.": "",
- "Term Of Service": "",
- "The async directory is not writable!": "",
- "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
- "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
- "The file directory is not writable": "",
- "The following directory could not be created": "",
- "The following directory is not writable": "",
- "The link directory is not writable": "",
- "The local configuration file could not be created. Create a lib/config.local.php
file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the lib
directory.": "",
- "The local configuration is not writable by the web server. Give the write permission to the web server on the 'lib/config.local.php
file.": "",
- "The time limit of this file has expired.": "",
- "This file is valid until the following date": "",
- "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "",
- "Time limit": "",
- "Type": "",
- "Upload date": "",
- "Upload password": "",
- "Uploading ...": "",
- "View link": "",
- "Warning, this file will self-destruct after being read": "",
- "Wrong password.": "",
- "You are about to download": "",
- "You are now loggued out": "",
- "You should create this directory manually.": "",
- "You should give the write permission to the web server on this directory.": "",
- "day": "",
- "file": "",
- "hour": "",
- "less than a second": "",
- "link": "",
- "minute": "",
- "out of": "",
- "powered by Open-Source project Jirafeau": "",
- "second": "",
- "step": "",
- "year": ""
-}
\ No newline at end of file
diff --git a/sources/lib/locales/bn_IN.json b/sources/lib/locales/bn_IN.json
deleted file mode 100644
index d681a6a..0000000
--- a/sources/lib/locales/bn_IN.json
+++ /dev/null
@@ -1,112 +0,0 @@
-{
- "Access denied": "",
- "Action": "",
- "Actions": "",
- "Admin interface": "",
- "Administration password": "",
- "An error occurred.": "",
- "Base address": "",
- "By using our services, you accept our": "",
- "Choose the default language": "",
- "Clean": "",
- "Clean expired files": "",
- "Clean old unfinished transfers": "",
- "Data directory": "",
- "Del file and links": "",
- "Del link": "",
- "Delete link": "",
- "Deleted links": "",
- "Direct download link": "",
- "Download": "",
- "Download page": "",
- "Expire": "",
- "File has been deleted.": "",
- "File is too big": "",
- "File not available.": "",
- "File size is limited to": "",
- "File uploaded !": "",
- "Filename": "",
- "Finalisation": "",
- "Give the password of this file": "",
- "Here is a solution": "",
- "Information": "",
- "Installation of Jirafeau": "",
- "Installer script still present": "",
- "Internal error during file creation.": "",
- "Jirafeau Project": "",
- "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
- "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "",
- "Jirafeau is now fully operational": "",
- "Jirafeau is setting the website according to the configuration you provided.": "",
- "Jirafeau, your web file repository": "",
- "Link deleted": "",
- "List": "",
- "List all files": "",
- "Login": "",
- "Logout": "",
- "Maximum file size": "",
- "Next step": "",
- "None": "",
- "Number of cleaned files": "",
- "One day": "",
- "One hour": "",
- "One minute": "",
- "One month": "",
- "One time download": "",
- "One week": "",
- "One year": "",
- "Onetime": "",
- "Origin": "",
- "Password": "",
- "Password protection": "",
- "Please make sure to delete the installer script \"install.php\" before continuing.": "",
- "Preview": "",
- "Previous step": "",
- "Retry this step": "",
- "Search": "",
- "Search a specific link": "",
- "Search files by file hash": "",
- "Search files by name": "",
- "Select a file": "",
- "Send": "",
- "Size": "",
- "Sorry, the admin interface is not enabled.": "",
- "Sorry, the requested file is not found": "",
- "Sorry, you are not authenticated on admin interface.": "",
- "Term Of Service": "",
- "The async directory is not writable!": "",
- "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
- "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
- "The file directory is not writable": "",
- "The following directory could not be created": "",
- "The following directory is not writable": "",
- "The link directory is not writable": "",
- "The local configuration file could not be created. Create a lib/config.local.php
file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the lib
directory.": "",
- "The local configuration is not writable by the web server. Give the write permission to the web server on the 'lib/config.local.php
file.": "",
- "The time limit of this file has expired.": "",
- "This file is valid until the following date": "",
- "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "",
- "Time limit": "",
- "Type": "",
- "Upload date": "",
- "Upload password": "",
- "Uploading ...": "",
- "View link": "",
- "Warning, this file will self-destruct after being read": "",
- "Wrong password.": "",
- "You are about to download": "",
- "You are now loggued out": "",
- "You should create this directory manually.": "",
- "You should give the write permission to the web server on this directory.": "",
- "day": "",
- "file": "",
- "hour": "",
- "less than a second": "",
- "link": "",
- "minute": "",
- "out of": "",
- "powered by Open-Source project Jirafeau": "",
- "second": "",
- "step": "",
- "year": ""
-}
\ No newline at end of file
diff --git a/sources/lib/locales/cs.json b/sources/lib/locales/cs.json
deleted file mode 100644
index bbaea8d..0000000
--- a/sources/lib/locales/cs.json
+++ /dev/null
@@ -1,112 +0,0 @@
-{
- "Access denied": "Přístup zamítnut",
- "Action": "Akce",
- "Actions": "Akce",
- "Admin interface": "Administrační rozhraní",
- "Administration password": "Heslo do administrace",
- "An error occurred.": "Chyba.",
- "Base address": "",
- "By using our services, you accept our": "",
- "Choose the default language": "Zvolte výchozí jazyk",
- "Clean": "Vyčistit",
- "Clean expired files": "Vyčistit soubory, které vypršely",
- "Clean old unfinished transfers": "Vyčistit nedokončené přenosy",
- "Data directory": "Data adresář",
- "Del file and links": "",
- "Del link": "",
- "Delete link": "Odkaz na smazání",
- "Deleted links": "Smazané odkazy",
- "Direct download link": "Přímý odkaz na stažení",
- "Download": "Stáhnout",
- "Download page": "",
- "Expire": "Vyprší",
- "File has been deleted.": "Soubor byl smazán.",
- "File is too big": "Soubor je moc velký",
- "File not available.": "Soubor není dostupný.",
- "File size is limited to": "Velikost souboru je limitována na",
- "File uploaded !": "Soubor nahrán !",
- "Filename": "Název souboru",
- "Finalisation": "Dokončování",
- "Give the password of this file": "Zadejte heslo k souboru",
- "Here is a solution": "",
- "Information": "Informace",
- "Installation of Jirafeau": "",
- "Installer script still present": "Instalační skript je stále přítomen",
- "Internal error during file creation.": "Chyba při vytváření souboru.",
- "Jirafeau Project": "Jirafeau projekt",
- "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
- "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "Jirafeau je světový. Vyberte si jazyk nebo bude zvolen automaticky (podle uživatelského prohlížeče).",
- "Jirafeau is now fully operational": "",
- "Jirafeau is setting the website according to the configuration you provided.": "Jirafeau je nastaveno podle zadané konfigurace.",
- "Jirafeau, your web file repository": "",
- "Link deleted": "Odkaz smazán",
- "List": "",
- "List all files": "Zobrazit všechny soubory",
- "Login": "Přihlášení",
- "Logout": "Odhlásit",
- "Maximum file size": "Maximální velikost souboru",
- "Next step": "",
- "None": "",
- "Number of cleaned files": "Počet vyčištěných souborů",
- "One day": "Den",
- "One hour": "Hodinu",
- "One minute": "Minutu",
- "One month": "Měsíc",
- "One time download": "Jednorázové stáhnutí",
- "One week": "Týden",
- "One year": "Rok",
- "Onetime": "Jednorázové",
- "Origin": "Původ",
- "Password": "Heslo",
- "Password protection": "",
- "Please make sure to delete the installer script \"install.php\" before continuing.": "Prosím ujistěte se, že jste odstranili soubor \"install.php\" předtím než budete pokračovat.",
- "Preview": "Náhled",
- "Previous step": "Přechozí krok",
- "Retry this step": "Zkusit znovu",
- "Search": "Hledat",
- "Search a specific link": "Hledat odkaz",
- "Search files by file hash": "Hledat soubory podle hashe",
- "Search files by name": "Hledat podle názvu",
- "Select a file": "Vybrat soubor",
- "Send": "Odeslat",
- "Size": "Velikost",
- "Sorry, the admin interface is not enabled.": "Omlouváme se, administrační rozhraní není povoleno.",
- "Sorry, the requested file is not found": "Omlouváme se, ale soubor se nepovedlo nalézt",
- "Sorry, you are not authenticated on admin interface.": "",
- "Term Of Service": "Podmínky použití",
- "The async directory is not writable!": "Do adresáře async se nedá zapisovat!",
- "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
- "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "Adresář s daty kde se nachází soubory a všechny relevantní informace. Doporučujeme tento adresář umístit mimo adresář s webovými stránkami, nebo alespoň omezit práva pro tento adresář. Nezapoměňte na poslední lomítko!",
- "The file directory is not writable": "",
- "The following directory could not be created": "Tento adresář nemůže být vytvořen",
- "The following directory is not writable": "Do adresáře nelze zapisovat",
- "The link directory is not writable": "",
- "The local configuration file could not be created. Create a lib/config.local.php
file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the lib
directory.": "",
- "The local configuration is not writable by the web server. Give the write permission to the web server on the 'lib/config.local.php
file.": "Konfigurace nemůže být změněna webovým serverem. Nastavte práva pro zápis webovému serveru pro soubor 'lib/config.local.php
'.",
- "The time limit of this file has expired.": "Časový limit souboru již vypršel.",
- "This file is valid until the following date": "Tento soubor vyprší po následujícím datu",
- "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "Tento soubor byl vygenerovaný během instalačního procesu. Můžete jej editovat. Pro konfigurační možnosti se můžete podívat do souboru config.original.php.",
- "Time limit": "Časový limit",
- "Type": "Typ",
- "Upload date": "Datum nahrání",
- "Upload password": "",
- "Uploading ...": "Nahrávání ...",
- "View link": "Zobrazit odkaz",
- "Warning, this file will self-destruct after being read": "Pozor, soubor bude smazán jakmile bude přečten",
- "Wrong password.": "Špatné heslo.",
- "You are about to download": "",
- "You are now loggued out": "Odhlášen",
- "You should create this directory manually.": "Vytvořte tento adresář manuálně.",
- "You should give the write permission to the web server on this directory.": "",
- "file": "soubor",
- "link": "odkaz",
- "out of": "",
- "powered by Open-Source project Jirafeau": "poháněno open-source projektem Jirafeau",
- "step": "krok",
- "year": "",
- "day": "",
- "minute": "",
- "hour": "",
- "second": "",
- "less than a second": ""
-}
diff --git a/sources/lib/locales/de.json b/sources/lib/locales/de.json
deleted file mode 100644
index 602b16a..0000000
--- a/sources/lib/locales/de.json
+++ /dev/null
@@ -1,112 +0,0 @@
-{
- "Access denied": "Zugriff verweigert",
- "Action": "Aktion",
- "Actions": "Aktionen",
- "Admin interface": "Admin-Oberfläche",
- "Administration password": "Administrator-Passwort",
- "An error occurred.": "Ein Fehler ist aufgetreten.",
- "Base address": "Basisadresse",
- "By using our services, you accept our": "Durch die Nutzung unserer Dienste, akzeptieren Sie unsere",
- "Choose the default language": "Wählen Sie die Standardsprache",
- "Clean": "Aufräumen",
- "Clean expired files": "Abgelaufene Dateien löschen",
- "Clean old unfinished transfers": "Alten unfertigen Übertragungen löschen",
- "Data directory": "Datenverzeichnis",
- "Del file and links": "Datei und Link löschen",
- "Del link": "Link löschen",
- "Delete link": "Link zum Löschen der Datei",
- "Deleted links": "Gelöschte Links",
- "Direct download link": "Direkter Download-Link",
- "Download": "Herunterladen",
- "Download page": "Download-Seite",
- "Expire": "Ablauffrist",
- "File has been deleted.": "Die Datei wurde gelöscht.",
- "File is too big": "Die Datei ist zu groß",
- "File not available.": "Datei nicht gefunden.",
- "File size is limited to": "Die maximale Dateigröße ist",
- "File uploaded !": "Die Datei wurde hochgeladen!",
- "Filename": "Dateiname",
- "Finalisation": "Abschluss",
- "Give the password of this file": "Bitte Passwort für diese Datei eingeben",
- "Here is a solution": "Hier ist eine Lösung",
- "Information": "Information",
- "Installation of Jirafeau": "Installation von Jirafeau",
- "Installer script still present": "Installer-Skript noch vorhanden",
- "Internal error during file creation.": "Interner Fehler während der Dateierstellung.",
- "Jirafeau Project": "Jirafeau Projekt",
- "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "Jirafeau hat eine Administrations-Oberfläche (durch admin.php). Sie können ein Kennwort zum Zugriff auf die Schnittstelle festlegen oder lassen Sie es leer, um die Schnittstelle zu deaktivieren.",
- "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "Jirafeau ist internationalisiert. Wählen Sie eine bestimmte Sprache oder Automatik (die Sprache wird vom Browser des Benutzers bereitgestellt).",
- "Jirafeau is now fully operational": "Jirafeau ist nun voll funktionsfähig",
- "Jirafeau is setting the website according to the configuration you provided.": "Jirafeau richtet die Webseite entsprechend der Konfiguration, die Sie angegeben haben, ein.",
- "Jirafeau, your web file repository": "Jirafeau, Ihre Web-Datei-repository",
- "Link deleted": "Link gelöscht",
- "List": "Auflisten",
- "List all files": "Alle Dateien auflisten",
- "Login": "Login",
- "Logout": "Ausloggen",
- "Maximum file size": "Maximale Dateigröße",
- "Next step": "Nächster Schritt",
- "None": "Nie",
- "Number of cleaned files": "Anzahl der gelöschten Dateien",
- "One day": "Ein Tag",
- "One hour": "Eine Stunde",
- "One minute": "Eine Minute",
- "One month": "Ein Monat",
- "One time download": "Einmaliger Download",
- "One week": "Eine Woche",
- "One year": "Ein Jahr",
- "Onetime": "Einmalig",
- "Origin": "Ursprung",
- "Password": "Passwort",
- "Password protection": "Passwort-Schutz",
- "Please make sure to delete the installer script \"install.php\" before continuing.": "Bitte achten Sie darauf, das Installationsskript \"install.php\" zu löschen, bevor Sie fortfahren.",
- "Preview": "Vorschau",
- "Previous step": "Vorherigen Schritt",
- "Retry this step": "Diesen Schritt wiederholen",
- "Search": "Suchen",
- "Search a specific link": "Einen bestimmten Link suchen",
- "Search files by file hash": "Suche Dateien nach Dateihash",
- "Search files by name": "Dateien nach Name suchen",
- "Select a file": "Datei auswählen",
- "Send": "Hochladen",
- "Size": "Größe",
- "Sorry, the admin interface is not enabled.": "Sorry, die Admin-Oberfläche ist deaktiviert.",
- "Sorry, the requested file is not found": "Leider wurde die angeforderte Datei nicht gefunden",
- "Sorry, you are not authenticated on admin interface.": "Sorry, Sie sind nicht auf die Admin-Oberfläche authentifiziert.",
- "Term Of Service": "Allgemeine Geschäftsbedingungen",
- "The async directory is not writable!": "Das Async-Verzeichnis ist nicht beschreibbar!",
- "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "Die Basisadresse von Jirafeau ist der erste Teil der URL, bis (und einschließlich) dem letzten Schrägstrich. Zum Beispiel: \"http://www.example.com/\". Vergessen Sie nicht den abschließenden Schrägstrich!",
- "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "Das Datenverzeichnis ist, wo Ihre Dateien und Informationen über Ihre Dateien gespeichert werden. Sie sollten dieses Verzeichnis außerhalb Ihrer Webseiten setzen, oder zumindest den Zugriff auf dieses Verzeichnis beschränken. Vergessen Sie nicht den abschließenden Schrägstrich!",
- "The file directory is not writable": "Das Dateiverzeichnis ist nicht beschreibbar",
- "The following directory could not be created": "Der folgende Ordner konnte nicht erstellt werden",
- "The following directory is not writable": "Das folgende Verzeichnis ist nicht beschreibbar",
- "The link directory is not writable": "Das Link-Verzeichnis ist nicht beschreibbar",
- "The local configuration file could not be created. Create a lib/config.local.php
file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the lib
directory.": "Die lokale Konfiguration-Datei konnte nicht erstellt werden. Erstellen Sie die Datei lib/config.local.php
und geben Sie die Schreibberechtigung auf dem Webserver (bevorzugte Lösung) oder geben Sie die Schreibberechtigung für dem Webserver in das Lib
-Verzeichnis.",
- "The local configuration is not writable by the web server. Give the write permission to the web server on the 'lib/config.local.php
file.": "Die lokale Konfiguration ist nicht vom Webserver beschreibbar. Geben Sie die Schreibberechtigung auf dem Webserver auf die \"lib/config.local.php
Datei.",
- "The time limit of this file has expired.": "Die zeitliche Begrenzung dieser Datei ist abgelaufen.",
- "This file is valid until the following date": "Diese Datei ist gültig bis",
- "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "Diese Datei wurde vom Installationsprozess generiert. Sie können diese bearbeiten. Sehen Sie config.original.php, um die Konfigurationsparameter zu verstehen.",
- "Time limit": "Ablauffrist",
- "Type": "Typ",
- "Upload date": "Datum",
- "Upload password": "Passwort",
- "Uploading ...": "Lädt hoch ...",
- "View link": "Vorschau-Link",
- "Warning, this file will self-destruct after being read": "Achtung, diese Datei wird automatisch gelöscht, nachdem diese gelesen wird",
- "Wrong password.": "Falsches Passwort.",
- "You are about to download": "Es wird heruntergeladen",
- "You are now loggued out": "Sie wurden abgemeldet",
- "You should create this directory manually.": "Sie sollten dieses Verzeichnis manuell erstellen.",
- "You should give the write permission to the web server on this directory.": "Geben Sie die Schreibberechtigung an dem Webserver in dieses Verzeichnis.",
- "day": "Tag",
- "file": "Datei",
- "hour": "Stunde",
- "less than a second": "weniger als einer Sekunde",
- "link": "Link",
- "minute": "Minute",
- "out of": "von",
- "powered by Open-Source project Jirafeau": "angetrieben von Open-Source-Projekt Jirafeau",
- "second": "Sekunde",
- "step": "Schritt",
- "year": "Jahr"
-}
\ No newline at end of file
diff --git a/sources/lib/locales/es.json b/sources/lib/locales/es.json
deleted file mode 100644
index d681a6a..0000000
--- a/sources/lib/locales/es.json
+++ /dev/null
@@ -1,112 +0,0 @@
-{
- "Access denied": "",
- "Action": "",
- "Actions": "",
- "Admin interface": "",
- "Administration password": "",
- "An error occurred.": "",
- "Base address": "",
- "By using our services, you accept our": "",
- "Choose the default language": "",
- "Clean": "",
- "Clean expired files": "",
- "Clean old unfinished transfers": "",
- "Data directory": "",
- "Del file and links": "",
- "Del link": "",
- "Delete link": "",
- "Deleted links": "",
- "Direct download link": "",
- "Download": "",
- "Download page": "",
- "Expire": "",
- "File has been deleted.": "",
- "File is too big": "",
- "File not available.": "",
- "File size is limited to": "",
- "File uploaded !": "",
- "Filename": "",
- "Finalisation": "",
- "Give the password of this file": "",
- "Here is a solution": "",
- "Information": "",
- "Installation of Jirafeau": "",
- "Installer script still present": "",
- "Internal error during file creation.": "",
- "Jirafeau Project": "",
- "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
- "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "",
- "Jirafeau is now fully operational": "",
- "Jirafeau is setting the website according to the configuration you provided.": "",
- "Jirafeau, your web file repository": "",
- "Link deleted": "",
- "List": "",
- "List all files": "",
- "Login": "",
- "Logout": "",
- "Maximum file size": "",
- "Next step": "",
- "None": "",
- "Number of cleaned files": "",
- "One day": "",
- "One hour": "",
- "One minute": "",
- "One month": "",
- "One time download": "",
- "One week": "",
- "One year": "",
- "Onetime": "",
- "Origin": "",
- "Password": "",
- "Password protection": "",
- "Please make sure to delete the installer script \"install.php\" before continuing.": "",
- "Preview": "",
- "Previous step": "",
- "Retry this step": "",
- "Search": "",
- "Search a specific link": "",
- "Search files by file hash": "",
- "Search files by name": "",
- "Select a file": "",
- "Send": "",
- "Size": "",
- "Sorry, the admin interface is not enabled.": "",
- "Sorry, the requested file is not found": "",
- "Sorry, you are not authenticated on admin interface.": "",
- "Term Of Service": "",
- "The async directory is not writable!": "",
- "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
- "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
- "The file directory is not writable": "",
- "The following directory could not be created": "",
- "The following directory is not writable": "",
- "The link directory is not writable": "",
- "The local configuration file could not be created. Create a lib/config.local.php
file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the lib
directory.": "",
- "The local configuration is not writable by the web server. Give the write permission to the web server on the 'lib/config.local.php
file.": "",
- "The time limit of this file has expired.": "",
- "This file is valid until the following date": "",
- "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "",
- "Time limit": "",
- "Type": "",
- "Upload date": "",
- "Upload password": "",
- "Uploading ...": "",
- "View link": "",
- "Warning, this file will self-destruct after being read": "",
- "Wrong password.": "",
- "You are about to download": "",
- "You are now loggued out": "",
- "You should create this directory manually.": "",
- "You should give the write permission to the web server on this directory.": "",
- "day": "",
- "file": "",
- "hour": "",
- "less than a second": "",
- "link": "",
- "minute": "",
- "out of": "",
- "powered by Open-Source project Jirafeau": "",
- "second": "",
- "step": "",
- "year": ""
-}
\ No newline at end of file
diff --git a/sources/lib/locales/fi.json b/sources/lib/locales/fi.json
deleted file mode 100644
index e0023a6..0000000
--- a/sources/lib/locales/fi.json
+++ /dev/null
@@ -1,113 +0,0 @@
-{
- "Access denied": "Pääsy estetty",
- "Action": "Toiminto",
- "Actions": "Toiminnot",
- "Admin interface": "Ylläpito",
- "Administration password": "Ylläpitäjän salasana",
- "An error occurred.": "Virhe ilmaantui.",
- "Base address": "Perusosoite",
- "By using our services, you accept our": "Käyttäessäsi palvelua, hyväksyt",
- "Choose the default language": "Valitse oletuskieli",
- "Clean": "Siivoa",
- "Clean expired files": "Siivoa vanhentuneet tiedostot",
- "Clean old unfinished transfers": "Siivoa vanhat keskeneräiset lataukset",
- "Data directory": "Data hakemisto",
- "Del file and links": "Poista tiedosto ja linkit",
- "Del link": "Poista linkki",
- "Delete link": "Poistolinkki",
- "Deleted links": "Poistetut linkit",
- "Direct download link": "Suora latauslinkki",
- "Download": "Lataa",
- "Download page": "Lataussivu",
- "Expire": "Vanhentuu",
- "File has been deleted.": "Tiedosto poistettu.",
- "File is too big": "Tiedosto on liian iso",
- "File not available.": "Tiedostoa ei saatavilla.",
- "File size is limited to": "Tiedoston maksimikoko on",
- "File uploaded !": "Tiedosto ladattu!",
- "Filename": "Tiedostonimi",
- "Finalisation": "Viimeistely",
- "Give the password of this file": "Anna salasana tiedostolle",
- "Here is a solution": "Tässä on ratkaisu",
- "Information": "Tietoja",
- "Installation of Jirafeau": "Jirafeaun asennus",
- "Installer script still present": "Asennus skripti edelleen löytyy",
- "Internal error during file creation.": "Sisäinen virhe ilmaantui tiedostoa luodessa.",
- "Jirafeau Project": "Jirafeau Projekti",
- "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "Jirafeaussa on ylläpitosivu (admin.php:n kautta). Voit antaa salanan ottaaksesi sen käyttöön tai jättää tyjäksi poistaaksesi sen käytöstä.",
- "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "Jirafeau on monikielinen. Valitse haluamasi kieli tai käytä Automaattista tunnistusta (kieli valitaan käyttäjän selaimen kielen perusteella).",
- "Jirafeau is now fully operational": "Giraffes on nyt toiminnassa",
- "Jirafeau is setting the website according to the configuration you provided.": "Jirafeau asentaa verkkosivua antamiesi asetusten mukaan.",
- "Jirafeau, your web file repository": "Jirafeau, sinun tiedostosäilö",
- "Link deleted": "Tiedosto poistettu",
- "List": "Näytä",
- "List all files": "Näytä kaikki tiedostot",
- "Login": "Kirjaudu sisään",
- "Logout": "Kirjaudu ulos",
- "Maximum file size": "Maksimi tiedostokoko",
- "Next step": "Seuraava vaihe",
- "None": "Ikuisesti",
- "Number of cleaned files": "Siivottujen tiedostojen määrä",
- "One day": "Yksi päivä",
- "One hour": "Yksi tunti",
- "One minute": "Yksi minuutti",
- "One month": "Yksi kuukausi",
- "One time download": "Kertalataus",
- "One week": "Yksi viikko",
- "One year": "Yksi vuosi",
- "Onetime": "Kertalataus",
- "Origin": "Alkuperä",
- "Password": "Salasana",
- "Password protection": "Salasanasuojaus",
- "Please make sure to delete the installer script \"install.php\" before continuing.": "Varmista, että poistat \"install.php\" asennustiedoston ennen kuin jatkat.",
- "Preview": "Esikatsele",
- "Previous step": "Edellinen vaihe",
- "Retry this step": "Aloita alusta tämä vaihe",
- "Search": "Etsi",
- "Search a specific link": "Etsi tiettyä linkkiä",
- "Search files by file hash": "Etsi tiedostoja tiedoston hashilla",
- "Search files by name": "Etsi tiedostoja nimellä",
- "Select a file": "Valitse tiedosto",
- "Send": "Lähetä",
- "Size": "Koko",
- "Sorry, the admin interface is not enabled.": "Ylläpitotilaa ei otettu käyttöön.",
- "Sorry, the requested file is not found": "Valitettavasti hakemaasi tiedostoa ei löytynyt",
- "Sorry, you are not authenticated on admin interface.": "Sinulla ei ole oikeutta ylläpitoon.",
- "Term Of Service": "Palveluehdot",
- "The async directory is not writable!": "Async hakemistoon ei ole kirjoitusoikeutta!",
- "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "Perusosoite on Jirafeau sivuston ensimmäinen osa, ennen ensimmäistä \"/\"-merkkiä. Esimerkiksi: \"http://www.example.com/\". Älä unohda viimeistä \"/\"-merkkiä!",
- "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "Tämä on hakemisto johon tiedostot ja tiedot niistä tallennetaan. Sinun kannattaa sijoittaa se verkkosivun ulkopuolelle tai ainakin estää pääsy sinne. Älä unohda \"/\"-merkkiä lopusta!",
- "The file directory is not writable": "Tiedostojen hakemistoon ei ole kirjoitusoikeutta",
- "The following directory could not be created": "Seuraavaa hakemistoa ei voitu luoda",
- "The following directory is not writable": "Seuraava hakemistoon ei kirjoitusoikeutta",
- "The link directory is not writable": "Linkkien hakemistoon ei ole kirjoitusoikeutta",
- "The local configuration file could not be created. Create a lib/config.local.php
file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the lib
directory.": "Tiedosto config.local.php ei voitu luoda. Luo lib/config.local.php
tiedosto ja palvelimelle kirjoitusoikeus siihen (suositeltu ratkaisu) tai anna palvelimelle oikeus lib
hakemistoon.",
- "The local configuration is not writable by the web server. Give the write permission to the web server on the 'lib/config.local.php
file.": "Palvelimella ei ole kirjoitusoikeutta tiedostoon. Anna kirjoitusoikeus palvelimelle lib/config.local.php
tiedostoon.",
- "The time limit of this file has expired.": "Tiedoston voimassaoloaika umpeutunut.",
- "This file is valid until the following date": "Tiedosto on voimassa",
- "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "Tämä tiedosto luotiin asennusvaiheessa. Voit muokata sitä. Katso config.original.php ymmärtääksesi sen määrittelyt.",
- "Time limit": "Voimassaoloaika",
- "Type": "Laji",
- "Upload date": "Latauspäivämäärä",
- "Upload password": "Lähetä salasana",
- "Uploading ...": "Lähetetään...",
- "View link": "Näytä linkki",
- "Warning, this file will self-destruct after being read": "Varoitus! Tämä tiedosto tuhoutuu, kun se on ladattu",
- "Wrong password.": "Väärä salasana.",
- "You are about to download": "Olet lataamassa tiedostoa",
- "You are now loggued out": "Olet nyt kirjautunut ulos",
- "You should create this directory manually.": "Sinun tulee luoda hakemisto käsin.",
- "You should give the write permission to the web server on this directory.": "Sinun tulee antaa kirjoitusoikeus web palvelimelle tähän hakemistoon.",
- "file": "tiedosto",
- "link": "linkki",
- "out of": "/",
- "powered by Open-Source project Jirafeau": "taustalla Avoimen lähdekoodin Jirafeau projekti",
- "step": "vaihe",
- "year": "",
- "day": "",
- "minute": "",
- "hour": "",
- "second": "",
- "less than a second": ""
-
-}
diff --git a/sources/lib/locales/fr.json b/sources/lib/locales/fr.json
deleted file mode 100644
index b044538..0000000
--- a/sources/lib/locales/fr.json
+++ /dev/null
@@ -1,113 +0,0 @@
-{
- "Access denied": "Accès interdit",
- "Action": "Action",
- "Actions": "Actions",
- "Admin interface": "Interface d'administration",
- "Administration password": "Mot de passe d'administration",
- "An error occurred.": "Une erreur s'est produite.",
- "Base address": "Adresse d'origine",
- "By using our services, you accept our": "En utilisant nos services, vous acceptez nos",
- "Choose the default language": "Choisissez la langue par défaut",
- "Clean": "Nettoyage",
- "Clean expired files": "Nettoyer les fichiers périmés",
- "Clean old unfinished transfers": "Nettoyer les anciens transferts inachevés",
- "Data directory": "Dossier de stockage des données",
- "Del file and links": "Supprimer fichier et liens",
- "Del link": "Supprimer le lien",
- "Delete link": "Lien de suppression",
- "Deleted links": "Liens supprimés",
- "Direct download link": "Lien de téléchargement direct",
- "Download": "Télécharger",
- "Download page": "Page de téléchargement",
- "Expire": "Expiration",
- "File has been deleted.": "Le fichier a été supprimé.",
- "File is too big": "Le fichier est trop volumineux",
- "File not available.": "Fichier non disponible.",
- "File size is limited to": "La taille de fichier est limité à",
- "File uploaded !": "Fichier envoyé !",
- "Filename": "Nom",
- "Finalisation": "Finalisation",
- "Give the password of this file": "Donnez le mot de passe pour ce fichier",
- "Here is a solution": "Une solution possible",
- "Information": "Information",
- "Installation of Jirafeau": "Installation de Jirafeau",
- "Installer script still present": "Le script d'installation est toujours présent",
- "Internal error during file creation.": "Erreur interne lors la création de fichier.",
- "Jirafeau Project": "Projet Jirafeau",
- "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "Jirafeau a une interface d'administration (accessible via admin.php). Vous pouvez saisir un mot de passe pour y accéder ou ne pas en mettre pour désactiver l'accès à l'interface.",
- "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "Jirafeau supporte plusieurs langages. Choisissez un langage spécifique ou Automatique (la langue utilisée est alors fournie par le navigateur du visiteur).",
- "Jirafeau is now fully operational": "Jirafeau est maintenant utilisable",
- "Jirafeau is setting the website according to the configuration you provided.": "Jirafeau se configure selon les paramètres donnés.",
- "Jirafeau, your web file repository": "Jirafeau, votre dépôt de fichiers",
- "Link deleted": "Lien supprimé",
- "List": "Lister",
- "List all files": "Lister tous les fichiers",
- "Login": "Connexion",
- "Logout": "Déconnexion",
- "Maximum file size": "Taille maximale",
- "Next step": "Étape suivante",
- "None": "Aucune",
- "Number of cleaned files": "Nombre de fichiers nettoyés",
- "One day": "Une journée",
- "One hour": "Une heure",
- "One minute": "Une minute",
- "One month": "Un mois",
- "One time download": "Téléchargement unique",
- "One week": "Une semaine",
- "One year": "Une année",
- "Onetime": "Une fois",
- "Origin": "Origine",
- "Password": "Mot de passe",
- "Password protection": "Protection par mot de passe",
- "Please make sure to delete the installer script \"install.php\" before continuing.": "Merci de supprimer le fichier \"install.php\" avant de continuer.",
- "Preview": "Prévisualiser",
- "Previous step": "Étape précédente",
- "Retry this step": "Ressayer cette étape",
- "Search": "Rechercher",
- "Search a specific link": "Rechercher un lien particulier",
- "Search files by file hash": "Rechercher par empreinte de fichier",
- "Search files by name": "Rechercher les fichiers par leur nom",
- "Select a file": "Sélectionner un fichier à envoyer:",
- "Send": "Envoyer",
- "Size": "Taille",
- "Sorry, the admin interface is not enabled.": "Désolé, l'interface d'administration n'est pas activée.",
- "Sorry, the requested file is not found": "Désolé, le fichier que vous demandez n'existe pas ou n'existe plus",
- "Sorry, you are not authenticated on admin interface.": "Désolé, vous n'êtes pas authentifié sur l'interface d'administration.",
- "Term Of Service": "Conditions d'utilisation",
- "The async directory is not writable!": "Le dossier 'async' ne peut être écrit ! ",
- "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "L'adresse d'origine de Jirafeau est la première partie de l'URL (slash de fin inclue). Par exemple: \"http://www.exemple.com/\". N'oubliez pas le slash de fin !",
- "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "Le dossier \"data\" est là où seront conservés les fichiers ainsi que leurs informations. Ce dossier ne devrait pas être accessible directement par l'utilisateur. N'oubliez pas le slash de fin !",
- "The file directory is not writable": "Le dossier 'file' ne peut être écrit",
- "The following directory could not be created": "Le dossier suivant ne peut être créé",
- "The following directory is not writable": "Le dossier suivant ne peut être créé",
- "The link directory is not writable": "Le dossier 'link' ne peut être écrit",
- "The local configuration file could not be created. Create a lib/config.local.php
file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the lib
directory.": "Le fichier de configuration local ne peut être créé. Créez le fichier lib/config.local.php
et donnez lui les droits d'écriture par le serveur web (solution préférable) ou bien donnez les accès en écriture au dossier lib
.",
- "The local configuration is not writable by the web server. Give the write permission to the web server on the 'lib/config.local.php
file.": "Le fichier de configuration local ne peut être écrit. Donnez les droits d'écriture au fichier lib/config.local.php
par le serveur web.",
- "The time limit of this file has expired.": "La limite de temps est dépassée.",
- "This file is valid until the following date": "Ce fichier est valable jusqu'à la date suivante",
- "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "Ce fichier a été généré par le processus d'installation. Vous pouvez l'éditer. Merci de se référer à config.original.php pour comprendre les éléments de configuration.",
- "Time limit": "Limite de temps",
- "Type": "Type",
- "Upload date": "Date d’envoi",
- "Upload password": "Mot de passe",
- "Uploading ...": "Envoi en cours ...",
- "View link": "Lien d'affichage",
- "Warning, this file will self-destruct after being read": "Attention, ce fichier s'auto-détruira après sa lecture",
- "Wrong password.": "Mot de passe invalide.",
- "You are about to download": "Vous êtes sur le point de télécharger",
- "You are now loggued out": "Vous êtes maintenant déconnecté",
- "You should create this directory manually.": "Vous devriez créer manuellement ce dossier.",
- "You should give the write permission to the web server on this directory.": "Vous devriez donner le droits d'écriture à ce répertoire pour le rendre accessible par le serveur web.",
- "file": "fichier",
- "link": "lien",
- "out of": "sur",
- "powered by Open-Source project Jirafeau": "Propulsé par le projet Open-Source Jirafeau",
- "step": "étape",
- "year": "année",
- "day": "jour",
- "minute": "minute",
- "hour": "heure",
- "second": "seconde",
- "less than a second": "moins d'une seconde"
-
-}
diff --git a/sources/lib/locales/hi.json b/sources/lib/locales/hi.json
deleted file mode 100644
index d681a6a..0000000
--- a/sources/lib/locales/hi.json
+++ /dev/null
@@ -1,112 +0,0 @@
-{
- "Access denied": "",
- "Action": "",
- "Actions": "",
- "Admin interface": "",
- "Administration password": "",
- "An error occurred.": "",
- "Base address": "",
- "By using our services, you accept our": "",
- "Choose the default language": "",
- "Clean": "",
- "Clean expired files": "",
- "Clean old unfinished transfers": "",
- "Data directory": "",
- "Del file and links": "",
- "Del link": "",
- "Delete link": "",
- "Deleted links": "",
- "Direct download link": "",
- "Download": "",
- "Download page": "",
- "Expire": "",
- "File has been deleted.": "",
- "File is too big": "",
- "File not available.": "",
- "File size is limited to": "",
- "File uploaded !": "",
- "Filename": "",
- "Finalisation": "",
- "Give the password of this file": "",
- "Here is a solution": "",
- "Information": "",
- "Installation of Jirafeau": "",
- "Installer script still present": "",
- "Internal error during file creation.": "",
- "Jirafeau Project": "",
- "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
- "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "",
- "Jirafeau is now fully operational": "",
- "Jirafeau is setting the website according to the configuration you provided.": "",
- "Jirafeau, your web file repository": "",
- "Link deleted": "",
- "List": "",
- "List all files": "",
- "Login": "",
- "Logout": "",
- "Maximum file size": "",
- "Next step": "",
- "None": "",
- "Number of cleaned files": "",
- "One day": "",
- "One hour": "",
- "One minute": "",
- "One month": "",
- "One time download": "",
- "One week": "",
- "One year": "",
- "Onetime": "",
- "Origin": "",
- "Password": "",
- "Password protection": "",
- "Please make sure to delete the installer script \"install.php\" before continuing.": "",
- "Preview": "",
- "Previous step": "",
- "Retry this step": "",
- "Search": "",
- "Search a specific link": "",
- "Search files by file hash": "",
- "Search files by name": "",
- "Select a file": "",
- "Send": "",
- "Size": "",
- "Sorry, the admin interface is not enabled.": "",
- "Sorry, the requested file is not found": "",
- "Sorry, you are not authenticated on admin interface.": "",
- "Term Of Service": "",
- "The async directory is not writable!": "",
- "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
- "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
- "The file directory is not writable": "",
- "The following directory could not be created": "",
- "The following directory is not writable": "",
- "The link directory is not writable": "",
- "The local configuration file could not be created. Create a lib/config.local.php
file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the lib
directory.": "",
- "The local configuration is not writable by the web server. Give the write permission to the web server on the 'lib/config.local.php
file.": "",
- "The time limit of this file has expired.": "",
- "This file is valid until the following date": "",
- "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "",
- "Time limit": "",
- "Type": "",
- "Upload date": "",
- "Upload password": "",
- "Uploading ...": "",
- "View link": "",
- "Warning, this file will self-destruct after being read": "",
- "Wrong password.": "",
- "You are about to download": "",
- "You are now loggued out": "",
- "You should create this directory manually.": "",
- "You should give the write permission to the web server on this directory.": "",
- "day": "",
- "file": "",
- "hour": "",
- "less than a second": "",
- "link": "",
- "minute": "",
- "out of": "",
- "powered by Open-Source project Jirafeau": "",
- "second": "",
- "step": "",
- "year": ""
-}
\ No newline at end of file
diff --git a/sources/lib/locales/hu.json b/sources/lib/locales/hu.json
deleted file mode 100644
index 215f5ea..0000000
--- a/sources/lib/locales/hu.json
+++ /dev/null
@@ -1,112 +0,0 @@
-{
- "Access denied": "Hozzáférés megtagadva",
- "Action": "Akció",
- "Actions": "Akciók",
- "Admin interface": "Admin felület",
- "Administration password": "Admin jelszó",
- "An error occurred.": "Valami hiba történt.",
- "Base address": "Alap cím",
- "By using our services, you accept our": "Használva a szolgáltatásunkat, elfogadod ezt:",
- "Choose the default language": "Válassz alapértelmezett nyelvet",
- "Clean": "Tisztít",
- "Clean expired files": "Lejárt fájlok száma",
- "Clean old unfinished transfers": "Régebbi, befejezetlen feltöltések törlése",
- "Data directory": "Adatmappa",
- "Del file and links": "Fájl és kapcsolódó linkek törlése",
- "Del link": "Törlő link",
- "Delete link": "Törlési link",
- "Deleted links": "Törölt linkek",
- "Direct download link": "Közvetlen letöltő link",
- "Download": "Letöltés",
- "Download page": "Letöltési oldal",
- "Expire": "Felfedezés",
- "File has been deleted.": "A fájl törölt.",
- "File is too big": "A fájl túl nagy",
- "File not available.": "A fájl nem érhető el.",
- "File size is limited to": "A fájl mérete korlátozott:",
- "File uploaded !": "Fájl feltöltve!",
- "Filename": "Fájlnév",
- "Finalisation": "Véglegesítés",
- "Give the password of this file": "Add meg a jelszót a fájl eléréséhez",
- "Here is a solution": "Itt a megoldás",
- "Information": "Információ",
- "Installation of Jirafeau": "Jirafeau telepítés",
- "Installer script still present": "A telepítőt még nem törölted",
- "Internal error during file creation.": "Belső hiba történt a készítéskor.",
- "Jirafeau Project": "Jirafeau Projekt",
- "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "A Jirafeau adminisztrálható (az admin.php felületen). Állíts be jelszót, hogy használhasd, vagy ha üresen hagyod, azzal letiltod az admin oldalt.",
- "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "A Jirafeau többnyelvű. Válassz kedvedre, vagy használd az automatizmust, ami a böngésződ nyelve lesz.",
- "Jirafeau is now fully operational": "A Jirafeau immár teljes pompájában működik",
- "Jirafeau is setting the website according to the configuration you provided.": "A Jirafeau a kért konfiguráció szerint állította be a webszájotot.",
- "Jirafeau, your web file repository": "Jirafeau, a webes fájltárolód",
- "Link deleted": "Link törölve",
- "List": "Lista",
- "List all files": "Mutass minden fájlt",
- "Login": "Belép",
- "Logout": "Kijelentkezés",
- "Maximum file size": "Max fájl méret",
- "Next step": "Következő lépés",
- "None": "Egyik sem",
- "Number of cleaned files": "Megtisztított fájlok száma",
- "One day": "Egy nap",
- "One hour": "Egy óra",
- "One minute": "Egy perc",
- "One month": "Egy hónap",
- "One time download": "Egyszeri letöltés",
- "One week": "Egy hét",
- "One year": "Egy év",
- "Onetime": "Egyidejű",
- "Origin": "Eredet(i)",
- "Password": "Jelszó",
- "Password protection": "Jelszavas védelem",
- "Please make sure to delete the installer script \"install.php\" before continuing.": "Kérlek töröld le a telepítő szkriptet 'install.php' a folytatás előtt.",
- "Preview": "Előnézet",
- "Previous step": "Előző lépés",
- "Retry this step": "Ismételd meg ezt a lépést",
- "Search": "Keresés",
- "Search a specific link": "Egy adott link keresése",
- "Search files by file hash": "Fállkeresés hash alapján",
- "Search files by name": "Keresés fájlnév alapján",
- "Select a file": "Válassz fájlt",
- "Send": "Küld",
- "Size": "Méret",
- "Sorry, the admin interface is not enabled.": "Bocs, de az admin felület nem engedélyezett.",
- "Sorry, the requested file is not found": "Bocsánat, de nem találjuk ezt a fájlt",
- "Sorry, you are not authenticated on admin interface.": "Bocs, de nem léptél be adminként.",
- "Term Of Service": "Szolgáltatási feltételek",
- "The async directory is not writable!": "Az async mappa nem írható!",
- "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "Az alap-Jirafeau címe - az URL első fele, az utolsó per-ig (hash), de azt beleértve. Például: \"http://www.example.com/\". El ne felejtsd a lezáró per-t!",
- "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "Az adatmappa, ahol a fájlokat és a metaadatokat tároljuk. Javasolt, hogy a weboldalon kívül legyen, vagy legalább korlátozd az elérést. Ne feledd a záró hash-t (per jelet)!",
- "The file directory is not writable": "A fájlmappa nem írható",
- "The following directory could not be created": "A következő mappa nem került létrehozásra",
- "The following directory is not writable": "A következő mappa nem írható",
- "The link directory is not writable": "A linkek mappája nem írható",
- "The local configuration file could not be created. Create a lib/config.local.php
file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the lib
directory.": "A helyi konfigfájl nem készült el, az hibát okoz. Megoldás: készíts egy lib/config.local.php
fájlt és adj írási jogot a webszerveren, vagy adj írási jogot a webszerveren a lib
mappának.",
- "The local configuration is not writable by the web server. Give the write permission to the web server on the 'lib/config.local.php
file.": "A helyi konfigfájl nem írható a webszervernek. Adj írási jogot a szerveren a 'lib/config.local.php
fájlra.",
- "The time limit of this file has expired.": "A fájlhoz beállított érvényességi idő lejárt.",
- "This file is valid until the following date": "A fájl érvényes a következő dátumog",
- "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "Ez a fájl a telepítés során keletkezett. Szerkesztheted. Kérlek nézd meg a config.original.php fájlt, a konfigurációs lehetőségek megértéséhez.",
- "Time limit": "Időkorlát",
- "Type": "Típus",
- "Upload date": "Feltöltés dátuma",
- "Upload password": "Feltöltési jelszó",
- "Uploading ...": "Feltöltés ...",
- "View link": "Megtekintés linkje",
- "Warning, this file will self-destruct after being read": "Figyelem, ez a fájl törlődik olvasás után",
- "Wrong password.": "Hibás jelszó!",
- "You are about to download": "Arra készülsz, hogy letölts",
- "You are now loggued out": "Sikeresen kiléptél",
- "You should create this directory manually.": "Kézileg kéne létrehoznod ezt a mappát.",
- "You should give the write permission to the web server on this directory.": "A webszerveren kellene írási jogot adnod erre a mappára.",
- "day": "nap",
- "file": "fájl",
- "hour": "óra",
- "less than a second": "kevesebb, mint egy másodperc",
- "link": "link",
- "minute": "perc",
- "out of": "kívűl",
- "powered by Open-Source project Jirafeau": "működteti a nyílt forrású Jirafeau",
- "second": "második",
- "step": "lépés",
- "year": "év"
-}
\ No newline at end of file
diff --git a/sources/lib/locales/it.json b/sources/lib/locales/it.json
deleted file mode 100644
index 0105792..0000000
--- a/sources/lib/locales/it.json
+++ /dev/null
@@ -1,113 +0,0 @@
-{
- "Access denied": "Accesso negato",
- "Action": "Azione",
- "Actions": "Azioni",
- "Admin interface": "Interfaccia di amministrazione",
- "Administration password": "Password di amministrazione",
- "An error occurred.": "C'è stato un errore.",
- "Base address": "Indirizzo base",
- "By using our services, you accept our": "Utilizzando i nostri servizi, accettate i nostri",
- "Choose the default language": "Scegliere la lingua predefinita",
- "Clean": "Ripulisci",
- "Clean expired files": "Rimuovi i file scaduti",
- "Clean old unfinished transfers": "Rimuovi i vecchi trasferimenti non conclusi",
- "Data directory": "Directory data",
- "Del file and links": "Canc file e links",
- "Del link": "Canc link",
- "Delete link": "Link di cancellazione",
- "Deleted links": "Links cancellati",
- "Direct download link": "Link per il download diretto",
- "Download": "Scarica",
- "Download page": "Pagina di download",
- "Expire": "Scadenza",
- "File has been deleted.": "Il file è stato cancellato.",
- "File is too big": "Il file è troppo grande",
- "File not available.": "Il file non è disponibile.",
- "File size is limited to": "La dimensione dei file è limitata a",
- "File uploaded !": "File caricato !",
- "Filename": "Nome file",
- "Finalisation": "Finalizzazione",
- "Give the password of this file": "Fornire la password per questo file",
- "Here is a solution": "Ecco una soluzione",
- "Information": "Informazioni",
- "Installation of Jirafeau": "Installazione di Jirafeau",
- "Installer script still present": "Script di installazione ancora presente",
- "Internal error during file creation.": "Errore interno durante la creazione del file.",
- "Jirafeau Project": "Progetto Jirafeau",
- "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "Jirafeau ha una interfaccia di amministrazione (via admin.php). E' possibile impostare una password per accedere all'interfaccia o lasciarla vuota per disabilitare l'interfaccia stessa.",
- "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "Jirafeau è internazionalizzato. Scegliere una lingua specifica o scelta Automatica (la lingua è fornita dal browser dell'utente).",
- "Jirafeau is now fully operational": "Ora Jirafeau è completamente operativo",
- "Jirafeau is setting the website according to the configuration you provided.": "Jirafeau sta configurando il sito web secondo la configurazione che avete fornito.",
- "Jirafeau, your web file repository": "Jirafeau, il tuo archivio web di file",
- "Link deleted": "Link cancellato",
- "List": "Lista",
- "List all files": "Elenca tutti i file",
- "Login": "Entra",
- "Logout": "Esci",
- "Maximum file size": "Dimensione massima del file",
- "Next step": "Passo successivo",
- "None": "Nessuno",
- "Number of cleaned files": "Numero di file ripuliti",
- "One day": "Un giorno",
- "One hour": "Un ora",
- "One minute": "Un minuto",
- "One month": "Un mese",
- "One time download": "Download unico",
- "One week": "Una settimana",
- "One year": "Un anno",
- "Onetime": "Download unico",
- "Origin": "Origine",
- "Password": "Password",
- "Password protection": "Protezione con password",
- "Please make sure to delete the installer script \"install.php\" before continuing.": "Per favore verificare di aver cancellato lo script di installazione \"install.php\" prima di continuare.",
- "Preview": "Anteprima",
- "Previous step": "Passo precedente",
- "Retry this step": "Riprovare questo passaggio",
- "Search": "Cerca",
- "Search a specific link": "Cerca un link specifico",
- "Search files by file hash": "Cerca file per hash",
- "Search files by name": "Cerca files per nome",
- "Select a file": "Seleziona un file",
- "Send": "Carica",
- "Size": "Dimensione",
- "Sorry, the admin interface is not enabled.": "Spiacente, l'interfaccia di amministrazione non è abilitata.",
- "Sorry, the requested file is not found": "Spiacente, il file richiesto non è stato trovato",
- "Sorry, you are not authenticated on admin interface.": "Spiacente, non sei autenticato per l'interfaccia di amministrazione.",
- "Term Of Service": "Termini del Servizio",
- "The async directory is not writable!": "la directory async è non scrivibile!",
- "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "L'indirizzo base di Jirafeau è la prima parte della URL, fino (e incluso) la barra finale. Per esempio:\n\"http://www.example.com/\". Non dimenticare la barra finale!",
- "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "La directory data è dove i vostri file e le informazioni su di essi sono archiviate. Dovrebbe risiedere al di fuori del sito web, o quantomeno si dovrebbe restringere l'accesso a questa directory. Non dimenticare lo slash finale!",
- "The file directory is not writable": "La directory dei file non è scrivibile",
- "The following directory could not be created": "Non è stato possibile creare la seguente directory",
- "The following directory is not writable": "La seguente directory non è scrivibile",
- "The link directory is not writable": "La directory dei link non è scrivibile",
- "The local configuration file could not be created. Create a lib/config.local.php
file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the lib
directory.": "Non è stato possibile creare il file di configurazione locale. Creare un file lib/config.local.php
e dare al server web i permessi in scrittura al file stesso (soluzione preferita), oppure dare i permessi in scrittura al server web all'intera directory lib
.",
- "The local configuration is not writable by the web server. Give the write permission to the web server on the 'lib/config.local.php
file.": "Il server web non può scrivere la configurazione locale. Dare al web server i permessi di scrittura per il file 'lib/config.local.php
.",
- "The time limit of this file has expired.": "Il tempo limite di questo file è scaduto.",
- "This file is valid until the following date": "Questo file è valido fino alla seguente data",
- "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "Questo file è stato generato dal processo di installazione. E' possibile editarlo. Per capire le possibili voci di configurazione vedere config.original.php.",
- "Time limit": "Limite di tempo",
- "Type": "Tipo",
- "Upload date": "Data di caricamento",
- "Upload password": "Password per caricare file",
- "Uploading ...": "Sto caricando ...",
- "View link": "Visualizza link",
- "Warning, this file will self-destruct after being read": "Attenzione, questo file si auto distruggerà dopo essere stato letto",
- "Wrong password.": "Password errata.",
- "You are about to download": "Stai per scaricare",
- "You are now loggued out": "Hai eseguito il logout",
- "You should create this directory manually.": "E' necessario creare manualmente questa directory.",
- "You should give the write permission to the web server on this directory.": "E' necessario dare al server web i permessi in scrittura per questa directory.",
- "file": "file",
- "link": "link",
- "out of": "fuori da",
- "powered by Open-Source project Jirafeau": "utilizza il progetto Open Source Jirafeau",
- "step": "passo",
- "year": "",
- "day": "",
- "minute": "",
- "hour": "",
- "second": "",
- "less than a second": ""
-
-}
diff --git a/sources/lib/locales/ja.json b/sources/lib/locales/ja.json
deleted file mode 100644
index d681a6a..0000000
--- a/sources/lib/locales/ja.json
+++ /dev/null
@@ -1,112 +0,0 @@
-{
- "Access denied": "",
- "Action": "",
- "Actions": "",
- "Admin interface": "",
- "Administration password": "",
- "An error occurred.": "",
- "Base address": "",
- "By using our services, you accept our": "",
- "Choose the default language": "",
- "Clean": "",
- "Clean expired files": "",
- "Clean old unfinished transfers": "",
- "Data directory": "",
- "Del file and links": "",
- "Del link": "",
- "Delete link": "",
- "Deleted links": "",
- "Direct download link": "",
- "Download": "",
- "Download page": "",
- "Expire": "",
- "File has been deleted.": "",
- "File is too big": "",
- "File not available.": "",
- "File size is limited to": "",
- "File uploaded !": "",
- "Filename": "",
- "Finalisation": "",
- "Give the password of this file": "",
- "Here is a solution": "",
- "Information": "",
- "Installation of Jirafeau": "",
- "Installer script still present": "",
- "Internal error during file creation.": "",
- "Jirafeau Project": "",
- "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
- "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "",
- "Jirafeau is now fully operational": "",
- "Jirafeau is setting the website according to the configuration you provided.": "",
- "Jirafeau, your web file repository": "",
- "Link deleted": "",
- "List": "",
- "List all files": "",
- "Login": "",
- "Logout": "",
- "Maximum file size": "",
- "Next step": "",
- "None": "",
- "Number of cleaned files": "",
- "One day": "",
- "One hour": "",
- "One minute": "",
- "One month": "",
- "One time download": "",
- "One week": "",
- "One year": "",
- "Onetime": "",
- "Origin": "",
- "Password": "",
- "Password protection": "",
- "Please make sure to delete the installer script \"install.php\" before continuing.": "",
- "Preview": "",
- "Previous step": "",
- "Retry this step": "",
- "Search": "",
- "Search a specific link": "",
- "Search files by file hash": "",
- "Search files by name": "",
- "Select a file": "",
- "Send": "",
- "Size": "",
- "Sorry, the admin interface is not enabled.": "",
- "Sorry, the requested file is not found": "",
- "Sorry, you are not authenticated on admin interface.": "",
- "Term Of Service": "",
- "The async directory is not writable!": "",
- "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
- "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
- "The file directory is not writable": "",
- "The following directory could not be created": "",
- "The following directory is not writable": "",
- "The link directory is not writable": "",
- "The local configuration file could not be created. Create a lib/config.local.php
file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the lib
directory.": "",
- "The local configuration is not writable by the web server. Give the write permission to the web server on the 'lib/config.local.php
file.": "",
- "The time limit of this file has expired.": "",
- "This file is valid until the following date": "",
- "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "",
- "Time limit": "",
- "Type": "",
- "Upload date": "",
- "Upload password": "",
- "Uploading ...": "",
- "View link": "",
- "Warning, this file will self-destruct after being read": "",
- "Wrong password.": "",
- "You are about to download": "",
- "You are now loggued out": "",
- "You should create this directory manually.": "",
- "You should give the write permission to the web server on this directory.": "",
- "day": "",
- "file": "",
- "hour": "",
- "less than a second": "",
- "link": "",
- "minute": "",
- "out of": "",
- "powered by Open-Source project Jirafeau": "",
- "second": "",
- "step": "",
- "year": ""
-}
\ No newline at end of file
diff --git a/sources/lib/locales/ko.json b/sources/lib/locales/ko.json
deleted file mode 100644
index d681a6a..0000000
--- a/sources/lib/locales/ko.json
+++ /dev/null
@@ -1,112 +0,0 @@
-{
- "Access denied": "",
- "Action": "",
- "Actions": "",
- "Admin interface": "",
- "Administration password": "",
- "An error occurred.": "",
- "Base address": "",
- "By using our services, you accept our": "",
- "Choose the default language": "",
- "Clean": "",
- "Clean expired files": "",
- "Clean old unfinished transfers": "",
- "Data directory": "",
- "Del file and links": "",
- "Del link": "",
- "Delete link": "",
- "Deleted links": "",
- "Direct download link": "",
- "Download": "",
- "Download page": "",
- "Expire": "",
- "File has been deleted.": "",
- "File is too big": "",
- "File not available.": "",
- "File size is limited to": "",
- "File uploaded !": "",
- "Filename": "",
- "Finalisation": "",
- "Give the password of this file": "",
- "Here is a solution": "",
- "Information": "",
- "Installation of Jirafeau": "",
- "Installer script still present": "",
- "Internal error during file creation.": "",
- "Jirafeau Project": "",
- "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
- "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "",
- "Jirafeau is now fully operational": "",
- "Jirafeau is setting the website according to the configuration you provided.": "",
- "Jirafeau, your web file repository": "",
- "Link deleted": "",
- "List": "",
- "List all files": "",
- "Login": "",
- "Logout": "",
- "Maximum file size": "",
- "Next step": "",
- "None": "",
- "Number of cleaned files": "",
- "One day": "",
- "One hour": "",
- "One minute": "",
- "One month": "",
- "One time download": "",
- "One week": "",
- "One year": "",
- "Onetime": "",
- "Origin": "",
- "Password": "",
- "Password protection": "",
- "Please make sure to delete the installer script \"install.php\" before continuing.": "",
- "Preview": "",
- "Previous step": "",
- "Retry this step": "",
- "Search": "",
- "Search a specific link": "",
- "Search files by file hash": "",
- "Search files by name": "",
- "Select a file": "",
- "Send": "",
- "Size": "",
- "Sorry, the admin interface is not enabled.": "",
- "Sorry, the requested file is not found": "",
- "Sorry, you are not authenticated on admin interface.": "",
- "Term Of Service": "",
- "The async directory is not writable!": "",
- "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
- "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
- "The file directory is not writable": "",
- "The following directory could not be created": "",
- "The following directory is not writable": "",
- "The link directory is not writable": "",
- "The local configuration file could not be created. Create a lib/config.local.php
file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the lib
directory.": "",
- "The local configuration is not writable by the web server. Give the write permission to the web server on the 'lib/config.local.php
file.": "",
- "The time limit of this file has expired.": "",
- "This file is valid until the following date": "",
- "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "",
- "Time limit": "",
- "Type": "",
- "Upload date": "",
- "Upload password": "",
- "Uploading ...": "",
- "View link": "",
- "Warning, this file will self-destruct after being read": "",
- "Wrong password.": "",
- "You are about to download": "",
- "You are now loggued out": "",
- "You should create this directory manually.": "",
- "You should give the write permission to the web server on this directory.": "",
- "day": "",
- "file": "",
- "hour": "",
- "less than a second": "",
- "link": "",
- "minute": "",
- "out of": "",
- "powered by Open-Source project Jirafeau": "",
- "second": "",
- "step": "",
- "year": ""
-}
\ No newline at end of file
diff --git a/sources/lib/locales/nl.json b/sources/lib/locales/nl.json
deleted file mode 100644
index 49d0caa..0000000
--- a/sources/lib/locales/nl.json
+++ /dev/null
@@ -1,113 +0,0 @@
-{
- "Access denied": "Toegang geweigerd",
- "Action": "Actie",
- "Actions": "Acties",
- "Admin interface": "Beheerdersinterface",
- "Administration password": "Beheerderswachtwoord",
- "An error occurred.": "Er is een fout opgetreden.",
- "Base address": "Basis URL",
- "By using our services, you accept our": "Door deze dienst te gebruiken, ga je akkoord met de",
- "Choose the default language": "Kies de standaard taal",
- "Clean": "Opschonen",
- "Clean expired files": "Verlopen bestanden opschonen",
- "Clean old unfinished transfers": "Schoon oude onvoltooide overdrachten op",
- "Data directory": "Datamap",
- "Del file and links": "Verwijder bestand en links",
- "Del link": "Verwijder link",
- "Delete link": "Verwijder link",
- "Deleted links": "Verwijderde links",
- "Direct download link": "Rechtstreekse downloadlink",
- "Download": "Downloaden",
- "Download page": "Downloadpagina",
- "Expire": "Verloopt",
- "File has been deleted.": "Bestand is verwijderd.",
- "File is too big": "Bestand is te groot",
- "File not available.": "Bestand niet beschikbaar.",
- "File size is limited to": "Bestandsgrootte is beperkt tot",
- "File uploaded !": "Bestand geupload!",
- "Filename": "Bestandsnaam",
- "Finalisation": "Afronding",
- "Give the password of this file": "Geef het wachtwoord van dit bestand op",
- "Here is a solution": "Hier is een oplossing",
- "Information": "Informatie",
- "Installation of Jirafeau": "Installatie van Jirafeau",
- "Installer script still present": "Installatiescript nog aanwezig",
- "Internal error during file creation.": "Interne fout tijdens aanmaken van bestand.",
- "Jirafeau Project": "Jirafeau Project",
- "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "Jirafeau heeft een beheerdersinterface (via admin.php). Je kan een wachtwoord instellen om de interface te gebruiken of deze leeg laten om de interface uit te schakelen.",
- "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "Jirafeau is beschikbaar in verschillende talen. Selecteer een taal of kies Automatisch. Hierbij wordt de taal van de browser van de gebruiker gedetecteerd.",
- "Jirafeau is now fully operational": "Jirafeau is nu volledig operationeel",
- "Jirafeau is setting the website according to the configuration you provided.": "Jirafeau toont de website volgens het aangeleverde configuratiebestand.",
- "Jirafeau, your web file repository": "Jirafeau, jouw online bestandsopslag",
- "Link deleted": "Link verwijderd",
- "List": "Toon",
- "List all files": "Toon alle bestanden",
- "Login": "Inloggen",
- "Logout": "Uitloggen",
- "Maximum file size": "Maximale bestandsgrootte",
- "Next step": "Volgende stap",
- "None": "Geen",
- "Number of cleaned files": "Aantal opgeschoonde bestanden",
- "One day": "Een dag",
- "One hour": "Een uur",
- "One minute": "Een minuut",
- "One month": "Een maand",
- "One time download": "Eenmalige download",
- "One week": "Een week",
- "One year": "Een jaar",
- "Onetime": "Eenmalig",
- "Origin": "Origineel",
- "Password": "Wachtwoord",
- "Password protection": "Wachtwoordbeveiliging",
- "Please make sure to delete the installer script \"install.php\" before continuing.": "Verwijder het installatiescript \"install.php\" voordat je verder gaat.",
- "Preview": "Voorbeeld",
- "Previous step": "Vorige stap",
- "Retry this step": "Stap nogmaals uitvoeren",
- "Search": "Zoeken",
- "Search a specific link": "Zoek een specifieke link",
- "Search files by file hash": "Zoek bestanden op hash",
- "Search files by name": "Zoek bestanden op naam",
- "Select a file": "Selecteer een bestand",
- "Send": "Versturen",
- "Size": "Grootte",
- "Sorry, the admin interface is not enabled.": "Sorry, de beheerdersinterface is niet ingeschakeld.",
- "Sorry, the requested file is not found": "Sorry, het opgevraagde bestand is niet gevonden",
- "Sorry, you are not authenticated on admin interface.": "Sorry, je bent niet ingelogd op de beheerdersinterface.",
- "Term Of Service": "Servicevoorwaarden",
- "The async directory is not writable!": "De async-map is niet schrijfbaar!",
- "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "De basis URL van Jirafeau is het eerst gedeelte van de URL, tot (maar inclusief) de laatste schuine streep. Bijvoorbeeld: \"http://www.voorbeeld.nl/\". Vergeet de afsluitende schuine streep niet!",
- "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "De datamap is waar de bestanden en informatie van deze bestanden worden opgeslagen. Plaats deze buiten de website, of beperk op zijn minst de toegang tot deze map. Vergeet de afsluitende schuine streep niet!",
- "The file directory is not writable": "De bestandsmap is niet schrijfbaar",
- "The following directory could not be created": "De volgende map kon niet worden aangemaakt",
- "The following directory is not writable": "De volgende map is niet schrijfbaar",
- "The link directory is not writable": "De linkmap is niet schrijfbaar",
- "The local configuration file could not be created. Create a lib/config.local.php
file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the lib
directory.": "Het lokale configuratiebestand kon niet worden aangemaakt. Maak het bestand lib/config.local.php
aan en geef de webserver hierop schrijfpermissies (voorkeursoptie). Als alternatief, geef de webserver schrijfpermissies op de map lib
.",
- "The local configuration is not writable by the web server. Give the write permission to the web server on the 'lib/config.local.php
file.": "Het lokale configuratiebestand kon niet worden weggeschreven door de webserver. Geef de webserver schrijfpermissies op het lib/config.local.php
bestand.",
- "The time limit of this file has expired.": "De tijdslimiet van het bestand is verlopen.",
- "This file is valid until the following date": "Dit bestand is geldig tot het volgende tijdstip",
- "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "Dit bestand is gegenereerd door het installatieproces. Je kan deze aanpassen. Zie config.original.php om de configuratieopties te bekijken.",
- "Time limit": "Tijdslimiet",
- "Type": "Type",
- "Upload date": "Uploaddatum",
- "Upload password": "Uploadwachtwoord",
- "Uploading ...": "Uploaden...",
- "View link": "Link bekijken",
- "Warning, this file will self-destruct after being read": "Waarschuwing, dit bestand wordt na het lezen automatisch verwijderd",
- "Wrong password.": "Verkeerd wachtwoord.",
- "You are about to download": "Je staat op het punt om te downloaden:",
- "You are now loggued out": "Je bent nu uitgelogd",
- "You should create this directory manually.": "Maak deze map handmatig aan.",
- "You should give the write permission to the web server on this directory.": "Geef de webserver schrijfpermissies op deze map.",
- "file": "bestand",
- "link": "link",
- "out of": "van",
- "powered by Open-Source project Jirafeau": "mogelijk gemaakt door open source project Jirafeau",
- "step": "stap",
- "year": "",
- "day": "",
- "minute": "",
- "hour": "",
- "second": "",
- "less than a second": ""
-
-}
diff --git a/sources/lib/locales/pt.json b/sources/lib/locales/pt.json
deleted file mode 100644
index d681a6a..0000000
--- a/sources/lib/locales/pt.json
+++ /dev/null
@@ -1,112 +0,0 @@
-{
- "Access denied": "",
- "Action": "",
- "Actions": "",
- "Admin interface": "",
- "Administration password": "",
- "An error occurred.": "",
- "Base address": "",
- "By using our services, you accept our": "",
- "Choose the default language": "",
- "Clean": "",
- "Clean expired files": "",
- "Clean old unfinished transfers": "",
- "Data directory": "",
- "Del file and links": "",
- "Del link": "",
- "Delete link": "",
- "Deleted links": "",
- "Direct download link": "",
- "Download": "",
- "Download page": "",
- "Expire": "",
- "File has been deleted.": "",
- "File is too big": "",
- "File not available.": "",
- "File size is limited to": "",
- "File uploaded !": "",
- "Filename": "",
- "Finalisation": "",
- "Give the password of this file": "",
- "Here is a solution": "",
- "Information": "",
- "Installation of Jirafeau": "",
- "Installer script still present": "",
- "Internal error during file creation.": "",
- "Jirafeau Project": "",
- "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
- "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "",
- "Jirafeau is now fully operational": "",
- "Jirafeau is setting the website according to the configuration you provided.": "",
- "Jirafeau, your web file repository": "",
- "Link deleted": "",
- "List": "",
- "List all files": "",
- "Login": "",
- "Logout": "",
- "Maximum file size": "",
- "Next step": "",
- "None": "",
- "Number of cleaned files": "",
- "One day": "",
- "One hour": "",
- "One minute": "",
- "One month": "",
- "One time download": "",
- "One week": "",
- "One year": "",
- "Onetime": "",
- "Origin": "",
- "Password": "",
- "Password protection": "",
- "Please make sure to delete the installer script \"install.php\" before continuing.": "",
- "Preview": "",
- "Previous step": "",
- "Retry this step": "",
- "Search": "",
- "Search a specific link": "",
- "Search files by file hash": "",
- "Search files by name": "",
- "Select a file": "",
- "Send": "",
- "Size": "",
- "Sorry, the admin interface is not enabled.": "",
- "Sorry, the requested file is not found": "",
- "Sorry, you are not authenticated on admin interface.": "",
- "Term Of Service": "",
- "The async directory is not writable!": "",
- "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
- "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
- "The file directory is not writable": "",
- "The following directory could not be created": "",
- "The following directory is not writable": "",
- "The link directory is not writable": "",
- "The local configuration file could not be created. Create a lib/config.local.php
file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the lib
directory.": "",
- "The local configuration is not writable by the web server. Give the write permission to the web server on the 'lib/config.local.php
file.": "",
- "The time limit of this file has expired.": "",
- "This file is valid until the following date": "",
- "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "",
- "Time limit": "",
- "Type": "",
- "Upload date": "",
- "Upload password": "",
- "Uploading ...": "",
- "View link": "",
- "Warning, this file will self-destruct after being read": "",
- "Wrong password.": "",
- "You are about to download": "",
- "You are now loggued out": "",
- "You should create this directory manually.": "",
- "You should give the write permission to the web server on this directory.": "",
- "day": "",
- "file": "",
- "hour": "",
- "less than a second": "",
- "link": "",
- "minute": "",
- "out of": "",
- "powered by Open-Source project Jirafeau": "",
- "second": "",
- "step": "",
- "year": ""
-}
\ No newline at end of file
diff --git a/sources/lib/locales/ro.json b/sources/lib/locales/ro.json
deleted file mode 100644
index c4a07b2..0000000
--- a/sources/lib/locales/ro.json
+++ /dev/null
@@ -1,112 +0,0 @@
-{
- "Access denied": "Acces refuzat",
- "Action": "Acţiune",
- "Actions": "Acţiuni",
- "Admin interface": "Interfaţă administrare",
- "Administration password": "Parola de administrare",
- "An error occurred.": "A apărut o eroare.",
- "Base address": "Adresa de bază",
- "By using our services, you accept our": "Utilizând serviciile noastre, accepţi",
- "Choose the default language": "Alege limba implicită",
- "Clean": "Curăţă",
- "Clean expired files": "Şterge fişierele expirate",
- "Clean old unfinished transfers": "Şterge transferurile vechi nefinalizate",
- "Data directory": "Director date",
- "Del file and links": "Şterge fişierul şi link-urile",
- "Del link": "Şterge link",
- "Delete link": "Şterge link",
- "Deleted links": "Link-uri şterse",
- "Direct download link": "Link de descărcare directă",
- "Download": "Descărcare",
- "Download page": "Pagina de descărcare",
- "Expire": "Expiră",
- "File has been deleted.": "Fişierul a fost şters.",
- "File is too big": "Fişierul este prea mare",
- "File not available.": "Fişierul nu este disponibil.",
- "File size is limited to": "Dimensiunea fişierului este limitată la",
- "File uploaded !": "Fişier încărcat !",
- "Filename": "Nume fişier",
- "Finalisation": "Finalizare",
- "Give the password of this file": "Introdu parola acestui fişier",
- "Here is a solution": "Iată o soluţie",
- "Information": "Informaţii",
- "Installation of Jirafeau": "Instalare Jirafeau",
- "Installer script still present": "Scriptul de instalare este încă prezent",
- "Internal error during file creation.": "Eroare internă în timpul creării fişierului.",
- "Jirafeau Project": "Jirafeau Proiect",
- "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "Jirafeau are o interfaţă de administrare(prin admin.php). Poţi seta o parolă pentru accesarea interfeţei sau poţi lăsa parola blank pentru a dezactiva interfaţa.",
- "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "Jirafeu este multi-limbă. Alege o limbă sau Automatic(limba este preluată din browser).",
- "Jirafeau is now fully operational": "Jirafeau este complet operaţional",
- "Jirafeau is setting the website according to the configuration you provided.": "Jirafeau setează site-ul în concordanţă cu configuraţia furnizată.",
- "Jirafeau, your web file repository": "Jirafeau, depozitul tău web de fişiere",
- "Link deleted": "Link şters",
- "List": "Listă",
- "List all files": "Listează toate fişierele",
- "Login": "Logare",
- "Logout": "Deconectare",
- "Maximum file size": "Dimensiunea maximă a fişierului",
- "Next step": "Următorul pas",
- "None": "Nimic",
- "Number of cleaned files": "Numărul de fişiere curăţate",
- "One day": "O zi",
- "One hour": "O oră",
- "One minute": "Un minut",
- "One month": "O lună",
- "One time download": "O singură descărcare",
- "One week": "O săptămână",
- "One year": "Un an",
- "Onetime": "O singură dată",
- "Origin": "Origine",
- "Password": "Parolă",
- "Password protection": "Protecţie cu parolă",
- "Please make sure to delete the installer script \"install.php\" before continuing.": "Asigură-te că ai şters scriptul de instalare \"install.php\" înainte de a continua.",
- "Preview": "Previzualizare",
- "Previous step": "Pasul anterior",
- "Retry this step": "Re-încearcă acest pas",
- "Search": "Cautare",
- "Search a specific link": "Caută un link specific",
- "Search files by file hash": "Caută fişiere după hash",
- "Search files by name": "Caută fişiere după nume",
- "Select a file": "Selectează un fişier",
- "Send": "Trimite",
- "Size": "Dimensiune",
- "Sorry, the admin interface is not enabled.": "Ne pare rău, interfaţa de administrare nu este activată.",
- "Sorry, the requested file is not found": "Ne pare rău, fişierul solicitat nu a fost găsit",
- "Sorry, you are not authenticated on admin interface.": "Ne pare rău, nu eşti autentificat pe interfaţa de administrare.",
- "Term Of Service": "Termenii de utilizare a serviciului",
- "The async directory is not writable!": "Directorul async nu este scriptibil!",
- "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "Adresa de bază Jirafeau este prima parte a URL-ului, până la (incluzând) ultimul slash. De exemplu : \"http://www.example.com/\". Nu uita de slash-ul de la coadă!",
- "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "Directorul de date reţine fişierele şi datele despre fişiere.Ar trebui să-l ţii în afara website-ului, sau cel puţin să pui restricţii de acces pe acest director. Nu uita de slash-ul de la coadă!",
- "The file directory is not writable": "Directorul de fişiere nu are drepturi de scriere",
- "The following directory could not be created": "Următorul director nu poate fi creat",
- "The following directory is not writable": "Următorul director nu are drepturi de scriere",
- "The link directory is not writable": "Directorul de link-uri nu are drepturi de scriere",
- "The local configuration file could not be created. Create a lib/config.local.php
file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the lib
directory.": "Fişierul de configuraţie locală nu poate fi creat. Creează un fişier lib/config.local.php
şi dă drepturi de scriere pe el(recomandat), sau acordă drepturi de scriere pe directorul lib
.",
- "The local configuration is not writable by the web server. Give the write permission to the web server on the 'lib/config.local.php
file.": "Configuraţia locală nu poate fi editată de serverul web. Dă permisiuni de scriere pe fişierul 'lib/config.local.php
.",
- "The time limit of this file has expired.": "Durata de stocare a fişierului a expirat.",
- "This file is valid until the following date": "Acest fişier este valid până la următoarea dată",
- "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "Acest fişier a fost generat la instalare. Îl poţi edita. Vezi config.original.php pentru a înţelege elementele de configurare.",
- "Time limit": "Limita de timp",
- "Type": "Tip",
- "Upload date": "Data încărcare",
- "Upload password": "Încarcă o parolă",
- "Uploading ...": "Se încarcă..",
- "View link": "Vizualizare link",
- "Warning, this file will self-destruct after being read": "Atenţie, acest fişier se auto-distruge după ce este citit",
- "Wrong password.": "Parolă incorectă.",
- "You are about to download": "Eşti pe cale să descarci",
- "You are now loggued out": "Acum eşti deconectat",
- "You should create this directory manually.": "Trebuie să creezi acest director manual.",
- "You should give the write permission to the web server on this directory.": "Trebuie să dai permisiuni de scriere pe acest director.",
- "day": "zi",
- "file": "fişier",
- "hour": "oră",
- "less than a second": "mai puţin de o secundă",
- "link": "link",
- "minute": "minut",
- "out of": "din",
- "powered by Open-Source project Jirafeau": "powered by Jirafeau - proiect open source",
- "second": "secundă",
- "step": "pas",
- "year": "an"
-}
\ No newline at end of file
diff --git a/sources/lib/locales/ru.json b/sources/lib/locales/ru.json
deleted file mode 100644
index d681a6a..0000000
--- a/sources/lib/locales/ru.json
+++ /dev/null
@@ -1,112 +0,0 @@
-{
- "Access denied": "",
- "Action": "",
- "Actions": "",
- "Admin interface": "",
- "Administration password": "",
- "An error occurred.": "",
- "Base address": "",
- "By using our services, you accept our": "",
- "Choose the default language": "",
- "Clean": "",
- "Clean expired files": "",
- "Clean old unfinished transfers": "",
- "Data directory": "",
- "Del file and links": "",
- "Del link": "",
- "Delete link": "",
- "Deleted links": "",
- "Direct download link": "",
- "Download": "",
- "Download page": "",
- "Expire": "",
- "File has been deleted.": "",
- "File is too big": "",
- "File not available.": "",
- "File size is limited to": "",
- "File uploaded !": "",
- "Filename": "",
- "Finalisation": "",
- "Give the password of this file": "",
- "Here is a solution": "",
- "Information": "",
- "Installation of Jirafeau": "",
- "Installer script still present": "",
- "Internal error during file creation.": "",
- "Jirafeau Project": "",
- "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
- "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "",
- "Jirafeau is now fully operational": "",
- "Jirafeau is setting the website according to the configuration you provided.": "",
- "Jirafeau, your web file repository": "",
- "Link deleted": "",
- "List": "",
- "List all files": "",
- "Login": "",
- "Logout": "",
- "Maximum file size": "",
- "Next step": "",
- "None": "",
- "Number of cleaned files": "",
- "One day": "",
- "One hour": "",
- "One minute": "",
- "One month": "",
- "One time download": "",
- "One week": "",
- "One year": "",
- "Onetime": "",
- "Origin": "",
- "Password": "",
- "Password protection": "",
- "Please make sure to delete the installer script \"install.php\" before continuing.": "",
- "Preview": "",
- "Previous step": "",
- "Retry this step": "",
- "Search": "",
- "Search a specific link": "",
- "Search files by file hash": "",
- "Search files by name": "",
- "Select a file": "",
- "Send": "",
- "Size": "",
- "Sorry, the admin interface is not enabled.": "",
- "Sorry, the requested file is not found": "",
- "Sorry, you are not authenticated on admin interface.": "",
- "Term Of Service": "",
- "The async directory is not writable!": "",
- "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
- "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
- "The file directory is not writable": "",
- "The following directory could not be created": "",
- "The following directory is not writable": "",
- "The link directory is not writable": "",
- "The local configuration file could not be created. Create a lib/config.local.php
file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the lib
directory.": "",
- "The local configuration is not writable by the web server. Give the write permission to the web server on the 'lib/config.local.php
file.": "",
- "The time limit of this file has expired.": "",
- "This file is valid until the following date": "",
- "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "",
- "Time limit": "",
- "Type": "",
- "Upload date": "",
- "Upload password": "",
- "Uploading ...": "",
- "View link": "",
- "Warning, this file will self-destruct after being read": "",
- "Wrong password.": "",
- "You are about to download": "",
- "You are now loggued out": "",
- "You should create this directory manually.": "",
- "You should give the write permission to the web server on this directory.": "",
- "day": "",
- "file": "",
- "hour": "",
- "less than a second": "",
- "link": "",
- "minute": "",
- "out of": "",
- "powered by Open-Source project Jirafeau": "",
- "second": "",
- "step": "",
- "year": ""
-}
\ No newline at end of file
diff --git a/sources/lib/locales/sk.json b/sources/lib/locales/sk.json
deleted file mode 100644
index 6e38811..0000000
--- a/sources/lib/locales/sk.json
+++ /dev/null
@@ -1,113 +0,0 @@
-{
- "Access denied": "Prístup odoprený",
- "Action": "Akcia",
- "Actions": "Akcie",
- "Admin interface": "Rozhranie pre správu",
- "Administration password": "Heslo správcu",
- "An error occurred.": "Vyskytla sa chyba.",
- "Base address": "Základná adresa",
- "By using our services, you accept our": "Používaním tejto služby akceptujete naše",
- "Choose the default language": "Vyberte si predvolený jazyk",
- "Clean": "Vyčistiť",
- "Clean expired files": "Zmazať exspirované súbory",
- "Clean old unfinished transfers": "Vyčistiť staré nedokončené prenosy",
- "Data directory": "Adresár data",
- "Del file and links": "Zmazať súbor aj odkazy",
- "Del link": "Zmazať odkaz",
- "Delete link": "Zmazať odkaz",
- "Deleted links": "Zmazané odkazy",
- "Direct download link": "Priamy odkaz na stiahnutie",
- "Download": "Stiahnuť",
- "Download page": "Stránka so súborom",
- "Expire": "Platnosť do",
- "File has been deleted.": "Súbor bol zmazaný.",
- "File is too big": "Súbor je príliš veľký",
- "File not available.": "Súbor je nedostupný.",
- "File size is limited to": "Veľkosť súboru je obmedzená na",
- "File uploaded !": "Súbor bol odoslaný!",
- "Filename": "Názov súboru",
- "Finalisation": "Finalizácia",
- "Give the password of this file": "Zadajte heslo k tomuto súboru",
- "Here is a solution": "Tu je riešenie",
- "Information": "Informácie",
- "Installation of Jirafeau": "Inštalácia Jirafeau",
- "Installer script still present": "Inštalačný skript stále existuje",
- "Internal error during file creation.": "Interná chyba počas vytvárania súboru.",
- "Jirafeau Project": "Projekt Jirafeau",
- "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "Jirafeau má rozhranie pre správcu (admin.php). Môžete buď nastaviť heslo pre prístup k nemu, alebo ho nechať prázdne. Ak je prázdne, rozhranie pre správcu je vypnuté.",
- "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "Aplikácia Jirafeau je preložená do viacerých jazykov. Vyberte si konkrétny jazyk alebo si zvoľte Automatický (jazykové nastavenie sa získa z používateľovho prehliadača).",
- "Jirafeau is now fully operational": "Web Jirafeau je teraz plne funkčný",
- "Jirafeau is setting the website according to the configuration you provided.": "Jirafeau nastavuje web na základe informácií, ktoré ste poskytli.",
- "Jirafeau, your web file repository": "Jirafeau, Vaše webové úložisko",
- "Link deleted": "Odkaz bol zmazaný",
- "List": "Zoznam",
- "List all files": "Zobraziť všetky súbory",
- "Login": "Prihlásenie",
- "Logout": "Odhlásiť",
- "Maximum file size": "Maximálna veľkosť súboru",
- "Next step": "Ďalší krok",
- "None": "Neobmedzená",
- "Number of cleaned files": "Počet vyčistených súborov",
- "One day": "Jeden deň",
- "One hour": "Jedna hodina",
- "One minute": "Jedna minúta",
- "One month": "Jeden mesiac",
- "One time download": "Jednorazové stiahnutie",
- "One week": "Jeden týždeň",
- "One year": "Jeden rok",
- "Onetime": "Na jedno stiahnutie",
- "Origin": "Pôvod",
- "Password": "Heslo",
- "Password protection": "Ochrana heslom",
- "Please make sure to delete the installer script \"install.php\" before continuing.": "Uistite sa, že ste zmazali skript \"install.php\" pred tým, ako budete pokračovať, prosím.",
- "Preview": "Náhľad",
- "Previous step": "Predchádzajúci krok",
- "Retry this step": "Opakovať tento krok",
- "Search": "Hľadať",
- "Search a specific link": "Hľadať konkrétny odkaz",
- "Search files by file hash": "Hľadať súbor podľa hash",
- "Search files by name": "Hľadať súbory podľa mena",
- "Select a file": "Vybrať súbor",
- "Send": "Poslať",
- "Size": "Veľkosť",
- "Sorry, the admin interface is not enabled.": "Prepáčte, rozhranie pre správcu nie je povolené.",
- "Sorry, the requested file is not found": "Prepáčte, požadovaný súbor nebol nájdený",
- "Sorry, you are not authenticated on admin interface.": "Prepáčte, nie ste autorizovaní použiť rozhranie pre správu.",
- "Term Of Service": "Podmienky služby",
- "The async directory is not writable!": "Nie je možné zapisovať do adresára async!",
- "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "Základná adresa Jirafeau je prvá časť URL až po posledné lomítko (vrátane). Napr. \"http://www.example.org/\". Koncové lomítko je povinné.",
- "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "Adresár \"data\" obsahuje všetky uložené súbory a informácie o nich. Obsah adresára nesmie byť dostupný cez HTTP (uložte ho inam ako je koreňový adresár web servera, prípadne obmedzte prístup napr. pomocou .htaccess). Cesta musí končiť lomítkom!",
- "The file directory is not writable": "Nie je možné zapisovať do zoznamu súborov",
- "The following directory could not be created": "Adresár sa nepodarilo vytvoriť",
- "The following directory is not writable": "Do nasledujúceho adresáru nie je možné zapisovať",
- "The link directory is not writable": "Nie je možné zapisovať do súboru so zoznamom odkazov",
- "The local configuration file could not be created. Create a lib/config.local.php
file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the lib
directory.": "Nepodarilo sa vytvoriť lokálny konfiguračný súbor. Vytvorte súbor lib/config.local.php
a nastavte oprávnenia na zápis do neho pre web server (preferované riešenie), alebo dajte web serveru prístup na zápis do adresára lib
.",
- "The local configuration is not writable by the web server. Give the write permission to the web server on the 'lib/config.local.php
file.": "Web server nemôže zapisovať do súboru s lokálnou konfiguráciou. Dajte web serveru oprávnenie na zápis do súboru 'lib/config.local.php
.",
- "The time limit of this file has expired.": "Platnosť daného súboru vypršala.",
- "This file is valid until the following date": "Súbor exspiruje",
- "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "Tento súbor bol vygenerovaný inštalátorom. Môžete ho upraviť podľa potreby. Vysvetlivky ku konfiguračným parametrom nájdete v súbore config.original.php.",
- "Time limit": "Doba olatnosti",
- "Type": "Typ",
- "Upload date": "Dátum nahratia",
- "Upload password": "Heslo k súboru",
- "Uploading ...": "Odosielanie ...",
- "View link": "Zobraziť odkaz",
- "Warning, this file will self-destruct after being read": "Pozor, tento súbor bude po prečítaní zmazaný",
- "Wrong password.": "Nesprávne heslo.",
- "You are about to download": "Tu si môžete stiahnuť",
- "You are now loggued out": "Boli ste odhlásení",
- "You should create this directory manually.": "Tento adresár musíte vytvoriť ručne.",
- "You should give the write permission to the web server on this directory.": "Mali by ste dať oprávnenie na prístup k tomuto adresáru používateľovi, ktorý spúšťa web server.",
- "file": "súbor",
- "link": "odkaz",
- "out of": "z",
- "powered by Open-Source project Jirafeau": "poskytované open source projektom Jirafeau",
- "step": "krok",
- "year": "",
- "day": "",
- "minute": "",
- "hour": "",
- "second": "",
- "less than a second": ""
-
-}
diff --git a/sources/lib/locales/sr.json b/sources/lib/locales/sr.json
deleted file mode 100644
index d270e7d..0000000
--- a/sources/lib/locales/sr.json
+++ /dev/null
@@ -1,113 +0,0 @@
-{
- "Access denied": "Приступ одбијен",
- "Action": "",
- "Actions": "",
- "Admin interface": "",
- "Administration password": "",
- "An error occurred.": "",
- "Base address": "",
- "By using our services, you accept our": "",
- "Choose the default language": "Изаберите подразумевани језик",
- "Clean": "",
- "Clean expired files": "",
- "Clean old unfinished transfers": "",
- "Data directory": "",
- "Del file and links": "Бриши фајл и везе",
- "Del link": "",
- "Delete link": "",
- "Deleted links": "Обрисане везе",
- "Direct download link": "Веза за директно преузимање",
- "Download": "",
- "Download page": "Страница преузимања",
- "Expire": "Истиче",
- "File has been deleted.": "",
- "File is too big": "Фајл је превелик",
- "File not available.": "",
- "File size is limited to": "",
- "File uploaded !": "",
- "Filename": "Назив фајла",
- "Finalisation": "",
- "Give the password of this file": "Дајте лозинку за овај фајл",
- "Here is a solution": "Ево решења",
- "Information": "",
- "Installation of Jirafeau": "",
- "Installer script still present": "Инсталациона скрипта је и даље присутна",
- "Internal error during file creation.": "",
- "Jirafeau Project": "",
- "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "Жирафа има администраторско сучеље (кроз admin.php). Можете поставити лозинку за приступ сучељу или је оставити празну да бисте га искључили.",
- "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "Жирафа је преведена. Изаберите жељени језик или изаберите „Аутоматски“ (језик ће изабрати корисников прегледач).",
- "Jirafeau is now fully operational": "",
- "Jirafeau is setting the website according to the configuration you provided.": "Жирафа поставља веб сајт у складу са подешавањима које сте дали.",
- "Jirafeau, your web file repository": "Жирафа, ваша веб ризница",
- "Link deleted": "",
- "List": "",
- "List all files": "Излистај све фајлове",
- "Login": "",
- "Logout": "",
- "Maximum file size": "Taille maximale",
- "Next step": "",
- "None": "",
- "Number of cleaned files": "Број очишћених фајлова",
- "One day": "",
- "One hour": "",
- "One minute": "један минут",
- "One month": "",
- "One time download": "",
- "One week": "једна седмица",
- "One year": "једна година",
- "Onetime": "Једном",
- "Origin": "Порекло",
- "Password": "",
- "Password protection": "",
- "Please make sure to delete the installer script \"install.php\" before continuing.": "",
- "Preview": "",
- "Previous step": "",
- "Retry this step": "Понови овај корак",
- "Search": "",
- "Search a specific link": "Тражи одређену везу",
- "Search files by file hash": "Тражи фајл по хешу",
- "Search files by name": "Тражи фајл по називу",
- "Select a file": "Изаберите фајл",
- "Send": "Пошаљи",
- "Size": "",
- "Sorry, the admin interface is not enabled.": "Нажалост, администраторско сучеље је искључено.",
- "Sorry, the requested file is not found": "",
- "Sorry, you are not authenticated on admin interface.": "",
- "Term Of Service": "Услови коришћења",
- "The async directory is not writable!": "„async“ директоријум није уписив!",
- "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
- "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
- "The file directory is not writable": "",
- "The following directory could not be created": "Следећи директоријум се не може направити",
- "The following directory is not writable": "",
- "The link directory is not writable": "",
- "The local configuration file could not be created. Create a lib/config.local.php
file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the lib
directory.": "",
- "The local configuration is not writable by the web server. Give the write permission to the web server on the 'lib/config.local.php
file.": "Локална подешавања нису уписива за веб сервер. Дајте веб серверу права уписа у фајлу „lib/config.local.php
“.",
- "The time limit of this file has expired.": "Временско ограничење за фајл је истекло.",
- "This file is valid until the following date": "",
- "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "Овај фајл је генерисао инсталациони процес. Можете га мењати. Погледајте „config.original.php“ да бисте разумели конфигурационе ставке.",
- "Time limit": "",
- "Type": "",
- "Upload date": "",
- "Upload password": "",
- "Uploading ...": "",
- "View link": "",
- "Warning, this file will self-destruct after being read": "Пажња, овај фајл ће се самоуништити након читања",
- "Wrong password.": "Погрешна лозинка.",
- "You are about to download": "",
- "You are now loggued out": "",
- "You should create this directory manually.": "",
- "You should give the write permission to the web server on this directory.": "",
- "file": "",
- "link": "",
- "out of": "",
- "powered by Open-Source project Jirafeau": "",
- "step": "",
- "year": "",
- "day": "",
- "minute": "",
- "hour": "",
- "second": "",
- "less than a second": ""
-
-}
diff --git a/sources/lib/locales/template.json b/sources/lib/locales/template.json
deleted file mode 100644
index cf7aa81..0000000
--- a/sources/lib/locales/template.json
+++ /dev/null
@@ -1,115 +0,0 @@
-{
- "Jirafeau, your web file repository": "",
- "Select a file": "",
- "Send": "",
- "Uploading ...": "",
- "One time download": "",
- "Password": "",
- "Time limit": "",
- "Maximum file size": "Taille maximale",
- "powered by Open-Source project Jirafeau": "",
- "Jirafeau Project": "",
- "One minute": "",
- "One hour": "",
- "One day": "",
- "One week": "",
- "One month": "",
- "One year": "",
- "None": "",
- "Upload password": "",
- "File is too big": "",
- "File size is limited to": "",
- "The file directory is not writable": "",
- "The link directory is not writable": "",
- "The async directory is not writable!": "",
- "Installer script still present": "",
- "Please make sure to delete the installer script \"install.php\" before continuing.": "",
- "An error occurred.": "",
- "File uploaded !": "",
- "Download page": "",
- "This file is valid until the following date": "",
- "View link": "",
- "Direct download link": "",
- "Delete link": "",
- "Download": "",
- "Preview": "",
- "Sorry, the requested file is not found": "",
- "File not available.": "",
- "File has been deleted.": "",
- "The time limit of this file has expired.": "",
- "Password protection": "",
- "Give the password of this file": "",
- "Access denied": "",
- "You are about to download": "",
- "By using our services, you accept our": "",
- "Term Of Service": "",
- "Warning, this file will self-destruct after being read": "",
- "Internal error during file creation.": "",
-
- "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "",
- "The following directory could not be created": "",
- "You should create this directory manually.": "",
- "The following directory is not writable": "",
- "You should give the write permission to the web server on this directory.": "",
- "Here is a solution": "",
- "The local configuration file could not be created. Create a lib/config.local.php
file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the lib
directory.": "",
- "The local configuration is not writable by the web server. Give the write permission to the web server on the 'lib/config.local.php
file.": "",
- "Installation of Jirafeau": "",
- "step": "",
- "out of": "",
- "Administration password": "",
- "Finalisation": "",
- "Jirafeau is setting the website according to the configuration you provided.": "",
- "Previous step": "",
- "Retry this step": "",
- "Jirafeau is now fully operational": "",
- "Information": "",
- "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
- "Base address": "",
- "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
- "Data directory": "",
- "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "",
- "Choose the default language": "",
- "Next step": "",
- "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
- "Administration password": "",
-
- "Sorry, the admin interface is not enabled.": "",
- "Sorry, you are not authenticated on admin interface.": "",
- "Login": "",
- "Wrong password.": "",
- "Admin interface": "",
- "Clean expired files": "",
- "Clean old unfinished transfers": "",
- "Clean": "",
- "Search files by name": "",
- "Search": "",
- "List all files": "",
- "List": "",
- "Actions": "",
- "Search files by file hash": "",
- "Search a specific link": "",
- "Number of cleaned files": "",
- "Logout": "",
- "You are now loggued out": "",
- "Link deleted": "",
- "Filename": "",
- "file": "",
- "link": "",
- "Type": "",
- "Size": "",
- "Expire": "",
- "Onetime": "",
- "Upload date": "",
- "Origin": "",
- "Action": "",
- "Del link": "",
- "Del file and links": "",
- "Deleted links": "",
- "year": "",
- "day": "",
- "minute": "",
- "hour": "",
- "second": "",
- "less than a second": ""
-}
diff --git a/sources/lib/locales/vi.json b/sources/lib/locales/vi.json
deleted file mode 100644
index d681a6a..0000000
--- a/sources/lib/locales/vi.json
+++ /dev/null
@@ -1,112 +0,0 @@
-{
- "Access denied": "",
- "Action": "",
- "Actions": "",
- "Admin interface": "",
- "Administration password": "",
- "An error occurred.": "",
- "Base address": "",
- "By using our services, you accept our": "",
- "Choose the default language": "",
- "Clean": "",
- "Clean expired files": "",
- "Clean old unfinished transfers": "",
- "Data directory": "",
- "Del file and links": "",
- "Del link": "",
- "Delete link": "",
- "Deleted links": "",
- "Direct download link": "",
- "Download": "",
- "Download page": "",
- "Expire": "",
- "File has been deleted.": "",
- "File is too big": "",
- "File not available.": "",
- "File size is limited to": "",
- "File uploaded !": "",
- "Filename": "",
- "Finalisation": "",
- "Give the password of this file": "",
- "Here is a solution": "",
- "Information": "",
- "Installation of Jirafeau": "",
- "Installer script still present": "",
- "Internal error during file creation.": "",
- "Jirafeau Project": "",
- "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
- "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "",
- "Jirafeau is now fully operational": "",
- "Jirafeau is setting the website according to the configuration you provided.": "",
- "Jirafeau, your web file repository": "",
- "Link deleted": "",
- "List": "",
- "List all files": "",
- "Login": "",
- "Logout": "",
- "Maximum file size": "",
- "Next step": "",
- "None": "",
- "Number of cleaned files": "",
- "One day": "",
- "One hour": "",
- "One minute": "",
- "One month": "",
- "One time download": "",
- "One week": "",
- "One year": "",
- "Onetime": "",
- "Origin": "",
- "Password": "",
- "Password protection": "",
- "Please make sure to delete the installer script \"install.php\" before continuing.": "",
- "Preview": "",
- "Previous step": "",
- "Retry this step": "",
- "Search": "",
- "Search a specific link": "",
- "Search files by file hash": "",
- "Search files by name": "",
- "Select a file": "",
- "Send": "",
- "Size": "",
- "Sorry, the admin interface is not enabled.": "",
- "Sorry, the requested file is not found": "",
- "Sorry, you are not authenticated on admin interface.": "",
- "Term Of Service": "",
- "The async directory is not writable!": "",
- "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
- "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
- "The file directory is not writable": "",
- "The following directory could not be created": "",
- "The following directory is not writable": "",
- "The link directory is not writable": "",
- "The local configuration file could not be created. Create a lib/config.local.php
file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the lib
directory.": "",
- "The local configuration is not writable by the web server. Give the write permission to the web server on the 'lib/config.local.php
file.": "",
- "The time limit of this file has expired.": "",
- "This file is valid until the following date": "",
- "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "",
- "Time limit": "",
- "Type": "",
- "Upload date": "",
- "Upload password": "",
- "Uploading ...": "",
- "View link": "",
- "Warning, this file will self-destruct after being read": "",
- "Wrong password.": "",
- "You are about to download": "",
- "You are now loggued out": "",
- "You should create this directory manually.": "",
- "You should give the write permission to the web server on this directory.": "",
- "day": "",
- "file": "",
- "hour": "",
- "less than a second": "",
- "link": "",
- "minute": "",
- "out of": "",
- "powered by Open-Source project Jirafeau": "",
- "second": "",
- "step": "",
- "year": ""
-}
\ No newline at end of file
diff --git a/sources/lib/locales/zh.json b/sources/lib/locales/zh.json
deleted file mode 100644
index d681a6a..0000000
--- a/sources/lib/locales/zh.json
+++ /dev/null
@@ -1,112 +0,0 @@
-{
- "Access denied": "",
- "Action": "",
- "Actions": "",
- "Admin interface": "",
- "Administration password": "",
- "An error occurred.": "",
- "Base address": "",
- "By using our services, you accept our": "",
- "Choose the default language": "",
- "Clean": "",
- "Clean expired files": "",
- "Clean old unfinished transfers": "",
- "Data directory": "",
- "Del file and links": "",
- "Del link": "",
- "Delete link": "",
- "Deleted links": "",
- "Direct download link": "",
- "Download": "",
- "Download page": "",
- "Expire": "",
- "File has been deleted.": "",
- "File is too big": "",
- "File not available.": "",
- "File size is limited to": "",
- "File uploaded !": "",
- "Filename": "",
- "Finalisation": "",
- "Give the password of this file": "",
- "Here is a solution": "",
- "Information": "",
- "Installation of Jirafeau": "",
- "Installer script still present": "",
- "Internal error during file creation.": "",
- "Jirafeau Project": "",
- "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
- "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "",
- "Jirafeau is now fully operational": "",
- "Jirafeau is setting the website according to the configuration you provided.": "",
- "Jirafeau, your web file repository": "",
- "Link deleted": "",
- "List": "",
- "List all files": "",
- "Login": "",
- "Logout": "",
- "Maximum file size": "",
- "Next step": "",
- "None": "",
- "Number of cleaned files": "",
- "One day": "",
- "One hour": "",
- "One minute": "",
- "One month": "",
- "One time download": "",
- "One week": "",
- "One year": "",
- "Onetime": "",
- "Origin": "",
- "Password": "",
- "Password protection": "",
- "Please make sure to delete the installer script \"install.php\" before continuing.": "",
- "Preview": "",
- "Previous step": "",
- "Retry this step": "",
- "Search": "",
- "Search a specific link": "",
- "Search files by file hash": "",
- "Search files by name": "",
- "Select a file": "",
- "Send": "",
- "Size": "",
- "Sorry, the admin interface is not enabled.": "",
- "Sorry, the requested file is not found": "",
- "Sorry, you are not authenticated on admin interface.": "",
- "Term Of Service": "",
- "The async directory is not writable!": "",
- "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
- "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
- "The file directory is not writable": "",
- "The following directory could not be created": "",
- "The following directory is not writable": "",
- "The link directory is not writable": "",
- "The local configuration file could not be created. Create a lib/config.local.php
file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the lib
directory.": "",
- "The local configuration is not writable by the web server. Give the write permission to the web server on the 'lib/config.local.php
file.": "",
- "The time limit of this file has expired.": "",
- "This file is valid until the following date": "",
- "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "",
- "Time limit": "",
- "Type": "",
- "Upload date": "",
- "Upload password": "",
- "Uploading ...": "",
- "View link": "",
- "Warning, this file will self-destruct after being read": "",
- "Wrong password.": "",
- "You are about to download": "",
- "You are now loggued out": "",
- "You should create this directory manually.": "",
- "You should give the write permission to the web server on this directory.": "",
- "day": "",
- "file": "",
- "hour": "",
- "less than a second": "",
- "link": "",
- "minute": "",
- "out of": "",
- "powered by Open-Source project Jirafeau": "",
- "second": "",
- "step": "",
- "year": ""
-}
\ No newline at end of file
diff --git a/sources/lib/settings.php b/sources/lib/settings.php
deleted file mode 100644
index dc36996..0000000
--- a/sources/lib/settings.php
+++ /dev/null
@@ -1,42 +0,0 @@
-
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see
-
- AGPLv3 |
- |
-
-