diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2013-10-21 23:15:21 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2013-10-21 23:15:21 +0200 |
commit | 76a195a0be5d36c090c05ce60e02466e9783fea3 (patch) | |
tree | 6d6ef9f79bf1adce61187cb7d0a4ca538b85bd00 /apps/user_ldap/ajax/wizard.php | |
parent | 17010e8f587dc2e822660da342b3dc64475f8f41 (diff) | |
download | nextcloud-server-76a195a0be5d36c090c05ce60e02466e9783fea3.tar.gz nextcloud-server-76a195a0be5d36c090c05ce60e02466e9783fea3.zip |
LDAP Wizard: l10n improvements
Diffstat (limited to 'apps/user_ldap/ajax/wizard.php')
-rw-r--r-- | apps/user_ldap/ajax/wizard.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/user_ldap/ajax/wizard.php b/apps/user_ldap/ajax/wizard.php index c90efdf7e9e..e580c097867 100644 --- a/apps/user_ldap/ajax/wizard.php +++ b/apps/user_ldap/ajax/wizard.php @@ -82,7 +82,8 @@ switch($action) { $setParameters = array(); $configuration->setConfiguration($cfg, $setParameters); if(!in_array($key, $setParameters)) { - \OCP\JSON::error(array('message' => $l->t($key.' Could not set configuration '.$setParameters[0]))); + \OCP\JSON::error(array('message' => $l->t($key. + ' Could not set configuration %s', $setParameters[0]))); exit; } $configuration->saveConfiguration(); |