(core) updates from grist-core

This commit is contained in:
Paul Fitzpatrick
2023-03-27 09:48:59 -04:00
11 changed files with 134 additions and 71 deletions

View File

@@ -156,8 +156,8 @@ export function MultiColumnMenu(options: IMultiColumnContextMenu) {
menuItemCmd(allCommands.deleteFields, nameDeleteColumns, disableForReadonlyColumn),
menuDivider(),
menuItemCmd(allCommands.insertFieldBefore, t("Insert column to the {{to}}", {to: 'left'}), disableForReadonlyView),
menuItemCmd(allCommands.insertFieldAfter, t("Insert column to the {{to}}", {to: 'right'}), disableForReadonlyView)
menuItemCmd(allCommands.insertFieldBefore, t("Insert column to the left"), disableForReadonlyView),
menuItemCmd(allCommands.insertFieldAfter, t("Insert column to the right"), disableForReadonlyView)
];
}