@opencode-ai/ui 0.0.0-dev-202609030903 → 0.0.0-dev-18996
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 +234 -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 +24 -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/{components → actions/button}/button.tsx +10 -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} +1 -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} +1 -1
- 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 +50 -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 +51 -10
- package/src/{v2/components/divider-v2.tsx → layout/divider/divider.tsx} +3 -3
- package/src/{v2/components/menu-v2.css → navigation/menu/menu.css} +123 -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 +39 -229
- 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}/theme.css +18 -14
- package/src/theme/context.tsx +19 -11
- package/src/theme/themes/oc-2.json +3 -1
- package/src/theme/v2/foreground.ts +1 -0
- package/src/theme/v2/mapping.ts +4 -0
- 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/button-v2.css → actions/button/button.css} +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 → styles/tokens}/colors.css +0 -0
- /package/src/{v2/styles/tailwind.css → styles/tokens/index.css} +0 -0
package/src/i18n/da.ts
CHANGED
|
@@ -14,7 +14,7 @@ export const dict = {
|
|
|
14
14
|
"ui.sessionReview.change.added": "Tilføjet",
|
|
15
15
|
"ui.sessionReview.change.removed": "Fjernet",
|
|
16
16
|
"ui.sessionReview.change.modified": "Ændret",
|
|
17
|
-
"ui.sessionReview.image.loading": "Indlæser
|
|
17
|
+
"ui.sessionReview.image.loading": "Indlæser…",
|
|
18
18
|
"ui.sessionReview.image.placeholder": "Billede",
|
|
19
19
|
"ui.sessionReview.largeDiff.title": "Diffen er for stor til at blive vist",
|
|
20
20
|
"ui.sessionReview.largeDiff.meta": "Grænse: {{limit}} ændrede linjer. Nuværende: {{current}} ændrede linjer.",
|
|
@@ -32,13 +32,13 @@ export const dict = {
|
|
|
32
32
|
"ui.sessionReviewV2.empty.noGit.title": "Ingen sporede ændringer",
|
|
33
33
|
"ui.sessionReviewV2.empty.noGit.description": "Spor, gennemgå og fortryd ændringer i dette projekt",
|
|
34
34
|
"ui.sessionReviewV2.empty.noGit.action": "Opret et Git-repository",
|
|
35
|
-
"ui.sessionReviewV2.empty.noGit.actionLoading": "Opretter Git-repository
|
|
35
|
+
"ui.sessionReviewV2.empty.noGit.actionLoading": "Opretter Git-repository…",
|
|
36
36
|
"ui.sessionReviewV2.empty.changes.title": "Ingen filændringer endnu",
|
|
37
37
|
"ui.sessionReviewV2.empty.changes.description": "Projektændringer vises her",
|
|
38
38
|
"ui.fileMedia.kind.image": "billede",
|
|
39
39
|
"ui.fileMedia.kind.audio": "lyd",
|
|
40
40
|
"ui.fileMedia.state.removed": "{{kind}} fjernet",
|
|
41
|
-
"ui.fileMedia.state.loading": "Indlæser {{kind}}
|
|
41
|
+
"ui.fileMedia.state.loading": "Indlæser {{kind}}…",
|
|
42
42
|
"ui.fileMedia.state.error": "Kunne ikke indlæse {{kind}}",
|
|
43
43
|
"ui.fileMedia.state.unavailable": "Forhåndsvisning af {{kind}} er ikke tilgængelig",
|
|
44
44
|
"ui.fileMedia.binary.title": "Binær fil",
|
|
@@ -71,7 +71,7 @@ export const dict = {
|
|
|
71
71
|
|
|
72
72
|
"dialog.usageExceeded.freeTier.title": "Gratis grænse nået",
|
|
73
73
|
"dialog.usageExceeded.freeTier.description":
|
|
74
|
-
"Abonnér på OpenCode Go for
|
|
74
|
+
"Abonnér på OpenCode Go for pålidelig adgang til de bedste open source-modeller fra $5/måned.",
|
|
75
75
|
"dialog.usageExceeded.freeTier.actionLabel": "Abonnér",
|
|
76
76
|
"dialog.usageExceeded.accountRateLimit.title": "Go-grænse nået",
|
|
77
77
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -130,8 +130,6 @@ export const dict = {
|
|
|
130
130
|
"ui.tool.websearch.provider": "{{provider}} Websøgning",
|
|
131
131
|
"ui.tool.shell": "Shell",
|
|
132
132
|
"ui.tool.patch": "Patch",
|
|
133
|
-
"ui.tool.todos": "Opgaver",
|
|
134
|
-
"ui.tool.todos.read": "Læs opgaver",
|
|
135
133
|
"ui.tool.questions": "Spørgsmål",
|
|
136
134
|
"ui.tool.questions.numbered": "Spørgsmål {{number}}",
|
|
137
135
|
"ui.tool.agent": "{{type}}-agent",
|
|
@@ -180,7 +178,7 @@ export const dict = {
|
|
|
180
178
|
"ui.question.review.notAnswered": "(ikke besvaret)",
|
|
181
179
|
"ui.question.multiHint": "Vælg alle der gælder",
|
|
182
180
|
"ui.question.singleHint": "Vælg ét svar",
|
|
183
|
-
"ui.question.custom.placeholder": "Skriv dit svar
|
|
181
|
+
"ui.question.custom.placeholder": "Skriv dit svar…",
|
|
184
182
|
|
|
185
183
|
"ui.fileSearch.placeholder": "Find",
|
|
186
184
|
"ui.fileSearch.previousMatch": "Forrige match",
|
|
@@ -200,8 +198,8 @@ export const dict = {
|
|
|
200
198
|
"ui.promptInput.dropFiles": "Slip filer for at vedhæfte dem",
|
|
201
199
|
"ui.promptInput.removeAttachment": "Fjern vedhæftet fil",
|
|
202
200
|
"ui.promptInput.label": "Prompt",
|
|
203
|
-
"ui.promptInput.placeholder.shell": "Indtast shell-kommando
|
|
204
|
-
"ui.promptInput.placeholder.normal": "Spørg om hvad som helst, {{slash}} for kommandoer, {{at}} for kontekst
|
|
201
|
+
"ui.promptInput.placeholder.shell": "Indtast shell-kommando…",
|
|
202
|
+
"ui.promptInput.placeholder.normal": "Spørg om hvad som helst, {{slash}} for kommandoer, {{at}} for kontekst…",
|
|
205
203
|
"ui.promptInput.add": "Tilføj billeder og filer",
|
|
206
204
|
"ui.promptInput.attachments": "Billeder og filer",
|
|
207
205
|
"ui.promptInput.context": "Kontekst",
|
package/src/i18n/de.ts
CHANGED
|
@@ -78,7 +78,7 @@ export const dict = {
|
|
|
78
78
|
|
|
79
79
|
"dialog.usageExceeded.freeTier.title": "Kostenloses Limit erreicht",
|
|
80
80
|
"dialog.usageExceeded.freeTier.description":
|
|
81
|
-
"OpenCode Go
|
|
81
|
+
"OpenCode Go abonnieren und zuverlässigen Zugriff auf die besten Open-Source-Modelle erhalten, ab 5 $ pro Monat.",
|
|
82
82
|
"dialog.usageExceeded.freeTier.actionLabel": "Abonnieren",
|
|
83
83
|
"dialog.usageExceeded.accountRateLimit.title": "Go-Limit erreicht",
|
|
84
84
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -137,8 +137,6 @@ export const dict = {
|
|
|
137
137
|
"ui.tool.websearch.provider": "{{provider}} Web-Suche",
|
|
138
138
|
"ui.tool.shell": "Shell",
|
|
139
139
|
"ui.tool.patch": "Patch",
|
|
140
|
-
"ui.tool.todos": "Aufgaben",
|
|
141
|
-
"ui.tool.todos.read": "Aufgaben lesen",
|
|
142
140
|
"ui.tool.questions": "Fragen",
|
|
143
141
|
"ui.tool.questions.numbered": "Fragen {{number}}",
|
|
144
142
|
"ui.tool.agent": "{{type}}-Agent",
|
package/src/i18n/dv.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
|
+
"އެންމެ ރަނގަޅު އޮޕަން ސޯސް މޮޑެލްތަކަށް އިތުބާރުހުރި ގޮތެއްގައި އެކްސެސް ހޯދުމަށް OpenCode Go އަށް ސަބްސްކްރައިބް ކޮށްލައްވާ، މަހަކު 5 ޑޮލަރުން ފެށިގެންނެވެ.",
|
|
74
74
|
"dialog.usageExceeded.freeTier.actionLabel": "ސަބްސްކްރައިބް ކޮށްލައްވާ",
|
|
75
75
|
"dialog.usageExceeded.accountRateLimit.title": "ގޯ ލިމިޓް އާދެވުނެވެ",
|
|
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/dz.ts
CHANGED
|
@@ -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
|
-
"OpenCode
|
|
74
|
+
"OpenCode ལུ་མཁོ་མངགས་འབད། $5/month ལས་འགོ་བཙུགས་ཏེ་ ཁ་ཕྱེ་ཡོད་པའི་ཐོན་ཁུངས་དཔེ་ཚད་དྲག་ཤོས་ཚུ་ལུ་བློ་གཏད་ཅན་གྱི་འཛུལ་སྤྱོད་ཀྱི་དོན་ལུ་འགྱོ།",
|
|
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": "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}} ལས་ཚན།",
|
package/src/i18n/el.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}} αλλαγμένες γραμμές.",
|
|
@@ -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
|
"ui.sessionReview.openFile": "Άνοιγμα αρχείου",
|
|
@@ -37,7 +37,7 @@ export const dict: Record<string, string> = {
|
|
|
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: Record<string, string> = {
|
|
|
69
69
|
"ui.sessionTurn.error.addCredits": "Προσθήκη πιστώσεων",
|
|
70
70
|
"dialog.usageExceeded.freeTier.title": "Συμπληρώθηκε το δωρεάν όριο",
|
|
71
71
|
"dialog.usageExceeded.freeTier.description":
|
|
72
|
-
"Εγγραφείτε στο OpenCode
|
|
72
|
+
"Εγγραφείτε στο OpenCode Μετάβαση για αξιόπιστη πρόσβαση στα καλύτερα μοντέλα ανοιχτού κώδικα, ξεκινώντας από 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: Record<string, string> = {
|
|
|
115
115
|
"ui.promptInput.dropFiles": "Αποθέστε αρχεία για επισύναψη",
|
|
116
116
|
"ui.promptInput.removeAttachment": "Κατάργηση συνημμένου",
|
|
117
117
|
"ui.promptInput.label": "Προτροπή",
|
|
118
|
-
"ui.promptInput.placeholder.shell": "Εισαγωγή εντολής
|
|
119
|
-
"ui.promptInput.placeholder.normal": "Ρωτήστε οτιδήποτε, {{slash}} για εντολές, {{at}} για
|
|
118
|
+
"ui.promptInput.placeholder.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: Record<string, string> = {
|
|
|
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: Record<string, string> = {
|
|
|
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/en.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
const source = {
|
|
2
2
|
"ui.sessionReview.title": "Session changes",
|
|
3
3
|
"ui.sessionReview.title.git": "Git changes",
|
|
4
4
|
"ui.sessionReview.title.branch": "Branch changes",
|
|
@@ -10,7 +10,7 @@ export const dict: Record<string, string> = {
|
|
|
10
10
|
"ui.sessionReview.change.added": "Added",
|
|
11
11
|
"ui.sessionReview.change.removed": "Removed",
|
|
12
12
|
"ui.sessionReview.change.modified": "Modified",
|
|
13
|
-
"ui.sessionReview.image.loading": "Loading
|
|
13
|
+
"ui.sessionReview.image.loading": "Loading…",
|
|
14
14
|
"ui.sessionReview.image.placeholder": "Image",
|
|
15
15
|
"ui.sessionReview.largeDiff.title": "Diff too large to render",
|
|
16
16
|
"ui.sessionReview.largeDiff.meta": "Limit: {{limit}} changed lines. Current: {{current}} changed lines.",
|
|
@@ -28,7 +28,7 @@ export const dict: Record<string, string> = {
|
|
|
28
28
|
"ui.sessionReviewV2.empty.noGit.title": "No tracked changes",
|
|
29
29
|
"ui.sessionReviewV2.empty.noGit.description": "Track, review, and undo changes in this project",
|
|
30
30
|
"ui.sessionReviewV2.empty.noGit.action": "Create Git repository",
|
|
31
|
-
"ui.sessionReviewV2.empty.noGit.actionLoading": "Creating Git repository
|
|
31
|
+
"ui.sessionReviewV2.empty.noGit.actionLoading": "Creating Git repository…",
|
|
32
32
|
"ui.sessionReviewV2.empty.changes.title": "No file changes yet",
|
|
33
33
|
"ui.sessionReviewV2.empty.changes.description": "Project changes will appear here",
|
|
34
34
|
|
|
@@ -39,7 +39,7 @@ export const dict: Record<string, string> = {
|
|
|
39
39
|
"ui.fileMedia.kind.image": "image",
|
|
40
40
|
"ui.fileMedia.kind.audio": "audio",
|
|
41
41
|
"ui.fileMedia.state.removed": "Removed {{kind}} file.",
|
|
42
|
-
"ui.fileMedia.state.loading": "Loading {{kind}}
|
|
42
|
+
"ui.fileMedia.state.loading": "Loading {{kind}}…",
|
|
43
43
|
"ui.fileMedia.state.error": "Unable to load {{kind}}.",
|
|
44
44
|
"ui.fileMedia.state.unavailable": "{{kind}} preview unavailable.",
|
|
45
45
|
"ui.fileMedia.binary.title": "Binary file",
|
|
@@ -75,7 +75,7 @@ export const dict: Record<string, string> = {
|
|
|
75
75
|
|
|
76
76
|
"dialog.usageExceeded.freeTier.title": "Free limit reached",
|
|
77
77
|
"dialog.usageExceeded.freeTier.description":
|
|
78
|
-
"Subscribe to OpenCode Go for reliable access to the best open-source models
|
|
78
|
+
"Subscribe to OpenCode Go for reliable access to the best open-source models, starting at $5/month.",
|
|
79
79
|
"dialog.usageExceeded.freeTier.actionLabel": "Subscribe",
|
|
80
80
|
"dialog.usageExceeded.accountRateLimit.title": "Go limit reached",
|
|
81
81
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -108,6 +108,13 @@ export const dict: Record<string, string> = {
|
|
|
108
108
|
"ui.messagePart.context.search.other": "{{count}} searches",
|
|
109
109
|
"ui.messagePart.context.list.one": "{{count}} list",
|
|
110
110
|
"ui.messagePart.context.list.other": "{{count}} lists",
|
|
111
|
+
"ui.messagePart.context.notice.one": "{{count}} Notice",
|
|
112
|
+
"ui.messagePart.context.notice.other": "{{count}} Notices",
|
|
113
|
+
"ui.messagePart.context.thought.one": "{{count}} Thought",
|
|
114
|
+
"ui.messagePart.context.thought.other": "{{count}} Thoughts",
|
|
115
|
+
"ui.messagePart.context.match.one": "({{count}} match)",
|
|
116
|
+
"ui.messagePart.context.match.other": "({{count}} matches)",
|
|
117
|
+
"ui.messagePart.tools.used": "Used {{tools}}",
|
|
111
118
|
|
|
112
119
|
"ui.list.loading": "Loading",
|
|
113
120
|
"ui.list.empty": "No results",
|
|
@@ -127,8 +134,9 @@ export const dict: Record<string, string> = {
|
|
|
127
134
|
"ui.promptInput.dropFiles": "Drop files to attach",
|
|
128
135
|
"ui.promptInput.removeAttachment": "Remove attachment",
|
|
129
136
|
"ui.promptInput.label": "Prompt",
|
|
130
|
-
"ui.promptInput.placeholder.shell": "Enter shell command
|
|
131
|
-
"ui.promptInput.placeholder.normal": "Ask anything, {{slash}} for commands, {{at}} for context
|
|
137
|
+
"ui.promptInput.placeholder.shell": "Enter shell command…",
|
|
138
|
+
"ui.promptInput.placeholder.normal": "Ask anything, {{slash}} for commands, {{at}} for context…",
|
|
139
|
+
"ui.promptInput.placeholder.followUp": "Add follow-up, {{slash}} for commands, {{at}} for context…",
|
|
132
140
|
"ui.promptInput.add": "Add images and files",
|
|
133
141
|
"ui.promptInput.attachments": "Images and files",
|
|
134
142
|
"ui.promptInput.context": "Context",
|
|
@@ -138,6 +146,9 @@ export const dict: Record<string, string> = {
|
|
|
138
146
|
"ui.promptInput.chooseVariant": "Choose model variant",
|
|
139
147
|
"ui.promptInput.send": "Send",
|
|
140
148
|
"ui.promptInput.stop": "Stop",
|
|
149
|
+
"ui.promptInput.steer": "Steer",
|
|
150
|
+
"ui.promptInput.queue": "Queue",
|
|
151
|
+
"ui.promptInput.steerHint": "Send without interrupting",
|
|
141
152
|
|
|
142
153
|
"ui.tabs.close": "Close tab",
|
|
143
154
|
|
|
@@ -150,6 +161,10 @@ export const dict: Record<string, string> = {
|
|
|
150
161
|
|
|
151
162
|
"ui.tool.read": "Read",
|
|
152
163
|
"ui.tool.loaded": "Loaded",
|
|
164
|
+
"ui.tool.loadedFile": "Loaded {{path}}",
|
|
165
|
+
"ui.tool.loadedSkill": "Loaded {{name}} skill",
|
|
166
|
+
"ui.tool.loadedSkills.one": "Loaded {{name}} skill",
|
|
167
|
+
"ui.tool.loadedSkills.other": "Loaded {{name}} skills",
|
|
153
168
|
"ui.tool.list": "List",
|
|
154
169
|
"ui.tool.glob": "Glob",
|
|
155
170
|
"ui.tool.grep": "Grep",
|
|
@@ -158,13 +173,17 @@ export const dict: Record<string, string> = {
|
|
|
158
173
|
"ui.tool.websearch": "Web Search",
|
|
159
174
|
"ui.tool.websearch.provider": "{{provider}} Web Search",
|
|
160
175
|
"ui.tool.shell": "Shell",
|
|
176
|
+
"ui.tool.shell.writingCommand": "Writing command…",
|
|
177
|
+
"ui.tool.shell.exit": "Command exited with code {{code}}",
|
|
178
|
+
"ui.tool.shell.timeout": "Command timed out",
|
|
179
|
+
"ui.tool.shell.cancelled": "Command cancelled",
|
|
180
|
+
"ui.tool.execute": "Execute",
|
|
161
181
|
"ui.tool.patch": "Patch",
|
|
162
|
-
"ui.tool.todos": "To-dos",
|
|
163
|
-
"ui.tool.todos.read": "Read to-dos",
|
|
164
182
|
"ui.tool.questions": "Questions",
|
|
165
183
|
"ui.tool.questions.numbered": "Questions {{number}}",
|
|
166
184
|
"ui.tool.agent": "{{type}} Agent",
|
|
167
185
|
"ui.tool.agent.default": "Agent",
|
|
186
|
+
"ui.tool.agent.delegating": "Delegating agent…",
|
|
168
187
|
"ui.tool.skill": "Skill",
|
|
169
188
|
|
|
170
189
|
"ui.basicTool.called": "Called `{{tool}}`",
|
|
@@ -187,6 +206,8 @@ export const dict: Record<string, string> = {
|
|
|
187
206
|
"ui.common.next": "Next",
|
|
188
207
|
"ui.common.submit": "Submit",
|
|
189
208
|
"ui.common.showMore": "Show more",
|
|
209
|
+
"ui.common.moreCount.one": "+{{count}} more",
|
|
210
|
+
"ui.common.moreCount.other": "+{{count}} more",
|
|
190
211
|
|
|
191
212
|
"ui.permission.deny": "Deny",
|
|
192
213
|
"ui.permission.allowAlways": "Allow always",
|
|
@@ -200,9 +221,18 @@ export const dict: Record<string, string> = {
|
|
|
200
221
|
"ui.message.revertMessage": "Revert message",
|
|
201
222
|
"ui.message.copyResponse": "Copy response",
|
|
202
223
|
"ui.message.copied": "Copied",
|
|
224
|
+
"ui.message.thought": "Thought",
|
|
203
225
|
"ui.message.duration.seconds": "{{count}}s",
|
|
204
226
|
"ui.message.duration.minutesSeconds": "{{minutes}}m {{seconds}}s",
|
|
205
227
|
"ui.message.interrupted": "Interrupted",
|
|
228
|
+
"ui.sessionTimeline.notice.model": "Model",
|
|
229
|
+
"ui.sessionTimeline.notice.modelSwitched": "Switched to {{model}}",
|
|
230
|
+
"ui.sessionTimeline.notice.movedTo": "Moved to",
|
|
231
|
+
"ui.sessionTimeline.notice.movedTooltip": "Session working directory changed",
|
|
232
|
+
"ui.sessionTimeline.notice.failed": "{{actor}} failed",
|
|
233
|
+
"ui.sessionTimeline.notice.cancelled": "{{actor}} cancelled",
|
|
234
|
+
"ui.sessionTimeline.notice.finished": "{{actor}} finished",
|
|
235
|
+
"ui.sessionTimeline.notice.instructionsUpdated": "Instructions updated",
|
|
206
236
|
"ui.message.queued": "Queued",
|
|
207
237
|
"ui.message.attachment.alt": "attachment",
|
|
208
238
|
|
|
@@ -216,5 +246,14 @@ export const dict: Record<string, string> = {
|
|
|
216
246
|
"ui.question.review.notAnswered": "(not answered)",
|
|
217
247
|
"ui.question.multiHint": "Select all answers that apply",
|
|
218
248
|
"ui.question.singleHint": "Select one answer",
|
|
219
|
-
"ui.question.custom.placeholder": "Type your answer
|
|
220
|
-
}
|
|
249
|
+
"ui.question.custom.placeholder": "Type your answer…",
|
|
250
|
+
} satisfies Record<string, string>
|
|
251
|
+
|
|
252
|
+
export type Key = keyof typeof source
|
|
253
|
+
export type PluralCategory = "zero" | "one" | "two" | "few" | "many" | "other"
|
|
254
|
+
export type PluralKey = {
|
|
255
|
+
[Entry in Key]: Entry extends `${infer Base}.other` ? (`${Base}.one` extends Key ? Base : never) : never
|
|
256
|
+
}[Key]
|
|
257
|
+
export type PluralLookupKey = `${PluralKey}.${PluralCategory}`
|
|
258
|
+
export type LocaleKey = Key | PluralLookupKey
|
|
259
|
+
export const dict: typeof source & Record<string, string> = source
|
package/src/i18n/es.ts
CHANGED
|
@@ -13,7 +13,7 @@ export const dict = {
|
|
|
13
13
|
"ui.sessionReview.change.added": "Añadido",
|
|
14
14
|
"ui.sessionReview.change.removed": "Eliminado",
|
|
15
15
|
"ui.sessionReview.change.modified": "Modificado",
|
|
16
|
-
"ui.sessionReview.image.loading": "Cargando
|
|
16
|
+
"ui.sessionReview.image.loading": "Cargando…",
|
|
17
17
|
"ui.sessionReview.image.placeholder": "Imagen",
|
|
18
18
|
"ui.sessionReview.largeDiff.title": "Diff demasiado grande para renderizar",
|
|
19
19
|
"ui.sessionReview.largeDiff.meta": "Límite: {{limit}} líneas modificadas. Actual: {{current}} líneas modificadas.",
|
|
@@ -31,7 +31,7 @@ export const dict = {
|
|
|
31
31
|
"ui.sessionReviewV2.empty.noGit.title": "No hay cambios rastreados",
|
|
32
32
|
"ui.sessionReviewV2.empty.noGit.description": "Rastrea, revisa y deshaz cambios en este proyecto",
|
|
33
33
|
"ui.sessionReviewV2.empty.noGit.action": "Crear repositorio Git",
|
|
34
|
-
"ui.sessionReviewV2.empty.noGit.actionLoading": "Creando repositorio Git
|
|
34
|
+
"ui.sessionReviewV2.empty.noGit.actionLoading": "Creando repositorio Git…",
|
|
35
35
|
"ui.sessionReviewV2.empty.changes.title": "Aún no hay cambios en los archivos",
|
|
36
36
|
"ui.sessionReviewV2.empty.changes.description": "Los cambios del proyecto aparecerán aquí",
|
|
37
37
|
"ui.fileMedia.kind.image": "imagen",
|
|
@@ -74,7 +74,7 @@ export const dict = {
|
|
|
74
74
|
|
|
75
75
|
"dialog.usageExceeded.freeTier.title": "Límite gratuito alcanzado",
|
|
76
76
|
"dialog.usageExceeded.freeTier.description":
|
|
77
|
-
"Suscríbete a OpenCode Go
|
|
77
|
+
"Suscríbete a OpenCode Go para acceder de forma fiable a los mejores modelos de código abierto desde 5 USD al mes.",
|
|
78
78
|
"dialog.usageExceeded.freeTier.actionLabel": "Suscribirse",
|
|
79
79
|
"dialog.usageExceeded.accountRateLimit.title": "Límite de Go alcanzado",
|
|
80
80
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -124,8 +124,8 @@ export const dict = {
|
|
|
124
124
|
"ui.promptInput.dropFiles": "Suelta los archivos para adjuntarlos",
|
|
125
125
|
"ui.promptInput.removeAttachment": "Eliminar adjunto",
|
|
126
126
|
"ui.promptInput.label": "Prompt",
|
|
127
|
-
"ui.promptInput.placeholder.shell": "Introduce un comando de shell
|
|
128
|
-
"ui.promptInput.placeholder.normal": "Pregunta lo que quieras, {{slash}} para comandos, {{at}} para contexto
|
|
127
|
+
"ui.promptInput.placeholder.shell": "Introduce un comando de shell…",
|
|
128
|
+
"ui.promptInput.placeholder.normal": "Pregunta lo que quieras, {{slash}} para comandos, {{at}} para contexto…",
|
|
129
129
|
"ui.promptInput.add": "Añadir imágenes y archivos",
|
|
130
130
|
"ui.promptInput.attachments": "Imágenes y archivos",
|
|
131
131
|
"ui.promptInput.context": "Contexto",
|
|
@@ -155,8 +155,6 @@ export const dict = {
|
|
|
155
155
|
"ui.tool.websearch.provider": "{{provider}} Búsqueda web",
|
|
156
156
|
"ui.tool.shell": "Shell",
|
|
157
157
|
"ui.tool.patch": "Parche",
|
|
158
|
-
"ui.tool.todos": "Tareas",
|
|
159
|
-
"ui.tool.todos.read": "Leer tareas",
|
|
160
158
|
"ui.tool.questions": "Preguntas",
|
|
161
159
|
"ui.tool.questions.numbered": "Preguntas {{number}}",
|
|
162
160
|
"ui.tool.agent": "Agente {{type}}",
|
|
@@ -205,7 +203,7 @@ export const dict = {
|
|
|
205
203
|
"ui.question.review.notAnswered": "(no respondida)",
|
|
206
204
|
"ui.question.multiHint": "Selecciona todas las que correspondan",
|
|
207
205
|
"ui.question.singleHint": "Selecciona una respuesta",
|
|
208
|
-
"ui.question.custom.placeholder": "Escribe tu respuesta
|
|
206
|
+
"ui.question.custom.placeholder": "Escribe tu respuesta…",
|
|
209
207
|
|
|
210
208
|
"ui.fileSearch.placeholder": "Buscar",
|
|
211
209
|
"ui.fileSearch.previousMatch": "Anterior",
|
package/src/i18n/et.ts
CHANGED
|
@@ -10,7 +10,7 @@ export const dict: Record<string, string> = {
|
|
|
10
10
|
"ui.sessionReview.change.added": "Lisatud",
|
|
11
11
|
"ui.sessionReview.change.removed": "Eemaldatud",
|
|
12
12
|
"ui.sessionReview.change.modified": "Muudetud",
|
|
13
|
-
"ui.sessionReview.image.loading": "Laadimine
|
|
13
|
+
"ui.sessionReview.image.loading": "Laadimine…",
|
|
14
14
|
"ui.sessionReview.image.placeholder": "Pilt",
|
|
15
15
|
"ui.sessionReview.largeDiff.title": "Diff on renderdamiseks liiga suur",
|
|
16
16
|
"ui.sessionReview.largeDiff.meta": "Limiit: {{limit}} muudetud rida. Praegune: {{current}} muudetud rida.",
|
|
@@ -28,7 +28,7 @@ export const dict: Record<string, string> = {
|
|
|
28
28
|
"ui.sessionReviewV2.empty.noGit.title": "Jälgitud muudatusi pole",
|
|
29
29
|
"ui.sessionReviewV2.empty.noGit.description": "Selle projekti muudatuste jälgimine, ülevaatamine ja tagasivõtmine",
|
|
30
30
|
"ui.sessionReviewV2.empty.noGit.action": "Loo Git hoidla",
|
|
31
|
-
"ui.sessionReviewV2.empty.noGit.actionLoading": "Git hoidla loomine
|
|
31
|
+
"ui.sessionReviewV2.empty.noGit.actionLoading": "Git hoidla loomine…",
|
|
32
32
|
"ui.sessionReviewV2.empty.changes.title": "Failis pole veel muudatusi tehtud",
|
|
33
33
|
"ui.sessionReviewV2.empty.changes.description": "Projekti muudatused kuvatakse siin",
|
|
34
34
|
"ui.sessionReview.openFile": "Ava fail",
|
|
@@ -37,7 +37,7 @@ export const dict: Record<string, string> = {
|
|
|
37
37
|
"ui.fileMedia.kind.image": "pilt",
|
|
38
38
|
"ui.fileMedia.kind.audio": "heli",
|
|
39
39
|
"ui.fileMedia.state.removed": "Eemaldatud {{kind}} fail.",
|
|
40
|
-
"ui.fileMedia.state.loading": "Laadimine {{kind}}
|
|
40
|
+
"ui.fileMedia.state.loading": "Laadimine {{kind}}…",
|
|
41
41
|
"ui.fileMedia.state.error": "Ei saa laadida {{kind}}.",
|
|
42
42
|
"ui.fileMedia.state.unavailable": "{{kind}} eelvaade pole saadaval.",
|
|
43
43
|
"ui.fileMedia.binary.title": "Binaarne fail",
|
|
@@ -69,7 +69,7 @@ export const dict: Record<string, string> = {
|
|
|
69
69
|
"ui.sessionTurn.error.addCredits": "Lisa krediite",
|
|
70
70
|
"dialog.usageExceeded.freeTier.title": "Tasuta limiit on täis",
|
|
71
71
|
"dialog.usageExceeded.freeTier.description":
|
|
72
|
-
"Tellige OpenCode
|
|
72
|
+
"Tellige OpenCode, et saada usaldusväärne juurdepääs parimatele avatud lähtekoodiga mudelitele alates 5 dollarist kuus.",
|
|
73
73
|
"dialog.usageExceeded.freeTier.actionLabel": "Telli",
|
|
74
74
|
"dialog.usageExceeded.accountRateLimit.title": "Go limiit on täis",
|
|
75
75
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -115,8 +115,8 @@ export const dict: Record<string, string> = {
|
|
|
115
115
|
"ui.promptInput.dropFiles": "Manustamiseks pukseerige failid",
|
|
116
116
|
"ui.promptInput.removeAttachment": "Eemalda manus",
|
|
117
117
|
"ui.promptInput.label": "Viip",
|
|
118
|
-
"ui.promptInput.placeholder.shell": "Sisestage shellikäsk
|
|
119
|
-
"ui.promptInput.placeholder.normal": "Küsi kõike, {{slash}} käske, {{at}} konteksti
|
|
118
|
+
"ui.promptInput.placeholder.shell": "Sisestage shellikäsk…",
|
|
119
|
+
"ui.promptInput.placeholder.normal": "Küsi kõike, {{slash}} käske, {{at}} konteksti…",
|
|
120
120
|
"ui.promptInput.add": "Lisage pilte ja faile",
|
|
121
121
|
"ui.promptInput.attachments": "Pildid ja failid",
|
|
122
122
|
"ui.promptInput.context": "Kontekst",
|
|
@@ -143,8 +143,6 @@ export const dict: Record<string, string> = {
|
|
|
143
143
|
"ui.tool.websearch.provider": "{{provider}} Veebiotsing",
|
|
144
144
|
"ui.tool.shell": "Shell",
|
|
145
145
|
"ui.tool.patch": "Patch",
|
|
146
|
-
"ui.tool.todos": "Ülesanded",
|
|
147
|
-
"ui.tool.todos.read": "Lugege ülesandeid",
|
|
148
146
|
"ui.tool.questions": "Küsimused",
|
|
149
147
|
"ui.tool.questions.numbered": "Küsimused {{number}}",
|
|
150
148
|
"ui.tool.agent": "{{type}} Agent",
|
|
@@ -193,5 +191,5 @@ export const dict: Record<string, string> = {
|
|
|
193
191
|
"ui.question.review.notAnswered": "(ei vastanud)",
|
|
194
192
|
"ui.question.multiHint": "Valige kõik sobivad vastused",
|
|
195
193
|
"ui.question.singleHint": "Valige üks vastus",
|
|
196
|
-
"ui.question.custom.placeholder": "Sisesta oma vastus
|
|
194
|
+
"ui.question.custom.placeholder": "Sisesta oma vastus…",
|
|
197
195
|
}
|
package/src/i18n/fa.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}} خطوط تغییر کرده است.",
|
|
@@ -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
|
"ui.sessionReview.openFile": "باز کردن فایل",
|
|
@@ -37,7 +37,7 @@ export const dict: Record<string, string> = {
|
|
|
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: Record<string, string> = {
|
|
|
69
69
|
"ui.sessionTurn.error.addCredits": "اعتبار اضافه کنید",
|
|
70
70
|
"dialog.usageExceeded.freeTier.title": "به حد مجاز رایگان رسیده است",
|
|
71
71
|
"dialog.usageExceeded.freeTier.description":
|
|
72
|
-
"برای دسترسی مطمئن به بهترین
|
|
72
|
+
"برای دسترسی مطمئن به بهترین مدل های منبع باز، از 5 دلار در ماه، در OpenCode Go مشترک شوید.",
|
|
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: Record<string, string> = {
|
|
|
115
115
|
"ui.promptInput.dropFiles": "فایل ها را برای پیوست رها کنید",
|
|
116
116
|
"ui.promptInput.removeAttachment": "حذف پیوست",
|
|
117
117
|
"ui.promptInput.label": "پرامپت",
|
|
118
|
-
"ui.promptInput.placeholder.shell": "دستور پوسته Enter
|
|
119
|
-
"ui.promptInput.placeholder.normal": "هر چیزی را بپرسید، {{slash}} برای دستورات، {{at}} برای
|
|
118
|
+
"ui.promptInput.placeholder.shell": "دستور پوسته Enter…",
|
|
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: Record<string, string> = {
|
|
|
143
143
|
"ui.tool.websearch.provider": "جستجوی وب {{provider}}",
|
|
144
144
|
"ui.tool.shell": "پوسته",
|
|
145
145
|
"ui.tool.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: Record<string, string> = {
|
|
|
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
|
}
|