mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
Change translation keys for ui2018 directory
This commit is contained in:
@@ -37,11 +37,11 @@ export function buildPageDom(name: Observable<string>, actions: PageActions, ...
|
||||
const pageMenu = () => [
|
||||
menuItem(() => isRenaming.set(true), t("Rename"), testId('rename'),
|
||||
dom.cls('disabled', actions.isReadonly)),
|
||||
menuItem(actions.onRemove, t('Remove'), testId('remove'),
|
||||
menuItem(actions.onRemove, t("Remove"), testId('remove'),
|
||||
dom.cls('disabled', (use) => use(actions.isReadonly) || actions.isRemoveDisabled())),
|
||||
menuItem(actions.onDuplicate, t('DuplicatePage'), testId('duplicate'),
|
||||
menuItem(actions.onDuplicate, t("Duplicate Page"), testId('duplicate'),
|
||||
dom.cls('disabled', actions.isReadonly)),
|
||||
dom.maybe(actions.isReadonly, () => menuText(t('NoEditAccess'))),
|
||||
dom.maybe(actions.isReadonly, () => menuText(t("You do not have edit access to this document"))),
|
||||
];
|
||||
let pageElem: HTMLElement;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user