@opencode-ai/ui 0.0.0-dev-202609030903 → 0.0.0-dev-18997

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 (296) hide show
  1. package/dist/actions/button/button.d.ts +10 -0
  2. package/dist/actions/icon-button/icon-button.d.ts +11 -0
  3. package/dist/actions/split-button/split-button.d.ts +5 -0
  4. package/dist/components/card.d.ts +1 -1
  5. package/dist/components/list.d.ts +1 -1
  6. package/dist/components/scroll-view.d.ts +3 -3
  7. package/dist/context/i18n.d.ts +10 -7
  8. package/dist/context/marked-base.d.ts +3 -0
  9. package/dist/context/marked-parser.d.ts +1 -2
  10. package/dist/{components → data-display/accordion}/accordion.d.ts +6 -6
  11. package/dist/{v2/components/avatar-v2.d.ts → data-display/avatar/avatar.d.ts} +1 -1
  12. package/dist/data-display/badge/badge.d.ts +7 -0
  13. package/dist/{components → data-display/diff-changes}/diff-changes.d.ts +2 -1
  14. package/dist/data-display/keybind/keybind.d.ts +7 -0
  15. package/dist/{v2/components/line-comment-v2.d.ts → data-display/line-comment/line-comment.d.ts} +9 -9
  16. package/dist/{v2/components/project-avatar-v2.d.ts → data-display/project-avatar/project-avatar.d.ts} +1 -1
  17. package/dist/feedback/loader/loader.d.ts +3 -0
  18. package/dist/{components → feedback/progress-circle}/progress-circle.d.ts +2 -0
  19. package/dist/feedback/toast/toast.d.ts +57 -0
  20. package/dist/{components → forms/checkbox}/checkbox.d.ts +2 -2
  21. package/dist/{v2/components/field-v2.d.ts → forms/field/field.d.ts} +4 -10
  22. package/dist/forms/radio/radio.d.ts +16 -0
  23. package/dist/{v2/components/select-v2.d.ts → forms/select/select.d.ts} +4 -6
  24. package/dist/{components → forms/switch}/switch.d.ts +4 -2
  25. package/dist/{v2/components/text-input-v2.d.ts → forms/text-input/text-input.d.ts} +3 -3
  26. package/dist/forms/textarea/textarea.d.ts +7 -0
  27. package/dist/hooks/use-filtered-list.d.ts +9 -0
  28. package/dist/i18n/ar.d.ts +0 -2
  29. package/dist/i18n/bg.d.ts +0 -2
  30. package/dist/i18n/br.d.ts +0 -2
  31. package/dist/i18n/bs.d.ts +0 -2
  32. package/dist/i18n/da.d.ts +0 -2
  33. package/dist/i18n/de.d.ts +0 -2
  34. package/dist/i18n/en.d.ts +234 -1
  35. package/dist/i18n/es.d.ts +0 -2
  36. package/dist/i18n/fr.d.ts +0 -2
  37. package/dist/i18n/he.d.ts +197 -0
  38. package/dist/i18n/ja.d.ts +0 -2
  39. package/dist/i18n/km.d.ts +0 -2
  40. package/dist/i18n/ko.d.ts +0 -2
  41. package/dist/i18n/lo.d.ts +0 -2
  42. package/dist/i18n/mk.d.ts +0 -2
  43. package/dist/i18n/mn.d.ts +0 -2
  44. package/dist/i18n/my.d.ts +0 -2
  45. package/dist/i18n/pl.d.ts +0 -2
  46. package/dist/i18n/ru.d.ts +0 -2
  47. package/dist/i18n/sr.d.ts +0 -2
  48. package/dist/i18n/tg.d.ts +0 -2
  49. package/dist/i18n/th.d.ts +0 -2
  50. package/dist/i18n/tr.d.ts +0 -2
  51. package/dist/i18n/zh.d.ts +0 -2
  52. package/dist/i18n/zht.d.ts +0 -2
  53. package/dist/{components/icon.d.ts → icons/icon/additional-icons.d.ts} +8 -8
  54. package/dist/{v2/components → icons/icon}/icon.d.ts +24 -1
  55. package/dist/layout/divider/divider.d.ts +5 -0
  56. package/dist/navigation/menu/menu.d.ts +59 -0
  57. package/dist/{v2/components/segmented-control-v2.d.ts → navigation/segmented-control/segmented-control.d.ts} +5 -5
  58. package/dist/{components → navigation/tabs}/tabs.d.ts +15 -8
  59. package/dist/{v2/components/dialog-v2.d.ts → overlays/dialog/dialog.d.ts} +1 -2
  60. package/dist/overlays/tooltip/tooltip.d.ts +15 -0
  61. package/dist/{components → typography/text-shimmer}/text-shimmer.d.ts +1 -0
  62. package/dist/typography/wordmark/wordmark.d.ts +2 -0
  63. package/package.json +140 -34
  64. package/src/{components → actions/button}/button.tsx +10 -11
  65. package/src/actions/icon-button/icon-button.tsx +32 -0
  66. package/src/{v2/components/split-button-v2.css → actions/split-button/split-button.css} +1 -6
  67. package/src/{v2/components/split-button-v2.tsx → actions/split-button/split-button.tsx} +4 -4
  68. package/src/components/animated-number.css +29 -11
  69. package/src/components/animated-number.tsx +2 -2
  70. package/src/components/card.css +2 -23
  71. package/src/components/card.tsx +4 -4
  72. package/src/components/collapsible.tsx +2 -2
  73. package/src/components/dock-surface.css +2 -9
  74. package/src/components/image-preview.tsx +3 -2
  75. package/src/components/list.css +5 -5
  76. package/src/components/list.tsx +7 -5
  77. package/src/components/popover.tsx +3 -2
  78. package/src/components/scroll-view.tsx +5 -20
  79. package/src/components/sticky-accordion-header.tsx +1 -1
  80. package/src/components/text-field.tsx +12 -4
  81. package/src/context/dialog.tsx +1 -0
  82. package/src/context/i18n.tsx +17 -14
  83. package/src/context/marked-base.tsx +27 -0
  84. package/src/context/marked-parser.tsx +3 -13
  85. package/src/{components → data-display/accordion}/accordion.css +5 -31
  86. package/src/{components → data-display/accordion}/accordion.tsx +14 -14
  87. package/src/{v2/components/avatar-v2.tsx → data-display/avatar/avatar.tsx} +1 -1
  88. package/src/{v2/components/badge-v2.css → data-display/badge/badge.css} +19 -0
  89. package/src/{v2/components/badge-v2.tsx → data-display/badge/badge.tsx} +6 -4
  90. package/src/{components → data-display/diff-changes}/diff-changes.css +22 -19
  91. package/src/{v2/components/diff-changes-v2.tsx → data-display/diff-changes/diff-changes.tsx} +7 -2
  92. package/src/{v2/components/keybind-v2.css → data-display/keybind/keybind.css} +1 -1
  93. package/src/{v2/components/keybind-v2.tsx → data-display/keybind/keybind.tsx} +3 -3
  94. package/src/{v2/components/line-comment-v2.css → data-display/line-comment/line-comment.css} +4 -4
  95. package/src/{v2/components/line-comment-v2.tsx → data-display/line-comment/line-comment.tsx} +17 -15
  96. package/src/{v2/components/project-avatar-v2.tsx → data-display/project-avatar/project-avatar.tsx} +1 -1
  97. package/src/{v2/components/loader-v2.tsx → feedback/loader/loader.tsx} +2 -2
  98. package/src/feedback/progress-circle/progress-circle.css +28 -0
  99. package/src/feedback/progress-circle/progress-circle.tsx +64 -0
  100. package/src/{v2/components/toast-v2.tsx → feedback/toast/toast.tsx} +60 -58
  101. package/src/{components → forms/checkbox}/checkbox.css +1 -7
  102. package/src/{components → forms/checkbox}/checkbox.tsx +13 -13
  103. package/src/{v2/components/field-v2.css → forms/field/field.css} +1 -1
  104. package/src/{v2/components/field-v2.tsx → forms/field/field.tsx} +9 -11
  105. package/src/{v2/components/radio-v2.tsx → forms/radio/radio.tsx} +30 -20
  106. package/src/{v2/components/select-v2.css → forms/select/select.css} +2 -8
  107. package/src/{v2/components/select-v2.tsx → forms/select/select.tsx} +40 -32
  108. package/src/{v2/components/switch-v2.css → forms/switch/switch.css} +110 -0
  109. package/src/forms/switch/switch.tsx +34 -0
  110. package/src/{v2/components/text-input-v2.css → forms/text-input/text-input.css} +1 -1
  111. package/src/{v2/components/text-input-v2.tsx → forms/text-input/text-input.tsx} +4 -4
  112. package/src/{v2/components/textarea-v2.tsx → forms/textarea/textarea.tsx} +3 -3
  113. package/src/hooks/create-auto-scroll.tsx +20 -0
  114. package/src/i18n/am.ts +7 -9
  115. package/src/i18n/ar.ts +7 -9
  116. package/src/i18n/az.ts +7 -9
  117. package/src/i18n/bg.ts +7 -9
  118. package/src/i18n/bn.ts +7 -9
  119. package/src/i18n/br.ts +7 -9
  120. package/src/i18n/bs.ts +7 -9
  121. package/src/i18n/ca.ts +7 -9
  122. package/src/i18n/cs.ts +7 -9
  123. package/src/i18n/da.ts +7 -9
  124. package/src/i18n/de.ts +1 -3
  125. package/src/i18n/dv.ts +7 -9
  126. package/src/i18n/dz.ts +5 -7
  127. package/src/i18n/el.ts +7 -9
  128. package/src/i18n/en.ts +50 -11
  129. package/src/i18n/es.ts +6 -8
  130. package/src/i18n/et.ts +7 -9
  131. package/src/i18n/fa.ts +7 -9
  132. package/src/i18n/fi.ts +7 -9
  133. package/src/i18n/fo.ts +7 -9
  134. package/src/i18n/fr.ts +6 -8
  135. package/src/i18n/he.ts +199 -0
  136. package/src/i18n/hi.ts +7 -9
  137. package/src/i18n/hr.ts +7 -9
  138. package/src/i18n/hu.ts +7 -9
  139. package/src/i18n/hy.ts +7 -9
  140. package/src/i18n/id.ts +7 -9
  141. package/src/i18n/is.ts +7 -9
  142. package/src/i18n/it.ts +7 -9
  143. package/src/i18n/ja.ts +7 -9
  144. package/src/i18n/ka.ts +7 -9
  145. package/src/i18n/km.ts +7 -9
  146. package/src/i18n/ko.ts +7 -9
  147. package/src/i18n/lo.ts +7 -9
  148. package/src/i18n/lt.ts +7 -9
  149. package/src/i18n/lv.ts +7 -9
  150. package/src/i18n/mk.ts +7 -9
  151. package/src/i18n/mn.ts +7 -9
  152. package/src/i18n/ms.ts +7 -9
  153. package/src/i18n/my.ts +7 -9
  154. package/src/i18n/ne.ts +7 -9
  155. package/src/i18n/nl.ts +7 -9
  156. package/src/i18n/no.ts +7 -9
  157. package/src/i18n/pa.ts +7 -9
  158. package/src/i18n/pl.ts +7 -9
  159. package/src/i18n/ro.ts +7 -9
  160. package/src/i18n/ru.ts +7 -9
  161. package/src/i18n/si.ts +7 -9
  162. package/src/i18n/sk.ts +7 -9
  163. package/src/i18n/sl.ts +7 -9
  164. package/src/i18n/sq.ts +7 -9
  165. package/src/i18n/sr.ts +7 -9
  166. package/src/i18n/sv.ts +7 -9
  167. package/src/i18n/tg.ts +7 -9
  168. package/src/i18n/th.ts +7 -9
  169. package/src/i18n/tk.ts +7 -9
  170. package/src/i18n/tr.ts +7 -9
  171. package/src/i18n/uk.ts +7 -9
  172. package/src/i18n/ur.ts +7 -9
  173. package/src/i18n/uz.ts +7 -9
  174. package/src/i18n/vi.ts +7 -9
  175. package/src/i18n/zh.ts +7 -9
  176. package/src/i18n/zht.ts +7 -9
  177. package/src/{components/icon.tsx → icons/icon/additional-icons.ts} +8 -74
  178. package/src/icons/icon/icon.css +3 -0
  179. package/src/{v2/components → icons/icon}/icon.tsx +51 -10
  180. package/src/{v2/components/divider-v2.tsx → layout/divider/divider.tsx} +3 -3
  181. package/src/{v2/components/menu-v2.css → navigation/menu/menu.css} +123 -2
  182. package/src/{v2/components/menu-v2.tsx → navigation/menu/menu.tsx} +96 -32
  183. package/src/{v2/components/segmented-control-v2.css → navigation/segmented-control/segmented-control.css} +1 -1
  184. package/src/{v2/components/segmented-control-v2.tsx → navigation/segmented-control/segmented-control.tsx} +9 -8
  185. package/src/{v2/components/tabs-v2.css → navigation/tabs/tabs-current.css} +25 -10
  186. package/src/{components → navigation/tabs}/tabs.css +39 -229
  187. package/src/navigation/tabs/tabs.tsx +194 -0
  188. package/src/{v2/components/dialog-v2.css → overlays/dialog/dialog.css} +3 -0
  189. package/src/{v2/components/dialog-v2.tsx → overlays/dialog/dialog.tsx} +11 -13
  190. package/src/{v2/components/tooltip-v2.css → overlays/tooltip/tooltip.css} +26 -0
  191. package/src/{v2/components/tooltip-v2.tsx → overlays/tooltip/tooltip.tsx} +24 -17
  192. package/src/styles/base.css +5 -0
  193. package/src/styles/index.css +4 -20
  194. package/src/styles/tailwind/colors.css +1 -0
  195. package/src/styles/tailwind/index.css +18 -1
  196. package/src/styles/theme.css +2 -2
  197. package/src/{v2/styles → styles/tokens}/theme.css +18 -14
  198. package/src/theme/context.tsx +19 -11
  199. package/src/theme/themes/oc-2.json +3 -1
  200. package/src/theme/v2/foreground.ts +1 -0
  201. package/src/theme/v2/mapping.ts +4 -0
  202. package/src/{components → typography/text-shimmer}/text-shimmer.css +2 -1
  203. package/src/{components → typography/text-shimmer}/text-shimmer.tsx +1 -0
  204. package/src/{v2/components/wordmark-v2.tsx → typography/wordmark/wordmark.tsx} +2 -2
  205. package/dist/components/avatar.d.ts +0 -9
  206. package/dist/components/button.d.ts +0 -9
  207. package/dist/components/dialog.d.ts +0 -12
  208. package/dist/components/dropdown-menu.d.ts +0 -80
  209. package/dist/components/icon-button.d.ts +0 -10
  210. package/dist/components/keybind.d.ts +0 -6
  211. package/dist/components/radio-group.d.ts +0 -16
  212. package/dist/components/select.d.ts +0 -21
  213. package/dist/components/tag.d.ts +0 -5
  214. package/dist/components/toast.d.ts +0 -56
  215. package/dist/components/tooltip.d.ts +0 -17
  216. package/dist/v2/components/accordion-v2.d.ts +0 -26
  217. package/dist/v2/components/badge-v2.d.ts +0 -6
  218. package/dist/v2/components/button-v2.d.ts +0 -10
  219. package/dist/v2/components/checkbox-v2.d.ts +0 -10
  220. package/dist/v2/components/diff-changes-v2.d.ts +0 -11
  221. package/dist/v2/components/divider-v2.d.ts +0 -5
  222. package/dist/v2/components/icon-button-v2.d.ts +0 -11
  223. package/dist/v2/components/inline-input-v2.d.ts +0 -21
  224. package/dist/v2/components/keybind-v2.d.ts +0 -7
  225. package/dist/v2/components/loader-v2.d.ts +0 -3
  226. package/dist/v2/components/menu-v2.d.ts +0 -52
  227. package/dist/v2/components/progress-circle-v2.d.ts +0 -8
  228. package/dist/v2/components/radio-v2.d.ts +0 -16
  229. package/dist/v2/components/split-button-v2.d.ts +0 -5
  230. package/dist/v2/components/switch-v2.d.ts +0 -7
  231. package/dist/v2/components/tabs-v2.d.ts +0 -34
  232. package/dist/v2/components/text-shimmer-v2.d.ts +0 -9
  233. package/dist/v2/components/textarea-v2.d.ts +0 -7
  234. package/dist/v2/components/toast-v2.d.ts +0 -57
  235. package/dist/v2/components/tooltip-v2.d.ts +0 -13
  236. package/dist/v2/components/wordmark-v2.d.ts +0 -2
  237. package/src/components/avatar.css +0 -49
  238. package/src/components/avatar.tsx +0 -55
  239. package/src/components/button.css +0 -194
  240. package/src/components/dialog.css +0 -181
  241. package/src/components/dialog.tsx +0 -72
  242. package/src/components/diff-changes.tsx +0 -115
  243. package/src/components/dropdown-menu.css +0 -135
  244. package/src/components/dropdown-menu.tsx +0 -308
  245. package/src/components/icon-button.css +0 -181
  246. package/src/components/icon-button.tsx +0 -29
  247. package/src/components/icon.css +0 -39
  248. package/src/components/keybind.css +0 -18
  249. package/src/components/keybind.tsx +0 -20
  250. package/src/components/progress-circle.css +0 -16
  251. package/src/components/progress-circle.tsx +0 -64
  252. package/src/components/radio-group.css +0 -187
  253. package/src/components/radio-group.tsx +0 -83
  254. package/src/components/select.css +0 -201
  255. package/src/components/select.tsx +0 -174
  256. package/src/components/switch.css +0 -136
  257. package/src/components/switch.tsx +0 -29
  258. package/src/components/tabs.tsx +0 -126
  259. package/src/components/tag.css +0 -37
  260. package/src/components/tag.tsx +0 -22
  261. package/src/components/toast.css +0 -236
  262. package/src/components/toast.tsx +0 -185
  263. package/src/components/tooltip.css +0 -74
  264. package/src/components/tooltip.tsx +0 -163
  265. package/src/v2/components/accordion-v2.css +0 -139
  266. package/src/v2/components/accordion-v2.tsx +0 -86
  267. package/src/v2/components/button-v2.tsx +0 -35
  268. package/src/v2/components/checkbox-v2.css +0 -184
  269. package/src/v2/components/checkbox-v2.tsx +0 -65
  270. package/src/v2/components/diff-changes-v2.css +0 -26
  271. package/src/v2/components/icon-button-v2.tsx +0 -37
  272. package/src/v2/components/inline-input-v2.css +0 -225
  273. package/src/v2/components/inline-input-v2.tsx +0 -107
  274. package/src/v2/components/progress-circle-v2.css +0 -13
  275. package/src/v2/components/progress-circle-v2.tsx +0 -52
  276. package/src/v2/components/switch-v2.tsx +0 -28
  277. package/src/v2/components/tabs-v2.tsx +0 -149
  278. package/src/v2/components/text-shimmer-v2.css +0 -125
  279. package/src/v2/components/text-shimmer-v2.tsx +0 -63
  280. /package/dist/{components → forms/inline-input}/inline-input.d.ts +0 -0
  281. /package/dist/{v2/components → navigation}/tab-state-indicator.d.ts +0 -0
  282. /package/src/{v2/components/button-v2.css → actions/button/button.css} +0 -0
  283. /package/src/{v2/components/icon-button-v2.css → actions/icon-button/icon-button.css} +0 -0
  284. /package/src/{v2/components/avatar-v2.css → data-display/avatar/avatar.css} +0 -0
  285. /package/src/{v2/components/project-avatar-v2.css → data-display/project-avatar/project-avatar.css} +0 -0
  286. /package/src/{v2/components/loader-v2.css → feedback/loader/loader.css} +0 -0
  287. /package/src/{v2/components/toast-v2.css → feedback/toast/toast.css} +0 -0
  288. /package/src/{components → forms/inline-input}/inline-input.css +0 -0
  289. /package/src/{components → forms/inline-input}/inline-input.tsx +0 -0
  290. /package/src/{v2/components/radio-v2.css → forms/radio/radio.css} +0 -0
  291. /package/src/{v2/components/textarea-v2.css → forms/textarea/textarea.css} +0 -0
  292. /package/src/{v2/components/divider-v2.css → layout/divider/divider.css} +0 -0
  293. /package/src/{v2/components → navigation}/tab-state-indicator.tsx +0 -0
  294. /package/src/{v2/components/file-tree-v2.css → styles/file-tree.css} +0 -0
  295. /package/src/{v2/styles → styles/tokens}/colors.css +0 -0
  296. /package/src/{v2/styles/tailwind.css → styles/tokens/index.css} +0 -0
