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:
authorChristopher Ng <chrng8@gmail.com>2022-07-06 20:19:02 +0300
committerbackportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com>2022-07-07 11:26:52 +0300
commiteec59e10b600d06a6beb0e4260dbbecd59c418a6 (patch)
tree254fd3cf10ebaf70060faa6b6ef16f65c5bd5a18 /apps/files_trashbin
parent5840c121637a2804fc436e1c71cf11f8cab4a2ff (diff)
Fix trashbin expiration notice casing
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'apps/files_trashbin')
-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)');
}
}