add translation for ribbon widgets: note_map.js

This commit is contained in:
Nriver
2024-08-05 10:55:37 +08:00
parent bdc6a1fe29
commit 729715ebfb
3 changed files with 14 additions and 3 deletions

View File

@@ -1,5 +1,6 @@
import NoteContextAwareWidget from "../note_context_aware_widget.js";
import NoteMapWidget from "../note_map.js";
import { t } from "../../services/i18n.js";
const TPL = `
<div class="note-map-ribbon-widget">
@@ -25,8 +26,8 @@ const TPL = `
}
</style>
<button class="bx bx-arrow-to-bottom icon-action open-full-button" title="Open full"></button>
<button class="bx bx-arrow-to-top icon-action collapse-button" style="display: none;" title="Collapse to normal size"></button>
<button class="bx bx-arrow-to-bottom icon-action open-full-button" title="${t("note_map.open_full")}"></button>
<button class="bx bx-arrow-to-top icon-action collapse-button" style="display: none;" title="${t("note_map.collapse")}"></button>
<div class="note-map-container"></div>
</div>`;
@@ -50,7 +51,7 @@ export default class NoteMapRibbonWidget extends NoteContextAwareWidget {
getTitle() {
return {
show: this.isEnabled(),
title: 'Note Map',
title: t("note_map.title"),
icon: 'bx bx-map-alt'
};
}