diff options
| author | Rahul A Mistry <[email protected]> | 2026-01-21 21:33:29 +0530 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-01-21 10:03:29 -0600 |
| commit | 9f02ffe02dc32acd03aa15fff322c4ca85d28fa2 (patch) | |
| tree | 5ca1c563a65a8d602441ad030d2de0068a6c3995 /packages/app/src/pages | |
| parent | b10f4237439f6fd0754a305b53a4a318248d4597 (diff) | |
| download | opencode-9f02ffe02dc32acd03aa15fff322c4ca85d28fa2.tar.gz opencode-9f02ffe02dc32acd03aa15fff322c4ca85d28fa2.zip | |
fix(app): new workspace button with all languages (#9848)
Diffstat (limited to 'packages/app/src/pages')
| -rw-r--r-- | packages/app/src/pages/layout.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/app/src/pages/layout.tsx b/packages/app/src/pages/layout.tsx index 7052ba003..e00928cfc 100644 --- a/packages/app/src/pages/layout.tsx +++ b/packages/app/src/pages/layout.tsx @@ -2078,8 +2078,8 @@ export default function Layout(props: ParentProps) { command.register(() => [ { id: "workspace.new", - title: "New workspace", - category: "Workspace", + title: language.t("workspace.new"), + category: language.t("command.category.workspace"), keybind: "mod+shift+w", disabled: !layout.sidebar.workspaces(project()?.worktree ?? "")(), onSelect: createWorkspace, |
