From 09f774a61faaeb7fc60f6d7a8f24304c44dc1617 Mon Sep 17 00:00:00 2001 From: Edward Ly Date: Mon, 1 Dec 2025 12:53:45 -0800 Subject: [PATCH] fix(s3): rename 'Amazon S3' to 'S3 Storage' The current name may be confusing to users who take advantage of other S3-compatible storage solutions not offered by Amazon, so a more generic name is preferred here. Signed-off-by: Edward Ly --- apps/files_external/lib/Lib/Backend/AmazonS3.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_external/lib/Lib/Backend/AmazonS3.php b/apps/files_external/lib/Lib/Backend/AmazonS3.php index 464b03b55e0f4..0da93ad0d509e 100644 --- a/apps/files_external/lib/Lib/Backend/AmazonS3.php +++ b/apps/files_external/lib/Lib/Backend/AmazonS3.php @@ -21,7 +21,7 @@ public function __construct(IL10N $l, AccessKey $legacyAuth) { ->setIdentifier('amazons3') ->addIdentifierAlias('\OC\Files\Storage\AmazonS3') // legacy compat ->setStorageClass('\OCA\Files_External\Lib\Storage\AmazonS3') - ->setText($l->t('Amazon S3')) + ->setText($l->t('S3 Storage')) ->addParameters([ new DefinitionParameter('bucket', $l->t('Bucket')), (new DefinitionParameter('hostname', $l->t('Hostname')))