mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
i18n: userManager translation + some forgotten translations (#557)
* translation: add userManager translation + some forgotten translations * use '\' caracter for multiple-line strings
This commit is contained in:
@@ -78,8 +78,8 @@ export class ApiKey extends Disposable {
|
||||
dom.maybe((use) => !(use(this._apiKey) || this._anonymous), () => [
|
||||
basicButton(t("Create"), dom.on('click', () => this._onCreate()), testId('create'),
|
||||
dom.boolAttr('disabled', this._loading)),
|
||||
description(t("By generating an API key, you will be able to " +
|
||||
"make API calls for your own account."), testId('description')),
|
||||
description(t("By generating an API key, you will be able to \
|
||||
make API calls for your own account."), testId('description')),
|
||||
]),
|
||||
);
|
||||
}
|
||||
@@ -117,8 +117,8 @@ export class ApiKey extends Disposable {
|
||||
() => this._onDelete(),
|
||||
{
|
||||
explanation: t(
|
||||
"You're about to delete an API key. This will cause all future requests " +
|
||||
"using this API key to be rejected. Do you still want to delete?"
|
||||
"You're about to delete an API key. This will cause all future requests \
|
||||
using this API key to be rejected. Do you still want to delete?"
|
||||
),
|
||||
}
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user