@opencode-ai/ui 0.0.0-dev-202609030903 → 0.0.0-dev-18997
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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/fi.ts
CHANGED
|
@@ -10,7 +10,7 @@ export const dict: Record<string, string> = {
|
|
|
10
10
|
"ui.sessionReview.change.added": "Lisätty",
|
|
11
11
|
"ui.sessionReview.change.removed": "Poistettu",
|
|
12
12
|
"ui.sessionReview.change.modified": "Muokattu",
|
|
13
|
-
"ui.sessionReview.image.loading": "Ladataan
|
|
13
|
+
"ui.sessionReview.image.loading": "Ladataan…",
|
|
14
14
|
"ui.sessionReview.image.placeholder": "Kuva",
|
|
15
15
|
"ui.sessionReview.largeDiff.title": "Diffi on liian suuri hahmonnettavaksi",
|
|
16
16
|
"ui.sessionReview.largeDiff.meta": "Rajoitus: {{limit}} muutettua riviä. Nykyinen: {{current}} muutettua riviä.",
|
|
@@ -28,7 +28,7 @@ export const dict: Record<string, string> = {
|
|
|
28
28
|
"ui.sessionReviewV2.empty.noGit.title": "Ei seurattuja muutoksia",
|
|
29
29
|
"ui.sessionReviewV2.empty.noGit.description": "Seuraa, tarkista ja kumoa muutoksia tässä projektissa",
|
|
30
30
|
"ui.sessionReviewV2.empty.noGit.action": "Luo Git-säilö",
|
|
31
|
-
"ui.sessionReviewV2.empty.noGit.actionLoading": "Luodaan Git-säil
|
|
31
|
+
"ui.sessionReviewV2.empty.noGit.actionLoading": "Luodaan Git-säilöä…",
|
|
32
32
|
"ui.sessionReviewV2.empty.changes.title": "Ei vielä tiedostomuutoksia",
|
|
33
33
|
"ui.sessionReviewV2.empty.changes.description": "Projektin muutokset näkyvät täällä",
|
|
34
34
|
"ui.sessionReview.openFile": "Avaa tiedosto",
|
|
@@ -37,7 +37,7 @@ export const dict: Record<string, string> = {
|
|
|
37
37
|
"ui.fileMedia.kind.image": "Kuva",
|
|
38
38
|
"ui.fileMedia.kind.audio": "Ääni",
|
|
39
39
|
"ui.fileMedia.state.removed": "{{kind}}: tiedosto poistettu.",
|
|
40
|
-
"ui.fileMedia.state.loading": "{{kind}}: ladataan
|
|
40
|
+
"ui.fileMedia.state.loading": "{{kind}}: ladataan…",
|
|
41
41
|
"ui.fileMedia.state.error": "{{kind}}: lataaminen epäonnistui.",
|
|
42
42
|
"ui.fileMedia.state.unavailable": "{{kind}}: esikatselu ei ole saatavilla.",
|
|
43
43
|
"ui.fileMedia.binary.title": "Binääritiedosto",
|
|
@@ -68,7 +68,7 @@ export const dict: Record<string, string> = {
|
|
|
68
68
|
"ui.sessionTurn.error.addCredits": "Lisää krediittejä",
|
|
69
69
|
"dialog.usageExceeded.freeTier.title": "Ilmainen raja saavutettu",
|
|
70
70
|
"dialog.usageExceeded.freeTier.description":
|
|
71
|
-
"Tilaa OpenCode Go
|
|
71
|
+
"Tilaa OpenCode Go saadaksesi luotettavan pääsyn parhaisiin avoimen lähdekoodin malleihin alkaen 5 dollarista kuukaudessa.",
|
|
72
72
|
"dialog.usageExceeded.freeTier.actionLabel": "Tilaa",
|
|
73
73
|
"dialog.usageExceeded.accountRateLimit.title": "Go-raja saavutettu",
|
|
74
74
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -125,8 +125,6 @@ export const dict: Record<string, string> = {
|
|
|
125
125
|
"ui.tool.websearch.provider": "{{provider}} Verkkohaku",
|
|
126
126
|
"ui.tool.shell": "Shell",
|
|
127
127
|
"ui.tool.patch": "Patch",
|
|
128
|
-
"ui.tool.todos": "Tehtävät",
|
|
129
|
-
"ui.tool.todos.read": "Lue tehtävät",
|
|
130
128
|
"ui.tool.questions": "Kysymykset",
|
|
131
129
|
"ui.tool.questions.numbered": "Kysymykset {{number}}",
|
|
132
130
|
"ui.tool.agent": "{{type}}-agentti",
|
|
@@ -175,15 +173,15 @@ export const dict: Record<string, string> = {
|
|
|
175
173
|
"ui.question.review.notAnswered": "(ei vastattu)",
|
|
176
174
|
"ui.question.multiHint": "Valitse kaikki sopivat vastaukset",
|
|
177
175
|
"ui.question.singleHint": "Valitse yksi vastaus",
|
|
178
|
-
"ui.question.custom.placeholder": "Kirjoita vastauksesi
|
|
176
|
+
"ui.question.custom.placeholder": "Kirjoita vastauksesi…",
|
|
179
177
|
"ui.lineComment.contextPlaceholder": "Lisää tämän muutoksen konteksti",
|
|
180
178
|
"ui.promptInput.noMatchingItems": "Ei vastaavia kohteita",
|
|
181
179
|
"ui.promptInput.commands": "Komennot",
|
|
182
180
|
"ui.promptInput.dropFiles": "Liitä tiedostoja pudottamalla ne tähän",
|
|
183
181
|
"ui.promptInput.removeAttachment": "Poista liite",
|
|
184
182
|
"ui.promptInput.label": "Kehote",
|
|
185
|
-
"ui.promptInput.placeholder.shell": "Anna shell-komento
|
|
186
|
-
"ui.promptInput.placeholder.normal": "Kysy mitä tahansa, {{slash}} komentoja varten, {{at}} kontekstia varten
|
|
183
|
+
"ui.promptInput.placeholder.shell": "Anna shell-komento…",
|
|
184
|
+
"ui.promptInput.placeholder.normal": "Kysy mitä tahansa, {{slash}} komentoja varten, {{at}} kontekstia varten…",
|
|
187
185
|
"ui.promptInput.add": "Lisää kuvia ja tiedostoja",
|
|
188
186
|
"ui.promptInput.attachments": "Kuvat ja tiedostot",
|
|
189
187
|
"ui.promptInput.context": "Konteksti",
|
package/src/i18n/fo.ts
CHANGED
|
@@ -10,7 +10,7 @@ export const dict: Record<string, string> = {
|
|
|
10
10
|
"ui.sessionReview.change.added": "Lagt afturat",
|
|
11
11
|
"ui.sessionReview.change.removed": "Fjernað",
|
|
12
12
|
"ui.sessionReview.change.modified": "Broytt",
|
|
13
|
-
"ui.sessionReview.image.loading": "Heinta
|
|
13
|
+
"ui.sessionReview.image.loading": "Heinta…",
|
|
14
14
|
"ui.sessionReview.image.placeholder": "Mynd",
|
|
15
15
|
"ui.sessionReview.largeDiff.title": "Munurin er ov stórur at gera",
|
|
16
16
|
"ui.sessionReview.largeDiff.meta": "Avmarking: {{limit}} broyttar linjur. Núverandi: {{current}} broyttar linjur.",
|
|
@@ -28,7 +28,7 @@ export const dict: Record<string, string> = {
|
|
|
28
28
|
"ui.sessionReviewV2.empty.noGit.title": "Ongar fylgdar broytingar",
|
|
29
29
|
"ui.sessionReviewV2.empty.noGit.description": "Fylg við, kanna og angra broytingar í hesi verkætlan",
|
|
30
30
|
"ui.sessionReviewV2.empty.noGit.action": "Stovna Git goymslu",
|
|
31
|
-
"ui.sessionReviewV2.empty.noGit.actionLoading": "Stovna Git goymslu
|
|
31
|
+
"ui.sessionReviewV2.empty.noGit.actionLoading": "Stovna Git goymslu…",
|
|
32
32
|
"ui.sessionReviewV2.empty.changes.title": "Ongar fílubroytingar enn",
|
|
33
33
|
"ui.sessionReviewV2.empty.changes.description": "Verkætlanarbroytingar síggjast her",
|
|
34
34
|
"ui.sessionReview.openFile": "Opna fíluna",
|
|
@@ -37,7 +37,7 @@ export const dict: Record<string, string> = {
|
|
|
37
37
|
"ui.fileMedia.kind.image": "mynd",
|
|
38
38
|
"ui.fileMedia.kind.audio": "ljóð",
|
|
39
39
|
"ui.fileMedia.state.removed": "Strikað {{kind}} fíla.",
|
|
40
|
-
"ui.fileMedia.state.loading": "Heinta {{kind}}
|
|
40
|
+
"ui.fileMedia.state.loading": "Heinta {{kind}}…",
|
|
41
41
|
"ui.fileMedia.state.error": "Ikki ber til at heinta {{kind}}.",
|
|
42
42
|
"ui.fileMedia.state.unavailable": "{{kind}} forskoðan ikki tøk.",
|
|
43
43
|
"ui.fileMedia.binary.title": "Binær fíla",
|
|
@@ -69,7 +69,7 @@ export const dict: Record<string, string> = {
|
|
|
69
69
|
"ui.sessionTurn.error.addCredits": "Legg stig til",
|
|
70
70
|
"dialog.usageExceeded.freeTier.title": "Frítt mark er nátt",
|
|
71
71
|
"dialog.usageExceeded.freeTier.description":
|
|
72
|
-
"Tekna teg til OpenCode Go fyri
|
|
72
|
+
"Tekna teg til OpenCode Go fyri álítandi atgongd til bestu open-source modellini, frá $5 um mánaðin.",
|
|
73
73
|
"dialog.usageExceeded.freeTier.actionLabel": "Tekna teg",
|
|
74
74
|
"dialog.usageExceeded.accountRateLimit.title": "Go-markið er rokkið",
|
|
75
75
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -115,8 +115,8 @@ export const dict: Record<string, string> = {
|
|
|
115
115
|
"ui.promptInput.dropFiles": "Slepp fílum at viðhefta",
|
|
116
116
|
"ui.promptInput.removeAttachment": "Strika viðheftið",
|
|
117
117
|
"ui.promptInput.label": "Prompt",
|
|
118
|
-
"ui.promptInput.placeholder.shell": "Skriva eina shell-skipan
|
|
119
|
-
"ui.promptInput.placeholder.normal": "Spyr um alt, {{slash}} um skipanir, {{at}} um samanhang
|
|
118
|
+
"ui.promptInput.placeholder.shell": "Skriva eina shell-skipan…",
|
|
119
|
+
"ui.promptInput.placeholder.normal": "Spyr um alt, {{slash}} um skipanir, {{at}} um samanhang…",
|
|
120
120
|
"ui.promptInput.add": "Legg myndir og fílur til",
|
|
121
121
|
"ui.promptInput.attachments": "Myndir og fílur",
|
|
122
122
|
"ui.promptInput.context": "Samanhangur",
|
|
@@ -143,8 +143,6 @@ export const dict: Record<string, string> = {
|
|
|
143
143
|
"ui.tool.websearch.provider": "{{provider}} Leitan á netinum",
|
|
144
144
|
"ui.tool.shell": "Shell",
|
|
145
145
|
"ui.tool.patch": "Patch",
|
|
146
|
-
"ui.tool.todos": "Uppgávur",
|
|
147
|
-
"ui.tool.todos.read": "Les uppgávur",
|
|
148
146
|
"ui.tool.questions": "Spurningar",
|
|
149
147
|
"ui.tool.questions.numbered": "Spurningar {{number}}",
|
|
150
148
|
"ui.tool.agent": "{{type}} agentur",
|
|
@@ -193,5 +191,5 @@ export const dict: Record<string, string> = {
|
|
|
193
191
|
"ui.question.review.notAnswered": "(ikki svarað)",
|
|
194
192
|
"ui.question.multiHint": "Vel øll svar, sum eru galdandi",
|
|
195
193
|
"ui.question.singleHint": "Vel eitt svar",
|
|
196
|
-
"ui.question.custom.placeholder": "Skriva títt svar
|
|
194
|
+
"ui.question.custom.placeholder": "Skriva títt svar…",
|
|
197
195
|
}
|
package/src/i18n/fr.ts
CHANGED
|
@@ -13,7 +13,7 @@ export const dict = {
|
|
|
13
13
|
"ui.sessionReview.change.added": "Ajout",
|
|
14
14
|
"ui.sessionReview.change.removed": "Suppression",
|
|
15
15
|
"ui.sessionReview.change.modified": "Modification",
|
|
16
|
-
"ui.sessionReview.image.loading": "Chargement
|
|
16
|
+
"ui.sessionReview.image.loading": "Chargement…",
|
|
17
17
|
"ui.sessionReview.image.placeholder": "Image",
|
|
18
18
|
"ui.sessionReview.largeDiff.title": "Diff trop volumineux pour être affiché",
|
|
19
19
|
"ui.sessionReview.largeDiff.meta":
|
|
@@ -32,7 +32,7 @@ export const dict = {
|
|
|
32
32
|
"ui.sessionReviewV2.empty.noGit.title": "Aucune modification suivie",
|
|
33
33
|
"ui.sessionReviewV2.empty.noGit.description": "Suivre, examiner et annuler les modifications dans ce projet",
|
|
34
34
|
"ui.sessionReviewV2.empty.noGit.action": "Créer un dépôt Git",
|
|
35
|
-
"ui.sessionReviewV2.empty.noGit.actionLoading": "Création du dépôt Git
|
|
35
|
+
"ui.sessionReviewV2.empty.noGit.actionLoading": "Création du dépôt Git…",
|
|
36
36
|
"ui.sessionReviewV2.empty.changes.title": "Aucune modification de fichier pour l'instant",
|
|
37
37
|
"ui.sessionReviewV2.empty.changes.description": "Les modifications du projet apparaîtront ici",
|
|
38
38
|
"ui.fileMedia.kind.image": "image",
|
|
@@ -75,7 +75,7 @@ export const dict = {
|
|
|
75
75
|
|
|
76
76
|
"dialog.usageExceeded.freeTier.title": "Limite gratuite atteinte",
|
|
77
77
|
"dialog.usageExceeded.freeTier.description":
|
|
78
|
-
"Abonnez-vous à OpenCode Go pour
|
|
78
|
+
"Abonnez-vous à OpenCode Go pour un accès fiable aux meilleurs modèles à code source ouvert, à partir de 5 $ US par mois.",
|
|
79
79
|
"dialog.usageExceeded.freeTier.actionLabel": "S'abonner",
|
|
80
80
|
"dialog.usageExceeded.accountRateLimit.title": "Limite Go atteinte",
|
|
81
81
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -125,9 +125,9 @@ export const dict = {
|
|
|
125
125
|
"ui.promptInput.dropFiles": "Déposez des fichiers pour les joindre",
|
|
126
126
|
"ui.promptInput.removeAttachment": "Supprimer la pièce jointe",
|
|
127
127
|
"ui.promptInput.label": "Invite",
|
|
128
|
-
"ui.promptInput.placeholder.shell": "Entrez une commande shell
|
|
128
|
+
"ui.promptInput.placeholder.shell": "Entrez une commande shell…",
|
|
129
129
|
"ui.promptInput.placeholder.normal":
|
|
130
|
-
"Demandez n'importe quoi, {{slash}} pour les commandes, {{at}} pour le contexte
|
|
130
|
+
"Demandez n'importe quoi, {{slash}} pour les commandes, {{at}} pour le contexte…",
|
|
131
131
|
"ui.promptInput.add": "Ajouter des images et des fichiers",
|
|
132
132
|
"ui.promptInput.attachments": "Images et fichiers",
|
|
133
133
|
"ui.promptInput.context": "Contexte",
|
|
@@ -157,8 +157,6 @@ export const dict = {
|
|
|
157
157
|
"ui.tool.websearch.provider": "{{provider}} Recherche Web",
|
|
158
158
|
"ui.tool.shell": "Shell",
|
|
159
159
|
"ui.tool.patch": "Patch",
|
|
160
|
-
"ui.tool.todos": "Tâches",
|
|
161
|
-
"ui.tool.todos.read": "Lire les tâches",
|
|
162
160
|
"ui.tool.questions": "Questions",
|
|
163
161
|
"ui.tool.questions.numbered": "Questions {{number}}",
|
|
164
162
|
"ui.tool.agent": "Agent {{type}}",
|
|
@@ -207,7 +205,7 @@ export const dict = {
|
|
|
207
205
|
"ui.question.review.notAnswered": "(non répondu)",
|
|
208
206
|
"ui.question.multiHint": "Sélectionnez tout ce qui s'applique",
|
|
209
207
|
"ui.question.singleHint": "Sélectionnez une réponse",
|
|
210
|
-
"ui.question.custom.placeholder": "Tapez votre réponse
|
|
208
|
+
"ui.question.custom.placeholder": "Tapez votre réponse…",
|
|
211
209
|
|
|
212
210
|
"ui.fileSearch.placeholder": "Rechercher",
|
|
213
211
|
"ui.fileSearch.previousMatch": "Précédent",
|
package/src/i18n/he.ts
ADDED
|
@@ -0,0 +1,199 @@
|
|
|
1
|
+
export const dict = {
|
|
2
|
+
"ui.sessionReview.title": "שינויים בהפעלה",
|
|
3
|
+
"ui.sessionReview.title.git": "שינויים ב-Git",
|
|
4
|
+
"ui.sessionReview.title.branch": "שינויים בענף",
|
|
5
|
+
"ui.sessionReview.title.lastTurn": "שינויים בתור האחרון",
|
|
6
|
+
"ui.sessionReview.diffStyle.unified": "מאוחד",
|
|
7
|
+
"ui.sessionReview.diffStyle.split": "מפוצל",
|
|
8
|
+
"ui.sessionReview.expandAll": "הרחב הכל",
|
|
9
|
+
"ui.sessionReview.collapseAll": "כווץ הכל",
|
|
10
|
+
"ui.sessionReview.change.added": "נוסף",
|
|
11
|
+
"ui.sessionReview.change.removed": "הוסר",
|
|
12
|
+
"ui.sessionReview.change.modified": "שונה",
|
|
13
|
+
"ui.sessionReview.image.loading": "טוען…",
|
|
14
|
+
"ui.sessionReview.image.placeholder": "תמונה",
|
|
15
|
+
"ui.sessionReview.largeDiff.title": "ה-diff גדול מדי להצגה",
|
|
16
|
+
"ui.sessionReview.largeDiff.meta": "המגבלה היא {{limit}} שורות שהשתנו. כעת יש {{current}} שורות שהשתנו.",
|
|
17
|
+
"ui.sessionReview.largeDiff.renderAnyway": "הצג בכל זאת",
|
|
18
|
+
"ui.sessionReviewV2.expandMode": "הרחבה או כיווץ של ה-diff",
|
|
19
|
+
"ui.sessionReviewV2.filterFiles": "סינון קבצים",
|
|
20
|
+
"ui.sessionReviewV2.toggleSidebar": "הצגה או הסתרה של עץ הקבצים",
|
|
21
|
+
"ui.sessionReviewV2.showAllLines": "הצג את כל השורות",
|
|
22
|
+
"ui.sessionReviewV2.hideNonDiffLines": "הסתרת שורות שאינן חלק מה-diff",
|
|
23
|
+
"ui.sessionReviewV2.unifiedDiff": "diff מאוחד",
|
|
24
|
+
"ui.sessionReviewV2.splitDiff": "diff מפוצל",
|
|
25
|
+
"ui.sessionReviewV2.previousFile": "הקובץ הקודם",
|
|
26
|
+
"ui.sessionReviewV2.nextFile": "הקובץ הבא",
|
|
27
|
+
"ui.sessionReviewV2.diffView": "תצוגת diff",
|
|
28
|
+
"ui.sessionReviewV2.empty.noGit.title": "אין שינויים במעקב",
|
|
29
|
+
"ui.sessionReviewV2.empty.noGit.description": "עקוב, סקור ובטל שינויים בפרויקט הזה",
|
|
30
|
+
"ui.sessionReviewV2.empty.noGit.action": "צור מאגר Git",
|
|
31
|
+
"ui.sessionReviewV2.empty.noGit.actionLoading": "יוצר מאגר Git…",
|
|
32
|
+
"ui.sessionReviewV2.empty.changes.title": "אין עדיין שינויים בקובץ",
|
|
33
|
+
"ui.sessionReviewV2.empty.changes.description": "שינויים בפרויקט יופיעו כאן",
|
|
34
|
+
"ui.sessionReview.openFile": "פתיחת קובץ",
|
|
35
|
+
"ui.sessionReview.selection.line": "שורה {{line}}",
|
|
36
|
+
"ui.sessionReview.selection.lines": "שורות {{start}}-{{end}}",
|
|
37
|
+
"ui.fileMedia.kind.image": "תמונה",
|
|
38
|
+
"ui.fileMedia.kind.audio": "אודיו",
|
|
39
|
+
"ui.fileMedia.state.removed": "הוסר קובץ {{kind}}.",
|
|
40
|
+
"ui.fileMedia.state.loading": "טוען {{kind}}…",
|
|
41
|
+
"ui.fileMedia.state.error": "לא ניתן לטעון {{kind}}.",
|
|
42
|
+
"ui.fileMedia.state.unavailable": "תצוגה מקדימה של {{kind}} אינה זמינה.",
|
|
43
|
+
"ui.fileMedia.binary.title": "קובץ בינארי",
|
|
44
|
+
"ui.fileMedia.binary.description.path": "{{path}} הוא קובץ בינארי.",
|
|
45
|
+
"ui.fileMedia.binary.description.default": "תוכן בינארי",
|
|
46
|
+
"ui.lineComment.label.prefix": "תגובה על ",
|
|
47
|
+
"ui.lineComment.label.suffix": "",
|
|
48
|
+
"ui.lineComment.editorLabel.prefix": "תגובה על ",
|
|
49
|
+
"ui.lineComment.editorLabel.suffix": "",
|
|
50
|
+
"ui.lineComment.placeholder": "הוסף תגובה",
|
|
51
|
+
"ui.lineComment.contextPlaceholder": "הוסף הקשר לשינוי זה",
|
|
52
|
+
"ui.lineComment.submit": "שלח תגובה",
|
|
53
|
+
"ui.lineComment.cancel": "בטל",
|
|
54
|
+
"ui.sessionTurn.steps.show": "הצג צעדים",
|
|
55
|
+
"ui.sessionTurn.steps.hide": "הסתר צעדים",
|
|
56
|
+
"ui.sessionTurn.summary.response": "תגובה",
|
|
57
|
+
"ui.sessionTurn.diff.showMore": "הצג שינויים נוספים ({{count}})",
|
|
58
|
+
"ui.sessionTurn.diffs.changed.one": "{{count}} קובץ השתנה",
|
|
59
|
+
"ui.sessionTurn.diffs.changed.other": "{{count}} קבצים השתנו",
|
|
60
|
+
"ui.sessionTurn.diffs.showAll": "הצג הכל",
|
|
61
|
+
"ui.sessionTurn.diffs.showLess": "הצג פחות",
|
|
62
|
+
"ui.sessionTurn.diffs.more": "+{{count}} קבצים נוספים",
|
|
63
|
+
"ui.sessionTurn.retry.retrying": "מנסה שוב",
|
|
64
|
+
"ui.sessionTurn.retry.inSeconds": "בעוד {{seconds}} שניות",
|
|
65
|
+
"ui.sessionTurn.retry.attempt": "ניסיון #{{attempt}}",
|
|
66
|
+
"ui.sessionTurn.retry.attemptLine": "{{line}} - ניסיון #{{attempt}}",
|
|
67
|
+
"ui.sessionTurn.retry.geminiHot": "העומס על Gemini גבוה מדי כרגע",
|
|
68
|
+
"ui.sessionTurn.error.freeUsageExceeded": "חריגה מהשימוש בחינם",
|
|
69
|
+
"ui.sessionTurn.error.addCredits": "הוסף קרדיטים",
|
|
70
|
+
"dialog.usageExceeded.freeTier.title": "הגעת למגבלה החינמית",
|
|
71
|
+
"dialog.usageExceeded.freeTier.description":
|
|
72
|
+
"הירשם ל-OpenCode Go לקבלת גישה אמינה למודלי הקוד הפתוח הטובים ביותר, החל מ-$5 לחודש.",
|
|
73
|
+
"dialog.usageExceeded.freeTier.actionLabel": "הירשם",
|
|
74
|
+
"dialog.usageExceeded.accountRateLimit.title": "הגעת למגבלת Go",
|
|
75
|
+
"dialog.usageExceeded.accountRateLimit.description":
|
|
76
|
+
"הגעת למגבלת השימוש. כדי להמשיך להשתמש במודל זה כעת, הפעל שימוש מהיתרה הזמינה שלך",
|
|
77
|
+
"dialog.usageExceeded.accountRateLimit.actionLabel": "פתח את ההגדרות",
|
|
78
|
+
"ui.sessionTurn.status.delegating": "מעביר את העבודה לסוכן אחר",
|
|
79
|
+
"ui.sessionTurn.status.planning": "תכנון השלבים הבאים",
|
|
80
|
+
"ui.sessionTurn.status.gatheringContext": "בודק את הפרויקט",
|
|
81
|
+
"ui.sessionTurn.status.gatheredContext": "בדיקת הפרויקט הסתיימה",
|
|
82
|
+
"ui.sessionTurn.status.searchingCodebase": "חיפוש בבסיס הקוד",
|
|
83
|
+
"ui.sessionTurn.status.searchingWeb": "חיפוש באינטרנט",
|
|
84
|
+
"ui.sessionTurn.status.makingEdits": "ביצוע עריכות",
|
|
85
|
+
"ui.sessionTurn.status.runningCommands": "הפעלת פקודות",
|
|
86
|
+
"ui.sessionTurn.status.thinking": "חושב",
|
|
87
|
+
"ui.sessionTurn.status.thinkingWithTopic": "חשיבה - {{topic}}",
|
|
88
|
+
"ui.sessionTurn.status.gatheringThoughts": "מגבש מחשבות",
|
|
89
|
+
"ui.sessionTurn.status.consideringNextSteps": "בוחן את הצעדים הבאים",
|
|
90
|
+
"ui.messagePart.diagnostic.error": "שגיאה",
|
|
91
|
+
"ui.messagePart.title.edit": "ערוך",
|
|
92
|
+
"ui.messagePart.title.write": "כתוב",
|
|
93
|
+
"ui.messagePart.option.typeOwnAnswer": "הקלד את התשובה שלך",
|
|
94
|
+
"ui.messagePart.review.title": "בדיקת התשובות",
|
|
95
|
+
"ui.messagePart.questions.dismissed": "השאלות נדחו",
|
|
96
|
+
"ui.messagePart.compaction": "ההפעלה נדחסה",
|
|
97
|
+
"ui.messagePart.context.read.one": "{{count}} קריאה",
|
|
98
|
+
"ui.messagePart.context.read.other": "{{count}} קריאות",
|
|
99
|
+
"ui.messagePart.context.search.one": "{{count}} חיפוש",
|
|
100
|
+
"ui.messagePart.context.search.other": "{{count}} חיפושים",
|
|
101
|
+
"ui.messagePart.context.list.one": "{{count}} הצגה",
|
|
102
|
+
"ui.messagePart.context.list.other": "{{count}} הצגות",
|
|
103
|
+
"ui.list.loading": "טוען",
|
|
104
|
+
"ui.list.empty": "אין תוצאות",
|
|
105
|
+
"ui.list.clearFilter": "נקה מסנן",
|
|
106
|
+
"ui.list.emptyWithFilter.prefix": "אין תוצאות עבור",
|
|
107
|
+
"ui.list.emptyWithFilter.suffix": "",
|
|
108
|
+
"ui.fileSearch.placeholder": "מצא",
|
|
109
|
+
"ui.fileSearch.previousMatch": "התוצאה הקודמת",
|
|
110
|
+
"ui.fileSearch.nextMatch": "התוצאה הבאה",
|
|
111
|
+
"ui.fileSearch.close": "סגור חיפוש",
|
|
112
|
+
"ui.messageNav.newMessage": "הודעה חדשה",
|
|
113
|
+
"ui.promptInput.noMatchingItems": "אין פריטים תואמים",
|
|
114
|
+
"ui.promptInput.commands": "פקודות",
|
|
115
|
+
"ui.promptInput.dropFiles": "שחרר קבצים לצירוף",
|
|
116
|
+
"ui.promptInput.removeAttachment": "הסר את הקובץ המצורף",
|
|
117
|
+
"ui.promptInput.label": "פרומפט",
|
|
118
|
+
"ui.promptInput.placeholder.shell": "הזן פקודת מעטפת…",
|
|
119
|
+
"ui.promptInput.placeholder.normal": "שאל כל דבר, {{slash}} עבור פקודות, {{at}} עבור הקשר…",
|
|
120
|
+
"ui.promptInput.add": "הוסף תמונות וקבצים",
|
|
121
|
+
"ui.promptInput.attachments": "תמונות וקבצים",
|
|
122
|
+
"ui.promptInput.context": "הקשר",
|
|
123
|
+
"ui.promptInput.shell": "פקודת מעטפת",
|
|
124
|
+
"ui.promptInput.chooseAgent": "בחר סוכן",
|
|
125
|
+
"ui.promptInput.chooseModel": "בחר מודל",
|
|
126
|
+
"ui.promptInput.chooseVariant": "בחר גרסה של מודל",
|
|
127
|
+
"ui.promptInput.send": "שלח",
|
|
128
|
+
"ui.promptInput.stop": "עצור",
|
|
129
|
+
"ui.tabs.close": "סגור כרטיסייה",
|
|
130
|
+
"ui.textField.copyToClipboard": "העתק ללוח",
|
|
131
|
+
"ui.textField.copyLink": "העתק קישור",
|
|
132
|
+
"ui.textField.copied": "הועתק",
|
|
133
|
+
"ui.imagePreview.alt": "תצוגה מקדימה של תמונה",
|
|
134
|
+
"ui.scrollView.ariaLabel": "תוכן שניתן לגלול",
|
|
135
|
+
"ui.tool.read": "קרא",
|
|
136
|
+
"ui.tool.loaded": "טעון",
|
|
137
|
+
"ui.tool.list": "רשימה",
|
|
138
|
+
"ui.tool.glob": "Glob",
|
|
139
|
+
"ui.tool.grep": "Grep",
|
|
140
|
+
"ui.tool.task": "משימה",
|
|
141
|
+
"ui.tool.webfetch": "Webfetch",
|
|
142
|
+
"ui.tool.websearch": "Web Search",
|
|
143
|
+
"ui.tool.websearch.provider": "{{provider}} Web Search",
|
|
144
|
+
"ui.tool.shell": "Shell",
|
|
145
|
+
"ui.tool.patch": "Patch",
|
|
146
|
+
"ui.tool.questions": "שאלות",
|
|
147
|
+
"ui.tool.questions.numbered": "שאלות {{number}}",
|
|
148
|
+
"ui.tool.agent": "סוכן {{type}}",
|
|
149
|
+
"ui.tool.agent.default": "סוכן",
|
|
150
|
+
"ui.tool.skill": "מיומנות",
|
|
151
|
+
"ui.basicTool.called": "בוצעה קריאה אל `{{tool}}`",
|
|
152
|
+
"ui.toolErrorCard.failed": "נכשל",
|
|
153
|
+
"ui.toolErrorCard.copyError": "שגיאת העתקה",
|
|
154
|
+
"ui.common.file.one": "קובץ",
|
|
155
|
+
"ui.common.file.other": "קבצים",
|
|
156
|
+
"ui.common.question.one": "שאלה",
|
|
157
|
+
"ui.common.question.other": "שאלות",
|
|
158
|
+
"ui.common.add": "הוסף",
|
|
159
|
+
"ui.common.clear": "נקה",
|
|
160
|
+
"ui.common.file": "קובץ",
|
|
161
|
+
"ui.common.back": "חזרה",
|
|
162
|
+
"ui.common.cancel": "בטל",
|
|
163
|
+
"ui.common.confirm": "אשר",
|
|
164
|
+
"ui.common.dismiss": "סגור",
|
|
165
|
+
"ui.common.close": "סגור",
|
|
166
|
+
"ui.common.next": "הבא",
|
|
167
|
+
"ui.common.submit": "שלח",
|
|
168
|
+
"ui.common.showMore": "הצג עוד",
|
|
169
|
+
"ui.permission.deny": "דחה",
|
|
170
|
+
"ui.permission.allowAlways": "אפשר תמיד",
|
|
171
|
+
"ui.permission.allowOnce": "אפשר פעם אחת",
|
|
172
|
+
"ui.message.expand": "הרחב את ההודעה",
|
|
173
|
+
"ui.message.collapse": "כווץ הודעה",
|
|
174
|
+
"ui.message.copy": "העתק",
|
|
175
|
+
"ui.message.copyMessage": "העתק הודעה",
|
|
176
|
+
"ui.message.forkMessage": "יצירת הפעלה חדשה מכאן",
|
|
177
|
+
"ui.message.revertMessage": "ביטול ההודעה",
|
|
178
|
+
"ui.message.copyResponse": "העתק את התגובה",
|
|
179
|
+
"ui.message.copied": "הועתק",
|
|
180
|
+
"ui.message.duration.seconds": "{{count}}s",
|
|
181
|
+
"ui.message.duration.minutesSeconds": "{{minutes}}m {{seconds}}s",
|
|
182
|
+
"ui.message.interrupted": "נקטע",
|
|
183
|
+
"ui.message.queued": "בתור",
|
|
184
|
+
"ui.message.attachment.alt": "קובץ מצורף",
|
|
185
|
+
"ui.patch.action.deleted": "נמחק",
|
|
186
|
+
"ui.patch.action.created": "נוצר",
|
|
187
|
+
"ui.patch.action.moved": "הועבר",
|
|
188
|
+
"ui.patch.action.patched": "עודכן",
|
|
189
|
+
"ui.question.subtitle.answered": "שאלות שנענו: {{count}}",
|
|
190
|
+
"ui.question.answer.none": "(אין תשובה)",
|
|
191
|
+
"ui.question.review.notAnswered": "(ללא תשובה)",
|
|
192
|
+
"ui.question.multiHint": "בחר את כל התשובות המתאימות",
|
|
193
|
+
"ui.question.singleHint": "בחר תשובה אחת",
|
|
194
|
+
"ui.question.custom.placeholder": "הקלד את תשובתך…",
|
|
195
|
+
"ui.sessionTurn.diffs.changed.two": "{{count}} קבצים השתנו",
|
|
196
|
+
"ui.messagePart.context.read.two": "{{count}} קריאות",
|
|
197
|
+
"ui.messagePart.context.search.two": "{{count}} חיפושים",
|
|
198
|
+
"ui.messagePart.context.list.two": "{{count}} הצגות",
|
|
199
|
+
}
|
package/src/i18n/hi.ts
CHANGED
|
@@ -10,7 +10,7 @@ export const dict: Record<string, string> = {
|
|
|
10
10
|
"ui.sessionReview.change.added": "जोड़ा",
|
|
11
11
|
"ui.sessionReview.change.removed": "हटाया गया",
|
|
12
12
|
"ui.sessionReview.change.modified": "संशोधित",
|
|
13
|
-
"ui.sessionReview.image.loading": "लोड हो रहा
|
|
13
|
+
"ui.sessionReview.image.loading": "लोड हो रहा है…",
|
|
14
14
|
"ui.sessionReview.image.placeholder": "छवि",
|
|
15
15
|
"ui.sessionReview.largeDiff.title": "डिफ़ प्रस्तुत करने के लिए बहुत बड़ा है",
|
|
16
16
|
"ui.sessionReview.largeDiff.meta": "सीमा: {{limit}} परिवर्तित लाइनें। वर्तमान: {{current}} परिवर्तित लाइनें।",
|
|
@@ -29,7 +29,7 @@ export const dict: Record<string, string> = {
|
|
|
29
29
|
"ui.sessionReviewV2.empty.noGit.description":
|
|
30
30
|
"इस प्रोजेक्ट में परिवर्तनों को ट्रैक करें, समीक्षा करें और पूर्ववत करें",
|
|
31
31
|
"ui.sessionReviewV2.empty.noGit.action": "Git रिपॉजिटरी बनाएं",
|
|
32
|
-
"ui.sessionReviewV2.empty.noGit.actionLoading": "Git रिपॉजिटरी बनाई जा रही
|
|
32
|
+
"ui.sessionReviewV2.empty.noGit.actionLoading": "Git रिपॉजिटरी बनाई जा रही है…",
|
|
33
33
|
"ui.sessionReviewV2.empty.changes.title": "अभी तक कोई फ़ाइल परिवर्तन नहीं हुआ",
|
|
34
34
|
"ui.sessionReviewV2.empty.changes.description": "प्रोजेक्ट परिवर्तन यहां दिखाई देंगे",
|
|
35
35
|
"ui.sessionReview.openFile": "फ़ाइल खोलें",
|
|
@@ -38,7 +38,7 @@ export const dict: Record<string, string> = {
|
|
|
38
38
|
"ui.fileMedia.kind.image": "छवि",
|
|
39
39
|
"ui.fileMedia.kind.audio": "ऑडियो",
|
|
40
40
|
"ui.fileMedia.state.removed": "{{kind}} फ़ाइल हटा दी गई।",
|
|
41
|
-
"ui.fileMedia.state.loading": "{{kind}} लोड हो रहा
|
|
41
|
+
"ui.fileMedia.state.loading": "{{kind}} लोड हो रहा है…",
|
|
42
42
|
"ui.fileMedia.state.error": "{{kind}} लोड नहीं किया जा सका।",
|
|
43
43
|
"ui.fileMedia.state.unavailable": "{{kind}} का पूर्वावलोकन उपलब्ध नहीं है।",
|
|
44
44
|
"ui.fileMedia.binary.title": "बाइनरी फ़ाइल",
|
|
@@ -70,7 +70,7 @@ export const dict: Record<string, string> = {
|
|
|
70
70
|
"ui.sessionTurn.error.addCredits": "क्रेडिट जोड़ें",
|
|
71
71
|
"dialog.usageExceeded.freeTier.title": "मुफ़्त सीमा पूरी हो गई",
|
|
72
72
|
"dialog.usageExceeded.freeTier.description":
|
|
73
|
-
"$
|
|
73
|
+
"$5/month से शुरू होने वाली सदस्यता के साथ सर्वोत्तम ओपन-सोर्स मॉडलों तक विश्वसनीय पहुँच के लिए 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": "संदर्भ",
|
|
@@ -145,8 +145,6 @@ export const dict: Record<string, string> = {
|
|
|
145
145
|
"ui.tool.websearch.provider": "{{provider}} वेब खोज",
|
|
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/hr.ts
CHANGED
|
@@ -10,7 +10,7 @@ export const dict: Record<string, string> = {
|
|
|
10
10
|
"ui.sessionReview.change.added": "Dodano",
|
|
11
11
|
"ui.sessionReview.change.removed": "Uklonjeno",
|
|
12
12
|
"ui.sessionReview.change.modified": "Izmijenjeno",
|
|
13
|
-
"ui.sessionReview.image.loading": "Učitavanje
|
|
13
|
+
"ui.sessionReview.image.loading": "Učitavanje…",
|
|
14
14
|
"ui.sessionReview.image.placeholder": "Slika",
|
|
15
15
|
"ui.sessionReview.largeDiff.title": "Razlika je prevelika za iscrtavanje",
|
|
16
16
|
"ui.sessionReview.largeDiff.meta":
|
|
@@ -29,7 +29,7 @@ export const dict: Record<string, string> = {
|
|
|
29
29
|
"ui.sessionReviewV2.empty.noGit.title": "Nema praćenih promjena",
|
|
30
30
|
"ui.sessionReviewV2.empty.noGit.description": "Pratite, pregledajte i poništite promjene u ovom projektu",
|
|
31
31
|
"ui.sessionReviewV2.empty.noGit.action": "Napravi Git spremište",
|
|
32
|
-
"ui.sessionReviewV2.empty.noGit.actionLoading": "Stvaranje Git repozitorija
|
|
32
|
+
"ui.sessionReviewV2.empty.noGit.actionLoading": "Stvaranje Git repozitorija…",
|
|
33
33
|
"ui.sessionReviewV2.empty.changes.title": "Još nema promjena datoteke",
|
|
34
34
|
"ui.sessionReviewV2.empty.changes.description": "Ovdje će se pojaviti promjene projekta",
|
|
35
35
|
"ui.sessionReview.openFile": "Otvori datoteku",
|
|
@@ -38,7 +38,7 @@ export const dict: Record<string, string> = {
|
|
|
38
38
|
"ui.fileMedia.kind.image": "slika",
|
|
39
39
|
"ui.fileMedia.kind.audio": "audio",
|
|
40
40
|
"ui.fileMedia.state.removed": "Uklonjena {{kind}} datoteka.",
|
|
41
|
-
"ui.fileMedia.state.loading": "Učitavanje {{kind}}
|
|
41
|
+
"ui.fileMedia.state.loading": "Učitavanje {{kind}}…",
|
|
42
42
|
"ui.fileMedia.state.error": "Nije moguće učitati {{kind}}.",
|
|
43
43
|
"ui.fileMedia.state.unavailable": "Pregled {{kind}} nije dostupan.",
|
|
44
44
|
"ui.fileMedia.binary.title": "Binarna datoteka",
|
|
@@ -71,7 +71,7 @@ export const dict: Record<string, string> = {
|
|
|
71
71
|
"ui.sessionTurn.error.addCredits": "Dodaj kredite",
|
|
72
72
|
"dialog.usageExceeded.freeTier.title": "Dosegnuto je besplatno ograničenje",
|
|
73
73
|
"dialog.usageExceeded.freeTier.description":
|
|
74
|
-
"Pretplatite se na OpenCode Go za
|
|
74
|
+
"Pretplatite se na OpenCode Go za pouzdan pristup najboljim modelima otvorenog koda, počevši od 5 USD mjesečno.",
|
|
75
75
|
"dialog.usageExceeded.freeTier.actionLabel": "Pretplatite se",
|
|
76
76
|
"dialog.usageExceeded.accountRateLimit.title": "Dosegnuto je ograničenje usluge Go",
|
|
77
77
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -120,8 +120,8 @@ export const dict: Record<string, string> = {
|
|
|
120
120
|
"ui.promptInput.dropFiles": "Ispustite datoteke za prilaganje",
|
|
121
121
|
"ui.promptInput.removeAttachment": "Ukloni privitak",
|
|
122
122
|
"ui.promptInput.label": "Upit",
|
|
123
|
-
"ui.promptInput.placeholder.shell": "Unesite naredbu ljuske
|
|
124
|
-
"ui.promptInput.placeholder.normal": "Pitaj bilo što, {{slash}} za naredbe, {{at}} za kontekst
|
|
123
|
+
"ui.promptInput.placeholder.shell": "Unesite naredbu ljuske…",
|
|
124
|
+
"ui.promptInput.placeholder.normal": "Pitaj bilo što, {{slash}} za naredbe, {{at}} za kontekst…",
|
|
125
125
|
"ui.promptInput.add": "Dodajte slike i datoteke",
|
|
126
126
|
"ui.promptInput.attachments": "Slike i datoteke",
|
|
127
127
|
"ui.promptInput.context": "Kontekst",
|
|
@@ -148,8 +148,6 @@ export const dict: Record<string, string> = {
|
|
|
148
148
|
"ui.tool.websearch.provider": "{{provider}} Web pretraživanje",
|
|
149
149
|
"ui.tool.shell": "Ljuska",
|
|
150
150
|
"ui.tool.patch": "Zakrpa",
|
|
151
|
-
"ui.tool.todos": "Obaveze",
|
|
152
|
-
"ui.tool.todos.read": "Pročitajte obveze",
|
|
153
151
|
"ui.tool.questions": "Pitanja",
|
|
154
152
|
"ui.tool.questions.numbered": "Pitanja {{number}}",
|
|
155
153
|
"ui.tool.agent": "{{type}} Agent",
|
|
@@ -198,5 +196,5 @@ export const dict: Record<string, string> = {
|
|
|
198
196
|
"ui.question.review.notAnswered": "(bez odgovora)",
|
|
199
197
|
"ui.question.multiHint": "Odaberite sve primjenjive odgovore",
|
|
200
198
|
"ui.question.singleHint": "Odaberite jedan odgovor",
|
|
201
|
-
"ui.question.custom.placeholder": "Upišite svoj odgovor
|
|
199
|
+
"ui.question.custom.placeholder": "Upišite svoj odgovor…",
|
|
202
200
|
}
|
package/src/i18n/hu.ts
CHANGED
|
@@ -10,7 +10,7 @@ export const dict: Record<string, string> = {
|
|
|
10
10
|
"ui.sessionReview.change.added": "Hozzáadva",
|
|
11
11
|
"ui.sessionReview.change.removed": "Eltávolítva",
|
|
12
12
|
"ui.sessionReview.change.modified": "Módosított",
|
|
13
|
-
"ui.sessionReview.image.loading": "Betöltés
|
|
13
|
+
"ui.sessionReview.image.loading": "Betöltés…",
|
|
14
14
|
"ui.sessionReview.image.placeholder": "Kép",
|
|
15
15
|
"ui.sessionReview.largeDiff.title": "A különbség túl nagy a megjelenítéshez",
|
|
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
|
"Kövesse nyomon, tekintse át és vonja vissza a változtatásokat ebben a projektben",
|
|
32
32
|
"ui.sessionReviewV2.empty.noGit.action": "Git tároló létrehozása",
|
|
33
|
-
"ui.sessionReviewV2.empty.noGit.actionLoading": "Git adattár létrehozása
|
|
33
|
+
"ui.sessionReviewV2.empty.noGit.actionLoading": "Git adattár létrehozása…",
|
|
34
34
|
"ui.sessionReviewV2.empty.changes.title": "Még nincsenek fájlmódosítások",
|
|
35
35
|
"ui.sessionReviewV2.empty.changes.description": "A projekt módosításai itt jelennek meg",
|
|
36
36
|
"ui.sessionReview.openFile": "Nyissa meg a fájlt",
|
|
@@ -39,7 +39,7 @@ export const dict: Record<string, string> = {
|
|
|
39
39
|
"ui.fileMedia.kind.image": "kép",
|
|
40
40
|
"ui.fileMedia.kind.audio": "hang-",
|
|
41
41
|
"ui.fileMedia.state.removed": "{{kind}} fájl eltávolítva.",
|
|
42
|
-
"ui.fileMedia.state.loading": "{{kind}} betöltése
|
|
42
|
+
"ui.fileMedia.state.loading": "{{kind}} betöltése…",
|
|
43
43
|
"ui.fileMedia.state.error": "Nem sikerült betölteni a {{kind}}-t.",
|
|
44
44
|
"ui.fileMedia.state.unavailable": "A {{kind}} előnézet nem érhető el.",
|
|
45
45
|
"ui.fileMedia.binary.title": "Bináris fájl",
|
|
@@ -71,7 +71,7 @@ export const dict: Record<string, string> = {
|
|
|
71
71
|
"ui.sessionTurn.error.addCredits": "Adjon hozzá krediteket",
|
|
72
72
|
"dialog.usageExceeded.freeTier.title": "Elérte a szabad korlátot",
|
|
73
73
|
"dialog.usageExceeded.freeTier.description":
|
|
74
|
-
"Iratkozzon fel
|
|
74
|
+
"Iratkozzon fel a OpenCode Go szolgáltatásra, hogy megbízható hozzáférést kaphasson a legjobb nyílt forráskódú modellekhez, havi 5 dolláros áron.",
|
|
75
75
|
"dialog.usageExceeded.freeTier.actionLabel": "Iratkozz fel",
|
|
76
76
|
"dialog.usageExceeded.accountRateLimit.title": "Elérte a Go korlátját",
|
|
77
77
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -117,8 +117,8 @@ export const dict: Record<string, string> = {
|
|
|
117
117
|
"ui.promptInput.dropFiles": "Húzza le a csatolandó fájlokat",
|
|
118
118
|
"ui.promptInput.removeAttachment": "Távolítsa el a mellékletet",
|
|
119
119
|
"ui.promptInput.label": "Utasítás",
|
|
120
|
-
"ui.promptInput.placeholder.shell": "Írjon be egy shellparancsot
|
|
121
|
-
"ui.promptInput.placeholder.normal": "Kérdezz bármit, {{slash}} a parancsokhoz, {{at}} a kontextushoz
|
|
120
|
+
"ui.promptInput.placeholder.shell": "Írjon be egy shellparancsot…",
|
|
121
|
+
"ui.promptInput.placeholder.normal": "Kérdezz bármit, {{slash}} a parancsokhoz, {{at}} a kontextushoz…",
|
|
122
122
|
"ui.promptInput.add": "Adjon hozzá képeket és fájlokat",
|
|
123
123
|
"ui.promptInput.attachments": "Képek és fájlok",
|
|
124
124
|
"ui.promptInput.context": "Kontextus",
|
|
@@ -145,8 +145,6 @@ export const dict: Record<string, string> = {
|
|
|
145
145
|
"ui.tool.websearch.provider": "{{provider}} internetes keresés",
|
|
146
146
|
"ui.tool.shell": "Shell",
|
|
147
147
|
"ui.tool.patch": "Patch",
|
|
148
|
-
"ui.tool.todos": "Teendők",
|
|
149
|
-
"ui.tool.todos.read": "Olvassa el a teendőket",
|
|
150
148
|
"ui.tool.questions": "Kérdések",
|
|
151
149
|
"ui.tool.questions.numbered": "Kérdések {{number}}",
|
|
152
150
|
"ui.tool.agent": "{{type}} ügynök",
|
|
@@ -195,5 +193,5 @@ export const dict: Record<string, string> = {
|
|
|
195
193
|
"ui.question.review.notAnswered": "(nem válaszolt)",
|
|
196
194
|
"ui.question.multiHint": "Válassza ki az összes megfelelő választ",
|
|
197
195
|
"ui.question.singleHint": "Válasszon ki egy választ",
|
|
198
|
-
"ui.question.custom.placeholder": "Írja be a választ
|
|
196
|
+
"ui.question.custom.placeholder": "Írja be a választ…",
|
|
199
197
|
}
|