diff options
author | szaimen <szaimen@e.mail.de> | 2021-05-20 12:13:04 +0200 |
---|---|---|
committer | szaimen <szaimen@e.mail.de> | 2021-05-20 12:13:04 +0200 |
commit | 35d978c2fca0b4ae7961e44a3a9e1a4f77fad6dc (patch) | |
tree | 9ab67411941c1ae6ac456e0ec879f1e1852b40fa /lib | |
parent | 7ffee26aa8768736593c77dcb12d17978a6e06b2 (diff) | |
download | nextcloud-server-35d978c2fca0b4ae7961e44a3a9e1a4f77fad6dc.tar.gz nextcloud-server-35d978c2fca0b4ae7961e44a3a9e1a4f77fad6dc.zip |
Rename External storages to External storage
Signed-off-by: szaimen <szaimen@e.mail.de>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Share20/Manager.php | 2 | ||||
-rw-r--r-- | lib/private/Streamer.php | 2 | ||||
-rw-r--r-- | lib/public/Files/Config/IUserMountCache.php | 2 | ||||
-rw-r--r-- | lib/public/Files/Mount/IMountPoint.php | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/lib/private/Share20/Manager.php b/lib/private/Share20/Manager.php index 70facc442c5..983653b7661 100644 --- a/lib/private/Share20/Manager.php +++ b/lib/private/Share20/Manager.php @@ -1665,7 +1665,7 @@ class Manager implements IManager { return $al; } - //Get node for the owner and correct the owner in case of external storages + //Get node for the owner and correct the owner in case of external storage $userFolder = $this->rootFolder->getUserFolder($owner); if ($path->getId() !== $userFolder->getId() && !$userFolder->isSubNode($path)) { $nodes = $userFolder->getById($path->getId()); diff --git a/lib/private/Streamer.php b/lib/private/Streamer.php index 0e3018f77b7..e76ad2afee3 100644 --- a/lib/private/Streamer.php +++ b/lib/private/Streamer.php @@ -78,7 +78,7 @@ class Streamer { * larger than 4GiB), but it should not happen in the real world. * * We also have to check for a size above 0. As negative sizes could be - * from not fully scanned external storages. And then things fall apart + * from not fully scanned external storage. And then things fall apart * if somebody tries to package to much. */ if ($size > 0 && $size < 4 * 1000 * 1000 * 1000 && $numberOfFiles < 65536) { diff --git a/lib/public/Files/Config/IUserMountCache.php b/lib/public/Files/Config/IUserMountCache.php index cdb95078bc8..763dd1edca6 100644 --- a/lib/public/Files/Config/IUserMountCache.php +++ b/lib/public/Files/Config/IUserMountCache.php @@ -111,7 +111,7 @@ interface IUserMountCache { * Get the used space for users * * Note that this only includes the space in their home directory, - * not any incoming shares or external storages. + * not any incoming shares or external storage. * * @param IUser[] $users * @return int[] [$userId => $userSpace] diff --git a/lib/public/Files/Mount/IMountPoint.php b/lib/public/Files/Mount/IMountPoint.php index 51a5fbade48..4c424d63438 100644 --- a/lib/public/Files/Mount/IMountPoint.php +++ b/lib/public/Files/Mount/IMountPoint.php @@ -121,7 +121,7 @@ interface IMountPoint { public function getMountId(); /** - * Get the type of mount point, used to distinguish things like shares and external storages + * Get the type of mount point, used to distinguish things like shares and external storage * in the web interface * * @return string |