chore(collection/presentation): use translations

This commit is contained in:
Elian Doran 2025-10-15 23:08:52 +03:00
parent 55f9a3712c
commit be076a6609
No known key found for this signature in database
2 changed files with 7 additions and 2 deletions

View File

@ -2029,6 +2029,10 @@
"edit-note-title": "Click to edit note title",
"edit-column-title": "Click to edit column title"
},
"presentation_view": {
"edit-slide": "Edit this slide",
"start-presentation": "Start presentation"
},
"command_palette": {
"tree-action-name": "Tree: {{name}}",
"export_note_title": "Export Note",

View File

@ -11,6 +11,7 @@ import "./index.css";
import { RefObject } from "preact";
import { openInCurrentNoteContext } from "../../../components/note_context";
import { useTriliumEvent } from "../../react/hooks";
import { t } from "../../../services/i18n";
const stylesheets = [
slideBaseStylesheet,
@ -55,7 +56,7 @@ function ButtonOverlay({ containerRef, apiRef }: { containerRef: RefObject<HTMLD
<div className="presentation-button-bar">
<ActionButton
icon="bx bx-edit"
text="Edit this slide"
text={t("presentation_view.edit-slide")}
onClick={e => {
const currentSlide = apiRef.current?.getCurrentSlide();
const noteId = getNoteIdFromSlide(currentSlide);
@ -68,7 +69,7 @@ function ButtonOverlay({ containerRef, apiRef }: { containerRef: RefObject<HTMLD
<ActionButton
icon="bx bx-fullscreen"
text="Start presentation"
text={t("presentation_view.start-presentation")}
onClick={() => containerRef.current?.requestFullscreen()}
/>
</div>