@opencode-ai/ui 0.0.0-dev-202609040530 → 0.0.0-dev-19079
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/actions/button/button.d.ts +10 -0
- package/dist/actions/icon-button/icon-button.d.ts +11 -0
- package/dist/actions/split-button/split-button.d.ts +5 -0
- package/dist/components/card.d.ts +1 -1
- package/dist/components/list.d.ts +1 -1
- package/dist/components/scroll-view.d.ts +3 -3
- package/dist/context/i18n.d.ts +10 -7
- package/dist/context/marked-base.d.ts +3 -0
- package/dist/context/marked-parser.d.ts +1 -2
- package/dist/{components → data-display/accordion}/accordion.d.ts +6 -6
- package/dist/{v2/components/avatar-v2.d.ts → data-display/avatar/avatar.d.ts} +1 -1
- package/dist/data-display/badge/badge.d.ts +7 -0
- package/dist/{components → data-display/diff-changes}/diff-changes.d.ts +2 -1
- package/dist/data-display/keybind/keybind.d.ts +7 -0
- package/dist/{v2/components/line-comment-v2.d.ts → data-display/line-comment/line-comment.d.ts} +9 -9
- package/dist/{v2/components/project-avatar-v2.d.ts → data-display/project-avatar/project-avatar.d.ts} +1 -1
- package/dist/feedback/loader/loader.d.ts +3 -0
- package/dist/{components → feedback/progress-circle}/progress-circle.d.ts +2 -0
- package/dist/feedback/toast/toast.d.ts +57 -0
- package/dist/{components → forms/checkbox}/checkbox.d.ts +2 -2
- package/dist/{v2/components/field-v2.d.ts → forms/field/field.d.ts} +4 -10
- package/dist/forms/radio/radio.d.ts +16 -0
- package/dist/{v2/components/select-v2.d.ts → forms/select/select.d.ts} +4 -6
- package/dist/{components → forms/switch}/switch.d.ts +4 -2
- package/dist/{v2/components/text-input-v2.d.ts → forms/text-input/text-input.d.ts} +3 -3
- package/dist/forms/textarea/textarea.d.ts +7 -0
- package/dist/hooks/use-filtered-list.d.ts +9 -0
- package/dist/i18n/ar.d.ts +0 -2
- package/dist/i18n/bg.d.ts +0 -2
- package/dist/i18n/br.d.ts +0 -2
- package/dist/i18n/bs.d.ts +0 -2
- package/dist/i18n/da.d.ts +0 -2
- package/dist/i18n/de.d.ts +0 -2
- package/dist/i18n/en.d.ts +238 -1
- package/dist/i18n/es.d.ts +0 -2
- package/dist/i18n/fr.d.ts +0 -2
- package/dist/i18n/he.d.ts +197 -0
- package/dist/i18n/ja.d.ts +0 -2
- package/dist/i18n/km.d.ts +0 -2
- package/dist/i18n/ko.d.ts +0 -2
- package/dist/i18n/lo.d.ts +0 -2
- package/dist/i18n/mk.d.ts +0 -2
- package/dist/i18n/mn.d.ts +0 -2
- package/dist/i18n/my.d.ts +0 -2
- package/dist/i18n/pl.d.ts +0 -2
- package/dist/i18n/ru.d.ts +0 -2
- package/dist/i18n/sr.d.ts +0 -2
- package/dist/i18n/tg.d.ts +0 -2
- package/dist/i18n/th.d.ts +0 -2
- package/dist/i18n/tr.d.ts +0 -2
- package/dist/i18n/zh.d.ts +0 -2
- package/dist/i18n/zht.d.ts +0 -2
- package/dist/{components/icon.d.ts → icons/icon/additional-icons.d.ts} +8 -8
- package/dist/{v2/components → icons/icon}/icon.d.ts +44 -1
- package/dist/layout/divider/divider.d.ts +5 -0
- package/dist/navigation/menu/menu.d.ts +59 -0
- package/dist/{v2/components/segmented-control-v2.d.ts → navigation/segmented-control/segmented-control.d.ts} +5 -5
- package/dist/{components → navigation/tabs}/tabs.d.ts +15 -8
- package/dist/{v2/components/dialog-v2.d.ts → overlays/dialog/dialog.d.ts} +1 -2
- package/dist/overlays/tooltip/tooltip.d.ts +15 -0
- package/dist/{components → typography/text-shimmer}/text-shimmer.d.ts +1 -0
- package/dist/typography/wordmark/wordmark.d.ts +2 -0
- package/package.json +140 -34
- package/src/{v2/components/button-v2.css → actions/button/button.css} +29 -0
- package/src/{components → actions/button}/button.tsx +19 -11
- package/src/actions/icon-button/icon-button.tsx +32 -0
- package/src/{v2/components/split-button-v2.css → actions/split-button/split-button.css} +2 -6
- package/src/{v2/components/split-button-v2.tsx → actions/split-button/split-button.tsx} +4 -4
- package/src/components/animated-number.css +29 -11
- package/src/components/animated-number.tsx +2 -2
- package/src/components/card.css +2 -23
- package/src/components/card.tsx +4 -4
- package/src/components/collapsible.tsx +2 -2
- package/src/components/dock-surface.css +2 -9
- package/src/components/image-preview.tsx +3 -2
- package/src/components/list.css +5 -5
- package/src/components/list.tsx +7 -5
- package/src/components/popover.tsx +3 -2
- package/src/components/scroll-view.tsx +5 -20
- package/src/components/sticky-accordion-header.tsx +1 -1
- package/src/components/text-field.tsx +12 -4
- package/src/context/dialog.tsx +1 -0
- package/src/context/i18n.tsx +17 -14
- package/src/context/marked-base.tsx +27 -0
- package/src/context/marked-parser.tsx +3 -13
- package/src/{components → data-display/accordion}/accordion.css +5 -31
- package/src/{components → data-display/accordion}/accordion.tsx +14 -14
- package/src/{v2/components/avatar-v2.tsx → data-display/avatar/avatar.tsx} +1 -1
- package/src/{v2/components/badge-v2.css → data-display/badge/badge.css} +19 -0
- package/src/{v2/components/badge-v2.tsx → data-display/badge/badge.tsx} +6 -4
- package/src/{components → data-display/diff-changes}/diff-changes.css +22 -19
- package/src/{v2/components/diff-changes-v2.tsx → data-display/diff-changes/diff-changes.tsx} +7 -2
- package/src/{v2/components/keybind-v2.css → data-display/keybind/keybind.css} +1 -1
- package/src/{v2/components/keybind-v2.tsx → data-display/keybind/keybind.tsx} +3 -3
- package/src/{v2/components/line-comment-v2.css → data-display/line-comment/line-comment.css} +4 -4
- package/src/{v2/components/line-comment-v2.tsx → data-display/line-comment/line-comment.tsx} +17 -15
- package/src/{v2/components/project-avatar-v2.tsx → data-display/project-avatar/project-avatar.tsx} +1 -1
- package/src/{v2/components/loader-v2.tsx → feedback/loader/loader.tsx} +2 -2
- package/src/feedback/progress-circle/progress-circle.css +28 -0
- package/src/feedback/progress-circle/progress-circle.tsx +64 -0
- package/src/{v2/components/toast-v2.tsx → feedback/toast/toast.tsx} +60 -58
- package/src/{components → forms/checkbox}/checkbox.css +1 -7
- package/src/{components → forms/checkbox}/checkbox.tsx +13 -13
- package/src/{v2/components/field-v2.css → forms/field/field.css} +1 -1
- package/src/{v2/components/field-v2.tsx → forms/field/field.tsx} +9 -11
- package/src/{v2/components/radio-v2.tsx → forms/radio/radio.tsx} +30 -20
- package/src/{v2/components/select-v2.css → forms/select/select.css} +2 -8
- package/src/{v2/components/select-v2.tsx → forms/select/select.tsx} +40 -32
- package/src/{v2/components/switch-v2.css → forms/switch/switch.css} +110 -0
- package/src/forms/switch/switch.tsx +34 -0
- package/src/{v2/components/text-input-v2.css → forms/text-input/text-input.css} +3 -3
- package/src/{v2/components/text-input-v2.tsx → forms/text-input/text-input.tsx} +4 -4
- package/src/{v2/components/textarea-v2.tsx → forms/textarea/textarea.tsx} +3 -3
- package/src/hooks/create-auto-scroll.tsx +20 -0
- package/src/i18n/am.ts +7 -9
- package/src/i18n/ar.ts +7 -9
- package/src/i18n/az.ts +7 -9
- package/src/i18n/bg.ts +7 -9
- package/src/i18n/bn.ts +7 -9
- package/src/i18n/br.ts +7 -9
- package/src/i18n/bs.ts +7 -9
- package/src/i18n/ca.ts +7 -9
- package/src/i18n/cs.ts +7 -9
- package/src/i18n/da.ts +7 -9
- package/src/i18n/de.ts +1 -3
- package/src/i18n/dv.ts +7 -9
- package/src/i18n/dz.ts +5 -7
- package/src/i18n/el.ts +7 -9
- package/src/i18n/en.ts +54 -11
- package/src/i18n/es.ts +6 -8
- package/src/i18n/et.ts +7 -9
- package/src/i18n/fa.ts +7 -9
- package/src/i18n/fi.ts +7 -9
- package/src/i18n/fo.ts +7 -9
- package/src/i18n/fr.ts +6 -8
- package/src/i18n/he.ts +199 -0
- package/src/i18n/hi.ts +7 -9
- package/src/i18n/hr.ts +7 -9
- package/src/i18n/hu.ts +7 -9
- package/src/i18n/hy.ts +7 -9
- package/src/i18n/id.ts +7 -9
- package/src/i18n/is.ts +7 -9
- package/src/i18n/it.ts +7 -9
- package/src/i18n/ja.ts +7 -9
- package/src/i18n/ka.ts +7 -9
- package/src/i18n/km.ts +7 -9
- package/src/i18n/ko.ts +7 -9
- package/src/i18n/lo.ts +7 -9
- package/src/i18n/lt.ts +7 -9
- package/src/i18n/lv.ts +7 -9
- package/src/i18n/mk.ts +7 -9
- package/src/i18n/mn.ts +7 -9
- package/src/i18n/ms.ts +7 -9
- package/src/i18n/my.ts +7 -9
- package/src/i18n/ne.ts +7 -9
- package/src/i18n/nl.ts +7 -9
- package/src/i18n/no.ts +7 -9
- package/src/i18n/pa.ts +7 -9
- package/src/i18n/pl.ts +7 -9
- package/src/i18n/ro.ts +7 -9
- package/src/i18n/ru.ts +7 -9
- package/src/i18n/si.ts +7 -9
- package/src/i18n/sk.ts +7 -9
- package/src/i18n/sl.ts +7 -9
- package/src/i18n/sq.ts +7 -9
- package/src/i18n/sr.ts +7 -9
- package/src/i18n/sv.ts +7 -9
- package/src/i18n/tg.ts +7 -9
- package/src/i18n/th.ts +7 -9
- package/src/i18n/tk.ts +7 -9
- package/src/i18n/tr.ts +7 -9
- package/src/i18n/uk.ts +7 -9
- package/src/i18n/ur.ts +7 -9
- package/src/i18n/uz.ts +7 -9
- package/src/i18n/vi.ts +7 -9
- package/src/i18n/zh.ts +7 -9
- package/src/i18n/zht.ts +7 -9
- package/src/{components/icon.tsx → icons/icon/additional-icons.ts} +8 -74
- package/src/icons/icon/icon.css +3 -0
- package/src/{v2/components → icons/icon}/icon.tsx +80 -12
- package/src/{v2/components/divider-v2.tsx → layout/divider/divider.tsx} +3 -3
- package/src/{v2/components/menu-v2.css → navigation/menu/menu.css} +124 -2
- package/src/{v2/components/menu-v2.tsx → navigation/menu/menu.tsx} +96 -32
- package/src/{v2/components/segmented-control-v2.css → navigation/segmented-control/segmented-control.css} +1 -1
- package/src/{v2/components/segmented-control-v2.tsx → navigation/segmented-control/segmented-control.tsx} +9 -8
- package/src/{v2/components/tabs-v2.css → navigation/tabs/tabs-current.css} +25 -10
- package/src/{components → navigation/tabs}/tabs.css +53 -232
- package/src/navigation/tabs/tabs.tsx +194 -0
- package/src/{v2/components/dialog-v2.css → overlays/dialog/dialog.css} +3 -0
- package/src/{v2/components/dialog-v2.tsx → overlays/dialog/dialog.tsx} +11 -13
- package/src/{v2/components/tooltip-v2.css → overlays/tooltip/tooltip.css} +26 -0
- package/src/{v2/components/tooltip-v2.tsx → overlays/tooltip/tooltip.tsx} +24 -17
- package/src/styles/base.css +5 -0
- package/src/styles/index.css +4 -20
- package/src/styles/tailwind/colors.css +1 -0
- package/src/styles/tailwind/index.css +18 -1
- package/src/styles/theme.css +2 -2
- package/src/{v2/styles → styles/tokens}/colors.css +8 -8
- package/src/{v2/styles → styles/tokens}/theme.css +20 -16
- package/src/theme/context.tsx +19 -11
- package/src/theme/themes/oc-2.json +48 -19
- package/src/theme/v2/default-primitives.ts +8 -8
- package/src/theme/v2/foreground.ts +1 -0
- package/src/theme/v2/mapping.ts +5 -1
- package/src/{components → typography/text-shimmer}/text-shimmer.css +2 -1
- package/src/{components → typography/text-shimmer}/text-shimmer.tsx +1 -0
- package/src/{v2/components/wordmark-v2.tsx → typography/wordmark/wordmark.tsx} +2 -2
- package/dist/components/avatar.d.ts +0 -9
- package/dist/components/button.d.ts +0 -9
- package/dist/components/dialog.d.ts +0 -12
- package/dist/components/dropdown-menu.d.ts +0 -80
- package/dist/components/icon-button.d.ts +0 -10
- package/dist/components/keybind.d.ts +0 -6
- package/dist/components/radio-group.d.ts +0 -16
- package/dist/components/select.d.ts +0 -21
- package/dist/components/tag.d.ts +0 -5
- package/dist/components/toast.d.ts +0 -56
- package/dist/components/tooltip.d.ts +0 -17
- package/dist/v2/components/accordion-v2.d.ts +0 -26
- package/dist/v2/components/badge-v2.d.ts +0 -6
- package/dist/v2/components/button-v2.d.ts +0 -10
- package/dist/v2/components/checkbox-v2.d.ts +0 -10
- package/dist/v2/components/diff-changes-v2.d.ts +0 -11
- package/dist/v2/components/divider-v2.d.ts +0 -5
- package/dist/v2/components/icon-button-v2.d.ts +0 -11
- package/dist/v2/components/inline-input-v2.d.ts +0 -21
- package/dist/v2/components/keybind-v2.d.ts +0 -7
- package/dist/v2/components/loader-v2.d.ts +0 -3
- package/dist/v2/components/menu-v2.d.ts +0 -52
- package/dist/v2/components/progress-circle-v2.d.ts +0 -8
- package/dist/v2/components/radio-v2.d.ts +0 -16
- package/dist/v2/components/split-button-v2.d.ts +0 -5
- package/dist/v2/components/switch-v2.d.ts +0 -7
- package/dist/v2/components/tabs-v2.d.ts +0 -34
- package/dist/v2/components/text-shimmer-v2.d.ts +0 -9
- package/dist/v2/components/textarea-v2.d.ts +0 -7
- package/dist/v2/components/toast-v2.d.ts +0 -57
- package/dist/v2/components/tooltip-v2.d.ts +0 -13
- package/dist/v2/components/wordmark-v2.d.ts +0 -2
- package/src/components/avatar.css +0 -49
- package/src/components/avatar.tsx +0 -55
- package/src/components/button.css +0 -194
- package/src/components/dialog.css +0 -181
- package/src/components/dialog.tsx +0 -72
- package/src/components/diff-changes.tsx +0 -115
- package/src/components/dropdown-menu.css +0 -135
- package/src/components/dropdown-menu.tsx +0 -308
- package/src/components/icon-button.css +0 -181
- package/src/components/icon-button.tsx +0 -29
- package/src/components/icon.css +0 -39
- package/src/components/keybind.css +0 -18
- package/src/components/keybind.tsx +0 -20
- package/src/components/progress-circle.css +0 -16
- package/src/components/progress-circle.tsx +0 -64
- package/src/components/radio-group.css +0 -187
- package/src/components/radio-group.tsx +0 -83
- package/src/components/select.css +0 -201
- package/src/components/select.tsx +0 -174
- package/src/components/switch.css +0 -136
- package/src/components/switch.tsx +0 -29
- package/src/components/tabs.tsx +0 -126
- package/src/components/tag.css +0 -37
- package/src/components/tag.tsx +0 -22
- package/src/components/toast.css +0 -236
- package/src/components/toast.tsx +0 -185
- package/src/components/tooltip.css +0 -74
- package/src/components/tooltip.tsx +0 -163
- package/src/v2/components/accordion-v2.css +0 -139
- package/src/v2/components/accordion-v2.tsx +0 -86
- package/src/v2/components/button-v2.tsx +0 -35
- package/src/v2/components/checkbox-v2.css +0 -184
- package/src/v2/components/checkbox-v2.tsx +0 -65
- package/src/v2/components/diff-changes-v2.css +0 -26
- package/src/v2/components/icon-button-v2.tsx +0 -37
- package/src/v2/components/inline-input-v2.css +0 -225
- package/src/v2/components/inline-input-v2.tsx +0 -107
- package/src/v2/components/progress-circle-v2.css +0 -13
- package/src/v2/components/progress-circle-v2.tsx +0 -52
- package/src/v2/components/switch-v2.tsx +0 -28
- package/src/v2/components/tabs-v2.tsx +0 -149
- package/src/v2/components/text-shimmer-v2.css +0 -125
- package/src/v2/components/text-shimmer-v2.tsx +0 -63
- /package/dist/{components → forms/inline-input}/inline-input.d.ts +0 -0
- /package/dist/{v2/components → navigation}/tab-state-indicator.d.ts +0 -0
- /package/src/{v2/components/icon-button-v2.css → actions/icon-button/icon-button.css} +0 -0
- /package/src/{v2/components/avatar-v2.css → data-display/avatar/avatar.css} +0 -0
- /package/src/{v2/components/project-avatar-v2.css → data-display/project-avatar/project-avatar.css} +0 -0
- /package/src/{v2/components/loader-v2.css → feedback/loader/loader.css} +0 -0
- /package/src/{v2/components/toast-v2.css → feedback/toast/toast.css} +0 -0
- /package/src/{components → forms/inline-input}/inline-input.css +0 -0
- /package/src/{components → forms/inline-input}/inline-input.tsx +0 -0
- /package/src/{v2/components/radio-v2.css → forms/radio/radio.css} +0 -0
- /package/src/{v2/components/textarea-v2.css → forms/textarea/textarea.css} +0 -0
- /package/src/{v2/components/divider-v2.css → layout/divider/divider.css} +0 -0
- /package/src/{v2/components → navigation}/tab-state-indicator.tsx +0 -0
- /package/src/{v2/components/file-tree-v2.css → styles/file-tree.css} +0 -0
- /package/src/{v2/styles/tailwind.css → styles/tokens/index.css} +0 -0
package/src/i18n/mn.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-д сард
|
|
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/ms.ts
CHANGED
|
@@ -10,7 +10,7 @@ export const dict: Record<string, string> = {
|
|
|
10
10
|
"ui.sessionReview.change.added": "Ditambah",
|
|
11
11
|
"ui.sessionReview.change.removed": "Dibuang",
|
|
12
12
|
"ui.sessionReview.change.modified": "Diubah",
|
|
13
|
-
"ui.sessionReview.image.loading": "Memuatkan
|
|
13
|
+
"ui.sessionReview.image.loading": "Memuatkan…",
|
|
14
14
|
"ui.sessionReview.image.placeholder": "Imej",
|
|
15
15
|
"ui.sessionReview.largeDiff.title": "Diff terlalu besar untuk dipaparkan",
|
|
16
16
|
"ui.sessionReview.largeDiff.meta": "Had: {{limit}} baris diubah. Semasa: {{current}} baris diubah.",
|
|
@@ -28,7 +28,7 @@ export const dict: Record<string, string> = {
|
|
|
28
28
|
"ui.sessionReviewV2.empty.noGit.title": "Tiada perubahan dijejak",
|
|
29
29
|
"ui.sessionReviewV2.empty.noGit.description": "Jejak, semak, dan batal perubahan dalam projek ini",
|
|
30
30
|
"ui.sessionReviewV2.empty.noGit.action": "Cipta repositori Git",
|
|
31
|
-
"ui.sessionReviewV2.empty.noGit.actionLoading": "Mencipta repositori Git
|
|
31
|
+
"ui.sessionReviewV2.empty.noGit.actionLoading": "Mencipta repositori Git…",
|
|
32
32
|
"ui.sessionReviewV2.empty.changes.title": "Tiada perubahan fail lagi",
|
|
33
33
|
"ui.sessionReviewV2.empty.changes.description": "Perubahan projek akan dipaparkan di sini",
|
|
34
34
|
"ui.sessionReview.openFile": "Buka fail",
|
|
@@ -37,7 +37,7 @@ export const dict: Record<string, string> = {
|
|
|
37
37
|
"ui.fileMedia.kind.image": "imej",
|
|
38
38
|
"ui.fileMedia.kind.audio": "audio",
|
|
39
39
|
"ui.fileMedia.state.removed": "Fail {{kind}} telah dipadam.",
|
|
40
|
-
"ui.fileMedia.state.loading": "Memuatkan {{kind}}
|
|
40
|
+
"ui.fileMedia.state.loading": "Memuatkan {{kind}}…",
|
|
41
41
|
"ui.fileMedia.state.error": "Tidak dapat memuatkan {{kind}}.",
|
|
42
42
|
"ui.fileMedia.state.unavailable": "Pratonton {{kind}} tidak tersedia.",
|
|
43
43
|
"ui.fileMedia.binary.title": "Fail binari",
|
|
@@ -69,7 +69,7 @@ export const dict: Record<string, string> = {
|
|
|
69
69
|
"ui.sessionTurn.error.addCredits": "Tambah kredit",
|
|
70
70
|
"dialog.usageExceeded.freeTier.title": "Had percuma dicapai",
|
|
71
71
|
"dialog.usageExceeded.freeTier.description":
|
|
72
|
-
"Langgan OpenCode Go
|
|
72
|
+
"Langgan OpenCode Go untuk akses yang lebih stabil kepada model sumber terbuka terbaik, bermula dari $5/bulan.",
|
|
73
73
|
"dialog.usageExceeded.freeTier.actionLabel": "Langgan",
|
|
74
74
|
"dialog.usageExceeded.accountRateLimit.title": "Had Go dicapai",
|
|
75
75
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -115,8 +115,8 @@ export const dict: Record<string, string> = {
|
|
|
115
115
|
"ui.promptInput.dropFiles": "Leret fail untuk dilampirkan",
|
|
116
116
|
"ui.promptInput.removeAttachment": "Buang lampiran",
|
|
117
117
|
"ui.promptInput.label": "Prom",
|
|
118
|
-
"ui.promptInput.placeholder.shell": "Masukkan arahan shell
|
|
119
|
-
"ui.promptInput.placeholder.normal": "Tanya apa sahaja, {{slash}} untuk arahan, {{at}} untuk konteks
|
|
118
|
+
"ui.promptInput.placeholder.shell": "Masukkan arahan shell…",
|
|
119
|
+
"ui.promptInput.placeholder.normal": "Tanya apa sahaja, {{slash}} untuk arahan, {{at}} untuk konteks…",
|
|
120
120
|
"ui.promptInput.add": "Tambah imej dan fail",
|
|
121
121
|
"ui.promptInput.attachments": "Imej dan fail",
|
|
122
122
|
"ui.promptInput.context": "Konteks",
|
|
@@ -143,8 +143,6 @@ export const dict: Record<string, string> = {
|
|
|
143
143
|
"ui.tool.websearch.provider": "Carian Web {{provider}}",
|
|
144
144
|
"ui.tool.shell": "Shell",
|
|
145
145
|
"ui.tool.patch": "Tampalan",
|
|
146
|
-
"ui.tool.todos": "Senarai tugasan",
|
|
147
|
-
"ui.tool.todos.read": "Baca senarai tugasan",
|
|
148
146
|
"ui.tool.questions": "Soalan",
|
|
149
147
|
"ui.tool.questions.numbered": "Soalan {{number}}",
|
|
150
148
|
"ui.tool.agent": "Ejen {{type}}",
|
|
@@ -193,5 +191,5 @@ export const dict: Record<string, string> = {
|
|
|
193
191
|
"ui.question.review.notAnswered": "(belum dijawab)",
|
|
194
192
|
"ui.question.multiHint": "Pilih semua jawapan yang berkaitan",
|
|
195
193
|
"ui.question.singleHint": "Pilih satu jawapan",
|
|
196
|
-
"ui.question.custom.placeholder": "Taip jawapan anda
|
|
194
|
+
"ui.question.custom.placeholder": "Taip jawapan anda…",
|
|
197
195
|
}
|
package/src/i18n/my.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":
|
|
@@ -29,7 +29,7 @@ export const dict = {
|
|
|
29
29
|
"ui.sessionReviewV2.empty.noGit.title": "ခြေရာခံ အပြောင်းအလဲများ မရှိပါ။",
|
|
30
30
|
"ui.sessionReviewV2.empty.noGit.description": "ဤပရောဂျက်ရှိ အပြောင်းအလဲများကို ခြေရာခံ၊ သုံးသပ်ပြီး ပြန်ဖျက်ပါ။",
|
|
31
31
|
"ui.sessionReviewV2.empty.noGit.action": "Git repository ဖန်တီးပါ။",
|
|
32
|
-
"ui.sessionReviewV2.empty.noGit.actionLoading": "Git repository ကို
|
|
32
|
+
"ui.sessionReviewV2.empty.noGit.actionLoading": "Git repository ကို ဖန်တီးနေသည်…",
|
|
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 = {
|
|
|
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": "Binary ဖိုင်",
|
|
@@ -70,7 +70,7 @@ export const dict = {
|
|
|
70
70
|
"ui.sessionTurn.error.addCredits": "ခရက်ဒစ်များထည့်ပါ။",
|
|
71
71
|
"dialog.usageExceeded.freeTier.title": "အခမဲ့ကန့်သတ်ချက် ပြည့်သွားပါပြီ။",
|
|
72
72
|
"dialog.usageExceeded.freeTier.description":
|
|
73
|
-
"တစ်လလျှင် $
|
|
73
|
+
"တစ်လလျှင် $5 မှစတင်၍ အကောင်းဆုံးသော open-source မော်ဒယ်များသို့ ယုံကြည်စိတ်ချရသောဝင်ရောက်ခွင့်အတွက် 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 = {
|
|
|
116
116
|
"ui.promptInput.dropFiles": "ပူးတွဲရန် ဖိုင်များကို ချလိုက်ပါ။",
|
|
117
117
|
"ui.promptInput.removeAttachment": "ပူးတွဲပါဖိုင်ကို ဖယ်ရှားပါ။",
|
|
118
118
|
"ui.promptInput.label": "Prompt",
|
|
119
|
-
"ui.promptInput.placeholder.shell": "shell command
|
|
120
|
-
"ui.promptInput.placeholder.normal": "ဘာမဆိုမေးပါ၊ ညွှန်ကြားချက်များအတွက် {{slash}}၊ အကြောင်းအရာအတွက် {{at}}
|
|
119
|
+
"ui.promptInput.placeholder.shell": "shell command ကိုရိုက်ထည့်ပါ…",
|
|
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 = {
|
|
|
144
144
|
"ui.tool.websearch.provider": "{{provider}} ဝဘ်ရှာဖွေမှု",
|
|
145
145
|
"ui.tool.shell": "Shell",
|
|
146
146
|
"ui.tool.patch": "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 = {
|
|
|
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/ne.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":
|
|
@@ -30,7 +30,7 @@ export const dict: Record<string, string> = {
|
|
|
30
30
|
"ui.sessionReviewV2.empty.noGit.description":
|
|
31
31
|
"यस परियोजनामा भएका परिवर्तनहरू ट्र्याक गर्नुहोस्, समीक्षा गर्नुहोस् र पूर्ववत गर्नुहोस्",
|
|
32
32
|
"ui.sessionReviewV2.empty.noGit.action": "Git भण्डार सिर्जना गर्नुहोस्",
|
|
33
|
-
"ui.sessionReviewV2.empty.noGit.actionLoading": "Git भण्डार सिर्जना
|
|
33
|
+
"ui.sessionReviewV2.empty.noGit.actionLoading": "Git भण्डार सिर्जना गर्दै…",
|
|
34
34
|
"ui.sessionReviewV2.empty.changes.title": "अहिलेसम्म कुनै फाइल परिवर्तन भएको छैन",
|
|
35
35
|
"ui.sessionReviewV2.empty.changes.description": "परियोजना परिवर्तनहरू यहाँ देखा पर्नेछ",
|
|
36
36
|
"ui.sessionReview.openFile": "फाइल खोल्नुहोस्",
|
|
@@ -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": "बाइनरी फाइल",
|
|
@@ -71,7 +71,7 @@ export const dict: Record<string, string> = {
|
|
|
71
71
|
"ui.sessionTurn.error.addCredits": "क्रेडिटहरू थप्नुहोस्",
|
|
72
72
|
"dialog.usageExceeded.freeTier.title": "नि: शुल्क सीमा पुग्यो",
|
|
73
73
|
"dialog.usageExceeded.freeTier.description":
|
|
74
|
-
"उत्कृष्ट खुला स्रोत मोडेलहरूमा भरपर्दो
|
|
74
|
+
"OpenCode को सदस्यता लिनुहोस्, उत्कृष्ट खुला स्रोत मोडेलहरूमा भरपर्दो पहुँचको लागि जानुहोस्, $5/महिनाबाट सुरु हुँदै।",
|
|
75
75
|
"dialog.usageExceeded.freeTier.actionLabel": "सदस्यता लिनुहोस्",
|
|
76
76
|
"dialog.usageExceeded.accountRateLimit.title": "जाने सीमा पुग्यो",
|
|
77
77
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -117,8 +117,8 @@ export const dict: Record<string, string> = {
|
|
|
117
117
|
"ui.promptInput.dropFiles": "संलग्न गर्न फाइलहरू ड्रप गर्नुहोस्",
|
|
118
118
|
"ui.promptInput.removeAttachment": "संलग्नक हटाउनुहोस्",
|
|
119
119
|
"ui.promptInput.label": "प्रम्प्ट",
|
|
120
|
-
"ui.promptInput.placeholder.shell": "शेल आदेश प्रविष्ट
|
|
121
|
-
"ui.promptInput.placeholder.normal": "कुनै पनि कुरा सोध्नुहोस्, {{slash}} आदेशहरूको लागि, {{at}} सन्दर्भको
|
|
120
|
+
"ui.promptInput.placeholder.shell": "शेल आदेश प्रविष्ट गर्नुहोस्…",
|
|
121
|
+
"ui.promptInput.placeholder.normal": "कुनै पनि कुरा सोध्नुहोस्, {{slash}} आदेशहरूको लागि, {{at}} सन्दर्भको लागि…",
|
|
122
122
|
"ui.promptInput.add": "छविहरू र फाइलहरू थप्नुहोस्",
|
|
123
123
|
"ui.promptInput.attachments": "छविहरू र फाइलहरू",
|
|
124
124
|
"ui.promptInput.context": "सन्दर्भ",
|
|
@@ -145,8 +145,6 @@ export const dict: Record<string, string> = {
|
|
|
145
145
|
"ui.tool.websearch.provider": "{{provider}} Web Search",
|
|
146
146
|
"ui.tool.shell": "शेल",
|
|
147
147
|
"ui.tool.patch": "प्याच",
|
|
148
|
-
"ui.tool.todos": "गर्नुपर्ने कार्यहरू",
|
|
149
|
-
"ui.tool.todos.read": "गर्नुपर्ने कामहरू पढ्नुहोस्",
|
|
150
148
|
"ui.tool.questions": "प्रश्नहरू",
|
|
151
149
|
"ui.tool.questions.numbered": "प्रश्नहरू {{number}}",
|
|
152
150
|
"ui.tool.agent": "{{type}} एजेन्ट",
|
|
@@ -195,5 +193,5 @@ export const dict: Record<string, string> = {
|
|
|
195
193
|
"ui.question.review.notAnswered": "(उत्तर दिइएन)",
|
|
196
194
|
"ui.question.multiHint": "लागू हुने सबै उत्तरहरू चयन गर्नुहोस्",
|
|
197
195
|
"ui.question.singleHint": "एउटा जवाफ चयन गर्नुहोस्",
|
|
198
|
-
"ui.question.custom.placeholder": "आफ्नो उत्तर टाइप
|
|
196
|
+
"ui.question.custom.placeholder": "आफ्नो उत्तर टाइप गर्नुहोस्…",
|
|
199
197
|
}
|
package/src/i18n/nl.ts
CHANGED
|
@@ -10,7 +10,7 @@ export const dict: Record<string, string> = {
|
|
|
10
10
|
"ui.sessionReview.change.added": "Toegevoegd",
|
|
11
11
|
"ui.sessionReview.change.removed": "Verwijderd",
|
|
12
12
|
"ui.sessionReview.change.modified": "Gewijzigd",
|
|
13
|
-
"ui.sessionReview.image.loading": "Laden
|
|
13
|
+
"ui.sessionReview.image.loading": "Laden…",
|
|
14
14
|
"ui.sessionReview.image.placeholder": "Afbeelding",
|
|
15
15
|
"ui.sessionReview.largeDiff.title": "Verschil te groot om weer te geven",
|
|
16
16
|
"ui.sessionReview.largeDiff.meta": "Limiet: {{limit}} gewijzigde regels. Huidig: {{current}} gewijzigde regels.",
|
|
@@ -28,7 +28,7 @@ export const dict: Record<string, string> = {
|
|
|
28
28
|
"ui.sessionReviewV2.empty.noGit.title": "Geen bijgehouden wijzigingen",
|
|
29
29
|
"ui.sessionReviewV2.empty.noGit.description": "Wijzigingen in dit project bijhouden, beoordelen en ongedaan maken",
|
|
30
30
|
"ui.sessionReviewV2.empty.noGit.action": "Git-repository maken",
|
|
31
|
-
"ui.sessionReviewV2.empty.noGit.actionLoading": "Git-repository maken
|
|
31
|
+
"ui.sessionReviewV2.empty.noGit.actionLoading": "Git-repository maken…",
|
|
32
32
|
"ui.sessionReviewV2.empty.changes.title": "Nog geen bestandswijzigingen",
|
|
33
33
|
"ui.sessionReviewV2.empty.changes.description": "Projectwijzigingen worden hier weergegeven",
|
|
34
34
|
"ui.sessionReview.openFile": "Bestand openen",
|
|
@@ -37,7 +37,7 @@ export const dict: Record<string, string> = {
|
|
|
37
37
|
"ui.fileMedia.kind.image": "afbeelding",
|
|
38
38
|
"ui.fileMedia.kind.audio": "audio",
|
|
39
39
|
"ui.fileMedia.state.removed": "{{kind}}-bestand verwijderd.",
|
|
40
|
-
"ui.fileMedia.state.loading": "{{kind}} laden
|
|
40
|
+
"ui.fileMedia.state.loading": "{{kind}} laden…",
|
|
41
41
|
"ui.fileMedia.state.error": "Kan {{kind}} niet laden.",
|
|
42
42
|
"ui.fileMedia.state.unavailable": "Voorbeeld van {{kind}} niet beschikbaar.",
|
|
43
43
|
"ui.fileMedia.binary.title": "Binair bestand",
|
|
@@ -69,7 +69,7 @@ export const dict: Record<string, string> = {
|
|
|
69
69
|
"ui.sessionTurn.error.addCredits": "Tegoed toevoegen",
|
|
70
70
|
"dialog.usageExceeded.freeTier.title": "Gratis limiet bereikt",
|
|
71
71
|
"dialog.usageExceeded.freeTier.description":
|
|
72
|
-
"Abonneer je
|
|
72
|
+
"Abonneer je op OpenCode Go voor betrouwbare toegang tot de beste open-sourcemodellen, vanaf $ 5 per maand.",
|
|
73
73
|
"dialog.usageExceeded.freeTier.actionLabel": "Abonneer je",
|
|
74
74
|
"dialog.usageExceeded.accountRateLimit.title": "Go-limiet bereikt",
|
|
75
75
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -115,8 +115,8 @@ export const dict: Record<string, string> = {
|
|
|
115
115
|
"ui.promptInput.dropFiles": "Zet bestanden neer om ze bij te voegen",
|
|
116
116
|
"ui.promptInput.removeAttachment": "Bijlage verwijderen",
|
|
117
117
|
"ui.promptInput.label": "Prompt",
|
|
118
|
-
"ui.promptInput.placeholder.shell": "Voer een shell-opdracht in
|
|
119
|
-
"ui.promptInput.placeholder.normal": "Vraag wat je wilt, {{slash}} voor opdrachten, {{at}} voor context
|
|
118
|
+
"ui.promptInput.placeholder.shell": "Voer een shell-opdracht in…",
|
|
119
|
+
"ui.promptInput.placeholder.normal": "Vraag wat je wilt, {{slash}} voor opdrachten, {{at}} voor context…",
|
|
120
120
|
"ui.promptInput.add": "Afbeeldingen en bestanden toevoegen",
|
|
121
121
|
"ui.promptInput.attachments": "Afbeeldingen en bestanden",
|
|
122
122
|
"ui.promptInput.context": "Context",
|
|
@@ -143,8 +143,6 @@ export const dict: Record<string, string> = {
|
|
|
143
143
|
"ui.tool.websearch.provider": "{{provider}} Zoeken op internet",
|
|
144
144
|
"ui.tool.shell": "Shell",
|
|
145
145
|
"ui.tool.patch": "Patch",
|
|
146
|
-
"ui.tool.todos": "Taken",
|
|
147
|
-
"ui.tool.todos.read": "Taken lezen",
|
|
148
146
|
"ui.tool.questions": "Vragen",
|
|
149
147
|
"ui.tool.questions.numbered": "Vragen {{number}}",
|
|
150
148
|
"ui.tool.agent": "{{type}}-agent",
|
|
@@ -193,5 +191,5 @@ export const dict: Record<string, string> = {
|
|
|
193
191
|
"ui.question.review.notAnswered": "(niet beantwoord)",
|
|
194
192
|
"ui.question.multiHint": "Selecteer alle antwoorden die van toepassing zijn",
|
|
195
193
|
"ui.question.singleHint": "Selecteer één antwoord",
|
|
196
|
-
"ui.question.custom.placeholder": "Typ je antwoord
|
|
194
|
+
"ui.question.custom.placeholder": "Typ je antwoord…",
|
|
197
195
|
}
|
package/src/i18n/no.ts
CHANGED
|
@@ -14,7 +14,7 @@ export const dict: Record<Keys, string> = {
|
|
|
14
14
|
"ui.sessionReview.change.added": "Lagt til",
|
|
15
15
|
"ui.sessionReview.change.removed": "Fjernet",
|
|
16
16
|
"ui.sessionReview.change.modified": "Endret",
|
|
17
|
-
"ui.sessionReview.image.loading": "Laster
|
|
17
|
+
"ui.sessionReview.image.loading": "Laster…",
|
|
18
18
|
"ui.sessionReview.image.placeholder": "Bilde",
|
|
19
19
|
"ui.sessionReview.largeDiff.title": "Diffen er for stor til å gjengi",
|
|
20
20
|
"ui.sessionReview.largeDiff.meta": "Grense: {{limit}} endrede linjer. Nåværende: {{current}} endrede linjer.",
|
|
@@ -22,7 +22,7 @@ export const dict: Record<Keys, string> = {
|
|
|
22
22
|
"ui.fileMedia.kind.image": "bilde",
|
|
23
23
|
"ui.fileMedia.kind.audio": "lyd",
|
|
24
24
|
"ui.fileMedia.state.removed": "Fjernet: {{kind}}",
|
|
25
|
-
"ui.fileMedia.state.loading": "Laster inn {{kind}}
|
|
25
|
+
"ui.fileMedia.state.loading": "Laster inn {{kind}}…",
|
|
26
26
|
"ui.fileMedia.state.error": "Feil ved innlasting: {{kind}}",
|
|
27
27
|
"ui.fileMedia.state.unavailable": "Ikke tilgjengelig: {{kind}}",
|
|
28
28
|
"ui.fileMedia.binary.title": "Binærfil",
|
|
@@ -52,7 +52,7 @@ export const dict: Record<Keys, string> = {
|
|
|
52
52
|
|
|
53
53
|
"dialog.usageExceeded.freeTier.title": "Gratisgrensen er nådd",
|
|
54
54
|
"dialog.usageExceeded.freeTier.description":
|
|
55
|
-
"Abonner på OpenCode Go for
|
|
55
|
+
"Abonner på OpenCode Go for pålitelig tilgang til de beste modellene med åpen kildekode, fra $5/måned.",
|
|
56
56
|
"dialog.usageExceeded.freeTier.actionLabel": "Abonner",
|
|
57
57
|
"dialog.usageExceeded.accountRateLimit.title": "Go-grensen er nådd",
|
|
58
58
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -99,8 +99,8 @@ export const dict: Record<Keys, string> = {
|
|
|
99
99
|
"ui.promptInput.dropFiles": "Slipp filer for å legge dem ved",
|
|
100
100
|
"ui.promptInput.removeAttachment": "Fjern vedlegg",
|
|
101
101
|
"ui.promptInput.label": "Prompt",
|
|
102
|
-
"ui.promptInput.placeholder.shell": "Skriv inn shell-kommando
|
|
103
|
-
"ui.promptInput.placeholder.normal": "Spør om hva som helst, {{slash}} for kommandoer, {{at}} for kontekst
|
|
102
|
+
"ui.promptInput.placeholder.shell": "Skriv inn shell-kommando…",
|
|
103
|
+
"ui.promptInput.placeholder.normal": "Spør om hva som helst, {{slash}} for kommandoer, {{at}} for kontekst…",
|
|
104
104
|
"ui.promptInput.add": "Legg til bilder og filer",
|
|
105
105
|
"ui.promptInput.attachments": "Bilder og filer",
|
|
106
106
|
"ui.promptInput.context": "Kontekst",
|
|
@@ -130,8 +130,6 @@ export const dict: Record<Keys, string> = {
|
|
|
130
130
|
"ui.tool.websearch.provider": "{{provider}} Nettsøk",
|
|
131
131
|
"ui.tool.shell": "Shell",
|
|
132
132
|
"ui.tool.patch": "Patch",
|
|
133
|
-
"ui.tool.todos": "Gjøremål",
|
|
134
|
-
"ui.tool.todos.read": "Les gjøremål",
|
|
135
133
|
"ui.tool.questions": "Spørsmål",
|
|
136
134
|
"ui.tool.questions.numbered": "Spørsmål {{number}}",
|
|
137
135
|
"ui.tool.agent": "{{type}}-agent",
|
|
@@ -180,7 +178,7 @@ export const dict: Record<Keys, string> = {
|
|
|
180
178
|
"ui.question.review.notAnswered": "(ikke besvart)",
|
|
181
179
|
"ui.question.multiHint": "Velg alle som gjelder",
|
|
182
180
|
"ui.question.singleHint": "Velg ett svar",
|
|
183
|
-
"ui.question.custom.placeholder": "Skriv svaret ditt
|
|
181
|
+
"ui.question.custom.placeholder": "Skriv svaret ditt…",
|
|
184
182
|
|
|
185
183
|
"ui.fileSearch.placeholder": "Finn",
|
|
186
184
|
"ui.fileSearch.previousMatch": "Forrige treff",
|
|
@@ -209,7 +207,7 @@ export const dict: Record<Keys, string> = {
|
|
|
209
207
|
"ui.sessionReviewV2.empty.noGit.title": "Ingen sporede endringer",
|
|
210
208
|
"ui.sessionReviewV2.empty.noGit.description": "Spor, gjennomgå og angre endringer i dette prosjektet",
|
|
211
209
|
"ui.sessionReviewV2.empty.noGit.action": "Opprett et Git-depot",
|
|
212
|
-
"ui.sessionReviewV2.empty.noGit.actionLoading": "Oppretter Git-depot
|
|
210
|
+
"ui.sessionReviewV2.empty.noGit.actionLoading": "Oppretter Git-depot…",
|
|
213
211
|
"ui.sessionReviewV2.empty.changes.title": "Ingen filendringer ennå",
|
|
214
212
|
"ui.sessionReviewV2.empty.changes.description": "Prosjektendringer vises her",
|
|
215
213
|
"ui.lineComment.cancel": "Avbryt",
|
package/src/i18n/pa.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":
|
|
@@ -29,7 +29,7 @@ export const dict: Record<string, string> = {
|
|
|
29
29
|
"ui.sessionReviewV2.empty.noGit.title": "کوئی ٹریک کیتی گئی تبدیلی نئیں",
|
|
30
30
|
"ui.sessionReviewV2.empty.noGit.description": "اس منصوبے چ تبدیلیاں نو ٹریک کرو، جائزہ لوو تے کالعدم کرو",
|
|
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
|
-
"$
|
|
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}} Web Search",
|
|
145
145
|
"ui.tool.shell": "Shell",
|
|
146
146
|
"ui.tool.patch": "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}} Agent",
|
|
@@ -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/pl.ts
CHANGED
|
@@ -14,7 +14,7 @@ export const dict = {
|
|
|
14
14
|
"ui.sessionReview.change.added": "Dodano",
|
|
15
15
|
"ui.sessionReview.change.removed": "Usunięto",
|
|
16
16
|
"ui.sessionReview.change.modified": "Zmodyfikowano",
|
|
17
|
-
"ui.sessionReview.image.loading": "Ładowanie
|
|
17
|
+
"ui.sessionReview.image.loading": "Ładowanie…",
|
|
18
18
|
"ui.sessionReview.image.placeholder": "Obraz",
|
|
19
19
|
"ui.sessionReview.largeDiff.title": "Zmiany są zbyt duże, aby je wyświetlić",
|
|
20
20
|
"ui.sessionReview.largeDiff.meta": "Limit: {{limit}} zmienionych linii. Obecnie: {{current}} zmienionych linii.",
|
|
@@ -32,13 +32,13 @@ export const dict = {
|
|
|
32
32
|
"ui.sessionReviewV2.empty.noGit.title": "Brak śledzonych zmian",
|
|
33
33
|
"ui.sessionReviewV2.empty.noGit.description": "Śledź, przeglądaj i cofaj zmiany w tym projekcie",
|
|
34
34
|
"ui.sessionReviewV2.empty.noGit.action": "Utwórz repozytorium Git",
|
|
35
|
-
"ui.sessionReviewV2.empty.noGit.actionLoading": "Tworzenie repozytorium Git
|
|
35
|
+
"ui.sessionReviewV2.empty.noGit.actionLoading": "Tworzenie repozytorium Git…",
|
|
36
36
|
"ui.sessionReviewV2.empty.changes.title": "Brak jeszcze zmian w plikach",
|
|
37
37
|
"ui.sessionReviewV2.empty.changes.description": "Zmiany w projekcie pojawią się tutaj",
|
|
38
38
|
"ui.fileMedia.kind.image": "obraz",
|
|
39
39
|
"ui.fileMedia.kind.audio": "dźwięk",
|
|
40
40
|
"ui.fileMedia.state.removed": "{{kind}} usunięty",
|
|
41
|
-
"ui.fileMedia.state.loading": "Wczytywanie: {{kind}}
|
|
41
|
+
"ui.fileMedia.state.loading": "Wczytywanie: {{kind}}…",
|
|
42
42
|
"ui.fileMedia.state.error": "Błąd wczytywania: {{kind}}",
|
|
43
43
|
"ui.fileMedia.state.unavailable": "{{kind}} niedostępny",
|
|
44
44
|
"ui.fileMedia.binary.title": "Plik binarny",
|
|
@@ -74,7 +74,7 @@ export const dict = {
|
|
|
74
74
|
|
|
75
75
|
"dialog.usageExceeded.freeTier.title": "Osiągnięto limit darmowy",
|
|
76
76
|
"dialog.usageExceeded.freeTier.description":
|
|
77
|
-
"Subskrybuj OpenCode Go
|
|
77
|
+
"Subskrybuj OpenCode Go, aby uzyskać niezawodny dostęp do najlepszych modeli open source, od $5/miesiąc.",
|
|
78
78
|
"dialog.usageExceeded.freeTier.actionLabel": "Subskrybuj",
|
|
79
79
|
"dialog.usageExceeded.accountRateLimit.title": "Osiągnięto limit Go",
|
|
80
80
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -127,9 +127,9 @@ export const dict = {
|
|
|
127
127
|
"ui.promptInput.dropFiles": "Upuść pliki, aby je załączyć",
|
|
128
128
|
"ui.promptInput.removeAttachment": "Usuń załącznik",
|
|
129
129
|
"ui.promptInput.label": "Prompt",
|
|
130
|
-
"ui.promptInput.placeholder.shell": "Wpisz polecenie powłoki
|
|
130
|
+
"ui.promptInput.placeholder.shell": "Wpisz polecenie powłoki…",
|
|
131
131
|
"ui.promptInput.placeholder.normal":
|
|
132
|
-
"Zapytaj o cokolwiek, {{slash}} aby wyświetlić polecenia, {{at}} aby wyświetlić kontekst
|
|
132
|
+
"Zapytaj o cokolwiek, {{slash}} aby wyświetlić polecenia, {{at}} aby wyświetlić kontekst…",
|
|
133
133
|
"ui.promptInput.add": "Dodaj obrazy i pliki",
|
|
134
134
|
"ui.promptInput.attachments": "Obrazy i pliki",
|
|
135
135
|
"ui.promptInput.context": "Kontekst",
|
|
@@ -159,8 +159,6 @@ export const dict = {
|
|
|
159
159
|
"ui.tool.websearch.provider": "{{provider}} Wyszukiwanie w sieci",
|
|
160
160
|
"ui.tool.shell": "Terminal",
|
|
161
161
|
"ui.tool.patch": "Patch",
|
|
162
|
-
"ui.tool.todos": "Zadania",
|
|
163
|
-
"ui.tool.todos.read": "Czytaj zadania",
|
|
164
162
|
"ui.tool.questions": "Pytania",
|
|
165
163
|
"ui.tool.questions.numbered": "Pytania {{number}}",
|
|
166
164
|
"ui.tool.agent": "Agent {{type}}",
|
|
@@ -209,7 +207,7 @@ export const dict = {
|
|
|
209
207
|
"ui.question.review.notAnswered": "(bez odpowiedzi)",
|
|
210
208
|
"ui.question.multiHint": "Zaznacz wszystkie pasujące",
|
|
211
209
|
"ui.question.singleHint": "Wybierz jedną odpowiedź",
|
|
212
|
-
"ui.question.custom.placeholder": "Wpisz swoją odpowied
|
|
210
|
+
"ui.question.custom.placeholder": "Wpisz swoją odpowiedź…",
|
|
213
211
|
|
|
214
212
|
"ui.fileSearch.placeholder": "Szukaj",
|
|
215
213
|
"ui.fileSearch.previousMatch": "Poprzednie",
|
package/src/i18n/ro.ts
CHANGED
|
@@ -10,7 +10,7 @@ export const dict: Record<string, string> = {
|
|
|
10
10
|
"ui.sessionReview.change.added": "Adăugat",
|
|
11
11
|
"ui.sessionReview.change.removed": "Eliminat",
|
|
12
12
|
"ui.sessionReview.change.modified": "Modificat",
|
|
13
|
-
"ui.sessionReview.image.loading": "Se încarc
|
|
13
|
+
"ui.sessionReview.image.loading": "Se încarcă…",
|
|
14
14
|
"ui.sessionReview.image.placeholder": "Imagine",
|
|
15
15
|
"ui.sessionReview.largeDiff.title": "Diff prea mare pentru afișare",
|
|
16
16
|
"ui.sessionReview.largeDiff.meta": "Limită: {{limit}} linii modificate. Curent: {{current}} linii modificate.",
|
|
@@ -28,7 +28,7 @@ export const dict: Record<string, string> = {
|
|
|
28
28
|
"ui.sessionReviewV2.empty.noGit.title": "Nicio modificare urmărită",
|
|
29
29
|
"ui.sessionReviewV2.empty.noGit.description": "Urmărește, revizuiește și anulează modificările din acest proiect",
|
|
30
30
|
"ui.sessionReviewV2.empty.noGit.action": "Creează depozit Git",
|
|
31
|
-
"ui.sessionReviewV2.empty.noGit.actionLoading": "Se creează depozitul Git
|
|
31
|
+
"ui.sessionReviewV2.empty.noGit.actionLoading": "Se creează depozitul Git…",
|
|
32
32
|
"ui.sessionReviewV2.empty.changes.title": "Nicio modificare de fișier",
|
|
33
33
|
"ui.sessionReviewV2.empty.changes.description": "Modificările proiectului vor apărea aici",
|
|
34
34
|
"ui.sessionReview.openFile": "Deschide fișier",
|
|
@@ -37,7 +37,7 @@ export const dict: Record<string, string> = {
|
|
|
37
37
|
"ui.fileMedia.kind.image": "imagine",
|
|
38
38
|
"ui.fileMedia.kind.audio": "audio",
|
|
39
39
|
"ui.fileMedia.state.removed": "Fișier {{kind}} șters.",
|
|
40
|
-
"ui.fileMedia.state.loading": "Se încarcă {{kind}}
|
|
40
|
+
"ui.fileMedia.state.loading": "Se încarcă {{kind}}…",
|
|
41
41
|
"ui.fileMedia.state.error": "Nu se poate încărca {{kind}}.",
|
|
42
42
|
"ui.fileMedia.state.unavailable": "Previzualizare {{kind}} indisponibilă.",
|
|
43
43
|
"ui.fileMedia.binary.title": "Fișier binar",
|
|
@@ -70,7 +70,7 @@ export const dict: Record<string, string> = {
|
|
|
70
70
|
"ui.sessionTurn.error.addCredits": "Adaugă credit",
|
|
71
71
|
"dialog.usageExceeded.freeTier.title": "Limită gratuită atinsă",
|
|
72
72
|
"dialog.usageExceeded.freeTier.description":
|
|
73
|
-
"Abonează-te la OpenCode Go pentru
|
|
73
|
+
"Abonează-te la OpenCode Go pentru acces fiabil la cele mai bune modele open-source, de la 5$/lună.",
|
|
74
74
|
"dialog.usageExceeded.freeTier.actionLabel": "Abonează-te",
|
|
75
75
|
"dialog.usageExceeded.accountRateLimit.title": "Limită Go atinsă",
|
|
76
76
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -119,8 +119,8 @@ export const dict: Record<string, string> = {
|
|
|
119
119
|
"ui.promptInput.dropFiles": "Trage fișiere pentru atașare",
|
|
120
120
|
"ui.promptInput.removeAttachment": "Elimină atașarea",
|
|
121
121
|
"ui.promptInput.label": "Solicitare",
|
|
122
|
-
"ui.promptInput.placeholder.shell": "Introdu o comandă shell
|
|
123
|
-
"ui.promptInput.placeholder.normal": "Întreabă orice, {{slash}} pentru comenzi, {{at}} pentru context
|
|
122
|
+
"ui.promptInput.placeholder.shell": "Introdu o comandă shell…",
|
|
123
|
+
"ui.promptInput.placeholder.normal": "Întreabă orice, {{slash}} pentru comenzi, {{at}} pentru context…",
|
|
124
124
|
"ui.promptInput.add": "Adaugă imagini și fișiere",
|
|
125
125
|
"ui.promptInput.attachments": "Imagini și fișiere",
|
|
126
126
|
"ui.promptInput.context": "Context",
|
|
@@ -147,8 +147,6 @@ export const dict: Record<string, string> = {
|
|
|
147
147
|
"ui.tool.websearch.provider": "Căutare web {{provider}}",
|
|
148
148
|
"ui.tool.shell": "Shell",
|
|
149
149
|
"ui.tool.patch": "Petec",
|
|
150
|
-
"ui.tool.todos": "Sarcini",
|
|
151
|
-
"ui.tool.todos.read": "Citește sarcinile",
|
|
152
150
|
"ui.tool.questions": "Întrebări",
|
|
153
151
|
"ui.tool.questions.numbered": "Întrebări {{number}}",
|
|
154
152
|
"ui.tool.agent": "Agent {{type}}",
|
|
@@ -197,5 +195,5 @@ export const dict: Record<string, string> = {
|
|
|
197
195
|
"ui.question.review.notAnswered": "(fără răspuns)",
|
|
198
196
|
"ui.question.multiHint": "Selectează toate răspunsurile corecte",
|
|
199
197
|
"ui.question.singleHint": "Selectează un răspuns",
|
|
200
|
-
"ui.question.custom.placeholder": "Scrie răspunsul
|
|
198
|
+
"ui.question.custom.placeholder": "Scrie răspunsul…",
|
|
201
199
|
}
|