@opencode-ai/ui 1.18.11 → 1.18.13

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.
Files changed (95) hide show
  1. package/dist/context/i18n.d.ts +10 -1
  2. package/dist/context/marked-parser.d.ts +2 -0
  3. package/dist/context/marked-theme-register.d.ts +1 -0
  4. package/dist/context/marked-theme.d.ts +2 -0
  5. package/dist/context/marked.d.ts +2 -9
  6. package/dist/i18n/ar.d.ts +38 -0
  7. package/dist/i18n/az.d.ts +1 -0
  8. package/dist/i18n/br.d.ts +26 -0
  9. package/dist/i18n/bs.d.ts +26 -0
  10. package/dist/i18n/da.d.ts +22 -0
  11. package/dist/i18n/de.d.ts +22 -0
  12. package/dist/i18n/es.d.ts +26 -0
  13. package/dist/i18n/fi.d.ts +1 -0
  14. package/dist/i18n/fr.d.ts +26 -0
  15. package/dist/i18n/hi.d.ts +1 -0
  16. package/dist/i18n/id.d.ts +1 -0
  17. package/dist/i18n/it.d.ts +1 -0
  18. package/dist/i18n/ja.d.ts +22 -0
  19. package/dist/i18n/ko.d.ts +22 -0
  20. package/dist/i18n/nl.d.ts +1 -0
  21. package/dist/i18n/pa.d.ts +1 -0
  22. package/dist/i18n/pl.d.ts +30 -0
  23. package/dist/i18n/ru.d.ts +30 -0
  24. package/dist/i18n/sv.d.ts +1 -0
  25. package/dist/i18n/th.d.ts +22 -0
  26. package/dist/i18n/tr.d.ts +22 -0
  27. package/dist/i18n/ur.d.ts +1 -0
  28. package/dist/i18n/vi.d.ts +1 -0
  29. package/dist/i18n/zh.d.ts +22 -0
  30. package/dist/i18n/zht.d.ts +22 -0
  31. package/package.json +2 -3
  32. package/src/components/diff-changes.css +2 -0
  33. package/src/components/dropdown-menu.css +2 -2
  34. package/src/components/icon.css +5 -0
  35. package/src/components/icon.tsx +12 -1
  36. package/src/components/provider-icons/sprite.svg +2 -27
  37. package/src/components/resize-handle.css +14 -2
  38. package/src/components/resize-handle.tsx +5 -1
  39. package/src/components/scroll-view.css +1 -1
  40. package/src/components/select.css +5 -3
  41. package/src/components/switch.css +4 -0
  42. package/src/components/tabs.css +54 -26
  43. package/src/components/tabs.tsx +1 -0
  44. package/src/components/text-field.css +2 -2
  45. package/src/components/toast.css +1 -1
  46. package/src/context/i18n.tsx +38 -2
  47. package/src/context/marked-parser.tsx +68 -0
  48. package/src/context/marked-theme-register.tsx +10 -0
  49. package/src/context/marked-theme.tsx +372 -0
  50. package/src/context/marked.tsx +20 -562
  51. package/src/i18n/ar.ts +62 -22
  52. package/src/i18n/az.ts +197 -0
  53. package/src/i18n/br.ts +34 -6
  54. package/src/i18n/bs.ts +51 -23
  55. package/src/i18n/da.ts +36 -12
  56. package/src/i18n/de.ts +58 -36
  57. package/src/i18n/en.ts +24 -0
  58. package/src/i18n/es.ts +45 -17
  59. package/src/i18n/fi.ts +197 -0
  60. package/src/i18n/fr.ts +51 -21
  61. package/src/i18n/hi.ts +199 -0
  62. package/src/i18n/id.ts +219 -0
  63. package/src/i18n/it.ts +202 -0
  64. package/src/i18n/ja.ts +29 -5
  65. package/src/i18n/ko.ts +36 -12
  66. package/src/i18n/nl.ts +197 -0
  67. package/src/i18n/no.ts +47 -23
  68. package/src/i18n/pa.ts +198 -0
  69. package/src/i18n/pl.ts +57 -24
  70. package/src/i18n/ru.ts +55 -23
  71. package/src/i18n/sv.ts +197 -0
  72. package/src/i18n/th.ts +44 -21
  73. package/src/i18n/tr.ts +49 -25
  74. package/src/i18n/uk.ts +47 -15
  75. package/src/i18n/ur.ts +198 -0
  76. package/src/i18n/vi.ts +197 -0
  77. package/src/i18n/zh.ts +52 -29
  78. package/src/i18n/zht.ts +45 -22
  79. package/src/theme/themes/oc-2.json +4 -2
  80. package/src/v2/components/dialog-v2.css +2 -2
  81. package/src/v2/components/dialog-v2.tsx +3 -1
  82. package/src/v2/components/diff-changes-v2.css +2 -0
  83. package/src/v2/components/file-tree-v2.css +6 -2
  84. package/src/v2/components/inline-input-v2.tsx +3 -1
  85. package/src/v2/components/line-comment-v2.css +1 -1
  86. package/src/v2/components/line-comment-v2.tsx +6 -4
  87. package/src/v2/components/select-v2.css +16 -5
  88. package/src/v2/components/switch-v2.css +8 -0
  89. package/src/v2/components/tabs-v2.css +4 -4
  90. package/src/v2/components/tabs-v2.tsx +4 -2
  91. package/src/v2/components/text-input-v2.css +7 -5
  92. package/src/v2/components/text-input-v2.tsx +7 -1
  93. package/src/v2/components/toast-v2.tsx +8 -4
  94. package/dist/context/marked-code-span.d.ts +0 -10
  95. package/src/context/marked-code-span.ts +0 -17
