diff --git a/apps/files/lib/Service/OwnershipTransferService.php b/apps/files/lib/Service/OwnershipTransferService.php index 8955c2062b..7c06096a8a 100644 --- a/apps/files/lib/Service/OwnershipTransferService.php +++ b/apps/files/lib/Service/OwnershipTransferService.php @@ -83,7 +83,7 @@ class OwnershipTransferService { // target user has to be ready if (!$this->encryptionManager->isReadyForUser($destinationUid)) { - throw new TransferOwnershipException("The target user is not ready to accept files. The user has at least to be logged in once.", 2); + throw new TransferOwnershipException("The target user is not ready to accept files. The user has at least to have logged in once.", 2); } $date = date('Y-m-d H-i-s'); @@ -156,8 +156,8 @@ class OwnershipTransferService { $size = $view->getFileInfo($sourcePath, false)->getSize(false); $freeSpace = $view->free_space($destinationUid . '/files/'); if ($size > $freeSpace) { - $output->writeln('Target user does not have enough free space available'); - throw new \Exception('Execution terminated'); + $output->writeln('Target user does not have enough free space available.'); + throw new \Exception('Execution terminated.'); } $output->writeln("Analysing files of $sourceUid ..."); @@ -185,7 +185,7 @@ class OwnershipTransferService { // no file is allowed to be encrypted if (!empty($encryptedFiles)) { - $output->writeln("Some files are encrypted - please decrypt them first"); + $output->writeln("Some files are encrypted - please decrypt them first."); foreach ($encryptedFiles as $encryptedFile) { /** @var FileInfo $encryptedFile */ $output->writeln(" " . $encryptedFile->getPath()); @@ -196,7 +196,7 @@ class OwnershipTransferService { private function collectUsersShares(string $sourceUid, OutputInterface $output): array { - $output->writeln("Collecting all share information for files and folder of $sourceUid ..."); + $output->writeln("Collecting all share information for files and folders of $sourceUid ..."); $shares = []; $progress = new ProgressBar($output); @@ -235,7 +235,7 @@ class OwnershipTransferService { $finalTarget = $finalTarget . '/' . basename($sourcePath); } if ($view->rename($sourcePath, $finalTarget) === false) { - throw new TransferOwnershipException("Could not transfer files", 1); + throw new TransferOwnershipException("Could not transfer files.", 1); } if (!is_dir("$sourceUid/files")) { // because the files folder is moved away we need to recreate it diff --git a/apps/files/src/components/TransferOwnershipDialogue.vue b/apps/files/src/components/TransferOwnershipDialogue.vue index 3ee09adb23..6cda80b874 100644 --- a/apps/files/src/components/TransferOwnershipDialogue.vue +++ b/apps/files/src/components/TransferOwnershipDialogue.vue @@ -23,15 +23,15 @@

{{ t('files', 'Transfer ownership') }}

- {{ t('files', 'Here you can select a directory that is transferred to another user. It may take some time until the process is done.') }} + {{ t('files', 'Select a file or directory to be transferred to another user. It may take some time until the process is done.') }}

  1. - {{ t('files', 'Directory to move') }} + {{ t('files', 'File or directory be transferred') }}
    - {{ t('files', 'No directory selected') }} + {{ t('files', 'Nothing selected') }} {{ directory }}