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
path: root/lib
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2021-12-16 18:28:58 +0300
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2021-12-16 21:22:04 +0300
commit1ec793ab2b1d20964ecee7995617b6ea8c2e2719 (patch)
treee52dcdab049187a80055afec7244e5fdb07c6342 /lib
parent7f632684619e8973b62c79ff1175bdca9b07d01b (diff)
fix translation source in directEditing templates
The 'Empty file' string is translated in `lib` - not in `core`. Signed-off-by: Azul <azul@riseup.net>
Diffstat (limited to 'lib')
-rw-r--r--lib/private/DirectEditing/Manager.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/DirectEditing/Manager.php b/lib/private/DirectEditing/Manager.php
index 543f1e5adb7..e6efc6d28aa 100644
--- a/lib/private/DirectEditing/Manager.php
+++ b/lib/private/DirectEditing/Manager.php
@@ -82,7 +82,7 @@ class Manager implements IManager {
$this->connection = $connection;
$this->userId = $userSession->getUser() ? $userSession->getUser()->getUID() : null;
$this->rootFolder = $rootFolder;
- $this->l10n = $l10nFactory->get('core');
+ $this->l10n = $l10nFactory->get('lib');
$this->encryptionManager = $encryptionManager;
}