Skip to content

Commit 149b698

Browse files
committed
Add translations
1 parent b038a09 commit 149b698

File tree

15 files changed

+59
-1
lines changed

15 files changed

+59
-1
lines changed

src/core/webview/webviewMessageHandler.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,9 @@ export const webviewMessageHandler = async (provider: ClineProvider, message: We
275275
provider.getCurrentCline()?.handleWebviewAskResponse(message.askResponse!, message.text, message.images)
276276
break
277277
case "terminalOperation":
278-
provider.getCurrentCline()?.handleTerminalOperation(message.terminalOperation)
278+
if (message.terminalOperation) {
279+
provider.getCurrentCline()?.handleTerminalOperation(message.terminalOperation)
280+
}
279281
break
280282
case "clearTask":
281283
// clear task resets the current session and allows for a new task to be started, if this session is a subtask - it allows the parent task to be resumed

webview-ui/src/i18n/locales/ca/chat.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@
5252
"title": "Continuar mentre s'executa",
5353
"tooltip": "Continua malgrat els advertiments"
5454
},
55+
"killCommand": {
56+
"title": "Atura l'ordre",
57+
"tooltip": "Atura l'ordre actual"
58+
},
5559
"resumeTask": {
5660
"title": "Reprendre la tasca",
5761
"tooltip": "Repren la tasca actual"

webview-ui/src/i18n/locales/de/chat.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@
5252
"title": "Während Ausführung fortfahren",
5353
"tooltip": "Trotz Warnungen fortfahren"
5454
},
55+
"killCommand": {
56+
"title": "Befehl abbrechen",
57+
"tooltip": "Aktuellen Befehl abbrechen"
58+
},
5559
"resumeTask": {
5660
"title": "Aufgabe fortsetzen",
5761
"tooltip": "Aktuelle Aufgabe fortsetzen"

webview-ui/src/i18n/locales/es/chat.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@
5252
"title": "Continuar mientras se ejecuta",
5353
"tooltip": "Continuar a pesar de las advertencias"
5454
},
55+
"killCommand": {
56+
"title": "Terminar comando",
57+
"tooltip": "Terminar el comando actual"
58+
},
5559
"resumeTask": {
5660
"title": "Reanudar tarea",
5761
"tooltip": "Reanudar la tarea actual"

webview-ui/src/i18n/locales/fr/chat.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@
5252
"title": "Continuer pendant l'exécution",
5353
"tooltip": "Continuer malgré les avertissements"
5454
},
55+
"killCommand": {
56+
"title": "Arrêter la commande",
57+
"tooltip": "Arrêter la commande actuelle"
58+
},
5559
"resumeTask": {
5660
"title": "Reprendre la tâche",
5761
"tooltip": "Continuer la tâche actuelle"

webview-ui/src/i18n/locales/hi/chat.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@
5252
"title": "चलते समय आगे बढ़ें",
5353
"tooltip": "चेतावनियों के बावजूद जारी रखें"
5454
},
55+
"killCommand": {
56+
"title": "कमांड रोकें",
57+
"tooltip": "वर्तमान कमांड रोकें"
58+
},
5559
"resumeTask": {
5660
"title": "कार्य जारी रखें",
5761
"tooltip": "वर्तमान कार्य जारी रखें"

webview-ui/src/i18n/locales/it/chat.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@
5252
"title": "Procedi durante l'esecuzione",
5353
"tooltip": "Continua nonostante gli avvisi"
5454
},
55+
"killCommand": {
56+
"title": "Termina comando",
57+
"tooltip": "Termina il comando corrente"
58+
},
5559
"resumeTask": {
5660
"title": "Riprendi attività",
5761
"tooltip": "Continua l'attività corrente"

webview-ui/src/i18n/locales/ja/chat.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@
5252
"title": "実行中も続行",
5353
"tooltip": "警告にもかかわらず続行"
5454
},
55+
"killCommand": {
56+
"title": "コマンドを強制終了",
57+
"tooltip": "現在のコマンドを強制終了します"
58+
},
5559
"resumeTask": {
5660
"title": "タスクを再開",
5761
"tooltip": "現在のタスクを続行"

webview-ui/src/i18n/locales/ko/chat.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@
5252
"title": "실행 중에도 계속",
5353
"tooltip": "경고에도 불구하고 계속 진행"
5454
},
55+
"killCommand": {
56+
"title": "명령 종료",
57+
"tooltip": "현재 명령 종료"
58+
},
5559
"resumeTask": {
5660
"title": "작업 재개",
5761
"tooltip": "현재 작업 계속하기"

webview-ui/src/i18n/locales/pl/chat.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@
5252
"title": "Kontynuuj podczas wykonywania",
5353
"tooltip": "Kontynuuj pomimo ostrzeżeń"
5454
},
55+
"killCommand": {
56+
"title": "Zatrzymaj polecenie",
57+
"tooltip": "Zatrzymaj bieżące polecenie"
58+
},
5559
"resumeTask": {
5660
"title": "Wznów zadanie",
5761
"tooltip": "Kontynuuj bieżące zadanie"

0 commit comments

Comments
 (0)