(core) adapt some translation keys after reorganization

Summary: adapt some translation keys after reorganization in https://github.com/gristlabs/grist-core/pull/367

Test Plan: existing tests

Reviewers: georgegevoian

Reviewed By: georgegevoian

Differential Revision: https://phab.getgrist.com/D3753
This commit is contained in:
Paul Fitzpatrick
2023-01-03 13:48:18 -05:00
parent 1780e1139f
commit 13cb4e8389
4 changed files with 7 additions and 5 deletions

View File

@@ -104,7 +104,9 @@ export class ApiKey extends Disposable {
private _getDescription(): string {
return t(
!this._anonymous ? 'OwnAPIKey' : 'AnonymousAPIkey'
!this._anonymous ?
'This API key can be used to access your account via the API. Dont share your API key with anyone.' :
'This API key can be used to access this account anonymously via the API.'
);
}