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
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2018-10-09 15:32:14 +0300
committerJoas Schilling <coding@schilljs.com>2018-10-09 15:32:14 +0300
commitea21aa3f7a12c5d1bd80eea329de3eb695fde4e5 (patch)
tree7ff489b7990d01a699dbdf43d1b5ab0bc27b4916 /apps/admin_audit
parentea411ccec4095e155755b4edf76fd1490e509e5d (diff)
Use numeric placeholders if there are multiple, so that RTL languages can operate better
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/admin_audit')
-rw-r--r--apps/admin_audit/lib/Actions/AppManagement.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/admin_audit/lib/Actions/AppManagement.php b/apps/admin_audit/lib/Actions/AppManagement.php
index 7831c850a89..24656fe6de3 100644
--- a/apps/admin_audit/lib/Actions/AppManagement.php
+++ b/apps/admin_audit/lib/Actions/AppManagement.php
@@ -41,7 +41,7 @@ class AppManagement extends Action {
* @param string[] $groups
*/
public function enableAppForGroups(string $appName, array $groups) {
- $this->log('App "%s" enabled for groups: %s',
+ $this->log('App "%1$s" enabled for groups: %2$s',
['app' => $appName, 'groups' => implode(', ', $groups)],
['app', 'groups']
);