Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2022-07-07 11:23:42 +0300
committerGitHub <noreply@github.com>2022-07-07 11:23:42 +0300
commitff55382c66634fb8a4135039f74cf534d6a3a8eb (patch)
treea2d07beb3a4efe8e8af398f0b4354bcac80b0400
parentb51cb233816bc46902834e068975c5e2bad2c188 (diff)
parent667b671c5a968854ad142f9d53b07b411ba66410 (diff)
Merge pull request #33140 from nextcloud/fix/trashbin-expiration-notice-casing
-rw-r--r--apps/files_trashbin/lib/UserMigration/TrashbinMigrator.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_trashbin/lib/UserMigration/TrashbinMigrator.php b/apps/files_trashbin/lib/UserMigration/TrashbinMigrator.php
index 4652aafa4a1..70338a469d3 100644
--- a/apps/files_trashbin/lib/UserMigration/TrashbinMigrator.php
+++ b/apps/files_trashbin/lib/UserMigration/TrashbinMigrator.php
@@ -176,6 +176,6 @@ class TrashbinMigrator implements IMigrator, ISizeEstimationMigrator {
* {@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)');
}
}