diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-05-28 20:42:08 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-05-28 20:42:08 +0200 |
commit | 863139c1e24719df4c3bbbefabb5173bc93672d9 (patch) | |
tree | a339b27a869abd5157054d578234341d124b541e | |
parent | 7f83829db3d74c2570903e7501ba513770e46abf (diff) | |
parent | cdbf472c4d9646f00623fb120e9bde6087831b20 (diff) | |
download | nextcloud-server-863139c1e24719df4c3bbbefabb5173bc93672d9.tar.gz nextcloud-server-863139c1e24719df4c3bbbefabb5173bc93672d9.zip |
Merge pull request #16585 from mmattel/Missing_translation_in_External_storage_back_end
Make string 'SFTP with secret key login' translateable
-rw-r--r-- | apps/files_external/appinfo/app.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/appinfo/app.php b/apps/files_external/appinfo/app.php index 8fa0d0b5223..cc64e298b96 100644 --- a/apps/files_external/appinfo/app.php +++ b/apps/files_external/appinfo/app.php @@ -227,7 +227,7 @@ OC_Mount_Config::registerBackend('\OC\Files\Storage\SFTP', [ ]); OC_Mount_Config::registerBackend('\OC\Files\Storage\SFTP_Key', [ - 'backend' => 'SFTP with secret key login', + 'backend' => (string)$l->t('SFTP with secret key login'), 'priority' => 100, 'configuration' => array( 'host' => (string)$l->t('Host'), |