feat(breadcrumb): add text for all items

This commit is contained in:
Elian Doran
2025-12-14 11:20:24 +02:00
parent e1611d83a3
commit e043f30cc6
2 changed files with 10 additions and 4 deletions

View File

@@ -2159,13 +2159,19 @@
"status_bar": { "status_bar": {
"language_title": "Change the language of the entire content", "language_title": "Change the language of the entire content",
"note_info_title": "View information about this note such as the creation/modification date or the note size.", "note_info_title": "View information about this note such as the creation/modification date or the note size.",
"backlinks_one": "{{count}} backlink",
"backlinks_other": "{{count}} backlinks",
"backlinks_title_one": "This note is linked from {{count}} other note.\n\nClick to view the list of backlinks.", "backlinks_title_one": "This note is linked from {{count}} other note.\n\nClick to view the list of backlinks.",
"backlinks_title_other": "This note is linked from {{count}} other notes.\n\nClick to view the list of backlinks.", "backlinks_title_other": "This note is linked from {{count}} other notes.\n\nClick to view the list of backlinks.",
"attachments_one": "{{count}} attachment",
"attachments_other": "{{count}} attachments",
"attachments_title_one": "This note has {{count}} attachment. Click to open the list of attachments in a new tab.", "attachments_title_one": "This note has {{count}} attachment. Click to open the list of attachments in a new tab.",
"attachments_title_other": "This note has {{count}} attachments. Click to open the list of attachments in a new tab.", "attachments_title_other": "This note has {{count}} attachments. Click to open the list of attachments in a new tab.",
"attributes_one": "{{count}} attribute", "attributes_one": "{{count}} attribute",
"attributes_other": "{{count}} attributes", "attributes_other": "{{count}} attributes",
"attributes_title": "Click to open a dedicated pane to edit this note's owned attributes, as well as to see the list of inherited attributes.", "attributes_title": "Click to open a dedicated pane to edit this note's owned attributes, as well as to see the list of inherited attributes.",
"note_paths_one": "{{count}} path",
"note_paths_other": "{{count}} paths",
"note_paths_title": "Click to see the paths where this note is placed into the tree.", "note_paths_title": "Click to see the paths where this note is placed into the tree.",
"code_note_switcher": "Change language mode" "code_note_switcher": "Change language mode"
} }

View File

@@ -105,7 +105,7 @@ interface StatusBarButtonBaseProps {
className?: string; className?: string;
icon: string; icon: string;
title: string; title: string;
text?: string | number; text: string | number;
disabled?: boolean; disabled?: boolean;
active?: boolean; active?: boolean;
} }
@@ -233,7 +233,7 @@ function BacklinksBadge({ note, viewScope }: StatusBarContext) {
<StatusBarDropdown <StatusBarDropdown
className="backlinks-badge backlinks-widget" className="backlinks-badge backlinks-widget"
icon="bx bx-link" icon="bx bx-link"
text={count} text={t("status_bar.backlinks", { count })}
title={t("status_bar.backlinks_title", { count })} title={t("status_bar.backlinks_title", { count })}
dropdownContainerClassName="backlinks-items" dropdownContainerClassName="backlinks-items"
> >
@@ -252,7 +252,7 @@ function AttachmentCount({ note }: StatusBarContext) {
<StatusBarButton <StatusBarButton
className="attachment-count-button" className="attachment-count-button"
icon="bx bx-paperclip" icon="bx bx-paperclip"
text={count} text={t("status_bar.attachments", { count })}
title={t("status_bar.attachments_title", { count })} title={t("status_bar.attachments_title", { count })}
triggerCommand="showAttachments" triggerCommand="showAttachments"
/> />
@@ -336,7 +336,7 @@ function NotePaths({ note, hoistedNoteId, notePath }: StatusBarContext) {
title={t("status_bar.note_paths_title")} title={t("status_bar.note_paths_title")}
dropdownContainerClassName="dropdown-note-paths" dropdownContainerClassName="dropdown-note-paths"
icon="bx bx-directions" icon="bx bx-directions"
text={sortedNotePaths?.length} text={t("status_bar.note_paths", { count: sortedNotePaths?.length })}
> >
<NotePathsWidget <NotePathsWidget
sortedNotePaths={sortedNotePaths} sortedNotePaths={sortedNotePaths}