@opencode-ai/ui 1.18.12 → 1.18.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/context/i18n.d.ts +10 -1
- package/dist/context/marked-parser.d.ts +2 -0
- package/dist/context/marked-theme-register.d.ts +1 -0
- package/dist/context/marked-theme.d.ts +2 -0
- package/dist/context/marked.d.ts +2 -9
- package/dist/i18n/ar.d.ts +38 -0
- package/dist/i18n/az.d.ts +1 -0
- package/dist/i18n/br.d.ts +26 -0
- package/dist/i18n/bs.d.ts +26 -0
- package/dist/i18n/da.d.ts +22 -0
- package/dist/i18n/de.d.ts +22 -0
- package/dist/i18n/es.d.ts +26 -0
- package/dist/i18n/fi.d.ts +1 -0
- package/dist/i18n/fr.d.ts +26 -0
- package/dist/i18n/hi.d.ts +1 -0
- package/dist/i18n/id.d.ts +1 -0
- package/dist/i18n/it.d.ts +1 -0
- package/dist/i18n/ja.d.ts +22 -0
- package/dist/i18n/ko.d.ts +22 -0
- package/dist/i18n/nl.d.ts +1 -0
- package/dist/i18n/pa.d.ts +1 -0
- package/dist/i18n/pl.d.ts +30 -0
- package/dist/i18n/ru.d.ts +30 -0
- package/dist/i18n/sv.d.ts +1 -0
- package/dist/i18n/th.d.ts +22 -0
- package/dist/i18n/tr.d.ts +22 -0
- package/dist/i18n/ur.d.ts +1 -0
- package/dist/i18n/vi.d.ts +1 -0
- package/dist/i18n/zh.d.ts +22 -0
- package/dist/i18n/zht.d.ts +22 -0
- package/package.json +2 -3
- package/src/components/diff-changes.css +2 -0
- package/src/components/dropdown-menu.css +2 -2
- package/src/components/icon.css +5 -0
- package/src/components/icon.tsx +12 -1
- package/src/components/resize-handle.css +14 -2
- package/src/components/resize-handle.tsx +5 -1
- package/src/components/scroll-view.css +1 -1
- package/src/components/select.css +5 -3
- package/src/components/switch.css +4 -0
- package/src/components/tabs.css +54 -26
- package/src/components/tabs.tsx +1 -0
- package/src/components/text-field.css +2 -2
- package/src/components/toast.css +1 -1
- package/src/context/i18n.tsx +38 -2
- package/src/context/marked-parser.tsx +68 -0
- package/src/context/marked-theme-register.tsx +10 -0
- package/src/context/marked-theme.tsx +372 -0
- package/src/context/marked.tsx +20 -562
- package/src/i18n/ar.ts +62 -22
- package/src/i18n/az.ts +197 -0
- package/src/i18n/br.ts +34 -6
- package/src/i18n/bs.ts +51 -23
- package/src/i18n/da.ts +36 -12
- package/src/i18n/de.ts +58 -36
- package/src/i18n/en.ts +24 -0
- package/src/i18n/es.ts +45 -17
- package/src/i18n/fi.ts +197 -0
- package/src/i18n/fr.ts +51 -21
- package/src/i18n/hi.ts +199 -0
- package/src/i18n/id.ts +219 -0
- package/src/i18n/it.ts +202 -0
- package/src/i18n/ja.ts +29 -5
- package/src/i18n/ko.ts +36 -12
- package/src/i18n/nl.ts +197 -0
- package/src/i18n/no.ts +47 -23
- package/src/i18n/pa.ts +198 -0
- package/src/i18n/pl.ts +57 -24
- package/src/i18n/ru.ts +55 -23
- package/src/i18n/sv.ts +197 -0
- package/src/i18n/th.ts +44 -21
- package/src/i18n/tr.ts +49 -25
- package/src/i18n/uk.ts +47 -15
- package/src/i18n/ur.ts +198 -0
- package/src/i18n/vi.ts +197 -0
- package/src/i18n/zh.ts +52 -29
- package/src/i18n/zht.ts +45 -22
- package/src/v2/components/dialog-v2.css +2 -2
- package/src/v2/components/dialog-v2.tsx +3 -1
- package/src/v2/components/diff-changes-v2.css +2 -0
- package/src/v2/components/file-tree-v2.css +6 -2
- package/src/v2/components/inline-input-v2.tsx +3 -1
- package/src/v2/components/line-comment-v2.css +1 -1
- package/src/v2/components/line-comment-v2.tsx +6 -4
- package/src/v2/components/select-v2.css +16 -5
- package/src/v2/components/switch-v2.css +8 -0
- package/src/v2/components/tabs-v2.css +4 -4
- package/src/v2/components/tabs-v2.tsx +4 -2
- package/src/v2/components/text-input-v2.css +7 -5
- package/src/v2/components/text-input-v2.tsx +7 -1
- package/src/v2/components/toast-v2.tsx +8 -4
- package/dist/context/marked-code-span.d.ts +0 -10
- package/src/context/marked-code-span.ts +0 -17
package/src/i18n/bs.ts
CHANGED
|
@@ -9,7 +9,7 @@ export const dict = {
|
|
|
9
9
|
"ui.sessionReview.title.lastTurn": "Promjene u posljednjem potezu",
|
|
10
10
|
"ui.sessionReview.diffStyle.unified": "Ujedinjeno",
|
|
11
11
|
"ui.sessionReview.diffStyle.split": "Podijeljeno",
|
|
12
|
-
"ui.sessionReview.openFile": "Otvori
|
|
12
|
+
"ui.sessionReview.openFile": "Otvori datoteku",
|
|
13
13
|
"ui.sessionReview.selection.line": "linija {{line}}",
|
|
14
14
|
"ui.sessionReview.selection.lines": "linije {{start}}-{{end}}",
|
|
15
15
|
"ui.sessionReview.expandAll": "Proširi sve",
|
|
@@ -40,19 +40,20 @@ export const dict = {
|
|
|
40
40
|
"ui.sessionReviewV2.empty.changes.description": "Promjene projekta će se prikazati ovdje",
|
|
41
41
|
"ui.fileMedia.kind.image": "slika",
|
|
42
42
|
"ui.fileMedia.kind.audio": "audio",
|
|
43
|
-
"ui.fileMedia.state.removed": "
|
|
44
|
-
"ui.fileMedia.state.loading": "Učitavanje
|
|
45
|
-
"ui.fileMedia.state.error": "
|
|
46
|
-
"ui.fileMedia.state.unavailable": "
|
|
47
|
-
"ui.fileMedia.binary.title": "
|
|
48
|
-
"ui.fileMedia.binary.description.path": "{{path}}
|
|
49
|
-
"ui.fileMedia.binary.description.default": "
|
|
43
|
+
"ui.fileMedia.state.removed": "Uklonjena datoteka vrste {{kind}}.",
|
|
44
|
+
"ui.fileMedia.state.loading": "Učitavanje datoteke vrste {{kind}}...",
|
|
45
|
+
"ui.fileMedia.state.error": "Nije moguće učitati datoteku vrste {{kind}}.",
|
|
46
|
+
"ui.fileMedia.state.unavailable": "Pregled datoteke vrste {{kind}} nije dostupan.",
|
|
47
|
+
"ui.fileMedia.binary.title": "Binarna datoteka",
|
|
48
|
+
"ui.fileMedia.binary.description.path": "{{path}} je binarna datoteka.",
|
|
49
|
+
"ui.fileMedia.binary.description.default": "Binarni sadržaj",
|
|
50
50
|
|
|
51
51
|
"ui.lineComment.label.prefix": "Komentar na ",
|
|
52
52
|
"ui.lineComment.label.suffix": "",
|
|
53
53
|
"ui.lineComment.editorLabel.prefix": "Komentarišeš ",
|
|
54
54
|
"ui.lineComment.editorLabel.suffix": "",
|
|
55
55
|
"ui.lineComment.placeholder": "Dodaj komentar",
|
|
56
|
+
"ui.lineComment.contextPlaceholder": "Dodaj kontekst za ovu izmjenu",
|
|
56
57
|
"ui.lineComment.submit": "Komentariši",
|
|
57
58
|
"ui.lineComment.cancel": "Otkaži",
|
|
58
59
|
|
|
@@ -60,27 +61,28 @@ export const dict = {
|
|
|
60
61
|
"ui.sessionTurn.steps.hide": "Sakrij korake",
|
|
61
62
|
"ui.sessionTurn.summary.response": "Odgovor",
|
|
62
63
|
"ui.sessionTurn.diff.showMore": "Prikaži još izmjena ({{count}})",
|
|
63
|
-
"ui.sessionTurn.diffs.changed.one": "
|
|
64
|
-
"ui.sessionTurn.diffs.changed.
|
|
64
|
+
"ui.sessionTurn.diffs.changed.one": "{{count}} izmijenjena datoteka",
|
|
65
|
+
"ui.sessionTurn.diffs.changed.few": "{{count}} izmijenjene datoteke",
|
|
66
|
+
"ui.sessionTurn.diffs.changed.other": "{{count}} izmijenjene datoteke",
|
|
65
67
|
"ui.sessionTurn.diffs.showAll": "Prikaži sve",
|
|
66
68
|
"ui.sessionTurn.diffs.showLess": "Prikaži manje",
|
|
67
69
|
"ui.sessionTurn.diffs.more": "+ još {{count}}",
|
|
68
70
|
|
|
69
|
-
"ui.sessionTurn.retry.retrying": "ponovni pokušaj",
|
|
71
|
+
"ui.sessionTurn.retry.retrying": "ponovni pokušaj u toku",
|
|
70
72
|
"ui.sessionTurn.retry.inSeconds": "za {{seconds}}s",
|
|
71
73
|
"ui.sessionTurn.retry.attempt": "pokušaj #{{attempt}}",
|
|
72
74
|
"ui.sessionTurn.retry.attemptLine": "{{line}} - pokušaj #{{attempt}}",
|
|
73
75
|
"ui.sessionTurn.retry.geminiHot": "gemini je trenutno preopterećen",
|
|
74
|
-
"ui.sessionTurn.error.freeUsageExceeded": "
|
|
76
|
+
"ui.sessionTurn.error.freeUsageExceeded": "Prekoračeno besplatno korištenje",
|
|
75
77
|
"ui.sessionTurn.error.addCredits": "Dodaj kredite",
|
|
76
78
|
|
|
77
79
|
"dialog.usageExceeded.freeTier.title": "Dostignut besplatan limit",
|
|
78
80
|
"dialog.usageExceeded.freeTier.description":
|
|
79
|
-
"
|
|
81
|
+
"Pretplati se na OpenCode Go za pouzdan pristup najboljim modelima otvorenog koda, počevši od $5/mjesec.",
|
|
80
82
|
"dialog.usageExceeded.freeTier.actionLabel": "Pretplati se",
|
|
81
83
|
"dialog.usageExceeded.accountRateLimit.title": "Dostignut Go limit",
|
|
82
84
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
83
|
-
"Dostignut je limit korištenja. Da
|
|
85
|
+
"Dostignut je limit korištenja. Da sada nastaviš koristiti ovaj model, omogući korištenje raspoloživog salda",
|
|
84
86
|
"dialog.usageExceeded.accountRateLimit.actionLabel": "Otvori postavke",
|
|
85
87
|
|
|
86
88
|
"ui.sessionTurn.status.delegating": "Delegiranje posla",
|
|
@@ -89,7 +91,7 @@ export const dict = {
|
|
|
89
91
|
"ui.sessionTurn.status.gatheredContext": "Istraženo",
|
|
90
92
|
"ui.sessionTurn.status.searchingCodebase": "Pretraživanje baze koda",
|
|
91
93
|
"ui.sessionTurn.status.searchingWeb": "Pretraživanje weba",
|
|
92
|
-
"ui.sessionTurn.status.makingEdits": "
|
|
94
|
+
"ui.sessionTurn.status.makingEdits": "Unošenje izmjena",
|
|
93
95
|
"ui.sessionTurn.status.runningCommands": "Pokretanje komandi",
|
|
94
96
|
"ui.sessionTurn.status.thinking": "Razmišljanje",
|
|
95
97
|
"ui.sessionTurn.status.thinkingWithTopic": "Razmišljanje - {{topic}}",
|
|
@@ -99,11 +101,14 @@ export const dict = {
|
|
|
99
101
|
"ui.messagePart.questions.dismissed": "Pitanja odbačena",
|
|
100
102
|
"ui.messagePart.compaction": "Sesija sažeta",
|
|
101
103
|
"ui.messagePart.context.read.one": "{{count}} čitanje",
|
|
104
|
+
"ui.messagePart.context.read.few": "{{count}} čitanja",
|
|
102
105
|
"ui.messagePart.context.read.other": "{{count}} čitanja",
|
|
103
106
|
"ui.messagePart.context.search.one": "{{count}} pretraga",
|
|
107
|
+
"ui.messagePart.context.search.few": "{{count}} pretrage",
|
|
104
108
|
"ui.messagePart.context.search.other": "{{count}} pretrage",
|
|
105
|
-
"ui.messagePart.context.list.one": "{{count}}
|
|
106
|
-
"ui.messagePart.context.list.
|
|
109
|
+
"ui.messagePart.context.list.one": "{{count}} listanje",
|
|
110
|
+
"ui.messagePart.context.list.few": "{{count}} listanja",
|
|
111
|
+
"ui.messagePart.context.list.other": "{{count}} listanja",
|
|
107
112
|
"ui.messagePart.diagnostic.error": "Greška",
|
|
108
113
|
"ui.messagePart.title.edit": "Uredi",
|
|
109
114
|
"ui.messagePart.title.write": "Napiši",
|
|
@@ -118,12 +123,31 @@ export const dict = {
|
|
|
118
123
|
|
|
119
124
|
"ui.messageNav.newMessage": "Nova poruka",
|
|
120
125
|
|
|
126
|
+
"ui.promptInput.noMatchingItems": "Nema odgovarajućih stavki",
|
|
127
|
+
"ui.promptInput.commands": "Komande",
|
|
128
|
+
"ui.promptInput.dropFiles": "Ispusti datoteke da ih priložiš",
|
|
129
|
+
"ui.promptInput.removeAttachment": "Ukloni prilog",
|
|
130
|
+
"ui.promptInput.label": "Upit",
|
|
131
|
+
"ui.promptInput.placeholder.shell": "Unesi shell komandu...",
|
|
132
|
+
"ui.promptInput.placeholder.normal": "Pitaj bilo šta, {{slash}} za komande, {{at}} za kontekst...",
|
|
133
|
+
"ui.promptInput.add": "Dodaj slike i datoteke",
|
|
134
|
+
"ui.promptInput.attachments": "Slike i datoteke",
|
|
135
|
+
"ui.promptInput.context": "Kontekst",
|
|
136
|
+
"ui.promptInput.shell": "Shell komanda",
|
|
137
|
+
"ui.promptInput.chooseAgent": "Odaberi agenta",
|
|
138
|
+
"ui.promptInput.chooseModel": "Odaberi model",
|
|
139
|
+
"ui.promptInput.chooseVariant": "Odaberi varijantu modela",
|
|
140
|
+
"ui.promptInput.send": "Pošalji",
|
|
141
|
+
"ui.promptInput.stop": "Zaustavi",
|
|
142
|
+
|
|
143
|
+
"ui.tabs.close": "Zatvori karticu",
|
|
144
|
+
|
|
121
145
|
"ui.textField.copyToClipboard": "Kopiraj u međuspremnik",
|
|
122
146
|
"ui.textField.copyLink": "Kopiraj link",
|
|
123
147
|
"ui.textField.copied": "Kopirano",
|
|
124
148
|
|
|
125
149
|
"ui.imagePreview.alt": "Pregled slike",
|
|
126
|
-
"ui.scrollView.ariaLabel": "sadržaj
|
|
150
|
+
"ui.scrollView.ariaLabel": "sadržaj koji se može pomicati",
|
|
127
151
|
|
|
128
152
|
"ui.tool.read": "Čitanje",
|
|
129
153
|
"ui.tool.loaded": "Učitano",
|
|
@@ -132,11 +156,13 @@ export const dict = {
|
|
|
132
156
|
"ui.tool.grep": "Grep",
|
|
133
157
|
"ui.tool.webfetch": "Web preuzimanje",
|
|
134
158
|
"ui.tool.websearch": "Pretraga weba",
|
|
159
|
+
"ui.tool.websearch.provider": "{{provider}} Pretraga weba",
|
|
135
160
|
"ui.tool.shell": "Shell",
|
|
136
161
|
"ui.tool.patch": "Patch",
|
|
137
162
|
"ui.tool.todos": "Lista zadataka",
|
|
138
163
|
"ui.tool.todos.read": "Čitanje liste zadataka",
|
|
139
164
|
"ui.tool.questions": "Pitanja",
|
|
165
|
+
"ui.tool.questions.numbered": "Pitanja {{number}}",
|
|
140
166
|
"ui.tool.agent": "{{type}} agent",
|
|
141
167
|
"ui.tool.agent.default": "agent",
|
|
142
168
|
|
|
@@ -146,6 +172,8 @@ export const dict = {
|
|
|
146
172
|
"ui.common.question.other": "pitanja",
|
|
147
173
|
|
|
148
174
|
"ui.common.add": "Dodaj",
|
|
175
|
+
"ui.common.clear": "Očisti",
|
|
176
|
+
"ui.common.file": "Datoteka",
|
|
149
177
|
"ui.common.back": "Nazad",
|
|
150
178
|
"ui.common.cancel": "Otkaži",
|
|
151
179
|
"ui.common.confirm": "Potvrdi",
|
|
@@ -155,7 +183,7 @@ export const dict = {
|
|
|
155
183
|
"ui.common.submit": "Pošalji",
|
|
156
184
|
"ui.common.showMore": "Prikaži više",
|
|
157
185
|
|
|
158
|
-
"ui.permission.deny": "
|
|
186
|
+
"ui.permission.deny": "Odbij",
|
|
159
187
|
"ui.permission.allowAlways": "Uvijek dozvoli",
|
|
160
188
|
"ui.permission.allowOnce": "Dozvoli jednom",
|
|
161
189
|
|
|
@@ -164,11 +192,11 @@ export const dict = {
|
|
|
164
192
|
"ui.message.copy": "Kopiraj",
|
|
165
193
|
"ui.message.copyMessage": "Kopiraj poruku",
|
|
166
194
|
"ui.message.forkMessage": "Forkaj u novu sesiju",
|
|
167
|
-
"ui.message.revertMessage": "
|
|
195
|
+
"ui.message.revertMessage": "Vrati na ovu poruku",
|
|
168
196
|
"ui.message.copyResponse": "Kopiraj odgovor",
|
|
169
197
|
"ui.message.copied": "Kopirano!",
|
|
170
198
|
"ui.message.interrupted": "Prekinuto",
|
|
171
|
-
"ui.message.queued": "
|
|
199
|
+
"ui.message.queued": "Na čekanju",
|
|
172
200
|
"ui.message.attachment.alt": "prilog",
|
|
173
201
|
|
|
174
202
|
"ui.patch.action.deleted": "Obrisano",
|
|
@@ -176,10 +204,10 @@ export const dict = {
|
|
|
176
204
|
"ui.patch.action.moved": "Premješteno",
|
|
177
205
|
"ui.patch.action.patched": "Primijenjeno",
|
|
178
206
|
|
|
179
|
-
"ui.question.subtitle.answered": "{{count}}
|
|
207
|
+
"ui.question.subtitle.answered": "Odgovoreno: {{count}}",
|
|
180
208
|
"ui.question.answer.none": "(nema odgovora)",
|
|
181
209
|
"ui.question.review.notAnswered": "(nije odgovoreno)",
|
|
182
|
-
"ui.question.multiHint": "Odaberi sve
|
|
210
|
+
"ui.question.multiHint": "Odaberi sve primjenjive odgovore",
|
|
183
211
|
"ui.question.singleHint": "Odaberi jedan odgovor",
|
|
184
212
|
"ui.question.custom.placeholder": "Unesi svoj odgovor...",
|
|
185
213
|
|
package/src/i18n/da.ts
CHANGED
|
@@ -16,7 +16,7 @@ export const dict = {
|
|
|
16
16
|
"ui.sessionReview.change.modified": "Ændret",
|
|
17
17
|
"ui.sessionReview.image.loading": "Indlæser...",
|
|
18
18
|
"ui.sessionReview.image.placeholder": "Billede",
|
|
19
|
-
"ui.sessionReview.largeDiff.title": "
|
|
19
|
+
"ui.sessionReview.largeDiff.title": "Diffen er for stor til at blive vist",
|
|
20
20
|
"ui.sessionReview.largeDiff.meta": "Grænse: {{limit}} ændrede linjer. Nuværende: {{current}} ændrede linjer.",
|
|
21
21
|
"ui.sessionReview.largeDiff.renderAnyway": "Vis alligevel",
|
|
22
22
|
"ui.sessionReviewV2.expandMode": "Udvid eller skjul diff",
|
|
@@ -37,16 +37,16 @@ export const dict = {
|
|
|
37
37
|
"ui.sessionReviewV2.empty.changes.description": "Projektændringer vises her",
|
|
38
38
|
"ui.fileMedia.kind.image": "billede",
|
|
39
39
|
"ui.fileMedia.kind.audio": "lyd",
|
|
40
|
-
"ui.fileMedia.state.removed": "
|
|
40
|
+
"ui.fileMedia.state.removed": "{{kind}} fjernet",
|
|
41
41
|
"ui.fileMedia.state.loading": "Indlæser {{kind}}...",
|
|
42
|
-
"ui.fileMedia.state.error": "
|
|
43
|
-
"ui.fileMedia.state.unavailable": "
|
|
42
|
+
"ui.fileMedia.state.error": "Kunne ikke indlæse {{kind}}",
|
|
43
|
+
"ui.fileMedia.state.unavailable": "Forhåndsvisning af {{kind}} er ikke tilgængelig",
|
|
44
44
|
"ui.fileMedia.binary.title": "Binær fil",
|
|
45
45
|
"ui.fileMedia.binary.description.path": "{{path}} kan ikke vises, fordi det er en binær fil.",
|
|
46
46
|
"ui.fileMedia.binary.description.default": "Denne fil kan ikke vises, fordi det er en binær fil.",
|
|
47
|
-
"ui.lineComment.label.prefix": "
|
|
47
|
+
"ui.lineComment.label.prefix": "Skriv en kommentar til ",
|
|
48
48
|
"ui.lineComment.label.suffix": "",
|
|
49
|
-
"ui.lineComment.editorLabel.prefix": "
|
|
49
|
+
"ui.lineComment.editorLabel.prefix": "Skriver en kommentar til ",
|
|
50
50
|
"ui.lineComment.editorLabel.suffix": "",
|
|
51
51
|
"ui.lineComment.placeholder": "Tilføj kommentar",
|
|
52
52
|
"ui.lineComment.submit": "Kommenter",
|
|
@@ -65,13 +65,13 @@ export const dict = {
|
|
|
65
65
|
"ui.sessionTurn.retry.inSeconds": "om {{seconds}}s",
|
|
66
66
|
"ui.sessionTurn.retry.attempt": "forsøg #{{attempt}}",
|
|
67
67
|
"ui.sessionTurn.retry.attemptLine": "{{line}} - forsøg #{{attempt}}",
|
|
68
|
-
"ui.sessionTurn.retry.geminiHot": "
|
|
69
|
-
"ui.sessionTurn.error.freeUsageExceeded": "
|
|
68
|
+
"ui.sessionTurn.retry.geminiHot": "Gemini er meget overbelastet lige nu",
|
|
69
|
+
"ui.sessionTurn.error.freeUsageExceeded": "Grænsen for gratis forbrug er overskredet",
|
|
70
70
|
"ui.sessionTurn.error.addCredits": "Tilføj kreditter",
|
|
71
71
|
|
|
72
72
|
"dialog.usageExceeded.freeTier.title": "Gratis grænse nået",
|
|
73
73
|
"dialog.usageExceeded.freeTier.description":
|
|
74
|
-
"Abonnér på OpenCode Go for pålidelig adgang til de bedste open source-modeller
|
|
74
|
+
"Abonnér på OpenCode Go for pålidelig adgang til de bedste open source-modeller fra $5/måned.",
|
|
75
75
|
"dialog.usageExceeded.freeTier.actionLabel": "Abonnér",
|
|
76
76
|
"dialog.usageExceeded.accountRateLimit.title": "Go-grænse nået",
|
|
77
77
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -127,12 +127,14 @@ export const dict = {
|
|
|
127
127
|
"ui.tool.grep": "Grep",
|
|
128
128
|
"ui.tool.webfetch": "Webhentning",
|
|
129
129
|
"ui.tool.websearch": "Websøgning",
|
|
130
|
+
"ui.tool.websearch.provider": "{{provider}} Websøgning",
|
|
130
131
|
"ui.tool.shell": "Shell",
|
|
131
132
|
"ui.tool.patch": "Patch",
|
|
132
133
|
"ui.tool.todos": "Opgaver",
|
|
133
134
|
"ui.tool.todos.read": "Læs opgaver",
|
|
134
135
|
"ui.tool.questions": "Spørgsmål",
|
|
135
|
-
"ui.tool.
|
|
136
|
+
"ui.tool.questions.numbered": "Spørgsmål {{number}}",
|
|
137
|
+
"ui.tool.agent": "{{type}}-agent",
|
|
136
138
|
"ui.tool.agent.default": "Agent",
|
|
137
139
|
|
|
138
140
|
"ui.common.file.one": "fil",
|
|
@@ -141,6 +143,8 @@ export const dict = {
|
|
|
141
143
|
"ui.common.question.other": "spørgsmål",
|
|
142
144
|
|
|
143
145
|
"ui.common.add": "Tilføj",
|
|
146
|
+
"ui.common.clear": "Ryd",
|
|
147
|
+
"ui.common.file": "Fil",
|
|
144
148
|
"ui.common.back": "Tilbage",
|
|
145
149
|
"ui.common.cancel": "Annuller",
|
|
146
150
|
"ui.common.confirm": "Bekræft",
|
|
@@ -184,9 +188,29 @@ export const dict = {
|
|
|
184
188
|
"ui.fileSearch.close": "Luk søgning",
|
|
185
189
|
"ui.tool.task": "Opgave",
|
|
186
190
|
"ui.tool.skill": "Færdighed",
|
|
187
|
-
"ui.basicTool.called": "Kaldte `{{tool}}`",
|
|
188
|
-
"ui.toolErrorCard.failed": "
|
|
191
|
+
"ui.basicTool.called": "Kaldte værktøjet `{{tool}}`",
|
|
192
|
+
"ui.toolErrorCard.failed": "Mislykkedes",
|
|
189
193
|
"ui.toolErrorCard.copyError": "Kopier fejl",
|
|
190
194
|
"ui.message.duration.seconds": "{{count}}s",
|
|
191
195
|
"ui.message.duration.minutesSeconds": "{{minutes}}m {{seconds}}s",
|
|
196
|
+
"ui.lineComment.contextPlaceholder": "Tilføj kontekst til denne ændring",
|
|
197
|
+
|
|
198
|
+
"ui.promptInput.noMatchingItems": "Ingen matchende elementer",
|
|
199
|
+
"ui.promptInput.commands": "Kommandoer",
|
|
200
|
+
"ui.promptInput.dropFiles": "Slip filer for at vedhæfte dem",
|
|
201
|
+
"ui.promptInput.removeAttachment": "Fjern vedhæftet fil",
|
|
202
|
+
"ui.promptInput.label": "Prompt",
|
|
203
|
+
"ui.promptInput.placeholder.shell": "Indtast shell-kommando...",
|
|
204
|
+
"ui.promptInput.placeholder.normal": "Spørg om hvad som helst, {{slash}} for kommandoer, {{at}} for kontekst...",
|
|
205
|
+
"ui.promptInput.add": "Tilføj billeder og filer",
|
|
206
|
+
"ui.promptInput.attachments": "Billeder og filer",
|
|
207
|
+
"ui.promptInput.context": "Kontekst",
|
|
208
|
+
"ui.promptInput.shell": "Shell-kommando",
|
|
209
|
+
"ui.promptInput.chooseAgent": "Vælg agent",
|
|
210
|
+
"ui.promptInput.chooseModel": "Vælg model",
|
|
211
|
+
"ui.promptInput.chooseVariant": "Vælg modelvariant",
|
|
212
|
+
"ui.promptInput.send": "Send",
|
|
213
|
+
"ui.promptInput.stop": "Stop",
|
|
214
|
+
|
|
215
|
+
"ui.tabs.close": "Luk fane",
|
|
192
216
|
}
|
package/src/i18n/de.ts
CHANGED
|
@@ -12,13 +12,13 @@ export const dict = {
|
|
|
12
12
|
"ui.sessionReview.openFile": "Datei öffnen",
|
|
13
13
|
"ui.sessionReview.selection.line": "Zeile {{line}}",
|
|
14
14
|
"ui.sessionReview.selection.lines": "Zeilen {{start}}-{{end}}",
|
|
15
|
-
"ui.sessionReview.expandAll": "Alle
|
|
16
|
-
"ui.sessionReview.collapseAll": "Alle
|
|
15
|
+
"ui.sessionReview.expandAll": "Alle ausklappen",
|
|
16
|
+
"ui.sessionReview.collapseAll": "Alle einklappen",
|
|
17
17
|
|
|
18
18
|
"ui.sessionReview.change.added": "Hinzugefügt",
|
|
19
19
|
"ui.sessionReview.change.removed": "Entfernt",
|
|
20
20
|
"ui.sessionReview.change.modified": "Geändert",
|
|
21
|
-
"ui.sessionReview.image.loading": "Wird geladen
|
|
21
|
+
"ui.sessionReview.image.loading": "Wird geladen…",
|
|
22
22
|
"ui.sessionReview.image.placeholder": "Bild",
|
|
23
23
|
"ui.sessionReview.largeDiff.title": "Diff zu groß zum Rendern",
|
|
24
24
|
"ui.sessionReview.largeDiff.meta": "Limit: {{limit}} geänderte Zeilen. Aktuell: {{current}} geänderte Zeilen.",
|
|
@@ -37,15 +37,15 @@ export const dict = {
|
|
|
37
37
|
"ui.sessionReviewV2.empty.noGit.description":
|
|
38
38
|
"Änderungen in diesem Projekt verfolgen, überprüfen und rückgängig machen",
|
|
39
39
|
"ui.sessionReviewV2.empty.noGit.action": "Git-Repository erstellen",
|
|
40
|
-
"ui.sessionReviewV2.empty.noGit.actionLoading": "Git-Repository wird erstellt
|
|
40
|
+
"ui.sessionReviewV2.empty.noGit.actionLoading": "Git-Repository wird erstellt…",
|
|
41
41
|
"ui.sessionReviewV2.empty.changes.title": "Noch keine Dateiänderungen",
|
|
42
42
|
"ui.sessionReviewV2.empty.changes.description": "Projektänderungen werden hier angezeigt",
|
|
43
|
-
"ui.fileMedia.kind.image": "
|
|
44
|
-
"ui.fileMedia.kind.audio": "
|
|
45
|
-
"ui.fileMedia.state.removed": "{{kind}} entfernt",
|
|
46
|
-
"ui.fileMedia.state.loading": "{{kind}} wird geladen",
|
|
47
|
-
"ui.fileMedia.state.error": "
|
|
48
|
-
"ui.fileMedia.state.unavailable": "{{kind}} nicht verfügbar",
|
|
43
|
+
"ui.fileMedia.kind.image": "Bild",
|
|
44
|
+
"ui.fileMedia.kind.audio": "Audio",
|
|
45
|
+
"ui.fileMedia.state.removed": "{{kind}} entfernt.",
|
|
46
|
+
"ui.fileMedia.state.loading": "{{kind}} wird geladen…",
|
|
47
|
+
"ui.fileMedia.state.error": "{{kind}} konnte nicht geladen werden.",
|
|
48
|
+
"ui.fileMedia.state.unavailable": "Vorschau für {{kind}} nicht verfügbar.",
|
|
49
49
|
"ui.fileMedia.binary.title": "Binärdatei",
|
|
50
50
|
"ui.fileMedia.binary.description.path":
|
|
51
51
|
"{{path}} kann nicht angezeigt werden, da es sich um eine Binärdatei handelt.",
|
|
@@ -68,35 +68,35 @@ export const dict = {
|
|
|
68
68
|
"ui.sessionTurn.diffs.showLess": "Weniger anzeigen",
|
|
69
69
|
"ui.sessionTurn.diffs.more": "+{{count}} weitere",
|
|
70
70
|
|
|
71
|
-
"ui.sessionTurn.retry.retrying": "
|
|
71
|
+
"ui.sessionTurn.retry.retrying": "Erneuter Versuch",
|
|
72
72
|
"ui.sessionTurn.retry.inSeconds": "in {{seconds}}s",
|
|
73
73
|
"ui.sessionTurn.retry.attempt": "Versuch #{{attempt}}",
|
|
74
|
-
"ui.sessionTurn.retry.attemptLine": "{{line}}
|
|
75
|
-
"ui.sessionTurn.retry.geminiHot": "
|
|
74
|
+
"ui.sessionTurn.retry.attemptLine": "{{line}} – Versuch #{{attempt}}",
|
|
75
|
+
"ui.sessionTurn.retry.geminiHot": "Gemini ist gerade stark überlastet",
|
|
76
76
|
"ui.sessionTurn.error.freeUsageExceeded": "Kostenloses Nutzungslimit überschritten",
|
|
77
77
|
"ui.sessionTurn.error.addCredits": "Guthaben aufladen",
|
|
78
78
|
|
|
79
79
|
"dialog.usageExceeded.freeTier.title": "Kostenloses Limit erreicht",
|
|
80
80
|
"dialog.usageExceeded.freeTier.description":
|
|
81
|
-
"
|
|
81
|
+
"OpenCode Go abonnieren und zuverlässigen Zugriff auf die besten Open-Source-Modelle erhalten, ab 5 $ pro Monat.",
|
|
82
82
|
"dialog.usageExceeded.freeTier.actionLabel": "Abonnieren",
|
|
83
83
|
"dialog.usageExceeded.accountRateLimit.title": "Go-Limit erreicht",
|
|
84
84
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
85
|
-
"Nutzungslimit erreicht. Um dieses Modell jetzt weiter zu nutzen,
|
|
85
|
+
"Nutzungslimit erreicht. Um dieses Modell jetzt weiter zu nutzen, die Nutzung über das verfügbare Guthaben aktivieren",
|
|
86
86
|
"dialog.usageExceeded.accountRateLimit.actionLabel": "Einstellungen öffnen",
|
|
87
87
|
|
|
88
|
-
"ui.sessionTurn.status.delegating": "Arbeit
|
|
89
|
-
"ui.sessionTurn.status.planning": "Nächste Schritte
|
|
90
|
-
"ui.sessionTurn.status.gatheringContext": "
|
|
91
|
-
"ui.sessionTurn.status.gatheredContext": "
|
|
92
|
-
"ui.sessionTurn.status.searchingCodebase": "Codebasis
|
|
93
|
-
"ui.sessionTurn.status.searchingWeb": "Web
|
|
94
|
-
"ui.sessionTurn.status.makingEdits": "Änderungen
|
|
95
|
-
"ui.sessionTurn.status.runningCommands": "Befehle
|
|
96
|
-
"ui.sessionTurn.status.thinking": "
|
|
97
|
-
"ui.sessionTurn.status.thinkingWithTopic": "
|
|
98
|
-
"ui.sessionTurn.status.gatheringThoughts": "Gedanken
|
|
99
|
-
"ui.sessionTurn.status.consideringNextSteps": "Nächste Schritte
|
|
88
|
+
"ui.sessionTurn.status.delegating": "Arbeit wird delegiert",
|
|
89
|
+
"ui.sessionTurn.status.planning": "Nächste Schritte werden geplant",
|
|
90
|
+
"ui.sessionTurn.status.gatheringContext": "Wird erkundet",
|
|
91
|
+
"ui.sessionTurn.status.gatheredContext": "Erkundung abgeschlossen",
|
|
92
|
+
"ui.sessionTurn.status.searchingCodebase": "Codebasis wird durchsucht",
|
|
93
|
+
"ui.sessionTurn.status.searchingWeb": "Web wird durchsucht",
|
|
94
|
+
"ui.sessionTurn.status.makingEdits": "Änderungen werden vorgenommen",
|
|
95
|
+
"ui.sessionTurn.status.runningCommands": "Befehle werden ausgeführt",
|
|
96
|
+
"ui.sessionTurn.status.thinking": "Denkt nach",
|
|
97
|
+
"ui.sessionTurn.status.thinkingWithTopic": "Denkt nach: {{topic}}",
|
|
98
|
+
"ui.sessionTurn.status.gatheringThoughts": "Gedanken werden gesammelt",
|
|
99
|
+
"ui.sessionTurn.status.consideringNextSteps": "Nächste Schritte werden erwogen",
|
|
100
100
|
|
|
101
101
|
"ui.messagePart.questions.dismissed": "Fragen verworfen",
|
|
102
102
|
"ui.messagePart.compaction": "Sitzung komprimiert",
|
|
@@ -125,21 +125,23 @@ export const dict = {
|
|
|
125
125
|
"ui.textField.copied": "Kopiert",
|
|
126
126
|
|
|
127
127
|
"ui.imagePreview.alt": "Bildvorschau",
|
|
128
|
-
"ui.scrollView.ariaLabel": "
|
|
128
|
+
"ui.scrollView.ariaLabel": "Scrollbarer Inhalt",
|
|
129
129
|
|
|
130
130
|
"ui.tool.read": "Lesen",
|
|
131
131
|
"ui.tool.loaded": "Geladen",
|
|
132
132
|
"ui.tool.list": "Auflisten",
|
|
133
133
|
"ui.tool.glob": "Glob",
|
|
134
134
|
"ui.tool.grep": "Grep",
|
|
135
|
-
"ui.tool.webfetch": "
|
|
136
|
-
"ui.tool.websearch": "
|
|
135
|
+
"ui.tool.webfetch": "Web-Abruf",
|
|
136
|
+
"ui.tool.websearch": "Web-Suche",
|
|
137
|
+
"ui.tool.websearch.provider": "{{provider}} Web-Suche",
|
|
137
138
|
"ui.tool.shell": "Shell",
|
|
138
139
|
"ui.tool.patch": "Patch",
|
|
139
140
|
"ui.tool.todos": "Aufgaben",
|
|
140
141
|
"ui.tool.todos.read": "Aufgaben lesen",
|
|
141
142
|
"ui.tool.questions": "Fragen",
|
|
142
|
-
"ui.tool.
|
|
143
|
+
"ui.tool.questions.numbered": "Fragen {{number}}",
|
|
144
|
+
"ui.tool.agent": "{{type}}-Agent",
|
|
143
145
|
"ui.tool.agent.default": "Agent",
|
|
144
146
|
|
|
145
147
|
"ui.common.file.one": "Datei",
|
|
@@ -148,6 +150,8 @@ export const dict = {
|
|
|
148
150
|
"ui.common.question.other": "Fragen",
|
|
149
151
|
|
|
150
152
|
"ui.common.add": "Hinzufügen",
|
|
153
|
+
"ui.common.clear": "Leeren",
|
|
154
|
+
"ui.common.file": "Datei",
|
|
151
155
|
"ui.common.back": "Zurück",
|
|
152
156
|
"ui.common.cancel": "Abbrechen",
|
|
153
157
|
"ui.common.confirm": "Bestätigen",
|
|
@@ -161,8 +165,8 @@ export const dict = {
|
|
|
161
165
|
"ui.permission.allowAlways": "Immer erlauben",
|
|
162
166
|
"ui.permission.allowOnce": "Einmal erlauben",
|
|
163
167
|
|
|
164
|
-
"ui.message.expand": "Nachricht
|
|
165
|
-
"ui.message.collapse": "Nachricht
|
|
168
|
+
"ui.message.expand": "Nachricht ausklappen",
|
|
169
|
+
"ui.message.collapse": "Nachricht einklappen",
|
|
166
170
|
"ui.message.copy": "Kopieren",
|
|
167
171
|
"ui.message.copyMessage": "Nachricht kopieren",
|
|
168
172
|
"ui.message.forkMessage": "In neue Sitzung abzweigen",
|
|
@@ -170,7 +174,7 @@ export const dict = {
|
|
|
170
174
|
"ui.message.copyResponse": "Antwort kopieren",
|
|
171
175
|
"ui.message.copied": "Kopiert!",
|
|
172
176
|
"ui.message.interrupted": "Unterbrochen",
|
|
173
|
-
"ui.message.queued": "In Warteschlange",
|
|
177
|
+
"ui.message.queued": "In der Warteschlange",
|
|
174
178
|
"ui.message.attachment.alt": "Anhang",
|
|
175
179
|
|
|
176
180
|
"ui.patch.action.deleted": "Gelöscht",
|
|
@@ -183,17 +187,35 @@ export const dict = {
|
|
|
183
187
|
"ui.question.review.notAnswered": "(nicht beantwortet)",
|
|
184
188
|
"ui.question.multiHint": "Alle zutreffenden auswählen",
|
|
185
189
|
"ui.question.singleHint": "Eine Antwort auswählen",
|
|
186
|
-
"ui.question.custom.placeholder": "
|
|
190
|
+
"ui.question.custom.placeholder": "Eigene Antwort eingeben…",
|
|
187
191
|
|
|
188
192
|
"ui.fileSearch.placeholder": "Suchen",
|
|
189
193
|
"ui.fileSearch.previousMatch": "Vorheriges Ergebnis",
|
|
190
194
|
"ui.fileSearch.nextMatch": "Nächstes Ergebnis",
|
|
191
195
|
"ui.fileSearch.close": "Suche schließen",
|
|
192
196
|
"ui.tool.task": "Aufgabe",
|
|
193
|
-
"ui.tool.skill": "
|
|
197
|
+
"ui.tool.skill": "Skill",
|
|
194
198
|
"ui.basicTool.called": "`{{tool}}` aufgerufen",
|
|
195
199
|
"ui.toolErrorCard.failed": "Fehlgeschlagen",
|
|
196
200
|
"ui.toolErrorCard.copyError": "Fehler kopieren",
|
|
197
201
|
"ui.message.duration.seconds": "{{count}}s",
|
|
198
202
|
"ui.message.duration.minutesSeconds": "{{minutes}}m {{seconds}}s",
|
|
203
|
+
"ui.lineComment.contextPlaceholder": "Kontext zu dieser Änderung hinzufügen",
|
|
204
|
+
"ui.promptInput.noMatchingItems": "Keine passenden Einträge",
|
|
205
|
+
"ui.promptInput.commands": "Befehle",
|
|
206
|
+
"ui.promptInput.dropFiles": "Dateien zum Anhängen hier ablegen",
|
|
207
|
+
"ui.promptInput.removeAttachment": "Anhang entfernen",
|
|
208
|
+
"ui.promptInput.label": "Prompt",
|
|
209
|
+
"ui.promptInput.placeholder.shell": "Shell-Befehl eingeben…",
|
|
210
|
+
"ui.promptInput.placeholder.normal": "Beliebige Frage stellen, {{slash}} für Befehle, {{at}} für Kontext…",
|
|
211
|
+
"ui.promptInput.add": "Bilder und Dateien hinzufügen",
|
|
212
|
+
"ui.promptInput.attachments": "Bilder und Dateien",
|
|
213
|
+
"ui.promptInput.context": "Kontext",
|
|
214
|
+
"ui.promptInput.shell": "Shell-Befehl",
|
|
215
|
+
"ui.promptInput.chooseAgent": "Agenten auswählen",
|
|
216
|
+
"ui.promptInput.chooseModel": "Modell auswählen",
|
|
217
|
+
"ui.promptInput.chooseVariant": "Modellvariante auswählen",
|
|
218
|
+
"ui.promptInput.send": "Senden",
|
|
219
|
+
"ui.promptInput.stop": "Stoppen",
|
|
220
|
+
"ui.tabs.close": "Tab schließen",
|
|
199
221
|
} satisfies Partial<Record<Keys, string>>
|
package/src/i18n/en.ts
CHANGED
|
@@ -51,6 +51,7 @@ export const dict: Record<string, string> = {
|
|
|
51
51
|
"ui.lineComment.editorLabel.prefix": "Commenting on ",
|
|
52
52
|
"ui.lineComment.editorLabel.suffix": "",
|
|
53
53
|
"ui.lineComment.placeholder": "Add comment",
|
|
54
|
+
"ui.lineComment.contextPlaceholder": "Add context for this change",
|
|
54
55
|
"ui.lineComment.submit": "Comment",
|
|
55
56
|
"ui.lineComment.cancel": "Cancel",
|
|
56
57
|
|
|
@@ -121,6 +122,25 @@ export const dict: Record<string, string> = {
|
|
|
121
122
|
|
|
122
123
|
"ui.messageNav.newMessage": "New message",
|
|
123
124
|
|
|
125
|
+
"ui.promptInput.noMatchingItems": "No matching items",
|
|
126
|
+
"ui.promptInput.commands": "Commands",
|
|
127
|
+
"ui.promptInput.dropFiles": "Drop files to attach",
|
|
128
|
+
"ui.promptInput.removeAttachment": "Remove attachment",
|
|
129
|
+
"ui.promptInput.label": "Prompt",
|
|
130
|
+
"ui.promptInput.placeholder.shell": "Enter shell command...",
|
|
131
|
+
"ui.promptInput.placeholder.normal": "Ask anything, {{slash}} for commands, {{at}} for context...",
|
|
132
|
+
"ui.promptInput.add": "Add images and files",
|
|
133
|
+
"ui.promptInput.attachments": "Images and files",
|
|
134
|
+
"ui.promptInput.context": "Context",
|
|
135
|
+
"ui.promptInput.shell": "Shell command",
|
|
136
|
+
"ui.promptInput.chooseAgent": "Choose agent",
|
|
137
|
+
"ui.promptInput.chooseModel": "Choose model",
|
|
138
|
+
"ui.promptInput.chooseVariant": "Choose model variant",
|
|
139
|
+
"ui.promptInput.send": "Send",
|
|
140
|
+
"ui.promptInput.stop": "Stop",
|
|
141
|
+
|
|
142
|
+
"ui.tabs.close": "Close tab",
|
|
143
|
+
|
|
124
144
|
"ui.textField.copyToClipboard": "Copy to clipboard",
|
|
125
145
|
"ui.textField.copyLink": "Copy link",
|
|
126
146
|
"ui.textField.copied": "Copied",
|
|
@@ -136,11 +156,13 @@ export const dict: Record<string, string> = {
|
|
|
136
156
|
"ui.tool.task": "Task",
|
|
137
157
|
"ui.tool.webfetch": "Webfetch",
|
|
138
158
|
"ui.tool.websearch": "Web Search",
|
|
159
|
+
"ui.tool.websearch.provider": "{{provider}} Web Search",
|
|
139
160
|
"ui.tool.shell": "Shell",
|
|
140
161
|
"ui.tool.patch": "Patch",
|
|
141
162
|
"ui.tool.todos": "To-dos",
|
|
142
163
|
"ui.tool.todos.read": "Read to-dos",
|
|
143
164
|
"ui.tool.questions": "Questions",
|
|
165
|
+
"ui.tool.questions.numbered": "Questions {{number}}",
|
|
144
166
|
"ui.tool.agent": "{{type}} Agent",
|
|
145
167
|
"ui.tool.agent.default": "Agent",
|
|
146
168
|
"ui.tool.skill": "Skill",
|
|
@@ -155,6 +177,8 @@ export const dict: Record<string, string> = {
|
|
|
155
177
|
"ui.common.question.other": "questions",
|
|
156
178
|
|
|
157
179
|
"ui.common.add": "Add",
|
|
180
|
+
"ui.common.clear": "Clear",
|
|
181
|
+
"ui.common.file": "File",
|
|
158
182
|
"ui.common.back": "Back",
|
|
159
183
|
"ui.common.cancel": "Cancel",
|
|
160
184
|
"ui.common.confirm": "Confirm",
|