diff options
Diffstat (limited to 'apps/files')
141 files changed, 1842 insertions, 76 deletions
diff --git a/apps/files/ajax/delete.php b/apps/files/ajax/delete.php index 1a810f6954c..6e9f5003f1e 100644 --- a/apps/files/ajax/delete.php +++ b/apps/files/ajax/delete.php @@ -6,8 +6,8 @@ OCP\JSON::callCheck(); // Get data -$dir = isset($_POST['dir']) ? $_POST['dir'] : ''; -$allFiles = isset($_POST["allfiles"]) ? $_POST["allfiles"] : false; +$dir = isset($_POST['dir']) ? (string)$_POST['dir'] : ''; +$allFiles = isset($_POST["allfiles"]) ? (string)$_POST["allfiles"] : false; // delete all files in dir ? if ($allFiles === 'true') { @@ -17,7 +17,7 @@ if ($allFiles === 'true') { $files[] = $fileInfo['name']; } } else { - $files = isset($_POST["file"]) ? $_POST["file"] : $_POST["files"]; + $files = isset($_POST["file"]) ? (string)$_POST["file"] : (string)$_POST["files"]; $files = json_decode($files); } $filesWithError = ''; diff --git a/apps/files/ajax/download.php b/apps/files/ajax/download.php index 368257b95cd..4bc4fc9298a 100644 --- a/apps/files/ajax/download.php +++ b/apps/files/ajax/download.php @@ -25,8 +25,8 @@ OCP\User::checkLoggedIn(); \OC::$server->getSession()->close(); -$files = isset($_GET['files']) ? $_GET['files'] : ''; -$dir = isset($_GET['dir']) ? $_GET['dir'] : ''; +$files = isset($_GET['files']) ? (string)$_GET['files'] : ''; +$dir = isset($_GET['dir']) ? (string)$_GET['dir'] : ''; $files_list = json_decode($files); // in case we get only a single file diff --git a/apps/files/ajax/getstoragestats.php b/apps/files/ajax/getstoragestats.php index fb7ccdc86cc..192c8ae2c70 100644 --- a/apps/files/ajax/getstoragestats.php +++ b/apps/files/ajax/getstoragestats.php @@ -3,7 +3,7 @@ $dir = '/'; if (isset($_GET['dir'])) { - $dir = $_GET['dir']; + $dir = (string)$_GET['dir']; } OCP\JSON::checkLoggedIn(); diff --git a/apps/files/ajax/list.php b/apps/files/ajax/list.php index b590776830a..f73dbf86093 100644 --- a/apps/files/ajax/list.php +++ b/apps/files/ajax/list.php @@ -20,7 +20,7 @@ try { $permissions = $dirInfo->getPermissions(); - $sortAttribute = isset($_GET['sort']) ? $_GET['sort'] : 'name'; + $sortAttribute = isset($_GET['sort']) ? (string)$_GET['sort'] : 'name'; $sortDirection = isset($_GET['sortdirection']) ? ($_GET['sortdirection'] === 'desc') : false; // make filelist diff --git a/apps/files/ajax/mimeicon.php b/apps/files/ajax/mimeicon.php index c531f5a3e81..82f6695bf08 100644 --- a/apps/files/ajax/mimeicon.php +++ b/apps/files/ajax/mimeicon.php @@ -1,6 +1,6 @@ <?php \OC::$server->getSession()->close(); -$mime = isset($_GET['mime']) ? $_GET['mime'] : ''; +$mime = isset($_GET['mime']) ? (string)$_GET['mime'] : ''; print OC_Helper::mimetypeIcon($mime); diff --git a/apps/files/ajax/move.php b/apps/files/ajax/move.php index a9e0d09f176..f3f3fbb8d9b 100644 --- a/apps/files/ajax/move.php +++ b/apps/files/ajax/move.php @@ -5,9 +5,9 @@ OCP\JSON::callCheck(); \OC::$server->getSession()->close(); // Get data -$dir = isset($_POST['dir']) ? $_POST['dir'] : ''; -$file = isset($_POST['file']) ? $_POST['file'] : ''; -$target = isset($_POST['target']) ? rawurldecode($_POST['target']) : ''; +$dir = isset($_POST['dir']) ? (string)$_POST['dir'] : ''; +$file = isset($_POST['file']) ? (string)$_POST['file'] : ''; +$target = isset($_POST['target']) ? rawurldecode((string)$_POST['target']) : ''; $l = \OC::$server->getL10N('files'); diff --git a/apps/files/ajax/newfile.php b/apps/files/ajax/newfile.php index 159a8b5d7a3..4f5d102b404 100644 --- a/apps/files/ajax/newfile.php +++ b/apps/files/ajax/newfile.php @@ -9,10 +9,10 @@ global $eventSource; \OC::$server->getSession()->close(); // Get the params -$dir = isset( $_REQUEST['dir'] ) ? '/'.trim($_REQUEST['dir'], '/\\') : ''; -$filename = isset( $_REQUEST['filename'] ) ? trim($_REQUEST['filename'], '/\\') : ''; -$content = isset( $_REQUEST['content'] ) ? $_REQUEST['content'] : ''; -$source = isset( $_REQUEST['source'] ) ? trim($_REQUEST['source'], '/\\') : ''; +$dir = isset( $_REQUEST['dir'] ) ? '/'.trim((string)$_REQUEST['dir'], '/\\') : ''; +$filename = isset( $_REQUEST['filename'] ) ? trim((string)$_REQUEST['filename'], '/\\') : ''; +$content = isset( $_REQUEST['content'] ) ? (string)$_REQUEST['content'] : ''; +$source = isset( $_REQUEST['source'] ) ? trim((string)$_REQUEST['source'], '/\\') : ''; if($source) { $eventSource = \OC::$server->createEventSource(); diff --git a/apps/files/ajax/newfolder.php b/apps/files/ajax/newfolder.php index fab230717de..e5e038b715c 100644 --- a/apps/files/ajax/newfolder.php +++ b/apps/files/ajax/newfolder.php @@ -8,8 +8,8 @@ OCP\JSON::callCheck(); \OC::$server->getSession()->close(); // Get the params -$dir = isset($_POST['dir']) ? $_POST['dir'] : ''; -$foldername = isset($_POST['foldername']) ? $_POST['foldername'] : ''; +$dir = isset($_POST['dir']) ? (string)$_POST['dir'] : ''; +$foldername = isset($_POST['foldername']) ?(string) $_POST['foldername'] : ''; $l10n = \OC::$server->getL10N('files'); diff --git a/apps/files/ajax/rename.php b/apps/files/ajax/rename.php index 6ea53468861..6f248265562 100644 --- a/apps/files/ajax/rename.php +++ b/apps/files/ajax/rename.php @@ -30,9 +30,9 @@ $files = new \OCA\Files\App( \OC::$server->getL10N('files') ); $result = $files->rename( - isset($_GET['dir']) ? $_GET['dir'] : '', - isset($_GET['file']) ? $_GET['file'] : '', - isset($_GET['newname']) ? $_GET['newname'] : '' + isset($_GET['dir']) ? (string)$_GET['dir'] : '', + isset($_GET['file']) ? (string)$_GET['file'] : '', + isset($_GET['newname']) ? (string)$_GET['newname'] : '' ); if($result['success'] === true){ diff --git a/apps/files/ajax/scan.php b/apps/files/ajax/scan.php index f8977c2971e..7daae26d1db 100644 --- a/apps/files/ajax/scan.php +++ b/apps/files/ajax/scan.php @@ -1,11 +1,15 @@ <?php set_time_limit(0); //scanning can take ages + +\OCP\JSON::checkLoggedIn(); +\OCP\JSON::callCheck(); + \OC::$server->getSession()->close(); $force = (isset($_GET['force']) and ($_GET['force'] === 'true')); -$dir = isset($_GET['dir']) ? $_GET['dir'] : ''; +$dir = isset($_GET['dir']) ? (string)$_GET['dir'] : ''; if (isset($_GET['users'])) { - OC_JSON::checkAdminUser(); + \OCP\JSON::checkAdminUser(); if ($_GET['users'] === 'all') { $users = OC_User::getUsers(); } else { diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index 88375f82acb..321a14e70fc 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -16,7 +16,7 @@ $l = \OC::$server->getL10N('files'); if (empty($_POST['dirToken'])) { // The standard case, files are uploaded through logged in users :) OCP\JSON::checkLoggedIn(); - $dir = isset($_POST['dir']) ? $_POST['dir'] : ""; + $dir = isset($_POST['dir']) ? (string)$_POST['dir'] : ''; if (!$dir || empty($dir) || $dir === false) { OCP\JSON::error(array('data' => array_merge(array('message' => $l->t('Unable to set upload directory.'))))); die(); @@ -30,9 +30,9 @@ if (empty($_POST['dirToken'])) { // return only read permissions for public upload $allowedPermissions = \OCP\Constants::PERMISSION_READ; - $publicDirectory = !empty($_POST['subdir']) ? $_POST['subdir'] : '/'; + $publicDirectory = !empty($_POST['subdir']) ? (string)$_POST['subdir'] : '/'; - $linkItem = OCP\Share::getShareByToken($_POST['dirToken']); + $linkItem = OCP\Share::getShareByToken((string)$_POST['dirToken']); if ($linkItem === false) { OCP\JSON::error(array('data' => array_merge(array('message' => $l->t('Invalid Token'))))); die(); diff --git a/apps/files/appinfo/app.php b/apps/files/appinfo/app.php index 62c205add52..87791e2558e 100644 --- a/apps/files/appinfo/app.php +++ b/apps/files/appinfo/app.php @@ -27,3 +27,10 @@ $templateManager->registerTemplate('application/vnd.oasis.opendocument.spreadshe "name" => $l->t('All files') ) ); + +\OC::$server->getActivityManager()->registerExtension(function() { + return new \OCA\Files\Activity( + \OC::$server->query('L10NFactory'), + \OC::$server->getURLGenerator() + ); +}); diff --git a/apps/files/js/breadcrumb.js b/apps/files/js/breadcrumb.js index 5cea2639c7d..364475e4a4f 100644 --- a/apps/files/js/breadcrumb.js +++ b/apps/files/js/breadcrumb.js @@ -67,6 +67,7 @@ * @param dir path to be displayed as breadcrumb */ setDirectory: function(dir) { + dir = dir.replace(/\\/g, '/'); dir = dir || '/'; if (dir !== this.dir) { this.dir = dir; diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index c5c665cee77..e5634323ef1 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -1009,6 +1009,7 @@ * @param changeUrl true to also update the URL, false otherwise (default) */ _setCurrentDir: function(targetDir, changeUrl) { + targetDir = targetDir.replace(/\\/g, '/'); var previousDir = this.getCurrentDirectory(), baseDir = OC.basename(targetDir); diff --git a/apps/files/l10n/ar.js b/apps/files/l10n/ar.js index 2f03fd8f400..896dd598556 100644 --- a/apps/files/l10n/ar.js +++ b/apps/files/l10n/ar.js @@ -49,6 +49,19 @@ OC.L10N.register( "_matches '{filter}'_::_match '{filter}'_" : ["","","","","",""], "{dirs} and {files}" : "{dirs} و {files}", "Favorite" : "المفضلة", + "A new file or folder has been <strong>created</strong>" : "تم <strong> إنشاء</strong> ملف جديد أو مجلد ", + "A file or folder has been <strong>changed</strong>" : "تم <strong> تغيير</strong> ملف أو مجلد", + "A file or folder has been <strong>deleted</strong>" : "تم <strong>حذف </strong> ملف أو مجلد", + "A file or folder has been <strong>restored</strong>" : "تم <strong> استعادة </strong> ملف أو مجلد", + "You created %1$s" : "لقد أنشأت %1$s", + "%2$s created %1$s" : "%2$s أنشأ %1$s", + "%1$s was created in a public folder" : "تم إنشاء %1$s في مجلد عام", + "You changed %1$s" : "لقد غيرت %1$s", + "%2$s changed %1$s" : "%2$s غير %1$s", + "You deleted %1$s" : "حذفت %1$s", + "%2$s deleted %1$s" : "%2$s حذف %1$s", + "You restored %1$s" : "لقد قمت باستعادة %1$s", + "%2$s restored %1$s" : "%2$s مستعاد %1$s", "%s could not be renamed" : "%s لا يمكن إعادة تسميته. ", "File handling" : "التعامل مع الملف", "Maximum upload size" : "الحد الأقصى لحجم الملفات التي يمكن رفعها", diff --git a/apps/files/l10n/ar.json b/apps/files/l10n/ar.json index 8bb71b32f2b..c3658380ec7 100644 --- a/apps/files/l10n/ar.json +++ b/apps/files/l10n/ar.json @@ -47,6 +47,19 @@ "_matches '{filter}'_::_match '{filter}'_" : ["","","","","",""], "{dirs} and {files}" : "{dirs} و {files}", "Favorite" : "المفضلة", + "A new file or folder has been <strong>created</strong>" : "تم <strong> إنشاء</strong> ملف جديد أو مجلد ", + "A file or folder has been <strong>changed</strong>" : "تم <strong> تغيير</strong> ملف أو مجلد", + "A file or folder has been <strong>deleted</strong>" : "تم <strong>حذف </strong> ملف أو مجلد", + "A file or folder has been <strong>restored</strong>" : "تم <strong> استعادة </strong> ملف أو مجلد", + "You created %1$s" : "لقد أنشأت %1$s", + "%2$s created %1$s" : "%2$s أنشأ %1$s", + "%1$s was created in a public folder" : "تم إنشاء %1$s في مجلد عام", + "You changed %1$s" : "لقد غيرت %1$s", + "%2$s changed %1$s" : "%2$s غير %1$s", + "You deleted %1$s" : "حذفت %1$s", + "%2$s deleted %1$s" : "%2$s حذف %1$s", + "You restored %1$s" : "لقد قمت باستعادة %1$s", + "%2$s restored %1$s" : "%2$s مستعاد %1$s", "%s could not be renamed" : "%s لا يمكن إعادة تسميته. ", "File handling" : "التعامل مع الملف", "Maximum upload size" : "الحد الأقصى لحجم الملفات التي يمكن رفعها", diff --git a/apps/files/l10n/ast.js b/apps/files/l10n/ast.js index 9acdf157eff..7257b7df532 100644 --- a/apps/files/l10n/ast.js +++ b/apps/files/l10n/ast.js @@ -75,6 +75,19 @@ OC.L10N.register( "_matches '{filter}'_::_match '{filter}'_" : ["",""], "{dirs} and {files}" : "{dirs} y {files}", "Favorite" : "Favoritu", + "A new file or folder has been <strong>created</strong>" : "<strong>Creóse</strong> un ficheru o carpeta nuevos", + "A file or folder has been <strong>changed</strong>" : "<strong>Camudóse</strong> un ficheru o carpeta", + "A file or folder has been <strong>deleted</strong>" : "<strong>Desanicióse</strong> un ficheru o carpeta", + "A file or folder has been <strong>restored</strong>" : "<strong>Restauróse</strong> un ficheru o carpeta", + "You created %1$s" : "Creasti %1$s", + "%2$s created %1$s" : "%2$s creó %1$s", + "%1$s was created in a public folder" : "Creóse %1$s nuna carpeta pública", + "You changed %1$s" : "Modificasti %1$s", + "%2$s changed %1$s" : "%2$s modificó %1$s", + "You deleted %1$s" : "Desaniciasti %1$s", + "%2$s deleted %1$s" : "%2$s desanició %1$s", + "You restored %1$s" : "Recuperóse %1$s", + "%2$s restored %1$s" : "%2$s recuperó %1$s", "%s could not be renamed as it has been deleted" : "%s nun pue renomase dempués de desaniciase", "%s could not be renamed" : "Nun se puede renomar %s ", "Upload (max. %s)" : "Xuba (máx. %s)", diff --git a/apps/files/l10n/ast.json b/apps/files/l10n/ast.json index 40d97bfbe04..eb066cbc120 100644 --- a/apps/files/l10n/ast.json +++ b/apps/files/l10n/ast.json @@ -73,6 +73,19 @@ "_matches '{filter}'_::_match '{filter}'_" : ["",""], "{dirs} and {files}" : "{dirs} y {files}", "Favorite" : "Favoritu", + "A new file or folder has been <strong>created</strong>" : "<strong>Creóse</strong> un ficheru o carpeta nuevos", + "A file or folder has been <strong>changed</strong>" : "<strong>Camudóse</strong> un ficheru o carpeta", + "A file or folder has been <strong>deleted</strong>" : "<strong>Desanicióse</strong> un ficheru o carpeta", + "A file or folder has been <strong>restored</strong>" : "<strong>Restauróse</strong> un ficheru o carpeta", + "You created %1$s" : "Creasti %1$s", + "%2$s created %1$s" : "%2$s creó %1$s", + "%1$s was created in a public folder" : "Creóse %1$s nuna carpeta pública", + "You changed %1$s" : "Modificasti %1$s", + "%2$s changed %1$s" : "%2$s modificó %1$s", + "You deleted %1$s" : "Desaniciasti %1$s", + "%2$s deleted %1$s" : "%2$s desanició %1$s", + "You restored %1$s" : "Recuperóse %1$s", + "%2$s restored %1$s" : "%2$s recuperó %1$s", "%s could not be renamed as it has been deleted" : "%s nun pue renomase dempués de desaniciase", "%s could not be renamed" : "Nun se puede renomar %s ", "Upload (max. %s)" : "Xuba (máx. %s)", diff --git a/apps/files/l10n/az.js b/apps/files/l10n/az.js index 90be607e9f2..ab75ce05184 100644 --- a/apps/files/l10n/az.js +++ b/apps/files/l10n/az.js @@ -56,6 +56,19 @@ OC.L10N.register( "_%n file_::_%n files_" : ["",""], "_Uploading %n file_::_Uploading %n files_" : ["",""], "_matches '{filter}'_::_match '{filter}'_" : ["",""], + "A new file or folder has been <strong>created</strong>" : "Yeni fayl və ya direktoriya <strong>yaradılmışdır</strong>", + "A file or folder has been <strong>changed</strong>" : "Fayl və ya direktoriya <strong>dəyişdirilib</strong>", + "A file or folder has been <strong>deleted</strong>" : "Fayl və ya direktoriya <strong>silinib</strong>", + "A file or folder has been <strong>restored</strong>" : "Fayl yada qovluq geriyə <strong>qaytarıldı</strong>", + "You created %1$s" : "Siz yaratdınız %1$s", + "%2$s created %1$s" : "%2$s yaradılmış %1$s", + "%1$s was created in a public folder" : "%1$s ictimai qovluqda yaradıldı", + "You changed %1$s" : "Siz dəyişdiniz %1$s", + "%2$s changed %1$s" : "%2$s dəyişdirildi %1$s", + "You deleted %1$s" : "Siz silindiniz %1$s", + "%2$s deleted %1$s" : "%2$s silindi %1$s", + "You restored %1$s" : "Siz qayıtdınız %1$s", + "%2$s restored %1$s" : "%2$s bərpa edildi %1$s", "Save" : "Saxlamaq", "Settings" : "Quraşdırmalar", "New folder" : "Yeni qovluq", diff --git a/apps/files/l10n/az.json b/apps/files/l10n/az.json index c0b614ff96e..505ab9ecaff 100644 --- a/apps/files/l10n/az.json +++ b/apps/files/l10n/az.json @@ -54,6 +54,19 @@ "_%n file_::_%n files_" : ["",""], "_Uploading %n file_::_Uploading %n files_" : ["",""], "_matches '{filter}'_::_match '{filter}'_" : ["",""], + "A new file or folder has been <strong>created</strong>" : "Yeni fayl və ya direktoriya <strong>yaradılmışdır</strong>", + "A file or folder has been <strong>changed</strong>" : "Fayl və ya direktoriya <strong>dəyişdirilib</strong>", + "A file or folder has been <strong>deleted</strong>" : "Fayl və ya direktoriya <strong>silinib</strong>", + "A file or folder has been <strong>restored</strong>" : "Fayl yada qovluq geriyə <strong>qaytarıldı</strong>", + "You created %1$s" : "Siz yaratdınız %1$s", + "%2$s created %1$s" : "%2$s yaradılmış %1$s", + "%1$s was created in a public folder" : "%1$s ictimai qovluqda yaradıldı", + "You changed %1$s" : "Siz dəyişdiniz %1$s", + "%2$s changed %1$s" : "%2$s dəyişdirildi %1$s", + "You deleted %1$s" : "Siz silindiniz %1$s", + "%2$s deleted %1$s" : "%2$s silindi %1$s", + "You restored %1$s" : "Siz qayıtdınız %1$s", + "%2$s restored %1$s" : "%2$s bərpa edildi %1$s", "Save" : "Saxlamaq", "Settings" : "Quraşdırmalar", "New folder" : "Yeni qovluq", diff --git a/apps/files/l10n/bg_BG.js b/apps/files/l10n/bg_BG.js index 1d9417b154e..fea04b15e9c 100644 --- a/apps/files/l10n/bg_BG.js +++ b/apps/files/l10n/bg_BG.js @@ -78,6 +78,19 @@ OC.L10N.register( "{dirs} and {files}" : "{dirs} и {files}", "Favorited" : "Отбелязано в любими", "Favorite" : "Любими", + "A new file or folder has been <strong>created</strong>" : "Нов файл или папка беше <strong>създаден/а</strong>", + "A file or folder has been <strong>changed</strong>" : "Файл или папка беше <strong>променен/а</strong>", + "A file or folder has been <strong>deleted</strong>" : "Файл или папка беше <strong>изтрит/а</strong>", + "A file or folder has been <strong>restored</strong>" : "Файл или папка беше <strong>възстановен/а</strong>", + "You created %1$s" : "Вие създадохте %1$s.", + "%2$s created %1$s" : "%2$s създаде %1$s.", + "%1$s was created in a public folder" : "%1$s е създаден в публична папка", + "You changed %1$s" : "Вие променихте %1$s.", + "%2$s changed %1$s" : "%2$s промени %1$s.", + "You deleted %1$s" : "Вие изтрихте %1$s.", + "%2$s deleted %1$s" : "%2$s изтри %1$s.", + "You restored %1$s" : "Вие възстановихте %1$s", + "%2$s restored %1$s" : "%2$s възстанови %1$s", "%s could not be renamed as it has been deleted" : "%s не може да бъде преименуван, защото е вече изтрит", "%s could not be renamed" : "%s не може да бъде преименуван.", "Upload (max. %s)" : "Качи (макс. %s)", diff --git a/apps/files/l10n/bg_BG.json b/apps/files/l10n/bg_BG.json index d8835e4e55f..0ac8b9436cd 100644 --- a/apps/files/l10n/bg_BG.json +++ b/apps/files/l10n/bg_BG.json @@ -76,6 +76,19 @@ "{dirs} and {files}" : "{dirs} и {files}", "Favorited" : "Отбелязано в любими", "Favorite" : "Любими", + "A new file or folder has been <strong>created</strong>" : "Нов файл или папка беше <strong>създаден/а</strong>", + "A file or folder has been <strong>changed</strong>" : "Файл или папка беше <strong>променен/а</strong>", + "A file or folder has been <strong>deleted</strong>" : "Файл или папка беше <strong>изтрит/а</strong>", + "A file or folder has been <strong>restored</strong>" : "Файл или папка беше <strong>възстановен/а</strong>", + "You created %1$s" : "Вие създадохте %1$s.", + "%2$s created %1$s" : "%2$s създаде %1$s.", + "%1$s was created in a public folder" : "%1$s е създаден в публична папка", + "You changed %1$s" : "Вие променихте %1$s.", + "%2$s changed %1$s" : "%2$s промени %1$s.", + "You deleted %1$s" : "Вие изтрихте %1$s.", + "%2$s deleted %1$s" : "%2$s изтри %1$s.", + "You restored %1$s" : "Вие възстановихте %1$s", + "%2$s restored %1$s" : "%2$s възстанови %1$s", "%s could not be renamed as it has been deleted" : "%s не може да бъде преименуван, защото е вече изтрит", "%s could not be renamed" : "%s не може да бъде преименуван.", "Upload (max. %s)" : "Качи (макс. %s)", diff --git a/apps/files/l10n/bn_BD.js b/apps/files/l10n/bn_BD.js index a0e7ac04be8..45e96028b18 100644 --- a/apps/files/l10n/bn_BD.js +++ b/apps/files/l10n/bn_BD.js @@ -53,6 +53,16 @@ OC.L10N.register( "Your storage is almost full ({usedSpacePercent}%)" : "আপনার সংরক্ষণাধার প্রায় পরিপূর্ণ ({usedSpacePercent}%) ", "_matches '{filter}'_::_match '{filter}'_" : ["",""], "Favorite" : "প্রিয়জন", + "A new file or folder has been <strong>created</strong>" : "একটি ফাইল বা ফোলডার <strong>তৈরি</strong> করা হয়েছে", + "A file or folder has been <strong>changed</strong>" : "একটি ফাইল বা ফোলডার <strong>পরিবরতন</strong> করা হয়েছে", + "A file or folder has been <strong>deleted</strong>" : "একটি ফাইল বা ফোলডার <strong>মোছা</strong> হয়েছে", + "You created %1$s" : "আপনি তৈরি করেছেন %1$s", + "%2$s created %1$s" : "%2$s তৈরি হয়েছে %1$s", + "%1$s was created in a public folder" : "একটি পাবলিক ফোল্ডারে %1$s তৈরী করা হয়েছে", + "You changed %1$s" : "আপনি পরিবরতন করেছেন %1$s", + "%2$s changed %1$s" : "%2$s পরিবরতন করেছে %1$s", + "You deleted %1$s" : "আপনি ডিলিট করেছেন %1$s", + "%2$s deleted %1$s" : "%2$s ডিলিট করেছে %1$s", "File handling" : "ফাইল হ্যার্ডলিং", "Maximum upload size" : "আপলোডের সর্বোচ্চ আকার", "max. possible: " : "অনুমোদিত সর্বোচ্চ আকার", diff --git a/apps/files/l10n/bn_BD.json b/apps/files/l10n/bn_BD.json index 8fd65000763..c8ea3edbaec 100644 --- a/apps/files/l10n/bn_BD.json +++ b/apps/files/l10n/bn_BD.json @@ -51,6 +51,16 @@ "Your storage is almost full ({usedSpacePercent}%)" : "আপনার সংরক্ষণাধার প্রায় পরিপূর্ণ ({usedSpacePercent}%) ", "_matches '{filter}'_::_match '{filter}'_" : ["",""], "Favorite" : "প্রিয়জন", + "A new file or folder has been <strong>created</strong>" : "একটি ফাইল বা ফোলডার <strong>তৈরি</strong> করা হয়েছে", + "A file or folder has been <strong>changed</strong>" : "একটি ফাইল বা ফোলডার <strong>পরিবরতন</strong> করা হয়েছে", + "A file or folder has been <strong>deleted</strong>" : "একটি ফাইল বা ফোলডার <strong>মোছা</strong> হয়েছে", + "You created %1$s" : "আপনি তৈরি করেছেন %1$s", + "%2$s created %1$s" : "%2$s তৈরি হয়েছে %1$s", + "%1$s was created in a public folder" : "একটি পাবলিক ফোল্ডারে %1$s তৈরী করা হয়েছে", + "You changed %1$s" : "আপনি পরিবরতন করেছেন %1$s", + "%2$s changed %1$s" : "%2$s পরিবরতন করেছে %1$s", + "You deleted %1$s" : "আপনি ডিলিট করেছেন %1$s", + "%2$s deleted %1$s" : "%2$s ডিলিট করেছে %1$s", "File handling" : "ফাইল হ্যার্ডলিং", "Maximum upload size" : "আপলোডের সর্বোচ্চ আকার", "max. possible: " : "অনুমোদিত সর্বোচ্চ আকার", diff --git a/apps/files/l10n/bn_IN.js b/apps/files/l10n/bn_IN.js index 409d8c74e85..4d965027f0d 100644 --- a/apps/files/l10n/bn_IN.js +++ b/apps/files/l10n/bn_IN.js @@ -25,6 +25,15 @@ OC.L10N.register( "_%n file_::_%n files_" : ["",""], "_Uploading %n file_::_Uploading %n files_" : ["",""], "_matches '{filter}'_::_match '{filter}'_" : ["",""], + "A new file or folder has been <strong>created</strong>" : "একটি নতুন ফাইল বা ফোল্ডার হয়েছে <strong>তৈরি</strong>", + "A file or folder has been <strong>changed</strong>" : "একটি নতুন ফাইল বা ফোল্ডার <strong>বদলানো হয়েছে</strong>", + "A file or folder has been <strong>deleted</strong>" : "একটি নতুন ফাইল বা ফোল্ডার <strong>মুছে ফেলা হয়েছে</strong>", + "You created %1$s" : "আপনি %1$s তৈরি করেছেন ", + "%2$s created %1$s" : "%2$s তৈরি করেছে %1$s", + "You changed %1$s" : "আপনি %1$s পরিবর্তন করেছেন ", + "%2$s changed %1$s" : "%2$s পরিবর্তন করেছে %1$s কে", + "You deleted %1$s" : "আপনি %1$s কে মুছেছেন", + "%2$s deleted %1$s" : "%2$s মুছেছে %1$s কে", "Save" : "সেভ", "Settings" : "সেটিংস", "New folder" : "নতুন ফোল্ডার", diff --git a/apps/files/l10n/bn_IN.json b/apps/files/l10n/bn_IN.json index 852acdf8327..185d28e78e1 100644 --- a/apps/files/l10n/bn_IN.json +++ b/apps/files/l10n/bn_IN.json @@ -23,6 +23,15 @@ "_%n file_::_%n files_" : ["",""], "_Uploading %n file_::_Uploading %n files_" : ["",""], "_matches '{filter}'_::_match '{filter}'_" : ["",""], + "A new file or folder has been <strong>created</strong>" : "একটি নতুন ফাইল বা ফোল্ডার হয়েছে <strong>তৈরি</strong>", + "A file or folder has been <strong>changed</strong>" : "একটি নতুন ফাইল বা ফোল্ডার <strong>বদলানো হয়েছে</strong>", + "A file or folder has been <strong>deleted</strong>" : "একটি নতুন ফাইল বা ফোল্ডার <strong>মুছে ফেলা হয়েছে</strong>", + "You created %1$s" : "আপনি %1$s তৈরি করেছেন ", + "%2$s created %1$s" : "%2$s তৈরি করেছে %1$s", + "You changed %1$s" : "আপনি %1$s পরিবর্তন করেছেন ", + "%2$s changed %1$s" : "%2$s পরিবর্তন করেছে %1$s কে", + "You deleted %1$s" : "আপনি %1$s কে মুছেছেন", + "%2$s deleted %1$s" : "%2$s মুছেছে %1$s কে", "Save" : "সেভ", "Settings" : "সেটিংস", "New folder" : "নতুন ফোল্ডার", diff --git a/apps/files/l10n/ca.js b/apps/files/l10n/ca.js index 22ff456c220..8a3640b1752 100644 --- a/apps/files/l10n/ca.js +++ b/apps/files/l10n/ca.js @@ -76,6 +76,19 @@ OC.L10N.register( "_matches '{filter}'_::_match '{filter}'_" : ["",""], "{dirs} and {files}" : "{dirs} i {files}", "Favorite" : "Preferits", + "A new file or folder has been <strong>created</strong>" : "S'ha <strong>creat</strong> un nou fitxer o una nova carpeta", + "A file or folder has been <strong>changed</strong>" : "S'ha <strong>canviat</strong> un fitxer o una carpeta", + "A file or folder has been <strong>deleted</strong>" : "S'ha <strong>elminiat</strong> un fitxer o una carpeta", + "A file or folder has been <strong>restored</strong>" : "S'ha <strong>restaurat</strong> un fitxer o una carpeta", + "You created %1$s" : "Has creat %1$s", + "%2$s created %1$s" : "%2$s ha creat %1$s", + "%1$s was created in a public folder" : "Es va crear %1$s en una carpeta pública", + "You changed %1$s" : "Has canviat %1$s", + "%2$s changed %1$s" : "%2$s ha canviat %1$s", + "You deleted %1$s" : "Has esborrat %1$s", + "%2$s deleted %1$s" : "%2$s ha esborrat %1$s", + "You restored %1$s" : "Has restaurat %1$s", + "%2$s restored %1$s" : "%2$s ha restaurat %1$s", "%s could not be renamed as it has been deleted" : "No s'ha pogut renombrar %s ja que ha estat borrat", "%s could not be renamed" : "%s no es pot canviar el nom", "Upload (max. %s)" : "Pujada (màx. %s)", diff --git a/apps/files/l10n/ca.json b/apps/files/l10n/ca.json index d8982bc6163..d66cd65f899 100644 --- a/apps/files/l10n/ca.json +++ b/apps/files/l10n/ca.json @@ -74,6 +74,19 @@ "_matches '{filter}'_::_match '{filter}'_" : ["",""], "{dirs} and {files}" : "{dirs} i {files}", "Favorite" : "Preferits", + "A new file or folder has been <strong>created</strong>" : "S'ha <strong>creat</strong> un nou fitxer o una nova carpeta", + "A file or folder has been <strong>changed</strong>" : "S'ha <strong>canviat</strong> un fitxer o una carpeta", + "A file or folder has been <strong>deleted</strong>" : "S'ha <strong>elminiat</strong> un fitxer o una carpeta", + "A file or folder has been <strong>restored</strong>" : "S'ha <strong>restaurat</strong> un fitxer o una carpeta", + "You created %1$s" : "Has creat %1$s", + "%2$s created %1$s" : "%2$s ha creat %1$s", + "%1$s was created in a public folder" : "Es va crear %1$s en una carpeta pública", + "You changed %1$s" : "Has canviat %1$s", + "%2$s changed %1$s" : "%2$s ha canviat %1$s", + "You deleted %1$s" : "Has esborrat %1$s", + "%2$s deleted %1$s" : "%2$s ha esborrat %1$s", + "You restored %1$s" : "Has restaurat %1$s", + "%2$s restored %1$s" : "%2$s ha restaurat %1$s", "%s could not be renamed as it has been deleted" : "No s'ha pogut renombrar %s ja que ha estat borrat", "%s could not be renamed" : "%s no es pot canviar el nom", "Upload (max. %s)" : "Pujada (màx. %s)", diff --git a/apps/files/l10n/cs_CZ.js b/apps/files/l10n/cs_CZ.js index e4170df0ed3..cc1ab490cb8 100644 --- a/apps/files/l10n/cs_CZ.js +++ b/apps/files/l10n/cs_CZ.js @@ -80,6 +80,19 @@ OC.L10N.register( "Favorited" : "Přidáno k oblíbeným", "Favorite" : "Oblíbené", "An error occurred while trying to update the tags" : "Při pokusu o úpravu tagů nastala chyba", + "A new file or folder has been <strong>created</strong>" : "Byl <strong>vytvořen</strong> nový soubor nebo adresář", + "A file or folder has been <strong>changed</strong>" : "Soubor nebo adresář byl <strong>změněn</strong>", + "A file or folder has been <strong>deleted</strong>" : "Soubor nebo adresář byl <strong>smazán</strong>", + "A file or folder has been <strong>restored</strong>" : "Soubor nebo adresář byl <strong>obnoven</strong>", + "You created %1$s" : "Vytvořili jste %1$s", + "%2$s created %1$s" : "%2$s vytvořil(a) %1$s", + "%1$s was created in a public folder" : "%1$s vytvořen ve veřejném adresáři", + "You changed %1$s" : "Změnili jste %1$s", + "%2$s changed %1$s" : "%2$s změnil(a) %1$s", + "You deleted %1$s" : "Smazali jste %1$s", + "%2$s deleted %1$s" : "%2$s smazal(a) %1$s", + "You restored %1$s" : "%1$s byl obnoven", + "%2$s restored %1$s" : "%2$s obnovil %1$s", "%s could not be renamed as it has been deleted" : "%s nelze přejmenovat, protože byl smazán", "%s could not be renamed" : "%s nemůže být přejmenován", "Upload (max. %s)" : "Nahrát (max. %s)", diff --git a/apps/files/l10n/cs_CZ.json b/apps/files/l10n/cs_CZ.json index facc6476356..d5354c48f94 100644 --- a/apps/files/l10n/cs_CZ.json +++ b/apps/files/l10n/cs_CZ.json @@ -78,6 +78,19 @@ "Favorited" : "Přidáno k oblíbeným", "Favorite" : "Oblíbené", "An error occurred while trying to update the tags" : "Při pokusu o úpravu tagů nastala chyba", + "A new file or folder has been <strong>created</strong>" : "Byl <strong>vytvořen</strong> nový soubor nebo adresář", + "A file or folder has been <strong>changed</strong>" : "Soubor nebo adresář byl <strong>změněn</strong>", + "A file or folder has been <strong>deleted</strong>" : "Soubor nebo adresář byl <strong>smazán</strong>", + "A file or folder has been <strong>restored</strong>" : "Soubor nebo adresář byl <strong>obnoven</strong>", + "You created %1$s" : "Vytvořili jste %1$s", + "%2$s created %1$s" : "%2$s vytvořil(a) %1$s", + "%1$s was created in a public folder" : "%1$s vytvořen ve veřejném adresáři", + "You changed %1$s" : "Změnili jste %1$s", + "%2$s changed %1$s" : "%2$s změnil(a) %1$s", + "You deleted %1$s" : "Smazali jste %1$s", + "%2$s deleted %1$s" : "%2$s smazal(a) %1$s", + "You restored %1$s" : "%1$s byl obnoven", + "%2$s restored %1$s" : "%2$s obnovil %1$s", "%s could not be renamed as it has been deleted" : "%s nelze přejmenovat, protože byl smazán", "%s could not be renamed" : "%s nemůže být přejmenován", "Upload (max. %s)" : "Nahrát (max. %s)", diff --git a/apps/files/l10n/da.js b/apps/files/l10n/da.js index fa85be4e7c8..a63f00de5bf 100644 --- a/apps/files/l10n/da.js +++ b/apps/files/l10n/da.js @@ -80,6 +80,19 @@ OC.L10N.register( "Favorited" : "Gjort til foretrukken", "Favorite" : "Foretrukken", "An error occurred while trying to update the tags" : "Der opstod en fejl under forsøg på at opdatere mærkerne", + "A new file or folder has been <strong>created</strong>" : "En ny fil eller mapper er blevet <strong>oprettet</strong>", + "A file or folder has been <strong>changed</strong>" : "En fil eller mappe er blevet <strong>ændret</strong>", + "A file or folder has been <strong>deleted</strong>" : "En fil eller mappe er blevet <strong>slettet</strong>", + "A file or folder has been <strong>restored</strong>" : "En fil eller mappe er blevet <strong>gendannet</strong>", + "You created %1$s" : "Du oprettede %1$s ", + "%2$s created %1$s" : "%2$s oprettede %1$s", + "%1$s was created in a public folder" : "%1$s blev oprettet i en offentlig mappe", + "You changed %1$s" : "Du ændrede %1$s", + "%2$s changed %1$s" : "%2$s ændrede %1$s", + "You deleted %1$s" : "Du slettede %1$s", + "%2$s deleted %1$s" : "%2$s slettede %1$s", + "You restored %1$s" : "Du gendannede %1$s", + "%2$s restored %1$s" : "%2$s gendannede %1$s", "%s could not be renamed as it has been deleted" : "%s kunne ikke omdøbes, da den er blevet slettet", "%s could not be renamed" : "%s kunne ikke omdøbes", "Upload (max. %s)" : "Upload (max. %s)", diff --git a/apps/files/l10n/da.json b/apps/files/l10n/da.json index 0209c2cb9ab..f3602c9c1b0 100644 --- a/apps/files/l10n/da.json +++ b/apps/files/l10n/da.json @@ -78,6 +78,19 @@ "Favorited" : "Gjort til foretrukken", "Favorite" : "Foretrukken", "An error occurred while trying to update the tags" : "Der opstod en fejl under forsøg på at opdatere mærkerne", + "A new file or folder has been <strong>created</strong>" : "En ny fil eller mapper er blevet <strong>oprettet</strong>", + "A file or folder has been <strong>changed</strong>" : "En fil eller mappe er blevet <strong>ændret</strong>", + "A file or folder has been <strong>deleted</strong>" : "En fil eller mappe er blevet <strong>slettet</strong>", + "A file or folder has been <strong>restored</strong>" : "En fil eller mappe er blevet <strong>gendannet</strong>", + "You created %1$s" : "Du oprettede %1$s ", + "%2$s created %1$s" : "%2$s oprettede %1$s", + "%1$s was created in a public folder" : "%1$s blev oprettet i en offentlig mappe", + "You changed %1$s" : "Du ændrede %1$s", + "%2$s changed %1$s" : "%2$s ændrede %1$s", + "You deleted %1$s" : "Du slettede %1$s", + "%2$s deleted %1$s" : "%2$s slettede %1$s", + "You restored %1$s" : "Du gendannede %1$s", + "%2$s restored %1$s" : "%2$s gendannede %1$s", "%s could not be renamed as it has been deleted" : "%s kunne ikke omdøbes, da den er blevet slettet", "%s could not be renamed" : "%s kunne ikke omdøbes", "Upload (max. %s)" : "Upload (max. %s)", diff --git a/apps/files/l10n/de.js b/apps/files/l10n/de.js index de4af2e168e..174fc5abfa9 100644 --- a/apps/files/l10n/de.js +++ b/apps/files/l10n/de.js @@ -80,6 +80,19 @@ OC.L10N.register( "Favorited" : "Favorisiert", "Favorite" : "Favorit", "An error occurred while trying to update the tags" : "Es ist ein Fehler beim Aktualisieren der Tags aufgetreten", + "A new file or folder has been <strong>created</strong>" : "Eine neue Datei oder ein neuer Ordner wurde <strong>erstellt</strong>", + "A file or folder has been <strong>changed</strong>" : "Eine Datei oder ein Ordner wurde <strong>geändert</strong>", + "A file or folder has been <strong>deleted</strong>" : "Eine Datei oder ein Ordner wurde <strong>gelöscht</strong>", + "A file or folder has been <strong>restored</strong>" : "Eine Datei oder ein Ordner wurde <strong>wiederhergestellt</strong>", + "You created %1$s" : "Du hast %1$s erstellt", + "%2$s created %1$s" : "%2$s hat %1$s erstellt", + "%1$s was created in a public folder" : "%1$s wurde in einem öffentlichen Ordner erstellt", + "You changed %1$s" : "Du hast %1$s geändert", + "%2$s changed %1$s" : "%2$s hat %1$s geändert", + "You deleted %1$s" : "Du hast %1$s gelöscht", + "%2$s deleted %1$s" : "%2$s hat %1$s gelöscht", + "You restored %1$s" : "Du hast %1$s wiederhergestellt", + "%2$s restored %1$s" : "%2$s wiederhergestellt %1$s", "%s could not be renamed as it has been deleted" : "%s konnte nicht umbenannt werden, da es gelöscht wurde", "%s could not be renamed" : "%s konnte nicht umbenannt werden", "Upload (max. %s)" : "Hochladen (max. %s)", diff --git a/apps/files/l10n/de.json b/apps/files/l10n/de.json index 9d5c5419edc..2f7e2024e7a 100644 --- a/apps/files/l10n/de.json +++ b/apps/files/l10n/de.json @@ -78,6 +78,19 @@ "Favorited" : "Favorisiert", "Favorite" : "Favorit", "An error occurred while trying to update the tags" : "Es ist ein Fehler beim Aktualisieren der Tags aufgetreten", + "A new file or folder has been <strong>created</strong>" : "Eine neue Datei oder ein neuer Ordner wurde <strong>erstellt</strong>", + "A file or folder has been <strong>changed</strong>" : "Eine Datei oder ein Ordner wurde <strong>geändert</strong>", + "A file or folder has been <strong>deleted</strong>" : "Eine Datei oder ein Ordner wurde <strong>gelöscht</strong>", + "A file or folder has been <strong>restored</strong>" : "Eine Datei oder ein Ordner wurde <strong>wiederhergestellt</strong>", + "You created %1$s" : "Du hast %1$s erstellt", + "%2$s created %1$s" : "%2$s hat %1$s erstellt", + "%1$s was created in a public folder" : "%1$s wurde in einem öffentlichen Ordner erstellt", + "You changed %1$s" : "Du hast %1$s geändert", + "%2$s changed %1$s" : "%2$s hat %1$s geändert", + "You deleted %1$s" : "Du hast %1$s gelöscht", + "%2$s deleted %1$s" : "%2$s hat %1$s gelöscht", + "You restored %1$s" : "Du hast %1$s wiederhergestellt", + "%2$s restored %1$s" : "%2$s wiederhergestellt %1$s", "%s could not be renamed as it has been deleted" : "%s konnte nicht umbenannt werden, da es gelöscht wurde", "%s could not be renamed" : "%s konnte nicht umbenannt werden", "Upload (max. %s)" : "Hochladen (max. %s)", diff --git a/apps/files/l10n/de_AT.js b/apps/files/l10n/de_AT.js index baf419cd7f4..240a2239ef9 100644 --- a/apps/files/l10n/de_AT.js +++ b/apps/files/l10n/de_AT.js @@ -10,6 +10,15 @@ OC.L10N.register( "_%n file_::_%n files_" : ["",""], "_Uploading %n file_::_Uploading %n files_" : ["",""], "_matches '{filter}'_::_match '{filter}'_" : ["",""], + "A new file or folder has been <strong>created</strong>" : "Eine neue Datei oder ein neuer Ordner wurde <strong>erstellt</strong>", + "A file or folder has been <strong>changed</strong>" : "Eine Datei oder ein Ordner hat sich <strong>geändert</strong>", + "A file or folder has been <strong>deleted</strong>" : "Eine Datei oder ein Ordner wurde <strong>gelöscht</strong>", + "You created %1$s" : "Du hast %1$s erstellt", + "%2$s created %1$s" : "%2$s erstellte %1$s", + "You changed %1$s" : "Du hast %1$s geändert", + "%2$s changed %1$s" : "%2$s änderte %1$s", + "You deleted %1$s" : "Du hast %1$s gelöscht", + "%2$s deleted %1$s" : "%2$s löschte %1$s", "Save" : "Speichern", "Settings" : "Einstellungen" }, diff --git a/apps/files/l10n/de_AT.json b/apps/files/l10n/de_AT.json index a27065acc9e..fd7f7b2611a 100644 --- a/apps/files/l10n/de_AT.json +++ b/apps/files/l10n/de_AT.json @@ -8,6 +8,15 @@ "_%n file_::_%n files_" : ["",""], "_Uploading %n file_::_Uploading %n files_" : ["",""], "_matches '{filter}'_::_match '{filter}'_" : ["",""], + "A new file or folder has been <strong>created</strong>" : "Eine neue Datei oder ein neuer Ordner wurde <strong>erstellt</strong>", + "A file or folder has been <strong>changed</strong>" : "Eine Datei oder ein Ordner hat sich <strong>geändert</strong>", + "A file or folder has been <strong>deleted</strong>" : "Eine Datei oder ein Ordner wurde <strong>gelöscht</strong>", + "You created %1$s" : "Du hast %1$s erstellt", + "%2$s created %1$s" : "%2$s erstellte %1$s", + "You changed %1$s" : "Du hast %1$s geändert", + "%2$s changed %1$s" : "%2$s änderte %1$s", + "You deleted %1$s" : "Du hast %1$s gelöscht", + "%2$s deleted %1$s" : "%2$s löschte %1$s", "Save" : "Speichern", "Settings" : "Einstellungen" },"pluralForm" :"nplurals=2; plural=(n != 1);" diff --git a/apps/files/l10n/de_DE.js b/apps/files/l10n/de_DE.js index f27d579efec..f80447d6510 100644 --- a/apps/files/l10n/de_DE.js +++ b/apps/files/l10n/de_DE.js @@ -80,6 +80,19 @@ OC.L10N.register( "Favorited" : "Favorisiert", "Favorite" : "Favorit", "An error occurred while trying to update the tags" : "Es ist ein Fehler beim Aktualisieren der Tags aufgetreten", + "A new file or folder has been <strong>created</strong>" : "Eine neue Datei oder ein neuer Ordner wurde <strong>erstellt</strong>", + "A file or folder has been <strong>changed</strong>" : "Eine Datei oder ein Ordner wurde <strong>geändert</strong>", + "A file or folder has been <strong>deleted</strong>" : "Eine Datei oder ein Ordner wurde <strong>gelöscht</strong>", + "A file or folder has been <strong>restored</strong>" : "Eine Datei oder ein Ordner wurde <strong>wiederhergestellt</strong>", + "You created %1$s" : "Sie haben %1$s erstellt", + "%2$s created %1$s" : "%2$s hat %1$s erstellt", + "%1$s was created in a public folder" : "%1$s wurde in einem öffentlichen Ordner erstellt", + "You changed %1$s" : "Sie haben %1$s geändert", + "%2$s changed %1$s" : "%2$s hat %1$s geändert", + "You deleted %1$s" : "Sie haben %1$s gelöscht", + "%2$s deleted %1$s" : "%2$s hat %1$s gelöscht", + "You restored %1$s" : "Sie haben %1$s wiederhergestellt", + "%2$s restored %1$s" : "%2$s wiederhergestellt %1$s", "%s could not be renamed as it has been deleted" : "%s konnte nicht umbenannt werden, da es gelöscht wurde", "%s could not be renamed" : "%s konnte nicht umbenannt werden", "Upload (max. %s)" : "Hochladen (max. %s)", diff --git a/apps/files/l10n/de_DE.json b/apps/files/l10n/de_DE.json index 2c80e6f2b9c..034b717afce 100644 --- a/apps/files/l10n/de_DE.json +++ b/apps/files/l10n/de_DE.json @@ -78,6 +78,19 @@ "Favorited" : "Favorisiert", "Favorite" : "Favorit", "An error occurred while trying to update the tags" : "Es ist ein Fehler beim Aktualisieren der Tags aufgetreten", + "A new file or folder has been <strong>created</strong>" : "Eine neue Datei oder ein neuer Ordner wurde <strong>erstellt</strong>", + "A file or folder has been <strong>changed</strong>" : "Eine Datei oder ein Ordner wurde <strong>geändert</strong>", + "A file or folder has been <strong>deleted</strong>" : "Eine Datei oder ein Ordner wurde <strong>gelöscht</strong>", + "A file or folder has been <strong>restored</strong>" : "Eine Datei oder ein Ordner wurde <strong>wiederhergestellt</strong>", + "You created %1$s" : "Sie haben %1$s erstellt", + "%2$s created %1$s" : "%2$s hat %1$s erstellt", + "%1$s was created in a public folder" : "%1$s wurde in einem öffentlichen Ordner erstellt", + "You changed %1$s" : "Sie haben %1$s geändert", + "%2$s changed %1$s" : "%2$s hat %1$s geändert", + "You deleted %1$s" : "Sie haben %1$s gelöscht", + "%2$s deleted %1$s" : "%2$s hat %1$s gelöscht", + "You restored %1$s" : "Sie haben %1$s wiederhergestellt", + "%2$s restored %1$s" : "%2$s wiederhergestellt %1$s", "%s could not be renamed as it has been deleted" : "%s konnte nicht umbenannt werden, da es gelöscht wurde", "%s could not be renamed" : "%s konnte nicht umbenannt werden", "Upload (max. %s)" : "Hochladen (max. %s)", diff --git a/apps/files/l10n/el.js b/apps/files/l10n/el.js index 02cfa856af1..10fd4c59d4e 100644 --- a/apps/files/l10n/el.js +++ b/apps/files/l10n/el.js @@ -76,6 +76,19 @@ OC.L10N.register( "_matches '{filter}'_::_match '{filter}'_" : ["",""], "{dirs} and {files}" : "{Κατάλογοι αρχείων} και {αρχεία}", "Favorite" : "Αγαπημένο", + "A new file or folder has been <strong>created</strong>" : "Ένα νέο αρχείο ή κατάλογος έχουν <strong>δημιουργηθεί</strong>", + "A file or folder has been <strong>changed</strong>" : "Ένα αρχείο ή κατάλογος έχουν <strong>αλλάξει</strong>", + "A file or folder has been <strong>deleted</strong>" : "Ένα αρχείο ή κατάλογος έχουν <strong>διαγραφεί</strong>", + "A file or folder has been <strong>restored</strong>" : "Ένα αρχείο ή φάκελος <strong>επαναφέρθηκε</ strong>", + "You created %1$s" : "Δημιουργήσατε %1$s", + "%2$s created %1$s" : "Ο %2$s δημιούργησε %1$s", + "%1$s was created in a public folder" : "Το %1$s δημιουργήθηκε σε έναν δημόσιο φάκελο", + "You changed %1$s" : "Αλλάξατε %1$s", + "%2$s changed %1$s" : "Ο %2$s άλλαξε %1$s", + "You deleted %1$s" : "Διαγράψατε %1$s", + "%2$s deleted %1$s" : "Ο %2$s διέγραψε %1$s", + "You restored %1$s" : "Επαναφέρατε %1$s", + "%2$s restored %1$s" : "%2$s επανέφερε %1$s", "%s could not be renamed as it has been deleted" : "%s δεν μπορούσε να μετονομαστεί εφόσον είχε διαγραφεί", "%s could not be renamed" : "Αδυναμία μετονομασίας του %s", "Upload (max. %s)" : "Διαμοιρασμός (max. %s)", diff --git a/apps/files/l10n/el.json b/apps/files/l10n/el.json index 5f2ecf6c2a3..a57e01dc760 100644 --- a/apps/files/l10n/el.json +++ b/apps/files/l10n/el.json @@ -74,6 +74,19 @@ "_matches '{filter}'_::_match '{filter}'_" : ["",""], "{dirs} and {files}" : "{Κατάλογοι αρχείων} και {αρχεία}", "Favorite" : "Αγαπημένο", + "A new file or folder has been <strong>created</strong>" : "Ένα νέο αρχείο ή κατάλογος έχουν <strong>δημιουργηθεί</strong>", + "A file or folder has been <strong>changed</strong>" : "Ένα αρχείο ή κατάλογος έχουν <strong>αλλάξει</strong>", + "A file or folder has been <strong>deleted</strong>" : "Ένα αρχείο ή κατάλογος έχουν <strong>διαγραφεί</strong>", + "A file or folder has been <strong>restored</strong>" : "Ένα αρχείο ή φάκελος <strong>επαναφέρθηκε</ strong>", + "You created %1$s" : "Δημιουργήσατε %1$s", + "%2$s created %1$s" : "Ο %2$s δημιούργησε %1$s", + "%1$s was created in a public folder" : "Το %1$s δημιουργήθηκε σε έναν δημόσιο φάκελο", + "You changed %1$s" : "Αλλάξατε %1$s", + "%2$s changed %1$s" : "Ο %2$s άλλαξε %1$s", + "You deleted %1$s" : "Διαγράψατε %1$s", + "%2$s deleted %1$s" : "Ο %2$s διέγραψε %1$s", + "You restored %1$s" : "Επαναφέρατε %1$s", + "%2$s restored %1$s" : "%2$s επανέφερε %1$s", "%s could not be renamed as it has been deleted" : "%s δεν μπορούσε να μετονομαστεί εφόσον είχε διαγραφεί", "%s could not be renamed" : "Αδυναμία μετονομασίας του %s", "Upload (max. %s)" : "Διαμοιρασμός (max. %s)", diff --git a/apps/files/l10n/en_GB.js b/apps/files/l10n/en_GB.js index a0083e4e77d..92652d8a586 100644 --- a/apps/files/l10n/en_GB.js +++ b/apps/files/l10n/en_GB.js @@ -80,6 +80,19 @@ OC.L10N.register( "Favorited" : "Favourited", "Favorite" : "Favourite", "An error occurred while trying to update the tags" : "An error occurred whilst trying to update the tags", + "A new file or folder has been <strong>created</strong>" : "A new file or folder has been <strong>created</strong>", + "A file or folder has been <strong>changed</strong>" : "A file or folder has been <strong>changed</strong>", + "A file or folder has been <strong>deleted</strong>" : "A file or folder has been <strong>deleted</strong>", + "A file or folder has been <strong>restored</strong>" : "A file or folder has been <strong>restored</strong>", + "You created %1$s" : "You created %1$s", + "%2$s created %1$s" : "%2$s created %1$s", + "%1$s was created in a public folder" : "%1$s was created in a public folder", + "You changed %1$s" : "You changed %1$s", + "%2$s changed %1$s" : "%2$s changed %1$s", + "You deleted %1$s" : "You deleted %1$s", + "%2$s deleted %1$s" : "%2$s deleted %1$s", + "You restored %1$s" : "You restored %1$s", + "%2$s restored %1$s" : "%2$s restored %1$s", "%s could not be renamed as it has been deleted" : "%s could not be renamed as it has been deleted", "%s could not be renamed" : "%s could not be renamed", "Upload (max. %s)" : "Upload (max. %s)", diff --git a/apps/files/l10n/en_GB.json b/apps/files/l10n/en_GB.json index 16c8cdbc824..e9ba0f9de37 100644 --- a/apps/files/l10n/en_GB.json +++ b/apps/files/l10n/en_GB.json @@ -78,6 +78,19 @@ "Favorited" : "Favourited", "Favorite" : "Favourite", "An error occurred while trying to update the tags" : "An error occurred whilst trying to update the tags", + "A new file or folder has been <strong>created</strong>" : "A new file or folder has been <strong>created</strong>", + "A file or folder has been <strong>changed</strong>" : "A file or folder has been <strong>changed</strong>", + "A file or folder has been <strong>deleted</strong>" : "A file or folder has been <strong>deleted</strong>", + "A file or folder has been <strong>restored</strong>" : "A file or folder has been <strong>restored</strong>", + "You created %1$s" : "You created %1$s", + "%2$s created %1$s" : "%2$s created %1$s", + "%1$s was created in a public folder" : "%1$s was created in a public folder", + "You changed %1$s" : "You changed %1$s", + "%2$s changed %1$s" : "%2$s changed %1$s", + "You deleted %1$s" : "You deleted %1$s", + "%2$s deleted %1$s" : "%2$s deleted %1$s", + "You restored %1$s" : "You restored %1$s", + "%2$s restored %1$s" : "%2$s restored %1$s", "%s could not be renamed as it has been deleted" : "%s could not be renamed as it has been deleted", "%s could not be renamed" : "%s could not be renamed", "Upload (max. %s)" : "Upload (max. %s)", diff --git a/apps/files/l10n/eo.js b/apps/files/l10n/eo.js index f0dfdd6369b..b7c7d397c6a 100644 --- a/apps/files/l10n/eo.js +++ b/apps/files/l10n/eo.js @@ -57,6 +57,12 @@ OC.L10N.register( "_matches '{filter}'_::_match '{filter}'_" : ["",""], "{dirs} and {files}" : "{dirs} kaj {files}", "Favorite" : "Favorato", + "You created %1$s" : "Vi kreis %1$s", + "%2$s created %1$s" : "%2$s kreis %1$s", + "You changed %1$s" : "Vi ŝanĝis %1$s", + "%2$s changed %1$s" : "%2$s ŝanĝis %1$s", + "You deleted %1$s" : "Vi forigis %1$s", + "%2$s deleted %1$s" : "%2$s forigis %1$s", "%s could not be renamed" : "%s ne povis alinomiĝi", "Upload (max. %s)" : "Alŝuti (maks. %s)", "File handling" : "Dosieradministro", diff --git a/apps/files/l10n/eo.json b/apps/files/l10n/eo.json index 6ac3b20bcb2..48005fa8043 100644 --- a/apps/files/l10n/eo.json +++ b/apps/files/l10n/eo.json @@ -55,6 +55,12 @@ "_matches '{filter}'_::_match '{filter}'_" : ["",""], "{dirs} and {files}" : "{dirs} kaj {files}", "Favorite" : "Favorato", + "You created %1$s" : "Vi kreis %1$s", + "%2$s created %1$s" : "%2$s kreis %1$s", + "You changed %1$s" : "Vi ŝanĝis %1$s", + "%2$s changed %1$s" : "%2$s ŝanĝis %1$s", + "You deleted %1$s" : "Vi forigis %1$s", + "%2$s deleted %1$s" : "%2$s forigis %1$s", "%s could not be renamed" : "%s ne povis alinomiĝi", "Upload (max. %s)" : "Alŝuti (maks. %s)", "File handling" : "Dosieradministro", diff --git a/apps/files/l10n/es.js b/apps/files/l10n/es.js index f1e670581be..74bf55b7f4c 100644 --- a/apps/files/l10n/es.js +++ b/apps/files/l10n/es.js @@ -80,6 +80,19 @@ OC.L10N.register( "Favorited" : "Agregado a favoritos", "Favorite" : "Favorito", "An error occurred while trying to update the tags" : "Se produjo un error al tratar de actualizar las etiquetas", + "A new file or folder has been <strong>created</strong>" : "Se ha <strong>creado</strong> un nuevo archivo o carpeta", + "A file or folder has been <strong>changed</strong>" : "Se ha <strong>modificado</strong> un archivo o carpeta", + "A file or folder has been <strong>deleted</strong>" : "Se ha <strong>eliminado</strong> un archivo o carpeta", + "A file or folder has been <strong>restored</strong>" : "Se ha <strong>restaurado</strong> un archivo o carpeta", + "You created %1$s" : "Ha creado %1$s", + "%2$s created %1$s" : "%2$s ha creado %1$s", + "%1$s was created in a public folder" : "%1$s ha sido creado en una carpeta pública", + "You changed %1$s" : "Ha modificado %1$s", + "%2$s changed %1$s" : "%2$s ha modificado %1$s", + "You deleted %1$s" : "Ha eliminado %1$s", + "%2$s deleted %1$s" : "%2$s ha eliminado %1$s", + "You restored %1$s" : "Usted restauró %1$s", + "%2$s restored %1$s" : "%2$s recuperó %1$s", "%s could not be renamed as it has been deleted" : "%s no se pudo renombrar pues ha sido eliminado", "%s could not be renamed" : "%s no pudo ser renombrado", "Upload (max. %s)" : "Subida (máx. %s)", diff --git a/apps/files/l10n/es.json b/apps/files/l10n/es.json index 8884b736f6f..c825fd460d3 100644 --- a/apps/files/l10n/es.json +++ b/apps/files/l10n/es.json @@ -78,6 +78,19 @@ "Favorited" : "Agregado a favoritos", "Favorite" : "Favorito", "An error occurred while trying to update the tags" : "Se produjo un error al tratar de actualizar las etiquetas", + "A new file or folder has been <strong>created</strong>" : "Se ha <strong>creado</strong> un nuevo archivo o carpeta", + "A file or folder has been <strong>changed</strong>" : "Se ha <strong>modificado</strong> un archivo o carpeta", + "A file or folder has been <strong>deleted</strong>" : "Se ha <strong>eliminado</strong> un archivo o carpeta", + "A file or folder has been <strong>restored</strong>" : "Se ha <strong>restaurado</strong> un archivo o carpeta", + "You created %1$s" : "Ha creado %1$s", + "%2$s created %1$s" : "%2$s ha creado %1$s", + "%1$s was created in a public folder" : "%1$s ha sido creado en una carpeta pública", + "You changed %1$s" : "Ha modificado %1$s", + "%2$s changed %1$s" : "%2$s ha modificado %1$s", + "You deleted %1$s" : "Ha eliminado %1$s", + "%2$s deleted %1$s" : "%2$s ha eliminado %1$s", + "You restored %1$s" : "Usted restauró %1$s", + "%2$s restored %1$s" : "%2$s recuperó %1$s", "%s could not be renamed as it has been deleted" : "%s no se pudo renombrar pues ha sido eliminado", "%s could not be renamed" : "%s no pudo ser renombrado", "Upload (max. %s)" : "Subida (máx. %s)", diff --git a/apps/files/l10n/es_AR.js b/apps/files/l10n/es_AR.js index 39de4af29ba..bbcdebf2cf4 100644 --- a/apps/files/l10n/es_AR.js +++ b/apps/files/l10n/es_AR.js @@ -64,6 +64,15 @@ OC.L10N.register( "_matches '{filter}'_::_match '{filter}'_" : ["",""], "{dirs} and {files}" : "{carpetas} y {archivos}", "Favorite" : "Favorito", + "A new file or folder has been <strong>created</strong>" : "Un archivo o carpeta ha sido <strong>creado</strong>", + "A file or folder has been <strong>changed</strong>" : "Un archivo o carpeta ha sido <strong>modificado</strong>", + "A file or folder has been <strong>deleted</strong>" : "Un archivo o carpeta ha sido <strong>eliminado</strong>", + "You created %1$s" : "Has creado %1$s", + "%2$s created %1$s" : "%2$s creó %1$s", + "You changed %1$s" : "Modificaste %1$s", + "%2$s changed %1$s" : "%2$s modificó %1$s", + "You deleted %1$s" : "Eliminaste %1$s", + "%2$s deleted %1$s" : "%2$s eliminó %1$s", "%s could not be renamed" : "No se pudo renombrar %s", "File handling" : "Tratamiento de archivos", "Maximum upload size" : "Tamaño máximo de subida", diff --git a/apps/files/l10n/es_AR.json b/apps/files/l10n/es_AR.json index 1a58715cd96..f93e49e7f30 100644 --- a/apps/files/l10n/es_AR.json +++ b/apps/files/l10n/es_AR.json @@ -62,6 +62,15 @@ "_matches '{filter}'_::_match '{filter}'_" : ["",""], "{dirs} and {files}" : "{carpetas} y {archivos}", "Favorite" : "Favorito", + "A new file or folder has been <strong>created</strong>" : "Un archivo o carpeta ha sido <strong>creado</strong>", + "A file or folder has been <strong>changed</strong>" : "Un archivo o carpeta ha sido <strong>modificado</strong>", + "A file or folder has been <strong>deleted</strong>" : "Un archivo o carpeta ha sido <strong>eliminado</strong>", + "You created %1$s" : "Has creado %1$s", + "%2$s created %1$s" : "%2$s creó %1$s", + "You changed %1$s" : "Modificaste %1$s", + "%2$s changed %1$s" : "%2$s modificó %1$s", + "You deleted %1$s" : "Eliminaste %1$s", + "%2$s deleted %1$s" : "%2$s eliminó %1$s", "%s could not be renamed" : "No se pudo renombrar %s", "File handling" : "Tratamiento de archivos", "Maximum upload size" : "Tamaño máximo de subida", diff --git a/apps/files/l10n/es_CL.js b/apps/files/l10n/es_CL.js index 4e7a2daa421..442a9faffa4 100644 --- a/apps/files/l10n/es_CL.js +++ b/apps/files/l10n/es_CL.js @@ -10,6 +10,15 @@ OC.L10N.register( "_%n file_::_%n files_" : ["",""], "_Uploading %n file_::_Uploading %n files_" : ["",""], "_matches '{filter}'_::_match '{filter}'_" : ["",""], + "A new file or folder has been <strong>created</strong>" : "Un nuevo archivo o carpeta ha sido <strong>creado</strong>", + "A file or folder has been <strong>changed</strong>" : "Un archivo o carpeta ha sido <strong>cambiado</strong>", + "A file or folder has been <strong>deleted</strong>" : "Un archivo o carpeta ha sido <strong>eliminado</strong>", + "You created %1$s" : "Ha creado %1$s", + "%2$s created %1$s" : "%2$s creó %1$s", + "You changed %1$s" : "Cambió %1$s", + "%2$s changed %1$s" : "%2$s cambió %1$s", + "You deleted %1$s" : "Ha borrado %1$s", + "%2$s deleted %1$s" : "%2$s borró %1$s", "Settings" : "Configuración", "New folder" : "Nuevo directorio", "Upload" : "Subir", diff --git a/apps/files/l10n/es_CL.json b/apps/files/l10n/es_CL.json index 7abe511c2c9..65dea4a6480 100644 --- a/apps/files/l10n/es_CL.json +++ b/apps/files/l10n/es_CL.json @@ -8,6 +8,15 @@ "_%n file_::_%n files_" : ["",""], "_Uploading %n file_::_Uploading %n files_" : ["",""], "_matches '{filter}'_::_match '{filter}'_" : ["",""], + "A new file or folder has been <strong>created</strong>" : "Un nuevo archivo o carpeta ha sido <strong>creado</strong>", + "A file or folder has been <strong>changed</strong>" : "Un archivo o carpeta ha sido <strong>cambiado</strong>", + "A file or folder has been <strong>deleted</strong>" : "Un archivo o carpeta ha sido <strong>eliminado</strong>", + "You created %1$s" : "Ha creado %1$s", + "%2$s created %1$s" : "%2$s creó %1$s", + "You changed %1$s" : "Cambió %1$s", + "%2$s changed %1$s" : "%2$s cambió %1$s", + "You deleted %1$s" : "Ha borrado %1$s", + "%2$s deleted %1$s" : "%2$s borró %1$s", "Settings" : "Configuración", "New folder" : "Nuevo directorio", "Upload" : "Subir", diff --git a/apps/files/l10n/es_CR.js b/apps/files/l10n/es_CR.js index 6b2234ae636..fba59bdc851 100644 --- a/apps/files/l10n/es_CR.js +++ b/apps/files/l10n/es_CR.js @@ -5,6 +5,19 @@ OC.L10N.register( "_%n folder_::_%n folders_" : ["",""], "_%n file_::_%n files_" : ["",""], "_Uploading %n file_::_Uploading %n files_" : ["",""], - "_matches '{filter}'_::_match '{filter}'_" : ["",""] + "_matches '{filter}'_::_match '{filter}'_" : ["",""], + "A new file or folder has been <strong>created</strong>" : "Un nuevo archivo o carpeta ha sido <strong>creado</strong>", + "A file or folder has been <strong>changed</strong>" : "Un archivo o carpeta ha sido <strong>cambiado</strong>", + "A file or folder has been <strong>deleted</strong>" : "Un archivo o carpeta ha sido <strong>eliminado</strong>", + "A file or folder has been <strong>restored</strong>" : "Un archivo o carpeta ha sido <strong>restaurado</strong>", + "You created %1$s" : "Usted creó %1$s", + "%2$s created %1$s" : "%2$s creó %1$s", + "%1$s was created in a public folder" : "%1$s fue creado en un folder público", + "You changed %1$s" : "Usted cambió %1$s", + "%2$s changed %1$s" : "%2$s cambió %1$s", + "You deleted %1$s" : "Usted eliminó %1$s", + "%2$s deleted %1$s" : "%2$s eliminó %1$s", + "You restored %1$s" : "Usted restauró %1$s", + "%2$s restored %1$s" : "%2$s restauró %1$s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/es_CR.json b/apps/files/l10n/es_CR.json index 3fcc4aefc43..4f1307b6e1c 100644 --- a/apps/files/l10n/es_CR.json +++ b/apps/files/l10n/es_CR.json @@ -3,6 +3,19 @@ "_%n folder_::_%n folders_" : ["",""], "_%n file_::_%n files_" : ["",""], "_Uploading %n file_::_Uploading %n files_" : ["",""], - "_matches '{filter}'_::_match '{filter}'_" : ["",""] + "_matches '{filter}'_::_match '{filter}'_" : ["",""], + "A new file or folder has been <strong>created</strong>" : "Un nuevo archivo o carpeta ha sido <strong>creado</strong>", + "A file or folder has been <strong>changed</strong>" : "Un archivo o carpeta ha sido <strong>cambiado</strong>", + "A file or folder has been <strong>deleted</strong>" : "Un archivo o carpeta ha sido <strong>eliminado</strong>", + "A file or folder has been <strong>restored</strong>" : "Un archivo o carpeta ha sido <strong>restaurado</strong>", + "You created %1$s" : "Usted creó %1$s", + "%2$s created %1$s" : "%2$s creó %1$s", + "%1$s was created in a public folder" : "%1$s fue creado en un folder público", + "You changed %1$s" : "Usted cambió %1$s", + "%2$s changed %1$s" : "%2$s cambió %1$s", + "You deleted %1$s" : "Usted eliminó %1$s", + "%2$s deleted %1$s" : "%2$s eliminó %1$s", + "You restored %1$s" : "Usted restauró %1$s", + "%2$s restored %1$s" : "%2$s restauró %1$s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/files/l10n/es_PY.js b/apps/files/l10n/es_PY.js index 6b2234ae636..03df532ef9d 100644 --- a/apps/files/l10n/es_PY.js +++ b/apps/files/l10n/es_PY.js @@ -5,6 +5,19 @@ OC.L10N.register( "_%n folder_::_%n folders_" : ["",""], "_%n file_::_%n files_" : ["",""], "_Uploading %n file_::_Uploading %n files_" : ["",""], - "_matches '{filter}'_::_match '{filter}'_" : ["",""] + "_matches '{filter}'_::_match '{filter}'_" : ["",""], + "A new file or folder has been <strong>created</strong>" : "Ha sido <strong>creado</strong> un nuevo archivo o carpeta", + "A file or folder has been <strong>changed</strong>" : "Ha sido <strong>modificado</strong> un archivo o carpeta", + "A file or folder has been <strong>deleted</strong>" : "Ha sido <strong>eliminado</strong> un archivo o carpeta", + "A file or folder has been <strong>restored</strong>" : "Se ha <strong>recuperado</strong> un archivo o carpeta", + "You created %1$s" : "Ha creado %1$s", + "%2$s created %1$s" : "%2$s ha creado %1$s", + "%1$s was created in a public folder" : "%1$s ha sido creado en una carpeta pública", + "You changed %1$s" : "Ha modificado %1$s", + "%2$s changed %1$s" : "%2$s ha modificado %1$s", + "You deleted %1$s" : "Usted ha eliminado %1$s", + "%2$s deleted %1$s" : "%2$s ha eliminado %1$s", + "You restored %1$s" : "Ha recuperado %1$s", + "%2$s restored %1$s" : "%2$s ha recuperado %1$s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/es_PY.json b/apps/files/l10n/es_PY.json index 3fcc4aefc43..de2dab354f1 100644 --- a/apps/files/l10n/es_PY.json +++ b/apps/files/l10n/es_PY.json @@ -3,6 +3,19 @@ "_%n folder_::_%n folders_" : ["",""], "_%n file_::_%n files_" : ["",""], "_Uploading %n file_::_Uploading %n files_" : ["",""], - "_matches '{filter}'_::_match '{filter}'_" : ["",""] + "_matches '{filter}'_::_match '{filter}'_" : ["",""], + "A new file or folder has been <strong>created</strong>" : "Ha sido <strong>creado</strong> un nuevo archivo o carpeta", + "A file or folder has been <strong>changed</strong>" : "Ha sido <strong>modificado</strong> un archivo o carpeta", + "A file or folder has been <strong>deleted</strong>" : "Ha sido <strong>eliminado</strong> un archivo o carpeta", + "A file or folder has been <strong>restored</strong>" : "Se ha <strong>recuperado</strong> un archivo o carpeta", + "You created %1$s" : "Ha creado %1$s", + "%2$s created %1$s" : "%2$s ha creado %1$s", + "%1$s was created in a public folder" : "%1$s ha sido creado en una carpeta pública", + "You changed %1$s" : "Ha modificado %1$s", + "%2$s changed %1$s" : "%2$s ha modificado %1$s", + "You deleted %1$s" : "Usted ha eliminado %1$s", + "%2$s deleted %1$s" : "%2$s ha eliminado %1$s", + "You restored %1$s" : "Ha recuperado %1$s", + "%2$s restored %1$s" : "%2$s ha recuperado %1$s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/files/l10n/et_EE.js b/apps/files/l10n/et_EE.js index bb3fe98283d..9548e518fda 100644 --- a/apps/files/l10n/et_EE.js +++ b/apps/files/l10n/et_EE.js @@ -76,6 +76,19 @@ OC.L10N.register( "_matches '{filter}'_::_match '{filter}'_" : ["",""], "{dirs} and {files}" : "{dirs} ja {files}", "Favorite" : "Lemmik", + "A new file or folder has been <strong>created</strong>" : "Uus fail või kataloog on <strong>loodud</strong>", + "A file or folder has been <strong>changed</strong>" : "Fail või kataloog on <strong>muudetud</strong>", + "A file or folder has been <strong>deleted</strong>" : "Fail või kataloog on <strong>kustutatud</strong>", + "A file or folder has been <strong>restored</strong>" : "Fail või kaust on <strong>taastatud</strong>", + "You created %1$s" : "Sa tekitasid %1$s", + "%2$s created %1$s" : "%2$s tekitatud %1$s", + "%1$s was created in a public folder" : "%1$s lisati avalikku kausta", + "You changed %1$s" : "Sa muutsid %1$s", + "%2$s changed %1$s" : "%2$s muutis %1$s", + "You deleted %1$s" : "Sa kustutasid %1$s", + "%2$s deleted %1$s" : "%2$s kustutas %1$s", + "You restored %1$s" : "Sa taastasid %1$s", + "%2$s restored %1$s" : "%2$s taastas %1$s", "%s could not be renamed as it has been deleted" : "%s ei saa ümber nimetada, kuna see on kustutatud", "%s could not be renamed" : "%s ümbernimetamine ebaõnnestus", "Upload (max. %s)" : "Üleslaadimine (max. %s)", diff --git a/apps/files/l10n/et_EE.json b/apps/files/l10n/et_EE.json index bcb73946aea..dd2bd929c98 100644 --- a/apps/files/l10n/et_EE.json +++ b/apps/files/l10n/et_EE.json @@ -74,6 +74,19 @@ "_matches '{filter}'_::_match '{filter}'_" : ["",""], "{dirs} and {files}" : "{dirs} ja {files}", "Favorite" : "Lemmik", + "A new file or folder has been <strong>created</strong>" : "Uus fail või kataloog on <strong>loodud</strong>", + "A file or folder has been <strong>changed</strong>" : "Fail või kataloog on <strong>muudetud</strong>", + "A file or folder has been <strong>deleted</strong>" : "Fail või kataloog on <strong>kustutatud</strong>", + "A file or folder has been <strong>restored</strong>" : "Fail või kaust on <strong>taastatud</strong>", + "You created %1$s" : "Sa tekitasid %1$s", + "%2$s created %1$s" : "%2$s tekitatud %1$s", + "%1$s was created in a public folder" : "%1$s lisati avalikku kausta", + "You changed %1$s" : "Sa muutsid %1$s", + "%2$s changed %1$s" : "%2$s muutis %1$s", + "You deleted %1$s" : "Sa kustutasid %1$s", + "%2$s deleted %1$s" : "%2$s kustutas %1$s", + "You restored %1$s" : "Sa taastasid %1$s", + "%2$s restored %1$s" : "%2$s taastas %1$s", "%s could not be renamed as it has been deleted" : "%s ei saa ümber nimetada, kuna see on kustutatud", "%s could not be renamed" : "%s ümbernimetamine ebaõnnestus", "Upload (max. %s)" : "Üleslaadimine (max. %s)", diff --git a/apps/files/l10n/eu.js b/apps/files/l10n/eu.js index 0db6c61e466..de85be089cb 100644 --- a/apps/files/l10n/eu.js +++ b/apps/files/l10n/eu.js @@ -79,6 +79,19 @@ OC.L10N.register( "{dirs} and {files}" : "{dirs} eta {files}", "Favorited" : "Gogokoa", "Favorite" : "Gogokoa", + "A new file or folder has been <strong>created</strong>" : "Fitxategi edo karpeta berri bat <strong>sortu da</strong>", + "A file or folder has been <strong>changed</strong>" : "Fitxategi edo karpeta bat <strong>aldatu da</strong>", + "A file or folder has been <strong>deleted</strong>" : "Fitxategi edo karpeta bat <strong>ezabatu da</strong>", + "A file or folder has been <strong>restored</strong>" : "Fitxategia edo karpeta <strong>berrezarri</strong> da", + "You created %1$s" : "Zuk sortua %1$s", + "%2$s created %1$s" : "%2$sk sortua %1$s", + "%1$s was created in a public folder" : "%1$s sortu da karpeta publiko batean", + "You changed %1$s" : "%1$s aldatu duzu", + "%2$s changed %1$s" : "%2$sk aldatuta %1$s", + "You deleted %1$s" : "%1$s ezabatu duzu", + "%2$s deleted %1$s" : "%2$sk ezabatuta %1$s", + "You restored %1$s" : "Zuk %1$s berrezarri duzu", + "%2$s restored %1$s" : "%2$sk %1$s berrezarri du", "%s could not be renamed as it has been deleted" : "%s ezin izan da berrizendatu ezabatua zegoen eta", "%s could not be renamed" : "%s ezin da berrizendatu", "Upload (max. %s)" : "Igo (max. %s)", diff --git a/apps/files/l10n/eu.json b/apps/files/l10n/eu.json index 1529fd880f9..20f59a83c53 100644 --- a/apps/files/l10n/eu.json +++ b/apps/files/l10n/eu.json @@ -77,6 +77,19 @@ "{dirs} and {files}" : "{dirs} eta {files}", "Favorited" : "Gogokoa", "Favorite" : "Gogokoa", + "A new file or folder has been <strong>created</strong>" : "Fitxategi edo karpeta berri bat <strong>sortu da</strong>", + "A file or folder has been <strong>changed</strong>" : "Fitxategi edo karpeta bat <strong>aldatu da</strong>", + "A file or folder has been <strong>deleted</strong>" : "Fitxategi edo karpeta bat <strong>ezabatu da</strong>", + "A file or folder has been <strong>restored</strong>" : "Fitxategia edo karpeta <strong>berrezarri</strong> da", + "You created %1$s" : "Zuk sortua %1$s", + "%2$s created %1$s" : "%2$sk sortua %1$s", + "%1$s was created in a public folder" : "%1$s sortu da karpeta publiko batean", + "You changed %1$s" : "%1$s aldatu duzu", + "%2$s changed %1$s" : "%2$sk aldatuta %1$s", + "You deleted %1$s" : "%1$s ezabatu duzu", + "%2$s deleted %1$s" : "%2$sk ezabatuta %1$s", + "You restored %1$s" : "Zuk %1$s berrezarri duzu", + "%2$s restored %1$s" : "%2$sk %1$s berrezarri du", "%s could not be renamed as it has been deleted" : "%s ezin izan da berrizendatu ezabatua zegoen eta", "%s could not be renamed" : "%s ezin da berrizendatu", "Upload (max. %s)" : "Igo (max. %s)", diff --git a/apps/files/l10n/fa.js b/apps/files/l10n/fa.js index ad4f50e7043..3c5604dceac 100644 --- a/apps/files/l10n/fa.js +++ b/apps/files/l10n/fa.js @@ -39,6 +39,19 @@ OC.L10N.register( "Your storage is full, files can not be updated or synced anymore!" : "فضای ذخیره ی شما کاملا پر است، بیش از این فایلها بهنگام یا همگام سازی نمی توانند بشوند!", "Your storage is almost full ({usedSpacePercent}%)" : "فضای ذخیره ی شما تقریبا پر است ({usedSpacePercent}%)", "_matches '{filter}'_::_match '{filter}'_" : [""], + "A new file or folder has been <strong>created</strong>" : "فایل یا پوشه ای <strong>ایجاد</strong> شد", + "A file or folder has been <strong>changed</strong>" : "فایل یا پوشه ای به <strong>تغییر</strong> یافت", + "A file or folder has been <strong>deleted</strong>" : "فایل یا پوشه ای به <strong>حذف</strong> شد", + "A file or folder has been <strong>restored</strong>" : "یک فایل یا پوشه <strong>بازگردانی شد</strong>", + "You created %1$s" : "شما %1$s را ایجاد کردید", + "%2$s created %1$s" : "%2$s مورد %1$s را ایجاد کرد", + "%1$s was created in a public folder" : "%1$s در پوشه ی عمومی ایجاد شد", + "You changed %1$s" : "شما %1$s را تغییر دادید", + "%2$s changed %1$s" : "%2$s مورد %1$s را تغییر داد", + "You deleted %1$s" : "شما %1$s را حذف کردید", + "%2$s deleted %1$s" : "%2$s مورد %1$s را حذف کرد", + "You restored %1$s" : "شما %1$s را بازگردانی کردید", + "%2$s restored %1$s" : "%2$s %1$s را بازگردانی کرد", "%s could not be renamed" : "%s نمیتواند تغییر نام دهد.", "File handling" : "اداره پرونده ها", "Maximum upload size" : "حداکثر اندازه بارگزاری", diff --git a/apps/files/l10n/fa.json b/apps/files/l10n/fa.json index 3d1ef49dc98..fa08e0bbcb8 100644 --- a/apps/files/l10n/fa.json +++ b/apps/files/l10n/fa.json @@ -37,6 +37,19 @@ "Your storage is full, files can not be updated or synced anymore!" : "فضای ذخیره ی شما کاملا پر است، بیش از این فایلها بهنگام یا همگام سازی نمی توانند بشوند!", "Your storage is almost full ({usedSpacePercent}%)" : "فضای ذخیره ی شما تقریبا پر است ({usedSpacePercent}%)", "_matches '{filter}'_::_match '{filter}'_" : [""], + "A new file or folder has been <strong>created</strong>" : "فایل یا پوشه ای <strong>ایجاد</strong> شد", + "A file or folder has been <strong>changed</strong>" : "فایل یا پوشه ای به <strong>تغییر</strong> یافت", + "A file or folder has been <strong>deleted</strong>" : "فایل یا پوشه ای به <strong>حذف</strong> شد", + "A file or folder has been <strong>restored</strong>" : "یک فایل یا پوشه <strong>بازگردانی شد</strong>", + "You created %1$s" : "شما %1$s را ایجاد کردید", + "%2$s created %1$s" : "%2$s مورد %1$s را ایجاد کرد", + "%1$s was created in a public folder" : "%1$s در پوشه ی عمومی ایجاد شد", + "You changed %1$s" : "شما %1$s را تغییر دادید", + "%2$s changed %1$s" : "%2$s مورد %1$s را تغییر داد", + "You deleted %1$s" : "شما %1$s را حذف کردید", + "%2$s deleted %1$s" : "%2$s مورد %1$s را حذف کرد", + "You restored %1$s" : "شما %1$s را بازگردانی کردید", + "%2$s restored %1$s" : "%2$s %1$s را بازگردانی کرد", "%s could not be renamed" : "%s نمیتواند تغییر نام دهد.", "File handling" : "اداره پرونده ها", "Maximum upload size" : "حداکثر اندازه بارگزاری", diff --git a/apps/files/l10n/fi_FI.js b/apps/files/l10n/fi_FI.js index 6bf4484abc3..da725465441 100644 --- a/apps/files/l10n/fi_FI.js +++ b/apps/files/l10n/fi_FI.js @@ -80,6 +80,19 @@ OC.L10N.register( "Favorited" : "Lisätty suosikkeihin", "Favorite" : "Suosikki", "An error occurred while trying to update the tags" : "Tunnisteiden päivitystä yrittäessä tapahtui virhe", + "A new file or folder has been <strong>created</strong>" : "Uusi tiedosto tai kansio on <strong>luotu</strong>", + "A file or folder has been <strong>changed</strong>" : "Tiedostoa tai kansiota on <strong>muutettu</strong>", + "A file or folder has been <strong>deleted</strong>" : "Tiedosto tai kansio on <strong>poistettu</strong>", + "A file or folder has been <strong>restored</strong>" : "Tiedosto tai kansio on <strong>palautettu</strong>", + "You created %1$s" : "Loit kohteen %1$s", + "%2$s created %1$s" : "%2$s loi kohteen %1$s", + "%1$s was created in a public folder" : "%1$s luotiin julkiseen kansioon", + "You changed %1$s" : "Muutit kohdetta %1$s", + "%2$s changed %1$s" : "%2$s muutti kohdetta %1$s", + "You deleted %1$s" : "Poistit kohteen %1$s", + "%2$s deleted %1$s" : "%2$s poisti kohteen %1$s", + "You restored %1$s" : "Palautit kohteen %1$s", + "%2$s restored %1$s" : "%2$s palautti kohteen %1$s", "%s could not be renamed as it has been deleted" : "Kohdetta %s ei voitu nimetä uudelleen, koska se on poistettu", "%s could not be renamed" : "kohteen %s nimeäminen uudelleen epäonnistui", "Upload (max. %s)" : "Lähetys (enintään %s)", diff --git a/apps/files/l10n/fi_FI.json b/apps/files/l10n/fi_FI.json index 29dd4d462dd..fd34e282e2e 100644 --- a/apps/files/l10n/fi_FI.json +++ b/apps/files/l10n/fi_FI.json @@ -78,6 +78,19 @@ "Favorited" : "Lisätty suosikkeihin", "Favorite" : "Suosikki", "An error occurred while trying to update the tags" : "Tunnisteiden päivitystä yrittäessä tapahtui virhe", + "A new file or folder has been <strong>created</strong>" : "Uusi tiedosto tai kansio on <strong>luotu</strong>", + "A file or folder has been <strong>changed</strong>" : "Tiedostoa tai kansiota on <strong>muutettu</strong>", + "A file or folder has been <strong>deleted</strong>" : "Tiedosto tai kansio on <strong>poistettu</strong>", + "A file or folder has been <strong>restored</strong>" : "Tiedosto tai kansio on <strong>palautettu</strong>", + "You created %1$s" : "Loit kohteen %1$s", + "%2$s created %1$s" : "%2$s loi kohteen %1$s", + "%1$s was created in a public folder" : "%1$s luotiin julkiseen kansioon", + "You changed %1$s" : "Muutit kohdetta %1$s", + "%2$s changed %1$s" : "%2$s muutti kohdetta %1$s", + "You deleted %1$s" : "Poistit kohteen %1$s", + "%2$s deleted %1$s" : "%2$s poisti kohteen %1$s", + "You restored %1$s" : "Palautit kohteen %1$s", + "%2$s restored %1$s" : "%2$s palautti kohteen %1$s", "%s could not be renamed as it has been deleted" : "Kohdetta %s ei voitu nimetä uudelleen, koska se on poistettu", "%s could not be renamed" : "kohteen %s nimeäminen uudelleen epäonnistui", "Upload (max. %s)" : "Lähetys (enintään %s)", diff --git a/apps/files/l10n/fr.js b/apps/files/l10n/fr.js index eab3108b510..16017c535d3 100644 --- a/apps/files/l10n/fr.js +++ b/apps/files/l10n/fr.js @@ -80,6 +80,19 @@ OC.L10N.register( "Favorited" : "Marqué comme favori", "Favorite" : "Favoris", "An error occurred while trying to update the tags" : "Une erreur est survenue lors de la tentative de mise à jour des étiquettes", + "A new file or folder has been <strong>created</strong>" : "Un nouveau fichier ou répertoire a été <strong>créé</strong>", + "A file or folder has been <strong>changed</strong>" : "Un fichier ou un répertoire a été <strong>modifié</strong>", + "A file or folder has been <strong>deleted</strong>" : "Un fichier ou un répertoire a été <strong>supprimé</strong>", + "A file or folder has been <strong>restored</strong>" : "Un fichier ou répertoire a été <strong>restauré</strong>", + "You created %1$s" : "Vous avez créé %1$s", + "%2$s created %1$s" : "%2$s a créé %1$s", + "%1$s was created in a public folder" : "%1$s a été créé dans un dossier public", + "You changed %1$s" : "Vous avez modifié %1$s", + "%2$s changed %1$s" : "%2$s a modifié %1$s", + "You deleted %1$s" : "Vous avez supprimé %1$s", + "%2$s deleted %1$s" : "%2$s a supprimé %1$s", + "You restored %1$s" : "Vous avez restauré %1$s", + "%2$s restored %1$s" : "%2$s a restauré %1$s", "%s could not be renamed as it has been deleted" : "%s ne peut être renommé car il a été supprimé ", "%s could not be renamed" : "%s ne peut être renommé", "Upload (max. %s)" : "Envoi (max. %s)", diff --git a/apps/files/l10n/fr.json b/apps/files/l10n/fr.json index ada9eb38e18..4c01392a0e1 100644 --- a/apps/files/l10n/fr.json +++ b/apps/files/l10n/fr.json @@ -78,6 +78,19 @@ "Favorited" : "Marqué comme favori", "Favorite" : "Favoris", "An error occurred while trying to update the tags" : "Une erreur est survenue lors de la tentative de mise à jour des étiquettes", + "A new file or folder has been <strong>created</strong>" : "Un nouveau fichier ou répertoire a été <strong>créé</strong>", + "A file or folder has been <strong>changed</strong>" : "Un fichier ou un répertoire a été <strong>modifié</strong>", + "A file or folder has been <strong>deleted</strong>" : "Un fichier ou un répertoire a été <strong>supprimé</strong>", + "A file or folder has been <strong>restored</strong>" : "Un fichier ou répertoire a été <strong>restauré</strong>", + "You created %1$s" : "Vous avez créé %1$s", + "%2$s created %1$s" : "%2$s a créé %1$s", + "%1$s was created in a public folder" : "%1$s a été créé dans un dossier public", + "You changed %1$s" : "Vous avez modifié %1$s", + "%2$s changed %1$s" : "%2$s a modifié %1$s", + "You deleted %1$s" : "Vous avez supprimé %1$s", + "%2$s deleted %1$s" : "%2$s a supprimé %1$s", + "You restored %1$s" : "Vous avez restauré %1$s", + "%2$s restored %1$s" : "%2$s a restauré %1$s", "%s could not be renamed as it has been deleted" : "%s ne peut être renommé car il a été supprimé ", "%s could not be renamed" : "%s ne peut être renommé", "Upload (max. %s)" : "Envoi (max. %s)", diff --git a/apps/files/l10n/gl.js b/apps/files/l10n/gl.js index 6d4a863f7df..65732bf878f 100644 --- a/apps/files/l10n/gl.js +++ b/apps/files/l10n/gl.js @@ -80,6 +80,19 @@ OC.L10N.register( "Favorited" : "Marcado como favorito", "Favorite" : "Favorito", "An error occurred while trying to update the tags" : "Produciuse un erro ao tentar actualizar as etiquetas", + "A new file or folder has been <strong>created</strong>" : "<strong>Creouse</strong> un novo ficheiro ou cartafol", + "A file or folder has been <strong>changed</strong>" : "<strong>Cambiouse</strong> un ficheiro ou cartafol", + "A file or folder has been <strong>deleted</strong>" : "<strong>Eliminouse</strong> un ficheiro ou cartafol", + "A file or folder has been <strong>restored</strong>" : "Foi <strong>restaurado</strong> satisfactoriamente un ficheiro ou cartafol", + "You created %1$s" : "Creou %1$s", + "%2$s created %1$s" : "%2$s creado %1$s", + "%1$s was created in a public folder" : "%1$s foi creado nun cartafol público", + "You changed %1$s" : "Cambiou %1$s", + "%2$s changed %1$s" : "%2$s cambiado %1$s", + "You deleted %1$s" : "Eliminou %1$s", + "%2$s deleted %1$s" : "%2$s eliminado %1$s", + "You restored %1$s" : "Vostede restaurou %1$s", + "%2$s restored %1$s" : "%2$s restaurado %1$s", "%s could not be renamed as it has been deleted" : "Non é posíbel renomear %s xa que foi eliminado", "%s could not be renamed" : "%s non pode cambiar de nome", "Upload (max. %s)" : "Envío (máx. %s)", diff --git a/apps/files/l10n/gl.json b/apps/files/l10n/gl.json index 6cfaf9f39d0..805a8ef8def 100644 --- a/apps/files/l10n/gl.json +++ b/apps/files/l10n/gl.json @@ -78,6 +78,19 @@ "Favorited" : "Marcado como favorito", "Favorite" : "Favorito", "An error occurred while trying to update the tags" : "Produciuse un erro ao tentar actualizar as etiquetas", + "A new file or folder has been <strong>created</strong>" : "<strong>Creouse</strong> un novo ficheiro ou cartafol", + "A file or folder has been <strong>changed</strong>" : "<strong>Cambiouse</strong> un ficheiro ou cartafol", + "A file or folder has been <strong>deleted</strong>" : "<strong>Eliminouse</strong> un ficheiro ou cartafol", + "A file or folder has been <strong>restored</strong>" : "Foi <strong>restaurado</strong> satisfactoriamente un ficheiro ou cartafol", + "You created %1$s" : "Creou %1$s", + "%2$s created %1$s" : "%2$s creado %1$s", + "%1$s was created in a public folder" : "%1$s foi creado nun cartafol público", + "You changed %1$s" : "Cambiou %1$s", + "%2$s changed %1$s" : "%2$s cambiado %1$s", + "You deleted %1$s" : "Eliminou %1$s", + "%2$s deleted %1$s" : "%2$s eliminado %1$s", + "You restored %1$s" : "Vostede restaurou %1$s", + "%2$s restored %1$s" : "%2$s restaurado %1$s", "%s could not be renamed as it has been deleted" : "Non é posíbel renomear %s xa que foi eliminado", "%s could not be renamed" : "%s non pode cambiar de nome", "Upload (max. %s)" : "Envío (máx. %s)", diff --git a/apps/files/l10n/he.js b/apps/files/l10n/he.js index 9629cd77b6a..39dde9fab63 100644 --- a/apps/files/l10n/he.js +++ b/apps/files/l10n/he.js @@ -40,6 +40,16 @@ OC.L10N.register( "Your storage is almost full ({usedSpacePercent}%)" : "שטח האחסון שלך כמעט מלא ({usedSpacePercent}%)", "_matches '{filter}'_::_match '{filter}'_" : ["",""], "Favorite" : "מועדף", + "A new file or folder has been <strong>created</strong>" : "קובץ או תיקייה חדשים <strong>נוצרו<strong/>", + "A file or folder has been <strong>changed</strong>" : "קובץ או תיקייה <strong>שונו<strong/>", + "A file or folder has been <strong>deleted</strong>" : "קובץ או תיקייה <strong>נמחקו<strong/>", + "You created %1$s" : "יצרת %1$s", + "%2$s created %1$s" : "%2$s נוצרו %1$s", + "%1$s was created in a public folder" : "%1$s נוצר בתיקייה ציבורית", + "You changed %1$s" : "שינית %1$s", + "%2$s changed %1$s" : "%2$s שונו %1$s", + "You deleted %1$s" : "מחקת %1$s", + "%2$s deleted %1$s" : "%2$s נמחקו %1$s", "Upload (max. %s)" : "העלאה (מקסימום %s)", "File handling" : "טיפול בקבצים", "Maximum upload size" : "גודל העלאה מקסימלי", diff --git a/apps/files/l10n/he.json b/apps/files/l10n/he.json index fb372531dc7..8aeeeb780e8 100644 --- a/apps/files/l10n/he.json +++ b/apps/files/l10n/he.json @@ -38,6 +38,16 @@ "Your storage is almost full ({usedSpacePercent}%)" : "שטח האחסון שלך כמעט מלא ({usedSpacePercent}%)", "_matches '{filter}'_::_match '{filter}'_" : ["",""], "Favorite" : "מועדף", + "A new file or folder has been <strong>created</strong>" : "קובץ או תיקייה חדשים <strong>נוצרו<strong/>", + "A file or folder has been <strong>changed</strong>" : "קובץ או תיקייה <strong>שונו<strong/>", + "A file or folder has been <strong>deleted</strong>" : "קובץ או תיקייה <strong>נמחקו<strong/>", + "You created %1$s" : "יצרת %1$s", + "%2$s created %1$s" : "%2$s נוצרו %1$s", + "%1$s was created in a public folder" : "%1$s נוצר בתיקייה ציבורית", + "You changed %1$s" : "שינית %1$s", + "%2$s changed %1$s" : "%2$s שונו %1$s", + "You deleted %1$s" : "מחקת %1$s", + "%2$s deleted %1$s" : "%2$s נמחקו %1$s", "Upload (max. %s)" : "העלאה (מקסימום %s)", "File handling" : "טיפול בקבצים", "Maximum upload size" : "גודל העלאה מקסימלי", diff --git a/apps/files/l10n/hr.js b/apps/files/l10n/hr.js index fa89c2bbe68..ff5dacb8262 100644 --- a/apps/files/l10n/hr.js +++ b/apps/files/l10n/hr.js @@ -79,6 +79,19 @@ OC.L10N.register( "{dirs} and {files}" : "{dirs} i {files}", "Favorited" : "Favoritovan", "Favorite" : "Favorit", + "A new file or folder has been <strong>created</strong>" : "Nova datoteka ili nova mapa su <strong>kreirani</strong>", + "A file or folder has been <strong>changed</strong>" : "Datoteka ili mapa su <strong>promijenjeni</strong>", + "A file or folder has been <strong>deleted</strong>" : "Datoteka ili mapa su <strong>izbrisani</strong>", + "A file or folder has been <strong>restored</strong>" : "Datoteka ili direktorij su <strong>vraćeni</strong>", + "You created %1$s" : "Vi ste kreirali %1$s", + "%2$s created %1$s" : "%2$s je kreirao %1$s", + "%1$s was created in a public folder" : "%1$s je kreiran u javnoj mapi", + "You changed %1$s" : "Promijenili ste %1$s", + "%2$s changed %1$s" : "%2$s je promijenio %1$s", + "You deleted %1$s" : "Izbrisali ste %1$s", + "%2$s deleted %1$s" : "%2$s je izbrisao %1$s", + "You restored %1$s" : "Vraćeno %1$s", + "%2$s restored %1$s" : "%2$s vraćeno %1$s", "%s could not be renamed as it has been deleted" : "%s nije moguće preimenovati jer je izbrisan", "%s could not be renamed" : "%s nije moguće preimenovati", "Upload (max. %s)" : "Prijenos (max. %s)", diff --git a/apps/files/l10n/hr.json b/apps/files/l10n/hr.json index f77d5927066..d8d0d0b9b51 100644 --- a/apps/files/l10n/hr.json +++ b/apps/files/l10n/hr.json @@ -77,6 +77,19 @@ "{dirs} and {files}" : "{dirs} i {files}", "Favorited" : "Favoritovan", "Favorite" : "Favorit", + "A new file or folder has been <strong>created</strong>" : "Nova datoteka ili nova mapa su <strong>kreirani</strong>", + "A file or folder has been <strong>changed</strong>" : "Datoteka ili mapa su <strong>promijenjeni</strong>", + "A file or folder has been <strong>deleted</strong>" : "Datoteka ili mapa su <strong>izbrisani</strong>", + "A file or folder has been <strong>restored</strong>" : "Datoteka ili direktorij su <strong>vraćeni</strong>", + "You created %1$s" : "Vi ste kreirali %1$s", + "%2$s created %1$s" : "%2$s je kreirao %1$s", + "%1$s was created in a public folder" : "%1$s je kreiran u javnoj mapi", + "You changed %1$s" : "Promijenili ste %1$s", + "%2$s changed %1$s" : "%2$s je promijenio %1$s", + "You deleted %1$s" : "Izbrisali ste %1$s", + "%2$s deleted %1$s" : "%2$s je izbrisao %1$s", + "You restored %1$s" : "Vraćeno %1$s", + "%2$s restored %1$s" : "%2$s vraćeno %1$s", "%s could not be renamed as it has been deleted" : "%s nije moguće preimenovati jer je izbrisan", "%s could not be renamed" : "%s nije moguće preimenovati", "Upload (max. %s)" : "Prijenos (max. %s)", diff --git a/apps/files/l10n/hu_HU.js b/apps/files/l10n/hu_HU.js index a43082b0a1c..d6c07f670ab 100644 --- a/apps/files/l10n/hu_HU.js +++ b/apps/files/l10n/hu_HU.js @@ -79,6 +79,19 @@ OC.L10N.register( "{dirs} and {files}" : "{dirs} és {files}", "Favorited" : "Kedvenc", "Favorite" : "Kedvenc", + "A new file or folder has been <strong>created</strong>" : "Új fájl vagy könyvtár <strong>létrehozása</strong>", + "A file or folder has been <strong>changed</strong>" : "Fájl vagy könyvtár <strong>módosítása</strong>", + "A file or folder has been <strong>deleted</strong>" : "Fájl vagy könyvtár <strong>törlése</strong>", + "A file or folder has been <strong>restored</strong>" : "Fájl vagy könyvtár <strong>visszatöltése</strong>", + "You created %1$s" : "Létrehoztam: %1$s", + "%2$s created %1$s" : "%2$s létrehozta: %1$s", + "%1$s was created in a public folder" : "Nyilvános mappában hozták létre: %1$s", + "You changed %1$s" : "Megváltoztattam: %1$s", + "%2$s changed %1$s" : "%2$s megváltoztatta: %1$s", + "You deleted %1$s" : "Töröltem: %1$s", + "%2$s deleted %1$s" : "%2$s törölte: %1$s", + "You restored %1$s" : "Visszatöltötted %1$s", + "%2$s restored %1$s" : "%1$s visszatöltötte %2$s", "%s could not be renamed as it has been deleted" : "%s nem lehet átnevezni, mivel törölve lett", "%s could not be renamed" : "%s átnevezése nem sikerült", "Upload (max. %s)" : "Feltöltés (max. %s)", diff --git a/apps/files/l10n/hu_HU.json b/apps/files/l10n/hu_HU.json index c99f4f1321c..72faef1247e 100644 --- a/apps/files/l10n/hu_HU.json +++ b/apps/files/l10n/hu_HU.json @@ -77,6 +77,19 @@ "{dirs} and {files}" : "{dirs} és {files}", "Favorited" : "Kedvenc", "Favorite" : "Kedvenc", + "A new file or folder has been <strong>created</strong>" : "Új fájl vagy könyvtár <strong>létrehozása</strong>", + "A file or folder has been <strong>changed</strong>" : "Fájl vagy könyvtár <strong>módosítása</strong>", + "A file or folder has been <strong>deleted</strong>" : "Fájl vagy könyvtár <strong>törlése</strong>", + "A file or folder has been <strong>restored</strong>" : "Fájl vagy könyvtár <strong>visszatöltése</strong>", + "You created %1$s" : "Létrehoztam: %1$s", + "%2$s created %1$s" : "%2$s létrehozta: %1$s", + "%1$s was created in a public folder" : "Nyilvános mappában hozták létre: %1$s", + "You changed %1$s" : "Megváltoztattam: %1$s", + "%2$s changed %1$s" : "%2$s megváltoztatta: %1$s", + "You deleted %1$s" : "Töröltem: %1$s", + "%2$s deleted %1$s" : "%2$s törölte: %1$s", + "You restored %1$s" : "Visszatöltötted %1$s", + "%2$s restored %1$s" : "%1$s visszatöltötte %2$s", "%s could not be renamed as it has been deleted" : "%s nem lehet átnevezni, mivel törölve lett", "%s could not be renamed" : "%s átnevezése nem sikerült", "Upload (max. %s)" : "Feltöltés (max. %s)", diff --git a/apps/files/l10n/ia.js b/apps/files/l10n/ia.js index 2e33cc2760e..6bff309bd63 100644 --- a/apps/files/l10n/ia.js +++ b/apps/files/l10n/ia.js @@ -19,6 +19,19 @@ OC.L10N.register( "_%n file_::_%n files_" : ["",""], "_Uploading %n file_::_Uploading %n files_" : ["",""], "_matches '{filter}'_::_match '{filter}'_" : ["",""], + "A new file or folder has been <strong>created</strong>" : "Un nove file o dossier ha essite <strong>create</strong>", + "A file or folder has been <strong>changed</strong>" : "Un nove file o dossier ha essite <strong>modificate</strong>", + "A file or folder has been <strong>deleted</strong>" : "Un nove file o dossier ha essite <strong>delite</strong>", + "A file or folder has been <strong>restored</strong>" : "Un file o un dossier ha essite <strong>restabilite</strong>", + "You created %1$s" : "Tu creava %1$s", + "%2$s created %1$s" : "%2$s creava %1$s", + "%1$s was created in a public folder" : "%1$s esseva create in un dossier public", + "You changed %1$s" : "Tu modificava %1$s", + "%2$s changed %1$s" : "%2$s modificava %1$s", + "You deleted %1$s" : "Tu deleva %1$s", + "%2$s deleted %1$s" : "%2$s deleva %1$s", + "You restored %1$s" : "Tu restabiliva %1$s", + "%2$s restored %1$s" : "%2$s restabilite %1$s", "Upload (max. %s)" : "Incargar (max. %s)", "Maximum upload size" : "Dimension maxime de incargamento", "Save" : "Salveguardar", diff --git a/apps/files/l10n/ia.json b/apps/files/l10n/ia.json index 86fc6256487..dc4a181e6e5 100644 --- a/apps/files/l10n/ia.json +++ b/apps/files/l10n/ia.json @@ -17,6 +17,19 @@ "_%n file_::_%n files_" : ["",""], "_Uploading %n file_::_Uploading %n files_" : ["",""], "_matches '{filter}'_::_match '{filter}'_" : ["",""], + "A new file or folder has been <strong>created</strong>" : "Un nove file o dossier ha essite <strong>create</strong>", + "A file or folder has been <strong>changed</strong>" : "Un nove file o dossier ha essite <strong>modificate</strong>", + "A file or folder has been <strong>deleted</strong>" : "Un nove file o dossier ha essite <strong>delite</strong>", + "A file or folder has been <strong>restored</strong>" : "Un file o un dossier ha essite <strong>restabilite</strong>", + "You created %1$s" : "Tu creava %1$s", + "%2$s created %1$s" : "%2$s creava %1$s", + "%1$s was created in a public folder" : "%1$s esseva create in un dossier public", + "You changed %1$s" : "Tu modificava %1$s", + "%2$s changed %1$s" : "%2$s modificava %1$s", + "You deleted %1$s" : "Tu deleva %1$s", + "%2$s deleted %1$s" : "%2$s deleva %1$s", + "You restored %1$s" : "Tu restabiliva %1$s", + "%2$s restored %1$s" : "%2$s restabilite %1$s", "Upload (max. %s)" : "Incargar (max. %s)", "Maximum upload size" : "Dimension maxime de incargamento", "Save" : "Salveguardar", diff --git a/apps/files/l10n/id.js b/apps/files/l10n/id.js index 2f3544f489d..d8fc0564666 100644 --- a/apps/files/l10n/id.js +++ b/apps/files/l10n/id.js @@ -79,6 +79,19 @@ OC.L10N.register( "{dirs} and {files}" : "{dirs} dan {files}", "Favorited" : "Difavoritkan", "Favorite" : "Favorit", + "A new file or folder has been <strong>created</strong>" : "Sebuah berkas atau folder baru telah <strong>dibuat</strong>", + "A file or folder has been <strong>changed</strong>" : "Sebuah berkas atau folder telah <strong>diubah</strong>", + "A file or folder has been <strong>deleted</strong>" : "Sebuah berkas atau folder telah <strong>dihapus</strong>", + "A file or folder has been <strong>restored</strong>" : "Sebuah berkas atau folder telah <strong>dipulihkan</strong>", + "You created %1$s" : "Anda membuat %1$s", + "%2$s created %1$s" : "%2$s membuat %1$s", + "%1$s was created in a public folder" : "%1$s telah dibuat di folder publik", + "You changed %1$s" : "Anda mengubah %1$s", + "%2$s changed %1$s" : "%2$s mengubah %1$s", + "You deleted %1$s" : "Anda menghapus %1$s", + "%2$s deleted %1$s" : "%2$s menghapus %1$s", + "You restored %1$s" : "Anda memulihkan %1$s", + "%2$s restored %1$s" : "%2$s memulihkan %1$s", "%s could not be renamed as it has been deleted" : "%s tidak dapat diubah namanya kerena telah dihapus", "%s could not be renamed" : "%s tidak dapat diubah nama", "Upload (max. %s)" : "Unggah (maks. %s)", diff --git a/apps/files/l10n/id.json b/apps/files/l10n/id.json index 053a1cb3570..2c36a4f2537 100644 --- a/apps/files/l10n/id.json +++ b/apps/files/l10n/id.json @@ -77,6 +77,19 @@ "{dirs} and {files}" : "{dirs} dan {files}", "Favorited" : "Difavoritkan", "Favorite" : "Favorit", + "A new file or folder has been <strong>created</strong>" : "Sebuah berkas atau folder baru telah <strong>dibuat</strong>", + "A file or folder has been <strong>changed</strong>" : "Sebuah berkas atau folder telah <strong>diubah</strong>", + "A file or folder has been <strong>deleted</strong>" : "Sebuah berkas atau folder telah <strong>dihapus</strong>", + "A file or folder has been <strong>restored</strong>" : "Sebuah berkas atau folder telah <strong>dipulihkan</strong>", + "You created %1$s" : "Anda membuat %1$s", + "%2$s created %1$s" : "%2$s membuat %1$s", + "%1$s was created in a public folder" : "%1$s telah dibuat di folder publik", + "You changed %1$s" : "Anda mengubah %1$s", + "%2$s changed %1$s" : "%2$s mengubah %1$s", + "You deleted %1$s" : "Anda menghapus %1$s", + "%2$s deleted %1$s" : "%2$s menghapus %1$s", + "You restored %1$s" : "Anda memulihkan %1$s", + "%2$s restored %1$s" : "%2$s memulihkan %1$s", "%s could not be renamed as it has been deleted" : "%s tidak dapat diubah namanya kerena telah dihapus", "%s could not be renamed" : "%s tidak dapat diubah nama", "Upload (max. %s)" : "Unggah (maks. %s)", diff --git a/apps/files/l10n/it.js b/apps/files/l10n/it.js index d0a186ad2e9..70e7795bf86 100644 --- a/apps/files/l10n/it.js +++ b/apps/files/l10n/it.js @@ -80,6 +80,19 @@ OC.L10N.register( "Favorited" : "Preferiti", "Favorite" : "Preferito", "An error occurred while trying to update the tags" : "Si è verificato un errore durante il tentativo di aggiornare le etichette", + "A new file or folder has been <strong>created</strong>" : "Un nuovo file o cartella è stato <strong>creato</strong>", + "A file or folder has been <strong>changed</strong>" : "Un file o una cartella è stato <strong>modificato</strong>", + "A file or folder has been <strong>deleted</strong>" : "Un file o una cartella è stato <strong>eliminato</strong>", + "A file or folder has been <strong>restored</strong>" : "Un file o una cartella è stato <strong>ripristinato</strong>", + "You created %1$s" : "Hai creato %1$s", + "%2$s created %1$s" : "%2$s ha creato %1$s", + "%1$s was created in a public folder" : "%1$s è stato creato in una cartella pubblica", + "You changed %1$s" : "Hai modificato %1$s", + "%2$s changed %1$s" : "%2$s ha modificato %1$s", + "You deleted %1$s" : "Hai eliminato %1$s", + "%2$s deleted %1$s" : "%2$s ha eliminato %1$s", + "You restored %1$s" : "Hai ripristinato %1$s", + "%2$s restored %1$s" : "%2$s ha ripristinato %1$s", "%s could not be renamed as it has been deleted" : "%s non può essere rinominato poiché è stato eliminato", "%s could not be renamed" : "%s non può essere rinominato", "Upload (max. %s)" : "Carica (massimo %s)", diff --git a/apps/files/l10n/it.json b/apps/files/l10n/it.json index 0632884914d..dabc21ba15b 100644 --- a/apps/files/l10n/it.json +++ b/apps/files/l10n/it.json @@ -78,6 +78,19 @@ "Favorited" : "Preferiti", "Favorite" : "Preferito", "An error occurred while trying to update the tags" : "Si è verificato un errore durante il tentativo di aggiornare le etichette", + "A new file or folder has been <strong>created</strong>" : "Un nuovo file o cartella è stato <strong>creato</strong>", + "A file or folder has been <strong>changed</strong>" : "Un file o una cartella è stato <strong>modificato</strong>", + "A file or folder has been <strong>deleted</strong>" : "Un file o una cartella è stato <strong>eliminato</strong>", + "A file or folder has been <strong>restored</strong>" : "Un file o una cartella è stato <strong>ripristinato</strong>", + "You created %1$s" : "Hai creato %1$s", + "%2$s created %1$s" : "%2$s ha creato %1$s", + "%1$s was created in a public folder" : "%1$s è stato creato in una cartella pubblica", + "You changed %1$s" : "Hai modificato %1$s", + "%2$s changed %1$s" : "%2$s ha modificato %1$s", + "You deleted %1$s" : "Hai eliminato %1$s", + "%2$s deleted %1$s" : "%2$s ha eliminato %1$s", + "You restored %1$s" : "Hai ripristinato %1$s", + "%2$s restored %1$s" : "%2$s ha ripristinato %1$s", "%s could not be renamed as it has been deleted" : "%s non può essere rinominato poiché è stato eliminato", "%s could not be renamed" : "%s non può essere rinominato", "Upload (max. %s)" : "Carica (massimo %s)", diff --git a/apps/files/l10n/ja.js b/apps/files/l10n/ja.js index 1d8026e2139..fc015d11e49 100644 --- a/apps/files/l10n/ja.js +++ b/apps/files/l10n/ja.js @@ -80,6 +80,19 @@ OC.L10N.register( "Favorited" : "お気に入り済", "Favorite" : "お気に入り", "An error occurred while trying to update the tags" : "タグを更新する際にエラーが発生しました", + "A new file or folder has been <strong>created</strong>" : "新しいファイルまたはフォルダーを<strong>作成</strong>したとき", + "A file or folder has been <strong>changed</strong>" : "ファイルまたはフォルダーを<strong>変更</strong>したとき", + "A file or folder has been <strong>deleted</strong>" : "ファイルまたはフォルダーを<strong>削除</strong>したとき", + "A file or folder has been <strong>restored</strong>" : "ファイルまたはフォルダーを<strong>復元</strong>したとき", + "You created %1$s" : "あなたは %1$s を作成しました", + "%2$s created %1$s" : "%2$s は%1$s を作成しました", + "%1$s was created in a public folder" : "公開フォルダーに %1$s が作成されました", + "You changed %1$s" : "あなたは %1$s を変更しました", + "%2$s changed %1$s" : "%2$s は%1$s を変更しました", + "You deleted %1$s" : "あなたは %1$s を削除しました", + "%2$s deleted %1$s" : "%2$s は %1$s を削除しました", + "You restored %1$s" : "%1$s を復元しました", + "%2$s restored %1$s" : "%2$s は、 %1$s を復元しました", "%s could not be renamed as it has been deleted" : "%s は削除されたため、ファイル名を変更できません", "%s could not be renamed" : "%sの名前を変更できませんでした", "Upload (max. %s)" : "アップロード ( 最大 %s )", diff --git a/apps/files/l10n/ja.json b/apps/files/l10n/ja.json index 8d758fb5037..77b5e7b726a 100644 --- a/apps/files/l10n/ja.json +++ b/apps/files/l10n/ja.json @@ -78,6 +78,19 @@ "Favorited" : "お気に入り済", "Favorite" : "お気に入り", "An error occurred while trying to update the tags" : "タグを更新する際にエラーが発生しました", + "A new file or folder has been <strong>created</strong>" : "新しいファイルまたはフォルダーを<strong>作成</strong>したとき", + "A file or folder has been <strong>changed</strong>" : "ファイルまたはフォルダーを<strong>変更</strong>したとき", + "A file or folder has been <strong>deleted</strong>" : "ファイルまたはフォルダーを<strong>削除</strong>したとき", + "A file or folder has been <strong>restored</strong>" : "ファイルまたはフォルダーを<strong>復元</strong>したとき", + "You created %1$s" : "あなたは %1$s を作成しました", + "%2$s created %1$s" : "%2$s は%1$s を作成しました", + "%1$s was created in a public folder" : "公開フォルダーに %1$s が作成されました", + "You changed %1$s" : "あなたは %1$s を変更しました", + "%2$s changed %1$s" : "%2$s は%1$s を変更しました", + "You deleted %1$s" : "あなたは %1$s を削除しました", + "%2$s deleted %1$s" : "%2$s は %1$s を削除しました", + "You restored %1$s" : "%1$s を復元しました", + "%2$s restored %1$s" : "%2$s は、 %1$s を復元しました", "%s could not be renamed as it has been deleted" : "%s は削除されたため、ファイル名を変更できません", "%s could not be renamed" : "%sの名前を変更できませんでした", "Upload (max. %s)" : "アップロード ( 最大 %s )", diff --git a/apps/files/l10n/km.js b/apps/files/l10n/km.js index 8307b49835c..aa85a982163 100644 --- a/apps/files/l10n/km.js +++ b/apps/files/l10n/km.js @@ -24,6 +24,12 @@ OC.L10N.register( "_%n file_::_%n files_" : [""], "_Uploading %n file_::_Uploading %n files_" : [""], "_matches '{filter}'_::_match '{filter}'_" : [""], + "You created %1$s" : "អ្នកបានបង្កើត %1$s", + "%2$s created %1$s" : "%2$s បានបង្កើត %1$s", + "You changed %1$s" : "អ្នកបានផ្លាស់ប្ដូរ %1$s", + "%2$s changed %1$s" : "%2$s បានផ្លាស់ប្ដូរ %1$s", + "You deleted %1$s" : "អ្នកបានលុប %1$s", + "%2$s deleted %1$s" : "%2$s បានលុប %1$s", "Maximum upload size" : "ទំហំផ្ទុកឡើងជាអតិបរមា", "Save" : "រក្សាទុក", "Settings" : "ការកំណត់", diff --git a/apps/files/l10n/km.json b/apps/files/l10n/km.json index babae7a1a8d..d8e92b73633 100644 --- a/apps/files/l10n/km.json +++ b/apps/files/l10n/km.json @@ -22,6 +22,12 @@ "_%n file_::_%n files_" : [""], "_Uploading %n file_::_Uploading %n files_" : [""], "_matches '{filter}'_::_match '{filter}'_" : [""], + "You created %1$s" : "អ្នកបានបង្កើត %1$s", + "%2$s created %1$s" : "%2$s បានបង្កើត %1$s", + "You changed %1$s" : "អ្នកបានផ្លាស់ប្ដូរ %1$s", + "%2$s changed %1$s" : "%2$s បានផ្លាស់ប្ដូរ %1$s", + "You deleted %1$s" : "អ្នកបានលុប %1$s", + "%2$s deleted %1$s" : "%2$s បានលុប %1$s", "Maximum upload size" : "ទំហំផ្ទុកឡើងជាអតិបរមា", "Save" : "រក្សាទុក", "Settings" : "ការកំណត់", diff --git a/apps/files/l10n/ko.js b/apps/files/l10n/ko.js index 22dab10bd36..1abd33d1032 100644 --- a/apps/files/l10n/ko.js +++ b/apps/files/l10n/ko.js @@ -80,6 +80,19 @@ OC.L10N.register( "Favorited" : "책갈피에 추가됨", "Favorite" : "즐겨찾기", "An error occurred while trying to update the tags" : "태그를 업데이트하는 중 오류 발생", + "A new file or folder has been <strong>created</strong>" : "새 파일이나 폴더가 <strong>생성됨</strong>", + "A file or folder has been <strong>changed</strong>" : "파일이나 폴더가 <strong>변경됨</strong>", + "A file or folder has been <strong>deleted</strong>" : "파일이나 폴더가 <strong>삭제됨</strong>", + "A file or folder has been <strong>restored</strong>" : "파일이나 폴더가 <strong>복원됨</strong>", + "You created %1$s" : "내가 %1$s을(를) 생성함", + "%2$s created %1$s" : "%2$s 님이 %1$s을(를) 생성함", + "%1$s was created in a public folder" : "공유 폴더에 %1$s 생성됨", + "You changed %1$s" : "내가 %1$s을(를) 변경함", + "%2$s changed %1$s" : "%2$s 님이 %1$s을(를) 변경함", + "You deleted %1$s" : "내가 %1$s을(를) 삭제함", + "%2$s deleted %1$s" : "%2$s 님이 %1$s을(를) 삭제함", + "You restored %1$s" : "내가 %1$s을(를) 복원함", + "%2$s restored %1$s" : "%2$s 님이 %1$s을(를) 복원함", "%s could not be renamed as it has been deleted" : "%s이(가) 삭제되었기 때문에 이름을 변경할 수 없습니다", "%s could not be renamed" : "%s의 이름을 변경할 수 없습니다", "Upload (max. %s)" : "업로드(최대 %s)", diff --git a/apps/files/l10n/ko.json b/apps/files/l10n/ko.json index 3dbddd90263..82d9234a8e4 100644 --- a/apps/files/l10n/ko.json +++ b/apps/files/l10n/ko.json @@ -78,6 +78,19 @@ "Favorited" : "책갈피에 추가됨", "Favorite" : "즐겨찾기", "An error occurred while trying to update the tags" : "태그를 업데이트하는 중 오류 발생", + "A new file or folder has been <strong>created</strong>" : "새 파일이나 폴더가 <strong>생성됨</strong>", + "A file or folder has been <strong>changed</strong>" : "파일이나 폴더가 <strong>변경됨</strong>", + "A file or folder has been <strong>deleted</strong>" : "파일이나 폴더가 <strong>삭제됨</strong>", + "A file or folder has been <strong>restored</strong>" : "파일이나 폴더가 <strong>복원됨</strong>", + "You created %1$s" : "내가 %1$s을(를) 생성함", + "%2$s created %1$s" : "%2$s 님이 %1$s을(를) 생성함", + "%1$s was created in a public folder" : "공유 폴더에 %1$s 생성됨", + "You changed %1$s" : "내가 %1$s을(를) 변경함", + "%2$s changed %1$s" : "%2$s 님이 %1$s을(를) 변경함", + "You deleted %1$s" : "내가 %1$s을(를) 삭제함", + "%2$s deleted %1$s" : "%2$s 님이 %1$s을(를) 삭제함", + "You restored %1$s" : "내가 %1$s을(를) 복원함", + "%2$s restored %1$s" : "%2$s 님이 %1$s을(를) 복원함", "%s could not be renamed as it has been deleted" : "%s이(가) 삭제되었기 때문에 이름을 변경할 수 없습니다", "%s could not be renamed" : "%s의 이름을 변경할 수 없습니다", "Upload (max. %s)" : "업로드(최대 %s)", diff --git a/apps/files/l10n/lt_LT.js b/apps/files/l10n/lt_LT.js index 89301e1eec8..e74c0c1b084 100644 --- a/apps/files/l10n/lt_LT.js +++ b/apps/files/l10n/lt_LT.js @@ -78,6 +78,19 @@ OC.L10N.register( "{dirs} and {files}" : "{dirs} ir {files}", "Favorited" : "Pažymėta mėgstamu", "Favorite" : "Mėgiamas", + "A new file or folder has been <strong>created</strong>" : "Naujas failas ar aplankas buvo <strong>sukurtas</strong>", + "A file or folder has been <strong>changed</strong>" : "Failas ar aplankas buvo <strong>pakeistas</strong>", + "A file or folder has been <strong>deleted</strong>" : "Failas ar aplankas buvo <strong>ištrintas</strong>", + "A file or folder has been <strong>restored</strong>" : "Failas ar aplankas buvo <strong>atkurtas</strong>", + "You created %1$s" : "Jūs sukūrėte %1$s", + "%2$s created %1$s" : "%2$s sukūrė %1$s", + "%1$s was created in a public folder" : "%1$s buvo sukurta viešajame aplanke", + "You changed %1$s" : "Jūs pakeitėte %1$s", + "%2$s changed %1$s" : "%2$s pakeitė %1$s", + "You deleted %1$s" : "Jūs ištrynėte %1$s", + "%2$s deleted %1$s" : "%2$s ištrynė %1$s", + "You restored %1$s" : "Jūs atkūrėte %1$s", + "%2$s restored %1$s" : "%2$s atkurta %1$s", "%s could not be renamed as it has been deleted" : "%s negalėjo būti pervadintas, nes buvo ištrintas", "%s could not be renamed" : "%s negali būti pervadintas", "Upload (max. %s)" : "Įkelti (maks. %s)", diff --git a/apps/files/l10n/lt_LT.json b/apps/files/l10n/lt_LT.json index d9029085eac..68592bb53c1 100644 --- a/apps/files/l10n/lt_LT.json +++ b/apps/files/l10n/lt_LT.json @@ -76,6 +76,19 @@ "{dirs} and {files}" : "{dirs} ir {files}", "Favorited" : "Pažymėta mėgstamu", "Favorite" : "Mėgiamas", + "A new file or folder has been <strong>created</strong>" : "Naujas failas ar aplankas buvo <strong>sukurtas</strong>", + "A file or folder has been <strong>changed</strong>" : "Failas ar aplankas buvo <strong>pakeistas</strong>", + "A file or folder has been <strong>deleted</strong>" : "Failas ar aplankas buvo <strong>ištrintas</strong>", + "A file or folder has been <strong>restored</strong>" : "Failas ar aplankas buvo <strong>atkurtas</strong>", + "You created %1$s" : "Jūs sukūrėte %1$s", + "%2$s created %1$s" : "%2$s sukūrė %1$s", + "%1$s was created in a public folder" : "%1$s buvo sukurta viešajame aplanke", + "You changed %1$s" : "Jūs pakeitėte %1$s", + "%2$s changed %1$s" : "%2$s pakeitė %1$s", + "You deleted %1$s" : "Jūs ištrynėte %1$s", + "%2$s deleted %1$s" : "%2$s ištrynė %1$s", + "You restored %1$s" : "Jūs atkūrėte %1$s", + "%2$s restored %1$s" : "%2$s atkurta %1$s", "%s could not be renamed as it has been deleted" : "%s negalėjo būti pervadintas, nes buvo ištrintas", "%s could not be renamed" : "%s negali būti pervadintas", "Upload (max. %s)" : "Įkelti (maks. %s)", diff --git a/apps/files/l10n/lv.js b/apps/files/l10n/lv.js index 5113633fd38..c6862c0cc22 100644 --- a/apps/files/l10n/lv.js +++ b/apps/files/l10n/lv.js @@ -79,6 +79,19 @@ OC.L10N.register( "{dirs} and {files}" : "{dirs} un {files}", "Favorited" : "Favorīti", "Favorite" : "Iecienītais", + "A new file or folder has been <strong>created</strong>" : "<strong>Izveidots</strong> jauns fails vai mape", + "A file or folder has been <strong>changed</strong>" : "<strong>Izmainīts</strong> fails vai mape", + "A file or folder has been <strong>deleted</strong>" : "<strong>Dzēsts</strong> fails vai mape", + "A file or folder has been <strong>restored</strong>" : "<strong>Atjaunots</strong> fails vai mape", + "You created %1$s" : "Tu izveidoji %1$s", + "%2$s created %1$s" : "%2$s izveidoja %1$s", + "%1$s was created in a public folder" : "%1$s tika izveidots publiskajā mapē", + "You changed %1$s" : "Tu izmainīji %1$s", + "%2$s changed %1$s" : "%2$s izmainīja %1$s", + "You deleted %1$s" : "Tu izdzēsi %1$s", + "%2$s deleted %1$s" : "%2$s izdzēsa %1$s", + "You restored %1$s" : "Tu atjaunoji %1$s", + "%2$s restored %1$s" : "%2$s atjaunoja %1$s", "%s could not be renamed as it has been deleted" : "Nevarēja pārsaukt %s, jo tas ir dzēsts", "%s could not be renamed" : "%s nevar tikt pārsaukts", "Upload (max. %s)" : "Augšupielādēt (maks. %s)", diff --git a/apps/files/l10n/lv.json b/apps/files/l10n/lv.json index fce4afe103f..2944a919d5d 100644 --- a/apps/files/l10n/lv.json +++ b/apps/files/l10n/lv.json @@ -77,6 +77,19 @@ "{dirs} and {files}" : "{dirs} un {files}", "Favorited" : "Favorīti", "Favorite" : "Iecienītais", + "A new file or folder has been <strong>created</strong>" : "<strong>Izveidots</strong> jauns fails vai mape", + "A file or folder has been <strong>changed</strong>" : "<strong>Izmainīts</strong> fails vai mape", + "A file or folder has been <strong>deleted</strong>" : "<strong>Dzēsts</strong> fails vai mape", + "A file or folder has been <strong>restored</strong>" : "<strong>Atjaunots</strong> fails vai mape", + "You created %1$s" : "Tu izveidoji %1$s", + "%2$s created %1$s" : "%2$s izveidoja %1$s", + "%1$s was created in a public folder" : "%1$s tika izveidots publiskajā mapē", + "You changed %1$s" : "Tu izmainīji %1$s", + "%2$s changed %1$s" : "%2$s izmainīja %1$s", + "You deleted %1$s" : "Tu izdzēsi %1$s", + "%2$s deleted %1$s" : "%2$s izdzēsa %1$s", + "You restored %1$s" : "Tu atjaunoji %1$s", + "%2$s restored %1$s" : "%2$s atjaunoja %1$s", "%s could not be renamed as it has been deleted" : "Nevarēja pārsaukt %s, jo tas ir dzēsts", "%s could not be renamed" : "%s nevar tikt pārsaukts", "Upload (max. %s)" : "Augšupielādēt (maks. %s)", diff --git a/apps/files/l10n/mk.js b/apps/files/l10n/mk.js index 3e73a634bd1..950f01ed481 100644 --- a/apps/files/l10n/mk.js +++ b/apps/files/l10n/mk.js @@ -53,6 +53,12 @@ OC.L10N.register( "Your storage is almost full ({usedSpacePercent}%)" : "Вашиот сториџ е скоро полн ({usedSpacePercent}%)", "_matches '{filter}'_::_match '{filter}'_" : ["",""], "{dirs} and {files}" : "{dirs} и {files}", + "You created %1$s" : "Вие креиравте %1$s", + "%2$s created %1$s" : "%2$s креирано %1$s", + "You changed %1$s" : "Вие изменивте %1$s", + "%2$s changed %1$s" : "%2$s променето %1$s", + "You deleted %1$s" : "Вие избришавте %1$s", + "%2$s deleted %1$s" : "%2$s избришани %1$s", "%s could not be renamed" : "%s не може да биде преименуван", "File handling" : "Ракување со датотеки", "Maximum upload size" : "Максимална големина за подигање", diff --git a/apps/files/l10n/mk.json b/apps/files/l10n/mk.json index 57f8161f94b..50e6621609f 100644 --- a/apps/files/l10n/mk.json +++ b/apps/files/l10n/mk.json @@ -51,6 +51,12 @@ "Your storage is almost full ({usedSpacePercent}%)" : "Вашиот сториџ е скоро полн ({usedSpacePercent}%)", "_matches '{filter}'_::_match '{filter}'_" : ["",""], "{dirs} and {files}" : "{dirs} и {files}", + "You created %1$s" : "Вие креиравте %1$s", + "%2$s created %1$s" : "%2$s креирано %1$s", + "You changed %1$s" : "Вие изменивте %1$s", + "%2$s changed %1$s" : "%2$s променето %1$s", + "You deleted %1$s" : "Вие избришавте %1$s", + "%2$s deleted %1$s" : "%2$s избришани %1$s", "%s could not be renamed" : "%s не може да биде преименуван", "File handling" : "Ракување со датотеки", "Maximum upload size" : "Максимална големина за подигање", diff --git a/apps/files/l10n/ml_IN.js b/apps/files/l10n/ml_IN.js index ada7e5aa6c4..d5c495c932a 100644 --- a/apps/files/l10n/ml_IN.js +++ b/apps/files/l10n/ml_IN.js @@ -5,6 +5,12 @@ OC.L10N.register( "_%n folder_::_%n folders_" : ["",""], "_%n file_::_%n files_" : ["",""], "_Uploading %n file_::_Uploading %n files_" : ["",""], - "_matches '{filter}'_::_match '{filter}'_" : ["",""] + "_matches '{filter}'_::_match '{filter}'_" : ["",""], + "You created %1$s" : "നിങ്ങൾ %1$s സൃഷ്ടിച്ചു", + "%2$s created %1$s" : "%2$s %1$s സൃഷ്ടിച്ചു", + "You changed %1$s" : "നിങ്ങൾ %1$s പരിഷ്കരിച്ചു", + "%2$s changed %1$s" : "%2$s %1$s പരിഷ്കരിച്ചു", + "You deleted %1$s" : "നിങ്ങൾ %1$s മായ്ച്ചു", + "%2$s deleted %1$s" : "%2$s %1$s മായ്ച്ചു" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/ml_IN.json b/apps/files/l10n/ml_IN.json index e81680ca125..f318671cace 100644 --- a/apps/files/l10n/ml_IN.json +++ b/apps/files/l10n/ml_IN.json @@ -3,6 +3,12 @@ "_%n folder_::_%n folders_" : ["",""], "_%n file_::_%n files_" : ["",""], "_Uploading %n file_::_Uploading %n files_" : ["",""], - "_matches '{filter}'_::_match '{filter}'_" : ["",""] + "_matches '{filter}'_::_match '{filter}'_" : ["",""], + "You created %1$s" : "നിങ്ങൾ %1$s സൃഷ്ടിച്ചു", + "%2$s created %1$s" : "%2$s %1$s സൃഷ്ടിച്ചു", + "You changed %1$s" : "നിങ്ങൾ %1$s പരിഷ്കരിച്ചു", + "%2$s changed %1$s" : "%2$s %1$s പരിഷ്കരിച്ചു", + "You deleted %1$s" : "നിങ്ങൾ %1$s മായ്ച്ചു", + "%2$s deleted %1$s" : "%2$s %1$s മായ്ച്ചു" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/files/l10n/mn.js b/apps/files/l10n/mn.js index 9eb11fe8f6d..c6c47409a7b 100644 --- a/apps/files/l10n/mn.js +++ b/apps/files/l10n/mn.js @@ -6,6 +6,19 @@ OC.L10N.register( "_%n file_::_%n files_" : ["",""], "_Uploading %n file_::_Uploading %n files_" : ["",""], "_matches '{filter}'_::_match '{filter}'_" : ["",""], + "A new file or folder has been <strong>created</strong>" : "Файл эсвэл хавтас амжилттай <strong>үүсгэгдлээ</strong>", + "A file or folder has been <strong>changed</strong>" : "Файл эсвэл хавтас амжилттай <strong>солигдлоо</strong>", + "A file or folder has been <strong>deleted</strong>" : "Файл эсвэл хавтас амжилттай <strong>устгагдлаа</strong>", + "A file or folder has been <strong>restored</strong>" : "Файл эсвэл хавтас амжилттай <strong>сэргээгдлээ</strong>", + "You created %1$s" : "Та %1$s үүсгэлээ", + "%2$s created %1$s" : "%2$s %1$s-ийг үүсгэлээ", + "%1$s was created in a public folder" : "%1$s-ийг нийтийн хавтсанд үүсгэсэн байна", + "You changed %1$s" : "Та %1$s-ийг өөрчиллөө", + "%2$s changed %1$s" : "%2$s %1$s-ийг өөрчиллөө", + "You deleted %1$s" : "Та %1$s-ийг устгалаа", + "%2$s deleted %1$s" : "%2$s %1$s-ийг устгалаа", + "You restored %1$s" : "Та %1$s-ийг сэргээлээ", + "%2$s restored %1$s" : "%2$s %1$s-ийг сэргээлээ", "Save" : "Хадгалах", "Settings" : "Тохиргоо", "Upload" : "Байршуулах" diff --git a/apps/files/l10n/mn.json b/apps/files/l10n/mn.json index 7b134c1f1a5..94667661929 100644 --- a/apps/files/l10n/mn.json +++ b/apps/files/l10n/mn.json @@ -4,6 +4,19 @@ "_%n file_::_%n files_" : ["",""], "_Uploading %n file_::_Uploading %n files_" : ["",""], "_matches '{filter}'_::_match '{filter}'_" : ["",""], + "A new file or folder has been <strong>created</strong>" : "Файл эсвэл хавтас амжилттай <strong>үүсгэгдлээ</strong>", + "A file or folder has been <strong>changed</strong>" : "Файл эсвэл хавтас амжилттай <strong>солигдлоо</strong>", + "A file or folder has been <strong>deleted</strong>" : "Файл эсвэл хавтас амжилттай <strong>устгагдлаа</strong>", + "A file or folder has been <strong>restored</strong>" : "Файл эсвэл хавтас амжилттай <strong>сэргээгдлээ</strong>", + "You created %1$s" : "Та %1$s үүсгэлээ", + "%2$s created %1$s" : "%2$s %1$s-ийг үүсгэлээ", + "%1$s was created in a public folder" : "%1$s-ийг нийтийн хавтсанд үүсгэсэн байна", + "You changed %1$s" : "Та %1$s-ийг өөрчиллөө", + "%2$s changed %1$s" : "%2$s %1$s-ийг өөрчиллөө", + "You deleted %1$s" : "Та %1$s-ийг устгалаа", + "%2$s deleted %1$s" : "%2$s %1$s-ийг устгалаа", + "You restored %1$s" : "Та %1$s-ийг сэргээлээ", + "%2$s restored %1$s" : "%2$s %1$s-ийг сэргээлээ", "Save" : "Хадгалах", "Settings" : "Тохиргоо", "Upload" : "Байршуулах" diff --git a/apps/files/l10n/ms_MY.js b/apps/files/l10n/ms_MY.js index e042aff7965..7472c6daa59 100644 --- a/apps/files/l10n/ms_MY.js +++ b/apps/files/l10n/ms_MY.js @@ -23,6 +23,9 @@ OC.L10N.register( "_%n file_::_%n files_" : [""], "_Uploading %n file_::_Uploading %n files_" : [""], "_matches '{filter}'_::_match '{filter}'_" : [""], + "You created %1$s" : "Anda telah membina %1$s", + "%2$s created %1$s" : "%2$s membina %1$s", + "You changed %1$s" : "Anda menukar %1$s", "File handling" : "Pengendalian fail", "Maximum upload size" : "Saiz maksimum muat naik", "max. possible: " : "maksimum:", diff --git a/apps/files/l10n/ms_MY.json b/apps/files/l10n/ms_MY.json index 5a2a66a89de..347dc860ec7 100644 --- a/apps/files/l10n/ms_MY.json +++ b/apps/files/l10n/ms_MY.json @@ -21,6 +21,9 @@ "_%n file_::_%n files_" : [""], "_Uploading %n file_::_Uploading %n files_" : [""], "_matches '{filter}'_::_match '{filter}'_" : [""], + "You created %1$s" : "Anda telah membina %1$s", + "%2$s created %1$s" : "%2$s membina %1$s", + "You changed %1$s" : "Anda menukar %1$s", "File handling" : "Pengendalian fail", "Maximum upload size" : "Saiz maksimum muat naik", "max. possible: " : "maksimum:", diff --git a/apps/files/l10n/nb_NO.js b/apps/files/l10n/nb_NO.js index 34ff0f0c2d7..49c740bc797 100644 --- a/apps/files/l10n/nb_NO.js +++ b/apps/files/l10n/nb_NO.js @@ -79,6 +79,19 @@ OC.L10N.register( "{dirs} and {files}" : "{dirs} og {files}", "Favorited" : "Er favoritt", "Favorite" : "Gjør til favoritt", + "A new file or folder has been <strong>created</strong>" : "En ny fil eller mappe ble <strong>opprettet</strong>", + "A file or folder has been <strong>changed</strong>" : "En fil eller mappe ble <strong>endret</strong>", + "A file or folder has been <strong>deleted</strong>" : "En fil eller mappe ble <strong>slettet</strong>", + "A file or folder has been <strong>restored</strong>" : "En fil eller mappe ble <strong>gjenopprettet</strong>", + "You created %1$s" : "Du opprettet %1$s", + "%2$s created %1$s" : "%2$s opprettet %1$s", + "%1$s was created in a public folder" : "%1$s ble opprettet i en offentlig mappe", + "You changed %1$s" : "Du endret %1$s", + "%2$s changed %1$s" : "%2$s endret %1$s", + "You deleted %1$s" : "Du slettet %1$s", + "%2$s deleted %1$s" : "%2$s slettet %1$s", + "You restored %1$s" : "Du gjenopprettet %1$s", + "%2$s restored %1$s" : "%2$s gjenopprettet %1$s", "%s could not be renamed as it has been deleted" : "%s kunne ikke gis nytt navn da den er blitt slettet", "%s could not be renamed" : "Kunne ikke gi nytt navn til %s", "Upload (max. %s)" : "Opplasting (maks. %s)", diff --git a/apps/files/l10n/nb_NO.json b/apps/files/l10n/nb_NO.json index 2af4e446204..1950a3e501d 100644 --- a/apps/files/l10n/nb_NO.json +++ b/apps/files/l10n/nb_NO.json @@ -77,6 +77,19 @@ "{dirs} and {files}" : "{dirs} og {files}", "Favorited" : "Er favoritt", "Favorite" : "Gjør til favoritt", + "A new file or folder has been <strong>created</strong>" : "En ny fil eller mappe ble <strong>opprettet</strong>", + "A file or folder has been <strong>changed</strong>" : "En fil eller mappe ble <strong>endret</strong>", + "A file or folder has been <strong>deleted</strong>" : "En fil eller mappe ble <strong>slettet</strong>", + "A file or folder has been <strong>restored</strong>" : "En fil eller mappe ble <strong>gjenopprettet</strong>", + "You created %1$s" : "Du opprettet %1$s", + "%2$s created %1$s" : "%2$s opprettet %1$s", + "%1$s was created in a public folder" : "%1$s ble opprettet i en offentlig mappe", + "You changed %1$s" : "Du endret %1$s", + "%2$s changed %1$s" : "%2$s endret %1$s", + "You deleted %1$s" : "Du slettet %1$s", + "%2$s deleted %1$s" : "%2$s slettet %1$s", + "You restored %1$s" : "Du gjenopprettet %1$s", + "%2$s restored %1$s" : "%2$s gjenopprettet %1$s", "%s could not be renamed as it has been deleted" : "%s kunne ikke gis nytt navn da den er blitt slettet", "%s could not be renamed" : "Kunne ikke gi nytt navn til %s", "Upload (max. %s)" : "Opplasting (maks. %s)", diff --git a/apps/files/l10n/nl.js b/apps/files/l10n/nl.js index c630cf93127..0b78472fb37 100644 --- a/apps/files/l10n/nl.js +++ b/apps/files/l10n/nl.js @@ -80,6 +80,19 @@ OC.L10N.register( "Favorited" : "Favoriet", "Favorite" : "Favoriet", "An error occurred while trying to update the tags" : "Er trad een fout op bij uw poging de tags bij te werken", + "A new file or folder has been <strong>created</strong>" : "Een nieuw bestand of map is <strong>aangemaakt</strong>", + "A file or folder has been <strong>changed</strong>" : "Een bestand of map is <strong>gewijzigd</strong>", + "A file or folder has been <strong>deleted</strong>" : "Een bestand of map is <strong>verwijderd</strong>", + "A file or folder has been <strong>restored</strong>" : "Een bestand of een mmaps is <strong>hersteld</strong>", + "You created %1$s" : "U creëerde %1$s", + "%2$s created %1$s" : "%2$s creëerde %1$s", + "%1$s was created in a public folder" : "%1$s werd gecreëerd in een openbare map", + "You changed %1$s" : "U wijzigde %1$s", + "%2$s changed %1$s" : "%2$s wijzigde %1$s", + "You deleted %1$s" : "U verwijderde %1$s", + "%2$s deleted %1$s" : "%2$s verwijderde %1$s", + "You restored %1$s" : "U herstelde %1$s", + "%2$s restored %1$s" : "%2$s herstelde %1$s", "%s could not be renamed as it has been deleted" : "%s kon niet worden hernoemd, omdat het verwijderd is", "%s could not be renamed" : "%s kon niet worden hernoemd", "Upload (max. %s)" : "Upload (max. %s)", diff --git a/apps/files/l10n/nl.json b/apps/files/l10n/nl.json index 34bf8e2ae29..126cd7d5b18 100644 --- a/apps/files/l10n/nl.json +++ b/apps/files/l10n/nl.json @@ -78,6 +78,19 @@ "Favorited" : "Favoriet", "Favorite" : "Favoriet", "An error occurred while trying to update the tags" : "Er trad een fout op bij uw poging de tags bij te werken", + "A new file or folder has been <strong>created</strong>" : "Een nieuw bestand of map is <strong>aangemaakt</strong>", + "A file or folder has been <strong>changed</strong>" : "Een bestand of map is <strong>gewijzigd</strong>", + "A file or folder has been <strong>deleted</strong>" : "Een bestand of map is <strong>verwijderd</strong>", + "A file or folder has been <strong>restored</strong>" : "Een bestand of een mmaps is <strong>hersteld</strong>", + "You created %1$s" : "U creëerde %1$s", + "%2$s created %1$s" : "%2$s creëerde %1$s", + "%1$s was created in a public folder" : "%1$s werd gecreëerd in een openbare map", + "You changed %1$s" : "U wijzigde %1$s", + "%2$s changed %1$s" : "%2$s wijzigde %1$s", + "You deleted %1$s" : "U verwijderde %1$s", + "%2$s deleted %1$s" : "%2$s verwijderde %1$s", + "You restored %1$s" : "U herstelde %1$s", + "%2$s restored %1$s" : "%2$s herstelde %1$s", "%s could not be renamed as it has been deleted" : "%s kon niet worden hernoemd, omdat het verwijderd is", "%s could not be renamed" : "%s kon niet worden hernoemd", "Upload (max. %s)" : "Upload (max. %s)", diff --git a/apps/files/l10n/nn_NO.js b/apps/files/l10n/nn_NO.js index b7f217e0627..805ddfd97f1 100644 --- a/apps/files/l10n/nn_NO.js +++ b/apps/files/l10n/nn_NO.js @@ -47,6 +47,16 @@ OC.L10N.register( "_matches '{filter}'_::_match '{filter}'_" : ["",""], "{dirs} and {files}" : "{dirs} og {files}", "Favorite" : "Favoritt", + "A new file or folder has been <strong>created</strong>" : "Ei ny fil eller mappe er <strong>oppretta</strong>", + "A file or folder has been <strong>changed</strong>" : "Ei fil eller mappe er <strong>endra</strong>", + "A file or folder has been <strong>deleted</strong>" : "Ei fil eller mappe er <strong>sletta</strong>", + "You created %1$s" : "Du oppretta %1$s", + "%2$s created %1$s" : "%2$s oppretta %1$s", + "%1$s was created in a public folder" : "%1$s oppretta i ei offentleg mappe", + "You changed %1$s" : "Du endra %1$s", + "%2$s changed %1$s" : "%2$s endra %1$s", + "You deleted %1$s" : "Du sletta %1$s", + "%2$s deleted %1$s" : "%2$s sletta %1$s", "%s could not be renamed" : "Klarte ikkje å omdøypa på %s", "File handling" : "Filhandtering", "Maximum upload size" : "Maksimal opplastingsstorleik", diff --git a/apps/files/l10n/nn_NO.json b/apps/files/l10n/nn_NO.json index 49a8812db19..f4cabd0bb46 100644 --- a/apps/files/l10n/nn_NO.json +++ b/apps/files/l10n/nn_NO.json @@ -45,6 +45,16 @@ "_matches '{filter}'_::_match '{filter}'_" : ["",""], "{dirs} and {files}" : "{dirs} og {files}", "Favorite" : "Favoritt", + "A new file or folder has been <strong>created</strong>" : "Ei ny fil eller mappe er <strong>oppretta</strong>", + "A file or folder has been <strong>changed</strong>" : "Ei fil eller mappe er <strong>endra</strong>", + "A file or folder has been <strong>deleted</strong>" : "Ei fil eller mappe er <strong>sletta</strong>", + "You created %1$s" : "Du oppretta %1$s", + "%2$s created %1$s" : "%2$s oppretta %1$s", + "%1$s was created in a public folder" : "%1$s oppretta i ei offentleg mappe", + "You changed %1$s" : "Du endra %1$s", + "%2$s changed %1$s" : "%2$s endra %1$s", + "You deleted %1$s" : "Du sletta %1$s", + "%2$s deleted %1$s" : "%2$s sletta %1$s", "%s could not be renamed" : "Klarte ikkje å omdøypa på %s", "File handling" : "Filhandtering", "Maximum upload size" : "Maksimal opplastingsstorleik", diff --git a/apps/files/l10n/pl.js b/apps/files/l10n/pl.js index 1c30ccf2f81..0a697c07e9b 100644 --- a/apps/files/l10n/pl.js +++ b/apps/files/l10n/pl.js @@ -76,6 +76,19 @@ OC.L10N.register( "_matches '{filter}'_::_match '{filter}'_" : ["","",""], "{dirs} and {files}" : "{dirs} i {files}", "Favorite" : "Ulubione", + "A new file or folder has been <strong>created</strong>" : "Nowy plik lub folder został <strong>utworzony</strong>", + "A file or folder has been <strong>changed</strong>" : "Plik lub folder został <strong>zmieniony</strong>", + "A file or folder has been <strong>deleted</strong>" : "Plik lub folder został <strong>usunięty</strong>", + "A file or folder has been <strong>restored</strong>" : "Plik lub folder został <strong>przywrócy</strong>", + "You created %1$s" : "Utworzyłeś %1$s", + "%2$s created %1$s" : "%2$s utworzył %1$s", + "%1$s was created in a public folder" : "%1$s został utworzony w folderze publicznym", + "You changed %1$s" : "Zmieniłeś %1$s", + "%2$s changed %1$s" : "%2$s zmienił %1$s", + "You deleted %1$s" : "Usunąłeś %1$s", + "%2$s deleted %1$s" : "%2$s usunął %1$s", + "You restored %1$s" : "Przywróciłeś %1$s", + "%2$s restored %1$s" : "%2$s przywrócił %1$s", "%s could not be renamed as it has been deleted" : "%s nie może mieć zmienionej nazwy, ponieważ został usunięty", "%s could not be renamed" : "%s nie można zmienić nazwy", "Upload (max. %s)" : "Wysyłka (max. %s)", diff --git a/apps/files/l10n/pl.json b/apps/files/l10n/pl.json index a72ea2e9474..b31914f3f42 100644 --- a/apps/files/l10n/pl.json +++ b/apps/files/l10n/pl.json @@ -74,6 +74,19 @@ "_matches '{filter}'_::_match '{filter}'_" : ["","",""], "{dirs} and {files}" : "{dirs} i {files}", "Favorite" : "Ulubione", + "A new file or folder has been <strong>created</strong>" : "Nowy plik lub folder został <strong>utworzony</strong>", + "A file or folder has been <strong>changed</strong>" : "Plik lub folder został <strong>zmieniony</strong>", + "A file or folder has been <strong>deleted</strong>" : "Plik lub folder został <strong>usunięty</strong>", + "A file or folder has been <strong>restored</strong>" : "Plik lub folder został <strong>przywrócy</strong>", + "You created %1$s" : "Utworzyłeś %1$s", + "%2$s created %1$s" : "%2$s utworzył %1$s", + "%1$s was created in a public folder" : "%1$s został utworzony w folderze publicznym", + "You changed %1$s" : "Zmieniłeś %1$s", + "%2$s changed %1$s" : "%2$s zmienił %1$s", + "You deleted %1$s" : "Usunąłeś %1$s", + "%2$s deleted %1$s" : "%2$s usunął %1$s", + "You restored %1$s" : "Przywróciłeś %1$s", + "%2$s restored %1$s" : "%2$s przywrócił %1$s", "%s could not be renamed as it has been deleted" : "%s nie może mieć zmienionej nazwy, ponieważ został usunięty", "%s could not be renamed" : "%s nie można zmienić nazwy", "Upload (max. %s)" : "Wysyłka (max. %s)", diff --git a/apps/files/l10n/pt_BR.js b/apps/files/l10n/pt_BR.js index bd7df2569fa..038d9d39d16 100644 --- a/apps/files/l10n/pt_BR.js +++ b/apps/files/l10n/pt_BR.js @@ -80,6 +80,19 @@ OC.L10N.register( "Favorited" : "Favorito", "Favorite" : "Favorito", "An error occurred while trying to update the tags" : "Ocorreu um erro enquanto tentava atualizar as etiquetas", + "A new file or folder has been <strong>created</strong>" : "Um novo arquivo ou pasta foi <strong>criado</strong>", + "A file or folder has been <strong>changed</strong>" : "Um arquivo ou pasta foi <strong>modificado</strong>", + "A file or folder has been <strong>deleted</strong>" : "Um arquivo ou pasta foi <strong>excluído</strong>", + "A file or folder has been <strong>restored</strong>" : "Um arquivo ou pasta foi <strong>restautado</strong>", + "You created %1$s" : "Você criou %1$s", + "%2$s created %1$s" : "%2$s criou %1$s", + "%1$s was created in a public folder" : "%1$s foi criado em uma pasta pública", + "You changed %1$s" : "Você modificou %1$s", + "%2$s changed %1$s" : "%2$s modificou %1$s", + "You deleted %1$s" : "Você excluiu %1$s ", + "%2$s deleted %1$s" : "%2$s eliminou %1$s", + "You restored %1$s" : "Você restaurou %1$s", + "%2$s restored %1$s" : "%2$s restaurado %1$s", "%s could not be renamed as it has been deleted" : "%s não pode ser renomeado pois foi apagado", "%s could not be renamed" : "%s não pode ser renomeado", "Upload (max. %s)" : "Envio (max. %s)", diff --git a/apps/files/l10n/pt_BR.json b/apps/files/l10n/pt_BR.json index 04f60e2c1dd..a6f31c1ced9 100644 --- a/apps/files/l10n/pt_BR.json +++ b/apps/files/l10n/pt_BR.json @@ -78,6 +78,19 @@ "Favorited" : "Favorito", "Favorite" : "Favorito", "An error occurred while trying to update the tags" : "Ocorreu um erro enquanto tentava atualizar as etiquetas", + "A new file or folder has been <strong>created</strong>" : "Um novo arquivo ou pasta foi <strong>criado</strong>", + "A file or folder has been <strong>changed</strong>" : "Um arquivo ou pasta foi <strong>modificado</strong>", + "A file or folder has been <strong>deleted</strong>" : "Um arquivo ou pasta foi <strong>excluído</strong>", + "A file or folder has been <strong>restored</strong>" : "Um arquivo ou pasta foi <strong>restautado</strong>", + "You created %1$s" : "Você criou %1$s", + "%2$s created %1$s" : "%2$s criou %1$s", + "%1$s was created in a public folder" : "%1$s foi criado em uma pasta pública", + "You changed %1$s" : "Você modificou %1$s", + "%2$s changed %1$s" : "%2$s modificou %1$s", + "You deleted %1$s" : "Você excluiu %1$s ", + "%2$s deleted %1$s" : "%2$s eliminou %1$s", + "You restored %1$s" : "Você restaurou %1$s", + "%2$s restored %1$s" : "%2$s restaurado %1$s", "%s could not be renamed as it has been deleted" : "%s não pode ser renomeado pois foi apagado", "%s could not be renamed" : "%s não pode ser renomeado", "Upload (max. %s)" : "Envio (max. %s)", diff --git a/apps/files/l10n/pt_PT.js b/apps/files/l10n/pt_PT.js index 08126e0d97f..944bfd9ec02 100644 --- a/apps/files/l10n/pt_PT.js +++ b/apps/files/l10n/pt_PT.js @@ -80,6 +80,19 @@ OC.L10N.register( "Favorited" : "Assinalado como Favorito", "Favorite" : "Favorito", "An error occurred while trying to update the tags" : "Ocorreu um erro ao tentar atualizar as tags", + "A new file or folder has been <strong>created</strong>" : "Foi <strong>criado</strong> um novo ficheiro ou pasta", + "A file or folder has been <strong>changed</strong>" : "Foi <strong>alterado</strong> um ficheiro ou pasta", + "A file or folder has been <strong>deleted</strong>" : "Foi <strong>apagado</strong> um ficheiro ou pasta", + "A file or folder has been <strong>restored</strong>" : "Foi <strong>restaurado(a)</strong> um ficheiro ou pasta", + "You created %1$s" : "Criou %1$s", + "%2$s created %1$s" : "%2$s criou %1$s", + "%1$s was created in a public folder" : "%1$s foi criado numa pasta pública", + "You changed %1$s" : "Alterou %1$s", + "%2$s changed %1$s" : "%2$s alterou %1$s", + "You deleted %1$s" : "Apagou %1$s", + "%2$s deleted %1$s" : "%2$s apagou %1$s", + "You restored %1$s" : "Restaurou %1$s", + "%2$s restored %1$s" : "%2$s restaurou %1$s", "%s could not be renamed as it has been deleted" : "Não foi possível renomear %s devido a ter sido eliminado", "%s could not be renamed" : "%s não pode ser renomeada", "Upload (max. %s)" : "Enviar (max. %s)", diff --git a/apps/files/l10n/pt_PT.json b/apps/files/l10n/pt_PT.json index 2622ae07f3e..804db79eb5a 100644 --- a/apps/files/l10n/pt_PT.json +++ b/apps/files/l10n/pt_PT.json @@ -78,6 +78,19 @@ "Favorited" : "Assinalado como Favorito", "Favorite" : "Favorito", "An error occurred while trying to update the tags" : "Ocorreu um erro ao tentar atualizar as tags", + "A new file or folder has been <strong>created</strong>" : "Foi <strong>criado</strong> um novo ficheiro ou pasta", + "A file or folder has been <strong>changed</strong>" : "Foi <strong>alterado</strong> um ficheiro ou pasta", + "A file or folder has been <strong>deleted</strong>" : "Foi <strong>apagado</strong> um ficheiro ou pasta", + "A file or folder has been <strong>restored</strong>" : "Foi <strong>restaurado(a)</strong> um ficheiro ou pasta", + "You created %1$s" : "Criou %1$s", + "%2$s created %1$s" : "%2$s criou %1$s", + "%1$s was created in a public folder" : "%1$s foi criado numa pasta pública", + "You changed %1$s" : "Alterou %1$s", + "%2$s changed %1$s" : "%2$s alterou %1$s", + "You deleted %1$s" : "Apagou %1$s", + "%2$s deleted %1$s" : "%2$s apagou %1$s", + "You restored %1$s" : "Restaurou %1$s", + "%2$s restored %1$s" : "%2$s restaurou %1$s", "%s could not be renamed as it has been deleted" : "Não foi possível renomear %s devido a ter sido eliminado", "%s could not be renamed" : "%s não pode ser renomeada", "Upload (max. %s)" : "Enviar (max. %s)", diff --git a/apps/files/l10n/ro.js b/apps/files/l10n/ro.js index 37f384a2dd5..0b89f9f99ab 100644 --- a/apps/files/l10n/ro.js +++ b/apps/files/l10n/ro.js @@ -76,6 +76,19 @@ OC.L10N.register( "_matches '{filter}'_::_match '{filter}'_" : ["","",""], "{dirs} and {files}" : "{dirs} și {files}", "Favorite" : "Favorit", + "A new file or folder has been <strong>created</strong>" : "Un nou fișier sau director a fost <strong>creat</strong>", + "A file or folder has been <strong>changed</strong>" : "Un nou fișier sau director a fost <strong>modificat</strong>", + "A file or folder has been <strong>deleted</strong>" : "Un nou fișier sau director a fost <strong>șters</strong>", + "A file or folder has been <strong>restored</strong>" : "Un fișier sau director a fost <strong>restaurat</strong>", + "You created %1$s" : "Ai creat %1$s", + "%2$s created %1$s" : "%2$s a creat %1$s", + "%1$s was created in a public folder" : "%1$s a fost creat în directorul public", + "You changed %1$s" : "Ai schimbat %1$s", + "%2$s changed %1$s" : "%2$s a schimbat %1$s", + "You deleted %1$s" : "Ai şters %1$s", + "%2$s deleted %1$s" : "%2$s a șters %1$s", + "You restored %1$s" : "Ai restaurat %1$s", + "%2$s restored %1$s" : "%2$s a restaurat %1$s", "%s could not be renamed as it has been deleted" : "%s nu a putut fi redenumit deoarece a fost sters", "%s could not be renamed" : "%s nu a putut fi redenumit", "Upload (max. %s)" : "Încarcă (max. %s)", diff --git a/apps/files/l10n/ro.json b/apps/files/l10n/ro.json index 8889e9ab8e9..f845608c02d 100644 --- a/apps/files/l10n/ro.json +++ b/apps/files/l10n/ro.json @@ -74,6 +74,19 @@ "_matches '{filter}'_::_match '{filter}'_" : ["","",""], "{dirs} and {files}" : "{dirs} și {files}", "Favorite" : "Favorit", + "A new file or folder has been <strong>created</strong>" : "Un nou fișier sau director a fost <strong>creat</strong>", + "A file or folder has been <strong>changed</strong>" : "Un nou fișier sau director a fost <strong>modificat</strong>", + "A file or folder has been <strong>deleted</strong>" : "Un nou fișier sau director a fost <strong>șters</strong>", + "A file or folder has been <strong>restored</strong>" : "Un fișier sau director a fost <strong>restaurat</strong>", + "You created %1$s" : "Ai creat %1$s", + "%2$s created %1$s" : "%2$s a creat %1$s", + "%1$s was created in a public folder" : "%1$s a fost creat în directorul public", + "You changed %1$s" : "Ai schimbat %1$s", + "%2$s changed %1$s" : "%2$s a schimbat %1$s", + "You deleted %1$s" : "Ai şters %1$s", + "%2$s deleted %1$s" : "%2$s a șters %1$s", + "You restored %1$s" : "Ai restaurat %1$s", + "%2$s restored %1$s" : "%2$s a restaurat %1$s", "%s could not be renamed as it has been deleted" : "%s nu a putut fi redenumit deoarece a fost sters", "%s could not be renamed" : "%s nu a putut fi redenumit", "Upload (max. %s)" : "Încarcă (max. %s)", diff --git a/apps/files/l10n/ru.js b/apps/files/l10n/ru.js index 2dd30d57eeb..16d3ef21843 100644 --- a/apps/files/l10n/ru.js +++ b/apps/files/l10n/ru.js @@ -80,6 +80,19 @@ OC.L10N.register( "Favorited" : "Избранное", "Favorite" : "Избранное", "An error occurred while trying to update the tags" : "Во время обновления тегов возникла ошибка", + "A new file or folder has been <strong>created</strong>" : "<strong>Создан</strong> новый файл или каталог", + "A file or folder has been <strong>changed</strong>" : "<strong>Изменён</strong> файл или каталог", + "A file or folder has been <strong>deleted</strong>" : "<strong>Удален</strong> файл или каталог", + "A file or folder has been <strong>restored</strong>" : "<strong>Восстановлен</strong> файл или каталог", + "You created %1$s" : "Вы создали %1$s", + "%2$s created %1$s" : "%2$s создано %1$s", + "%1$s was created in a public folder" : "%1$s создан в общем каталоге", + "You changed %1$s" : "Вы изменили %1$s", + "%2$s changed %1$s" : "%2$s изменил %1$s", + "You deleted %1$s" : "Вы удалили %1$s", + "%2$s deleted %1$s" : "%2$s удалил %1$s", + "You restored %1$s" : "Вы восстановили %1$s", + "%2$s restored %1$s" : "%2$s восстановил %1$s", "%s could not be renamed as it has been deleted" : "Невозможно переименовать %s, поскольку объект удалён.", "%s could not be renamed" : "%s не может быть переименован", "Upload (max. %s)" : "Загрузка (максимум %s)", diff --git a/apps/files/l10n/ru.json b/apps/files/l10n/ru.json index 08730639b6d..21c38276b12 100644 --- a/apps/files/l10n/ru.json +++ b/apps/files/l10n/ru.json @@ -78,6 +78,19 @@ "Favorited" : "Избранное", "Favorite" : "Избранное", "An error occurred while trying to update the tags" : "Во время обновления тегов возникла ошибка", + "A new file or folder has been <strong>created</strong>" : "<strong>Создан</strong> новый файл или каталог", + "A file or folder has been <strong>changed</strong>" : "<strong>Изменён</strong> файл или каталог", + "A file or folder has been <strong>deleted</strong>" : "<strong>Удален</strong> файл или каталог", + "A file or folder has been <strong>restored</strong>" : "<strong>Восстановлен</strong> файл или каталог", + "You created %1$s" : "Вы создали %1$s", + "%2$s created %1$s" : "%2$s создано %1$s", + "%1$s was created in a public folder" : "%1$s создан в общем каталоге", + "You changed %1$s" : "Вы изменили %1$s", + "%2$s changed %1$s" : "%2$s изменил %1$s", + "You deleted %1$s" : "Вы удалили %1$s", + "%2$s deleted %1$s" : "%2$s удалил %1$s", + "You restored %1$s" : "Вы восстановили %1$s", + "%2$s restored %1$s" : "%2$s восстановил %1$s", "%s could not be renamed as it has been deleted" : "Невозможно переименовать %s, поскольку объект удалён.", "%s could not be renamed" : "%s не может быть переименован", "Upload (max. %s)" : "Загрузка (максимум %s)", diff --git a/apps/files/l10n/si_LK.js b/apps/files/l10n/si_LK.js index 9802fc8b821..17b5963a995 100644 --- a/apps/files/l10n/si_LK.js +++ b/apps/files/l10n/si_LK.js @@ -25,6 +25,10 @@ OC.L10N.register( "_%n file_::_%n files_" : ["",""], "_Uploading %n file_::_Uploading %n files_" : ["",""], "_matches '{filter}'_::_match '{filter}'_" : ["",""], + "A new file or folder has been <strong>created</strong>" : "නව ගොනුවක් හෝ බහාලුමක් <strong> නිර්මාණය කර ඇත</ strong> ", + "A file or folder has been <strong>changed</strong>" : "ගොනුවක් හෝ ෆෝල්ඩරයක් <strong>වෙනස්</strong> වී ඇත", + "A file or folder has been <strong>deleted</strong>" : "ගොනුවක් හෝ ෆෝල්ඩරයක් <strong>මකා දමා</strong> ඇත", + "A file or folder has been <strong>restored</strong>" : "ගොනුවක් හෝ ෆෝල්ඩරයක් <strong>ප්රතිස්ථාපනය</strong> කර ඇත", "File handling" : "ගොනු පරිහරණය", "Maximum upload size" : "උඩුගත කිරීමක උපරිම ප්රමාණය", "max. possible: " : "හැකි උපරිමය:", diff --git a/apps/files/l10n/si_LK.json b/apps/files/l10n/si_LK.json index 5a3f4574170..d06d4a2eaf4 100644 --- a/apps/files/l10n/si_LK.json +++ b/apps/files/l10n/si_LK.json @@ -23,6 +23,10 @@ "_%n file_::_%n files_" : ["",""], "_Uploading %n file_::_Uploading %n files_" : ["",""], "_matches '{filter}'_::_match '{filter}'_" : ["",""], + "A new file or folder has been <strong>created</strong>" : "නව ගොනුවක් හෝ බහාලුමක් <strong> නිර්මාණය කර ඇත</ strong> ", + "A file or folder has been <strong>changed</strong>" : "ගොනුවක් හෝ ෆෝල්ඩරයක් <strong>වෙනස්</strong> වී ඇත", + "A file or folder has been <strong>deleted</strong>" : "ගොනුවක් හෝ ෆෝල්ඩරයක් <strong>මකා දමා</strong> ඇත", + "A file or folder has been <strong>restored</strong>" : "ගොනුවක් හෝ ෆෝල්ඩරයක් <strong>ප්රතිස්ථාපනය</strong> කර ඇත", "File handling" : "ගොනු පරිහරණය", "Maximum upload size" : "උඩුගත කිරීමක උපරිම ප්රමාණය", "max. possible: " : "හැකි උපරිමය:", diff --git a/apps/files/l10n/sk_SK.js b/apps/files/l10n/sk_SK.js index 77c381261ba..1a7fe60800d 100644 --- a/apps/files/l10n/sk_SK.js +++ b/apps/files/l10n/sk_SK.js @@ -80,6 +80,19 @@ OC.L10N.register( "Favorited" : "Pridané k obľúbeným", "Favorite" : "Obľúbené", "An error occurred while trying to update the tags" : "Pri pokuse o aktualizáciu štítkov došlo k chybe", + "A new file or folder has been <strong>created</strong>" : "Nový súbor alebo priečinok bol <strong>vytvorený</strong>", + "A file or folder has been <strong>changed</strong>" : "Súbor alebo priečinok bol <strong>zmenený</strong>", + "A file or folder has been <strong>deleted</strong>" : "Súbor alebo priečinok bol <strong>odstránený</strong>", + "A file or folder has been <strong>restored</strong>" : "Súbor alebo priečinok bol <strong>obnovený</strong>", + "You created %1$s" : "Vytvorili ste %1$s", + "%2$s created %1$s" : "%2$s vytvoril %1$s", + "%1$s was created in a public folder" : "%1$s vytvorený vo verejnom priečinku", + "You changed %1$s" : "Zmenili ste %1$s", + "%2$s changed %1$s" : "%2$s zmenil %1$s", + "You deleted %1$s" : "Bol zmazaný %1$s", + "%2$s deleted %1$s" : "%2$s zmazal %1$s", + "You restored %1$s" : "Bol obnovený %1$s", + "%2$s restored %1$s" : "%2$s obnovil %1$s", "%s could not be renamed as it has been deleted" : "%s nebolo možné premenovať, pretože bol zmazaný", "%s could not be renamed" : "%s nemohol byť premenovaný", "Upload (max. %s)" : "Nahrať (max. %s)", diff --git a/apps/files/l10n/sk_SK.json b/apps/files/l10n/sk_SK.json index 953123dc576..b04c5ac9cd9 100644 --- a/apps/files/l10n/sk_SK.json +++ b/apps/files/l10n/sk_SK.json @@ -78,6 +78,19 @@ "Favorited" : "Pridané k obľúbeným", "Favorite" : "Obľúbené", "An error occurred while trying to update the tags" : "Pri pokuse o aktualizáciu štítkov došlo k chybe", + "A new file or folder has been <strong>created</strong>" : "Nový súbor alebo priečinok bol <strong>vytvorený</strong>", + "A file or folder has been <strong>changed</strong>" : "Súbor alebo priečinok bol <strong>zmenený</strong>", + "A file or folder has been <strong>deleted</strong>" : "Súbor alebo priečinok bol <strong>odstránený</strong>", + "A file or folder has been <strong>restored</strong>" : "Súbor alebo priečinok bol <strong>obnovený</strong>", + "You created %1$s" : "Vytvorili ste %1$s", + "%2$s created %1$s" : "%2$s vytvoril %1$s", + "%1$s was created in a public folder" : "%1$s vytvorený vo verejnom priečinku", + "You changed %1$s" : "Zmenili ste %1$s", + "%2$s changed %1$s" : "%2$s zmenil %1$s", + "You deleted %1$s" : "Bol zmazaný %1$s", + "%2$s deleted %1$s" : "%2$s zmazal %1$s", + "You restored %1$s" : "Bol obnovený %1$s", + "%2$s restored %1$s" : "%2$s obnovil %1$s", "%s could not be renamed as it has been deleted" : "%s nebolo možné premenovať, pretože bol zmazaný", "%s could not be renamed" : "%s nemohol byť premenovaný", "Upload (max. %s)" : "Nahrať (max. %s)", diff --git a/apps/files/l10n/sl.js b/apps/files/l10n/sl.js index f6d3cac7da5..564cb3d1ffc 100644 --- a/apps/files/l10n/sl.js +++ b/apps/files/l10n/sl.js @@ -79,6 +79,19 @@ OC.L10N.register( "{dirs} and {files}" : "{dirs} in {files}", "Favorited" : "Označeno kot priljubljeno", "Favorite" : "Priljubljene", + "A new file or folder has been <strong>created</strong>" : "Nova datoteka ali mapa je <strong>ustvarjena</strong>", + "A file or folder has been <strong>changed</strong>" : "Datoteka ali mapa je <strong>spremenjena</strong>.", + "A file or folder has been <strong>deleted</strong>" : "Datoteka ali mapa je <strong>izbrisana</strong>.", + "A file or folder has been <strong>restored</strong>" : "Datoteka ali mapa je <strong>obnovljena</strong>.", + "You created %1$s" : "Ustvarili ste %1$s", + "%2$s created %1$s" : "%2$s je ustvaril %1$s", + "%1$s was created in a public folder" : "Datoteka %1$s je ustvarjena v javni mapi.", + "You changed %1$s" : "Spremenili ste %1$s", + "%2$s changed %1$s" : "%2$s je spremenil %1$s", + "You deleted %1$s" : "Izbrisali ste %1$s", + "%2$s deleted %1$s" : "%2$s je izbrisal %1$s", + "You restored %1$s" : "Obnovljen je predmet %1$s", + "%2$s restored %1$s" : "Predmet %2$s je bil obnovljen %1$s.", "%s could not be renamed as it has been deleted" : "Datoteke %s ni mogoče preimenovati, ker je bila že prej izbrisana.", "%s could not be renamed" : "%s ni mogoče preimenovati", "Upload (max. %s)" : "Pošiljanje (omejitev %s)", diff --git a/apps/files/l10n/sl.json b/apps/files/l10n/sl.json index bd32a62ef46..476979aa0d3 100644 --- a/apps/files/l10n/sl.json +++ b/apps/files/l10n/sl.json @@ -77,6 +77,19 @@ "{dirs} and {files}" : "{dirs} in {files}", "Favorited" : "Označeno kot priljubljeno", "Favorite" : "Priljubljene", + "A new file or folder has been <strong>created</strong>" : "Nova datoteka ali mapa je <strong>ustvarjena</strong>", + "A file or folder has been <strong>changed</strong>" : "Datoteka ali mapa je <strong>spremenjena</strong>.", + "A file or folder has been <strong>deleted</strong>" : "Datoteka ali mapa je <strong>izbrisana</strong>.", + "A file or folder has been <strong>restored</strong>" : "Datoteka ali mapa je <strong>obnovljena</strong>.", + "You created %1$s" : "Ustvarili ste %1$s", + "%2$s created %1$s" : "%2$s je ustvaril %1$s", + "%1$s was created in a public folder" : "Datoteka %1$s je ustvarjena v javni mapi.", + "You changed %1$s" : "Spremenili ste %1$s", + "%2$s changed %1$s" : "%2$s je spremenil %1$s", + "You deleted %1$s" : "Izbrisali ste %1$s", + "%2$s deleted %1$s" : "%2$s je izbrisal %1$s", + "You restored %1$s" : "Obnovljen je predmet %1$s", + "%2$s restored %1$s" : "Predmet %2$s je bil obnovljen %1$s.", "%s could not be renamed as it has been deleted" : "Datoteke %s ni mogoče preimenovati, ker je bila že prej izbrisana.", "%s could not be renamed" : "%s ni mogoče preimenovati", "Upload (max. %s)" : "Pošiljanje (omejitev %s)", diff --git a/apps/files/l10n/sq.js b/apps/files/l10n/sq.js index eb4ca7564d9..0d29501cb8c 100644 --- a/apps/files/l10n/sq.js +++ b/apps/files/l10n/sq.js @@ -73,6 +73,19 @@ OC.L10N.register( "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." : "Kodifikimi u çaktivizua por skedarët tuaj vazhdojnë të jenë të kodifikuar. Ju lutem shkoni tek parametrat personale për të dekodifikuar skedarët tuaj.", "_matches '{filter}'_::_match '{filter}'_" : ["",""], "{dirs} and {files}" : "{dirs} dhe {files}", + "A new file or folder has been <strong>created</strong>" : "Një skedar ose një dosje e re është <strong>krijuar</strong>", + "A file or folder has been <strong>changed</strong>" : "Një skedar ose një dosje ka <strong>ndryshuar</strong>", + "A file or folder has been <strong>deleted</strong>" : "Një skedar ose një dosje është <strong>fshirë</strong>", + "A file or folder has been <strong>restored</strong>" : "Një skedar ose dosje është <strong>rikthyer</strong>", + "You created %1$s" : "Ju krijuat %1$s", + "%2$s created %1$s" : "%2$s krijuar %1$s", + "%1$s was created in a public folder" : "%1$s është krijuar në një dosje publike", + "You changed %1$s" : "Ju ndryshuat %1$s", + "%2$s changed %1$s" : "%2$s ndryshuar %1$s", + "You deleted %1$s" : "Ju fshitë %1$s", + "%2$s deleted %1$s" : "%2$s fshirë %1$s", + "You restored %1$s" : "Ju rikthyet %1$s", + "%2$s restored %1$s" : "%2$s riktheu %1$s", "%s could not be renamed as it has been deleted" : "%s nuk mund të riemërtohet sepse është fshirë", "%s could not be renamed" : "Nuk është i mundur riemërtimi i %s", "Upload (max. %s)" : "Ngarko (maks. %s)", diff --git a/apps/files/l10n/sq.json b/apps/files/l10n/sq.json index 44cc00477bd..2b8780ddc0d 100644 --- a/apps/files/l10n/sq.json +++ b/apps/files/l10n/sq.json @@ -71,6 +71,19 @@ "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." : "Kodifikimi u çaktivizua por skedarët tuaj vazhdojnë të jenë të kodifikuar. Ju lutem shkoni tek parametrat personale për të dekodifikuar skedarët tuaj.", "_matches '{filter}'_::_match '{filter}'_" : ["",""], "{dirs} and {files}" : "{dirs} dhe {files}", + "A new file or folder has been <strong>created</strong>" : "Një skedar ose një dosje e re është <strong>krijuar</strong>", + "A file or folder has been <strong>changed</strong>" : "Një skedar ose një dosje ka <strong>ndryshuar</strong>", + "A file or folder has been <strong>deleted</strong>" : "Një skedar ose një dosje është <strong>fshirë</strong>", + "A file or folder has been <strong>restored</strong>" : "Një skedar ose dosje është <strong>rikthyer</strong>", + "You created %1$s" : "Ju krijuat %1$s", + "%2$s created %1$s" : "%2$s krijuar %1$s", + "%1$s was created in a public folder" : "%1$s është krijuar në një dosje publike", + "You changed %1$s" : "Ju ndryshuat %1$s", + "%2$s changed %1$s" : "%2$s ndryshuar %1$s", + "You deleted %1$s" : "Ju fshitë %1$s", + "%2$s deleted %1$s" : "%2$s fshirë %1$s", + "You restored %1$s" : "Ju rikthyet %1$s", + "%2$s restored %1$s" : "%2$s riktheu %1$s", "%s could not be renamed as it has been deleted" : "%s nuk mund të riemërtohet sepse është fshirë", "%s could not be renamed" : "Nuk është i mundur riemërtimi i %s", "Upload (max. %s)" : "Ngarko (maks. %s)", diff --git a/apps/files/l10n/sr.js b/apps/files/l10n/sr.js index 46ce8b63ae2..c36462c1807 100644 --- a/apps/files/l10n/sr.js +++ b/apps/files/l10n/sr.js @@ -1,12 +1,20 @@ OC.L10N.register( "files", { - "Could not move %s - File with this name already exists" : "Не могу да преместим %s – датотека с овим именом већ постоји", + "Storage not available" : "Складиште није доступно", + "Storage invalid" : "Неисправно складиште", + "Unknown error" : "Непозната грешка", + "Could not move %s - File with this name already exists" : "Не могу да преместим %s – фајл овог имена већ постоји", "Could not move %s" : "Не могу да преместим %s", - "File name cannot be empty." : "Име датотеке не може бити празно.", - "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." : "Неисправан назив. Следећи знакови нису дозвољени: \\, /, <, >, :, \", |, ? и *.", - "No file was uploaded. Unknown error" : "Ниједна датотека није отпремљена услед непознате грешке", - "There is no error, the file uploaded with success" : "Није дошло до грешке. Датотека је успешно отпремљена.", + "Permission denied" : "Приступ одбијен", + "File name cannot be empty." : "Име фајла не може бити празно.", + "\"%s\" is an invalid file name." : "„%s“ није исправно име фајла.", + "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." : "Неисправно име, знакови ’\\‘, ’/‘, ’<‘, ’>‘, ’:‘, ’\"‘, ’|‘, ’?‘ и ’*‘ нису дозвољени.", + "The target folder has been moved or deleted." : "Одредишна фасцикла је померена или обрисана.", + "The name %s is already used in the folder %s. Please choose a different name." : "Име %s се већ користи у фасцикли %s. Одредите друго име.", + "Not a valid source" : "Није исправан извор", + "No file was uploaded. Unknown error" : "Ниједан фајл није отпремљен. Непозната грешка", + "There is no error, the file uploaded with success" : "Нема грешке, фајл је успешно отпремљен", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " : "Отпремљена датотека прелази смерницу upload_max_filesize у датотеци php.ini:", "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" : "Датотека је делимично отпремљена", @@ -15,8 +23,9 @@ OC.L10N.register( "Failed to write to disk" : "Не могу да пишем на диск", "Not enough storage available" : "Нема довољно простора", "Invalid directory." : "неисправна фасцикла.", - "Files" : "Датотеке", - "Home" : "Кућа", + "Files" : "Фајлови", + "All files" : "Сви фајлови", + "Home" : "Почетна", "Upload cancelled." : "Отпремање је прекинуто.", "File upload is in progress. Leaving the page now will cancel the upload." : "Отпремање датотеке је у току. Ако сада напустите страницу, прекинућете отпремање.", "{new_name} already exists" : "{new_name} већ постоји", @@ -24,32 +33,33 @@ OC.L10N.register( "Delete" : "Обриши", "Unshare" : "Укини дељење", "Download" : "Преузми", + "Select" : "Изабери", "Pending" : "На чекању", "Error" : "Грешка", "Name" : "Име", "Size" : "Величина", - "Modified" : "Измењено", - "_%n folder_::_%n folders_" : ["","",""], - "_%n file_::_%n files_" : ["","",""], - "_Uploading %n file_::_Uploading %n files_" : ["","",""], - "Your storage is full, files can not be updated or synced anymore!" : "Ваше складиште је пуно. Датотеке више не могу бити ажуриране ни синхронизоване.", - "Your storage is almost full ({usedSpacePercent}%)" : "Ваше складиште је скоро па пуно ({usedSpacePercent}%)", + "Modified" : "Измењен", + "_%n folder_::_%n folders_" : ["%n фасцикла","%n фасцикле","%n фасцикли"], + "_%n file_::_%n files_" : ["%n фајл","%n фајла","%n фајлова"], + "_Uploading %n file_::_Uploading %n files_" : ["Отпремам %n фајл","Отпремам %n фајла","Отпремам %n фајлова"], + "Your storage is full, files can not be updated or synced anymore!" : "Ваше складиште је пуно, фајлови више не могу бити ажурирани ни синхронизовани!", + "Your storage is almost full ({usedSpacePercent}%)" : "Ваше складиште је скоро пуно ({usedSpacePercent}%)", "_matches '{filter}'_::_match '{filter}'_" : ["","",""], - "File handling" : "Управљање датотекама", - "Maximum upload size" : "Највећа величина датотеке", - "max. possible: " : "највећа величина:", + "File handling" : "Руковање фајловима", + "Maximum upload size" : "Највећа величина отпремања", + "max. possible: " : "најв. величина:", "Save" : "Сачувај", "Settings" : "Поставке", - "WebDAV" : "WebDAV", - "New" : "Нова", - "Text file" : "текстуална датотека", + "WebDAV" : "ВебДАВ", + "New" : "Ново", + "Text file" : "текстуални фајл", "New folder" : "Нова фасцикла", "Folder" : "фасцикла", "From link" : "Са везе", "Upload" : "Отпреми", "Cancel upload" : "Прекини отпремање", - "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" : "Фајл је превелик", + "The files you are trying to upload exceed the maximum size for file uploads on this server." : "Фајлови које желите да отпремите прелазе ограничење у величини.", + "Files are being scanned, please wait." : "Скенирам фајлове, сачекајте." }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/apps/files/l10n/sr.json b/apps/files/l10n/sr.json index e931c8e27c8..8baafb5c127 100644 --- a/apps/files/l10n/sr.json +++ b/apps/files/l10n/sr.json @@ -1,10 +1,18 @@ { "translations": { - "Could not move %s - File with this name already exists" : "Не могу да преместим %s – датотека с овим именом већ постоји", + "Storage not available" : "Складиште није доступно", + "Storage invalid" : "Неисправно складиште", + "Unknown error" : "Непозната грешка", + "Could not move %s - File with this name already exists" : "Не могу да преместим %s – фајл овог имена већ постоји", "Could not move %s" : "Не могу да преместим %s", - "File name cannot be empty." : "Име датотеке не може бити празно.", - "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." : "Неисправан назив. Следећи знакови нису дозвољени: \\, /, <, >, :, \", |, ? и *.", - "No file was uploaded. Unknown error" : "Ниједна датотека није отпремљена услед непознате грешке", - "There is no error, the file uploaded with success" : "Није дошло до грешке. Датотека је успешно отпремљена.", + "Permission denied" : "Приступ одбијен", + "File name cannot be empty." : "Име фајла не може бити празно.", + "\"%s\" is an invalid file name." : "„%s“ није исправно име фајла.", + "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." : "Неисправно име, знакови ’\\‘, ’/‘, ’<‘, ’>‘, ’:‘, ’\"‘, ’|‘, ’?‘ и ’*‘ нису дозвољени.", + "The target folder has been moved or deleted." : "Одредишна фасцикла је померена или обрисана.", + "The name %s is already used in the folder %s. Please choose a different name." : "Име %s се већ користи у фасцикли %s. Одредите друго име.", + "Not a valid source" : "Није исправан извор", + "No file was uploaded. Unknown error" : "Ниједан фајл није отпремљен. Непозната грешка", + "There is no error, the file uploaded with success" : "Нема грешке, фајл је успешно отпремљен", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " : "Отпремљена датотека прелази смерницу upload_max_filesize у датотеци php.ini:", "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" : "Датотека је делимично отпремљена", @@ -13,8 +21,9 @@ "Failed to write to disk" : "Не могу да пишем на диск", "Not enough storage available" : "Нема довољно простора", "Invalid directory." : "неисправна фасцикла.", - "Files" : "Датотеке", - "Home" : "Кућа", + "Files" : "Фајлови", + "All files" : "Сви фајлови", + "Home" : "Почетна", "Upload cancelled." : "Отпремање је прекинуто.", "File upload is in progress. Leaving the page now will cancel the upload." : "Отпремање датотеке је у току. Ако сада напустите страницу, прекинућете отпремање.", "{new_name} already exists" : "{new_name} већ постоји", @@ -22,32 +31,33 @@ "Delete" : "Обриши", "Unshare" : "Укини дељење", "Download" : "Преузми", + "Select" : "Изабери", "Pending" : "На чекању", "Error" : "Грешка", "Name" : "Име", "Size" : "Величина", - "Modified" : "Измењено", - "_%n folder_::_%n folders_" : ["","",""], - "_%n file_::_%n files_" : ["","",""], - "_Uploading %n file_::_Uploading %n files_" : ["","",""], - "Your storage is full, files can not be updated or synced anymore!" : "Ваше складиште је пуно. Датотеке више не могу бити ажуриране ни синхронизоване.", - "Your storage is almost full ({usedSpacePercent}%)" : "Ваше складиште је скоро па пуно ({usedSpacePercent}%)", + "Modified" : "Измењен", + "_%n folder_::_%n folders_" : ["%n фасцикла","%n фасцикле","%n фасцикли"], + "_%n file_::_%n files_" : ["%n фајл","%n фајла","%n фајлова"], + "_Uploading %n file_::_Uploading %n files_" : ["Отпремам %n фајл","Отпремам %n фајла","Отпремам %n фајлова"], + "Your storage is full, files can not be updated or synced anymore!" : "Ваше складиште је пуно, фајлови више не могу бити ажурирани ни синхронизовани!", + "Your storage is almost full ({usedSpacePercent}%)" : "Ваше складиште је скоро пуно ({usedSpacePercent}%)", "_matches '{filter}'_::_match '{filter}'_" : ["","",""], - "File handling" : "Управљање датотекама", - "Maximum upload size" : "Највећа величина датотеке", - "max. possible: " : "највећа величина:", + "File handling" : "Руковање фајловима", + "Maximum upload size" : "Највећа величина отпремања", + "max. possible: " : "најв. величина:", "Save" : "Сачувај", "Settings" : "Поставке", - "WebDAV" : "WebDAV", - "New" : "Нова", - "Text file" : "текстуална датотека", + "WebDAV" : "ВебДАВ", + "New" : "Ново", + "Text file" : "текстуални фајл", "New folder" : "Нова фасцикла", "Folder" : "фасцикла", "From link" : "Са везе", "Upload" : "Отпреми", "Cancel upload" : "Прекини отпремање", - "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" : "Фајл је превелик", + "The files you are trying to upload exceed the maximum size for file uploads on this server." : "Фајлови које желите да отпремите прелазе ограничење у величини.", + "Files are being scanned, please wait." : "Скенирам фајлове, сачекајте." },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" }
\ No newline at end of file diff --git a/apps/files/l10n/sr@latin.js b/apps/files/l10n/sr@latin.js index 65aafd9d1f3..412f8fbb04e 100644 --- a/apps/files/l10n/sr@latin.js +++ b/apps/files/l10n/sr@latin.js @@ -79,6 +79,19 @@ OC.L10N.register( "{dirs} and {files}" : "{dirs} i {files}", "Favorited" : "Omiljeni", "Favorite" : "Omiljen", + "A new file or folder has been <strong>created</strong>" : "Novi fajl ili direktorijum je <strong>kreiran</strong>", + "A file or folder has been <strong>changed</strong>" : "Faj ili direktorijum je <strong>promenjen</strong>", + "A file or folder has been <strong>deleted</strong>" : "Fajl ili direktorijum je <strong>uklonjen</strong>", + "A file or folder has been <strong>restored</strong>" : "Fajl ili direktorijum je <strong>povraćen</strong>", + "You created %1$s" : "Kreirali ste %1$s", + "%2$s created %1$s" : "%2$s je kreirao %1$s", + "%1$s was created in a public folder" : "%1$s je kreiran u javnom direktorijumu", + "You changed %1$s" : "Izmenili ste %1$s", + "%2$s changed %1$s" : "%2$s je izmenio %1$s", + "You deleted %1$s" : "Obrisali ste %1$s", + "%2$s deleted %1$s" : "%2$s je obrisao %1$s", + "You restored %1$s" : "Povratili ste %1$s", + "%2$s restored %1$s" : "%2$s je povratio %1$s", "%s could not be renamed as it has been deleted" : "%s nije mogao biti preimenovan jer je obrisan.", "%s could not be renamed" : "%s nije mogao biti preimenovan", "Upload (max. %s)" : "Otpremanje (maksimalno %s)", diff --git a/apps/files/l10n/sr@latin.json b/apps/files/l10n/sr@latin.json index 2366c3fee2b..4dd43b1c108 100644 --- a/apps/files/l10n/sr@latin.json +++ b/apps/files/l10n/sr@latin.json @@ -77,6 +77,19 @@ "{dirs} and {files}" : "{dirs} i {files}", "Favorited" : "Omiljeni", "Favorite" : "Omiljen", + "A new file or folder has been <strong>created</strong>" : "Novi fajl ili direktorijum je <strong>kreiran</strong>", + "A file or folder has been <strong>changed</strong>" : "Faj ili direktorijum je <strong>promenjen</strong>", + "A file or folder has been <strong>deleted</strong>" : "Fajl ili direktorijum je <strong>uklonjen</strong>", + "A file or folder has been <strong>restored</strong>" : "Fajl ili direktorijum je <strong>povraćen</strong>", + "You created %1$s" : "Kreirali ste %1$s", + "%2$s created %1$s" : "%2$s je kreirao %1$s", + "%1$s was created in a public folder" : "%1$s je kreiran u javnom direktorijumu", + "You changed %1$s" : "Izmenili ste %1$s", + "%2$s changed %1$s" : "%2$s je izmenio %1$s", + "You deleted %1$s" : "Obrisali ste %1$s", + "%2$s deleted %1$s" : "%2$s je obrisao %1$s", + "You restored %1$s" : "Povratili ste %1$s", + "%2$s restored %1$s" : "%2$s je povratio %1$s", "%s could not be renamed as it has been deleted" : "%s nije mogao biti preimenovan jer je obrisan.", "%s could not be renamed" : "%s nije mogao biti preimenovan", "Upload (max. %s)" : "Otpremanje (maksimalno %s)", diff --git a/apps/files/l10n/sv.js b/apps/files/l10n/sv.js index 3919f6f3e4c..b46226c04dc 100644 --- a/apps/files/l10n/sv.js +++ b/apps/files/l10n/sv.js @@ -78,6 +78,19 @@ OC.L10N.register( "{dirs} and {files}" : "{dirs} och {files}", "Favorited" : "Favoritiserad", "Favorite" : "Favorit", + "A new file or folder has been <strong>created</strong>" : "En ny fil eller mapp har blivit <strong>skapad</strong>", + "A file or folder has been <strong>changed</strong>" : "En ny fil eller mapp har blivit <strong>ändrad</strong>", + "A file or folder has been <strong>deleted</strong>" : "En ny fil eller mapp har blivit <strong>raderad</strong>", + "A file or folder has been <strong>restored</strong>" : "En ny fil eller mapp har blivit <strong>återskapad</strong>", + "You created %1$s" : "Du skapade %1$s", + "%2$s created %1$s" : "%2$s skapade %1$s", + "%1$s was created in a public folder" : "%1$s skapades i en publik mapp", + "You changed %1$s" : "Du ändrade %1$s", + "%2$s changed %1$s" : "%2$s ändrade %1$s", + "You deleted %1$s" : "Du raderade %1$s", + "%2$s deleted %1$s" : "%2$s raderade %1$s", + "You restored %1$s" : "Du återkapade %1$s", + "%2$s restored %1$s" : "%2$s återskapade %1$s", "%s could not be renamed as it has been deleted" : "%s kan inte döpas om eftersom den har raderats", "%s could not be renamed" : "%s kunde inte namnändras", "Upload (max. %s)" : "Ladda upp (max. %s)", diff --git a/apps/files/l10n/sv.json b/apps/files/l10n/sv.json index 91432f89178..d186a7b8cbc 100644 --- a/apps/files/l10n/sv.json +++ b/apps/files/l10n/sv.json @@ -76,6 +76,19 @@ "{dirs} and {files}" : "{dirs} och {files}", "Favorited" : "Favoritiserad", "Favorite" : "Favorit", + "A new file or folder has been <strong>created</strong>" : "En ny fil eller mapp har blivit <strong>skapad</strong>", + "A file or folder has been <strong>changed</strong>" : "En ny fil eller mapp har blivit <strong>ändrad</strong>", + "A file or folder has been <strong>deleted</strong>" : "En ny fil eller mapp har blivit <strong>raderad</strong>", + "A file or folder has been <strong>restored</strong>" : "En ny fil eller mapp har blivit <strong>återskapad</strong>", + "You created %1$s" : "Du skapade %1$s", + "%2$s created %1$s" : "%2$s skapade %1$s", + "%1$s was created in a public folder" : "%1$s skapades i en publik mapp", + "You changed %1$s" : "Du ändrade %1$s", + "%2$s changed %1$s" : "%2$s ändrade %1$s", + "You deleted %1$s" : "Du raderade %1$s", + "%2$s deleted %1$s" : "%2$s raderade %1$s", + "You restored %1$s" : "Du återkapade %1$s", + "%2$s restored %1$s" : "%2$s återskapade %1$s", "%s could not be renamed as it has been deleted" : "%s kan inte döpas om eftersom den har raderats", "%s could not be renamed" : "%s kunde inte namnändras", "Upload (max. %s)" : "Ladda upp (max. %s)", diff --git a/apps/files/l10n/ta_IN.js b/apps/files/l10n/ta_IN.js index 72b5cd5b911..1515fcdd552 100644 --- a/apps/files/l10n/ta_IN.js +++ b/apps/files/l10n/ta_IN.js @@ -6,6 +6,15 @@ OC.L10N.register( "_%n file_::_%n files_" : ["",""], "_Uploading %n file_::_Uploading %n files_" : ["",""], "_matches '{filter}'_::_match '{filter}'_" : ["",""], + "A new file or folder has been <strong>created</strong>" : "ஒரு புதிய கோப்புறை அல்லது ஆவணம் <strong> உருவாக்கப்பட்டுள்ளது.</strong>", + "A file or folder has been <strong>changed</strong>" : "ஒரு கோப்புறை அல்லது ஆவணம் <strong>மாற்றம் செய்யப்பட்டுள்ளது.</strong>", + "A file or folder has been <strong>deleted</strong>" : "ஒரு கோப்புறை அல்லது ஆவணம் <strong> நீக்கப்பட்டுள்ளது. </strong>", + "You created %1$s" : "நீங்கள் %1$s 'ஐ உருவாக்கி உள்ளீர்கள். ", + "%2$s created %1$s" : "%2$s , %1$s 'ஐ உருவாக்கினார்.", + "You changed %1$s" : "நீங்கள் %1$s 'ல் மாற்றம் செய்து உள்ளீர்கள். ", + "%2$s changed %1$s" : "%2$s %1$s 'ல் மாற்றம் செய்துள்ளார். ", + "You deleted %1$s" : "நீங்கள் %1$s 'ஐ நீக்கி உள்ளீர்கள்.", + "%2$s deleted %1$s" : "%2$s , %1$s 'ஐ நீக்கியுள்ளார்.", "Settings" : "அமைப்புகள்", "New folder" : "புதிய கோப்புறை", "Upload" : "பதிவேற்று" diff --git a/apps/files/l10n/ta_IN.json b/apps/files/l10n/ta_IN.json index 8db012a7066..54b289a0780 100644 --- a/apps/files/l10n/ta_IN.json +++ b/apps/files/l10n/ta_IN.json @@ -4,6 +4,15 @@ "_%n file_::_%n files_" : ["",""], "_Uploading %n file_::_Uploading %n files_" : ["",""], "_matches '{filter}'_::_match '{filter}'_" : ["",""], + "A new file or folder has been <strong>created</strong>" : "ஒரு புதிய கோப்புறை அல்லது ஆவணம் <strong> உருவாக்கப்பட்டுள்ளது.</strong>", + "A file or folder has been <strong>changed</strong>" : "ஒரு கோப்புறை அல்லது ஆவணம் <strong>மாற்றம் செய்யப்பட்டுள்ளது.</strong>", + "A file or folder has been <strong>deleted</strong>" : "ஒரு கோப்புறை அல்லது ஆவணம் <strong> நீக்கப்பட்டுள்ளது. </strong>", + "You created %1$s" : "நீங்கள் %1$s 'ஐ உருவாக்கி உள்ளீர்கள். ", + "%2$s created %1$s" : "%2$s , %1$s 'ஐ உருவாக்கினார்.", + "You changed %1$s" : "நீங்கள் %1$s 'ல் மாற்றம் செய்து உள்ளீர்கள். ", + "%2$s changed %1$s" : "%2$s %1$s 'ல் மாற்றம் செய்துள்ளார். ", + "You deleted %1$s" : "நீங்கள் %1$s 'ஐ நீக்கி உள்ளீர்கள்.", + "%2$s deleted %1$s" : "%2$s , %1$s 'ஐ நீக்கியுள்ளார்.", "Settings" : "அமைப்புகள்", "New folder" : "புதிய கோப்புறை", "Upload" : "பதிவேற்று" diff --git a/apps/files/l10n/tr.js b/apps/files/l10n/tr.js index f4dfcb87a2c..dee801c56b1 100644 --- a/apps/files/l10n/tr.js +++ b/apps/files/l10n/tr.js @@ -80,6 +80,19 @@ OC.L10N.register( "Favorited" : "Sık kullanılanlara eklendi", "Favorite" : "Sık kullanılan", "An error occurred while trying to update the tags" : "Etiketler güncellenmeye çalışılırken bir hata oluştu", + "A new file or folder has been <strong>created</strong>" : "Yeni bir dosya veya klasör <strong>oluşturuldu</strong>", + "A file or folder has been <strong>changed</strong>" : "Bir dosya veya klasör <strong>değiştirildi</strong>", + "A file or folder has been <strong>deleted</strong>" : "Bir dosya veya klasör <strong>silindi</strong>", + "A file or folder has been <strong>restored</strong>" : "Bir dosya veya klasör <strong>geri alındı</strong>", + "You created %1$s" : "%1$s dosyasını oluşturdunuz", + "%2$s created %1$s" : "%2$s, %1$s dosyasını oluşturdu", + "%1$s was created in a public folder" : "%1$s herkese açık klasörde oluşturuldu", + "You changed %1$s" : "%1$s dosyasını değiştirdiniz", + "%2$s changed %1$s" : "%2$s, %1$s dosyasını değiştirdi", + "You deleted %1$s" : "%1$s dosyasını sildiniz", + "%2$s deleted %1$s" : "%2$s, %1$s dosyasını sildi", + "You restored %1$s" : "%1$s ögesini geri aldınız", + "%2$s restored %1$s" : "%2$s, %1$s ögesini geri aldı", "%s could not be renamed as it has been deleted" : "%s, silindiği için adlandırılamadı", "%s could not be renamed" : "%s yeniden adlandırılamadı", "Upload (max. %s)" : "Yükle (azami: %s)", diff --git a/apps/files/l10n/tr.json b/apps/files/l10n/tr.json index ba8312a1eb8..2e50b0f44fb 100644 --- a/apps/files/l10n/tr.json +++ b/apps/files/l10n/tr.json @@ -78,6 +78,19 @@ "Favorited" : "Sık kullanılanlara eklendi", "Favorite" : "Sık kullanılan", "An error occurred while trying to update the tags" : "Etiketler güncellenmeye çalışılırken bir hata oluştu", + "A new file or folder has been <strong>created</strong>" : "Yeni bir dosya veya klasör <strong>oluşturuldu</strong>", + "A file or folder has been <strong>changed</strong>" : "Bir dosya veya klasör <strong>değiştirildi</strong>", + "A file or folder has been <strong>deleted</strong>" : "Bir dosya veya klasör <strong>silindi</strong>", + "A file or folder has been <strong>restored</strong>" : "Bir dosya veya klasör <strong>geri alındı</strong>", + "You created %1$s" : "%1$s dosyasını oluşturdunuz", + "%2$s created %1$s" : "%2$s, %1$s dosyasını oluşturdu", + "%1$s was created in a public folder" : "%1$s herkese açık klasörde oluşturuldu", + "You changed %1$s" : "%1$s dosyasını değiştirdiniz", + "%2$s changed %1$s" : "%2$s, %1$s dosyasını değiştirdi", + "You deleted %1$s" : "%1$s dosyasını sildiniz", + "%2$s deleted %1$s" : "%2$s, %1$s dosyasını sildi", + "You restored %1$s" : "%1$s ögesini geri aldınız", + "%2$s restored %1$s" : "%2$s, %1$s ögesini geri aldı", "%s could not be renamed as it has been deleted" : "%s, silindiği için adlandırılamadı", "%s could not be renamed" : "%s yeniden adlandırılamadı", "Upload (max. %s)" : "Yükle (azami: %s)", diff --git a/apps/files/l10n/uk.js b/apps/files/l10n/uk.js index 2b7eab5cf39..3e4304db594 100644 --- a/apps/files/l10n/uk.js +++ b/apps/files/l10n/uk.js @@ -80,6 +80,19 @@ OC.L10N.register( "Favorited" : "Улюблений", "Favorite" : "Улюблений", "An error occurred while trying to update the tags" : "Виникла помилка при спробі оновити мітки", + "A new file or folder has been <strong>created</strong>" : "Новий файл або теку було <strong>створено</strong>", + "A file or folder has been <strong>changed</strong>" : "Файл або теку було <strong> змінено </strong>", + "A file or folder has been <strong>deleted</strong>" : "Файл або теку було <strong> видалено </strong>", + "A file or folder has been <strong>restored</strong>" : "Файл або теку було <strong> відновлено </strong>", + "You created %1$s" : "Вами створено %1$s", + "%2$s created %1$s" : "%2$s створено %1$s", + "%1$s was created in a public folder" : "%1$s створено у публічній теці", + "You changed %1$s" : "Вами змінено %1$s", + "%2$s changed %1$s" : "%2$s змінено %1$s", + "You deleted %1$s" : "Вами видалене %1$s", + "%2$s deleted %1$s" : "%2$s видалене %1$s", + "You restored %1$s" : "Вами відновлено %1$s", + "%2$s restored %1$s" : "%2$s відновлено %1$s", "%s could not be renamed as it has been deleted" : "%s не може бути перейменований, оскільки він видалений", "%s could not be renamed" : "%s не може бути перейменований", "Upload (max. %s)" : "Завантаження (макс. %s)", diff --git a/apps/files/l10n/uk.json b/apps/files/l10n/uk.json index c756d224352..bb2433fae90 100644 --- a/apps/files/l10n/uk.json +++ b/apps/files/l10n/uk.json @@ -78,6 +78,19 @@ "Favorited" : "Улюблений", "Favorite" : "Улюблений", "An error occurred while trying to update the tags" : "Виникла помилка при спробі оновити мітки", + "A new file or folder has been <strong>created</strong>" : "Новий файл або теку було <strong>створено</strong>", + "A file or folder has been <strong>changed</strong>" : "Файл або теку було <strong> змінено </strong>", + "A file or folder has been <strong>deleted</strong>" : "Файл або теку було <strong> видалено </strong>", + "A file or folder has been <strong>restored</strong>" : "Файл або теку було <strong> відновлено </strong>", + "You created %1$s" : "Вами створено %1$s", + "%2$s created %1$s" : "%2$s створено %1$s", + "%1$s was created in a public folder" : "%1$s створено у публічній теці", + "You changed %1$s" : "Вами змінено %1$s", + "%2$s changed %1$s" : "%2$s змінено %1$s", + "You deleted %1$s" : "Вами видалене %1$s", + "%2$s deleted %1$s" : "%2$s видалене %1$s", + "You restored %1$s" : "Вами відновлено %1$s", + "%2$s restored %1$s" : "%2$s відновлено %1$s", "%s could not be renamed as it has been deleted" : "%s не може бути перейменований, оскільки він видалений", "%s could not be renamed" : "%s не може бути перейменований", "Upload (max. %s)" : "Завантаження (макс. %s)", diff --git a/apps/files/l10n/zh_CN.js b/apps/files/l10n/zh_CN.js index f95fdd8082e..883465b6a24 100644 --- a/apps/files/l10n/zh_CN.js +++ b/apps/files/l10n/zh_CN.js @@ -78,6 +78,19 @@ OC.L10N.register( "{dirs} and {files}" : "{dirs} 和 {files}", "Favorited" : "已收藏", "Favorite" : "收藏", + "A new file or folder has been <strong>created</strong>" : "一个新的文件或文件夹已被<strong>创建</strong>", + "A file or folder has been <strong>changed</strong>" : "一个文件或文件夹已被<strong>修改</strong>", + "A file or folder has been <strong>deleted</strong>" : "一个文件或文件夹已被<strong>删除</strong>", + "A file or folder has been <strong>restored</strong>" : "一个文件或文件夹已经被 <strong>恢复</strong>", + "You created %1$s" : "您创建了%1$s", + "%2$s created %1$s" : "%2$s 创建了 %1$s", + "%1$s was created in a public folder" : "%1$s 被创建在公开文件夹中", + "You changed %1$s" : "您修改了%1$s", + "%2$s changed %1$s" : "%2$s 修改了 %1$s", + "You deleted %1$s" : "您删除了 %1$s", + "%2$s deleted %1$s" : "%2$s 删除了 %1$s", + "You restored %1$s" : "你恢复了 %1$s", + "%2$s restored %1$s" : "%2$s 恢复了 %1$s", "%s could not be renamed as it has been deleted" : "%s 已经被删除,无法重命名 ", "%s could not be renamed" : "%s 不能被重命名", "Upload (max. %s)" : "上传 (最大 %s)", diff --git a/apps/files/l10n/zh_CN.json b/apps/files/l10n/zh_CN.json index d15062c8c30..896a896337d 100644 --- a/apps/files/l10n/zh_CN.json +++ b/apps/files/l10n/zh_CN.json @@ -76,6 +76,19 @@ "{dirs} and {files}" : "{dirs} 和 {files}", "Favorited" : "已收藏", "Favorite" : "收藏", + "A new file or folder has been <strong>created</strong>" : "一个新的文件或文件夹已被<strong>创建</strong>", + "A file or folder has been <strong>changed</strong>" : "一个文件或文件夹已被<strong>修改</strong>", + "A file or folder has been <strong>deleted</strong>" : "一个文件或文件夹已被<strong>删除</strong>", + "A file or folder has been <strong>restored</strong>" : "一个文件或文件夹已经被 <strong>恢复</strong>", + "You created %1$s" : "您创建了%1$s", + "%2$s created %1$s" : "%2$s 创建了 %1$s", + "%1$s was created in a public folder" : "%1$s 被创建在公开文件夹中", + "You changed %1$s" : "您修改了%1$s", + "%2$s changed %1$s" : "%2$s 修改了 %1$s", + "You deleted %1$s" : "您删除了 %1$s", + "%2$s deleted %1$s" : "%2$s 删除了 %1$s", + "You restored %1$s" : "你恢复了 %1$s", + "%2$s restored %1$s" : "%2$s 恢复了 %1$s", "%s could not be renamed as it has been deleted" : "%s 已经被删除,无法重命名 ", "%s could not be renamed" : "%s 不能被重命名", "Upload (max. %s)" : "上传 (最大 %s)", diff --git a/apps/files/l10n/zh_HK.js b/apps/files/l10n/zh_HK.js index baac6520444..500c1feb9d4 100644 --- a/apps/files/l10n/zh_HK.js +++ b/apps/files/l10n/zh_HK.js @@ -17,6 +17,15 @@ OC.L10N.register( "_Uploading %n file_::_Uploading %n files_" : [""], "_matches '{filter}'_::_match '{filter}'_" : [""], "{dirs} and {files}" : "{dirs} 和 {files}", + "A new file or folder has been <strong>created</strong>" : "新檔案或資料夾已被 <strong> 新增 </strong>", + "A file or folder has been <strong>changed</strong>" : "檔案或資料夾已被 <strong> 變成 </strong>", + "A file or folder has been <strong>deleted</strong>" : "新檔案或資料夾已被 <strong> 刪除 </strong>", + "You created %1$s" : "你新增了%1$s", + "%2$s created %1$s" : "%2$s 新增了 %1$s", + "You changed %1$s" : "你改變了%1$s", + "%2$s changed %1$s" : "%2$s 改變了 %1$s", + "You deleted %1$s" : "你刪除了%1$s", + "%2$s deleted %1$s" : "%2$s 刪除了 %1$s", "Save" : "儲存", "Settings" : "設定", "WebDAV" : "WebDAV", diff --git a/apps/files/l10n/zh_HK.json b/apps/files/l10n/zh_HK.json index 9a3da38a217..a882312a203 100644 --- a/apps/files/l10n/zh_HK.json +++ b/apps/files/l10n/zh_HK.json @@ -15,6 +15,15 @@ "_Uploading %n file_::_Uploading %n files_" : [""], "_matches '{filter}'_::_match '{filter}'_" : [""], "{dirs} and {files}" : "{dirs} 和 {files}", + "A new file or folder has been <strong>created</strong>" : "新檔案或資料夾已被 <strong> 新增 </strong>", + "A file or folder has been <strong>changed</strong>" : "檔案或資料夾已被 <strong> 變成 </strong>", + "A file or folder has been <strong>deleted</strong>" : "新檔案或資料夾已被 <strong> 刪除 </strong>", + "You created %1$s" : "你新增了%1$s", + "%2$s created %1$s" : "%2$s 新增了 %1$s", + "You changed %1$s" : "你改變了%1$s", + "%2$s changed %1$s" : "%2$s 改變了 %1$s", + "You deleted %1$s" : "你刪除了%1$s", + "%2$s deleted %1$s" : "%2$s 刪除了 %1$s", "Save" : "儲存", "Settings" : "設定", "WebDAV" : "WebDAV", diff --git a/apps/files/l10n/zh_TW.js b/apps/files/l10n/zh_TW.js index 817681e828d..3419fd21459 100644 --- a/apps/files/l10n/zh_TW.js +++ b/apps/files/l10n/zh_TW.js @@ -76,6 +76,19 @@ OC.L10N.register( "_matches '{filter}'_::_match '{filter}'_" : [""], "{dirs} and {files}" : "{dirs} 和 {files}", "Favorite" : "我的最愛", + "A new file or folder has been <strong>created</strong>" : "新的檔案或目錄已被 <strong>建立</strong>", + "A file or folder has been <strong>changed</strong>" : "檔案或目錄已被 <strong>變更</strong>", + "A file or folder has been <strong>deleted</strong>" : "檔案或目錄已被 <strong>刪除</strong>", + "A file or folder has been <strong>restored</strong>" : "檔案或目錄已被 <strong>恢復</strong>", + "You created %1$s" : "您建立了 %1$s", + "%2$s created %1$s" : "%2$s 已建立 %1$s", + "%1$s was created in a public folder" : "%1$s 已建立於公開的目錄", + "You changed %1$s" : "您變更了 %1$s", + "%2$s changed %1$s" : "%2$s 已變更了 %1$s", + "You deleted %1$s" : "您刪除了 %1$s", + "%2$s deleted %1$s" : "%2$s 已刪除 %1$s", + "You restored %1$s" : "您恢復了 %1$s", + "%2$s restored %1$s" : "%2$s 已恢復了 %1$s", "%s could not be renamed as it has been deleted" : "%s 已經被刪除了所以無法重新命名", "%s could not be renamed" : "無法重新命名 %s", "Upload (max. %s)" : "上傳(至多 %s)", diff --git a/apps/files/l10n/zh_TW.json b/apps/files/l10n/zh_TW.json index c043e06b4de..0c43aa73d5a 100644 --- a/apps/files/l10n/zh_TW.json +++ b/apps/files/l10n/zh_TW.json @@ -74,6 +74,19 @@ "_matches '{filter}'_::_match '{filter}'_" : [""], "{dirs} and {files}" : "{dirs} 和 {files}", "Favorite" : "我的最愛", + "A new file or folder has been <strong>created</strong>" : "新的檔案或目錄已被 <strong>建立</strong>", + "A file or folder has been <strong>changed</strong>" : "檔案或目錄已被 <strong>變更</strong>", + "A file or folder has been <strong>deleted</strong>" : "檔案或目錄已被 <strong>刪除</strong>", + "A file or folder has been <strong>restored</strong>" : "檔案或目錄已被 <strong>恢復</strong>", + "You created %1$s" : "您建立了 %1$s", + "%2$s created %1$s" : "%2$s 已建立 %1$s", + "%1$s was created in a public folder" : "%1$s 已建立於公開的目錄", + "You changed %1$s" : "您變更了 %1$s", + "%2$s changed %1$s" : "%2$s 已變更了 %1$s", + "You deleted %1$s" : "您刪除了 %1$s", + "%2$s deleted %1$s" : "%2$s 已刪除 %1$s", + "You restored %1$s" : "您恢復了 %1$s", + "%2$s restored %1$s" : "%2$s 已恢復了 %1$s", "%s could not be renamed as it has been deleted" : "%s 已經被刪除了所以無法重新命名", "%s could not be renamed" : "無法重新命名 %s", "Upload (max. %s)" : "上傳(至多 %s)", diff --git a/apps/files/lib/activity.php b/apps/files/lib/activity.php new file mode 100644 index 00000000000..be7acbc3c07 --- /dev/null +++ b/apps/files/lib/activity.php @@ -0,0 +1,278 @@ +<?php +/** + * ownCloud - Files Activity Extension + * + * @author Joas Schilling + * @copyright 2015 Joas Schilling nickvergessen@owncloud.com + * + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OCA\Files; + +use OC\L10N\Factory; +use OCP\Activity\IExtension; +use OCP\IL10N; +use OCP\IURLGenerator; + +class Activity implements IExtension { + const FILTER_FILES = 'files'; + + const TYPE_SHARE_CREATED = 'file_created'; + const TYPE_SHARE_CHANGED = 'file_changed'; + const TYPE_SHARE_DELETED = 'file_deleted'; + const TYPE_SHARE_RESTORED = 'file_restored'; + + /** @var IL10N */ + protected $l; + + /** @var Factory */ + protected $languageFactory; + + /** @var IURLGenerator */ + protected $URLGenerator; + + /** + * @param Factory $languageFactory + * @param IURLGenerator $URLGenerator + */ + public function __construct(Factory $languageFactory, IURLGenerator $URLGenerator) { + $this->languageFactory = $languageFactory; + $this->URLGenerator = $URLGenerator; + $this->l = $this->getL10N(); + } + + /** + * @param string|null $languageCode + * @return IL10N + */ + protected function getL10N($languageCode = null) { + return $this->languageFactory->get('files', $languageCode); + } + + /** + * The extension can return an array of additional notification types. + * If no additional types are to be added false is to be returned + * + * @param string $languageCode + * @return array|false + */ + public function getNotificationTypes($languageCode) { + $l = $this->getL10N($languageCode); + return [ + self::TYPE_SHARE_CREATED => (string) $l->t('A new file or folder has been <strong>created</strong>'), + self::TYPE_SHARE_CHANGED => (string) $l->t('A file or folder has been <strong>changed</strong>'), + self::TYPE_SHARE_DELETED => (string) $l->t('A file or folder has been <strong>deleted</strong>'), + self::TYPE_SHARE_RESTORED => (string) $l->t('A file or folder has been <strong>restored</strong>'), + ]; + } + + /** + * For a given method additional types to be displayed in the settings can be returned. + * In case no additional types are to be added false is to be returned. + * + * @param string $method + * @return array|false + */ + public function getDefaultTypes($method) { + if ($method === 'stream') { + $settings = array(); + $settings[] = self::TYPE_SHARE_CREATED; + $settings[] = self::TYPE_SHARE_CHANGED; + $settings[] = self::TYPE_SHARE_DELETED; + $settings[] = self::TYPE_SHARE_RESTORED; + return $settings; + } + + return false; + } + + /** + * The extension can translate a given message to the requested languages. + * If no translation is available false is to be returned. + * + * @param string $app + * @param string $text + * @param array $params + * @param boolean $stripPath + * @param boolean $highlightParams + * @param string $languageCode + * @return string|false + */ + public function translate($app, $text, $params, $stripPath, $highlightParams, $languageCode) { + if ($app !== 'files') { + return false; + } + + switch ($text) { + case 'created_self': + return (string) $this->l->t('You created %1$s', $params); + case 'created_by': + return (string) $this->l->t('%2$s created %1$s', $params); + case 'created_public': + return (string) $this->l->t('%1$s was created in a public folder', $params); + case 'changed_self': + return (string) $this->l->t('You changed %1$s', $params); + case 'changed_by': + return (string) $this->l->t('%2$s changed %1$s', $params); + case 'deleted_self': + return (string) $this->l->t('You deleted %1$s', $params); + case 'deleted_by': + return (string) $this->l->t('%2$s deleted %1$s', $params); + case 'restored_self': + return (string) $this->l->t('You restored %1$s', $params); + case 'restored_by': + return (string) $this->l->t('%2$s restored %1$s', $params); + + default: + return false; + } + } + + /** + * The extension can define the type of parameters for translation + * + * Currently known types are: + * * file => will strip away the path of the file and add a tooltip with it + * * username => will add the avatar of the user + * + * @param string $app + * @param string $text + * @return array|false + */ + function getSpecialParameterList($app, $text) { + if ($app === 'files') { + switch ($text) { + case 'created_self': + case 'created_by': + case 'created_public': + case 'changed_self': + case 'changed_by': + case 'deleted_self': + case 'deleted_by': + case 'restored_self': + case 'restored_by': + return [ + 0 => 'file', + 1 => 'username', + ]; + } + } + + return false; + } + + /** + * A string naming the css class for the icon to be used can be returned. + * If no icon is known for the given type false is to be returned. + * + * @param string $type + * @return string|false + */ + public function getTypeIcon($type) { + switch ($type) { + case self::TYPE_SHARE_CHANGED: + return 'icon-change'; + case self::TYPE_SHARE_CREATED: + return 'icon-add-color'; + case self::TYPE_SHARE_DELETED: + return 'icon-delete-color'; + + default: + return false; + } + } + + /** + * The extension can define the parameter grouping by returning the index as integer. + * In case no grouping is required false is to be returned. + * + * @param array $activity + * @return integer|false + */ + public function getGroupParameter($activity) { + if ($activity['app'] === 'files') { + switch ($activity['subject']) { + case 'created_self': + case 'created_by': + case 'changed_self': + case 'changed_by': + case 'deleted_self': + case 'deleted_by': + case 'restored_self': + case 'restored_by': + return 0; + } + } + + return false; + } + + /** + * The extension can define additional navigation entries. The array returned has to contain two keys 'top' + * and 'apps' which hold arrays with the relevant entries. + * If no further entries are to be added false is no be returned. + * + * @return array|false + */ + public function getNavigation() { + return [ + 'apps' => [ + self::FILTER_FILES => [ + 'id' => self::FILTER_FILES, + 'name' => (string) $this->l->t('Files'), + 'url' => $this->URLGenerator->linkToRoute('activity.Activities.showList', ['filter' => self::FILTER_FILES]), + ], + ], + 'top' => [], + ]; + } + + /** + * The extension can check if a customer filter (given by a query string like filter=abc) is valid or not. + * + * @param string $filterValue + * @return boolean + */ + public function isFilterValid($filterValue) { + return $filterValue === self::FILTER_FILES; + } + + /** + * The extension can filter the types based on the filter if required. + * In case no filter is to be applied false is to be returned unchanged. + * + * @param array $types + * @param string $filter + * @return array|false + */ + public function filterNotificationTypes($types, $filter) { + if ($filter === self::FILTER_FILES) { + return array_intersect([ + self::TYPE_SHARE_CREATED, + self::TYPE_SHARE_CHANGED, + self::TYPE_SHARE_DELETED, + self::TYPE_SHARE_RESTORED, + ], $types); + } + return false; + } + + /** + * For a given filter the extension can specify the sql query conditions including parameters for that query. + * In case the extension does not know the filter false is to be returned. + * The query condition and the parameters are to be returned as array with two elements. + * E.g. return array('`app` = ? and `message` like ?', array('mail', 'ownCloud%')); + * + * @param string $filter + * @return array|false + */ + public function getQueryForFilter($filter) { + if ($filter === self::FILTER_FILES) { + return ['`app` = ?', ['files']]; + } + return false; + } +} diff --git a/apps/files/tests/js/breadcrumbSpec.js b/apps/files/tests/js/breadcrumbSpec.js index 30784fd70ad..a26f0176f15 100644 --- a/apps/files/tests/js/breadcrumbSpec.js +++ b/apps/files/tests/js/breadcrumbSpec.js @@ -93,6 +93,31 @@ describe('OCA.Files.BreadCrumb tests', function() { expect($crumbs.eq(3).find('img').length).toEqual(0); expect($crumbs.eq(3).attr('data-dir')).toEqual('/somedir/with space/abc'); }); + it('Renders backslashes as regular directory separator', function() { + var $crumbs; + bc.setDirectory('/somedir\\with/mixed\\separators'); + $crumbs = bc.$el.find('.crumb'); + expect($crumbs.length).toEqual(5); + expect($crumbs.eq(0).find('a').attr('href')).toEqual('/#0'); + expect($crumbs.eq(0).find('img').length).toEqual(1); + expect($crumbs.eq(0).attr('data-dir')).toEqual('/'); + + expect($crumbs.eq(1).find('a').attr('href')).toEqual('/somedir#1'); + expect($crumbs.eq(1).find('img').length).toEqual(0); + expect($crumbs.eq(1).attr('data-dir')).toEqual('/somedir'); + + expect($crumbs.eq(2).find('a').attr('href')).toEqual('/somedir/with#2'); + expect($crumbs.eq(2).find('img').length).toEqual(0); + expect($crumbs.eq(2).attr('data-dir')).toEqual('/somedir/with'); + + expect($crumbs.eq(3).find('a').attr('href')).toEqual('/somedir/with/mixed#3'); + expect($crumbs.eq(3).find('img').length).toEqual(0); + expect($crumbs.eq(3).attr('data-dir')).toEqual('/somedir/with/mixed'); + + expect($crumbs.eq(4).find('a').attr('href')).toEqual('/somedir/with/mixed/separators#4'); + expect($crumbs.eq(4).find('img').length).toEqual(0); + expect($crumbs.eq(4).attr('data-dir')).toEqual('/somedir/with/mixed/separators'); + }); }); describe('Events', function() { it('Calls onClick handler when clicking on a crumb', function() { diff --git a/apps/files/tests/js/filelistSpec.js b/apps/files/tests/js/filelistSpec.js index 59e3f8a9d4e..d44365f6351 100644 --- a/apps/files/tests/js/filelistSpec.js +++ b/apps/files/tests/js/filelistSpec.js @@ -1221,7 +1221,7 @@ describe('OCA.Files.FileList tests', function() { "Content-Type": "application/json" }, JSON.stringify(data) - ]); + ]); }); it('fetches file list from server and renders it when reload() is called', function() { fileList.reload(); @@ -1242,6 +1242,10 @@ describe('OCA.Files.FileList tests', function() { expect(OC.parseQueryString(query)).toEqual({'dir': '/anothersubdir', sort: 'name', sortdirection: 'asc'}); fakeServer.respond(); }); + it('converts backslashes to slashes when calling changeDirectory()', function() { + fileList.changeDirectory('/another\\subdir'); + expect(fileList.getCurrentDirectory()).toEqual('/another/subdir'); + }); it('switches to root dir when current directory does not exist', function() { fakeServer.respondWith(/\/index\.php\/apps\/files\/ajax\/list.php\?dir=%2funexist/, [ 404, { |