@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/hy.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/id.ts
CHANGED
|
@@ -10,7 +10,7 @@ export const dict: Record<string, string> = {
|
|
|
10
10
|
"ui.sessionReview.change.added": "Ditambahkan",
|
|
11
11
|
"ui.sessionReview.change.removed": "Dihapus",
|
|
12
12
|
"ui.sessionReview.change.modified": "Dimodifikasi",
|
|
13
|
-
"ui.sessionReview.image.loading": "Memuat
|
|
13
|
+
"ui.sessionReview.image.loading": "Memuat…",
|
|
14
14
|
"ui.sessionReview.image.placeholder": "Gambar",
|
|
15
15
|
"ui.sessionReview.largeDiff.title": "Diff terlalu besar untuk ditampilkan",
|
|
16
16
|
"ui.sessionReview.largeDiff.meta": "Batas: {{limit}} baris berubah. Saat ini: {{current}} baris berubah.",
|
|
@@ -28,7 +28,7 @@ export const dict: Record<string, string> = {
|
|
|
28
28
|
"ui.sessionReviewV2.empty.noGit.title": "Tidak ada perubahan yang dilacak",
|
|
29
29
|
"ui.sessionReviewV2.empty.noGit.description": "Lacak, tinjau, dan urungkan perubahan di proyek ini",
|
|
30
30
|
"ui.sessionReviewV2.empty.noGit.action": "Buat repositori Git",
|
|
31
|
-
"ui.sessionReviewV2.empty.noGit.actionLoading": "Membuat repositori Git
|
|
31
|
+
"ui.sessionReviewV2.empty.noGit.actionLoading": "Membuat repositori Git…",
|
|
32
32
|
"ui.sessionReviewV2.empty.changes.title": "Belum ada perubahan berkas",
|
|
33
33
|
"ui.sessionReviewV2.empty.changes.description": "Perubahan proyek akan muncul di sini",
|
|
34
34
|
"ui.sessionReview.openFile": "Buka berkas",
|
|
@@ -38,7 +38,7 @@ export const dict: Record<string, string> = {
|
|
|
38
38
|
"ui.fileMedia.kind.image": "gambar",
|
|
39
39
|
"ui.fileMedia.kind.audio": "audio",
|
|
40
40
|
"ui.fileMedia.state.removed": "Berkas {{kind}} dihapus.",
|
|
41
|
-
"ui.fileMedia.state.loading": "Memuat {{kind}}
|
|
41
|
+
"ui.fileMedia.state.loading": "Memuat {{kind}}…",
|
|
42
42
|
"ui.fileMedia.state.error": "Tidak dapat memuat {{kind}}.",
|
|
43
43
|
"ui.fileMedia.state.unavailable": "Pratinjau {{kind}} tidak tersedia.",
|
|
44
44
|
"ui.fileMedia.binary.title": "Berkas biner",
|
|
@@ -74,7 +74,7 @@ export const dict: Record<string, string> = {
|
|
|
74
74
|
|
|
75
75
|
"dialog.usageExceeded.freeTier.title": "Batas gratis tercapai",
|
|
76
76
|
"dialog.usageExceeded.freeTier.description":
|
|
77
|
-
"Berlangganan OpenCode Go
|
|
77
|
+
"Berlangganan OpenCode Go untuk akses andal ke model sumber terbuka terbaik, mulai dari $5/bulan.",
|
|
78
78
|
"dialog.usageExceeded.freeTier.actionLabel": "Berlangganan",
|
|
79
79
|
"dialog.usageExceeded.accountRateLimit.title": "Batas Go tercapai",
|
|
80
80
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -126,8 +126,8 @@ export const dict: Record<string, string> = {
|
|
|
126
126
|
"ui.promptInput.dropFiles": "Letakkan berkas untuk dilampirkan",
|
|
127
127
|
"ui.promptInput.removeAttachment": "Hapus lampiran",
|
|
128
128
|
"ui.promptInput.label": "Prompt",
|
|
129
|
-
"ui.promptInput.placeholder.shell": "Masukkan perintah shell
|
|
130
|
-
"ui.promptInput.placeholder.normal": "Tanyakan apa saja, {{slash}} untuk perintah, {{at}} untuk konteks
|
|
129
|
+
"ui.promptInput.placeholder.shell": "Masukkan perintah shell…",
|
|
130
|
+
"ui.promptInput.placeholder.normal": "Tanyakan apa saja, {{slash}} untuk perintah, {{at}} untuk konteks…",
|
|
131
131
|
"ui.promptInput.add": "Tambah gambar dan berkas",
|
|
132
132
|
"ui.promptInput.attachments": "Gambar dan berkas",
|
|
133
133
|
"ui.promptInput.context": "Konteks",
|
|
@@ -158,8 +158,6 @@ export const dict: Record<string, string> = {
|
|
|
158
158
|
"ui.tool.websearch.provider": "{{provider}} Pencarian Web",
|
|
159
159
|
"ui.tool.shell": "Shell",
|
|
160
160
|
"ui.tool.patch": "Patch",
|
|
161
|
-
"ui.tool.todos": "Tugas",
|
|
162
|
-
"ui.tool.todos.read": "Baca tugas",
|
|
163
161
|
"ui.tool.questions": "Pertanyaan",
|
|
164
162
|
"ui.tool.questions.numbered": "Pertanyaan {{number}}",
|
|
165
163
|
"ui.tool.agent": "Agen {{type}}",
|
|
@@ -215,5 +213,5 @@ export const dict: Record<string, string> = {
|
|
|
215
213
|
"ui.question.review.notAnswered": "(belum dijawab)",
|
|
216
214
|
"ui.question.multiHint": "Pilih semua jawaban yang sesuai",
|
|
217
215
|
"ui.question.singleHint": "Pilih satu jawaban",
|
|
218
|
-
"ui.question.custom.placeholder": "Ketik jawaban Anda
|
|
216
|
+
"ui.question.custom.placeholder": "Ketik jawaban Anda…",
|
|
219
217
|
}
|
package/src/i18n/is.ts
CHANGED
|
@@ -10,7 +10,7 @@ export const dict: Record<string, string> = {
|
|
|
10
10
|
"ui.sessionReview.change.added": "Bætt við",
|
|
11
11
|
"ui.sessionReview.change.removed": "Fjarlægt",
|
|
12
12
|
"ui.sessionReview.change.modified": "Breytt",
|
|
13
|
-
"ui.sessionReview.image.loading": "Hleður
|
|
13
|
+
"ui.sessionReview.image.loading": "Hleður…",
|
|
14
14
|
"ui.sessionReview.image.placeholder": "Mynd",
|
|
15
15
|
"ui.sessionReview.largeDiff.title": "Mismunurinn er of stór til að birta",
|
|
16
16
|
"ui.sessionReview.largeDiff.meta": "Hámark: {{limit}} breyttar línur. Nú: {{current}} breyttar línur.",
|
|
@@ -28,7 +28,7 @@ export const dict: Record<string, string> = {
|
|
|
28
28
|
"ui.sessionReviewV2.empty.noGit.title": "Engar raktar breytingar",
|
|
29
29
|
"ui.sessionReviewV2.empty.noGit.description": "Fylgstu með, skoðaðu og afturkallaðu breytingar á þessu verkefni",
|
|
30
30
|
"ui.sessionReviewV2.empty.noGit.action": "Stofna Git-geymslu",
|
|
31
|
-
"ui.sessionReviewV2.empty.noGit.actionLoading": "Stofna Git-geymslu
|
|
31
|
+
"ui.sessionReviewV2.empty.noGit.actionLoading": "Stofna Git-geymslu…",
|
|
32
32
|
"ui.sessionReviewV2.empty.changes.title": "Engar skráarbreytingar ennþá",
|
|
33
33
|
"ui.sessionReviewV2.empty.changes.description": "Verkefnabreytingar munu birtast hér",
|
|
34
34
|
"ui.sessionReview.openFile": "Opna skrá",
|
|
@@ -37,7 +37,7 @@ export const dict: Record<string, string> = {
|
|
|
37
37
|
"ui.fileMedia.kind.image": "mynd",
|
|
38
38
|
"ui.fileMedia.kind.audio": "hljóð",
|
|
39
39
|
"ui.fileMedia.state.removed": "Fjarlægði {{kind}} skrá.",
|
|
40
|
-
"ui.fileMedia.state.loading": "Hleður {{kind}}
|
|
40
|
+
"ui.fileMedia.state.loading": "Hleður {{kind}}…",
|
|
41
41
|
"ui.fileMedia.state.error": "Ekki hægt að hlaða {{kind}}.",
|
|
42
42
|
"ui.fileMedia.state.unavailable": "{{kind}} forskoðun ekki tiltæk.",
|
|
43
43
|
"ui.fileMedia.binary.title": "Tvíundarskrá",
|
|
@@ -69,7 +69,7 @@ export const dict: Record<string, string> = {
|
|
|
69
69
|
"ui.sessionTurn.error.addCredits": "Bæta við inneign",
|
|
70
70
|
"dialog.usageExceeded.freeTier.title": "Ókeypis hámarki náð",
|
|
71
71
|
"dialog.usageExceeded.freeTier.description":
|
|
72
|
-
"Gerast áskrifandi að OpenCode Go fyrir
|
|
72
|
+
"Gerast áskrifandi að OpenCode Go fyrir áreiðanlegan aðgang að bestu opnum gerðum, frá $5/mánuði.",
|
|
73
73
|
"dialog.usageExceeded.freeTier.actionLabel": "Gerast áskrifandi",
|
|
74
74
|
"dialog.usageExceeded.accountRateLimit.title": "Go takmörkum náð",
|
|
75
75
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -115,8 +115,8 @@ export const dict: Record<string, string> = {
|
|
|
115
115
|
"ui.promptInput.dropFiles": "Slepptu skrám til að hengja við",
|
|
116
116
|
"ui.promptInput.removeAttachment": "Fjarlægðu viðhengi",
|
|
117
117
|
"ui.promptInput.label": "Kvaðning",
|
|
118
|
-
"ui.promptInput.placeholder.shell": "Sláðu inn skeljarskipun
|
|
119
|
-
"ui.promptInput.placeholder.normal": "Spyrðu hvað sem er, {{slash}} um skipanir, {{at}} um samhengi
|
|
118
|
+
"ui.promptInput.placeholder.shell": "Sláðu inn skeljarskipun…",
|
|
119
|
+
"ui.promptInput.placeholder.normal": "Spyrðu hvað sem er, {{slash}} um skipanir, {{at}} um samhengi…",
|
|
120
120
|
"ui.promptInput.add": "Bættu við myndum og skrám",
|
|
121
121
|
"ui.promptInput.attachments": "Myndir og skrár",
|
|
122
122
|
"ui.promptInput.context": "Samhengi",
|
|
@@ -143,8 +143,6 @@ export const dict: Record<string, string> = {
|
|
|
143
143
|
"ui.tool.websearch.provider": "{{provider}} vefleit",
|
|
144
144
|
"ui.tool.shell": "Skel",
|
|
145
145
|
"ui.tool.patch": "Plástur",
|
|
146
|
-
"ui.tool.todos": "Verkefni",
|
|
147
|
-
"ui.tool.todos.read": "Lesa verkefni",
|
|
148
146
|
"ui.tool.questions": "Spurningar",
|
|
149
147
|
"ui.tool.questions.numbered": "Spurningar {{number}}",
|
|
150
148
|
"ui.tool.agent": "{{type}} fulltrúi",
|
|
@@ -193,5 +191,5 @@ export const dict: Record<string, string> = {
|
|
|
193
191
|
"ui.question.review.notAnswered": "(ekki svarað)",
|
|
194
192
|
"ui.question.multiHint": "Veldu öll svör sem eiga við",
|
|
195
193
|
"ui.question.singleHint": "Veldu eitt svar",
|
|
196
|
-
"ui.question.custom.placeholder": "Sláðu inn svarið þitt
|
|
194
|
+
"ui.question.custom.placeholder": "Sláðu inn svarið þitt…",
|
|
197
195
|
}
|
package/src/i18n/it.ts
CHANGED
|
@@ -10,7 +10,7 @@ export const dict: Record<string, string> = {
|
|
|
10
10
|
"ui.sessionReview.change.added": "Aggiunto",
|
|
11
11
|
"ui.sessionReview.change.removed": "Rimosso",
|
|
12
12
|
"ui.sessionReview.change.modified": "Modificato",
|
|
13
|
-
"ui.sessionReview.image.loading": "Caricamento
|
|
13
|
+
"ui.sessionReview.image.loading": "Caricamento…",
|
|
14
14
|
"ui.sessionReview.image.placeholder": "Immagine",
|
|
15
15
|
"ui.sessionReview.largeDiff.title": "Diff troppo grande per essere visualizzato",
|
|
16
16
|
"ui.sessionReview.largeDiff.meta":
|
|
@@ -29,7 +29,7 @@ export const dict: Record<string, string> = {
|
|
|
29
29
|
"ui.sessionReviewV2.empty.noGit.title": "Nessuna modifica tracciata",
|
|
30
30
|
"ui.sessionReviewV2.empty.noGit.description": "Tieni traccia, rivedi e annulla le modifiche in questo progetto",
|
|
31
31
|
"ui.sessionReviewV2.empty.noGit.action": "Crea un repository Git",
|
|
32
|
-
"ui.sessionReviewV2.empty.noGit.actionLoading": "Creazione del repository Git in corso
|
|
32
|
+
"ui.sessionReviewV2.empty.noGit.actionLoading": "Creazione del repository Git in corso…",
|
|
33
33
|
"ui.sessionReviewV2.empty.changes.title": "Ancora nessuna modifica ai file",
|
|
34
34
|
"ui.sessionReviewV2.empty.changes.description": "Le modifiche al progetto verranno visualizzate qui",
|
|
35
35
|
"ui.sessionReview.openFile": "Apri file",
|
|
@@ -38,7 +38,7 @@ export const dict: Record<string, string> = {
|
|
|
38
38
|
"ui.fileMedia.kind.image": "immagine",
|
|
39
39
|
"ui.fileMedia.kind.audio": "audio",
|
|
40
40
|
"ui.fileMedia.state.removed": "File {{kind}} rimosso.",
|
|
41
|
-
"ui.fileMedia.state.loading": "Caricamento di {{kind}}
|
|
41
|
+
"ui.fileMedia.state.loading": "Caricamento di {{kind}}…",
|
|
42
42
|
"ui.fileMedia.state.error": "Impossibile caricare {{kind}}.",
|
|
43
43
|
"ui.fileMedia.state.unavailable": "Anteprima di {{kind}} non disponibile.",
|
|
44
44
|
"ui.fileMedia.binary.title": "File binario",
|
|
@@ -71,7 +71,7 @@ export const dict: Record<string, string> = {
|
|
|
71
71
|
"ui.sessionTurn.error.addCredits": "Aggiungi crediti",
|
|
72
72
|
"dialog.usageExceeded.freeTier.title": "Limite gratuito raggiunto",
|
|
73
73
|
"dialog.usageExceeded.freeTier.description":
|
|
74
|
-
"Abbonati a OpenCode Go per
|
|
74
|
+
"Abbonati a OpenCode Go per un accesso affidabile ai migliori modelli open source, a partire da 5 $ al mese.",
|
|
75
75
|
"dialog.usageExceeded.freeTier.actionLabel": "Iscriviti",
|
|
76
76
|
"dialog.usageExceeded.accountRateLimit.title": "Limite Go raggiunto",
|
|
77
77
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -120,8 +120,8 @@ export const dict: Record<string, string> = {
|
|
|
120
120
|
"ui.promptInput.dropFiles": "Rilascia i file per allegarli",
|
|
121
121
|
"ui.promptInput.removeAttachment": "Rimuovi allegato",
|
|
122
122
|
"ui.promptInput.label": "Prompt",
|
|
123
|
-
"ui.promptInput.placeholder.shell": "Inserisci il comando shell
|
|
124
|
-
"ui.promptInput.placeholder.normal": "Chiedi qualsiasi cosa, {{slash}} per i comandi, {{at}} per il contesto
|
|
123
|
+
"ui.promptInput.placeholder.shell": "Inserisci il comando shell…",
|
|
124
|
+
"ui.promptInput.placeholder.normal": "Chiedi qualsiasi cosa, {{slash}} per i comandi, {{at}} per il contesto…",
|
|
125
125
|
"ui.promptInput.add": "Aggiungi immagini e file",
|
|
126
126
|
"ui.promptInput.attachments": "Immagini e file",
|
|
127
127
|
"ui.promptInput.context": "Contesto",
|
|
@@ -148,8 +148,6 @@ export const dict: Record<string, string> = {
|
|
|
148
148
|
"ui.tool.websearch.provider": "{{provider}} Ricerca sul web",
|
|
149
149
|
"ui.tool.shell": "Shell",
|
|
150
150
|
"ui.tool.patch": "Patch",
|
|
151
|
-
"ui.tool.todos": "Attività",
|
|
152
|
-
"ui.tool.todos.read": "Leggi attività",
|
|
153
151
|
"ui.tool.questions": "Domande",
|
|
154
152
|
"ui.tool.questions.numbered": "Domande {{number}}",
|
|
155
153
|
"ui.tool.agent": "Agente {{type}}",
|
|
@@ -198,5 +196,5 @@ export const dict: Record<string, string> = {
|
|
|
198
196
|
"ui.question.review.notAnswered": "(senza risposta)",
|
|
199
197
|
"ui.question.multiHint": "Seleziona tutte le risposte pertinenti",
|
|
200
198
|
"ui.question.singleHint": "Seleziona una risposta",
|
|
201
|
-
"ui.question.custom.placeholder": "Digita la tua risposta
|
|
199
|
+
"ui.question.custom.placeholder": "Digita la tua risposta…",
|
|
202
200
|
}
|
package/src/i18n/ja.ts
CHANGED
|
@@ -14,7 +14,7 @@ export const dict = {
|
|
|
14
14
|
"ui.sessionReview.change.added": "追加",
|
|
15
15
|
"ui.sessionReview.change.removed": "削除",
|
|
16
16
|
"ui.sessionReview.change.modified": "変更",
|
|
17
|
-
"ui.sessionReview.image.loading": "
|
|
17
|
+
"ui.sessionReview.image.loading": "読み込み中…",
|
|
18
18
|
"ui.sessionReview.image.placeholder": "画像",
|
|
19
19
|
"ui.sessionReview.largeDiff.title": "差分が大きすぎて表示できません",
|
|
20
20
|
"ui.sessionReview.largeDiff.meta": "上限: {{limit}} 変更行。現在: {{current}} 変更行。",
|
|
@@ -32,13 +32,13 @@ export const dict = {
|
|
|
32
32
|
"ui.sessionReviewV2.empty.noGit.title": "追跡中の変更はありません",
|
|
33
33
|
"ui.sessionReviewV2.empty.noGit.description": "このプロジェクトの変更を追跡、レビュー、取り消しできます",
|
|
34
34
|
"ui.sessionReviewV2.empty.noGit.action": "Gitリポジトリを作成",
|
|
35
|
-
"ui.sessionReviewV2.empty.noGit.actionLoading": "Git
|
|
35
|
+
"ui.sessionReviewV2.empty.noGit.actionLoading": "Gitリポジトリを作成中…",
|
|
36
36
|
"ui.sessionReviewV2.empty.changes.title": "ファイルの変更はまだありません",
|
|
37
37
|
"ui.sessionReviewV2.empty.changes.description": "プロジェクトの変更がここに表示されます",
|
|
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": "バイナリファイル",
|
|
@@ -72,7 +72,7 @@ export const dict = {
|
|
|
72
72
|
|
|
73
73
|
"dialog.usageExceeded.freeTier.title": "無料制限に達しました",
|
|
74
74
|
"dialog.usageExceeded.freeTier.description":
|
|
75
|
-
"OpenCode Go にサブスクライブして、最高のオープンソースモデルに安定してアクセスできます。月額 $
|
|
75
|
+
"OpenCode Go にサブスクライブして、最高のオープンソースモデルに安定してアクセスできます。月額 $5 から。",
|
|
76
76
|
"dialog.usageExceeded.freeTier.actionLabel": "サブスクライブ",
|
|
77
77
|
"dialog.usageExceeded.accountRateLimit.title": "Go の制限に達しました",
|
|
78
78
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -119,8 +119,8 @@ export const dict = {
|
|
|
119
119
|
"ui.promptInput.dropFiles": "ファイルをドロップして添付",
|
|
120
120
|
"ui.promptInput.removeAttachment": "添付ファイルを削除",
|
|
121
121
|
"ui.promptInput.label": "プロンプト",
|
|
122
|
-
"ui.promptInput.placeholder.shell": "
|
|
123
|
-
"ui.promptInput.placeholder.normal": "何でも質問できます。 {{slash}} でコマンド、 {{at}}
|
|
122
|
+
"ui.promptInput.placeholder.shell": "シェルコマンドを入力…",
|
|
123
|
+
"ui.promptInput.placeholder.normal": "何でも質問できます。 {{slash}} でコマンド、 {{at}} でコンテキストを追加…",
|
|
124
124
|
"ui.promptInput.add": "画像やファイルを追加",
|
|
125
125
|
"ui.promptInput.attachments": "画像とファイル",
|
|
126
126
|
"ui.promptInput.context": "コンテキスト",
|
|
@@ -150,8 +150,6 @@ export const dict = {
|
|
|
150
150
|
"ui.tool.websearch.provider": "{{provider}} Web検索",
|
|
151
151
|
"ui.tool.shell": "Shell",
|
|
152
152
|
"ui.tool.patch": "Patch",
|
|
153
|
-
"ui.tool.todos": "Todo",
|
|
154
|
-
"ui.tool.todos.read": "Todo読み込み",
|
|
155
153
|
"ui.tool.questions": "質問",
|
|
156
154
|
"ui.tool.questions.numbered": "質問 {{number}}",
|
|
157
155
|
"ui.tool.agent": "{{type}}エージェント",
|
|
@@ -200,7 +198,7 @@ export const dict = {
|
|
|
200
198
|
"ui.question.review.notAnswered": "(未回答)",
|
|
201
199
|
"ui.question.multiHint": "該当するものをすべて選択",
|
|
202
200
|
"ui.question.singleHint": "1 つ選択",
|
|
203
|
-
"ui.question.custom.placeholder": "
|
|
201
|
+
"ui.question.custom.placeholder": "回答を入力…",
|
|
204
202
|
|
|
205
203
|
"ui.fileSearch.placeholder": "検索",
|
|
206
204
|
"ui.fileSearch.previousMatch": "前の一致",
|
package/src/i18n/ka.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": "შეიყვანეთ shell
|
|
119
|
-
"ui.promptInput.placeholder.normal": "იკითხეთ რაიმე, {{slash}} ბრძანებებისთვის, {{at}}
|
|
118
|
+
"ui.promptInput.placeholder.shell": "შეიყვანეთ shell ბრძანება…",
|
|
119
|
+
"ui.promptInput.placeholder.normal": "იკითხეთ რაიმე, {{slash}} ბრძანებებისთვის, {{at}} კონტექსტისთვის…",
|
|
120
120
|
"ui.promptInput.add": "სურათების და ფაილების დამატება",
|
|
121
121
|
"ui.promptInput.attachments": "სურათები და ფაილები",
|
|
122
122
|
"ui.promptInput.context": "კონტექსტი",
|
|
@@ -143,8 +143,6 @@ export const dict: 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/km.ts
CHANGED
|
@@ -10,7 +10,7 @@ export const dict = {
|
|
|
10
10
|
"ui.sessionReview.change.added": "បានបន្ថែម",
|
|
11
11
|
"ui.sessionReview.change.removed": "បានដកចេញ",
|
|
12
12
|
"ui.sessionReview.change.modified": "កែប្រែ",
|
|
13
|
-
"ui.sessionReview.image.loading": "
|
|
13
|
+
"ui.sessionReview.image.loading": "កំពុងផ្ទុក…",
|
|
14
14
|
"ui.sessionReview.image.placeholder": "រូបភាព",
|
|
15
15
|
"ui.sessionReview.largeDiff.title": "ភាពខុសគ្នាធំពេកក្នុងការបង្ហាញ",
|
|
16
16
|
"ui.sessionReview.largeDiff.meta":
|
|
@@ -29,7 +29,7 @@ export const dict = {
|
|
|
29
29
|
"ui.sessionReviewV2.empty.noGit.title": "គ្មានការផ្លាស់ប្តូរដែលបានតាមដានទេ។",
|
|
30
30
|
"ui.sessionReviewV2.empty.noGit.description": "តាមដាន ពិនិត្យ និងបោះបង់ការផ្លាស់ប្ដូរនៅក្នុងគម្រោងនេះ។",
|
|
31
31
|
"ui.sessionReviewV2.empty.noGit.action": "បង្កើតឃ្លាំង Git",
|
|
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 = {
|
|
|
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 = {
|
|
|
70
70
|
"ui.sessionTurn.error.addCredits": "បន្ថែមក្រេឌីត",
|
|
71
71
|
"dialog.usageExceeded.freeTier.title": "បានដល់ដែនកំណត់ឥតគិតថ្លៃ",
|
|
72
72
|
"dialog.usageExceeded.freeTier.description":
|
|
73
|
-
"ជាវ OpenCode Go
|
|
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 = {
|
|
|
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 = {
|
|
|
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 = {
|
|
|
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/ko.ts
CHANGED
|
@@ -11,7 +11,7 @@ export const dict = {
|
|
|
11
11
|
"ui.sessionReview.change.added": "추가됨",
|
|
12
12
|
"ui.sessionReview.change.removed": "삭제됨",
|
|
13
13
|
"ui.sessionReview.change.modified": "수정됨",
|
|
14
|
-
"ui.sessionReview.image.loading": "로딩
|
|
14
|
+
"ui.sessionReview.image.loading": "로딩 중…",
|
|
15
15
|
"ui.sessionReview.image.placeholder": "이미지",
|
|
16
16
|
"ui.sessionReview.largeDiff.title": "차이가 너무 커서 렌더링할 수 없습니다",
|
|
17
17
|
"ui.sessionReview.largeDiff.meta": "제한: 변경된 줄 {{limit}}개. 현재: 변경된 줄 {{current}}개.",
|
|
@@ -19,7 +19,7 @@ export const dict = {
|
|
|
19
19
|
"ui.fileMedia.kind.image": "이미지",
|
|
20
20
|
"ui.fileMedia.kind.audio": "오디오",
|
|
21
21
|
"ui.fileMedia.state.removed": "{{kind}} 제거됨",
|
|
22
|
-
"ui.fileMedia.state.loading": "{{kind}} 로드
|
|
22
|
+
"ui.fileMedia.state.loading": "{{kind}} 로드 중…",
|
|
23
23
|
"ui.fileMedia.state.error": "{{kind}} 로드 오류",
|
|
24
24
|
"ui.fileMedia.state.unavailable": "{{kind}} 미리보기를 사용할 수 없음",
|
|
25
25
|
"ui.fileMedia.binary.title": "바이너리 파일",
|
|
@@ -49,7 +49,7 @@ export const dict = {
|
|
|
49
49
|
|
|
50
50
|
"dialog.usageExceeded.freeTier.title": "무료 한도에 도달했습니다",
|
|
51
51
|
"dialog.usageExceeded.freeTier.description":
|
|
52
|
-
"
|
|
52
|
+
"OpenCode Go를 구독하여 최고의 오픈 소스 모델에 안정적으로 액세스하세요. 월 $5부터 시작합니다.",
|
|
53
53
|
"dialog.usageExceeded.freeTier.actionLabel": "구독",
|
|
54
54
|
"dialog.usageExceeded.accountRateLimit.title": "Go 한도에 도달했습니다",
|
|
55
55
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -96,8 +96,8 @@ export const dict = {
|
|
|
96
96
|
"ui.promptInput.dropFiles": "첨부할 파일을 놓으세요",
|
|
97
97
|
"ui.promptInput.removeAttachment": "첨부 파일 제거",
|
|
98
98
|
"ui.promptInput.label": "프롬프트",
|
|
99
|
-
"ui.promptInput.placeholder.shell": "셸 명령어
|
|
100
|
-
"ui.promptInput.placeholder.normal": "무엇이든 물어보세요. {{slash}} 명령어, {{at}}
|
|
99
|
+
"ui.promptInput.placeholder.shell": "셸 명령어 입력…",
|
|
100
|
+
"ui.promptInput.placeholder.normal": "무엇이든 물어보세요. {{slash}} 명령어, {{at}} 컨텍스트…",
|
|
101
101
|
"ui.promptInput.add": "이미지 및 파일 추가",
|
|
102
102
|
"ui.promptInput.attachments": "이미지 및 파일",
|
|
103
103
|
"ui.promptInput.context": "컨텍스트",
|
|
@@ -127,8 +127,6 @@ export const dict = {
|
|
|
127
127
|
"ui.tool.websearch.provider": "{{provider}} 웹 검색",
|
|
128
128
|
"ui.tool.shell": "셸",
|
|
129
129
|
"ui.tool.patch": "패치",
|
|
130
|
-
"ui.tool.todos": "할 일",
|
|
131
|
-
"ui.tool.todos.read": "할 일 읽기",
|
|
132
130
|
"ui.tool.questions": "질문",
|
|
133
131
|
"ui.tool.questions.numbered": "질문 {{number}}",
|
|
134
132
|
"ui.tool.agent": "{{type}} 에이전트",
|
|
@@ -177,7 +175,7 @@ export const dict = {
|
|
|
177
175
|
"ui.question.review.notAnswered": "(답변하지 않음)",
|
|
178
176
|
"ui.question.multiHint": "해당하는 항목 모두 선택",
|
|
179
177
|
"ui.question.singleHint": "하나의 답변을 선택",
|
|
180
|
-
"ui.question.custom.placeholder": "답변
|
|
178
|
+
"ui.question.custom.placeholder": "답변 입력…",
|
|
181
179
|
|
|
182
180
|
"ui.fileSearch.placeholder": "찾기",
|
|
183
181
|
"ui.fileSearch.previousMatch": "이전 일치 항목",
|
|
@@ -206,7 +204,7 @@ export const dict = {
|
|
|
206
204
|
"ui.sessionReviewV2.empty.noGit.title": "추적 중인 변경 사항 없음",
|
|
207
205
|
"ui.sessionReviewV2.empty.noGit.description": "이 프로젝트의 변경 사항을 추적, 검토 및 실행 취소",
|
|
208
206
|
"ui.sessionReviewV2.empty.noGit.action": "Git 저장소 생성",
|
|
209
|
-
"ui.sessionReviewV2.empty.noGit.actionLoading": "Git 저장소 생성
|
|
207
|
+
"ui.sessionReviewV2.empty.noGit.actionLoading": "Git 저장소 생성 중…",
|
|
210
208
|
"ui.sessionReviewV2.empty.changes.title": "아직 파일 변경 사항 없음",
|
|
211
209
|
"ui.sessionReviewV2.empty.changes.description": "프로젝트 변경 사항이 여기에 표시됩니다",
|
|
212
210
|
"ui.lineComment.cancel": "취소",
|
package/src/i18n/lo.ts
CHANGED
|
@@ -10,7 +10,7 @@ export const dict = {
|
|
|
10
10
|
"ui.sessionReview.change.added": "ເພີ່ມ",
|
|
11
11
|
"ui.sessionReview.change.removed": "ເອົາອອກແລ້ວ",
|
|
12
12
|
"ui.sessionReview.change.modified": "ດັດແກ້",
|
|
13
|
-
"ui.sessionReview.image.loading": "
|
|
13
|
+
"ui.sessionReview.image.loading": "ກຳລັງໂຫລດ…",
|
|
14
14
|
"ui.sessionReview.image.placeholder": "ຮູບພາບ",
|
|
15
15
|
"ui.sessionReview.largeDiff.title": "ຄວາມແຕກຕ່າງໃຫຍ່ເກີນໄປທີ່ຈະສະແດງ",
|
|
16
16
|
"ui.sessionReview.largeDiff.meta": "ຈຳກັດ: {{limit}} ປ່ຽນສາຍ. ປັດຈຸບັນ: {{current}} ປ່ຽນສາຍ.",
|
|
@@ -28,7 +28,7 @@ export const dict = {
|
|
|
28
28
|
"ui.sessionReviewV2.empty.noGit.title": "ບໍ່ມີການຕິດຕາມການປ່ຽນແປງ",
|
|
29
29
|
"ui.sessionReviewV2.empty.noGit.description": "ຕິດຕາມ, ທົບທວນ ແລະຍົກເລີກການປ່ຽນແປງໃນໂຄງການນີ້",
|
|
30
30
|
"ui.sessionReviewV2.empty.noGit.action": "ສ້າງບ່ອນເກັບຂໍ້ມູນ Git",
|
|
31
|
-
"ui.sessionReviewV2.empty.noGit.actionLoading": "ກຳລັງສ້າງບ່ອນເກັບຂໍ້ມູນ Git
|
|
31
|
+
"ui.sessionReviewV2.empty.noGit.actionLoading": "ກຳລັງສ້າງບ່ອນເກັບຂໍ້ມູນ Git…",
|
|
32
32
|
"ui.sessionReviewV2.empty.changes.title": "ບໍ່ມີການປ່ຽນແປງໄຟລ໌ເທື່ອ",
|
|
33
33
|
"ui.sessionReviewV2.empty.changes.description": "ການປ່ຽນແປງໂຄງການຈະປາກົດຢູ່ທີ່ນີ້",
|
|
34
34
|
"ui.sessionReview.openFile": "ເປີດໄຟລ໌",
|
|
@@ -37,7 +37,7 @@ export const dict = {
|
|
|
37
37
|
"ui.fileMedia.kind.image": "ຮູບ",
|
|
38
38
|
"ui.fileMedia.kind.audio": "ສຽງ",
|
|
39
39
|
"ui.fileMedia.state.removed": "ລຶບໄຟລ໌ {{kind}} ອອກແລ້ວ.",
|
|
40
|
-
"ui.fileMedia.state.loading": "ກຳລັງໂຫລດ {{kind}}
|
|
40
|
+
"ui.fileMedia.state.loading": "ກຳລັງໂຫລດ {{kind}}…",
|
|
41
41
|
"ui.fileMedia.state.error": "ບໍ່ສາມາດໂຫຼດ {{kind}} ໄດ້.",
|
|
42
42
|
"ui.fileMedia.state.unavailable": "{{kind}} ບໍ່ສາມາດໃຊ້ໄດ້.",
|
|
43
43
|
"ui.fileMedia.binary.title": "ໄຟລ໌ຖານສອງ",
|
|
@@ -69,7 +69,7 @@ export const dict = {
|
|
|
69
69
|
"ui.sessionTurn.error.addCredits": "ເພີ່ມເຄຣດິດ",
|
|
70
70
|
"dialog.usageExceeded.freeTier.title": "ຮອດຂີດຈຳກັດຟຣີແລ້ວ",
|
|
71
71
|
"dialog.usageExceeded.freeTier.description":
|
|
72
|
-
"ສະໝັກໃຊ້ OpenCode Go
|
|
72
|
+
"ສະໝັກໃຊ້ OpenCode Go ເພື່ອເຂົ້າເຖິງຮູບແບບໂອເພນຊອດທີ່ດີທີ່ສຸດ, ເລີ່ມຕົ້ນທີ່ $5/ເດືອນ.",
|
|
73
73
|
"dialog.usageExceeded.freeTier.actionLabel": "ຈອງ",
|
|
74
74
|
"dialog.usageExceeded.accountRateLimit.title": "ໄປຮອດຂີດຈຳກັດແລ້ວ",
|
|
75
75
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -115,8 +115,8 @@ export const dict = {
|
|
|
115
115
|
"ui.promptInput.dropFiles": "ວາງໄຟລ໌ເພື່ອແນບ",
|
|
116
116
|
"ui.promptInput.removeAttachment": "ເອົາໄຟລ໌ແນບອອກ",
|
|
117
117
|
"ui.promptInput.label": "Prompt",
|
|
118
|
-
"ui.promptInput.placeholder.shell": "ໃສ່ຄຳສັ່ງ shell
|
|
119
|
-
"ui.promptInput.placeholder.normal": "ຖາມຫຍັງ, {{slash}} ສໍາລັບຄໍາສັ່ງ, {{at}} ສໍາລັບສະພາບການ
|
|
118
|
+
"ui.promptInput.placeholder.shell": "ໃສ່ຄຳສັ່ງ shell…",
|
|
119
|
+
"ui.promptInput.placeholder.normal": "ຖາມຫຍັງ, {{slash}} ສໍາລັບຄໍາສັ່ງ, {{at}} ສໍາລັບສະພາບການ …",
|
|
120
120
|
"ui.promptInput.add": "ເພີ່ມຮູບພາບແລະໄຟລ໌",
|
|
121
121
|
"ui.promptInput.attachments": "ຮູບພາບແລະໄຟລ໌",
|
|
122
122
|
"ui.promptInput.context": "ບໍລິບົດ",
|
|
@@ -143,8 +143,6 @@ export const dict = {
|
|
|
143
143
|
"ui.tool.websearch.provider": "{{provider}} ຄົ້ນຫາເວັບ",
|
|
144
144
|
"ui.tool.shell": "Shell",
|
|
145
145
|
"ui.tool.patch": "Patch",
|
|
146
|
-
"ui.tool.todos": "ລາຍການທີ່ຕ້ອງເຮັດ",
|
|
147
|
-
"ui.tool.todos.read": "ອ່ານສິ່ງທີ່ຕ້ອງເຮັດ",
|
|
148
146
|
"ui.tool.questions": "ຄຳຖາມ",
|
|
149
147
|
"ui.tool.questions.numbered": "ຄໍາຖາມ {{number}}",
|
|
150
148
|
"ui.tool.agent": "ຕົວແທນ {{type}}",
|
|
@@ -193,5 +191,5 @@ export const dict = {
|
|
|
193
191
|
"ui.question.review.notAnswered": "(ບໍ່ຕອບ)",
|
|
194
192
|
"ui.question.multiHint": "ເລືອກຄຳຕອບທັງໝົດທີ່ນຳໃຊ້",
|
|
195
193
|
"ui.question.singleHint": "ເລືອກຫນຶ່ງຄໍາຕອບ",
|
|
196
|
-
"ui.question.custom.placeholder": "
|
|
194
|
+
"ui.question.custom.placeholder": "ພິມຄຳຕອບຂອງເຈົ້າ…",
|
|
197
195
|
}
|