@opencode-ai/ui 0.0.0-next-17078 → 0.0.0-next-17079
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/am.d.ts +1 -0
- package/dist/i18n/ar.d.ts +38 -0
- package/dist/i18n/az.d.ts +1 -0
- package/dist/i18n/bg.d.ts +193 -0
- package/dist/i18n/bn.d.ts +1 -0
- package/dist/i18n/br.d.ts +26 -0
- package/dist/i18n/bs.d.ts +26 -0
- package/dist/i18n/ca.d.ts +1 -0
- package/dist/i18n/cs.d.ts +1 -0
- package/dist/i18n/da.d.ts +22 -0
- package/dist/i18n/de.d.ts +22 -0
- package/dist/i18n/dv.d.ts +1 -0
- package/dist/i18n/dz.d.ts +1 -0
- package/dist/i18n/el.d.ts +1 -0
- package/dist/i18n/es.d.ts +26 -0
- package/dist/i18n/et.d.ts +1 -0
- package/dist/i18n/fa.d.ts +1 -0
- package/dist/i18n/fi.d.ts +1 -0
- package/dist/i18n/fo.d.ts +1 -0
- package/dist/i18n/fr.d.ts +26 -0
- package/dist/i18n/hi.d.ts +1 -0
- package/dist/i18n/hr.d.ts +1 -0
- package/dist/i18n/hu.d.ts +1 -0
- package/dist/i18n/hy.d.ts +1 -0
- package/dist/i18n/id.d.ts +1 -0
- package/dist/i18n/is.d.ts +1 -0
- package/dist/i18n/it.d.ts +1 -0
- package/dist/i18n/ja.d.ts +22 -0
- package/dist/i18n/ka.d.ts +1 -0
- package/dist/i18n/km.d.ts +193 -0
- package/dist/i18n/ko.d.ts +22 -0
- package/dist/i18n/lo.d.ts +193 -0
- package/dist/i18n/lt.d.ts +1 -0
- package/dist/i18n/lv.d.ts +1 -0
- package/dist/i18n/mk.d.ts +193 -0
- package/dist/i18n/mn.d.ts +193 -0
- package/dist/i18n/ms.d.ts +1 -0
- package/dist/i18n/my.d.ts +193 -0
- package/dist/i18n/ne.d.ts +1 -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/ro.d.ts +1 -0
- package/dist/i18n/ru.d.ts +30 -0
- package/dist/i18n/si.d.ts +1 -0
- package/dist/i18n/sk.d.ts +1 -0
- package/dist/i18n/sl.d.ts +1 -0
- package/dist/i18n/sq.d.ts +1 -0
- package/dist/i18n/sr.d.ts +197 -0
- package/dist/i18n/sv.d.ts +1 -0
- package/dist/i18n/tg.d.ts +193 -0
- package/dist/i18n/th.d.ts +22 -0
- package/dist/i18n/tk.d.ts +1 -0
- package/dist/i18n/tr.d.ts +22 -0
- package/dist/i18n/ur.d.ts +1 -0
- package/dist/i18n/uz.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/dist/v2/components/toast-v2.d.ts +19 -10
- package/package.json +3 -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/provider-icons/sprite.svg +2 -27
- 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/am.ts +194 -0
- package/src/i18n/ar.ts +62 -22
- package/src/i18n/az.ts +195 -0
- package/src/i18n/bg.ts +195 -0
- package/src/i18n/bn.ts +197 -0
- package/src/i18n/br.ts +34 -6
- package/src/i18n/bs.ts +51 -23
- package/src/i18n/ca.ts +199 -0
- package/src/i18n/cs.ts +203 -0
- package/src/i18n/da.ts +36 -12
- package/src/i18n/de.ts +58 -36
- package/src/i18n/dv.ts +196 -0
- package/src/i18n/dz.ts +197 -0
- package/src/i18n/el.ts +195 -0
- package/src/i18n/en.ts +24 -0
- package/src/i18n/es.ts +45 -17
- package/src/i18n/et.ts +195 -0
- package/src/i18n/fa.ts +195 -0
- package/src/i18n/fi.ts +195 -0
- package/src/i18n/fo.ts +195 -0
- package/src/i18n/fr.ts +51 -21
- package/src/i18n/hi.ts +197 -0
- package/src/i18n/hr.ts +200 -0
- package/src/i18n/hu.ts +197 -0
- package/src/i18n/hy.ts +195 -0
- package/src/i18n/id.ts +217 -0
- package/src/i18n/is.ts +195 -0
- package/src/i18n/it.ts +200 -0
- package/src/i18n/ja.ts +29 -5
- package/src/i18n/ka.ts +195 -0
- package/src/i18n/km.ts +196 -0
- package/src/i18n/ko.ts +36 -12
- package/src/i18n/lo.ts +195 -0
- package/src/i18n/lt.ts +203 -0
- package/src/i18n/lv.ts +199 -0
- package/src/i18n/mk.ts +195 -0
- package/src/i18n/mn.ts +195 -0
- package/src/i18n/ms.ts +195 -0
- package/src/i18n/my.ts +196 -0
- package/src/i18n/ne.ts +197 -0
- package/src/i18n/nl.ts +195 -0
- package/src/i18n/no.ts +47 -23
- package/src/i18n/pa.ts +196 -0
- package/src/i18n/pl.ts +57 -24
- package/src/i18n/ro.ts +199 -0
- package/src/i18n/ru.ts +55 -23
- package/src/i18n/si.ts +195 -0
- package/src/i18n/sk.ts +203 -0
- package/src/i18n/sl.ts +204 -0
- package/src/i18n/sq.ts +195 -0
- package/src/i18n/sr.ts +200 -0
- package/src/i18n/sv.ts +195 -0
- package/src/i18n/tg.ts +195 -0
- package/src/i18n/th.ts +44 -21
- package/src/i18n/tk.ts +195 -0
- package/src/i18n/tr.ts +49 -25
- package/src/i18n/uk.ts +47 -15
- package/src/i18n/ur.ts +196 -0
- package/src/i18n/uz.ts +198 -0
- package/src/i18n/vi.ts +195 -0
- package/src/i18n/zh.ts +52 -29
- package/src/i18n/zht.ts +45 -22
- package/src/theme/themes/oc-2.json +4 -2
- package/src/v2/components/button-v2.css +2 -2
- 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 -6
- 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.css +132 -122
- package/src/v2/components/toast-v2.tsx +208 -73
- package/dist/context/marked-code-span.d.ts +0 -10
- package/src/context/marked-code-span.ts +0 -17
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,10 +127,12 @@ 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.questions": "Spørgsmål",
|
|
133
|
-
"ui.tool.
|
|
134
|
+
"ui.tool.questions.numbered": "Spørgsmål {{number}}",
|
|
135
|
+
"ui.tool.agent": "{{type}}-agent",
|
|
134
136
|
"ui.tool.agent.default": "Agent",
|
|
135
137
|
|
|
136
138
|
"ui.common.file.one": "fil",
|
|
@@ -139,6 +141,8 @@ export const dict = {
|
|
|
139
141
|
"ui.common.question.other": "spørgsmål",
|
|
140
142
|
|
|
141
143
|
"ui.common.add": "Tilføj",
|
|
144
|
+
"ui.common.clear": "Ryd",
|
|
145
|
+
"ui.common.file": "Fil",
|
|
142
146
|
"ui.common.back": "Tilbage",
|
|
143
147
|
"ui.common.cancel": "Annuller",
|
|
144
148
|
"ui.common.confirm": "Bekræft",
|
|
@@ -182,9 +186,29 @@ export const dict = {
|
|
|
182
186
|
"ui.fileSearch.close": "Luk søgning",
|
|
183
187
|
"ui.tool.task": "Opgave",
|
|
184
188
|
"ui.tool.skill": "Færdighed",
|
|
185
|
-
"ui.basicTool.called": "Kaldte `{{tool}}`",
|
|
186
|
-
"ui.toolErrorCard.failed": "
|
|
189
|
+
"ui.basicTool.called": "Kaldte værktøjet `{{tool}}`",
|
|
190
|
+
"ui.toolErrorCard.failed": "Mislykkedes",
|
|
187
191
|
"ui.toolErrorCard.copyError": "Kopier fejl",
|
|
188
192
|
"ui.message.duration.seconds": "{{count}}s",
|
|
189
193
|
"ui.message.duration.minutesSeconds": "{{minutes}}m {{seconds}}s",
|
|
194
|
+
"ui.lineComment.contextPlaceholder": "Tilføj kontekst til denne ændring",
|
|
195
|
+
|
|
196
|
+
"ui.promptInput.noMatchingItems": "Ingen matchende elementer",
|
|
197
|
+
"ui.promptInput.commands": "Kommandoer",
|
|
198
|
+
"ui.promptInput.dropFiles": "Slip filer for at vedhæfte dem",
|
|
199
|
+
"ui.promptInput.removeAttachment": "Fjern vedhæftet fil",
|
|
200
|
+
"ui.promptInput.label": "Prompt",
|
|
201
|
+
"ui.promptInput.placeholder.shell": "Indtast shell-kommando...",
|
|
202
|
+
"ui.promptInput.placeholder.normal": "Spørg om hvad som helst, {{slash}} for kommandoer, {{at}} for kontekst...",
|
|
203
|
+
"ui.promptInput.add": "Tilføj billeder og filer",
|
|
204
|
+
"ui.promptInput.attachments": "Billeder og filer",
|
|
205
|
+
"ui.promptInput.context": "Kontekst",
|
|
206
|
+
"ui.promptInput.shell": "Shell-kommando",
|
|
207
|
+
"ui.promptInput.chooseAgent": "Vælg agent",
|
|
208
|
+
"ui.promptInput.chooseModel": "Vælg model",
|
|
209
|
+
"ui.promptInput.chooseVariant": "Vælg modelvariant",
|
|
210
|
+
"ui.promptInput.send": "Send",
|
|
211
|
+
"ui.promptInput.stop": "Stop",
|
|
212
|
+
|
|
213
|
+
"ui.tabs.close": "Luk fane",
|
|
190
214
|
}
|
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,19 +125,21 @@ 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.questions": "Fragen",
|
|
140
|
-
"ui.tool.
|
|
141
|
+
"ui.tool.questions.numbered": "Fragen {{number}}",
|
|
142
|
+
"ui.tool.agent": "{{type}}-Agent",
|
|
141
143
|
"ui.tool.agent.default": "Agent",
|
|
142
144
|
|
|
143
145
|
"ui.common.file.one": "Datei",
|
|
@@ -146,6 +148,8 @@ export const dict = {
|
|
|
146
148
|
"ui.common.question.other": "Fragen",
|
|
147
149
|
|
|
148
150
|
"ui.common.add": "Hinzufügen",
|
|
151
|
+
"ui.common.clear": "Leeren",
|
|
152
|
+
"ui.common.file": "Datei",
|
|
149
153
|
"ui.common.back": "Zurück",
|
|
150
154
|
"ui.common.cancel": "Abbrechen",
|
|
151
155
|
"ui.common.confirm": "Bestätigen",
|
|
@@ -159,8 +163,8 @@ export const dict = {
|
|
|
159
163
|
"ui.permission.allowAlways": "Immer erlauben",
|
|
160
164
|
"ui.permission.allowOnce": "Einmal erlauben",
|
|
161
165
|
|
|
162
|
-
"ui.message.expand": "Nachricht
|
|
163
|
-
"ui.message.collapse": "Nachricht
|
|
166
|
+
"ui.message.expand": "Nachricht ausklappen",
|
|
167
|
+
"ui.message.collapse": "Nachricht einklappen",
|
|
164
168
|
"ui.message.copy": "Kopieren",
|
|
165
169
|
"ui.message.copyMessage": "Nachricht kopieren",
|
|
166
170
|
"ui.message.forkMessage": "In neue Sitzung abzweigen",
|
|
@@ -168,7 +172,7 @@ export const dict = {
|
|
|
168
172
|
"ui.message.copyResponse": "Antwort kopieren",
|
|
169
173
|
"ui.message.copied": "Kopiert!",
|
|
170
174
|
"ui.message.interrupted": "Unterbrochen",
|
|
171
|
-
"ui.message.queued": "In Warteschlange",
|
|
175
|
+
"ui.message.queued": "In der Warteschlange",
|
|
172
176
|
"ui.message.attachment.alt": "Anhang",
|
|
173
177
|
|
|
174
178
|
"ui.patch.action.deleted": "Gelöscht",
|
|
@@ -181,17 +185,35 @@ export const dict = {
|
|
|
181
185
|
"ui.question.review.notAnswered": "(nicht beantwortet)",
|
|
182
186
|
"ui.question.multiHint": "Alle zutreffenden auswählen",
|
|
183
187
|
"ui.question.singleHint": "Eine Antwort auswählen",
|
|
184
|
-
"ui.question.custom.placeholder": "
|
|
188
|
+
"ui.question.custom.placeholder": "Eigene Antwort eingeben…",
|
|
185
189
|
|
|
186
190
|
"ui.fileSearch.placeholder": "Suchen",
|
|
187
191
|
"ui.fileSearch.previousMatch": "Vorheriges Ergebnis",
|
|
188
192
|
"ui.fileSearch.nextMatch": "Nächstes Ergebnis",
|
|
189
193
|
"ui.fileSearch.close": "Suche schließen",
|
|
190
194
|
"ui.tool.task": "Aufgabe",
|
|
191
|
-
"ui.tool.skill": "
|
|
195
|
+
"ui.tool.skill": "Skill",
|
|
192
196
|
"ui.basicTool.called": "`{{tool}}` aufgerufen",
|
|
193
197
|
"ui.toolErrorCard.failed": "Fehlgeschlagen",
|
|
194
198
|
"ui.toolErrorCard.copyError": "Fehler kopieren",
|
|
195
199
|
"ui.message.duration.seconds": "{{count}}s",
|
|
196
200
|
"ui.message.duration.minutesSeconds": "{{minutes}}m {{seconds}}s",
|
|
201
|
+
"ui.lineComment.contextPlaceholder": "Kontext zu dieser Änderung hinzufügen",
|
|
202
|
+
"ui.promptInput.noMatchingItems": "Keine passenden Einträge",
|
|
203
|
+
"ui.promptInput.commands": "Befehle",
|
|
204
|
+
"ui.promptInput.dropFiles": "Dateien zum Anhängen hier ablegen",
|
|
205
|
+
"ui.promptInput.removeAttachment": "Anhang entfernen",
|
|
206
|
+
"ui.promptInput.label": "Prompt",
|
|
207
|
+
"ui.promptInput.placeholder.shell": "Shell-Befehl eingeben…",
|
|
208
|
+
"ui.promptInput.placeholder.normal": "Beliebige Frage stellen, {{slash}} für Befehle, {{at}} für Kontext…",
|
|
209
|
+
"ui.promptInput.add": "Bilder und Dateien hinzufügen",
|
|
210
|
+
"ui.promptInput.attachments": "Bilder und Dateien",
|
|
211
|
+
"ui.promptInput.context": "Kontext",
|
|
212
|
+
"ui.promptInput.shell": "Shell-Befehl",
|
|
213
|
+
"ui.promptInput.chooseAgent": "Agenten auswählen",
|
|
214
|
+
"ui.promptInput.chooseModel": "Modell auswählen",
|
|
215
|
+
"ui.promptInput.chooseVariant": "Modellvariante auswählen",
|
|
216
|
+
"ui.promptInput.send": "Senden",
|
|
217
|
+
"ui.promptInput.stop": "Stoppen",
|
|
218
|
+
"ui.tabs.close": "Tab schließen",
|
|
197
219
|
} satisfies Partial<Record<Keys, string>>
|
package/src/i18n/dv.ts
ADDED
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
export const dict: Record<string, string> = {
|
|
2
|
+
"ui.sessionReview.title": "ސެޝަން ބަދަލުވެއެވެ",
|
|
3
|
+
"ui.sessionReview.title.git": "Git ބަދަލުވެއެވެ",
|
|
4
|
+
"ui.sessionReview.title.branch": "ގޮފި ބަދަލުކުރުން",
|
|
5
|
+
"ui.sessionReview.title.lastTurn": "އެންމެ ފަހު ޓާން ބަދަލުވެއެވެ",
|
|
6
|
+
"ui.sessionReview.diffStyle.unified": "ޔުނިފައިޑް",
|
|
7
|
+
"ui.sessionReview.diffStyle.split": "ބައިކުރުން",
|
|
8
|
+
"ui.sessionReview.expandAll": "ހުރިހާ ކަމެއް ފުޅާކުރުން",
|
|
9
|
+
"ui.sessionReview.collapseAll": "ހުރިހާ އެއްޗެއް ފުނޑުފުނޑުކޮށްލާށެވެ",
|
|
10
|
+
"ui.sessionReview.change.added": "އިތުރުކޮށްފިއެވެ",
|
|
11
|
+
"ui.sessionReview.change.removed": "ނައްތާލެވިއްޖެއެވެ",
|
|
12
|
+
"ui.sessionReview.change.modified": "ބަދަލުކޮށްފައި",
|
|
13
|
+
"ui.sessionReview.image.loading": "ލޯޑިންގ...",
|
|
14
|
+
"ui.sessionReview.image.placeholder": "ފޮޓޯ",
|
|
15
|
+
"ui.sessionReview.largeDiff.title": "ޑިފް މާ ބޮޑު ރެންޑަރ ކުރަން",
|
|
16
|
+
"ui.sessionReview.largeDiff.meta":
|
|
17
|
+
"ލިމިޓް: {{limit}} ބަދަލުކޮށްފައިވާ ލައިންތަކެވެ. މިހާރު: {{current}} ބަދަލުކޮށްފައިވަނީ ލައިންތަކެވެ.",
|
|
18
|
+
"ui.sessionReview.largeDiff.renderAnyway": "ކޮންމެ ގޮތެއްވިޔަސް ރެންޑަރ ކޮށްލާށެވެ",
|
|
19
|
+
"ui.sessionReviewV2.expandMode": "އެކްސްޕެންޑް ނުވަތަ ކޮލަޕްސް ޑިފް",
|
|
20
|
+
"ui.sessionReviewV2.filterFiles": "ފައިލްތައް ފިލްޓަރ ކުރުން",
|
|
21
|
+
"ui.sessionReviewV2.toggleSidebar": "ޓޮގްލް ފައިލް ޓްރީ",
|
|
22
|
+
"ui.sessionReviewV2.showAllLines": "ހުރިހާ ސަފުހާއެއް ދައްކާށެވެ",
|
|
23
|
+
"ui.sessionReviewV2.hideNonDiffLines": "ނޮން ޑިފް ލައިންތައް ފޮރުވުން",
|
|
24
|
+
"ui.sessionReviewV2.unifiedDiff": "ޔުނިފައިޑް ޑިފް",
|
|
25
|
+
"ui.sessionReviewV2.splitDiff": "ސްޕްލިޓް ޑިފް",
|
|
26
|
+
"ui.sessionReviewV2.previousFile": "ކުރީގެ ފައިލް",
|
|
27
|
+
"ui.sessionReviewV2.nextFile": "ދެން އޮތް ފައިލް",
|
|
28
|
+
"ui.sessionReviewV2.diffView": "ޑިފް ވިއު",
|
|
29
|
+
"ui.sessionReviewV2.empty.noGit.title": "ޓްރެކް ކުރެވިފައިވާ ބަދަލެއް ނެތެވެ",
|
|
30
|
+
"ui.sessionReviewV2.empty.noGit.description": "މި މަޝްރޫޢަށް އަންނަ ބަދަލުތައް ޓްރެކްކޮށް، ރިވިއުކޮށް، އަންޑޯކުރުން",
|
|
31
|
+
"ui.sessionReviewV2.empty.noGit.action": "Git ރިޕޮޒިޓަރީ އުފެއްދުން",
|
|
32
|
+
"ui.sessionReviewV2.empty.noGit.actionLoading": "Git ރިޕޮޒިޓަރީ އުފެއްދުމުގެ މަސައްކަތް...",
|
|
33
|
+
"ui.sessionReviewV2.empty.changes.title": "އަދި ފައިލަށް ބަދަލެއް ނާދެއެވެ",
|
|
34
|
+
"ui.sessionReviewV2.empty.changes.description": "މަޝްރޫޢަށް އަންނަ ބަދަލުތައް މިތަނުން ފެންނާނެއެވެ",
|
|
35
|
+
"ui.sessionReview.openFile": "ފައިލް ހުޅުވާލާށެވެ",
|
|
36
|
+
"ui.sessionReview.selection.line": "ލައިން {{line}} އެވެ",
|
|
37
|
+
"ui.sessionReview.selection.lines": "ލައިންތައް {{start}}-{{end}}",
|
|
38
|
+
"ui.fileMedia.kind.image": "ފޮޓޯ",
|
|
39
|
+
"ui.fileMedia.kind.audio": "އޯޑިއޯ އެވެ",
|
|
40
|
+
"ui.fileMedia.state.removed": "{{kind}} ފައިލް ނައްތާލެވިއްޖެއެވެ.",
|
|
41
|
+
"ui.fileMedia.state.loading": "ލޯޑިންގ {{kind}}...",
|
|
42
|
+
"ui.fileMedia.state.error": "{{kind}} ލޯޑް ނުކުރެވޭ.",
|
|
43
|
+
"ui.fileMedia.state.unavailable": "{{kind}} ޕްރިވިއު ނުލިބެއެވެ.",
|
|
44
|
+
"ui.fileMedia.binary.title": "ބައިނަރީ ފައިލް އެވެ",
|
|
45
|
+
"ui.fileMedia.binary.description.path": "{{path}} އަކީ ބައިނަރީ އެއްޗެކެވެ.",
|
|
46
|
+
"ui.fileMedia.binary.description.default": "ބައިނަރީ ކޮންޓެންޓް",
|
|
47
|
+
"ui.lineComment.label.prefix": "ކޮމެންޓް ކޮށްލައްވާ ",
|
|
48
|
+
"ui.lineComment.label.suffix": "",
|
|
49
|
+
"ui.lineComment.editorLabel.prefix": "ކޮމެންޓް ކުރަމުންނެވެ ",
|
|
50
|
+
"ui.lineComment.editorLabel.suffix": "",
|
|
51
|
+
"ui.lineComment.placeholder": "ކޮމެންޓް އެޑް ކުރާށެވެ",
|
|
52
|
+
"ui.lineComment.contextPlaceholder": "މި ބަދަލަށް ކޮންޓެކްސްޓް އިތުރުކުރުން",
|
|
53
|
+
"ui.lineComment.submit": "ކޮމެންޓް",
|
|
54
|
+
"ui.lineComment.cancel": "ކެންސަލް",
|
|
55
|
+
"ui.sessionTurn.steps.show": "ފިޔަވަޅުތައް ދައްކާށެވެ",
|
|
56
|
+
"ui.sessionTurn.steps.hide": "ފިޔަވަޅުތައް ފޮރުވާށެވެ",
|
|
57
|
+
"ui.sessionTurn.summary.response": "ޖަވާބު",
|
|
58
|
+
"ui.sessionTurn.diff.showMore": "އިތުރު ބަދަލުތައް ދައްކާ ({{count}})",
|
|
59
|
+
"ui.sessionTurn.diffs.changed.one": "{{count}} ބަދަލުކޮށްފައިވާ ފައިލް",
|
|
60
|
+
"ui.sessionTurn.diffs.changed.other": "{{count}} ބަދަލުކޮށްފައިވާ ފައިލްތައް",
|
|
61
|
+
"ui.sessionTurn.diffs.showAll": "ހުރިހާ ކަމެއް ދައްކާ",
|
|
62
|
+
"ui.sessionTurn.diffs.showLess": "މަދުކޮށް ދައްކާ",
|
|
63
|
+
"ui.sessionTurn.diffs.more": "+{{count}} އިތުރު ފައިލްތައް",
|
|
64
|
+
"ui.sessionTurn.retry.retrying": "އަލުން މަސައްކަތް ކުރަމުންނެވެ",
|
|
65
|
+
"ui.sessionTurn.retry.inSeconds": "{{seconds}}s ގައި",
|
|
66
|
+
"ui.sessionTurn.retry.attempt": "#{{attempt}} އަށް މަސައްކަތް ކުރާށެވެ",
|
|
67
|
+
"ui.sessionTurn.retry.attemptLine": "{{line}} - #{{attempt}} އަށް މަސައްކަތް ކުރާށެވެ",
|
|
68
|
+
"ui.sessionTurn.retry.geminiHot": "ޖެމިނީ މިވަގުތު މާ ހޫނުވެއްޖެއެވެ",
|
|
69
|
+
"ui.sessionTurn.error.freeUsageExceeded": "ހިލޭ ބޭނުންކުރުން ފަހަނައަޅައި ދިޔައެވެ",
|
|
70
|
+
"ui.sessionTurn.error.addCredits": "ކްރެޑިޓްތައް އިތުރުކުރުން",
|
|
71
|
+
"dialog.usageExceeded.freeTier.title": "ހިލޭ ލިމިޓަށް އާދެވިއްޖެއެވެ",
|
|
72
|
+
"dialog.usageExceeded.freeTier.description":
|
|
73
|
+
"އެންމެ ރަނގަޅު އޮޕަން ސޯސް މޮޑެލްތަކަށް އިތުބާރުހުރި ގޮތެއްގައި އެކްސެސް ހޯދުމަށް OpenCode Go އަށް ސަބްސްކްރައިބް ކޮށްލައްވާ، މަހަކު 5 ޑޮލަރުން ފެށިގެންނެވެ.",
|
|
74
|
+
"dialog.usageExceeded.freeTier.actionLabel": "ސަބްސްކްރައިބް ކޮށްލައްވާ",
|
|
75
|
+
"dialog.usageExceeded.accountRateLimit.title": "ގޯ ލިމިޓް އާދެވުނެވެ",
|
|
76
|
+
"dialog.usageExceeded.accountRateLimit.description":
|
|
77
|
+
"ބޭނުންކުރުމުގެ ލިމިޓަށް ވާސިލްވެއްޖެއެވެ. މިހާރު މި މޮޑެލް ބޭނުން ކުރަމުން ގެންދިއުމަށްޓަކައި، ލިބިފައިވާ ބެލެންސް އިން ބޭނުންކުރުން އެނެބަލް ކުރާށެވެ",
|
|
78
|
+
"dialog.usageExceeded.accountRateLimit.actionLabel": "ސެޓިންގސް ހުޅުވާލާށެވެ",
|
|
79
|
+
"ui.sessionTurn.status.delegating": "މަސައްކަތް ހަވާލުކުރުން",
|
|
80
|
+
"ui.sessionTurn.status.planning": "ދެން އަޅަންޖެހޭ ފިޔަވަޅުތައް ރޭވުން",
|
|
81
|
+
"ui.sessionTurn.status.gatheringContext": "އެކްސްޕްލޯރ ކުރަމުންނެވެ",
|
|
82
|
+
"ui.sessionTurn.status.gatheredContext": "އެކްސްޕްލޯރ ކުރެވިއްޖެއެވެ",
|
|
83
|
+
"ui.sessionTurn.status.searchingCodebase": "ކޯޑްބޭސް ހޯދުން",
|
|
84
|
+
"ui.sessionTurn.status.searchingWeb": "ވެބްގައި ހޯދުން",
|
|
85
|
+
"ui.sessionTurn.status.makingEdits": "އެޑިޓްތައް ހެދުން",
|
|
86
|
+
"ui.sessionTurn.status.runningCommands": "ކޮމާންޑްތައް ހިންގުން",
|
|
87
|
+
"ui.sessionTurn.status.thinking": "ވިސްނައިގެންނެވެ",
|
|
88
|
+
"ui.sessionTurn.status.thinkingWithTopic": "ވިސްނުން - {{topic}}",
|
|
89
|
+
"ui.sessionTurn.status.gatheringThoughts": "ޚިޔާލުތައް އެއްކުރަމުންނެވެ",
|
|
90
|
+
"ui.sessionTurn.status.consideringNextSteps": "ދެން އަޅަންޖެހޭ ފިޔަވަޅުތަކަށް ވިސްނަމުންނެވެ",
|
|
91
|
+
"ui.messagePart.diagnostic.error": "ކުށް",
|
|
92
|
+
"ui.messagePart.title.edit": "ބަދަލު ގެނައުން",
|
|
93
|
+
"ui.messagePart.title.write": "ލިޔުން",
|
|
94
|
+
"ui.messagePart.option.typeOwnAnswer": "އަމިއްލައަށް ޖަވާބު ޓައިޕް ކުރާށެވެ",
|
|
95
|
+
"ui.messagePart.review.title": "ޖަވާބުތައް މުރާޖަޢާކުރުން",
|
|
96
|
+
"ui.messagePart.questions.dismissed": "ސުވާލުތައް ބާތިލްކޮށްފި އެވެ",
|
|
97
|
+
"ui.messagePart.compaction": "ސެޝަން ކޮމްޕެކްޓް ކޮށްފައި",
|
|
98
|
+
"ui.messagePart.context.read.one": "{{count}} ކިޔާށެވެ",
|
|
99
|
+
"ui.messagePart.context.read.other": "{{count}} ކިޔައެވެ",
|
|
100
|
+
"ui.messagePart.context.search.one": "{{count}} ހޯދުން",
|
|
101
|
+
"ui.messagePart.context.search.other": "{{count}} ހޯދައެވެ",
|
|
102
|
+
"ui.messagePart.context.list.one": "{{count}} ލިސްޓެވެ",
|
|
103
|
+
"ui.messagePart.context.list.other": "{{count}} ލިސްޓްތަކެވެ",
|
|
104
|
+
"ui.list.loading": "ލޯޑިންގ",
|
|
105
|
+
"ui.list.empty": "ނަތީޖާއެއް ނެތެވެ",
|
|
106
|
+
"ui.list.clearFilter": "ފިލްޓަރ ސާފުކުރުން",
|
|
107
|
+
"ui.list.emptyWithFilter.prefix": "އެއްވެސް ނަތީޖާއެއް ނުލިބެއެވެ",
|
|
108
|
+
"ui.list.emptyWithFilter.suffix": "",
|
|
109
|
+
"ui.fileSearch.placeholder": "ހޯދުން",
|
|
110
|
+
"ui.fileSearch.previousMatch": "ކުރީ މެޗެވެ",
|
|
111
|
+
"ui.fileSearch.nextMatch": "ދެން މެޗް",
|
|
112
|
+
"ui.fileSearch.close": "ހޯދުން ބަންދުކުރުން",
|
|
113
|
+
"ui.messageNav.newMessage": "އާ މެސެޖެއް",
|
|
114
|
+
"ui.promptInput.noMatchingItems": "އެއްގޮތް އެއްޗެއް ނެތެވެ",
|
|
115
|
+
"ui.promptInput.commands": "އަމުރުތަކެވެ",
|
|
116
|
+
"ui.promptInput.dropFiles": "އެޓޭޗް ކުރަން ފައިލްތައް ވައްޓާލާށެވެ",
|
|
117
|
+
"ui.promptInput.removeAttachment": "އެޓޭޗްމަންޓް ނަގާށެވެ",
|
|
118
|
+
"ui.promptInput.label": "ޕްރޮމްޕްޓް",
|
|
119
|
+
"ui.promptInput.placeholder.shell": "ޝެލް ކޮމާންޑް ލިޔުއްވާ...",
|
|
120
|
+
"ui.promptInput.placeholder.normal": "އެއްވެސް އެއްޗެއް އަހާ، ކޮމާންޑްތަކަށް {{slash}}، ކޮންޓެކްސްޓަށް {{at}}...",
|
|
121
|
+
"ui.promptInput.add": "ތަސްވީރުތަކާއި ފައިލްތައް އިތުރުކުރުން",
|
|
122
|
+
"ui.promptInput.attachments": "ތަސްވީރުތަކާއި ފައިލްތައް",
|
|
123
|
+
"ui.promptInput.context": "ކޮންޓެކްސްޓް",
|
|
124
|
+
"ui.promptInput.shell": "ޝެލް ކޮމާންޑެވެ",
|
|
125
|
+
"ui.promptInput.chooseAgent": "އޭޖެންޓް ހޮވާށެވެ",
|
|
126
|
+
"ui.promptInput.chooseModel": "މޮޑެލް ހޮވާށެވެ",
|
|
127
|
+
"ui.promptInput.chooseVariant": "މޮޑެލް ވެރިއަންޓް ހޮވާށެވެ",
|
|
128
|
+
"ui.promptInput.send": "ފޮނުވުން",
|
|
129
|
+
"ui.promptInput.stop": "ހުއްޓުން",
|
|
130
|
+
"ui.tabs.close": "ޓެބް ބަންދުކުރުން",
|
|
131
|
+
"ui.textField.copyToClipboard": "ކްލިޕްބޯޑަށް ކޮޕީ ކުރާށެވެ",
|
|
132
|
+
"ui.textField.copyLink": "ކޮޕީ ލިންކް",
|
|
133
|
+
"ui.textField.copied": "ކޮޕީކޮށްފައި",
|
|
134
|
+
"ui.imagePreview.alt": "އިމޭޖް ޕްރިވިއު",
|
|
135
|
+
"ui.scrollView.ariaLabel": "ސްކްރޯލް ކުރެވޭ ކޮންޓެންޓެވެ",
|
|
136
|
+
"ui.tool.read": "ކިޔުން",
|
|
137
|
+
"ui.tool.loaded": "ލޯޑްކޮށްފައި",
|
|
138
|
+
"ui.tool.list": "ލިސްޓް",
|
|
139
|
+
"ui.tool.glob": "ގްލޯބް އެވެ",
|
|
140
|
+
"ui.tool.grep": "ގްރެޕް އެވެ",
|
|
141
|
+
"ui.tool.task": "މަސައްކަތެއް",
|
|
142
|
+
"ui.tool.webfetch": "ވެބްފެޗް އެވެ",
|
|
143
|
+
"ui.tool.websearch": "ވެބް ސަރޗް",
|
|
144
|
+
"ui.tool.websearch.provider": "{{provider}} ވެބް ސަރޗް",
|
|
145
|
+
"ui.tool.shell": "ޝެލް",
|
|
146
|
+
"ui.tool.patch": "ޕެޗް",
|
|
147
|
+
"ui.tool.questions": "ސުވާލުތަކެވެ",
|
|
148
|
+
"ui.tool.questions.numbered": "ސުވާލުތައް {{number}}",
|
|
149
|
+
"ui.tool.agent": "{{type}} އޭޖެންޓް",
|
|
150
|
+
"ui.tool.agent.default": "އޭޖެންޓު",
|
|
151
|
+
"ui.tool.skill": "ހުނަރު",
|
|
152
|
+
"ui.basicTool.called": "`{{tool}}` ކޯލްކޮށްފިއެވެ",
|
|
153
|
+
"ui.toolErrorCard.failed": "ފެއިލްވުން",
|
|
154
|
+
"ui.toolErrorCard.copyError": "ކޮޕީ އެރަރ",
|
|
155
|
+
"ui.common.file.one": "ފައިލް",
|
|
156
|
+
"ui.common.file.other": "ފައިލްތަކެވެ",
|
|
157
|
+
"ui.common.question.one": "ސުވާލު",
|
|
158
|
+
"ui.common.question.other": "ސުވާލުތަކެވެ",
|
|
159
|
+
"ui.common.add": "އެއްކުރުން",
|
|
160
|
+
"ui.common.clear": "ސާފުކޮށް",
|
|
161
|
+
"ui.common.file": "ފައިލް",
|
|
162
|
+
"ui.common.back": "ފަހަތް",
|
|
163
|
+
"ui.common.cancel": "ކެންސަލް",
|
|
164
|
+
"ui.common.confirm": "ޔަޤީންކުރުން",
|
|
165
|
+
"ui.common.dismiss": "ދުރުކޮށްލުން",
|
|
166
|
+
"ui.common.close": "ލެއްޕުން",
|
|
167
|
+
"ui.common.next": "ދެން",
|
|
168
|
+
"ui.common.submit": "ހުށަހެޅުން",
|
|
169
|
+
"ui.common.showMore": "އިތުރަށް ދައްކާ",
|
|
170
|
+
"ui.permission.deny": "ދޮގުކުރުން",
|
|
171
|
+
"ui.permission.allowAlways": "އަބަދުވެސް ހުއްދަ ދޭށެވެ",
|
|
172
|
+
"ui.permission.allowOnce": "އެއްފަހަރު ހުއްދަ ދޭށެވެ",
|
|
173
|
+
"ui.message.expand": "މެސެޖް ފުޅާކުރުން",
|
|
174
|
+
"ui.message.collapse": "ކޮލަޕްސް މެސެޖް",
|
|
175
|
+
"ui.message.copy": "ކޮޕީ",
|
|
176
|
+
"ui.message.copyMessage": "މެސެޖް ކޮޕީ ކުރާށެވެ",
|
|
177
|
+
"ui.message.forkMessage": "އާ ސެޝަނަށް ފޯކް ކޮށްލާށެވެ",
|
|
178
|
+
"ui.message.revertMessage": "ރިވަރޓް މެސެޖް",
|
|
179
|
+
"ui.message.copyResponse": "ކޮޕީ ޖަވާބު",
|
|
180
|
+
"ui.message.copied": "ކޮޕީކޮށްފައި",
|
|
181
|
+
"ui.message.duration.seconds": "{{count}}s",
|
|
182
|
+
"ui.message.duration.minutesSeconds": "{{minutes}}m {{seconds}}s",
|
|
183
|
+
"ui.message.interrupted": "މެދުކަނޑާލިއެވެ",
|
|
184
|
+
"ui.message.queued": "ކިޔޫގައި ތިއްބެވެ",
|
|
185
|
+
"ui.message.attachment.alt": "އެކުލެވުން",
|
|
186
|
+
"ui.patch.action.deleted": "Deleted އެވެ",
|
|
187
|
+
"ui.patch.action.created": "އުފެއްދިއެވެ",
|
|
188
|
+
"ui.patch.action.moved": "ބަދަލުވެއްޖެއެވެ",
|
|
189
|
+
"ui.patch.action.patched": "ޕެޗްކޮށްފައި",
|
|
190
|
+
"ui.question.subtitle.answered": "{{count}} ޖަވާބު ދިނެވެ",
|
|
191
|
+
"ui.question.answer.none": "(ޖަވާބެއް ނެތް)",
|
|
192
|
+
"ui.question.review.notAnswered": "(ޖަވާބެއް ނުލިބޭ)",
|
|
193
|
+
"ui.question.multiHint": "އެކަމާ ގުޅޭ ހުރިހާ ޖަވާބެއް ހޮވާށެވެ",
|
|
194
|
+
"ui.question.singleHint": "އެއް ޖަވާބެއް ހޮވާށެވެ",
|
|
195
|
+
"ui.question.custom.placeholder": "ޖަވާބު ޓައިޕް ކުރާށެވެ...",
|
|
196
|
+
}
|