From 839ddaa3547bb0042b6225edf2df7bff1831cdd5 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 21 Sep 2022 17:44:32 +0200 Subject: feat: rename users to account or person Replace translated text in most locations Signed-off-by: Vincent Petry --- apps/files_versions/lib/Command/ExpireVersions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/files_versions/lib') diff --git a/apps/files_versions/lib/Command/ExpireVersions.php b/apps/files_versions/lib/Command/ExpireVersions.php index d8e59b40dba..24cc6a896d5 100644 --- a/apps/files_versions/lib/Command/ExpireVersions.php +++ b/apps/files_versions/lib/Command/ExpireVersions.php @@ -50,7 +50,7 @@ class ExpireVersions extends Command { ->addArgument( 'user_id', InputArgument::OPTIONAL | InputArgument::IS_ARRAY, - 'expire file versions of the given user(s), if no user is given file versions for all users will be expired.' + 'expire file versions of the given account(s), if no account is given file versions for all accounts will be expired.' ); } @@ -65,7 +65,7 @@ class ExpireVersions extends Command { if (!empty($users)) { foreach ($users as $user) { if (!$this->userManager->userExists($user)) { - $output->writeln("Unknown user $user"); + $output->writeln("Unknown account $user"); return self::FAILURE; } -- cgit v1.2.3