-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Rename users to account or person #34178
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
Replace translated text in most locations Signed-off-by: Vincent Petry <[email protected]>
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -397,7 +397,7 @@ public function testCreateShareWithSelf() { | |
| $share = $this->provider->create($share); | ||
| $this->fail(); | ||
| } catch (\Exception $e) { | ||
| $this->assertEquals('Not allowed to create a federated share with the same user', $e->getMessage()); | ||
| $this->assertEquals('Not allowed to create a federated share to the same account', $e->getMessage()); | ||
| } | ||
|
|
||
| $qb = $this->connection->getQueryBuilder(); | ||
|
|
@@ -459,7 +459,7 @@ public function testCreateAlreadyShared() { | |
| try { | ||
| $this->provider->create($share); | ||
| } catch (\Exception $e) { | ||
| $this->assertEquals('Sharing myFile failed, because this item is already shared with user [email protected]', $e->getMessage()); | ||
| $this->assertEquals('Sharing myFile failed, because this item is already shared with account [email protected]', $e->getMessage()); | ||
| } | ||
| } | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -158,7 +158,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int | |||||
| } catch (\Exception $e) { | ||||||
| $output->writeln('<error>Error while trying to create storage</error>'); | ||||||
| if ($noAuth) { | ||||||
| $output->writeln('<error>Username and/or password required</error>'); | ||||||
| $output->writeln('<error>Account name and/or password required</error>'); | ||||||
|
||||||
| $output->writeln('<error>Account name and/or password required</error>'); | |
| $output->writeln('<error>Login and/or password required</error>'); |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -38,7 +38,7 @@ public function __construct(IL10N $l) { | |||||
| ->setScheme(self::SCHEME_OPENSTACK) | ||||||
| ->setText($l->t('OpenStack v2')) | ||||||
| ->addParameters([ | ||||||
| new DefinitionParameter('user', $l->t('Username')), | ||||||
| new DefinitionParameter('user', $l->t('Account name')), | ||||||
|
||||||
| new DefinitionParameter('user', $l->t('Account name')), | |
| new DefinitionParameter('user', $l->t('Login')), |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -42,7 +42,7 @@ public function __construct(IL10N $l) { | |||||
| ->setScheme(self::SCHEME_OPENSTACK) | ||||||
| ->setText($l->t('OpenStack v3')) | ||||||
| ->addParameters([ | ||||||
| new DefinitionParameter('user', $l->t('Username')), | ||||||
| new DefinitionParameter('user', $l->t('Account name')), | ||||||
|
||||||
| new DefinitionParameter('user', $l->t('Account name')), | |
| new DefinitionParameter('user', $l->t('Login')), |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -37,7 +37,7 @@ public function __construct(IL10N $l) { | |||||
| ->setScheme(self::SCHEME_OPENSTACK) | ||||||
| ->setText($l->t('Rackspace')) | ||||||
| ->addParameters([ | ||||||
| new DefinitionParameter('user', $l->t('Username')), | ||||||
| new DefinitionParameter('user', $l->t('Account name')), | ||||||
|
||||||
| new DefinitionParameter('user', $l->t('Account name')), | |
| new DefinitionParameter('user', $l->t('Login')), |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -35,9 +35,9 @@ public function __construct(IL10N $l) { | |||||
| $this | ||||||
| ->setIdentifier('password::password') | ||||||
| ->setScheme(self::SCHEME_PASSWORD) | ||||||
| ->setText($l->t('Username and password')) | ||||||
| ->setText($l->t('Account name and password')) | ||||||
|
||||||
| ->setText($l->t('Account name and password')) | |
| ->setText($l->t('Login and password')) |
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| new DefinitionParameter('user', $l->t('Account name')), | |
| new DefinitionParameter('user', $l->t('Login')), |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -50,9 +50,9 @@ public function __construct(IL10N $l, ICredentialsManager $credentialsManager) { | |||||
| ->setIdentifier('password::userprovided') | ||||||
| ->setVisibility(BackendService::VISIBILITY_ADMIN) | ||||||
| ->setScheme(self::SCHEME_PASSWORD) | ||||||
| ->setText($l->t('User entered, store in database')) | ||||||
| ->setText($l->t('Manually entered, store in database')) | ||||||
| ->addParameters([ | ||||||
| (new DefinitionParameter('user', $l->t('Username'))) | ||||||
| (new DefinitionParameter('user', $l->t('Account name'))) | ||||||
|
||||||
| (new DefinitionParameter('user', $l->t('Account name'))) | |
| (new DefinitionParameter('user', $l->t('Login'))) |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -47,7 +47,7 @@ public function __construct(IL10N $l, IConfig $config) { | |||||
| ->setScheme(self::SCHEME_PUBLICKEY) | ||||||
| ->setText($l->t('RSA public key')) | ||||||
| ->addParameters([ | ||||||
| new DefinitionParameter('user', $l->t('Username')), | ||||||
| new DefinitionParameter('user', $l->t('Account name')), | ||||||
|
||||||
| new DefinitionParameter('user', $l->t('Account name')), | |
| new DefinitionParameter('user', $l->t('Login')), |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -46,7 +46,7 @@ public function __construct(IL10N $l, IConfig $config) { | |||||
| ->setScheme(self::SCHEME_PUBLICKEY) | ||||||
| ->setText($l->t('RSA private key')) | ||||||
| ->addParameters([ | ||||||
| new DefinitionParameter('user', $l->t('Username')), | ||||||
| new DefinitionParameter('user', $l->t('Account name')), | ||||||
|
||||||
| new DefinitionParameter('user', $l->t('Account name')), | |
| new DefinitionParameter('user', $l->t('Login')), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why not 'remote account' ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jancborchardt for feedback