diff --git a/webview-ui/src/components/chat/Announcement.tsx b/webview-ui/src/components/chat/Announcement.tsx index 490d0f2d683..1bb873db076 100644 --- a/webview-ui/src/components/chat/Announcement.tsx +++ b/webview-ui/src/components/chat/Announcement.tsx @@ -35,7 +35,7 @@ const Announcement = ({ hideAnnouncement }: AnnouncementProps) => { hideAnnouncement() } }}> - + {t("chat:announcement.title", { version: Package.version })} diff --git a/webview-ui/src/components/history/HistoryView.tsx b/webview-ui/src/components/history/HistoryView.tsx index 21b083a7b99..d8ee4315938 100644 --- a/webview-ui/src/components/history/HistoryView.tsx +++ b/webview-ui/src/components/history/HistoryView.tsx @@ -1,4 +1,5 @@ import React, { memo, useState } from "react" +import { ArrowLeft } from "lucide-react" import { DeleteTaskDialog } from "./DeleteTaskDialog" import { BatchDeleteTaskDialog } from "./BatchDeleteTaskDialog" import { Virtuoso } from "react-virtuoso" @@ -81,27 +82,33 @@ const HistoryView = ({ onDone }: HistoryViewProps) => { return ( -
-

{t("history:history")}

-
- - - - +
+
+ +

{t("history:history")}

+ + +
-
-

{t("marketplace:title")}

-
+
+
+

{t("marketplace:title")}

@@ -126,12 +128,12 @@ export function MarketplaceView({ stateManager, onDone, targetTab }: Marketplace />
+ +

{t("settings:header.title")}

+
+
{isIndexingComplete && ( )} @@ -654,11 +662,6 @@ const SettingsView = forwardRef(({ onDone, t {t("settings:common.save")} - - -
@@ -729,12 +732,7 @@ const SettingsView = forwardRef(({ onDone, t {/* Providers Section */} {renderTab === "providers" && (
- -
- -
{t("settings:sections.providers")}
-
-
+ {t("settings:sections.providers")}
{ return (
- -
- -
{t("settings:sections.slashCommands")}
-
-
+ {t("settings:sections.slashCommands")}
{/* Description section */} diff --git a/webview-ui/src/components/settings/TerminalSettings.tsx b/webview-ui/src/components/settings/TerminalSettings.tsx index 2b68e003bfa..a8e36bd3c10 100644 --- a/webview-ui/src/components/settings/TerminalSettings.tsx +++ b/webview-ui/src/components/settings/TerminalSettings.tsx @@ -1,7 +1,6 @@ import { HTMLAttributes, useState, useCallback } from "react" import { useAppTranslation } from "@/i18n/TranslationContext" import { vscode } from "@/utils/vscode" -import { SquareTerminal } from "lucide-react" import { VSCodeCheckbox, VSCodeLink } from "@vscode/webview-ui-toolkit/react" import { Trans } from "react-i18next" import { buildDocLink } from "@src/utils/docLinks" @@ -88,12 +87,7 @@ export const TerminalSettings = ({ return (
- -
- -
{t("settings:sections.terminal")}
-
-
+ {t("settings:sections.terminal")}
{/* Basic Settings */} diff --git a/webview-ui/src/components/settings/UISettings.tsx b/webview-ui/src/components/settings/UISettings.tsx index 162d727260b..a3488dc59e1 100644 --- a/webview-ui/src/components/settings/UISettings.tsx +++ b/webview-ui/src/components/settings/UISettings.tsx @@ -1,7 +1,6 @@ import { HTMLAttributes, useMemo } from "react" import { useAppTranslation } from "@/i18n/TranslationContext" import { VSCodeCheckbox } from "@vscode/webview-ui-toolkit/react" -import { Glasses } from "lucide-react" import { telemetryClient } from "@/utils/TelemetryClient" import { SetCachedStateField } from "./types" @@ -51,12 +50,7 @@ export const UISettings = ({ return (
- -
- -
{t("settings:sections.ui")}
-
-
+ {t("settings:sections.ui")}
diff --git a/webview-ui/src/i18n/locales/ca/settings.json b/webview-ui/src/i18n/locales/ca/settings.json index 7c6e7560aaa..8a0e94d2859 100644 --- a/webview-ui/src/i18n/locales/ca/settings.json +++ b/webview-ui/src/i18n/locales/ca/settings.json @@ -1,4 +1,5 @@ { + "back": "Torna a la vista de tasques", "common": { "save": "Desar", "done": "Fet", diff --git a/webview-ui/src/i18n/locales/de/settings.json b/webview-ui/src/i18n/locales/de/settings.json index 8f95ca54ff5..a559a18593f 100644 --- a/webview-ui/src/i18n/locales/de/settings.json +++ b/webview-ui/src/i18n/locales/de/settings.json @@ -1,4 +1,5 @@ { + "back": "Zurück zur Aufgabenansicht", "common": { "save": "Speichern", "done": "Fertig", diff --git a/webview-ui/src/i18n/locales/en/settings.json b/webview-ui/src/i18n/locales/en/settings.json index 551b8ab7eee..fc64ad18510 100644 --- a/webview-ui/src/i18n/locales/en/settings.json +++ b/webview-ui/src/i18n/locales/en/settings.json @@ -1,4 +1,5 @@ { + "back": "Back to tasks view", "common": { "save": "Save", "done": "Done", @@ -12,7 +13,7 @@ "title": "Settings", "saveButtonTooltip": "Save changes", "nothingChangedTooltip": "Nothing changed", - "doneButtonTooltip": "Discard unsaved changes and close settings panel" + "doneButtonTooltip": "Discard unsaved changes and go back to tasks view" }, "search": { "placeholder": "Search settings...", diff --git a/webview-ui/src/i18n/locales/es/settings.json b/webview-ui/src/i18n/locales/es/settings.json index 852ea83a842..590fbcae20e 100644 --- a/webview-ui/src/i18n/locales/es/settings.json +++ b/webview-ui/src/i18n/locales/es/settings.json @@ -1,4 +1,5 @@ { + "back": "Volver a la vista de tareas", "common": { "save": "Guardar", "done": "Hecho", diff --git a/webview-ui/src/i18n/locales/fr/settings.json b/webview-ui/src/i18n/locales/fr/settings.json index a53a60e9937..8ad9f1791fc 100644 --- a/webview-ui/src/i18n/locales/fr/settings.json +++ b/webview-ui/src/i18n/locales/fr/settings.json @@ -1,4 +1,5 @@ { + "back": "Retour à la vue des tâches", "common": { "save": "Enregistrer", "done": "Terminé", diff --git a/webview-ui/src/i18n/locales/hi/settings.json b/webview-ui/src/i18n/locales/hi/settings.json index 028aec0b6ff..8260e9c24b1 100644 --- a/webview-ui/src/i18n/locales/hi/settings.json +++ b/webview-ui/src/i18n/locales/hi/settings.json @@ -1,4 +1,5 @@ { + "back": "टास्क व्यू पर वापस जाओ", "common": { "save": "सहेजें", "done": "पूर्ण", diff --git a/webview-ui/src/i18n/locales/id/settings.json b/webview-ui/src/i18n/locales/id/settings.json index 9934b3a9d19..50850b74cca 100644 --- a/webview-ui/src/i18n/locales/id/settings.json +++ b/webview-ui/src/i18n/locales/id/settings.json @@ -1,4 +1,5 @@ { + "back": "Kembali ke tampilan tugas", "common": { "save": "Simpan", "done": "Selesai", diff --git a/webview-ui/src/i18n/locales/it/settings.json b/webview-ui/src/i18n/locales/it/settings.json index 0a9fab0f883..d307ef1aee3 100644 --- a/webview-ui/src/i18n/locales/it/settings.json +++ b/webview-ui/src/i18n/locales/it/settings.json @@ -1,4 +1,5 @@ { + "back": "Torna alla vista attività", "common": { "save": "Salva", "done": "Fatto", diff --git a/webview-ui/src/i18n/locales/ja/settings.json b/webview-ui/src/i18n/locales/ja/settings.json index 8eb0185d8eb..8c8707caaa8 100644 --- a/webview-ui/src/i18n/locales/ja/settings.json +++ b/webview-ui/src/i18n/locales/ja/settings.json @@ -1,4 +1,5 @@ { + "back": "タスク ビューに戻る", "common": { "save": "保存", "done": "完了", diff --git a/webview-ui/src/i18n/locales/ko/settings.json b/webview-ui/src/i18n/locales/ko/settings.json index e4c6f059277..4ce757bfcbc 100644 --- a/webview-ui/src/i18n/locales/ko/settings.json +++ b/webview-ui/src/i18n/locales/ko/settings.json @@ -1,4 +1,5 @@ { + "back": "작업 보기로 돌아가기", "common": { "save": "저장", "done": "완료", diff --git a/webview-ui/src/i18n/locales/nl/settings.json b/webview-ui/src/i18n/locales/nl/settings.json index 4dc398a52f0..d2988b8e04e 100644 --- a/webview-ui/src/i18n/locales/nl/settings.json +++ b/webview-ui/src/i18n/locales/nl/settings.json @@ -1,4 +1,5 @@ { + "back": "Terug naar takenoverzicht", "common": { "save": "Opslaan", "done": "Gereed", diff --git a/webview-ui/src/i18n/locales/pl/settings.json b/webview-ui/src/i18n/locales/pl/settings.json index 05a9f71cb89..380c7a895ce 100644 --- a/webview-ui/src/i18n/locales/pl/settings.json +++ b/webview-ui/src/i18n/locales/pl/settings.json @@ -1,4 +1,5 @@ { + "back": "Wróć do widoku zadań", "common": { "save": "Zapisz", "done": "Gotowe", diff --git a/webview-ui/src/i18n/locales/pt-BR/settings.json b/webview-ui/src/i18n/locales/pt-BR/settings.json index c33a7b2a96d..387891910fd 100644 --- a/webview-ui/src/i18n/locales/pt-BR/settings.json +++ b/webview-ui/src/i18n/locales/pt-BR/settings.json @@ -1,4 +1,5 @@ { + "back": "Voltar para a visão de tarefas", "common": { "save": "Salvar", "done": "Concluído", diff --git a/webview-ui/src/i18n/locales/ru/settings.json b/webview-ui/src/i18n/locales/ru/settings.json index 87ab2bc6b1d..430e0969a84 100644 --- a/webview-ui/src/i18n/locales/ru/settings.json +++ b/webview-ui/src/i18n/locales/ru/settings.json @@ -1,4 +1,5 @@ { + "back": "Назад к списку задач", "common": { "save": "Сохранить", "done": "Готово", diff --git a/webview-ui/src/i18n/locales/tr/settings.json b/webview-ui/src/i18n/locales/tr/settings.json index 37987cb74da..3feb8e2a1ee 100644 --- a/webview-ui/src/i18n/locales/tr/settings.json +++ b/webview-ui/src/i18n/locales/tr/settings.json @@ -1,4 +1,5 @@ { + "back": "Görev görünümüne dön", "common": { "save": "Kaydet", "done": "Tamamlandı", diff --git a/webview-ui/src/i18n/locales/vi/settings.json b/webview-ui/src/i18n/locales/vi/settings.json index d18a29dde1e..141ef12b87f 100644 --- a/webview-ui/src/i18n/locales/vi/settings.json +++ b/webview-ui/src/i18n/locales/vi/settings.json @@ -1,4 +1,5 @@ { + "back": "Quay lại chế độ xem tác vụ", "common": { "save": "Lưu", "done": "Hoàn thành", diff --git a/webview-ui/src/i18n/locales/zh-CN/settings.json b/webview-ui/src/i18n/locales/zh-CN/settings.json index a5416704ebc..f301f17e08c 100644 --- a/webview-ui/src/i18n/locales/zh-CN/settings.json +++ b/webview-ui/src/i18n/locales/zh-CN/settings.json @@ -1,4 +1,5 @@ { + "back": "返回任务视图", "common": { "save": "保存", "done": "完成", diff --git a/webview-ui/src/i18n/locales/zh-TW/settings.json b/webview-ui/src/i18n/locales/zh-TW/settings.json index fe55c4fa796..d57b05d2f49 100644 --- a/webview-ui/src/i18n/locales/zh-TW/settings.json +++ b/webview-ui/src/i18n/locales/zh-TW/settings.json @@ -1,4 +1,5 @@ { + "back": "返回工作檢視", "common": { "save": "儲存", "done": "完成",