mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-02 06:20:29 +00:00
fix(app): missing i18n keys
This commit is contained in:
parent
ab3d412a81
commit
850d50eb64
12 changed files with 159 additions and 80 deletions
|
|
@ -94,7 +94,7 @@ export function Titlebar() {
|
|||
variant="ghost"
|
||||
class="size-8 rounded-md"
|
||||
onClick={layout.mobileSidebar.toggle}
|
||||
aria-label="Toggle menu"
|
||||
aria-label={language.t("sidebar.menu.toggle")}
|
||||
/>
|
||||
</div>
|
||||
</Show>
|
||||
|
|
@ -105,7 +105,7 @@ export function Titlebar() {
|
|||
variant="ghost"
|
||||
class="size-8 rounded-md"
|
||||
onClick={layout.mobileSidebar.toggle}
|
||||
aria-label="Toggle menu"
|
||||
aria-label={language.t("sidebar.menu.toggle")}
|
||||
/>
|
||||
</div>
|
||||
</Show>
|
||||
|
|
@ -119,7 +119,7 @@ export function Titlebar() {
|
|||
variant="ghost"
|
||||
class="group/sidebar-toggle size-6 p-0"
|
||||
onClick={layout.sidebar.toggle}
|
||||
aria-label="Toggle sidebar"
|
||||
aria-label={language.t("command.sidebar.toggle")}
|
||||
aria-expanded={layout.sidebar.opened()}
|
||||
>
|
||||
<div class="relative flex items-center justify-center size-4 [&>*]:absolute [&>*]:inset-0">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue