From 667b671c5a968854ad142f9d53b07b411ba66410 Mon Sep 17 00:00:00 2001 From: Christopher Ng Date: Wed, 6 Jul 2022 17:19:02 +0000 Subject: [PATCH] Fix trashbin expiration notice casing Signed-off-by: Christopher Ng --- apps/files_trashbin/lib/UserMigration/TrashbinMigrator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_trashbin/lib/UserMigration/TrashbinMigrator.php b/apps/files_trashbin/lib/UserMigration/TrashbinMigrator.php index 4652aafa4a18f..70338a469d3a7 100644 --- a/apps/files_trashbin/lib/UserMigration/TrashbinMigrator.php +++ b/apps/files_trashbin/lib/UserMigration/TrashbinMigrator.php @@ -176,6 +176,6 @@ public function getDisplayName(): string { * {@inheritDoc} */ public function getDescription(): string { - return $this->l10n->t('Deleted files and folders in the trash bin (May expire during export if you are low on storage space)'); + return $this->l10n->t('Deleted files and folders in the trash bin (may expire during export if you are low on storage space)'); } }