@opencode-ai/ui 0.0.0-dev-18909 → 0.0.0-dev-202609021553
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/{data-display/accordion → components}/accordion.d.ts +6 -6
- package/dist/components/avatar.d.ts +9 -0
- package/dist/components/button.d.ts +9 -0
- package/dist/components/card.d.ts +1 -1
- package/dist/{forms/checkbox → components}/checkbox.d.ts +2 -2
- package/dist/components/dialog.d.ts +12 -0
- package/dist/{data-display/diff-changes → components}/diff-changes.d.ts +1 -2
- package/dist/components/dropdown-menu.d.ts +80 -0
- package/dist/components/icon-button.d.ts +10 -0
- package/dist/{icons/icon/additional-icons.d.ts → components/icon.d.ts} +8 -8
- package/dist/components/keybind.d.ts +6 -0
- package/dist/components/list.d.ts +1 -1
- package/dist/{feedback/progress-circle → components}/progress-circle.d.ts +0 -2
- package/dist/components/radio-group.d.ts +16 -0
- package/dist/components/scroll-view.d.ts +3 -3
- package/dist/components/select.d.ts +21 -0
- package/dist/{forms/switch → components}/switch.d.ts +2 -4
- package/dist/{navigation/tabs → components}/tabs.d.ts +8 -15
- package/dist/components/tag.d.ts +5 -0
- package/dist/{typography/text-shimmer → components}/text-shimmer.d.ts +0 -1
- package/dist/components/toast.d.ts +56 -0
- package/dist/components/tooltip.d.ts +17 -0
- package/dist/context/i18n.d.ts +7 -10
- package/dist/context/marked-parser.d.ts +2 -1
- package/dist/hooks/use-filtered-list.d.ts +0 -9
- package/dist/i18n/ar.d.ts +2 -0
- package/dist/i18n/bg.d.ts +2 -0
- package/dist/i18n/br.d.ts +2 -0
- package/dist/i18n/bs.d.ts +2 -0
- package/dist/i18n/da.d.ts +2 -0
- package/dist/i18n/de.d.ts +2 -0
- package/dist/i18n/en.d.ts +1 -230
- package/dist/i18n/es.d.ts +2 -0
- package/dist/i18n/fr.d.ts +2 -0
- package/dist/i18n/ja.d.ts +2 -0
- package/dist/i18n/km.d.ts +2 -0
- package/dist/i18n/ko.d.ts +2 -0
- package/dist/i18n/lo.d.ts +2 -0
- package/dist/i18n/mk.d.ts +2 -0
- package/dist/i18n/mn.d.ts +2 -0
- package/dist/i18n/my.d.ts +2 -0
- package/dist/i18n/pl.d.ts +2 -0
- package/dist/i18n/ru.d.ts +2 -0
- package/dist/i18n/sr.d.ts +2 -0
- package/dist/i18n/tg.d.ts +2 -0
- package/dist/i18n/th.d.ts +2 -0
- package/dist/i18n/tr.d.ts +2 -0
- package/dist/i18n/zh.d.ts +2 -0
- package/dist/i18n/zht.d.ts +2 -0
- package/dist/v2/components/accordion-v2.d.ts +26 -0
- package/dist/{data-display/avatar/avatar.d.ts → v2/components/avatar-v2.d.ts} +1 -1
- package/dist/v2/components/badge-v2.d.ts +6 -0
- package/dist/v2/components/button-v2.d.ts +10 -0
- package/dist/v2/components/checkbox-v2.d.ts +10 -0
- package/dist/{overlays/dialog/dialog.d.ts → v2/components/dialog-v2.d.ts} +2 -1
- package/dist/v2/components/diff-changes-v2.d.ts +11 -0
- package/dist/v2/components/divider-v2.d.ts +5 -0
- package/dist/{forms/field/field.d.ts → v2/components/field-v2.d.ts} +10 -4
- package/dist/v2/components/icon-button-v2.d.ts +11 -0
- package/dist/{icons/icon → v2/components}/icon.d.ts +1 -24
- package/dist/v2/components/inline-input-v2.d.ts +21 -0
- package/dist/v2/components/keybind-v2.d.ts +7 -0
- package/dist/{data-display/line-comment/line-comment.d.ts → v2/components/line-comment-v2.d.ts} +9 -9
- package/dist/v2/components/loader-v2.d.ts +3 -0
- package/dist/v2/components/menu-v2.d.ts +52 -0
- package/dist/v2/components/progress-circle-v2.d.ts +8 -0
- package/dist/{data-display/project-avatar/project-avatar.d.ts → v2/components/project-avatar-v2.d.ts} +1 -1
- package/dist/v2/components/radio-v2.d.ts +16 -0
- package/dist/{navigation/segmented-control/segmented-control.d.ts → v2/components/segmented-control-v2.d.ts} +5 -5
- package/dist/{forms/select/select.d.ts → v2/components/select-v2.d.ts} +6 -4
- package/dist/v2/components/split-button-v2.d.ts +5 -0
- package/dist/v2/components/switch-v2.d.ts +7 -0
- package/dist/v2/components/tabs-v2.d.ts +34 -0
- package/dist/{forms/text-input/text-input.d.ts → v2/components/text-input-v2.d.ts} +3 -3
- package/dist/v2/components/text-shimmer-v2.d.ts +9 -0
- package/dist/v2/components/textarea-v2.d.ts +7 -0
- package/dist/v2/components/toast-v2.d.ts +57 -0
- package/dist/v2/components/tooltip-v2.d.ts +13 -0
- package/dist/v2/components/wordmark-v2.d.ts +2 -0
- package/package.json +34 -140
- package/src/{data-display/accordion → components}/accordion.css +31 -5
- package/src/{data-display/accordion → components}/accordion.tsx +14 -14
- package/src/components/animated-number.css +11 -29
- package/src/components/animated-number.tsx +2 -2
- package/src/components/avatar.css +49 -0
- package/src/components/avatar.tsx +55 -0
- package/src/components/button.css +194 -0
- package/src/{actions/button → components}/button.tsx +11 -10
- package/src/components/card.css +23 -2
- package/src/components/card.tsx +4 -4
- package/src/{forms/checkbox → components}/checkbox.css +7 -1
- package/src/{forms/checkbox → components}/checkbox.tsx +13 -13
- package/src/components/collapsible.tsx +2 -2
- package/src/components/dialog.css +181 -0
- package/src/components/dialog.tsx +72 -0
- package/src/{data-display/diff-changes → components}/diff-changes.css +19 -22
- package/src/components/diff-changes.tsx +115 -0
- package/src/components/dock-surface.css +9 -2
- package/src/components/dropdown-menu.css +135 -0
- package/src/components/dropdown-menu.tsx +308 -0
- package/src/components/icon-button.css +181 -0
- package/src/components/icon-button.tsx +29 -0
- package/src/components/icon.css +39 -0
- package/src/{icons/icon/additional-icons.ts → components/icon.tsx} +74 -8
- package/src/components/image-preview.tsx +2 -3
- package/src/components/keybind.css +18 -0
- package/src/components/keybind.tsx +20 -0
- package/src/components/list.css +5 -5
- package/src/components/list.tsx +5 -7
- package/src/components/popover.tsx +2 -3
- package/src/components/progress-circle.css +16 -0
- package/src/components/progress-circle.tsx +64 -0
- package/src/components/radio-group.css +187 -0
- package/src/components/radio-group.tsx +83 -0
- package/src/components/scroll-view.tsx +20 -5
- package/src/components/select.css +201 -0
- package/src/components/select.tsx +174 -0
- package/src/components/sticky-accordion-header.tsx +1 -1
- package/src/components/switch.css +136 -0
- package/src/components/switch.tsx +29 -0
- package/src/{navigation/tabs → components}/tabs.css +229 -39
- package/src/components/tabs.tsx +126 -0
- package/src/components/tag.css +37 -0
- package/src/components/tag.tsx +22 -0
- package/src/components/text-field.tsx +4 -12
- package/src/{typography/text-shimmer → components}/text-shimmer.css +1 -2
- package/src/{typography/text-shimmer → components}/text-shimmer.tsx +0 -1
- package/src/components/toast.css +236 -0
- package/src/components/toast.tsx +185 -0
- package/src/components/tooltip.css +74 -0
- package/src/components/tooltip.tsx +163 -0
- package/src/context/dialog.tsx +0 -1
- package/src/context/i18n.tsx +14 -17
- package/src/context/marked-parser.tsx +13 -3
- package/src/hooks/create-auto-scroll.tsx +0 -20
- package/src/i18n/am.ts +9 -7
- package/src/i18n/ar.ts +9 -7
- package/src/i18n/az.ts +9 -7
- package/src/i18n/bg.ts +9 -7
- package/src/i18n/bn.ts +9 -7
- package/src/i18n/br.ts +9 -7
- package/src/i18n/bs.ts +9 -7
- package/src/i18n/ca.ts +9 -7
- package/src/i18n/cs.ts +9 -7
- package/src/i18n/da.ts +9 -7
- package/src/i18n/de.ts +3 -1
- package/src/i18n/dv.ts +9 -7
- package/src/i18n/dz.ts +7 -5
- package/src/i18n/el.ts +9 -7
- package/src/i18n/en.ts +11 -46
- package/src/i18n/es.ts +8 -6
- package/src/i18n/et.ts +9 -7
- package/src/i18n/fa.ts +9 -7
- package/src/i18n/fi.ts +9 -7
- package/src/i18n/fo.ts +9 -7
- package/src/i18n/fr.ts +8 -6
- package/src/i18n/hi.ts +9 -7
- package/src/i18n/hr.ts +9 -7
- package/src/i18n/hu.ts +9 -7
- package/src/i18n/hy.ts +9 -7
- package/src/i18n/id.ts +9 -7
- package/src/i18n/is.ts +9 -7
- package/src/i18n/it.ts +9 -7
- package/src/i18n/ja.ts +9 -7
- package/src/i18n/ka.ts +9 -7
- package/src/i18n/km.ts +9 -7
- package/src/i18n/ko.ts +9 -7
- package/src/i18n/lo.ts +9 -7
- package/src/i18n/lt.ts +9 -7
- package/src/i18n/lv.ts +9 -7
- package/src/i18n/mk.ts +9 -7
- package/src/i18n/mn.ts +9 -7
- package/src/i18n/ms.ts +9 -7
- package/src/i18n/my.ts +9 -7
- package/src/i18n/ne.ts +9 -7
- package/src/i18n/nl.ts +9 -7
- package/src/i18n/no.ts +9 -7
- package/src/i18n/pa.ts +9 -7
- package/src/i18n/pl.ts +9 -7
- package/src/i18n/ro.ts +9 -7
- package/src/i18n/ru.ts +9 -7
- package/src/i18n/si.ts +9 -7
- package/src/i18n/sk.ts +9 -7
- package/src/i18n/sl.ts +9 -7
- package/src/i18n/sq.ts +9 -7
- package/src/i18n/sr.ts +9 -7
- package/src/i18n/sv.ts +9 -7
- package/src/i18n/tg.ts +9 -7
- package/src/i18n/th.ts +9 -7
- package/src/i18n/tk.ts +9 -7
- package/src/i18n/tr.ts +9 -7
- package/src/i18n/uk.ts +9 -7
- package/src/i18n/ur.ts +9 -7
- package/src/i18n/uz.ts +9 -7
- package/src/i18n/vi.ts +9 -7
- package/src/i18n/zh.ts +9 -7
- package/src/i18n/zht.ts +9 -7
- package/src/styles/base.css +0 -5
- package/src/styles/index.css +20 -4
- package/src/styles/tailwind/colors.css +0 -1
- package/src/styles/tailwind/index.css +1 -18
- package/src/styles/theme.css +2 -2
- package/src/theme/context.tsx +11 -19
- package/src/theme/themes/oc-2.json +1 -3
- package/src/theme/v2/foreground.ts +0 -1
- package/src/theme/v2/mapping.ts +0 -4
- package/src/v2/components/accordion-v2.css +139 -0
- package/src/v2/components/accordion-v2.tsx +86 -0
- package/src/{data-display/avatar/avatar.tsx → v2/components/avatar-v2.tsx} +1 -1
- package/src/{data-display/badge/badge.css → v2/components/badge-v2.css} +0 -19
- package/src/{data-display/badge/badge.tsx → v2/components/badge-v2.tsx} +4 -6
- package/src/v2/components/button-v2.tsx +35 -0
- package/src/v2/components/checkbox-v2.css +184 -0
- package/src/v2/components/checkbox-v2.tsx +65 -0
- package/src/{overlays/dialog/dialog.css → v2/components/dialog-v2.css} +0 -3
- package/src/{overlays/dialog/dialog.tsx → v2/components/dialog-v2.tsx} +13 -11
- package/src/v2/components/diff-changes-v2.css +26 -0
- package/src/{data-display/diff-changes/diff-changes.tsx → v2/components/diff-changes-v2.tsx} +2 -7
- package/src/{layout/divider/divider.tsx → v2/components/divider-v2.tsx} +3 -3
- package/src/{forms/field/field.css → v2/components/field-v2.css} +1 -1
- package/src/{forms/field/field.tsx → v2/components/field-v2.tsx} +11 -9
- package/src/v2/components/icon-button-v2.tsx +37 -0
- package/src/{icons/icon → v2/components}/icon.tsx +9 -50
- package/src/v2/components/inline-input-v2.css +225 -0
- package/src/v2/components/inline-input-v2.tsx +107 -0
- package/src/{data-display/keybind/keybind.css → v2/components/keybind-v2.css} +1 -1
- package/src/{data-display/keybind/keybind.tsx → v2/components/keybind-v2.tsx} +3 -3
- package/src/{data-display/line-comment/line-comment.css → v2/components/line-comment-v2.css} +4 -4
- package/src/{data-display/line-comment/line-comment.tsx → v2/components/line-comment-v2.tsx} +15 -17
- package/src/{feedback/loader/loader.tsx → v2/components/loader-v2.tsx} +2 -2
- package/src/{navigation/menu/menu.css → v2/components/menu-v2.css} +2 -123
- package/src/{navigation/menu/menu.tsx → v2/components/menu-v2.tsx} +32 -96
- package/src/v2/components/progress-circle-v2.css +13 -0
- package/src/v2/components/progress-circle-v2.tsx +52 -0
- package/src/{data-display/project-avatar/project-avatar.tsx → v2/components/project-avatar-v2.tsx} +1 -1
- package/src/{forms/radio/radio.tsx → v2/components/radio-v2.tsx} +20 -30
- package/src/{navigation/segmented-control/segmented-control.css → v2/components/segmented-control-v2.css} +1 -1
- package/src/{navigation/segmented-control/segmented-control.tsx → v2/components/segmented-control-v2.tsx} +8 -9
- package/src/{forms/select/select.css → v2/components/select-v2.css} +8 -2
- package/src/{forms/select/select.tsx → v2/components/select-v2.tsx} +32 -38
- package/src/{actions/split-button/split-button.css → v2/components/split-button-v2.css} +6 -1
- package/src/{actions/split-button/split-button.tsx → v2/components/split-button-v2.tsx} +4 -4
- package/src/{forms/switch/switch.css → v2/components/switch-v2.css} +0 -110
- package/src/v2/components/switch-v2.tsx +28 -0
- package/src/{navigation/tabs/tabs-current.css → v2/components/tabs-v2.css} +10 -25
- package/src/v2/components/tabs-v2.tsx +149 -0
- package/src/{forms/text-input/text-input.css → v2/components/text-input-v2.css} +1 -1
- package/src/{forms/text-input/text-input.tsx → v2/components/text-input-v2.tsx} +4 -4
- package/src/v2/components/text-shimmer-v2.css +125 -0
- package/src/v2/components/text-shimmer-v2.tsx +63 -0
- package/src/{forms/textarea/textarea.tsx → v2/components/textarea-v2.tsx} +3 -3
- package/src/{feedback/toast/toast.tsx → v2/components/toast-v2.tsx} +58 -60
- package/src/{overlays/tooltip/tooltip.css → v2/components/tooltip-v2.css} +0 -26
- package/src/{overlays/tooltip/tooltip.tsx → v2/components/tooltip-v2.tsx} +17 -24
- package/src/{typography/wordmark/wordmark.tsx → v2/components/wordmark-v2.tsx} +1 -1
- package/src/{styles/tokens → v2/styles}/theme.css +14 -18
- package/dist/actions/button/button.d.ts +0 -10
- package/dist/actions/icon-button/icon-button.d.ts +0 -11
- package/dist/actions/split-button/split-button.d.ts +0 -5
- package/dist/context/marked-base.d.ts +0 -3
- package/dist/data-display/badge/badge.d.ts +0 -7
- package/dist/data-display/keybind/keybind.d.ts +0 -7
- package/dist/feedback/loader/loader.d.ts +0 -3
- package/dist/feedback/toast/toast.d.ts +0 -57
- package/dist/forms/radio/radio.d.ts +0 -16
- package/dist/forms/textarea/textarea.d.ts +0 -7
- package/dist/i18n/he.d.ts +0 -197
- package/dist/layout/divider/divider.d.ts +0 -5
- package/dist/navigation/menu/menu.d.ts +0 -59
- package/dist/overlays/tooltip/tooltip.d.ts +0 -15
- package/dist/typography/wordmark/wordmark.d.ts +0 -2
- package/src/actions/icon-button/icon-button.tsx +0 -32
- package/src/context/marked-base.tsx +0 -27
- package/src/feedback/progress-circle/progress-circle.css +0 -28
- package/src/feedback/progress-circle/progress-circle.tsx +0 -64
- package/src/forms/switch/switch.tsx +0 -34
- package/src/i18n/he.ts +0 -199
- package/src/icons/icon/icon.css +0 -3
- package/src/navigation/tabs/tabs.tsx +0 -194
- /package/dist/{forms/inline-input → components}/inline-input.d.ts +0 -0
- /package/dist/{navigation → v2/components}/tab-state-indicator.d.ts +0 -0
- /package/src/{forms/inline-input → components}/inline-input.css +0 -0
- /package/src/{forms/inline-input → components}/inline-input.tsx +0 -0
- /package/src/{data-display/avatar/avatar.css → v2/components/avatar-v2.css} +0 -0
- /package/src/{actions/button/button.css → v2/components/button-v2.css} +0 -0
- /package/src/{layout/divider/divider.css → v2/components/divider-v2.css} +0 -0
- /package/src/{styles/file-tree.css → v2/components/file-tree-v2.css} +0 -0
- /package/src/{actions/icon-button/icon-button.css → v2/components/icon-button-v2.css} +0 -0
- /package/src/{feedback/loader/loader.css → v2/components/loader-v2.css} +0 -0
- /package/src/{data-display/project-avatar/project-avatar.css → v2/components/project-avatar-v2.css} +0 -0
- /package/src/{forms/radio/radio.css → v2/components/radio-v2.css} +0 -0
- /package/src/{navigation → v2/components}/tab-state-indicator.tsx +0 -0
- /package/src/{forms/textarea/textarea.css → v2/components/textarea-v2.css} +0 -0
- /package/src/{feedback/toast/toast.css → v2/components/toast-v2.css} +0 -0
- /package/src/{styles/tokens → v2/styles}/colors.css +0 -0
- /package/src/{styles/tokens/index.css → v2/styles/tailwind.css} +0 -0
package/src/i18n/fa.ts
CHANGED
|
@@ -10,7 +10,7 @@ export const dict: Record<string, string> = {
|
|
|
10
10
|
"ui.sessionReview.change.added": "اضافه شد",
|
|
11
11
|
"ui.sessionReview.change.removed": "حذف شد",
|
|
12
12
|
"ui.sessionReview.change.modified": "اصلاح شد",
|
|
13
|
-
"ui.sessionReview.image.loading": "در حال
|
|
13
|
+
"ui.sessionReview.image.loading": "در حال بارگیری...",
|
|
14
14
|
"ui.sessionReview.image.placeholder": "تصویر",
|
|
15
15
|
"ui.sessionReview.largeDiff.title": "تفاوت برای ارائه خیلی بزرگ است",
|
|
16
16
|
"ui.sessionReview.largeDiff.meta": "محدودیت: {{limit}} خطوط تغییر کرده است. فعلی: {{current}} خطوط تغییر کرده است.",
|
|
@@ -28,7 +28,7 @@ export const dict: Record<string, string> = {
|
|
|
28
28
|
"ui.sessionReviewV2.empty.noGit.title": "هیچ تغییری ردیابی نشده است",
|
|
29
29
|
"ui.sessionReviewV2.empty.noGit.description": "ردیابی، بررسی، و لغو تغییرات در این پروژه",
|
|
30
30
|
"ui.sessionReviewV2.empty.noGit.action": "مخزن Git ایجاد کنید",
|
|
31
|
-
"ui.sessionReviewV2.empty.noGit.actionLoading": "ایجاد مخزن Git
|
|
31
|
+
"ui.sessionReviewV2.empty.noGit.actionLoading": "ایجاد مخزن Git...",
|
|
32
32
|
"ui.sessionReviewV2.empty.changes.title": "هنوز فایلی تغییر نکرده است",
|
|
33
33
|
"ui.sessionReviewV2.empty.changes.description": "تغییرات پروژه در اینجا ظاهر می شود",
|
|
34
34
|
"ui.sessionReview.openFile": "باز کردن فایل",
|
|
@@ -37,7 +37,7 @@ export const dict: Record<string, string> = {
|
|
|
37
37
|
"ui.fileMedia.kind.image": "تصویر",
|
|
38
38
|
"ui.fileMedia.kind.audio": "صوتی",
|
|
39
39
|
"ui.fileMedia.state.removed": "فایل {{kind}} حذف شد.",
|
|
40
|
-
"ui.fileMedia.state.loading": "در حال بارگیری {{kind}}
|
|
40
|
+
"ui.fileMedia.state.loading": "در حال بارگیری {{kind}}...",
|
|
41
41
|
"ui.fileMedia.state.error": "بارگیری {{kind}} ممکن نیست.",
|
|
42
42
|
"ui.fileMedia.state.unavailable": "پیش نمایش {{kind}} در دسترس نیست.",
|
|
43
43
|
"ui.fileMedia.binary.title": "فایل باینری",
|
|
@@ -69,7 +69,7 @@ export const dict: Record<string, string> = {
|
|
|
69
69
|
"ui.sessionTurn.error.addCredits": "اعتبار اضافه کنید",
|
|
70
70
|
"dialog.usageExceeded.freeTier.title": "به حد مجاز رایگان رسیده است",
|
|
71
71
|
"dialog.usageExceeded.freeTier.description":
|
|
72
|
-
"برای دسترسی مطمئن به بهترین
|
|
72
|
+
"برای دسترسی مطمئن به بهترین مدلهای منبع باز، با قیمت 10 دلار در ماه در OpenCode Go مشترک شوید.",
|
|
73
73
|
"dialog.usageExceeded.freeTier.actionLabel": "مشترک شوید",
|
|
74
74
|
"dialog.usageExceeded.accountRateLimit.title": "به حد مجاز رفتن رسید",
|
|
75
75
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -115,8 +115,8 @@ export const dict: Record<string, string> = {
|
|
|
115
115
|
"ui.promptInput.dropFiles": "فایل ها را برای پیوست رها کنید",
|
|
116
116
|
"ui.promptInput.removeAttachment": "حذف پیوست",
|
|
117
117
|
"ui.promptInput.label": "پرامپت",
|
|
118
|
-
"ui.promptInput.placeholder.shell": "دستور پوسته Enter
|
|
119
|
-
"ui.promptInput.placeholder.normal": "هر چیزی را بپرسید، {{slash}} برای دستورات، {{at}} برای
|
|
118
|
+
"ui.promptInput.placeholder.shell": "دستور پوسته Enter...",
|
|
119
|
+
"ui.promptInput.placeholder.normal": "هر چیزی را بپرسید، {{slash}} برای دستورات، {{at}} برای زمینه...",
|
|
120
120
|
"ui.promptInput.add": "تصاویر و فایل ها را اضافه کنید",
|
|
121
121
|
"ui.promptInput.attachments": "تصاویر و فایل ها",
|
|
122
122
|
"ui.promptInput.context": "زمینه",
|
|
@@ -143,6 +143,8 @@ export const dict: Record<string, string> = {
|
|
|
143
143
|
"ui.tool.websearch.provider": "جستجوی وب {{provider}}",
|
|
144
144
|
"ui.tool.shell": "پوسته",
|
|
145
145
|
"ui.tool.patch": "پچ",
|
|
146
|
+
"ui.tool.todos": "کارها",
|
|
147
|
+
"ui.tool.todos.read": "کارها را بخوانید",
|
|
146
148
|
"ui.tool.questions": "سوالات",
|
|
147
149
|
"ui.tool.questions.numbered": "سوالات {{number}}",
|
|
148
150
|
"ui.tool.agent": "عامل {{type}}",
|
|
@@ -191,5 +193,5 @@ export const dict: Record<string, string> = {
|
|
|
191
193
|
"ui.question.review.notAnswered": "(پاسخ داده نشد)",
|
|
192
194
|
"ui.question.multiHint": "همه پاسخ هایی که اعمال می شوند را انتخاب کنید",
|
|
193
195
|
"ui.question.singleHint": "یک پاسخ را انتخاب کنید",
|
|
194
|
-
"ui.question.custom.placeholder": "پاسخ خود را تایپ
|
|
196
|
+
"ui.question.custom.placeholder": "پاسخ خود را تایپ کنید...",
|
|
195
197
|
}
|
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 saadaksesi luotettavan pääsyn parhaisiin avoimen lähdekoodin malleihin
|
|
71
|
+
"Tilaa OpenCode Go 10 dollarilla kuukaudessa saadaksesi luotettavan pääsyn parhaisiin avoimen lähdekoodin malleihin.",
|
|
72
72
|
"dialog.usageExceeded.freeTier.actionLabel": "Tilaa",
|
|
73
73
|
"dialog.usageExceeded.accountRateLimit.title": "Go-raja saavutettu",
|
|
74
74
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -125,6 +125,8 @@ 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",
|
|
128
130
|
"ui.tool.questions": "Kysymykset",
|
|
129
131
|
"ui.tool.questions.numbered": "Kysymykset {{number}}",
|
|
130
132
|
"ui.tool.agent": "{{type}}-agentti",
|
|
@@ -173,15 +175,15 @@ export const dict: Record<string, string> = {
|
|
|
173
175
|
"ui.question.review.notAnswered": "(ei vastattu)",
|
|
174
176
|
"ui.question.multiHint": "Valitse kaikki sopivat vastaukset",
|
|
175
177
|
"ui.question.singleHint": "Valitse yksi vastaus",
|
|
176
|
-
"ui.question.custom.placeholder": "Kirjoita vastauksesi
|
|
178
|
+
"ui.question.custom.placeholder": "Kirjoita vastauksesi...",
|
|
177
179
|
"ui.lineComment.contextPlaceholder": "Lisää tämän muutoksen konteksti",
|
|
178
180
|
"ui.promptInput.noMatchingItems": "Ei vastaavia kohteita",
|
|
179
181
|
"ui.promptInput.commands": "Komennot",
|
|
180
182
|
"ui.promptInput.dropFiles": "Liitä tiedostoja pudottamalla ne tähän",
|
|
181
183
|
"ui.promptInput.removeAttachment": "Poista liite",
|
|
182
184
|
"ui.promptInput.label": "Kehote",
|
|
183
|
-
"ui.promptInput.placeholder.shell": "Anna shell-komento
|
|
184
|
-
"ui.promptInput.placeholder.normal": "Kysy mitä tahansa, {{slash}} komentoja varten, {{at}} kontekstia varten
|
|
185
|
+
"ui.promptInput.placeholder.shell": "Anna shell-komento...",
|
|
186
|
+
"ui.promptInput.placeholder.normal": "Kysy mitä tahansa, {{slash}} komentoja varten, {{at}} kontekstia varten...",
|
|
185
187
|
"ui.promptInput.add": "Lisää kuvia ja tiedostoja",
|
|
186
188
|
"ui.promptInput.attachments": "Kuvat ja tiedostot",
|
|
187
189
|
"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 álítandi atgongd til bestu open-source modellini
|
|
72
|
+
"Tekna teg til OpenCode Go fyri $10 um mánaðin og fá álítandi atgongd til bestu open-source modellini.",
|
|
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,6 +143,8 @@ 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",
|
|
146
148
|
"ui.tool.questions": "Spurningar",
|
|
147
149
|
"ui.tool.questions.numbered": "Spurningar {{number}}",
|
|
148
150
|
"ui.tool.agent": "{{type}} agentur",
|
|
@@ -191,5 +193,5 @@ export const dict: Record<string, string> = {
|
|
|
191
193
|
"ui.question.review.notAnswered": "(ikki svarað)",
|
|
192
194
|
"ui.question.multiHint": "Vel øll svar, sum eru galdandi",
|
|
193
195
|
"ui.question.singleHint": "Vel eitt svar",
|
|
194
|
-
"ui.question.custom.placeholder": "Skriva títt svar
|
|
196
|
+
"ui.question.custom.placeholder": "Skriva títt svar...",
|
|
195
197
|
}
|
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 10 $ US par mois et accédez de manière fiable aux meilleurs modèles à code source ouvert.",
|
|
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,6 +157,8 @@ 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",
|
|
160
162
|
"ui.tool.questions": "Questions",
|
|
161
163
|
"ui.tool.questions.numbered": "Questions {{number}}",
|
|
162
164
|
"ui.tool.agent": "Agent {{type}}",
|
|
@@ -205,7 +207,7 @@ export const dict = {
|
|
|
205
207
|
"ui.question.review.notAnswered": "(non répondu)",
|
|
206
208
|
"ui.question.multiHint": "Sélectionnez tout ce qui s'applique",
|
|
207
209
|
"ui.question.singleHint": "Sélectionnez une réponse",
|
|
208
|
-
"ui.question.custom.placeholder": "Tapez votre réponse
|
|
210
|
+
"ui.question.custom.placeholder": "Tapez votre réponse...",
|
|
209
211
|
|
|
210
212
|
"ui.fileSearch.placeholder": "Rechercher",
|
|
211
213
|
"ui.fileSearch.previousMatch": "Précédent",
|
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
|
+
"$10/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,6 +145,8 @@ 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": "कार्य सूची पढ़ें",
|
|
148
150
|
"ui.tool.questions": "प्रश्न",
|
|
149
151
|
"ui.tool.questions.numbered": "प्रश्न {{number}}",
|
|
150
152
|
"ui.tool.agent": "{{type}} एजेंट",
|
|
@@ -193,5 +195,5 @@ export const dict: Record<string, string> = {
|
|
|
193
195
|
"ui.question.review.notAnswered": "(उत्तर नहीं दिया गया)",
|
|
194
196
|
"ui.question.multiHint": "लागू होने वाले सभी उत्तर चुनें",
|
|
195
197
|
"ui.question.singleHint": "एक उत्तर चुनें",
|
|
196
|
-
"ui.question.custom.placeholder": "अपना उत्तर
|
|
198
|
+
"ui.question.custom.placeholder": "अपना उत्तर लिखें...",
|
|
197
199
|
}
|
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 pouzdan pristup najboljim modelima otvorenog koda
|
|
74
|
+
"Pretplatite se na OpenCode Go za 10 USD mjesečno i ostvarite pouzdan pristup najboljim modelima otvorenog koda.",
|
|
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,6 +148,8 @@ 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",
|
|
151
153
|
"ui.tool.questions": "Pitanja",
|
|
152
154
|
"ui.tool.questions.numbered": "Pitanja {{number}}",
|
|
153
155
|
"ui.tool.agent": "{{type}} Agent",
|
|
@@ -196,5 +198,5 @@ export const dict: Record<string, string> = {
|
|
|
196
198
|
"ui.question.review.notAnswered": "(bez odgovora)",
|
|
197
199
|
"ui.question.multiHint": "Odaberite sve primjenjive odgovore",
|
|
198
200
|
"ui.question.singleHint": "Odaberite jedan odgovor",
|
|
199
|
-
"ui.question.custom.placeholder": "Upišite svoj odgovor
|
|
201
|
+
"ui.question.custom.placeholder": "Upišite svoj odgovor...",
|
|
200
202
|
}
|
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 az OpenCode Go szolgáltatásra havi 10 dollárért, hogy megbízható hozzáférést kapjon a legjobb nyílt forráskódú modellekhez.",
|
|
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,6 +145,8 @@ 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",
|
|
148
150
|
"ui.tool.questions": "Kérdések",
|
|
149
151
|
"ui.tool.questions.numbered": "Kérdések {{number}}",
|
|
150
152
|
"ui.tool.agent": "{{type}} ügynök",
|
|
@@ -193,5 +195,5 @@ export const dict: Record<string, string> = {
|
|
|
193
195
|
"ui.question.review.notAnswered": "(nem válaszolt)",
|
|
194
196
|
"ui.question.multiHint": "Válassza ki az összes megfelelő választ",
|
|
195
197
|
"ui.question.singleHint": "Válasszon ki egy választ",
|
|
196
|
-
"ui.question.custom.placeholder": "Írja be a választ
|
|
198
|
+
"ui.question.custom.placeholder": "Írja be a választ...",
|
|
197
199
|
}
|
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 Go-ին՝ բաց կոդով լավագույն մոդելներին հուսալի մուտք ունենալու համար՝ ամսական $10 արժեքով:",
|
|
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,6 +143,8 @@ 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": "Կարդացեք անելիքները",
|
|
146
148
|
"ui.tool.questions": "Հարցեր",
|
|
147
149
|
"ui.tool.questions.numbered": "Հարցեր {{number}}",
|
|
148
150
|
"ui.tool.agent": "{{type}} Գործակալ",
|
|
@@ -191,5 +193,5 @@ export const dict: Record<string, string> = {
|
|
|
191
193
|
"ui.question.review.notAnswered": "(պատասխանված չէ)",
|
|
192
194
|
"ui.question.multiHint": "Ընտրեք բոլոր համապատասխան պատասխանները",
|
|
193
195
|
"ui.question.singleHint": "Ընտրեք մեկ պատասխան",
|
|
194
|
-
"ui.question.custom.placeholder": "Մուտքագրեք ձեր
|
|
196
|
+
"ui.question.custom.placeholder": "Մուտքագրեք ձեր պատասխանը...",
|
|
195
197
|
}
|
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 untuk akses andal ke model sumber terbuka terbaik
|
|
77
|
+
"Berlangganan OpenCode Go seharga $10/bulan untuk akses andal ke model sumber terbuka terbaik.",
|
|
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,6 +158,8 @@ 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",
|
|
161
163
|
"ui.tool.questions": "Pertanyaan",
|
|
162
164
|
"ui.tool.questions.numbered": "Pertanyaan {{number}}",
|
|
163
165
|
"ui.tool.agent": "Agen {{type}}",
|
|
@@ -213,5 +215,5 @@ export const dict: Record<string, string> = {
|
|
|
213
215
|
"ui.question.review.notAnswered": "(belum dijawab)",
|
|
214
216
|
"ui.question.multiHint": "Pilih semua jawaban yang sesuai",
|
|
215
217
|
"ui.question.singleHint": "Pilih satu jawaban",
|
|
216
|
-
"ui.question.custom.placeholder": "Ketik jawaban Anda
|
|
218
|
+
"ui.question.custom.placeholder": "Ketik jawaban Anda...",
|
|
217
219
|
}
|