package/src/i18n/sv.ts CHANGED
@@ -10,7 +10,7 @@ export const dict: Record<string, string> = {
10
10
  "ui.sessionReview.change.added": "Tillagd",
11
11
  "ui.sessionReview.change.removed": "Borttagen",
12
12
  "ui.sessionReview.change.modified": "Ändrad",
13
- "ui.sessionReview.image.loading": "Laddar...",
13
+ "ui.sessionReview.image.loading": "Laddar",
14
14
  "ui.sessionReview.image.placeholder": "Bild",
15
15
  "ui.sessionReview.largeDiff.title": "Diff för stor för att återge",
16
16
  "ui.sessionReview.largeDiff.meta": "Gräns: {{limit}} ändrade rader. Aktuellt: {{current}} ändrade rader.",
@@ -28,7 +28,7 @@ export const dict: Record<string, string> = {
28
28
  "ui.sessionReviewV2.empty.noGit.title": "Inga spårade ändringar",
29
29
  "ui.sessionReviewV2.empty.noGit.description": "Spåra, granska och ångra ändringar i det här projektet",
30
30
  "ui.sessionReviewV2.empty.noGit.action": "Skapa Git-arkiv",
31
- "ui.sessionReviewV2.empty.noGit.actionLoading": "Skapar Git-arkiv...",
31
+ "ui.sessionReviewV2.empty.noGit.actionLoading": "Skapar Git-arkiv",
32
32
  "ui.sessionReviewV2.empty.changes.title": "Inga filändringar ännu",
33
33
  "ui.sessionReviewV2.empty.changes.description": "Projektändringar kommer att visas här",
34
34
  "ui.sessionReview.openFile": "Öppna filen",
@@ -37,7 +37,7 @@ export const dict: Record<string, string> = {
37
37
  "ui.fileMedia.kind.image": "bild",
38
38
  "ui.fileMedia.kind.audio": "ljud",
39
39
  "ui.fileMedia.state.removed": "Filen av typen {{kind}} har tagits bort.",
40
- "ui.fileMedia.state.loading": "Laddar {{kind}}...",
40
+ "ui.fileMedia.state.loading": "Laddar {{kind}}",
41
41
  "ui.fileMedia.state.error": "Det gick inte att ladda {{kind}}.",
42
42
  "ui.fileMedia.state.unavailable": "Förhandsvisning av {{kind}} är inte tillgänglig.",
43
43
  "ui.fileMedia.binary.title": "Binär fil",
@@ -69,7 +69,7 @@ export const dict: Record<string, string> = {
69
69
  "ui.sessionTurn.error.addCredits": "Lägg till krediter",
70
70
  "dialog.usageExceeded.freeTier.title": "Gratisgränsen nådd",
71
71
  "dialog.usageExceeded.freeTier.description":
72
- "Prenumerera på OpenCode Go för 10 USD/månad och få pålitlig tillgång till de bästa modellerna med öppen källkod.",
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
73
  "dialog.usageExceeded.freeTier.actionLabel": "Prenumerera",
74
74
  "dialog.usageExceeded.accountRateLimit.title": "Gränsen för Go har nåtts",
75
75
  "dialog.usageExceeded.accountRateLimit.description":
@@ -115,8 +115,8 @@ export const dict: Record<string, string> = {
115
115
  "ui.promptInput.dropFiles": "Släpp filer för att bifoga dem",
116
116
  "ui.promptInput.removeAttachment": "Ta bort bilagan",
117
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...",
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
120
  "ui.promptInput.add": "Lägg till bilder och filer",
121
121
  "ui.promptInput.attachments": "Bilder och filer",
122
122
  "ui.promptInput.context": "Kontext",
@@ -143,8 +143,6 @@ export const dict: Record<string, string> = {
143
143
  "ui.tool.websearch.provider": "{{provider}} Webbsökning",
144
144
  "ui.tool.shell": "Shell",
145
145
  "ui.tool.patch": "Patch",
146
- "ui.tool.todos": "Att göra",
147
- "ui.tool.todos.read": "Läs att göra-listan",
148
146
  "ui.tool.questions": "Frågor",
149
147
  "ui.tool.questions.numbered": "Frågor {{number}}",
150
148
  "ui.tool.agent": "{{type}}-agent",
@@ -193,5 +191,5 @@ export const dict: Record<string, string> = {
193
191
  "ui.question.review.notAnswered": "(ej besvarad)",
194
192
  "ui.question.multiHint": "Välj alla svar som gäller",
195
193
  "ui.question.singleHint": "Välj ett svar",
196
- "ui.question.custom.placeholder": "Skriv ditt svar...",
194
+ "ui.question.custom.placeholder": "Skriv ditt svar",
197
195
  }
package/src/i18n/tg.ts CHANGED
@@ -10,7 +10,7 @@ export const dict = {
10
10
  "ui.sessionReview.change.added": "Илова карда шуд",
11
11
  "ui.sessionReview.change.removed": "Хориҷ карда шуд",
12
12
  "ui.sessionReview.change.modified": "Тағир дода шудааст",
13
- "ui.sessionReview.image.loading": "Бор шуда истодааст...",
13
+ "ui.sessionReview.image.loading": "Бор шуда истодааст…",
14
14
  "ui.sessionReview.image.placeholder": "Тасвир",
15
15
  "ui.sessionReview.largeDiff.title": "Фарқият барои намоиш хеле калон",
16
16
  "ui.sessionReview.largeDiff.meta": "Маҳдудият: {{limit}} хатҳои ивазшуда. ҷорӣ: {{current}} сатрҳои иваз.",
@@ -28,7 +28,7 @@ export const dict = {
28
28
  "ui.sessionReviewV2.empty.noGit.title": "Тағироти пайгирӣ нест",
29
29
  "ui.sessionReviewV2.empty.noGit.description": "Тағиротро дар ин лоиҳа пайгирӣ кунед, баррасӣ кунед ва бекор кунед",
30
30
  "ui.sessionReviewV2.empty.noGit.action": "Эҷоди Git репозиторий",
31
- "ui.sessionReviewV2.empty.noGit.actionLoading": "Эҷоди Git анбор...",
31
+ "ui.sessionReviewV2.empty.noGit.actionLoading": "Эҷоди Git анбор…",
32
32
  "ui.sessionReviewV2.empty.changes.title": "Ҳанӯз ягон файл тағир намеёбад",
33
33
  "ui.sessionReviewV2.empty.changes.description": "Тағироти лоиҳа дар ин ҷо пайдо мешаванд",
34
34
  "ui.sessionReview.openFile": "Файлро кушоед",
@@ -37,7 +37,7 @@ export const dict = {
37
37
  "ui.fileMedia.kind.image": "тасвир",
38
38
  "ui.fileMedia.kind.audio": "аудио",
39
39
  "ui.fileMedia.state.removed": "Файли {{kind}} хориҷ карда шуд.",
40
- "ui.fileMedia.state.loading": "{{kind}} бор шуда истодааст...",
40
+ "ui.fileMedia.state.loading": "{{kind}} бор шуда истодааст…",
41
41
  "ui.fileMedia.state.error": "Бор кардан ғайриимкон аст {{kind}}.",
42
42
  "ui.fileMedia.state.unavailable": "{{kind}} пешнамоиш дастрас нест.",
43
43
  "ui.fileMedia.binary.title": "Файли дуӣ",
@@ -69,7 +69,7 @@ export const dict = {
69
69
  "ui.sessionTurn.error.addCredits": "Илова кардани кредитҳо",
70
70
  "dialog.usageExceeded.freeTier.title": "Ба ҳадди ройгон расид",
71
71
  "dialog.usageExceeded.freeTier.description":
72
- "Ба OpenCode Go бо нархи $10 дар як моҳ обуна шавед, то ба беҳтарин моделҳои кушодаасос дастрасии боэътимод дошта бошед.",
72
+ "Ба OpenCode Go обуна шавед, то дастрасии боэътимод ба беҳтарин моделҳои кушодаасос аз $5 дар як моҳ оғоз шавад.",
73
73
  "dialog.usageExceeded.freeTier.actionLabel": "Обуна шавед",
74
74
  "dialog.usageExceeded.accountRateLimit.title": "Ба маҳдудияти рафтан расид",
75
75
  "dialog.usageExceeded.accountRateLimit.description":
@@ -115,8 +115,8 @@ export const dict = {
115
115
  "ui.promptInput.dropFiles": "Файлҳоро барои замима гузоред",
116
116
  "ui.promptInput.removeAttachment": "Замимаро хориҷ кунед",
117
117
  "ui.promptInput.label": "Промпт",
118
- "ui.promptInput.placeholder.shell": "Фармони shell-ро ворид кунед...",
119
- "ui.promptInput.placeholder.normal": "Ҳама чизро пурсед, {{slash}} барои фармонҳо, {{at}} барои контекст...",
118
+ "ui.promptInput.placeholder.shell": "Фармони shell-ро ворид кунед…",
119
+ "ui.promptInput.placeholder.normal": "Ҳама чизро пурсед, {{slash}} барои фармонҳо, {{at}} барои контекст…",
120
120
  "ui.promptInput.add": "Илова кардани тасвирҳо ва файлҳо",
121
121
  "ui.promptInput.attachments": "Тасвирҳо ва файлҳо",
122
122
  "ui.promptInput.context": "Контекст",
@@ -143,8 +143,6 @@ export const dict = {
143
143
  "ui.tool.websearch.provider": "{{provider}} Ҷустуҷӯи веб",
144
144
  "ui.tool.shell": "Shell",
145
145
  "ui.tool.patch": "Patch",
146
- "ui.tool.todos": "Вазифаҳо",
147
- "ui.tool.todos.read": "Вазифаҳоро хонед",
148
146
  "ui.tool.questions": "Саволҳо",
149
147
  "ui.tool.questions.numbered": "Саволҳо {{number}}",
150
148
  "ui.tool.agent": "{{type}} Агент",
@@ -193,5 +191,5 @@ export const dict = {
193
191
  "ui.question.review.notAnswered": "(ҷавоб дода нашудааст)",
194
192
  "ui.question.multiHint": "Ҳамаи ҷавобҳои мувофиқро интихоб кунед",
195
193
  "ui.question.singleHint": "Як ҷавобро интихоб кунед",
196
- "ui.question.custom.placeholder": "Ҷавоби худро нависед...",
194
+ "ui.question.custom.placeholder": "Ҷавоби худро нависед…",
197
195
  }
package/src/i18n/th.ts CHANGED
@@ -13,7 +13,7 @@ export const dict = {
13
13
  "ui.sessionReview.change.added": "เพิ่ม",
14
14
  "ui.sessionReview.change.removed": "ลบ",
15
15
  "ui.sessionReview.change.modified": "แก้ไข",
16
- "ui.sessionReview.image.loading": "กำลังโหลด...",
16
+ "ui.sessionReview.image.loading": "กำลังโหลด…",
17
17
  "ui.sessionReview.image.placeholder": "รูปภาพ",
18
18
  "ui.sessionReview.largeDiff.title": "Diff มีขนาดใหญ่เกินกว่าจะแสดงผลได้",
19
19
  "ui.sessionReview.largeDiff.meta": "ขีดจำกัด: บรรทัดที่เปลี่ยนแปลง {{limit}} บรรทัด ปัจจุบัน: {{current}} บรรทัด",
@@ -31,13 +31,13 @@ export const dict = {
31
31
  "ui.sessionReviewV2.empty.noGit.title": "ไม่มีการเปลี่ยนแปลงที่ติดตามอยู่",
32
32
  "ui.sessionReviewV2.empty.noGit.description": "ติดตาม ตรวจสอบ และเลิกทำการเปลี่ยนแปลงในโปรเจกต์นี้",
33
33
  "ui.sessionReviewV2.empty.noGit.action": "สร้าง Git รีโพซิทอรี",
34
- "ui.sessionReviewV2.empty.noGit.actionLoading": "กำลังสร้าง Git รีโพซิทอรี...",
34
+ "ui.sessionReviewV2.empty.noGit.actionLoading": "กำลังสร้าง Git รีโพซิทอรี…",
35
35
  "ui.sessionReviewV2.empty.changes.title": "ยังไม่มีการเปลี่ยนแปลงไฟล์",
36
36
  "ui.sessionReviewV2.empty.changes.description": "การเปลี่ยนแปลงในโปรเจกต์จะแสดงที่นี่",
37
37
  "ui.fileMedia.kind.image": "รูปภาพ",
38
38
  "ui.fileMedia.kind.audio": "เสียง",
39
39
  "ui.fileMedia.state.removed": "ลบ{{kind}}แล้ว",
40
- "ui.fileMedia.state.loading": "กำลังโหลด{{kind}}...",
40
+ "ui.fileMedia.state.loading": "กำลังโหลด{{kind}}",
41
41
  "ui.fileMedia.state.error": "เกิดข้อผิดพลาดในการโหลด{{kind}}",
42
42
  "ui.fileMedia.state.unavailable": "{{kind}}ไม่พร้อมใช้งาน",
43
43
  "ui.fileMedia.binary.title": "ไฟล์ไบนารี",
@@ -73,7 +73,7 @@ export const dict = {
73
73
 
74
74
  "dialog.usageExceeded.freeTier.title": "ถึงขีดจำกัดฟรีแล้ว",
75
75
  "dialog.usageExceeded.freeTier.description":
76
- "สมัครสมาชิก OpenCode Go ในราคา $10/เดือน เพื่อการเข้าถึงโมเดลโอเพนซอร์สที่ดีที่สุดอย่างเชื่อถือได้",
76
+ "สมัครสมาชิก OpenCode Go เพื่อการเข้าถึงโมเดลโอเพนซอร์สที่ดีที่สุดอย่างเชื่อถือได้ เริ่มต้นที่ $5/เดือน",
77
77
  "dialog.usageExceeded.freeTier.actionLabel": "สมัครสมาชิก",
78
78
  "dialog.usageExceeded.accountRateLimit.title": "ถึงขีดจำกัดของ Go แล้ว",
79
79
  "dialog.usageExceeded.accountRateLimit.description":
@@ -120,8 +120,8 @@ export const dict = {
120
120
  "ui.promptInput.dropFiles": "วางไฟล์เพื่อแนบ",
121
121
  "ui.promptInput.removeAttachment": "เอาไฟล์แนบออก",
122
122
  "ui.promptInput.label": "พรอมต์",
123
- "ui.promptInput.placeholder.shell": "ป้อนคำสั่งเชลล์...",
124
- "ui.promptInput.placeholder.normal": "ถามอะไรก็ได้ {{slash}} สำหรับคำสั่ง {{at}} สำหรับบริบท...",
123
+ "ui.promptInput.placeholder.shell": "ป้อนคำสั่งเชลล์…",
124
+ "ui.promptInput.placeholder.normal": "ถามอะไรก็ได้ {{slash}} สำหรับคำสั่ง {{at}} สำหรับบริบท…",
125
125
  "ui.promptInput.add": "เพิ่มรูปภาพและไฟล์",
126
126
  "ui.promptInput.attachments": "รูปภาพและไฟล์",
127
127
  "ui.promptInput.context": "บริบท",
@@ -151,8 +151,6 @@ export const dict = {
151
151
  "ui.tool.websearch.provider": "{{provider}} ค้นหาเว็บ",
152
152
  "ui.tool.shell": "เชลล์",
153
153
  "ui.tool.patch": "แพตช์",
154
- "ui.tool.todos": "รายการงาน",
155
- "ui.tool.todos.read": "อ่านรายการงาน",
156
154
  "ui.tool.questions": "คำถาม",
157
155
  "ui.tool.questions.numbered": "คำถาม {{number}}",
158
156
  "ui.tool.agent": "เอเจนต์ {{type}}",
@@ -201,7 +199,7 @@ export const dict = {
201
199
  "ui.question.review.notAnswered": "(ไม่ได้ตอบ)",
202
200
  "ui.question.multiHint": "เลือกคำตอบที่เกี่ยวข้องทั้งหมด",
203
201
  "ui.question.singleHint": "เลือกคำตอบหนึ่งข้อ",
204
- "ui.question.custom.placeholder": "พิมพ์คำตอบของคุณ...",
202
+ "ui.question.custom.placeholder": "พิมพ์คำตอบของคุณ…",
205
203
 
206
204
  "ui.fileSearch.placeholder": "ค้นหา",
207
205
  "ui.fileSearch.previousMatch": "ก่อนหน้า",
package/src/i18n/tk.ts CHANGED
@@ -10,7 +10,7 @@ export const dict: Record<string, string> = {
10
10
  "ui.sessionReview.change.added": "Goşuldy",
11
11
  "ui.sessionReview.change.removed": "Aýyryldy",
12
12
  "ui.sessionReview.change.modified": "Üýtgedildi",
13
- "ui.sessionReview.image.loading": "Adingüklenýär ...",
13
+ "ui.sessionReview.image.loading": "Adingüklenýär ",
14
14
  "ui.sessionReview.image.placeholder": "Surat",
15
15
  "ui.sessionReview.largeDiff.title": "Görkezmek üçin gaty uly tapawut",
16
16
  "ui.sessionReview.largeDiff.meta": "Çäk: {{limit}} üýtgedilen setirler. Häzirki: {{current}} setirleri üýtgetdi.",
@@ -28,7 +28,7 @@ export const dict: Record<string, string> = {
28
28
  "ui.sessionReviewV2.empty.noGit.title": "Gözegçilik edilmedi",
29
29
  "ui.sessionReviewV2.empty.noGit.description": "Bu taslamadaky üýtgeşmeleri yzarlaň, gözden geçiriň we yzyna alyň",
30
30
  "ui.sessionReviewV2.empty.noGit.action": "Git ammary dörediň",
31
- "ui.sessionReviewV2.empty.noGit.actionLoading": "Git ammaryny döretmek ...",
31
+ "ui.sessionReviewV2.empty.noGit.actionLoading": "Git ammaryny döretmek ",
32
32
  "ui.sessionReviewV2.empty.changes.title": "Entek faýl üýtgemeýär",
33
33
  "ui.sessionReviewV2.empty.changes.description": "Taslama üýtgeşmeleri şu ýerde peýda bolar",
34
34
  "ui.sessionReview.openFile": "Faýl açyň",
@@ -37,7 +37,7 @@ export const dict: Record<string, string> = {
37
37
  "ui.fileMedia.kind.image": "şekil",
38
38
  "ui.fileMedia.kind.audio": "ses",
39
39
  "ui.fileMedia.state.removed": "{{kind}} faýly aýryldy.",
40
- "ui.fileMedia.state.loading": "{{kind}} ýüklenýär ...",
40
+ "ui.fileMedia.state.loading": "{{kind}} ýüklenýär ",
41
41
  "ui.fileMedia.state.error": "{{kind}} ýükläp bolmaýar.",
42
42
  "ui.fileMedia.state.unavailable": "{{kind}} deslapky syn elýeterli däl.",
43
43
  "ui.fileMedia.binary.title": "Ikilik faýl",
@@ -69,7 +69,7 @@ export const dict: Record<string, string> = {
69
69
  "ui.sessionTurn.error.addCredits": "Karz goşuň",
70
70
  "dialog.usageExceeded.freeTier.title": "Mugt çäk ýetdi",
71
71
  "dialog.usageExceeded.freeTier.description":
72
- "Iň oňat açyk çeşme modellerine ygtybarly girmek üçin aýda 10 $ töläp, OpenCode Go-a ýazylyň.",
72
+ "Iň oňat açyk çeşme modellerine ygtybarly girmek üçin aýda 5 $ -dan başlap, OpenCode Go-a ýazylyň.",
73
73
  "dialog.usageExceeded.freeTier.actionLabel": "Abuna ýazylyň",
74
74
  "dialog.usageExceeded.accountRateLimit.title": "Çäklendirildi",
75
75
  "dialog.usageExceeded.accountRateLimit.description":
@@ -115,8 +115,8 @@ export const dict: Record<string, string> = {
115
115
  "ui.promptInput.dropFiles": "Birikdirmek üçin faýllary taşlaň",
116
116
  "ui.promptInput.removeAttachment": "Goşundyny aýyryň",
117
117
  "ui.promptInput.label": "Prompt",
118
- "ui.promptInput.placeholder.shell": "Shell buýrugyny giriziň ...",
119
- "ui.promptInput.placeholder.normal": "Islän zadyňyzy soraň, buýruklar üçin {{slash}}, kontekst üçin {{at}} ...",
118
+ "ui.promptInput.placeholder.shell": "Shell buýrugyny giriziň ",
119
+ "ui.promptInput.placeholder.normal": "Islän zadyňyzy soraň, buýruklar üçin {{slash}}, kontekst üçin {{at}} ",
120
120
  "ui.promptInput.add": "Suratlar we faýllar goşuň",
121
121
  "ui.promptInput.attachments": "Suratlar we faýllar",
122
122
  "ui.promptInput.context": "Kontekst",
@@ -143,8 +143,6 @@ export const dict: Record<string, string> = {
143
143
  "ui.tool.websearch.provider": "{{provider}} Web gözlegi",
144
144
  "ui.tool.shell": "Shell",
145
145
  "ui.tool.patch": "Patch",
146
- "ui.tool.todos": "Edilmeli işler",
147
- "ui.tool.todos.read": "Edilmeli zatlary okaň",
148
146
  "ui.tool.questions": "Soraglar",
149
147
  "ui.tool.questions.numbered": "Soraglar {{number}}",
150
148
  "ui.tool.agent": "{{type}} Agenti",
@@ -193,5 +191,5 @@ export const dict: Record<string, string> = {
193
191
  "ui.question.review.notAnswered": "(jogap berilmedi)",
194
192
  "ui.question.multiHint": "Appliceshli jogaplary saýlaň",
195
193
  "ui.question.singleHint": "Bir jogap saýlaň",
196
- "ui.question.custom.placeholder": "Jogabyňyzy ýazyň ...",
194
+ "ui.question.custom.placeholder": "Jogabyňyzy ýazyň ",
197
195
  }
package/src/i18n/tr.ts CHANGED
@@ -18,7 +18,7 @@ export const dict = {
18
18
  "ui.sessionReview.change.added": "Eklendi",
19
19
  "ui.sessionReview.change.removed": "Kaldırıldı",
20
20
  "ui.sessionReview.change.modified": "Değiştirildi",
21
- "ui.sessionReview.image.loading": "Yükleniyor...",
21
+ "ui.sessionReview.image.loading": "Yükleniyor",
22
22
  "ui.sessionReview.image.placeholder": "Görsel",
23
23
  "ui.sessionReview.largeDiff.title": "Fark görüntülenemeyecek kadar büyük",
24
24
  "ui.sessionReview.largeDiff.meta": "Sınır: {{limit}} değişen satır. Mevcut: {{current}} değişen satır.",
@@ -36,14 +36,14 @@ export const dict = {
36
36
  "ui.sessionReviewV2.empty.noGit.title": "İzlenen değişiklik yok",
37
37
  "ui.sessionReviewV2.empty.noGit.description": "Bu projedeki değişiklikleri takip et, incele ve geri al",
38
38
  "ui.sessionReviewV2.empty.noGit.action": "Git deposu oluştur",
39
- "ui.sessionReviewV2.empty.noGit.actionLoading": "Git deposu oluşturuluyor...",
39
+ "ui.sessionReviewV2.empty.noGit.actionLoading": "Git deposu oluşturuluyor",
40
40
  "ui.sessionReviewV2.empty.changes.title": "Henüz dosya değişikliği yok",
41
41
  "ui.sessionReviewV2.empty.changes.description": "Proje değişiklikleri burada görünecek",
42
42
 
43
43
  "ui.fileMedia.kind.image": "görsel",
44
44
  "ui.fileMedia.kind.audio": "ses",
45
45
  "ui.fileMedia.state.removed": "{{kind}} dosyası kaldırıldı.",
46
- "ui.fileMedia.state.loading": "{{kind}} yükleniyor...",
46
+ "ui.fileMedia.state.loading": "{{kind}} yükleniyor",
47
47
  "ui.fileMedia.state.error": "{{kind}} yüklenemedi.",
48
48
  "ui.fileMedia.state.unavailable": "{{kind}} önizlemesi kullanılamıyor.",
49
49
  "ui.fileMedia.binary.title": "İkili dosya",
@@ -79,7 +79,7 @@ export const dict = {
79
79
 
80
80
  "dialog.usageExceeded.freeTier.title": "Ücretsiz sınıra ulaşıldı",
81
81
  "dialog.usageExceeded.freeTier.description":
82
- "En iyi açık kaynaklı modellere güvenilir erişim için aylık $10 karşılığında OpenCode Go'ya abone olun.",
82
+ "En iyi açık kaynaklı modellere güvenilir erişim için OpenCode Go'ya abone olun. Aylık $5'ten başlar.",
83
83
  "dialog.usageExceeded.freeTier.actionLabel": "Abone ol",
84
84
  "dialog.usageExceeded.accountRateLimit.title": "Go sınırına ulaşıldı",
85
85
  "dialog.usageExceeded.accountRateLimit.description":
@@ -126,8 +126,8 @@ export const dict = {
126
126
  "ui.promptInput.dropFiles": "Eklemek için dosyaları bırakın",
127
127
  "ui.promptInput.removeAttachment": "Eki kaldır",
128
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...",
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
131
  "ui.promptInput.add": "Görsel ve dosya ekle",
132
132
  "ui.promptInput.attachments": "Görseller ve dosyalar",
133
133
  "ui.promptInput.context": "Bağlam",
@@ -157,8 +157,6 @@ export const dict = {
157
157
  "ui.tool.websearch.provider": "{{provider}} Web araması",
158
158
  "ui.tool.shell": "Kabuk",
159
159
  "ui.tool.patch": "Yama",
160
- "ui.tool.todos": "Görevler",
161
- "ui.tool.todos.read": "Görevleri oku",
162
160
  "ui.tool.questions": "Sorular",
163
161
  "ui.tool.questions.numbered": "Sorular {{number}}",
164
162
  "ui.tool.agent": "{{type}} ajanı",
@@ -207,7 +205,7 @@ export const dict = {
207
205
  "ui.question.review.notAnswered": "(yanıtlanmadı)",
208
206
  "ui.question.multiHint": "Uygun olan tüm yanıtları seçin",
209
207
  "ui.question.singleHint": "Bir yanıt seçin",
210
- "ui.question.custom.placeholder": "Yanıtınızı yazın...",
208
+ "ui.question.custom.placeholder": "Yanıtınızı yazın",
211
209
 
212
210
  "ui.fileSearch.placeholder": "Bul",
213
211
  "ui.fileSearch.previousMatch": "Önceki eşleşme",
package/src/i18n/uk.ts CHANGED
@@ -10,7 +10,7 @@ export const dict: Record<string, string> = {
10
10
  "ui.sessionReview.change.added": "Додано",
11
11
  "ui.sessionReview.change.removed": "Видалено",
12
12
  "ui.sessionReview.change.modified": "Змінено",
13
- "ui.sessionReview.image.loading": "Завантаження...",
13
+ "ui.sessionReview.image.loading": "Завантаження…",
14
14
  "ui.sessionReview.image.placeholder": "Зображення",
15
15
  "ui.sessionReview.largeDiff.title": "Завеликий diff для відображення",
16
16
  "ui.sessionReview.largeDiff.meta": "Ліміт: {{limit}} змінених рядків. Зараз: {{current}} змінених рядків.",
@@ -28,7 +28,7 @@ export const dict: Record<string, string> = {
28
28
  "ui.sessionReviewV2.empty.noGit.title": "Немає відстежуваних змін",
29
29
  "ui.sessionReviewV2.empty.noGit.description": "Відстежуйте, переглядайте та скасовуйте зміни в цьому проєкті",
30
30
  "ui.sessionReviewV2.empty.noGit.action": "Створити Git-репозиторій",
31
- "ui.sessionReviewV2.empty.noGit.actionLoading": "Створення Git-репозиторію...",
31
+ "ui.sessionReviewV2.empty.noGit.actionLoading": "Створення Git-репозиторію…",
32
32
  "ui.sessionReviewV2.empty.changes.title": "Змін у файлах ще немає",
33
33
  "ui.sessionReviewV2.empty.changes.description": "Зміни проєкту з'являться тут",
34
34
 
@@ -39,7 +39,7 @@ export const dict: Record<string, string> = {
39
39
  "ui.fileMedia.kind.image": "зображення",
40
40
  "ui.fileMedia.kind.audio": "аудіо",
41
41
  "ui.fileMedia.state.removed": "{{kind}} видалено",
42
- "ui.fileMedia.state.loading": "Завантаження {{kind}}...",
42
+ "ui.fileMedia.state.loading": "Завантаження {{kind}}",
43
43
  "ui.fileMedia.state.error": "Не вдалося завантажити {{kind}}",
44
44
  "ui.fileMedia.state.unavailable": "{{kind}} недоступне",
45
45
  "ui.fileMedia.binary.title": "Двійковий файл",
@@ -77,7 +77,7 @@ export const dict: Record<string, string> = {
77
77
 
78
78
  "dialog.usageExceeded.freeTier.title": "Безкоштовний ліміт вичерпано",
79
79
  "dialog.usageExceeded.freeTier.description":
80
- "Підпишіться на OpenCode Go за $10 на місяць для надійного доступу до найкращих моделей із відкритим кодом.",
80
+ "Підпишіться на OpenCode Go для надійного доступу до найкращих моделей із відкритим кодом від $5 на місяць.",
81
81
  "dialog.usageExceeded.freeTier.actionLabel": "Підписатися",
82
82
  "dialog.usageExceeded.accountRateLimit.title": "Ліміт Go вичерпано",
83
83
  "dialog.usageExceeded.accountRateLimit.description":
@@ -135,8 +135,8 @@ export const dict: Record<string, string> = {
135
135
  "ui.promptInput.dropFiles": "Перетягніть файли, щоб прикріпити",
136
136
  "ui.promptInput.removeAttachment": "Видалити вкладення",
137
137
  "ui.promptInput.label": "Запит",
138
- "ui.promptInput.placeholder.shell": "Введіть команду оболонки...",
139
- "ui.promptInput.placeholder.normal": "Запитайте що завгодно, {{slash}} для команд, {{at}} для контексту...",
138
+ "ui.promptInput.placeholder.shell": "Введіть команду оболонки…",
139
+ "ui.promptInput.placeholder.normal": "Запитайте що завгодно, {{slash}} для команд, {{at}} для контексту…",
140
140
  "ui.promptInput.add": "Додати зображення та файли",
141
141
  "ui.promptInput.attachments": "Зображення та файли",
142
142
  "ui.promptInput.context": "Контекст",
@@ -167,8 +167,6 @@ export const dict: Record<string, string> = {
167
167
  "ui.tool.websearch.provider": "{{provider}} Веб-пошук",
168
168
  "ui.tool.shell": "Оболонка",
169
169
  "ui.tool.patch": "Патч",
170
- "ui.tool.todos": "Завдання",
171
- "ui.tool.todos.read": "Читати завдання",
172
170
  "ui.tool.questions": "Запитання",
173
171
  "ui.tool.questions.numbered": "Запитання {{number}}",
174
172
  "ui.tool.agent": "Агент {{type}}",
@@ -224,5 +222,5 @@ export const dict: Record<string, string> = {
224
222
  "ui.question.review.notAnswered": "(не відповіли)",
225
223
  "ui.question.multiHint": "Виберіть усі відповідні варіанти",
226
224
  "ui.question.singleHint": "Виберіть одну відповідь",
227
- "ui.question.custom.placeholder": "Введіть свою відповідь...",
225
+ "ui.question.custom.placeholder": "Введіть свою відповідь…",
228
226
  }
package/src/i18n/ur.ts CHANGED
@@ -10,7 +10,7 @@ export const dict: Record<string, string> = {
10
10
  "ui.sessionReview.change.added": "شامل کیا گیا۔",
11
11
  "ui.sessionReview.change.removed": "ہٹا دیا گیا۔",
12
12
  "ui.sessionReview.change.modified": "ترمیم شدہ",
13
- "ui.sessionReview.image.loading": "لوڈ ہو رہا ہے...",
13
+ "ui.sessionReview.image.loading": "لوڈ ہو رہا ہے…",
14
14
  "ui.sessionReview.image.placeholder": "تصویر",
15
15
  "ui.sessionReview.largeDiff.title": "دکھانے کے لیے تبدیلیاں بہت زیادہ ہیں",
16
16
  "ui.sessionReview.largeDiff.meta": "حد: {{limit}} تبدیل شدہ لائنیں۔ موجودہ: {{current}} تبدیل شدہ لائنیں۔",
@@ -29,7 +29,7 @@ export const dict: Record<string, string> = {
29
29
  "ui.sessionReviewV2.empty.noGit.description":
30
30
  "اس پروجیکٹ میں تبدیلیوں کو ٹریک کریں، ان کا جائزہ لیں اور ان کو کالعدم کریں۔",
31
31
  "ui.sessionReviewV2.empty.noGit.action": "Git ریپوزٹری بنائیں",
32
- "ui.sessionReviewV2.empty.noGit.actionLoading": "Git ریپوزٹری بنائی جا رہی ہے...",
32
+ "ui.sessionReviewV2.empty.noGit.actionLoading": "Git ریپوزٹری بنائی جا رہی ہے…",
33
33
  "ui.sessionReviewV2.empty.changes.title": "ابھی تک کوئی فائل تبدیل نہیں ہوئی ہے۔",
34
34
  "ui.sessionReviewV2.empty.changes.description": "پروجیکٹ کی تبدیلیاں یہاں ظاہر ہوں گی۔",
35
35
  "ui.sessionReview.openFile": "فائل کھولیں۔",
@@ -38,7 +38,7 @@ export const dict: Record<string, string> = {
38
38
  "ui.fileMedia.kind.image": "تصویر",
39
39
  "ui.fileMedia.kind.audio": "آڈیو",
40
40
  "ui.fileMedia.state.removed": "{{kind}} کی فائل ہٹا دی گئی۔",
41
- "ui.fileMedia.state.loading": "{{kind}} لوڈ ہو رہا ہے...",
41
+ "ui.fileMedia.state.loading": "{{kind}} لوڈ ہو رہا ہے…",
42
42
  "ui.fileMedia.state.error": "{{kind}} لوڈ کرنے سے قاصر۔",
43
43
  "ui.fileMedia.state.unavailable": "{{kind}} پیش نظارہ دستیاب نہیں ہے۔",
44
44
  "ui.fileMedia.binary.title": "بائنری فائل",
@@ -70,7 +70,7 @@ export const dict: Record<string, string> = {
70
70
  "ui.sessionTurn.error.addCredits": "کریڈٹ شامل کریں۔",
71
71
  "dialog.usageExceeded.freeTier.title": "مفت استعمال کی حد پوری ہو گئی",
72
72
  "dialog.usageExceeded.freeTier.description":
73
- "$10/ماہ میں بہترین اوپن سورس ماڈلز تک قابل اعتماد رسائی کے لیے OpenCode Go کو سبسکرائب کریں۔",
73
+ "$5/ماہ سے شروع ہونے والے بہترین اوپن سورس ماڈلز تک قابل اعتماد رسائی کے لیے OpenCode Go کو سبسکرائب کریں۔",
74
74
  "dialog.usageExceeded.freeTier.actionLabel": "سبسکرائب کریں۔",
75
75
  "dialog.usageExceeded.accountRateLimit.title": "Go حد تک پہنچ گئی۔",
76
76
  "dialog.usageExceeded.accountRateLimit.description":
@@ -116,8 +116,8 @@ export const dict: Record<string, string> = {
116
116
  "ui.promptInput.dropFiles": "منسلک کرنے کے لیے فائلیں یہاں چھوڑیں",
117
117
  "ui.promptInput.removeAttachment": "منسلکہ ہٹائیں",
118
118
  "ui.promptInput.label": "پرامپٹ",
119
- "ui.promptInput.placeholder.shell": "شیل کمانڈ درج کریں...",
120
- "ui.promptInput.placeholder.normal": "کچھ بھی پوچھیں، {{slash}} کمانڈز کے لیے، {{at}} سیاق و سباق کے لیے...",
119
+ "ui.promptInput.placeholder.shell": "شیل کمانڈ درج کریں…",
120
+ "ui.promptInput.placeholder.normal": "کچھ بھی پوچھیں، {{slash}} کمانڈز کے لیے، {{at}} سیاق و سباق کے لیے…",
121
121
  "ui.promptInput.add": "تصاویر اور فائلیں شامل کریں",
122
122
  "ui.promptInput.attachments": "تصاویر اور فائلیں",
123
123
  "ui.promptInput.context": "سیاق و سباق",
@@ -144,8 +144,6 @@ export const dict: Record<string, string> = {
144
144
  "ui.tool.websearch.provider": "{{provider}} ویب تلاش",
145
145
  "ui.tool.shell": "شیل",
146
146
  "ui.tool.patch": "پیچ",
147
- "ui.tool.todos": "زیر التوا کام",
148
- "ui.tool.todos.read": "زیر التوا کام پڑھیں",
149
147
  "ui.tool.questions": "سوالات",
150
148
  "ui.tool.questions.numbered": "سوالات {{number}}",
151
149
  "ui.tool.agent": "{{type}} ایجنٹ",
@@ -194,5 +192,5 @@ export const dict: Record<string, string> = {
194
192
  "ui.question.review.notAnswered": "(جواب نہیں دیا گیا)",
195
193
  "ui.question.multiHint": "لاگو ہونے والے تمام جوابات کو منتخب کریں۔",
196
194
  "ui.question.singleHint": "ایک جواب منتخب کریں۔",
197
- "ui.question.custom.placeholder": "اپنا جواب ٹائپ کریں...",
195
+ "ui.question.custom.placeholder": "اپنا جواب ٹائپ کریں…",
198
196
  }
package/src/i18n/uz.ts CHANGED
@@ -10,7 +10,7 @@ export const dict: Record<string, string> = {
10
10
  "ui.sessionReview.change.added": "Qo'shilgan",
11
11
  "ui.sessionReview.change.removed": "Oʻchirildi",
12
12
  "ui.sessionReview.change.modified": "Oʻzgartirilgan",
13
- "ui.sessionReview.image.loading": "Yuklanmoqda...",
13
+ "ui.sessionReview.image.loading": "Yuklanmoqda",
14
14
  "ui.sessionReview.image.placeholder": "Rasm",
15
15
  "ui.sessionReview.largeDiff.title": "Farq koʻrsatish uchun juda katta",
16
16
  "ui.sessionReview.largeDiff.meta":
@@ -30,7 +30,7 @@ export const dict: Record<string, string> = {
30
30
  "ui.sessionReviewV2.empty.noGit.description":
31
31
  "Ushbu loyihadagi oʻzgarishlarni kuzating, koʻrib chiqing va bekor qiling",
32
32
  "ui.sessionReviewV2.empty.noGit.action": "Git omborini yarating",
33
- "ui.sessionReviewV2.empty.noGit.actionLoading": "Git ombori yaratilmoqda...",
33
+ "ui.sessionReviewV2.empty.noGit.actionLoading": "Git ombori yaratilmoqda",
34
34
  "ui.sessionReviewV2.empty.changes.title": "Hozircha fayl oʻzgarmadi",
35
35
  "ui.sessionReviewV2.empty.changes.description": "Loyiha o'zgarishlari shu yerda paydo bo'ladi",
36
36
  "ui.sessionReview.openFile": "Faylni ochish",
@@ -39,7 +39,7 @@ export const dict: Record<string, string> = {
39
39
  "ui.fileMedia.kind.image": "tasvir",
40
40
  "ui.fileMedia.kind.audio": "audio",
41
41
  "ui.fileMedia.state.removed": "{{kind}} fayli olib tashlandi.",
42
- "ui.fileMedia.state.loading": "{{kind}} yuklanmoqda...",
42
+ "ui.fileMedia.state.loading": "{{kind}} yuklanmoqda",
43
43
  "ui.fileMedia.state.error": "{{kind}} yuklanmadi.",
44
44
  "ui.fileMedia.state.unavailable": "{{kind}} oldindan koʻrish mavjud emas.",
45
45
  "ui.fileMedia.binary.title": "Ikkilik fayl",
@@ -71,7 +71,7 @@ export const dict: Record<string, string> = {
71
71
  "ui.sessionTurn.error.addCredits": "Kredit qo'shing",
72
72
  "dialog.usageExceeded.freeTier.title": "Bepul chegaraga yetdi",
73
73
  "dialog.usageExceeded.freeTier.description":
74
- "Oyiga $10 evaziga eng yaxshi ochiq kodli modellarga ishonchli kirish uchun OpenCode Go ga obuna bo'ling.",
74
+ "Oyiga $5 dan boshlab eng yaxshi ochiq kodli modellarga ishonchli kirish uchun OpenCode Go ga obuna bo'ling.",
75
75
  "dialog.usageExceeded.freeTier.actionLabel": "Obuna boʻling",
76
76
  "dialog.usageExceeded.accountRateLimit.title": "Oʻtish chegarasiga yetdi",
77
77
  "dialog.usageExceeded.accountRateLimit.description":
@@ -117,9 +117,9 @@ export const dict: Record<string, string> = {
117
117
  "ui.promptInput.dropFiles": "Biriktirish uchun fayllarni qoldiring",
118
118
  "ui.promptInput.removeAttachment": "Qo'shimchani olib tashlang",
119
119
  "ui.promptInput.label": "Tezkor",
120
- "ui.promptInput.placeholder.shell": "Shell buyrug'ini kiriting...",
120
+ "ui.promptInput.placeholder.shell": "Shell buyrug'ini kiriting",
121
121
  "ui.promptInput.placeholder.normal":
122
- "Har qanday narsani so'rang, buyruqlar uchun {{slash}}, kontekst uchun {{at}}...",
122
+ "Har qanday narsani so'rang, buyruqlar uchun {{slash}}, kontekst uchun {{at}}",
123
123
  "ui.promptInput.add": "Rasmlar va fayllarni qo'shing",
124
124
  "ui.promptInput.attachments": "Rasmlar va fayllar",
125
125
  "ui.promptInput.context": "Kontekst",
@@ -146,8 +146,6 @@ export const dict: Record<string, string> = {
146
146
  "ui.tool.websearch.provider": "{{provider}} veb-qidiruv",
147
147
  "ui.tool.shell": "Shell",
148
148
  "ui.tool.patch": "Yamoq",
149
- "ui.tool.todos": "Vazifalar",
150
- "ui.tool.todos.read": "Vazifalarni o'qing",
151
149
  "ui.tool.questions": "Savollar",
152
150
  "ui.tool.questions.numbered": "Savollar {{number}}",
153
151
  "ui.tool.agent": "{{type}} agenti",
@@ -196,5 +194,5 @@ export const dict: Record<string, string> = {
196
194
  "ui.question.review.notAnswered": "(javob berilmagan)",
197
195
  "ui.question.multiHint": "Barcha tegishli javoblarni tanlang",
198
196
  "ui.question.singleHint": "Bitta javobni tanlang",
199
- "ui.question.custom.placeholder": "Javobingizni yozing...",
197
+ "ui.question.custom.placeholder": "Javobingizni yozing",
200
198
  }
package/src/i18n/vi.ts CHANGED
@@ -10,7 +10,7 @@ export const dict: Record<string, string> = {
10
10
  "ui.sessionReview.change.added": "Đã thêm",
11
11
  "ui.sessionReview.change.removed": "Đã xóa",
12
12
  "ui.sessionReview.change.modified": "Đã sửa đổi",
13
- "ui.sessionReview.image.loading": "Đang tải...",
13
+ "ui.sessionReview.image.loading": "Đang tải",
14
14
  "ui.sessionReview.image.placeholder": "Hình ảnh",
15
15
  "ui.sessionReview.largeDiff.title": "Diff quá lớn để hiển thị",
16
16
  "ui.sessionReview.largeDiff.meta": "Giới hạn: {{limit}} dòng thay đổi. Hiện tại: {{current}} dòng thay đổi.",
@@ -28,7 +28,7 @@ export const dict: Record<string, string> = {
28
28
  "ui.sessionReviewV2.empty.noGit.title": "Không có thay đổi nào được theo dõi",
29
29
  "ui.sessionReviewV2.empty.noGit.description": "Theo dõi, xem xét và hoàn tác các thay đổi trong dự án này",
30
30
  "ui.sessionReviewV2.empty.noGit.action": "Tạo kho lưu trữ Git",
31
- "ui.sessionReviewV2.empty.noGit.actionLoading": "Đang tạo kho lưu trữ Git...",
31
+ "ui.sessionReviewV2.empty.noGit.actionLoading": "Đang tạo kho lưu trữ Git",
32
32
  "ui.sessionReviewV2.empty.changes.title": "Chưa có thay đổi tệp nào",
33
33
  "ui.sessionReviewV2.empty.changes.description": "Những thay đổi của dự án sẽ xuất hiện ở đây",
34
34
  "ui.sessionReview.openFile": "Mở tệp",
@@ -37,7 +37,7 @@ export const dict: Record<string, string> = {
37
37
  "ui.fileMedia.kind.image": "hình ảnh",
38
38
  "ui.fileMedia.kind.audio": "âm thanh",
39
39
  "ui.fileMedia.state.removed": "Đã xóa tệp {{kind}}.",
40
- "ui.fileMedia.state.loading": "Đang tải {{kind}}...",
40
+ "ui.fileMedia.state.loading": "Đang tải {{kind}}",
41
41
  "ui.fileMedia.state.error": "Không thể tải {{kind}}.",
42
42
  "ui.fileMedia.state.unavailable": "Không thể xem trước {{kind}}.",
43
43
  "ui.fileMedia.binary.title": "Tệp nhị phân",
@@ -69,7 +69,7 @@ export const dict: Record<string, string> = {
69
69
  "ui.sessionTurn.error.addCredits": "Thêm số dư",
70
70
  "dialog.usageExceeded.freeTier.title": "Đã đạt đến giới hạn miễn phí",
71
71
  "dialog.usageExceeded.freeTier.description":
72
- "Đăng ký OpenCode Go với giá $10/tháng để có quyền truy cập đáng tin cậy vào các mô hình nguồn mở tốt nhất.",
72
+ "Đăng ký OpenCode Go để có quyền truy cập đáng tin cậy vào các mô hình nguồn mở tốt nhất, bắt đầu từ $5/tháng.",
73
73
  "dialog.usageExceeded.freeTier.actionLabel": "Đăng ký",
74
74
  "dialog.usageExceeded.accountRateLimit.title": "Đã đạt giới hạn Go",
75
75
  "dialog.usageExceeded.accountRateLimit.description":
@@ -115,8 +115,8 @@ export const dict: Record<string, string> = {
115
115
  "ui.promptInput.dropFiles": "Thả tệp để đính kèm",
116
116
  "ui.promptInput.removeAttachment": "Xóa tệp đính kèm",
117
117
  "ui.promptInput.label": "Lời nhắc",
118
- "ui.promptInput.placeholder.shell": "Nhập lệnh shell...",
119
- "ui.promptInput.placeholder.normal": "Hỏi bất cứ điều gì, {{slash}} để dùng lệnh, {{at}} để thêm ngữ cảnh...",
118
+ "ui.promptInput.placeholder.shell": "Nhập lệnh shell",
119
+ "ui.promptInput.placeholder.normal": "Hỏi bất cứ điều gì, {{slash}} để dùng lệnh, {{at}} để thêm ngữ cảnh",
120
120
  "ui.promptInput.add": "Thêm hình ảnh và tệp",
121
121
  "ui.promptInput.attachments": "Hình ảnh và tệp",
122
122
  "ui.promptInput.context": "Ngữ cảnh",
@@ -143,8 +143,6 @@ export const dict: Record<string, string> = {
143
143
  "ui.tool.websearch.provider": "{{provider}} Tìm kiếm trên web",
144
144
  "ui.tool.shell": "Shell",
145
145
  "ui.tool.patch": "Bản vá",
146
- "ui.tool.todos": "Việc cần làm",
147
- "ui.tool.todos.read": "Đọc việc cần làm",
148
146
  "ui.tool.questions": "Câu hỏi",
149
147
  "ui.tool.questions.numbered": "Câu hỏi {{number}}",
150
148
  "ui.tool.agent": "Tác nhân {{type}}",
@@ -193,5 +191,5 @@ export const dict: Record<string, string> = {
193
191
  "ui.question.review.notAnswered": "(chưa trả lời)",
194
192
  "ui.question.multiHint": "Chọn tất cả các câu trả lời phù hợp",
195
193
  "ui.question.singleHint": "Chọn một câu trả lời",
196
- "ui.question.custom.placeholder": "Nhập câu trả lời của bạn...",
194
+ "ui.question.custom.placeholder": "Nhập câu trả lời của bạn",
197
195
  }