diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-10-09 16:31:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-09 16:31:52 +0200 |
commit | ab3599155f9b51cc17fca188f48269aeb44f9462 (patch) | |
tree | 030922d11135677bd059f7b9031bdd4d8e73299d /apps/files_external | |
parent | 031add6acc2082c59b1841a1152fc9df3ca914f8 (diff) | |
parent | ea21aa3f7a12c5d1bd80eea329de3eb695fde4e5 (diff) | |
download | nextcloud-server-ab3599155f9b51cc17fca188f48269aeb44f9462.tar.gz nextcloud-server-ab3599155f9b51cc17fca188f48269aeb44f9462.zip |
Merge pull request #11716 from nextcloud/bugfix/noid/use-numeric-placeholders-for-rtl-translations
Use numeric placeholders if there are multiple, so that RTL languages…
Diffstat (limited to 'apps/files_external')
-rw-r--r-- | apps/files_external/lib/config.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index a1e7d12bcae..7fb118c2de5 100644 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -324,7 +324,7 @@ class OC_Mount_Config { case 'ftp': return (string)$l->t('The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it.', [$backend]); default: - return (string)$l->t('"%s" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it.', [$module, $backend]); + return (string)$l->t('"%1$s" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it.', [$module, $backend]); } } |