diff --git a/apps/client/src/translations/en/translation.json b/apps/client/src/translations/en/translation.json index fadf09a4a..b2d2f0a27 100644 --- a/apps/client/src/translations/en/translation.json +++ b/apps/client/src/translations/en/translation.json @@ -1934,5 +1934,9 @@ "title": "Features", "emoji_completion_enabled": "Enable Emoji auto-completion", "note_completion_enabled": "Enable note auto-completion" + }, + "table_view": { + "new-row": "New row", + "new-column": "New column" } } diff --git a/apps/client/src/widgets/view_widgets/table_view/footer.ts b/apps/client/src/widgets/view_widgets/table_view/footer.ts new file mode 100644 index 000000000..2d168b8cd --- /dev/null +++ b/apps/client/src/widgets/view_widgets/table_view/footer.ts @@ -0,0 +1,13 @@ +import { t } from "../../../services/i18n.js"; + +export default function buildFooter() { + return /*html*/`\ + + + + `.trimStart(); +} diff --git a/apps/client/src/widgets/view_widgets/table_view/index.ts b/apps/client/src/widgets/view_widgets/table_view/index.ts index a3b6d531b..b26c2bc0b 100644 --- a/apps/client/src/widgets/view_widgets/table_view/index.ts +++ b/apps/client/src/widgets/view_widgets/table_view/index.ts @@ -12,6 +12,7 @@ import {Tabulator, SortModule, FormatModule, InteractionModule, EditModule, Resi import "tabulator-tables/dist/css/tabulator_bootstrap5.min.css"; import { applyHeaderMenu } from "./header-menu.js"; import { canReorderRows, configureReorderingRows } from "./dragging.js"; +import buildFooter from "./footer.js"; const TPL = /*html*/`