We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7573348 commit c27a293Copy full SHA for c27a293
2 files changed
src/main/i18n/locales/en_US/ui.json
@@ -93,6 +93,7 @@
93
}
94
},
95
"sidebar": {
96
+ "title": "Code Snippets",
97
"inbox": "Inbox",
98
"favorites": "Favorites",
99
"allSnippets": "All Snippets",
src/renderer/components/sidebar/Sidebar.vue
@@ -7,12 +7,15 @@ import { i18n } from '@/electron'
7
data-sidebar
8
class="flex h-full flex-col px-1 pt-[var(--content-top-offset)]"
9
>
10
+ <div class="truncate px-1 pb-2 font-bold select-none">
11
+ {{ i18n.t("sidebar.title") }}
12
+ </div>
13
<UiText
14
as="div"
15
variant="caption"
16
weight="bold"
17
uppercase
- class="flex gap-1 pt-2 pb-1 pl-1 select-none"
18
+ class="flex gap-1 pb-1 pl-1 select-none"
19
20
{{ i18n.t("sidebar.library") }}
21
</UiText>
0 commit comments