mirror of
https://github.com/zadam/trilium.git
synced 2025-10-20 15:19:01 +02:00
chore(views/table): translate row menu
This commit is contained in:
parent
c8ffb8d694
commit
23cef0ab94
@ -1950,7 +1950,9 @@
|
|||||||
"sort-column-descending": "Descending",
|
"sort-column-descending": "Descending",
|
||||||
"sort-column-clear": "Clear sorting",
|
"sort-column-clear": "Clear sorting",
|
||||||
"hide-column": "Hide column \"{{title}}\"",
|
"hide-column": "Hide column \"{{title}}\"",
|
||||||
"show-hide-columns": "Show/hide columns"
|
"show-hide-columns": "Show/hide columns",
|
||||||
|
"row-insert-above": "Insert row above",
|
||||||
|
"row-insert-below": "Insert row below"
|
||||||
},
|
},
|
||||||
"book_properties_config": {
|
"book_properties_config": {
|
||||||
"hide-weekends": "Hide weekends",
|
"hide-weekends": "Hide weekends",
|
||||||
|
@ -102,7 +102,7 @@ export function showRowContextMenu(_e: UIEvent, row: RowComponent, parentNote: F
|
|||||||
...link_context_menu.getItems(),
|
...link_context_menu.getItems(),
|
||||||
{ title: "----" },
|
{ title: "----" },
|
||||||
{
|
{
|
||||||
title: "Insert row above",
|
title: t("table_view.row-insert-above"),
|
||||||
uiIcon: "bx bx-list-plus",
|
uiIcon: "bx bx-list-plus",
|
||||||
handler: () => {
|
handler: () => {
|
||||||
const target = e.target;
|
const target = e.target;
|
||||||
@ -119,7 +119,7 @@ export function showRowContextMenu(_e: UIEvent, row: RowComponent, parentNote: F
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Insert row below",
|
title: t("table_view.row-insert-below"),
|
||||||
uiIcon: "bx bx-empty",
|
uiIcon: "bx bx-empty",
|
||||||
handler: () => {
|
handler: () => {
|
||||||
const target = e.target;
|
const target = e.target;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user