From a2ae16abefee358d494dc6989da105b333372f72 Mon Sep 17 00:00:00 2001 From: zzxming <74341337+zzxming@users.noreply.github.com> Date: Sun, 16 Feb 2025 16:13:46 +0800 Subject: [PATCH] fix: default texts options missing (#68) --- src/index.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/index.ts b/src/index.ts index d27ac84..9eab6b5 100644 --- a/src/index.ts +++ b/src/index.ts @@ -327,6 +327,19 @@ export class TableUp { clear: 'Clear', transparent: 'Transparent', perWidthInsufficient: 'The percentage width is insufficient. To complete the operation, the table needs to be converted to a fixed width. Do you want to continue?', + CopyCell: 'Copy cell', + CutCell: 'Cut cell', + InsertTop: 'Insert row above', + InsertRight: 'Insert column right', + InsertBottom: 'Insert row below', + InsertLeft: 'Insert column Left', + MergeCell: 'Merge Cell', + SplitCell: 'Split Cell', + DeleteRow: 'Delete Row', + DeleteColumn: 'Delete Column', + DeleteTable: 'Delete table', + BackgroundColor: 'Set background color', + BorderColor: 'Set border color', }, options); }