Parcourir la source

fix translation source in directEditing templates

The 'Empty file' string is translated in `lib` - not in `core`.

Signed-off-by: Azul <azul@riseup.net>
Azul il y a 2 ans
Parent
commit
8535dc4255
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      lib/private/DirectEditing/Manager.php

+ 1 - 1
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;
 	}