package/src/i18n/sv.ts ADDED
@@ -0,0 +1,197 @@
1
+ export const dict: Record<string, string> = {
2
+ "ui.sessionReview.title": "Sessionsändringar",
3
+ "ui.sessionReview.title.git": "Git-ändringar",
4
+ "ui.sessionReview.title.branch": "Grenändringar",
5
+ "ui.sessionReview.title.lastTurn": "Ändringar i senaste turen",
6
+ "ui.sessionReview.diffStyle.unified": "Enhetlig",
7
+ "ui.sessionReview.diffStyle.split": "Delad",
8
+ "ui.sessionReview.expandAll": "Fäll ut alla",
9
+ "ui.sessionReview.collapseAll": "Fäll ihop alla",
10
+ "ui.sessionReview.change.added": "Tillagd",
11
+ "ui.sessionReview.change.removed": "Borttagen",
12
+ "ui.sessionReview.change.modified": "Ändrad",
13
+ "ui.sessionReview.image.loading": "Laddar...",
14
+ "ui.sessionReview.image.placeholder": "Bild",
15
+ "ui.sessionReview.largeDiff.title": "Diff för stor för att återge",
16
+ "ui.sessionReview.largeDiff.meta": "Gräns: {{limit}} ändrade rader. Aktuellt: {{current}} ändrade rader.",
17
+ "ui.sessionReview.largeDiff.renderAnyway": "Visa ändå",
18
+ "ui.sessionReviewV2.expandMode": "Fäll ut eller ihop diffen",
19
+ "ui.sessionReviewV2.filterFiles": "Filtrera filer",
20
+ "ui.sessionReviewV2.toggleSidebar": "Växla filträdet",
21
+ "ui.sessionReviewV2.showAllLines": "Visa alla rader",
22
+ "ui.sessionReviewV2.hideNonDiffLines": "Dölj oförändrade rader",
23
+ "ui.sessionReviewV2.unifiedDiff": "Enhetlig diff",
24
+ "ui.sessionReviewV2.splitDiff": "Delad diff",
25
+ "ui.sessionReviewV2.previousFile": "Föregående fil",
26
+ "ui.sessionReviewV2.nextFile": "Nästa fil",
27
+ "ui.sessionReviewV2.diffView": "Diffvy",
28
+ "ui.sessionReviewV2.empty.noGit.title": "Inga spårade ändringar",
29
+ "ui.sessionReviewV2.empty.noGit.description": "Spåra, granska och ångra ändringar i det här projektet",
30
+ "ui.sessionReviewV2.empty.noGit.action": "Skapa Git-arkiv",
31
+ "ui.sessionReviewV2.empty.noGit.actionLoading": "Skapar Git-arkiv...",
32
+ "ui.sessionReviewV2.empty.changes.title": "Inga filändringar ännu",
33
+ "ui.sessionReviewV2.empty.changes.description": "Projektändringar kommer att visas här",
34
+ "ui.sessionReview.openFile": "Öppna filen",
35
+ "ui.sessionReview.selection.line": "rad {{line}}",
36
+ "ui.sessionReview.selection.lines": "rader {{start}}-{{end}}",
37
+ "ui.fileMedia.kind.image": "bild",
38
+ "ui.fileMedia.kind.audio": "ljud",
39
+ "ui.fileMedia.state.removed": "Filen av typen {{kind}} har tagits bort.",
40
+ "ui.fileMedia.state.loading": "Laddar {{kind}}...",
41
+ "ui.fileMedia.state.error": "Det gick inte att ladda {{kind}}.",
42
+ "ui.fileMedia.state.unavailable": "Förhandsvisning av {{kind}} är inte tillgänglig.",
43
+ "ui.fileMedia.binary.title": "Binär fil",
44
+ "ui.fileMedia.binary.description.path": "{{path}} är binär.",
45
+ "ui.fileMedia.binary.description.default": "Binärt innehåll",
46
+ "ui.lineComment.label.prefix": "Kommentera ",
47
+ "ui.lineComment.label.suffix": "",
48
+ "ui.lineComment.editorLabel.prefix": "Kommenterar ",
49
+ "ui.lineComment.editorLabel.suffix": "",
50
+ "ui.lineComment.placeholder": "Lägg till kommentar",
51
+ "ui.lineComment.contextPlaceholder": "Lägg till kontext för den här ändringen",
52
+ "ui.lineComment.submit": "Kommentera",
53
+ "ui.lineComment.cancel": "Avbryt",
54
+ "ui.sessionTurn.steps.show": "Visa steg",
55
+ "ui.sessionTurn.steps.hide": "Dölj steg",
56
+ "ui.sessionTurn.summary.response": "Svar",
57
+ "ui.sessionTurn.diff.showMore": "Visa fler ändringar ({{count}})",
58
+ "ui.sessionTurn.diffs.changed.one": "{{count}} Ändrad fil",
59
+ "ui.sessionTurn.diffs.changed.other": "{{count}} Ändrade filer",
60
+ "ui.sessionTurn.diffs.showAll": "Visa alla",
61
+ "ui.sessionTurn.diffs.showLess": "Visa färre",
62
+ "ui.sessionTurn.diffs.more": "+{{count}} fler filer",
63
+ "ui.sessionTurn.retry.retrying": "försöker igen",
64
+ "ui.sessionTurn.retry.inSeconds": "om {{seconds}} s",
65
+ "ui.sessionTurn.retry.attempt": "försök #{{attempt}}",
66
+ "ui.sessionTurn.retry.attemptLine": "{{line}} - försök #{{attempt}}",
67
+ "ui.sessionTurn.retry.geminiHot": "Gemini är alldeles för belastad just nu",
68
+ "ui.sessionTurn.error.freeUsageExceeded": "Gränsen för kostnadsfri användning har överskridits",
69
+ "ui.sessionTurn.error.addCredits": "Lägg till krediter",
70
+ "dialog.usageExceeded.freeTier.title": "Gratisgränsen nådd",
71
+ "dialog.usageExceeded.freeTier.description":
72
+ "Prenumerera på OpenCode Go för pålitlig tillgång till de bästa modellerna med öppen källkod, från 5 USD/månad.",
73
+ "dialog.usageExceeded.freeTier.actionLabel": "Prenumerera",
74
+ "dialog.usageExceeded.accountRateLimit.title": "Gränsen för Go har nåtts",
75
+ "dialog.usageExceeded.accountRateLimit.description":
76
+ "Användningsgräns nådd. För att fortsätta använda den här modellen nu, aktivera användning från ditt tillgängliga saldo",
77
+ "dialog.usageExceeded.accountRateLimit.actionLabel": "Öppna inställningar",
78
+ "ui.sessionTurn.status.delegating": "Delegerar arbete",
79
+ "ui.sessionTurn.status.planning": "Planerar nästa steg",
80
+ "ui.sessionTurn.status.gatheringContext": "Utforskar",
81
+ "ui.sessionTurn.status.gatheredContext": "Utforskat",
82
+ "ui.sessionTurn.status.searchingCodebase": "Söker i kodbasen",
83
+ "ui.sessionTurn.status.searchingWeb": "Söker på nätet",
84
+ "ui.sessionTurn.status.makingEdits": "Redigerar",
85
+ "ui.sessionTurn.status.runningCommands": "Kör kommandon",
86
+ "ui.sessionTurn.status.thinking": "Tänker",
87
+ "ui.sessionTurn.status.thinkingWithTopic": "Tänker - {{topic}}",
88
+ "ui.sessionTurn.status.gatheringThoughts": "Samlar tankar",
89
+ "ui.sessionTurn.status.consideringNextSteps": "Funderar på nästa steg",
90
+ "ui.messagePart.diagnostic.error": "Fel",
91
+ "ui.messagePart.title.edit": "Redigera",
92
+ "ui.messagePart.title.write": "Skriv",
93
+ "ui.messagePart.option.typeOwnAnswer": "Skriv ditt eget svar",
94
+ "ui.messagePart.review.title": "Granska dina svar",
95
+ "ui.messagePart.questions.dismissed": "Frågorna har avfärdats",
96
+ "ui.messagePart.compaction": "Sessionen har komprimerats",
97
+ "ui.messagePart.context.read.one": "{{count}} läsning",
98
+ "ui.messagePart.context.read.other": "{{count}} läsningar",
99
+ "ui.messagePart.context.search.one": "{{count}} sökning",
100
+ "ui.messagePart.context.search.other": "{{count}} sökningar",
101
+ "ui.messagePart.context.list.one": "{{count}} listning",
102
+ "ui.messagePart.context.list.other": "{{count}} listningar",
103
+ "ui.list.loading": "Laddar",
104
+ "ui.list.empty": "Inga resultat",
105
+ "ui.list.clearFilter": "Rensa filter",
106
+ "ui.list.emptyWithFilter.prefix": "Inga resultat för",
107
+ "ui.list.emptyWithFilter.suffix": "",
108
+ "ui.fileSearch.placeholder": "Hitta",
109
+ "ui.fileSearch.previousMatch": "Föregående match",
110
+ "ui.fileSearch.nextMatch": "Nästa match",
111
+ "ui.fileSearch.close": "Stäng sökning",
112
+ "ui.messageNav.newMessage": "Nytt meddelande",
113
+ "ui.promptInput.noMatchingItems": "Inga matchande objekt",
114
+ "ui.promptInput.commands": "Kommandon",
115
+ "ui.promptInput.dropFiles": "Släpp filer för att bifoga dem",
116
+ "ui.promptInput.removeAttachment": "Ta bort bilagan",
117
+ "ui.promptInput.label": "Prompt",
118
+ "ui.promptInput.placeholder.shell": "Ange skalkommando...",
119
+ "ui.promptInput.placeholder.normal": "Fråga vad som helst, {{slash}} för kommandon, {{at}} för kontext...",
120
+ "ui.promptInput.add": "Lägg till bilder och filer",
121
+ "ui.promptInput.attachments": "Bilder och filer",
122
+ "ui.promptInput.context": "Kontext",
123
+ "ui.promptInput.shell": "Skalkommando",
124
+ "ui.promptInput.chooseAgent": "Välj agent",
125
+ "ui.promptInput.chooseModel": "Välj modell",
126
+ "ui.promptInput.chooseVariant": "Välj modellvariant",
127
+ "ui.promptInput.send": "Skicka",
128
+ "ui.promptInput.stop": "Stoppa",
129
+ "ui.tabs.close": "Stäng fliken",
130
+ "ui.textField.copyToClipboard": "Kopiera till urklipp",
131
+ "ui.textField.copyLink": "Kopiera länk",
132
+ "ui.textField.copied": "Kopierad",
133
+ "ui.imagePreview.alt": "Förhandsgranskning av bild",
134
+ "ui.scrollView.ariaLabel": "rullningsbart innehåll",
135
+ "ui.tool.read": "Läs",
136
+ "ui.tool.loaded": "Inläst",
137
+ "ui.tool.list": "Lista",
138
+ "ui.tool.glob": "Glob",
139
+ "ui.tool.grep": "Grep",
140
+ "ui.tool.task": "Uppgift",
141
+ "ui.tool.webfetch": "Webbhämtning",
142
+ "ui.tool.websearch": "Webbsökning",
143
+ "ui.tool.websearch.provider": "{{provider}} Webbsökning",
144
+ "ui.tool.shell": "Shell",
145
+ "ui.tool.patch": "Patch",
146
+ "ui.tool.todos": "Att göra",
147
+ "ui.tool.todos.read": "Läs att göra-listan",
148
+ "ui.tool.questions": "Frågor",
149
+ "ui.tool.questions.numbered": "Frågor {{number}}",
150
+ "ui.tool.agent": "{{type}}-agent",
151
+ "ui.tool.agent.default": "Agent",
152
+ "ui.tool.skill": "Färdighet",
153
+ "ui.basicTool.called": "Anropade `{{tool}}`",
154
+ "ui.toolErrorCard.failed": "Misslyckades",
155
+ "ui.toolErrorCard.copyError": "Kopiera felet",
156
+ "ui.common.file.one": "fil",
157
+ "ui.common.file.other": "filer",
158
+ "ui.common.question.one": "fråga",
159
+ "ui.common.question.other": "frågor",
160
+ "ui.common.add": "Lägg till",
161
+ "ui.common.clear": "Rensa",
162
+ "ui.common.file": "Fil",
163
+ "ui.common.back": "Tillbaka",
164
+ "ui.common.cancel": "Avbryt",
165
+ "ui.common.confirm": "Bekräfta",
166
+ "ui.common.dismiss": "Avfärda",
167
+ "ui.common.close": "Stäng",
168
+ "ui.common.next": "Nästa",
169
+ "ui.common.submit": "Skicka",
170
+ "ui.common.showMore": "Visa mer",
171
+ "ui.permission.deny": "Neka",
172
+ "ui.permission.allowAlways": "Tillåt alltid",
173
+ "ui.permission.allowOnce": "Tillåt en gång",
174
+ "ui.message.expand": "Fäll ut meddelandet",
175
+ "ui.message.collapse": "Fäll ihop meddelandet",
176
+ "ui.message.copy": "Kopiera",
177
+ "ui.message.copyMessage": "Kopiera meddelandet",
178
+ "ui.message.forkMessage": "Förgrena meddelandet till en ny session",
179
+ "ui.message.revertMessage": "Återställ meddelandet",
180
+ "ui.message.copyResponse": "Kopiera svaret",
181
+ "ui.message.copied": "Kopierad",
182
+ "ui.message.duration.seconds": "{{count}}s",
183
+ "ui.message.duration.minutesSeconds": "{{minutes}}m {{seconds}}s",
184
+ "ui.message.interrupted": "Avbruten",
185
+ "ui.message.queued": "I kö",
186
+ "ui.message.attachment.alt": "bilaga",
187
+ "ui.patch.action.deleted": "Raderad",
188
+ "ui.patch.action.created": "Skapad",
189
+ "ui.patch.action.moved": "Flyttad",
190
+ "ui.patch.action.patched": "Patchad",
191
+ "ui.question.subtitle.answered": "{{count}} besvarade",
192
+ "ui.question.answer.none": "(inget svar)",
193
+ "ui.question.review.notAnswered": "(ej besvarad)",
194
+ "ui.question.multiHint": "Välj alla svar som gäller",
195
+ "ui.question.singleHint": "Välj ett svar",
196
+ "ui.question.custom.placeholder": "Skriv ditt svar...",
197
+ }
package/src/i18n/th.ts CHANGED
@@ -15,13 +15,12 @@ export const dict = {
15
15
  "ui.sessionReview.change.modified": "แก้ไข",
16
16
  "ui.sessionReview.image.loading": "กำลังโหลด...",
17
17
  "ui.sessionReview.image.placeholder": "รูปภาพ",
18
- "ui.sessionReview.largeDiff.title": "Diff มีขนาดใหญ่เกินไปจนไม่สามารถแสดงผลได้",
19
- "ui.sessionReview.largeDiff.meta":
20
- "ขีดจำกัด: {{limit}} บรรทัดที่เปลี่ยนแปลง. ปัจจุบัน: {{current}} บรรทัดที่เปลี่ยนแปลง.",
18
+ "ui.sessionReview.largeDiff.title": "Diff มีขนาดใหญ่เกินกว่าจะแสดงผลได้",
19
+ "ui.sessionReview.largeDiff.meta": "ขีดจำกัด: บรรทัดที่เปลี่ยนแปลง {{limit}} บรรทัด ปัจจุบัน: {{current}} บรรทัด",
21
20
  "ui.sessionReview.largeDiff.renderAnyway": "แสดงผลต่อไป",
22
21
  "ui.sessionReviewV2.expandMode": "ขยายหรือย่อ diff",
23
22
  "ui.sessionReviewV2.filterFiles": "กรองไฟล์",
24
- "ui.sessionReviewV2.toggleSidebar": "สลับต้นไม้ไฟล์",
23
+ "ui.sessionReviewV2.toggleSidebar": "สลับแผนผังไฟล์",
25
24
  "ui.sessionReviewV2.showAllLines": "แสดงทุกบรรทัด",
26
25
  "ui.sessionReviewV2.hideNonDiffLines": "ซ่อนบรรทัดที่ไม่มี diff",
27
26
  "ui.sessionReviewV2.unifiedDiff": "diff แบบรวม",
@@ -45,29 +44,30 @@ export const dict = {
45
44
  "ui.fileMedia.binary.description.path": "{{path}} เป็นไฟล์ไบนารีและไม่สามารถแสดงผลได้",
46
45
  "ui.fileMedia.binary.description.default": "ไฟล์ไบนารีไม่สามารถแสดงผลได้",
47
46
 
48
- "ui.lineComment.label.prefix": "แสดงความคิดเห็นบน ",
47
+ "ui.lineComment.label.prefix": "แสดงความคิดเห็นที่ ",
49
48
  "ui.lineComment.label.suffix": "",
50
- "ui.lineComment.editorLabel.prefix": "กำลังแสดงความคิดเห็นบน ",
49
+ "ui.lineComment.editorLabel.prefix": "กำลังแสดงความคิดเห็นที่ ",
51
50
  "ui.lineComment.editorLabel.suffix": "",
52
51
  "ui.lineComment.placeholder": "เพิ่มความคิดเห็น",
52
+ "ui.lineComment.contextPlaceholder": "เพิ่มบริบทสำหรับการเปลี่ยนแปลงนี้",
53
53
  "ui.lineComment.submit": "แสดงความคิดเห็น",
54
54
  "ui.lineComment.cancel": "ยกเลิก",
55
55
 
56
56
  "ui.sessionTurn.steps.show": "แสดงขั้นตอน",
57
57
  "ui.sessionTurn.steps.hide": "ซ่อนขั้นตอน",
58
- "ui.sessionTurn.summary.response": "การตอบสนอง",
58
+ "ui.sessionTurn.summary.response": "คำตอบ",
59
59
  "ui.sessionTurn.diff.showMore": "แสดงการเปลี่ยนแปลงเพิ่มเติม ({{count}})",
60
- "ui.sessionTurn.diffs.changed.one": "จำนวนไฟล์ที่เปลี่ยนแปลง: {{count}}",
61
- "ui.sessionTurn.diffs.changed.other": "จำนวนไฟล์ที่เปลี่ยนแปลง: {{count}}",
60
+ "ui.sessionTurn.diffs.changed.one": "มีไฟล์ที่เปลี่ยนแปลง {{count}} ไฟล์",
61
+ "ui.sessionTurn.diffs.changed.other": "มีไฟล์ที่เปลี่ยนแปลง {{count}} ไฟล์",
62
62
  "ui.sessionTurn.diffs.showAll": "แสดงทั้งหมด",
63
63
  "ui.sessionTurn.diffs.showLess": "แสดงน้อยลง",
64
64
  "ui.sessionTurn.diffs.more": "+{{count}} ไฟล์เพิ่มเติม",
65
65
 
66
66
  "ui.sessionTurn.retry.retrying": "กำลังลองใหม่",
67
- "ui.sessionTurn.retry.inSeconds": "ใน {{seconds}}วิ",
67
+ "ui.sessionTurn.retry.inSeconds": "ใน {{seconds}} วินาที",
68
68
  "ui.sessionTurn.retry.attempt": "ครั้งที่ {{attempt}}",
69
69
  "ui.sessionTurn.retry.attemptLine": "{{line}} - ครั้งที่ {{attempt}}",
70
- "ui.sessionTurn.retry.geminiHot": "gemini กำลังใช้งานหนาแน่นมาก",
70
+ "ui.sessionTurn.retry.geminiHot": "ขณะนี้ Gemini มีการใช้งานหนาแน่นมาก",
71
71
  "ui.sessionTurn.error.freeUsageExceeded": "เกินขีดจำกัดการใช้งานฟรี",
72
72
  "ui.sessionTurn.error.addCredits": "เพิ่มเครดิต",
73
73
 
@@ -80,8 +80,8 @@ export const dict = {
80
80
  "ถึงขีดจำกัดการใช้งานแล้ว หากต้องการใช้โมเดลนี้ต่อในตอนนี้ ให้เปิดใช้งานจากยอดคงเหลือที่มี",
81
81
  "dialog.usageExceeded.accountRateLimit.actionLabel": "เปิดการตั้งค่า",
82
82
 
83
- "ui.sessionTurn.status.delegating": "มอบหมายงาน",
84
- "ui.sessionTurn.status.planning": "วางแผนขั้นตอนถัดไป",
83
+ "ui.sessionTurn.status.delegating": "กำลังมอบหมายงาน",
84
+ "ui.sessionTurn.status.planning": "กำลังวางแผนขั้นตอนถัดไป",
85
85
  "ui.sessionTurn.status.gatheringContext": "กำลังสำรวจ",
86
86
  "ui.sessionTurn.status.gatheredContext": "สำรวจแล้ว",
87
87
  "ui.sessionTurn.status.searchingCodebase": "กำลังค้นหาโค้ดเบส",
@@ -90,8 +90,8 @@ export const dict = {
90
90
  "ui.sessionTurn.status.runningCommands": "กำลังเรียกใช้คำสั่ง",
91
91
  "ui.sessionTurn.status.thinking": "กำลังคิด",
92
92
  "ui.sessionTurn.status.thinkingWithTopic": "กำลังคิด - {{topic}}",
93
- "ui.sessionTurn.status.gatheringThoughts": "รวบรวมความคิด",
94
- "ui.sessionTurn.status.consideringNextSteps": "พิจารณาขั้นตอนถัดไป",
93
+ "ui.sessionTurn.status.gatheringThoughts": "กำลังรวบรวมความคิด",
94
+ "ui.sessionTurn.status.consideringNextSteps": "กำลังพิจารณาขั้นตอนถัดไป",
95
95
 
96
96
  "ui.messagePart.questions.dismissed": "ละทิ้งคำถามแล้ว",
97
97
  "ui.messagePart.compaction": "บีบอัดเซสชันแล้ว",
@@ -115,6 +115,25 @@ export const dict = {
115
115
 
116
116
  "ui.messageNav.newMessage": "ข้อความใหม่",
117
117
 
118
+ "ui.promptInput.noMatchingItems": "ไม่พบรายการที่ตรงกัน",
119
+ "ui.promptInput.commands": "คำสั่ง",
120
+ "ui.promptInput.dropFiles": "วางไฟล์เพื่อแนบ",
121
+ "ui.promptInput.removeAttachment": "เอาไฟล์แนบออก",
122
+ "ui.promptInput.label": "พรอมต์",
123
+ "ui.promptInput.placeholder.shell": "ป้อนคำสั่งเชลล์...",
124
+ "ui.promptInput.placeholder.normal": "ถามอะไรก็ได้ {{slash}} สำหรับคำสั่ง {{at}} สำหรับบริบท...",
125
+ "ui.promptInput.add": "เพิ่มรูปภาพและไฟล์",
126
+ "ui.promptInput.attachments": "รูปภาพและไฟล์",
127
+ "ui.promptInput.context": "บริบท",
128
+ "ui.promptInput.shell": "คำสั่งเชลล์",
129
+ "ui.promptInput.chooseAgent": "เลือกเอเจนต์",
130
+ "ui.promptInput.chooseModel": "เลือกโมเดล",
131
+ "ui.promptInput.chooseVariant": "เลือกรูปแบบโมเดล",
132
+ "ui.promptInput.send": "ส่ง",
133
+ "ui.promptInput.stop": "หยุด",
134
+
135
+ "ui.tabs.close": "ปิดแท็บ",
136
+
118
137
  "ui.textField.copyToClipboard": "คัดลอกไปยังคลิปบอร์ด",
119
138
  "ui.textField.copyLink": "คัดลอกลิงก์",
120
139
  "ui.textField.copied": "คัดลอกแล้ว",
@@ -124,16 +143,18 @@ export const dict = {
124
143
 
125
144
  "ui.tool.read": "อ่าน",
126
145
  "ui.tool.loaded": "โหลดแล้ว",
127
- "ui.tool.list": "รายการ",
146
+ "ui.tool.list": "แสดงรายการ",
128
147
  "ui.tool.glob": "Glob",
129
148
  "ui.tool.grep": "Grep",
130
149
  "ui.tool.webfetch": "ดึงจากเว็บ",
131
150
  "ui.tool.websearch": "ค้นหาเว็บ",
151
+ "ui.tool.websearch.provider": "{{provider}} ค้นหาเว็บ",
132
152
  "ui.tool.shell": "เชลล์",
133
153
  "ui.tool.patch": "แพตช์",
134
154
  "ui.tool.todos": "รายการงาน",
135
155
  "ui.tool.todos.read": "อ่านรายการงาน",
136
156
  "ui.tool.questions": "คำถาม",
157
+ "ui.tool.questions.numbered": "คำถาม {{number}}",
137
158
  "ui.tool.agent": "เอเจนต์ {{type}}",
138
159
  "ui.tool.agent.default": "เอเจนต์",
139
160
 
@@ -143,6 +164,8 @@ export const dict = {
143
164
  "ui.common.question.other": "คำถาม",
144
165
 
145
166
  "ui.common.add": "เพิ่ม",
167
+ "ui.common.clear": "ล้าง",
168
+ "ui.common.file": "ไฟล์",
146
169
  "ui.common.back": "ย้อนกลับ",
147
170
  "ui.common.cancel": "ยกเลิก",
148
171
  "ui.common.confirm": "ยืนยัน",
@@ -173,11 +196,11 @@ export const dict = {
173
196
  "ui.patch.action.moved": "ย้าย",
174
197
  "ui.patch.action.patched": "แพตช์",
175
198
 
176
- "ui.question.subtitle.answered": "{{count}} ตอบแล้ว",
199
+ "ui.question.subtitle.answered": "ตอบแล้ว {{count}} ข้อ",
177
200
  "ui.question.answer.none": "(ไม่มีคำตอบ)",
178
201
  "ui.question.review.notAnswered": "(ไม่ได้ตอบ)",
179
- "ui.question.multiHint": "เลือกทั้งหมดที่ใช้",
180
- "ui.question.singleHint": "เลือกหนึ่งคำตอบ",
202
+ "ui.question.multiHint": "เลือกคำตอบที่เกี่ยวข้องทั้งหมด",
203
+ "ui.question.singleHint": "เลือกคำตอบหนึ่งข้อ",
181
204
  "ui.question.custom.placeholder": "พิมพ์คำตอบของคุณ...",
182
205
 
183
206
  "ui.fileSearch.placeholder": "ค้นหา",
@@ -189,6 +212,6 @@ export const dict = {
189
212
  "ui.basicTool.called": "เรียกใช้ `{{tool}}`",
190
213
  "ui.toolErrorCard.failed": "ล้มเหลว",
191
214
  "ui.toolErrorCard.copyError": "คัดลอกข้อผิดพลาด",
192
- "ui.message.duration.seconds": "{{count}}วิ",
193
- "ui.message.duration.minutesSeconds": "{{minutes}}นาที {{seconds}}วิ",
215
+ "ui.message.duration.seconds": "{{count}} วินาที",
216
+ "ui.message.duration.minutesSeconds": "{{minutes}} นาที {{seconds}} วินาที",
194
217
  }
package/src/i18n/tr.ts CHANGED
@@ -20,8 +20,8 @@ export const dict = {
20
20
  "ui.sessionReview.change.modified": "Değiştirildi",
21
21
  "ui.sessionReview.image.loading": "Yükleniyor...",
22
22
  "ui.sessionReview.image.placeholder": "Görsel",
23
- "ui.sessionReview.largeDiff.title": "Fark gösterimi için çok büyük",
24
- "ui.sessionReview.largeDiff.meta": "Limit: {{limit}} değişen satır. Mevcut: {{current}} değişen satır.",
23
+ "ui.sessionReview.largeDiff.title": "Fark görüntülenemeyecek kadar büyük",
24
+ "ui.sessionReview.largeDiff.meta": "Sınır: {{limit}} değişen satır. Mevcut: {{current}} değişen satır.",
25
25
  "ui.sessionReview.largeDiff.renderAnyway": "Yine de göster",
26
26
  "ui.sessionReviewV2.expandMode": "Farkı genişlet veya daralt",
27
27
  "ui.sessionReviewV2.filterFiles": "Dosyaları filtrele",
@@ -55,6 +55,7 @@ export const dict = {
55
55
  "ui.lineComment.editorLabel.prefix": "Yorum yapılıyor: ",
56
56
  "ui.lineComment.editorLabel.suffix": "",
57
57
  "ui.lineComment.placeholder": "Yorum ekle",
58
+ "ui.lineComment.contextPlaceholder": "Bu değişiklik için bağlam ekle",
58
59
  "ui.lineComment.submit": "Yorum yap",
59
60
  "ui.lineComment.cancel": "İptal",
60
61
 
@@ -69,26 +70,26 @@ export const dict = {
69
70
  "ui.sessionTurn.diffs.more": "+{{count}} dosya daha",
70
71
 
71
72
  "ui.sessionTurn.retry.retrying": "yeniden deneniyor",
72
- "ui.sessionTurn.retry.inSeconds": "{{seconds}}sn içinde",
73
+ "ui.sessionTurn.retry.inSeconds": "{{seconds}} sn içinde",
73
74
  "ui.sessionTurn.retry.attempt": "deneme #{{attempt}}",
74
75
  "ui.sessionTurn.retry.attemptLine": "{{line}} - deneme #{{attempt}}",
75
- "ui.sessionTurn.retry.geminiHot": "gemini şu anda aşırı yoğun",
76
+ "ui.sessionTurn.retry.geminiHot": "Gemini şu anda aşırı yoğun",
76
77
  "ui.sessionTurn.error.freeUsageExceeded": "Ücretsiz kullanım aşıldı",
77
78
  "ui.sessionTurn.error.addCredits": "Kredi ekle",
78
79
 
79
80
  "dialog.usageExceeded.freeTier.title": "Ücretsiz sınıra ulaşıldı",
80
81
  "dialog.usageExceeded.freeTier.description":
81
- "En iyi açık kaynak modellere güvenilir erişim için OpenCode Go'ya abone olun. Aylık $5'tan başlar.",
82
+ "En iyi açık kaynaklı modellere güvenilir erişim için OpenCode Go'ya abone olun. Aylık $5'ten başlar.",
82
83
  "dialog.usageExceeded.freeTier.actionLabel": "Abone ol",
83
84
  "dialog.usageExceeded.accountRateLimit.title": "Go sınırına ulaşıldı",
84
85
  "dialog.usageExceeded.accountRateLimit.description":
85
- "Kullanım sınırına ulaşıldı. Bu modeli şimdi kullanmaya devam etmek için mevcut bakiyenizden kullanımı etkinleştirin",
86
+ "Kullanım sınırına ulaşıldı. Bu modeli şimdi kullanmaya devam etmek için mevcut bakiyenizden kullanımı etkinleştirin.",
86
87
  "dialog.usageExceeded.accountRateLimit.actionLabel": "Ayarları aç",
87
88
 
88
89
  "ui.sessionTurn.status.delegating": "Görev devrediliyor",
89
90
  "ui.sessionTurn.status.planning": "Sonraki adımlar planlanıyor",
90
91
  "ui.sessionTurn.status.gatheringContext": "Keşfediliyor",
91
- "ui.sessionTurn.status.gatheredContext": "Keşfedildi",
92
+ "ui.sessionTurn.status.gatheredContext": "Keşif tamamlandı",
92
93
  "ui.sessionTurn.status.searchingCodebase": "Kod tabanı aranıyor",
93
94
  "ui.sessionTurn.status.searchingWeb": "Web aranıyor",
94
95
  "ui.sessionTurn.status.makingEdits": "Düzenlemeler yapılıyor",
@@ -98,7 +99,7 @@ export const dict = {
98
99
  "ui.sessionTurn.status.gatheringThoughts": "Düşünceler toplanıyor",
99
100
  "ui.sessionTurn.status.consideringNextSteps": "Sonraki adımlar değerlendiriliyor",
100
101
 
101
- "ui.messagePart.questions.dismissed": "Sorular reddedildi",
102
+ "ui.messagePart.questions.dismissed": "Sorular kapatıldı",
102
103
  "ui.messagePart.compaction": "Oturum sıkıştırıldı",
103
104
  "ui.messagePart.context.read.one": "{{count}} okuma",
104
105
  "ui.messagePart.context.read.other": "{{count}} okuma",
@@ -109,8 +110,8 @@ export const dict = {
109
110
  "ui.messagePart.diagnostic.error": "Hata",
110
111
  "ui.messagePart.title.edit": "Düzenle",
111
112
  "ui.messagePart.title.write": "Yaz",
112
- "ui.messagePart.option.typeOwnAnswer": "Kendi cevabınızı yazın",
113
- "ui.messagePart.review.title": "Cevapları inceleyin",
113
+ "ui.messagePart.option.typeOwnAnswer": "Kendi yanıtınızı yazın",
114
+ "ui.messagePart.review.title": "Yanıtlarınızı gözden geçirin",
114
115
 
115
116
  "ui.list.loading": "Yükleniyor",
116
117
  "ui.list.empty": "Sonuç bulunamadı",
@@ -120,8 +121,27 @@ export const dict = {
120
121
 
121
122
  "ui.messageNav.newMessage": "Yeni mesaj",
122
123
 
124
+ "ui.promptInput.noMatchingItems": "Eşleşen öğe yok",
125
+ "ui.promptInput.commands": "Komutlar",
126
+ "ui.promptInput.dropFiles": "Eklemek için dosyaları bırakın",
127
+ "ui.promptInput.removeAttachment": "Eki kaldır",
128
+ "ui.promptInput.label": "İstem",
129
+ "ui.promptInput.placeholder.shell": "Kabuk komutu girin...",
130
+ "ui.promptInput.placeholder.normal": "Bir şey sorun, {{slash}} komutlar için, {{at}} bağlam için...",
131
+ "ui.promptInput.add": "Görsel ve dosya ekle",
132
+ "ui.promptInput.attachments": "Görseller ve dosyalar",
133
+ "ui.promptInput.context": "Bağlam",
134
+ "ui.promptInput.shell": "Kabuk komutu",
135
+ "ui.promptInput.chooseAgent": "Ajan seç",
136
+ "ui.promptInput.chooseModel": "Model seç",
137
+ "ui.promptInput.chooseVariant": "Model varyantı seç",
138
+ "ui.promptInput.send": "Gönder",
139
+ "ui.promptInput.stop": "Durdur",
140
+
141
+ "ui.tabs.close": "Sekmeyi kapat",
142
+
123
143
  "ui.textField.copyToClipboard": "Panoya kopyala",
124
- "ui.textField.copyLink": "Bağlantı kopyala",
144
+ "ui.textField.copyLink": "Bağlantıyı kopyala",
125
145
  "ui.textField.copied": "Kopyalandı",
126
146
 
127
147
  "ui.imagePreview.alt": "Görsel önizleme",
@@ -132,14 +152,16 @@ export const dict = {
132
152
  "ui.tool.list": "Listele",
133
153
  "ui.tool.glob": "Glob",
134
154
  "ui.tool.grep": "Grep",
135
- "ui.tool.webfetch": "Web getir",
136
- "ui.tool.websearch": "Web Araması",
155
+ "ui.tool.webfetch": "Web içeriğini getir",
156
+ "ui.tool.websearch": "Web araması",
157
+ "ui.tool.websearch.provider": "{{provider}} Web araması",
137
158
  "ui.tool.shell": "Kabuk",
138
159
  "ui.tool.patch": "Yama",
139
160
  "ui.tool.todos": "Görevler",
140
161
  "ui.tool.todos.read": "Görevleri oku",
141
162
  "ui.tool.questions": "Sorular",
142
- "ui.tool.agent": "{{type}} Ajan",
163
+ "ui.tool.questions.numbered": "Sorular {{number}}",
164
+ "ui.tool.agent": "{{type}} ajanı",
143
165
  "ui.tool.agent.default": "Ajan",
144
166
 
145
167
  "ui.common.file.one": "dosya",
@@ -148,6 +170,8 @@ export const dict = {
148
170
  "ui.common.question.other": "soru",
149
171
 
150
172
  "ui.common.add": "Ekle",
173
+ "ui.common.clear": "Temizle",
174
+ "ui.common.file": "Dosya",
151
175
  "ui.common.back": "Geri",
152
176
  "ui.common.cancel": "İptal",
153
177
  "ui.common.confirm": "Onayla",
@@ -178,22 +202,22 @@ export const dict = {
178
202
  "ui.patch.action.moved": "Taşındı",
179
203
  "ui.patch.action.patched": "Yamalandı",
180
204
 
181
- "ui.question.subtitle.answered": "{{count}} cevaplandı",
182
- "ui.question.answer.none": "(cevap yok)",
183
- "ui.question.review.notAnswered": "(cevaplanmadı)",
184
- "ui.question.multiHint": "Geçerli tüm cevapları seçin",
185
- "ui.question.singleHint": "Bir cevap seçin",
186
- "ui.question.custom.placeholder": "Cevabınızı yazın...",
205
+ "ui.question.subtitle.answered": "{{count}} yanıtlandı",
206
+ "ui.question.answer.none": "(yanıt yok)",
207
+ "ui.question.review.notAnswered": "(yanıtlanmadı)",
208
+ "ui.question.multiHint": "Uygun olan tüm yanıtları seçin",
209
+ "ui.question.singleHint": "Bir yanıt seçin",
210
+ "ui.question.custom.placeholder": "Yanıtınızı yazın...",
187
211
 
188
212
  "ui.fileSearch.placeholder": "Bul",
189
- "ui.fileSearch.previousMatch": "Önceki",
190
- "ui.fileSearch.nextMatch": "Sonraki",
213
+ "ui.fileSearch.previousMatch": "Önceki eşleşme",
214
+ "ui.fileSearch.nextMatch": "Sonraki eşleşme",
191
215
  "ui.fileSearch.close": "Aramayı kapat",
192
216
  "ui.tool.task": "Görev",
193
- "ui.tool.skill": "Yetenek",
217
+ "ui.tool.skill": "Beceri",
194
218
  "ui.basicTool.called": "`{{tool}}` çağrıldı",
195
219
  "ui.toolErrorCard.failed": "Başarısız",
196
220
  "ui.toolErrorCard.copyError": "Hatayı kopyala",
197
- "ui.message.duration.seconds": "{{count}}sn",
198
- "ui.message.duration.minutesSeconds": "{{minutes}}dk {{seconds}}sn",
221
+ "ui.message.duration.seconds": "{{count}} sn",
222
+ "ui.message.duration.minutesSeconds": "{{minutes}} dk {{seconds}} sn",
199
223
  } satisfies Partial<Record<Keys, string>>