diff --git a/webview-ui/src/components/chat/Announcement.tsx b/webview-ui/src/components/chat/Announcement.tsx index 490d0f2d68..1bb873db07 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 21b083a7b9..d8ee431593 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 2b68e003bf..a8e36bd3c1 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 162d727260..a3488dc59e 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 7c6e7560aa..8a0e94d285 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 8f95ca54ff..a559a18593 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 551b8ab7ee..fc64ad1851 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 852ea83a84..590fbcae20 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 a53a60e993..8ad9f1791f 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 028aec0b6f..8260e9c24b 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 9934b3a9d1..50850b74cc 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 0a9fab0f88..d307ef1aee 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 8eb0185d8e..8c8707caaa 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 e4c6f05927..4ce757bfcb 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 4dc398a52f..d2988b8e04 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 05a9f71cb8..380c7a895c 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 c33a7b2a96..387891910f 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 87ab2bc6b1..430e0969a8 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 37987cb74d..3feb8e2a1e 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 d18a29dde1..141ef12b87 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 a5416704eb..f301f17e08 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 fe55c4fa79..d57b05d2f4 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": "完成",