commit
6182b1353b
@ -0,0 +1,37 @@ |
||||
## Submitting issues |
||||
|
||||
If you have questions about how to use ownCloud, please direct these to the [mailing list][mailinglist] or our [forum][forum]. We are also available on [IRC][irc]. |
||||
|
||||
### Guidelines |
||||
* Report the issue using our [template][template], it includes all the informations we need to track down the issue. |
||||
* This repository is *only* for issues within the ownCloud core code. Issues in other compontents should be reported in their own repositores: |
||||
- [Android client](https://github.com/owncloud/android/issues) |
||||
- [iOS client](https://github.com/owncloud/ios-issues/issues) |
||||
- [Desktop client](https://github.com/owncloud/mirall/issues) |
||||
- [ownCloud apps](https://github.com/owncloud/apps/issues) (e.g. Calendar, Contacts...) |
||||
* Search the existing issues first, it's likely that your issue was already reported. |
||||
|
||||
If your issue appears to be a bug, and hasn't been reported, open a new issue. |
||||
|
||||
Help us to maximize the effort we can spend fixing issues and adding new features, by not reporting duplicate issues. |
||||
|
||||
[template]: https://raw.github.com/owncloud/core/master/issue_template.md |
||||
[mailinglist]: https://mail.kde.org/mailman/listinfo/owncloud |
||||
[forum]: http://forum.owncloud.org/ |
||||
[irc]: http://webchat.freenode.net/?channels=owncloud&uio=d4 |
||||
|
||||
## Contributing to Source Code |
||||
|
||||
Thanks for wanting to contribute source code to ownCloud. That's great! |
||||
|
||||
Before we're able to merge your code into the ownCloud core, you need to sign our [Contributor Agreement][agreement]. |
||||
|
||||
Please read the [Developer Manuals][devmanual] to get useful infos like how to create your first application or how to test the ownCloud code with phpunit. |
||||
|
||||
[agreement]: http://owncloud.org/about/contributor-agreement/ |
||||
[devmanual]: http://owncloud.org/dev/ |
||||
|
||||
## Translations |
||||
Please submit translations via [Transifex][transifex]. |
||||
|
||||
[transifex]: https://www.transifex.com/projects/p/owncloud/ |
||||
@ -1,2 +0,0 @@ |
||||
<?php |
||||
$_SESSION['timezone'] = $_GET['time']; |
||||
@ -1,114 +1,111 @@ |
||||
<?php |
||||
|
||||
/** |
||||
* ownCloud - ajax frontend |
||||
* |
||||
* @author Robin Appelman |
||||
* @copyright 2010 Robin Appelman icewind1991@gmail.com |
||||
* |
||||
* This library is free software; you can redistribute it and/or |
||||
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE |
||||
* License as published by the Free Software Foundation; either |
||||
* version 3 of the License, or any later version. |
||||
* |
||||
* This library 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 library. If not, see <http://www.gnu.org/licenses/>. |
||||
* |
||||
*/ |
||||
* ownCloud - ajax frontend |
||||
* |
||||
* @author Robin Appelman |
||||
* @copyright 2010 Robin Appelman icewind1991@gmail.com |
||||
* |
||||
* This library is free software; you can redistribute it and/or |
||||
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE |
||||
* License as published by the Free Software Foundation; either |
||||
* version 3 of the License, or any later version. |
||||
* |
||||
* This library 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 library. If not, see <http://www.gnu.org/licenses/>. |
||||
* |
||||
*/ |
||||
|
||||
// Check if we are a user |
||||
OCP\User::checkLoggedIn(); |
||||
|
||||
// Load the files we need |
||||
OCP\Util::addStyle( 'files', 'files' ); |
||||
OCP\Util::addscript( 'files', 'jquery.iframe-transport' ); |
||||
OCP\Util::addscript( 'files', 'jquery.fileupload' ); |
||||
OCP\Util::addscript( 'files', 'files' ); |
||||
OCP\Util::addscript( 'files', 'filelist' ); |
||||
OCP\Util::addscript( 'files', 'fileactions' ); |
||||
OCP\Util::addscript( 'files', 'keyboardshortcuts' ); |
||||
if(!isset($_SESSION['timezone'])) { |
||||
OCP\Util::addscript( 'files', 'timezone' ); |
||||
} |
||||
OCP\App::setActiveNavigationEntry( 'files_index' ); |
||||
OCP\Util::addStyle('files', 'files'); |
||||
OCP\Util::addscript('files', 'jquery.iframe-transport'); |
||||
OCP\Util::addscript('files', 'jquery.fileupload'); |
||||
OCP\Util::addscript('files', 'files'); |
||||
OCP\Util::addscript('files', 'filelist'); |
||||
OCP\Util::addscript('files', 'fileactions'); |
||||
OCP\Util::addscript('files', 'keyboardshortcuts'); |
||||
|
||||
OCP\App::setActiveNavigationEntry('files_index'); |
||||
// Load the files |
||||
$dir = isset( $_GET['dir'] ) ? stripslashes($_GET['dir']) : ''; |
||||
$dir = isset($_GET['dir']) ? stripslashes($_GET['dir']) : ''; |
||||
// Redirect if directory does not exist |
||||
if(!OC_Filesystem::is_dir($dir.'/')) { |
||||
header('Location: '.$_SERVER['SCRIPT_NAME'].''); |
||||
exit(); |
||||
if (!OC_Filesystem::is_dir($dir . '/')) { |
||||
header('Location: ' . $_SERVER['SCRIPT_NAME'] . ''); |
||||
exit(); |
||||
} |
||||
|
||||
$files = array(); |
||||
foreach( OC_Files::getdirectorycontent( $dir ) as $i ) { |
||||
$i['date'] = OCP\Util::formatDate($i['mtime'] ); |
||||
if($i['type']=='file') { |
||||
$fileinfo=pathinfo($i['name']); |
||||
$i['basename']=$fileinfo['filename']; |
||||
if (!empty($fileinfo['extension'])) { |
||||
$i['extension']='.' . $fileinfo['extension']; |
||||
} |
||||
else { |
||||
$i['extension']=''; |
||||
} |
||||
} |
||||
if($i['directory']=='/') { |
||||
$i['directory']=''; |
||||
} |
||||
$files[] = $i; |
||||
foreach (OC_Files::getdirectorycontent($dir) as $i) { |
||||
$i['date'] = OCP\Util::formatDate($i['mtime']); |
||||
if ($i['type'] == 'file') { |
||||
$fileinfo = pathinfo($i['name']); |
||||
$i['basename'] = $fileinfo['filename']; |
||||
if (!empty($fileinfo['extension'])) { |
||||
$i['extension'] = '.' . $fileinfo['extension']; |
||||
} else { |
||||
$i['extension'] = ''; |
||||
} |
||||
} |
||||
if ($i['directory'] == '/') { |
||||
$i['directory'] = ''; |
||||
} |
||||
$files[] = $i; |
||||
} |
||||
|
||||
// Make breadcrumb |
||||
$breadcrumb = array(); |
||||
$pathtohere = ''; |
||||
foreach( explode( '/', $dir ) as $i ) { |
||||
if( $i != '' ) { |
||||
$pathtohere .= '/'.$i; |
||||
$breadcrumb[] = array( 'dir' => $pathtohere, 'name' => $i ); |
||||
} |
||||
foreach (explode('/', $dir) as $i) { |
||||
if ($i != '') { |
||||
$pathtohere .= '/' . $i; |
||||
$breadcrumb[] = array('dir' => $pathtohere, 'name' => $i); |
||||
} |
||||
} |
||||
|
||||
// make breadcrumb und filelist markup |
||||
$list = new OCP\Template( 'files', 'part.list', '' ); |
||||
$list->assign( 'files', $files, false ); |
||||
$list->assign( 'baseURL', OCP\Util::linkTo('files', 'index.php').'?dir=', false); |
||||
$list->assign( 'downloadURL', OCP\Util::linkTo('files', 'download.php').'?file=', false); |
||||
$breadcrumbNav = new OCP\Template( 'files', 'part.breadcrumb', '' ); |
||||
$breadcrumbNav->assign( 'breadcrumb', $breadcrumb, false ); |
||||
$breadcrumbNav->assign( 'baseURL', OCP\Util::linkTo('files', 'index.php').'?dir=', false); |
||||
$list = new OCP\Template('files', 'part.list', ''); |
||||
$list->assign('files', $files, false); |
||||
$list->assign('baseURL', OCP\Util::linkTo('files', 'index.php') . '?dir=', false); |
||||
$list->assign('downloadURL', OCP\Util::linkTo('files', 'download.php') . '?file=', false); |
||||
$breadcrumbNav = new OCP\Template('files', 'part.breadcrumb', ''); |
||||
$breadcrumbNav->assign('breadcrumb', $breadcrumb, false); |
||||
$breadcrumbNav->assign('baseURL', OCP\Util::linkTo('files', 'index.php') . '?dir=', false); |
||||
|
||||
$upload_max_filesize = OCP\Util::computerFileSize(ini_get('upload_max_filesize')); |
||||
$post_max_size = OCP\Util::computerFileSize(ini_get('post_max_size')); |
||||
$maxUploadFilesize = min($upload_max_filesize, $post_max_size); |
||||
|
||||
$freeSpace=OC_Filesystem::free_space($dir); |
||||
$freeSpace=max($freeSpace, 0); |
||||
$freeSpace = OC_Filesystem::free_space($dir); |
||||
$freeSpace = max($freeSpace, 0); |
||||
$maxUploadFilesize = min($maxUploadFilesize, $freeSpace); |
||||
|
||||
$permissions = OCP\PERMISSION_READ; |
||||
if (OC_Filesystem::isUpdatable($dir.'/')) { |
||||
$permissions |= OCP\PERMISSION_UPDATE; |
||||
if (OC_Filesystem::isUpdatable($dir . '/')) { |
||||
$permissions |= OCP\PERMISSION_UPDATE; |
||||
} |
||||
if (OC_Filesystem::isDeletable($dir.'/')) { |
||||
$permissions |= OCP\PERMISSION_DELETE; |
||||
if (OC_Filesystem::isDeletable($dir . '/')) { |
||||
$permissions |= OCP\PERMISSION_DELETE; |
||||
} |
||||
if (OC_Filesystem::isSharable($dir.'/')) { |
||||
$permissions |= OCP\PERMISSION_SHARE; |
||||
if (OC_Filesystem::isSharable($dir . '/')) { |
||||
$permissions |= OCP\PERMISSION_SHARE; |
||||
} |
||||
|
||||
$tmpl = new OCP\Template( 'files', 'index', 'user' ); |
||||
$tmpl->assign( 'fileList', $list->fetchPage(), false ); |
||||
$tmpl->assign( 'breadcrumb', $breadcrumbNav->fetchPage(), false ); |
||||
$tmpl->assign( 'dir', OC_Filesystem::normalizePath($dir)); |
||||
$tmpl->assign( 'isCreatable', OC_Filesystem::isCreatable($dir.'/')); |
||||
$tmpl = new OCP\Template('files', 'index', 'user'); |
||||
$tmpl->assign('fileList', $list->fetchPage(), false); |
||||
$tmpl->assign('breadcrumb', $breadcrumbNav->fetchPage(), false); |
||||
$tmpl->assign('dir', OC_Filesystem::normalizePath($dir)); |
||||
$tmpl->assign('isCreatable', OC_Filesystem::isCreatable($dir . '/')); |
||||
$tmpl->assign('permissions', $permissions); |
||||
$tmpl->assign( 'files', $files ); |
||||
$tmpl->assign( 'uploadMaxFilesize', $maxUploadFilesize); |
||||
$tmpl->assign( 'uploadMaxHumanFilesize', OCP\Util::humanFileSize($maxUploadFilesize)); |
||||
$tmpl->assign( 'allowZipDownload', intval(OCP\Config::getSystemValue('allowZipDownload', true))); |
||||
$tmpl->assign('files', $files); |
||||
$tmpl->assign('uploadMaxFilesize', $maxUploadFilesize); |
||||
$tmpl->assign('uploadMaxHumanFilesize', OCP\Util::humanFileSize($maxUploadFilesize)); |
||||
$tmpl->assign('allowZipDownload', intval(OCP\Config::getSystemValue('allowZipDownload', true))); |
||||
$tmpl->printPage(); |
||||
|
||||
@ -1,12 +0,0 @@ |
||||
//send the clients time zone to the server
|
||||
$(document).ready(function() { |
||||
var visitortimezone = (-new Date().getTimezoneOffset()/60); |
||||
$.ajax({ |
||||
type: "GET", |
||||
url: OC.filePath('files', 'ajax', 'timezone.php'), |
||||
data: 'time='+ visitortimezone, |
||||
success: function(){ |
||||
location.reload(); |
||||
} |
||||
}); |
||||
}); |
||||
@ -1,28 +1,22 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"There is no error, the file uploaded with success" => "Файлът е качен успешно", |
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Файлът който се опитвате да качите надвишава стойностите в MAX_FILE_SIZE в HTML формата.", |
||||
"The uploaded file was only partially uploaded" => "Файлът е качен частично", |
||||
"No file was uploaded" => "Фахлът не бе качен", |
||||
"Missing a temporary folder" => "Липсва временната папка", |
||||
"Failed to write to disk" => "Грешка при запис на диска", |
||||
"Missing a temporary folder" => "Липсва временна папка", |
||||
"Files" => "Файлове", |
||||
"Delete" => "Изтриване", |
||||
"Upload Error" => "Грешка при качване", |
||||
"Upload cancelled." => "Качването е отменено.", |
||||
"Rename" => "Преименуване", |
||||
"replace" => "препокриване", |
||||
"cancel" => "отказ", |
||||
"undo" => "възтановяване", |
||||
"Upload cancelled." => "Качването е спряно.", |
||||
"Name" => "Име", |
||||
"Size" => "Размер", |
||||
"Modified" => "Променено", |
||||
"Maximum upload size" => "Макс. размер за качване", |
||||
"0 is unlimited" => "0 означава без ограничение", |
||||
"Maximum upload size" => "Максимален размер за качване", |
||||
"0 is unlimited" => "Ползвайте 0 за без ограничения", |
||||
"Save" => "Запис", |
||||
"New" => "Нов", |
||||
"Text file" => "Текстов файл", |
||||
"New" => "Ново", |
||||
"Folder" => "Папка", |
||||
"Upload" => "Качване", |
||||
"Cancel upload" => "Отказване на качването", |
||||
"Nothing in here. Upload something!" => "Няма нищо, качете нещо!", |
||||
"Nothing in here. Upload something!" => "Няма нищо тук. Качете нещо.", |
||||
"Download" => "Изтегляне", |
||||
"Upload too large" => "Файлът е прекалено голям", |
||||
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Файловете които се опитвате да качите са по-големи от позволеното за сървъра.", |
||||
"Files are being scanned, please wait." => "Файловете се претърсват, изчакайте." |
||||
"Upload too large" => "Файлът който сте избрали за качване е прекалено голям" |
||||
); |
||||
|
||||
@ -1,42 +1,67 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"There is no error, the file uploaded with success" => "Nincs hiba, a fájl sikeresen feltöltve.", |
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "A feltöltött fájl meghaladja a MAX_FILE_SIZE direktívát ami meghatározott a HTML form-ban.", |
||||
"The uploaded file was only partially uploaded" => "Az eredeti fájl csak részlegesen van feltöltve.", |
||||
"No file was uploaded" => "Nem lett fájl feltöltve.", |
||||
"Missing a temporary folder" => "Hiányzik az ideiglenes könyvtár", |
||||
"Failed to write to disk" => "Nem írható lemezre", |
||||
"No file was uploaded. Unknown error" => "Nem történt feltöltés. Ismeretlen hiba", |
||||
"There is no error, the file uploaded with success" => "A fájlt sikerült feltölteni", |
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "A feltöltött fájl mérete meghaladja a php.ini állományban megadott upload_max_filesize paraméter értékét.", |
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "A feltöltött fájl mérete meghaladja a MAX_FILE_SIZE paramétert, ami a HTML formban került megadásra.", |
||||
"The uploaded file was only partially uploaded" => "Az eredeti fájlt csak részben sikerült feltölteni.", |
||||
"No file was uploaded" => "Nem töltődött fel semmi", |
||||
"Missing a temporary folder" => "Hiányzik egy ideiglenes mappa", |
||||
"Failed to write to disk" => "Nem sikerült a lemezre történő írás", |
||||
"Not enough space available" => "Nincs elég szabad hely", |
||||
"Invalid directory." => "Érvénytelen mappa.", |
||||
"Files" => "Fájlok", |
||||
"Unshare" => "Nem oszt meg", |
||||
"Unshare" => "Megosztás visszavonása", |
||||
"Delete" => "Törlés", |
||||
"replace" => "cserél", |
||||
"Rename" => "Átnevezés", |
||||
"{new_name} already exists" => "{new_name} már létezik", |
||||
"replace" => "írjuk fölül", |
||||
"suggest name" => "legyen más neve", |
||||
"cancel" => "mégse", |
||||
"undo" => "visszavon", |
||||
"replaced {new_name}" => "a(z) {new_name} állományt kicseréltük", |
||||
"undo" => "visszavonás", |
||||
"replaced {new_name} with {old_name}" => "{new_name} fájlt kicseréltük ezzel: {old_name}", |
||||
"unshared {files}" => "{files} fájl megosztása visszavonva", |
||||
"deleted {files}" => "{files} fájl törölve", |
||||
"'.' is an invalid file name." => "'.' fájlnév érvénytelen.", |
||||
"File name cannot be empty." => "A fájlnév nem lehet semmi.", |
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Érvénytelen elnevezés. Ezek a karakterek nem használhatók: '\\', '/', '<', '>', ':', '\"', '|', '?' és '*'", |
||||
"generating ZIP-file, it may take some time." => "ZIP-fájl generálása, ez eltarthat egy ideig.", |
||||
"Unable to upload your file as it is a directory or has 0 bytes" => "Nem tölthető fel, mert mappa volt, vagy 0 byte méretű", |
||||
"Upload Error" => "Feltöltési hiba", |
||||
"Close" => "Bezár", |
||||
"Close" => "Bezárás", |
||||
"Pending" => "Folyamatban", |
||||
"Upload cancelled." => "Feltöltés megszakítva", |
||||
"1 file uploading" => "1 fájl töltődik föl", |
||||
"{count} files uploading" => "{count} fájl töltődik föl", |
||||
"Upload cancelled." => "A feltöltést megszakítottuk.", |
||||
"File upload is in progress. Leaving the page now will cancel the upload." => "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést.", |
||||
"URL cannot be empty." => "Az URL nem lehet semmi.", |
||||
"{count} files scanned" => "{count} fájlt találtunk", |
||||
"error while scanning" => "Hiba a fájllista-ellenőrzés során", |
||||
"Name" => "Név", |
||||
"Size" => "Méret", |
||||
"Modified" => "Módosítva", |
||||
"1 folder" => "1 mappa", |
||||
"{count} folders" => "{count} mappa", |
||||
"1 file" => "1 fájl", |
||||
"{count} files" => "{count} fájl", |
||||
"File handling" => "Fájlkezelés", |
||||
"Maximum upload size" => "Maximális feltölthető fájlméret", |
||||
"max. possible: " => "max. lehetséges", |
||||
"Needed for multi-file and folder downloads." => "Kötegelt file- vagy mappaletöltéshez szükséges", |
||||
"Enable ZIP-download" => "ZIP-letöltés engedélyezése", |
||||
"max. possible: " => "max. lehetséges: ", |
||||
"Needed for multi-file and folder downloads." => "Kötegelt fájl- vagy mappaletöltéshez szükséges", |
||||
"Enable ZIP-download" => "A ZIP-letöltés engedélyezése", |
||||
"0 is unlimited" => "0 = korlátlan", |
||||
"Maximum input size for ZIP files" => "ZIP file-ok maximum mérete", |
||||
"Maximum input size for ZIP files" => "ZIP-fájlok maximális kiindulási mérete", |
||||
"Save" => "Mentés", |
||||
"New" => "Új", |
||||
"Text file" => "Szövegfájl", |
||||
"Folder" => "Mappa", |
||||
"From link" => "Feltöltés linkről", |
||||
"Upload" => "Feltöltés", |
||||
"Cancel upload" => "Feltöltés megszakítása", |
||||
"Nothing in here. Upload something!" => "Töltsön fel egy fájlt.", |
||||
"Cancel upload" => "A feltöltés megszakítása", |
||||
"Nothing in here. Upload something!" => "Itt nincs semmi. Töltsön fel valamit!", |
||||
"Download" => "Letöltés", |
||||
"Upload too large" => "Feltöltés túl nagy", |
||||
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "A fájlokat amit próbálsz feltölteni meghaladta a legnagyobb fájlméretet ezen a szerveren.", |
||||
"Files are being scanned, please wait." => "File-ok vizsgálata, kis türelmet", |
||||
"Current scanning" => "Aktuális vizsgálat" |
||||
"Upload too large" => "A feltöltés túl nagy", |
||||
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "A feltöltendő állományok mérete meghaladja a kiszolgálón megengedett maximális méretet.", |
||||
"Files are being scanned, please wait." => "A fájllista ellenőrzése zajlik, kis türelmet!", |
||||
"Current scanning" => "Ellenőrzés alatt" |
||||
); |
||||
|
||||
@ -0,0 +1,71 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Could not move %s - File with this name already exists" => "Gat ekki fært %s - Skrá með þessu nafni er þegar til", |
||||
"Could not move %s" => "Gat ekki fært %s", |
||||
"Unable to rename file" => "Gat ekki endurskýrt skrá", |
||||
"No file was uploaded. Unknown error" => "Engin skrá var send inn. Óþekkt villa.", |
||||
"There is no error, the file uploaded with success" => "Engin villa, innsending heppnaðist", |
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Innsend skrá er stærri en upload_max stillingin í php.ini:", |
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Innsenda skráin er stærri en MAX_FILE_SIZE sem skilgreint er í HTML sniðinu.", |
||||
"The uploaded file was only partially uploaded" => "Einungis hluti af innsendri skrá skilaði sér", |
||||
"No file was uploaded" => "Engin skrá skilaði sér", |
||||
"Missing a temporary folder" => "Vantar bráðabirgðamöppu", |
||||
"Failed to write to disk" => "Tókst ekki að skrifa á disk", |
||||
"Not enough space available" => "Ekki nægt pláss tiltækt", |
||||
"Invalid directory." => "Ógild mappa.", |
||||
"Files" => "Skrár", |
||||
"Unshare" => "Hætta deilingu", |
||||
"Delete" => "Eyða", |
||||
"Rename" => "Endurskýra", |
||||
"{new_name} already exists" => "{new_name} er þegar til", |
||||
"replace" => "yfirskrifa", |
||||
"suggest name" => "stinga upp á nafni", |
||||
"cancel" => "hætta við", |
||||
"replaced {new_name}" => "endurskýrði {new_name}", |
||||
"undo" => "afturkalla", |
||||
"replaced {new_name} with {old_name}" => "yfirskrifaði {new_name} með {old_name}", |
||||
"unshared {files}" => "Hætti við deilingu á {files}", |
||||
"deleted {files}" => "eyddi {files}", |
||||
"'.' is an invalid file name." => "'.' er ekki leyfilegt nafn.", |
||||
"File name cannot be empty." => "Nafn skráar má ekki vera tómt", |
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ógilt nafn, táknin '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' eru ekki leyfð.", |
||||
"generating ZIP-file, it may take some time." => "bý til ZIP skrá, það gæti tekið smá stund.", |
||||
"Unable to upload your file as it is a directory or has 0 bytes" => "Innsending á skrá mistókst, hugsanlega sendir þú möppu eða skráin er 0 bæti.", |
||||
"Upload Error" => "Villa við innsendingu", |
||||
"Close" => "Loka", |
||||
"Pending" => "Bíður", |
||||
"1 file uploading" => "1 skrá innsend", |
||||
"{count} files uploading" => "{count} skrár innsendar", |
||||
"Upload cancelled." => "Hætt við innsendingu.", |
||||
"File upload is in progress. Leaving the page now will cancel the upload." => "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending misheppnast.", |
||||
"URL cannot be empty." => "Vefslóð má ekki vera tóm.", |
||||
"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Óleyfilegt nafn á möppu. Nafnið 'Shared' er frátekið fyrir Owncloud", |
||||
"{count} files scanned" => "{count} skrár skimaðar", |
||||
"error while scanning" => "villa við skimun", |
||||
"Name" => "Nafn", |
||||
"Size" => "Stærð", |
||||
"Modified" => "Breytt", |
||||
"1 folder" => "1 mappa", |
||||
"{count} folders" => "{count} möppur", |
||||
"1 file" => "1 skrá", |
||||
"{count} files" => "{count} skrár", |
||||
"File handling" => "Meðhöndlun skrár", |
||||
"Maximum upload size" => "Hámarks stærð innsendingar", |
||||
"max. possible: " => "hámark mögulegt: ", |
||||
"Needed for multi-file and folder downloads." => "Nauðsynlegt til að sækja margar skrár og möppur í einu.", |
||||
"Enable ZIP-download" => "Virkja ZIP niðurhal.", |
||||
"0 is unlimited" => "0 er ótakmarkað", |
||||
"Maximum input size for ZIP files" => "Hámarks inntaksstærð fyrir ZIP skrár", |
||||
"Save" => "Vista", |
||||
"New" => "Nýtt", |
||||
"Text file" => "Texta skrá", |
||||
"Folder" => "Mappa", |
||||
"From link" => "Af tengli", |
||||
"Upload" => "Senda inn", |
||||
"Cancel upload" => "Hætta við innsendingu", |
||||
"Nothing in here. Upload something!" => "Ekkert hér. Settu eitthvað inn!", |
||||
"Download" => "Niðurhal", |
||||
"Upload too large" => "Innsend skrá er of stór", |
||||
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Skrárnar sem þú ert að senda inn eru stærri en hámarks innsendingarstærð á þessum netþjóni.", |
||||
"Files are being scanned, please wait." => "Verið er að skima skrár, vinsamlegast hinkraðu.", |
||||
"Current scanning" => "Er að skima" |
||||
); |
||||
@ -1,16 +1,17 @@ |
||||
<?php if(count($_["breadcrumb"])):?> |
||||
<?php if(count($_["breadcrumb"])):?> |
||||
<div class="crumb"> |
||||
<a href="<?php echo $_['baseURL'].urlencode($crumb['dir']); ?>">
|
||||
<img src="<?php echo OCP\image_path('core','places/home.svg');?>" />
|
||||
</a> |
||||
</div> |
||||
<?php endif;?> |
||||
<?php for($i=0; $i<count($_["breadcrumb"]); $i++): |
||||
<?php endif;?> |
||||
<?php for($i=0; $i<count($_["breadcrumb"]); $i++): |
||||
$crumb = $_["breadcrumb"][$i]; |
||||
$dir = str_replace('+', '%20', urlencode($crumb["dir"])); ?> |
||||
<div class="crumb <?php if($i == count($_["breadcrumb"])-1) echo 'last';?> svg"
|
||||
data-dir='<?php echo $dir;?>'
|
||||
style='background-image:url("<?php echo OCP\image_path('core', 'breadcrumb.png');?>")'>
|
||||
<a href="<?php echo $_['baseURL'].$dir; ?>"><?php echo OCP\Util::sanitizeHTML($crumb["name"]); ?></a>
|
||||
</div> |
||||
<?php endfor; |
||||
$dir = str_replace('+', '%20', urlencode($crumb["dir"])); |
||||
$dir = str_replace('%2F', '/', $dir); ?> |
||||
<div class="crumb <?php if($i == count($_["breadcrumb"])-1) echo 'last';?> svg"
|
||||
data-dir='<?php echo $dir;?>'
|
||||
style='background-image:url("<?php echo OCP\image_path('core', 'breadcrumb.png');?>")'>
|
||||
<a href="<?php echo $_['baseURL'].$dir; ?>"><?php echo OCP\Util::sanitizeHTML($crumb["name"]); ?></a>
|
||||
</div> |
||||
<?php endfor; |
||||
|
||||
@ -1,70 +1,70 @@ |
||||
<script type="text/javascript"> |
||||
<?php if ( array_key_exists('publicListView', $_) && $_['publicListView'] == true ) :?> |
||||
var publicListView = true; |
||||
<script type="text/javascript"> |
||||
<?php if ( array_key_exists('publicListView', $_) && $_['publicListView'] == true ) :?> |
||||
var publicListView = true; |
||||
<?php else: ?> |
||||
var publicListView = false; |
||||
<?php endif; ?> |
||||
</script> |
||||
|
||||
<?php foreach($_['files'] as $file): |
||||
$simple_file_size = OCP\simple_file_size($file['size']); |
||||
// the bigger the file, the darker the shade of grey; megabytes*2 |
||||
$simple_size_color = intval(200-$file['size']/(1024*1024)*2); |
||||
if($simple_size_color<0) $simple_size_color = 0; |
||||
$relative_modified_date = OCP\relative_modified_date($file['mtime']); |
||||
// the older the file, the brighter the shade of grey; days*14 |
||||
$relative_date_color = round((time()-$file['mtime'])/60/60/24*14); |
||||
if($relative_date_color>200) $relative_date_color = 200; |
||||
$name = str_replace('+', '%20', urlencode($file['name'])); |
||||
$name = str_replace('%2F', '/', $name); |
||||
$directory = str_replace('+', '%20', urlencode($file['directory'])); |
||||
$directory = str_replace('%2F', '/', $directory); ?> |
||||
<tr data-id="<?php echo $file['id']; ?>"
|
||||
data-file="<?php echo $name;?>"
|
||||
data-type="<?php echo ($file['type'] == 'dir')?'dir':'file'?>"
|
||||
data-mime="<?php echo $file['mimetype']?>"
|
||||
data-size='<?php echo $file['size'];?>'
|
||||
data-permissions='<?php echo $file['permissions']; ?>'>
|
||||
<td class="filename svg" |
||||
<?php if($file['type'] == 'dir'): ?> |
||||
style="background-image:url(<?php echo OCP\mimetype_icon('dir'); ?>)"
|
||||
<?php else: ?> |
||||
var publicListView = false; |
||||
style="background-image:url(<?php echo OCP\mimetype_icon($file['mimetype']); ?>)"
|
||||
<?php endif; ?> |
||||
</script> |
||||
|
||||
<?php foreach($_['files'] as $file): |
||||
$simple_file_size = OCP\simple_file_size($file['size']); |
||||
// the bigger the file, the darker the shade of grey; megabytes*2 |
||||
$simple_size_color = intval(200-$file['size']/(1024*1024)*2); |
||||
if($simple_size_color<0) $simple_size_color = 0; |
||||
$relative_modified_date = OCP\relative_modified_date($file['mtime']); |
||||
// the older the file, the brighter the shade of grey; days*14 |
||||
$relative_date_color = round((time()-$file['mtime'])/60/60/24*14); |
||||
if($relative_date_color>200) $relative_date_color = 200; |
||||
$name = str_replace('+', '%20', urlencode($file['name'])); |
||||
$name = str_replace('%2F', '/', $name); |
||||
$directory = str_replace('+', '%20', urlencode($file['directory'])); |
||||
$directory = str_replace('%2F', '/', $directory); ?> |
||||
<tr data-id="<?php echo $file['id']; ?>"
|
||||
data-file="<?php echo $name;?>"
|
||||
data-type="<?php echo ($file['type'] == 'dir')?'dir':'file'?>"
|
||||
data-mime="<?php echo $file['mimetype']?>"
|
||||
data-size='<?php echo $file['size'];?>'
|
||||
data-permissions='<?php echo $file['permissions']; ?>'>
|
||||
<td class="filename svg" |
||||
<?php if($file['type'] == 'dir'): ?> |
||||
style="background-image:url(<?php echo OCP\mimetype_icon('dir'); ?>)"
|
||||
<?php else: ?> |
||||
style="background-image:url(<?php echo OCP\mimetype_icon($file['mimetype']); ?>)"
|
||||
<?php endif; ?> |
||||
> |
||||
<?php if(!isset($_['readonly']) || !$_['readonly']): ?><input type="checkbox" /><?php endif; ?> |
||||
<?php if($file['type'] == 'dir'): ?> |
||||
<a class="name" href="<?php $_['baseURL'].$directory.'/'.$name; ?>)" title="">
|
||||
<?php else: ?> |
||||
<a class="name" href="<?php echo $_['downloadURL'].$directory.'/'.$name; ?>" title="">
|
||||
<?php endif; ?> |
||||
<span class="nametext"> |
||||
<?php if($file['type'] == 'dir'):?> |
||||
<?php echo htmlspecialchars($file['name']);?> |
||||
<?php else:?> |
||||
<?php echo htmlspecialchars($file['basename']);?><span
|
||||
class='extension'><?php echo $file['extension'];?></span>
|
||||
<?php endif;?> |
||||
</span> |
||||
<?php if($file['type'] == 'dir'):?> |
||||
<span class="uploadtext" currentUploads="0"> |
||||
</span> |
||||
<?php endif;?> |
||||
</a> |
||||
</td> |
||||
<td class="filesize" |
||||
title="<?php echo OCP\human_file_size($file['size']); ?>"
|
||||
style="color:rgb(<?php echo $simple_size_color.','.$simple_size_color.','.$simple_size_color ?>)">
|
||||
<?php echo $simple_file_size; ?> |
||||
</td> |
||||
<td class="date"> |
||||
<span class="modified" |
||||
title="<?php echo $file['date']; ?>"
|
||||
style="color:rgb(<?php echo $relative_date_color.',' |
||||
.$relative_date_color.',' |
||||
.$relative_date_color ?>)"> |
||||
<?php echo $relative_modified_date; ?> |
||||
</span> |
||||
</td> |
||||
</tr> |
||||
<?php endforeach; |
||||
> |
||||
<?php if(!isset($_['readonly']) || !$_['readonly']): ?><input type="checkbox" /><?php endif; ?> |
||||
<?php if($file['type'] == 'dir'): ?> |
||||
<a class="name" href="<?php $_['baseURL'].$directory.'/'.$name; ?>)" title="">
|
||||
<?php else: ?> |
||||
<a class="name" href="<?php echo $_['downloadURL'].$directory.'/'.$name; ?>" title="">
|
||||
<?php endif; ?> |
||||
<span class="nametext"> |
||||
<?php if($file['type'] == 'dir'):?> |
||||
<?php echo htmlspecialchars($file['name']);?> |
||||
<?php else:?> |
||||
<?php echo htmlspecialchars($file['basename']);?><span
|
||||
class='extension'><?php echo $file['extension'];?></span>
|
||||
<?php endif;?> |
||||
</span> |
||||
<?php if($file['type'] == 'dir'):?> |
||||
<span class="uploadtext" currentUploads="0"> |
||||
</span> |
||||
<?php endif;?> |
||||
</a> |
||||
</td> |
||||
<td class="filesize" |
||||
title="<?php echo OCP\human_file_size($file['size']); ?>"
|
||||
style="color:rgb(<?php echo $simple_size_color.','.$simple_size_color.','.$simple_size_color ?>)">
|
||||
<?php echo $simple_file_size; ?> |
||||
</td> |
||||
<td class="date"> |
||||
<span class="modified" |
||||
title="<?php echo $file['date']; ?>"
|
||||
style="color:rgb(<?php echo $relative_date_color.',' |
||||
.$relative_date_color.',' |
||||
.$relative_date_color ?>)"> |
||||
<?php echo $relative_modified_date; ?> |
||||
</span> |
||||
</td> |
||||
</tr> |
||||
<?php endforeach; |
||||
@ -0,0 +1,6 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Encryption" => "Криптиране", |
||||
"Enable Encryption" => "Включване на криптирането", |
||||
"None" => "Няма", |
||||
"Exclude the following file types from encryption" => "Изключване на следните файлови типове от криптирането" |
||||
); |
||||
@ -0,0 +1,6 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Encryption" => "הצפנה", |
||||
"Enable Encryption" => "הפעל הצפנה", |
||||
"None" => "כלום", |
||||
"Exclude the following file types from encryption" => "הוצא את סוגי הקבצים הבאים מהצפנה" |
||||
); |
||||
@ -1,6 +1,6 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Encryption" => "Titkosítás", |
||||
"Exclude the following file types from encryption" => "A következő fájl típusok kizárása a titkosításból", |
||||
"Enable Encryption" => "A titkosítás engedélyezése", |
||||
"None" => "Egyik sem", |
||||
"Enable Encryption" => "Titkosítás engedélyezése" |
||||
"Exclude the following file types from encryption" => "A következő fájltípusok kizárása a titkosításból" |
||||
); |
||||
|
||||
@ -0,0 +1,6 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Encryption" => "Dulkóðun", |
||||
"Enable Encryption" => "Virkja dulkóðun", |
||||
"None" => "Ekkert", |
||||
"Exclude the following file types from encryption" => "Undanskilja eftirfarandi skráartegundir frá dulkóðun" |
||||
); |
||||
@ -0,0 +1,6 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Encryption" => "Енкрипција", |
||||
"Exclude the following file types from encryption" => "Исклучи ги следните типови на датотеки од енкрипција", |
||||
"None" => "Ништо", |
||||
"Enable Encryption" => "Овозможи енкрипција" |
||||
); |
||||
@ -0,0 +1,6 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Encryption" => "Şifreleme", |
||||
"Enable Encryption" => "Şifrelemeyi Etkinleştir", |
||||
"None" => "Hiçbiri", |
||||
"Exclude the following file types from encryption" => "Aşağıdaki dosya tiplerini şifrelemeye dahil etme" |
||||
); |
||||
@ -1,14 +1,14 @@ |
||||
<form id="calendar"> |
||||
<fieldset class="personalblock"> |
||||
<strong><?php echo $l->t('Encryption'); ?></strong>
|
||||
<?php echo $l->t('Exclude the following file types from encryption'); ?> |
||||
<legend><strong><?php echo $l->t('Encryption');?></strong></legend>
|
||||
<input type='checkbox'<?php if ($_['encryption_enabled']): ?> checked="checked"<?php endif; ?> |
||||
id='enable_encryption' ></input> |
||||
<label for='enable_encryption'><?php echo $l->t('Enable Encryption')?></label><br />
|
||||
<select id='encryption_blacklist' title="<?php echo $l->t('None')?>" multiple="multiple">
|
||||
<?php foreach ($_['blacklist'] as $type): ?> |
||||
<option selected="selected" value="<?php echo $type;?>"><?php echo $type;?></option>
|
||||
<?php endforeach;?> |
||||
</select> |
||||
<input type='checkbox'<?php if ($_['encryption_enabled']): ?> checked="checked"<?php endif; ?> |
||||
id='enable_encryption' ></input> |
||||
<label for='enable_encryption'><?php echo $l->t('Enable Encryption')?></label>
|
||||
</select><br /> |
||||
<?php echo $l->t('Exclude the following file types from encryption'); ?> |
||||
</fieldset> |
||||
</form> |
||||
|
||||
@ -1,4 +1,18 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Access granted" => "Достъпът е даден", |
||||
"Grant access" => "Даване на достъп", |
||||
"Fill out all required fields" => "Попълнете всички задължителни полета", |
||||
"External Storage" => "Външно хранилище", |
||||
"Backend" => "Администрация", |
||||
"Configuration" => "Конфигурация", |
||||
"Options" => "Опции", |
||||
"None set" => "Няма избрано", |
||||
"All Users" => "Всички потребители", |
||||
"Groups" => "Групи", |
||||
"Delete" => "Изтриване" |
||||
"Users" => "Потребители", |
||||
"Delete" => "Изтриване", |
||||
"Enable User External Storage" => "Вкл. на поддръжка за външно потр. хранилище", |
||||
"Allow users to mount their own external storage" => "Позволено е на потребителите да ползват тяхно лично външно хранилище", |
||||
"SSL root certificates" => "SSL основни сертификати", |
||||
"Import Root Certificate" => "Импортиране на основен сертификат" |
||||
); |
||||
|
||||
@ -1,5 +1,26 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Access granted" => "Érvényes hozzáférés", |
||||
"Error configuring Dropbox storage" => "A Dropbox tárolót nem sikerült beállítani", |
||||
"Grant access" => "Megadom a hozzáférést", |
||||
"Fill out all required fields" => "Töltse ki az összes szükséges mezőt", |
||||
"Please provide a valid Dropbox app key and secret." => "Adjon meg egy érvényes Dropbox app key-t és secretet!", |
||||
"Error configuring Google Drive storage" => "A Google Drive tárolót nem sikerült beállítani", |
||||
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Figyelem:</b> az \"smbclient\" nincs telepítve a kiszolgálón. Emiatt nem lehet CIFS/SMB megosztásokat fölcsatolni. Kérje meg a rendszergazdát, hogy telepítse a szükséges programot.", |
||||
"<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "<b>Figyelem:</b> a PHP FTP támogatása vagy nincs telepítve, vagy nincs engedélyezve a kiszolgálón. Emiatt nem lehetséges FTP-tárolókat fölcsatolni. Kérje meg a rendszergazdát, hogy telepítse a szükséges programot.", |
||||
"External Storage" => "Külső tárolási szolgáltatások becsatolása", |
||||
"Mount point" => "Hova csatoljuk", |
||||
"Backend" => "Külső tárolórendszer", |
||||
"Configuration" => "Beállítások", |
||||
"Options" => "Opciók", |
||||
"Applicable" => "Érvényességi kör", |
||||
"Add mount point" => "Új csatolás létrehozása", |
||||
"None set" => "Nincs beállítva", |
||||
"All Users" => "Az összes felhasználó", |
||||
"Groups" => "Csoportok", |
||||
"Users" => "Felhasználók", |
||||
"Delete" => "Törlés" |
||||
"Delete" => "Törlés", |
||||
"Enable User External Storage" => "Külső tárolók engedélyezése a felhasználók részére", |
||||
"Allow users to mount their own external storage" => "Lehetővé teszi, hogy a felhasználók külső tárolási szolgáltatásokat csatoljanak be a saját területükre", |
||||
"SSL root certificates" => "SSL tanúsítványok", |
||||
"Import Root Certificate" => "SSL tanúsítványok importálása" |
||||
); |
||||
|
||||
@ -0,0 +1,26 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Access granted" => "Aðgengi veitt", |
||||
"Error configuring Dropbox storage" => "Villa við að setja upp Dropbox gagnasvæði", |
||||
"Grant access" => "Veita aðgengi", |
||||
"Fill out all required fields" => "Fylltu út alla skilyrta reiti", |
||||
"Please provide a valid Dropbox app key and secret." => "Gefðu upp virkan Dropbox lykil og leynikóða", |
||||
"Error configuring Google Drive storage" => "Villa kom upp við að setja upp Google Drive gagnasvæði", |
||||
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Aðvörun:</b> \"smbclient\" er ekki uppsettur. Uppsetning á CIFS/SMB gagnasvæðum er ekki möguleg. Hafðu samband við kerfisstjóra til að fá hann uppsettan.", |
||||
"<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "<b>Aðvörun:</b> FTP stuðningur í PHP er ekki virkur. Uppsetning á FTP gagnasvæðum er ekki möguleg. Hafðu samband við kerfisstjóra til að fá hann uppsettan.", |
||||
"External Storage" => "Ytri gagnageymsla", |
||||
"Mount point" => "Mount svæði", |
||||
"Backend" => "Stjórnun", |
||||
"Configuration" => "Uppsetning", |
||||
"Options" => "Stillingar", |
||||
"Applicable" => "Gilt", |
||||
"Add mount point" => "Bæta við mount svæði", |
||||
"None set" => "Ekkert sett", |
||||
"All Users" => "Allir notendur", |
||||
"Groups" => "Hópar", |
||||
"Users" => "Notendur", |
||||
"Delete" => "Eyða", |
||||
"Enable User External Storage" => "Virkja ytra gagnasvæði notenda", |
||||
"Allow users to mount their own external storage" => "Leyfa notendum að bæta við sínum eigin ytri gagnasvæðum", |
||||
"SSL root certificates" => "SSL rótar skilríki", |
||||
"Import Root Certificate" => "Flytja inn rótar skilríki" |
||||
); |
||||
@ -1,5 +1,26 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Access granted" => "Пристапот е дозволен", |
||||
"Error configuring Dropbox storage" => "Грешка при конфигурација на Dropbox", |
||||
"Grant access" => "Дозволи пристап", |
||||
"Fill out all required fields" => "Пополни ги сите задолжителни полиња", |
||||
"Please provide a valid Dropbox app key and secret." => "Ве молам доставите валиден Dropbox клуч и тајна лозинка.", |
||||
"Error configuring Google Drive storage" => "Грешка при конфигурација на Google Drive", |
||||
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Внимание:</b> \"smbclient\" не е инсталиран. Не е можно монтирање на CIFS/SMB дискови. Замолете го Вашиот систем администратор да го инсталира.", |
||||
"<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "<b>Внимание:</b> Не е овозможена или инсталирани FTP подршка во PHP. Не е можно монтирање на FTP дискови. Замолете го Вашиот систем администратор да го инсталира.", |
||||
"External Storage" => "Надворешно складиште", |
||||
"Mount point" => "Точка на монтирање", |
||||
"Backend" => "Админ", |
||||
"Configuration" => "Конфигурација", |
||||
"Options" => "Опции", |
||||
"Applicable" => "Применливо", |
||||
"Add mount point" => "Додади точка на монтирање", |
||||
"None set" => "Ништо поставено", |
||||
"All Users" => "Сите корисници", |
||||
"Groups" => "Групи", |
||||
"Users" => "Корисници", |
||||
"Delete" => "Избриши" |
||||
"Delete" => "Избриши", |
||||
"Enable User External Storage" => "Овозможи надворешни за корисници", |
||||
"Allow users to mount their own external storage" => "Дозволи им на корисниците да монтираат свои надворешни дискови", |
||||
"SSL root certificates" => "SSL root сертификати", |
||||
"Import Root Certificate" => "Увези" |
||||
); |
||||
|
||||
@ -1,5 +1,16 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"External Storage" => "Harici Depolama", |
||||
"Mount point" => "Bağlama Noktası", |
||||
"Backend" => "Yönetici", |
||||
"Configuration" => "Yapılandırma", |
||||
"Options" => "Seçenekler", |
||||
"Applicable" => "Uygulanabilir", |
||||
"Add mount point" => "Bağlama noktası ekle", |
||||
"None set" => "Hiçbiri", |
||||
"All Users" => "Tüm Kullanıcılar", |
||||
"Groups" => "Gruplar", |
||||
"Users" => "Kullanıcılar", |
||||
"Delete" => "Sil" |
||||
"Delete" => "Sil", |
||||
"SSL root certificates" => "SSL kök sertifikaları", |
||||
"Import Root Certificate" => "Kök Sertifikalarını İçe Aktar" |
||||
); |
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue