@opencode-ai/ui 0.0.0-dev-18079 → 0.0.0-dev-202608241053
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/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 -219
- 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 -20
- 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 +13 -131
- package/src/{data-display/accordion → components}/accordion.css +26 -1
- 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 +1 -2
- package/src/context/i18n.tsx +14 -17
- package/src/hooks/create-auto-scroll.tsx +0 -20
- package/src/i18n/am.ts +3 -1
- package/src/i18n/ar.ts +3 -1
- package/src/i18n/az.ts +3 -1
- package/src/i18n/bg.ts +3 -1
- package/src/i18n/bn.ts +3 -1
- package/src/i18n/br.ts +3 -1
- package/src/i18n/bs.ts +3 -1
- package/src/i18n/ca.ts +3 -1
- package/src/i18n/cs.ts +3 -1
- package/src/i18n/da.ts +3 -1
- package/src/i18n/de.ts +3 -1
- package/src/i18n/dv.ts +3 -1
- package/src/i18n/dz.ts +3 -1
- package/src/i18n/el.ts +3 -1
- package/src/i18n/en.ts +5 -29
- package/src/i18n/es.ts +3 -1
- package/src/i18n/et.ts +3 -1
- package/src/i18n/fa.ts +3 -1
- package/src/i18n/fi.ts +3 -1
- package/src/i18n/fo.ts +3 -1
- package/src/i18n/fr.ts +3 -1
- package/src/i18n/hi.ts +3 -1
- package/src/i18n/hr.ts +3 -1
- package/src/i18n/hu.ts +3 -1
- package/src/i18n/hy.ts +3 -1
- package/src/i18n/id.ts +3 -1
- package/src/i18n/is.ts +3 -1
- package/src/i18n/it.ts +3 -1
- package/src/i18n/ja.ts +3 -1
- package/src/i18n/ka.ts +3 -1
- package/src/i18n/km.ts +3 -1
- package/src/i18n/ko.ts +3 -1
- package/src/i18n/lo.ts +3 -1
- package/src/i18n/lt.ts +3 -1
- package/src/i18n/lv.ts +3 -1
- package/src/i18n/mk.ts +3 -1
- package/src/i18n/mn.ts +3 -1
- package/src/i18n/ms.ts +3 -1
- package/src/i18n/my.ts +3 -1
- package/src/i18n/ne.ts +3 -1
- package/src/i18n/nl.ts +3 -1
- package/src/i18n/no.ts +3 -1
- package/src/i18n/pa.ts +3 -1
- package/src/i18n/pl.ts +3 -1
- package/src/i18n/ro.ts +3 -1
- package/src/i18n/ru.ts +3 -1
- package/src/i18n/si.ts +3 -1
- package/src/i18n/sk.ts +3 -1
- package/src/i18n/sl.ts +3 -1
- package/src/i18n/sq.ts +3 -1
- package/src/i18n/sr.ts +3 -1
- package/src/i18n/sv.ts +3 -1
- package/src/i18n/tg.ts +3 -1
- package/src/i18n/th.ts +3 -1
- package/src/i18n/tk.ts +3 -1
- package/src/i18n/tr.ts +3 -1
- package/src/i18n/uk.ts +3 -1
- package/src/i18n/ur.ts +3 -1
- package/src/i18n/uz.ts +3 -1
- package/src/i18n/vi.ts +3 -1
- package/src/i18n/zh.ts +3 -1
- package/src/i18n/zht.ts +3 -1
- 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/theme/context.tsx +11 -19
- package/src/theme/themes/oc-2.json +1 -3
- package/src/theme/v2/foreground.ts +0 -1
- 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 -46
- 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} +3 -3
- 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} +1 -122
- 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} +14 -21
- package/src/{typography/wordmark/wordmark.tsx → v2/components/wordmark-v2.tsx} +1 -1
- package/src/{styles/tokens → v2/styles}/theme.css +12 -8
- 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/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/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/context/i18n.tsx
CHANGED
|
@@ -1,24 +1,26 @@
|
|
|
1
1
|
import { createContext, useContext, type Accessor, type ParentProps } from "solid-js"
|
|
2
2
|
import { I18nProvider } from "@kobalte/core/i18n"
|
|
3
3
|
import { dict as en } from "../i18n/en"
|
|
4
|
-
import type { Key, LocaleKey, PluralCategory, PluralKey, PluralLookupKey } from "../i18n/en"
|
|
5
4
|
|
|
6
|
-
export type UiI18nKey =
|
|
7
|
-
|
|
8
|
-
export
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
5
|
+
export type UiI18nKey = keyof typeof en
|
|
6
|
+
|
|
7
|
+
export const UI_PLURAL_KEYS = [
|
|
8
|
+
"ui.sessionTurn.diffs.changed",
|
|
9
|
+
"ui.messagePart.context.read",
|
|
10
|
+
"ui.messagePart.context.search",
|
|
11
|
+
"ui.messagePart.context.list",
|
|
12
|
+
] as const
|
|
13
|
+
export type UiI18nPluralKey = (typeof UI_PLURAL_KEYS)[number]
|
|
14
|
+
export type UiPluralCategory = "zero" | "one" | "two" | "few" | "many" | "other"
|
|
15
|
+
export type UiI18nPluralLookupKey = `${UiI18nPluralKey}.${UiPluralCategory}`
|
|
12
16
|
|
|
13
17
|
export type UiI18nParams = Record<string, string | number | boolean>
|
|
14
|
-
export type UiTranslate = <Value extends string>(key: UiTranslationKey<Value>, params?: UiI18nParams) => string
|
|
15
18
|
|
|
16
19
|
export type UiI18n = {
|
|
17
20
|
locale: Accessor<string>
|
|
18
21
|
layoutLocale?: Accessor<string>
|
|
19
|
-
t:
|
|
22
|
+
t: (key: UiI18nKey, params?: UiI18nParams) => string
|
|
20
23
|
plural: (key: UiI18nPluralKey, count: number, params?: UiI18nParams) => string
|
|
21
|
-
pluralForm?: (key: UiI18nPluralKey, category: UiPluralCategory, params?: UiI18nParams) => string
|
|
22
24
|
}
|
|
23
25
|
|
|
24
26
|
const rules = new Map<string, Intl.PluralRules>()
|
|
@@ -48,16 +50,11 @@ function resolveTemplate(text: string, params?: UiI18nParams) {
|
|
|
48
50
|
const fallback: UiI18n = {
|
|
49
51
|
locale: () => "en",
|
|
50
52
|
t: (key, params) => {
|
|
51
|
-
const value = en[key
|
|
53
|
+
const value = en[key] ?? String(key)
|
|
52
54
|
return resolveTemplate(value, params)
|
|
53
55
|
},
|
|
54
56
|
plural: (key, count, params) =>
|
|
55
|
-
fallback.
|
|
56
|
-
pluralForm: (key, category, params) => {
|
|
57
|
-
const values = en as Partial<Record<UiI18nLocaleKey, string>>
|
|
58
|
-
const value = values[pluralKey(key, category)] ?? values[`${key}.other`] ?? `${key}.other`
|
|
59
|
-
return resolveTemplate(value, params)
|
|
60
|
-
},
|
|
57
|
+
fallback.t(pluralKey(key, pluralCategory(fallback.locale(), count)), { ...params, count }),
|
|
61
58
|
}
|
|
62
59
|
|
|
63
60
|
const Context = createContext<UiI18n>(fallback)
|
|
@@ -186,26 +186,6 @@ export function createAutoScroll(options: AutoScrollOptions) {
|
|
|
186
186
|
},
|
|
187
187
|
)
|
|
188
188
|
|
|
189
|
-
createEffect(() => {
|
|
190
|
-
const el = store.scrollRef
|
|
191
|
-
if (!el) return
|
|
192
|
-
const root = el.closest("main")
|
|
193
|
-
if (!root) return
|
|
194
|
-
let connected = el.isConnected
|
|
195
|
-
const contains = (node: Node) => node === el || (node instanceof Element && node.contains(el))
|
|
196
|
-
const observer = new MutationObserver((records) => {
|
|
197
|
-
records.forEach((record) => {
|
|
198
|
-
if ([...record.removedNodes].some(contains)) connected = false
|
|
199
|
-
if (!record.addedNodes.length || ![...record.addedNodes].some(contains)) return
|
|
200
|
-
const reattached = !connected
|
|
201
|
-
connected = true
|
|
202
|
-
if (reattached) scrollToBottom(false)
|
|
203
|
-
})
|
|
204
|
-
})
|
|
205
|
-
observer.observe(root, { childList: true })
|
|
206
|
-
onCleanup(() => observer.disconnect())
|
|
207
|
-
})
|
|
208
|
-
|
|
209
189
|
createEffect(
|
|
210
190
|
on(options.working, (working: boolean) => {
|
|
211
191
|
settling = false
|
package/src/i18n/am.ts
CHANGED
|
@@ -68,7 +68,7 @@ export const dict: Record<string, string> = {
|
|
|
68
68
|
"ui.sessionTurn.error.freeUsageExceeded": "ነፃ አጠቃቀም ታልፏል",
|
|
69
69
|
"ui.sessionTurn.error.addCredits": "ክሬዲት አክል",
|
|
70
70
|
"dialog.usageExceeded.freeTier.title": "ነፃ ገደብ ላይ ደርሷል",
|
|
71
|
-
"dialog.usageExceeded.freeTier.description": "
|
|
71
|
+
"dialog.usageExceeded.freeTier.description": "ለምርጥ ክፍት ምንጭ ሞዴሎች ታማኝ መዳረሻ ለማግኘት በወር $10 ለOpenCode Go ይመዝገቡ።",
|
|
72
72
|
"dialog.usageExceeded.freeTier.actionLabel": "ለደንበኝነት ይመዝገቡ",
|
|
73
73
|
"dialog.usageExceeded.accountRateLimit.title": "የሂድ ገደብ ላይ ደርሷል",
|
|
74
74
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -142,6 +142,8 @@ export const dict: Record<string, string> = {
|
|
|
142
142
|
"ui.tool.websearch.provider": "{{provider}}ድር ፍለጋ",
|
|
143
143
|
"ui.tool.shell": "ሼል",
|
|
144
144
|
"ui.tool.patch": "Patch",
|
|
145
|
+
"ui.tool.todos": "የሚደረጉ ነገሮች",
|
|
146
|
+
"ui.tool.todos.read": "ወደ-ድርጊት አንብብ",
|
|
145
147
|
"ui.tool.questions": "ጥያቄዎች",
|
|
146
148
|
"ui.tool.questions.numbered": "ጥያቄዎች {{number}}",
|
|
147
149
|
"ui.tool.agent": "{{type}} ወኪል",
|
package/src/i18n/ar.ts
CHANGED
|
@@ -77,7 +77,7 @@ export const dict = {
|
|
|
77
77
|
|
|
78
78
|
"dialog.usageExceeded.freeTier.title": "تم الوصول إلى الحد المجاني",
|
|
79
79
|
"dialog.usageExceeded.freeTier.description":
|
|
80
|
-
"اشترك في OpenCode Go للحصول على وصول موثوق إلى أفضل النماذج مفتوحة
|
|
80
|
+
"اشترك في OpenCode Go مقابل $10/شهر للحصول على وصول موثوق إلى أفضل النماذج مفتوحة المصدر.",
|
|
81
81
|
"dialog.usageExceeded.freeTier.actionLabel": "اشترك",
|
|
82
82
|
"dialog.usageExceeded.accountRateLimit.title": "تم الوصول إلى حد Go",
|
|
83
83
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -167,6 +167,8 @@ export const dict = {
|
|
|
167
167
|
"ui.tool.websearch.provider": "{{provider}} بحث الويب",
|
|
168
168
|
"ui.tool.shell": "Shell",
|
|
169
169
|
"ui.tool.patch": "تطبيق رقعة",
|
|
170
|
+
"ui.tool.todos": "المهام",
|
|
171
|
+
"ui.tool.todos.read": "قراءة المهام",
|
|
170
172
|
"ui.tool.questions": "أسئلة",
|
|
171
173
|
"ui.tool.questions.numbered": "أسئلة {{number}}",
|
|
172
174
|
"ui.tool.agent": "وكيل {{type}}",
|
package/src/i18n/az.ts
CHANGED
|
@@ -69,7 +69,7 @@ export const dict: Record<string, string> = {
|
|
|
69
69
|
"ui.sessionTurn.error.addCredits": "Kredit əlavə et",
|
|
70
70
|
"dialog.usageExceeded.freeTier.title": "Pulsuz limitə çatdınız",
|
|
71
71
|
"dialog.usageExceeded.freeTier.description":
|
|
72
|
-
"Ayda $
|
|
72
|
+
"Ayda $10 olan OpenCode Go abunəliyi ilə ən yaxşı açıq mənbəli modellərə etibarlı giriş əldə edin.",
|
|
73
73
|
"dialog.usageExceeded.freeTier.actionLabel": "Abunə ol",
|
|
74
74
|
"dialog.usageExceeded.accountRateLimit.title": "Go limitinə çatdınız",
|
|
75
75
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -143,6 +143,8 @@ export const dict: Record<string, string> = {
|
|
|
143
143
|
"ui.tool.websearch.provider": "{{provider}} Veb axtarışı",
|
|
144
144
|
"ui.tool.shell": "Shell",
|
|
145
145
|
"ui.tool.patch": "Patch",
|
|
146
|
+
"ui.tool.todos": "Tapşırıqlar",
|
|
147
|
+
"ui.tool.todos.read": "Tapşırıqları oxu",
|
|
146
148
|
"ui.tool.questions": "Suallar",
|
|
147
149
|
"ui.tool.questions.numbered": "Suallar {{number}}",
|
|
148
150
|
"ui.tool.agent": "{{type}} Agent",
|
package/src/i18n/bg.ts
CHANGED
|
@@ -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 за надежден достъп до най-добрите модели с отворен код за $10/месец.",
|
|
73
73
|
"dialog.usageExceeded.freeTier.actionLabel": "Абонирайте се",
|
|
74
74
|
"dialog.usageExceeded.accountRateLimit.title": "Лимитът за движение е достигнат",
|
|
75
75
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -143,6 +143,8 @@ 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": "Прочетете задачи",
|
|
146
148
|
"ui.tool.questions": "Въпроси",
|
|
147
149
|
"ui.tool.questions.numbered": "Въпроси {{number}}",
|
|
148
150
|
"ui.tool.agent": "{{type}} Агент",
|
package/src/i18n/bn.ts
CHANGED
|
@@ -71,7 +71,7 @@ export const dict: Record<string, string> = {
|
|
|
71
71
|
"ui.sessionTurn.error.addCredits": "ক্রেডিট যোগ করুন",
|
|
72
72
|
"dialog.usageExceeded.freeTier.title": "বিনামূল্যের সীমা পৌঁছেছে",
|
|
73
73
|
"dialog.usageExceeded.freeTier.description":
|
|
74
|
-
"
|
|
74
|
+
"সেরা ওপেন-সোর্স মডেলগুলিতে নির্ভরযোগ্য অ্যাক্সেসের জন্য $10/মাসে OpenCode Go-তে সদস্যতা নিন৷",
|
|
75
75
|
"dialog.usageExceeded.freeTier.actionLabel": "সদস্যতা",
|
|
76
76
|
"dialog.usageExceeded.accountRateLimit.title": "যাওয়ার সীমা পৌঁছে গেছে",
|
|
77
77
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -145,6 +145,8 @@ export const dict: Record<string, string> = {
|
|
|
145
145
|
"ui.tool.websearch.provider": "{{provider}} Web Search",
|
|
146
146
|
"ui.tool.shell": "শেল",
|
|
147
147
|
"ui.tool.patch": "প্যাচ",
|
|
148
|
+
"ui.tool.todos": "করণীয়",
|
|
149
|
+
"ui.tool.todos.read": "করণীয় পড়ুন",
|
|
148
150
|
"ui.tool.questions": "প্রশ্ন",
|
|
149
151
|
"ui.tool.questions.numbered": "প্রশ্ন {{number}}",
|
|
150
152
|
"ui.tool.agent": "{{type}} এজেন্ট",
|
package/src/i18n/br.ts
CHANGED
|
@@ -74,7 +74,7 @@ export const dict = {
|
|
|
74
74
|
|
|
75
75
|
"dialog.usageExceeded.freeTier.title": "Limite gratuito atingido",
|
|
76
76
|
"dialog.usageExceeded.freeTier.description":
|
|
77
|
-
"Assine o OpenCode Go para ter acesso confiável aos melhores modelos de código aberto
|
|
77
|
+
"Assine o OpenCode Go por $10/mês para ter acesso confiável aos melhores modelos de código aberto.",
|
|
78
78
|
"dialog.usageExceeded.freeTier.actionLabel": "Assinar",
|
|
79
79
|
"dialog.usageExceeded.accountRateLimit.title": "Limite do Go atingido",
|
|
80
80
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -155,6 +155,8 @@ export const dict = {
|
|
|
155
155
|
"ui.tool.websearch.provider": "{{provider}} Pesquisa na web",
|
|
156
156
|
"ui.tool.shell": "Shell",
|
|
157
157
|
"ui.tool.patch": "Patch",
|
|
158
|
+
"ui.tool.todos": "Tarefas",
|
|
159
|
+
"ui.tool.todos.read": "Ler tarefas",
|
|
158
160
|
"ui.tool.questions": "Perguntas",
|
|
159
161
|
"ui.tool.questions.numbered": "Perguntas {{number}}",
|
|
160
162
|
"ui.tool.agent": "Agente {{type}}",
|
package/src/i18n/bs.ts
CHANGED
|
@@ -78,7 +78,7 @@ export const dict = {
|
|
|
78
78
|
|
|
79
79
|
"dialog.usageExceeded.freeTier.title": "Dostignut besplatan limit",
|
|
80
80
|
"dialog.usageExceeded.freeTier.description":
|
|
81
|
-
"Pretplati se na OpenCode Go za pouzdan pristup najboljim modelima otvorenog koda
|
|
81
|
+
"Pretplati se na OpenCode Go za $10/mjesec i ostvari pouzdan pristup najboljim modelima otvorenog koda.",
|
|
82
82
|
"dialog.usageExceeded.freeTier.actionLabel": "Pretplati se",
|
|
83
83
|
"dialog.usageExceeded.accountRateLimit.title": "Dostignut Go limit",
|
|
84
84
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -159,6 +159,8 @@ export const dict = {
|
|
|
159
159
|
"ui.tool.websearch.provider": "{{provider}} Pretraga weba",
|
|
160
160
|
"ui.tool.shell": "Shell",
|
|
161
161
|
"ui.tool.patch": "Patch",
|
|
162
|
+
"ui.tool.todos": "Lista zadataka",
|
|
163
|
+
"ui.tool.todos.read": "Čitanje liste zadataka",
|
|
162
164
|
"ui.tool.questions": "Pitanja",
|
|
163
165
|
"ui.tool.questions.numbered": "Pitanja {{number}}",
|
|
164
166
|
"ui.tool.agent": "{{type}} agent",
|
package/src/i18n/ca.ts
CHANGED
|
@@ -70,7 +70,7 @@ export const dict: Record<string, string> = {
|
|
|
70
70
|
"ui.sessionTurn.error.addCredits": "Afegeix crèdits",
|
|
71
71
|
"dialog.usageExceeded.freeTier.title": "S'ha arribat al límit gratuït",
|
|
72
72
|
"dialog.usageExceeded.freeTier.description":
|
|
73
|
-
"Subscriviu-vos a OpenCode Go per
|
|
73
|
+
"Subscriviu-vos a OpenCode Go per 10 dòlars al mes i obteniu accés fiable als millors models de codi obert.",
|
|
74
74
|
"dialog.usageExceeded.freeTier.actionLabel": "Subscriu-te",
|
|
75
75
|
"dialog.usageExceeded.accountRateLimit.title": "S'ha assolit el límit de Go",
|
|
76
76
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -147,6 +147,8 @@ export const dict: Record<string, string> = {
|
|
|
147
147
|
"ui.tool.websearch.provider": "{{provider}} Cerca web",
|
|
148
148
|
"ui.tool.shell": "Shell",
|
|
149
149
|
"ui.tool.patch": "Pedaç",
|
|
150
|
+
"ui.tool.todos": "Coses pendents",
|
|
151
|
+
"ui.tool.todos.read": "Llegir tasques pendents",
|
|
150
152
|
"ui.tool.questions": "Preguntes",
|
|
151
153
|
"ui.tool.questions.numbered": "Preguntes {{number}}",
|
|
152
154
|
"ui.tool.agent": "{{type}} Agent",
|
package/src/i18n/cs.ts
CHANGED
|
@@ -71,7 +71,7 @@ export const dict: Record<string, string> = {
|
|
|
71
71
|
"ui.sessionTurn.error.addCredits": "Přidejte kredity",
|
|
72
72
|
"dialog.usageExceeded.freeTier.title": "Dosažen limit zdarma",
|
|
73
73
|
"dialog.usageExceeded.freeTier.description":
|
|
74
|
-
"Předplaťte si OpenCode Go a získejte spolehlivý přístup k nejlepším modelům s otevřeným zdrojovým kódem
|
|
74
|
+
"Předplaťte si OpenCode Go za 10 USD měsíčně a získejte spolehlivý přístup k nejlepším modelům s otevřeným zdrojovým kódem.",
|
|
75
75
|
"dialog.usageExceeded.freeTier.actionLabel": "Přihlásit se k odběru",
|
|
76
76
|
"dialog.usageExceeded.accountRateLimit.title": "Dosažen limit služby Go",
|
|
77
77
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -151,6 +151,8 @@ export const dict: Record<string, string> = {
|
|
|
151
151
|
"ui.tool.websearch.provider": "{{provider}} Vyhledávání na webu",
|
|
152
152
|
"ui.tool.shell": "Shell",
|
|
153
153
|
"ui.tool.patch": "Patch",
|
|
154
|
+
"ui.tool.todos": "Úkoly",
|
|
155
|
+
"ui.tool.todos.read": "Přečtěte si úkoly",
|
|
154
156
|
"ui.tool.questions": "Otázky",
|
|
155
157
|
"ui.tool.questions.numbered": "Otázky {{number}}",
|
|
156
158
|
"ui.tool.agent": "{{type}} Agent",
|
package/src/i18n/da.ts
CHANGED
|
@@ -71,7 +71,7 @@ export const dict = {
|
|
|
71
71
|
|
|
72
72
|
"dialog.usageExceeded.freeTier.title": "Gratis grænse nået",
|
|
73
73
|
"dialog.usageExceeded.freeTier.description":
|
|
74
|
-
"Abonnér på OpenCode Go for pålidelig adgang til de bedste open source-modeller
|
|
74
|
+
"Abonnér på OpenCode Go for $10/måned, og få pålidelig adgang til de bedste open source-modeller.",
|
|
75
75
|
"dialog.usageExceeded.freeTier.actionLabel": "Abonnér",
|
|
76
76
|
"dialog.usageExceeded.accountRateLimit.title": "Go-grænse nået",
|
|
77
77
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -130,6 +130,8 @@ export const dict = {
|
|
|
130
130
|
"ui.tool.websearch.provider": "{{provider}} Websøgning",
|
|
131
131
|
"ui.tool.shell": "Shell",
|
|
132
132
|
"ui.tool.patch": "Patch",
|
|
133
|
+
"ui.tool.todos": "Opgaver",
|
|
134
|
+
"ui.tool.todos.read": "Læs opgaver",
|
|
133
135
|
"ui.tool.questions": "Spørgsmål",
|
|
134
136
|
"ui.tool.questions.numbered": "Spørgsmål {{number}}",
|
|
135
137
|
"ui.tool.agent": "{{type}}-agent",
|
package/src/i18n/de.ts
CHANGED
|
@@ -78,7 +78,7 @@ export const dict = {
|
|
|
78
78
|
|
|
79
79
|
"dialog.usageExceeded.freeTier.title": "Kostenloses Limit erreicht",
|
|
80
80
|
"dialog.usageExceeded.freeTier.description":
|
|
81
|
-
"OpenCode Go abonnieren und zuverlässigen Zugriff auf die besten Open-Source-Modelle erhalten
|
|
81
|
+
"OpenCode Go für 10 $ pro Monat abonnieren und zuverlässigen Zugriff auf die besten Open-Source-Modelle erhalten.",
|
|
82
82
|
"dialog.usageExceeded.freeTier.actionLabel": "Abonnieren",
|
|
83
83
|
"dialog.usageExceeded.accountRateLimit.title": "Go-Limit erreicht",
|
|
84
84
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -137,6 +137,8 @@ export const dict = {
|
|
|
137
137
|
"ui.tool.websearch.provider": "{{provider}} Web-Suche",
|
|
138
138
|
"ui.tool.shell": "Shell",
|
|
139
139
|
"ui.tool.patch": "Patch",
|
|
140
|
+
"ui.tool.todos": "Aufgaben",
|
|
141
|
+
"ui.tool.todos.read": "Aufgaben lesen",
|
|
140
142
|
"ui.tool.questions": "Fragen",
|
|
141
143
|
"ui.tool.questions.numbered": "Fragen {{number}}",
|
|
142
144
|
"ui.tool.agent": "{{type}}-Agent",
|
package/src/i18n/dv.ts
CHANGED
|
@@ -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
|
-
"އެންމެ ރަނގަޅު އޮޕަން ސޯސް މޮޑެލްތަކަށް އިތުބާރުހުރި ގޮތެއްގައި އެކްސެސް ހޯދުމަށް OpenCode Go އަށް ސަބްސްކްރައިބް
|
|
73
|
+
"އެންމެ ރަނގަޅު އޮޕަން ސޯސް މޮޑެލްތަކަށް އިތުބާރުހުރި ގޮތެއްގައި އެކްސެސް ހޯދުމަށް މަހަކު 10 ޑޮލަރަށް OpenCode Go އަށް ސަބްސްކްރައިބް ކޮށްލައްވާ.",
|
|
74
74
|
"dialog.usageExceeded.freeTier.actionLabel": "ސަބްސްކްރައިބް ކޮށްލައްވާ",
|
|
75
75
|
"dialog.usageExceeded.accountRateLimit.title": "ގޯ ލިމިޓް އާދެވުނެވެ",
|
|
76
76
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -144,6 +144,8 @@ export const dict: Record<string, string> = {
|
|
|
144
144
|
"ui.tool.websearch.provider": "{{provider}} ވެބް ސަރޗް",
|
|
145
145
|
"ui.tool.shell": "ޝެލް",
|
|
146
146
|
"ui.tool.patch": "ޕެޗް",
|
|
147
|
+
"ui.tool.todos": "ޓޫ-ޑޯސް",
|
|
148
|
+
"ui.tool.todos.read": "ޓޫ-ޑޯސް ކިޔާށެވެ",
|
|
147
149
|
"ui.tool.questions": "ސުވާލުތަކެވެ",
|
|
148
150
|
"ui.tool.questions.numbered": "ސުވާލުތައް {{number}}",
|
|
149
151
|
"ui.tool.agent": "{{type}} އޭޖެންޓް",
|
package/src/i18n/dz.ts
CHANGED
|
@@ -71,7 +71,7 @@ export const dict: Record<string, string> = {
|
|
|
71
71
|
"ui.sessionTurn.error.addCredits": "སྐྱིན་འགྲུལ་ཁ་སྐོང་བརྐྱབ།",
|
|
72
72
|
"dialog.usageExceeded.freeTier.title": "རིན་མེད་ཚད་ལུ་ལྷོད་ཡོདཔ།",
|
|
73
73
|
"dialog.usageExceeded.freeTier.description":
|
|
74
|
-
"OpenCode
|
|
74
|
+
"OpenCode Go ལུ་ཟླཝ་རེར་ $10 གྱིས་མཁོ་མངགས་འབད་དེ་ ཁ་ཕྱེ་ཡོད་པའི་ཐོན་ཁུངས་དཔེ་ཚད་དྲག་ཤོས་ཚུ་ལུ་བློ་གཏད་ཅན་གྱི་འཛུལ་སྤྱོད་ཐོབ།",
|
|
75
75
|
"dialog.usageExceeded.freeTier.actionLabel": "མཁོ་མངགས་འབད།",
|
|
76
76
|
"dialog.usageExceeded.accountRateLimit.title": "འགྱོ་ཚད་ལུ་ལྷོད་ཡོདཔ།",
|
|
77
77
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -145,6 +145,8 @@ export const dict: Record<string, string> = {
|
|
|
145
145
|
"ui.tool.websearch.provider": "{{provider}} Web Search",
|
|
146
146
|
"ui.tool.shell": "Shell",
|
|
147
147
|
"ui.tool.patch": "ལྷནམ",
|
|
148
|
+
"ui.tool.todos": "འབད་དགོཔ་ཚུ།",
|
|
149
|
+
"ui.tool.todos.read": "ལཱ་འབད་དགོཔ་ལྷག།",
|
|
148
150
|
"ui.tool.questions": "དྲི་བ།",
|
|
149
151
|
"ui.tool.questions.numbered": "དྲི་བ།{{number}}།",
|
|
150
152
|
"ui.tool.agent": "{{type}} ལས་ཚན།",
|
package/src/i18n/el.ts
CHANGED
|
@@ -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":
|
|
@@ -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}}",
|
package/src/i18n/en.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const
|
|
1
|
+
export const dict: Record<string, string> = {
|
|
2
2
|
"ui.sessionReview.title": "Session changes",
|
|
3
3
|
"ui.sessionReview.title.git": "Git changes",
|
|
4
4
|
"ui.sessionReview.title.branch": "Branch changes",
|
|
@@ -75,7 +75,7 @@ const source = {
|
|
|
75
75
|
|
|
76
76
|
"dialog.usageExceeded.freeTier.title": "Free limit reached",
|
|
77
77
|
"dialog.usageExceeded.freeTier.description":
|
|
78
|
-
"Subscribe to OpenCode Go for reliable access to the best open-source models
|
|
78
|
+
"Subscribe to OpenCode Go for reliable access to the best open-source models for $10/month.",
|
|
79
79
|
"dialog.usageExceeded.freeTier.actionLabel": "Subscribe",
|
|
80
80
|
"dialog.usageExceeded.accountRateLimit.title": "Go limit reached",
|
|
81
81
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -108,8 +108,6 @@ const source = {
|
|
|
108
108
|
"ui.messagePart.context.search.other": "{{count}} searches",
|
|
109
109
|
"ui.messagePart.context.list.one": "{{count}} list",
|
|
110
110
|
"ui.messagePart.context.list.other": "{{count}} lists",
|
|
111
|
-
"ui.messagePart.context.match.one": "({{count}} match)",
|
|
112
|
-
"ui.messagePart.context.match.other": "({{count}} matches)",
|
|
113
111
|
|
|
114
112
|
"ui.list.loading": "Loading",
|
|
115
113
|
"ui.list.empty": "No results",
|
|
@@ -152,8 +150,6 @@ const source = {
|
|
|
152
150
|
|
|
153
151
|
"ui.tool.read": "Read",
|
|
154
152
|
"ui.tool.loaded": "Loaded",
|
|
155
|
-
"ui.tool.loadedFile": "Loaded {{path}}",
|
|
156
|
-
"ui.tool.loadedSkill": "Loaded {{name}} skill",
|
|
157
153
|
"ui.tool.list": "List",
|
|
158
154
|
"ui.tool.glob": "Glob",
|
|
159
155
|
"ui.tool.grep": "Grep",
|
|
@@ -162,14 +158,13 @@ const source = {
|
|
|
162
158
|
"ui.tool.websearch": "Web Search",
|
|
163
159
|
"ui.tool.websearch.provider": "{{provider}} Web Search",
|
|
164
160
|
"ui.tool.shell": "Shell",
|
|
165
|
-
"ui.tool.shell.writingCommand": "Writing command...",
|
|
166
|
-
"ui.tool.execute": "Execute",
|
|
167
161
|
"ui.tool.patch": "Patch",
|
|
162
|
+
"ui.tool.todos": "To-dos",
|
|
163
|
+
"ui.tool.todos.read": "Read to-dos",
|
|
168
164
|
"ui.tool.questions": "Questions",
|
|
169
165
|
"ui.tool.questions.numbered": "Questions {{number}}",
|
|
170
166
|
"ui.tool.agent": "{{type}} Agent",
|
|
171
167
|
"ui.tool.agent.default": "Agent",
|
|
172
|
-
"ui.tool.agent.delegating": "Delegating agent...",
|
|
173
168
|
"ui.tool.skill": "Skill",
|
|
174
169
|
|
|
175
170
|
"ui.basicTool.called": "Called `{{tool}}`",
|
|
@@ -192,8 +187,6 @@ const source = {
|
|
|
192
187
|
"ui.common.next": "Next",
|
|
193
188
|
"ui.common.submit": "Submit",
|
|
194
189
|
"ui.common.showMore": "Show more",
|
|
195
|
-
"ui.common.moreCount.one": "+{{count}} more",
|
|
196
|
-
"ui.common.moreCount.other": "+{{count}} more",
|
|
197
190
|
|
|
198
191
|
"ui.permission.deny": "Deny",
|
|
199
192
|
"ui.permission.allowAlways": "Allow always",
|
|
@@ -210,14 +203,6 @@ const source = {
|
|
|
210
203
|
"ui.message.duration.seconds": "{{count}}s",
|
|
211
204
|
"ui.message.duration.minutesSeconds": "{{minutes}}m {{seconds}}s",
|
|
212
205
|
"ui.message.interrupted": "Interrupted",
|
|
213
|
-
"ui.sessionTimeline.notice.model": "Model",
|
|
214
|
-
"ui.sessionTimeline.notice.modelSwitched": "Switched to {{model}}",
|
|
215
|
-
"ui.sessionTimeline.notice.movedTo": "Moved to",
|
|
216
|
-
"ui.sessionTimeline.notice.movedTooltip": "Session working directory changed",
|
|
217
|
-
"ui.sessionTimeline.notice.failed": "{{actor}} failed",
|
|
218
|
-
"ui.sessionTimeline.notice.cancelled": "{{actor}} cancelled",
|
|
219
|
-
"ui.sessionTimeline.notice.finished": "{{actor}} finished",
|
|
220
|
-
"ui.sessionTimeline.notice.instructionsUpdated": "Instructions updated",
|
|
221
206
|
"ui.message.queued": "Queued",
|
|
222
207
|
"ui.message.attachment.alt": "attachment",
|
|
223
208
|
|
|
@@ -232,13 +217,4 @@ const source = {
|
|
|
232
217
|
"ui.question.multiHint": "Select all answers that apply",
|
|
233
218
|
"ui.question.singleHint": "Select one answer",
|
|
234
219
|
"ui.question.custom.placeholder": "Type your answer...",
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
export type Key = keyof typeof source
|
|
238
|
-
export type PluralCategory = "zero" | "one" | "two" | "few" | "many" | "other"
|
|
239
|
-
export type PluralKey = {
|
|
240
|
-
[Entry in Key]: Entry extends `${infer Base}.other` ? (`${Base}.one` extends Key ? Base : never) : never
|
|
241
|
-
}[Key]
|
|
242
|
-
export type PluralLookupKey = `${PluralKey}.${PluralCategory}`
|
|
243
|
-
export type LocaleKey = Key | PluralLookupKey
|
|
244
|
-
export const dict: typeof source & Record<string, string> = source
|
|
220
|
+
}
|
package/src/i18n/es.ts
CHANGED
|
@@ -74,7 +74,7 @@ export const dict = {
|
|
|
74
74
|
|
|
75
75
|
"dialog.usageExceeded.freeTier.title": "Límite gratuito alcanzado",
|
|
76
76
|
"dialog.usageExceeded.freeTier.description":
|
|
77
|
-
"Suscríbete a OpenCode Go para acceder de forma fiable a los mejores modelos de código abierto
|
|
77
|
+
"Suscríbete a OpenCode Go por 10 USD al mes para acceder de forma fiable a los mejores modelos de código abierto.",
|
|
78
78
|
"dialog.usageExceeded.freeTier.actionLabel": "Suscribirse",
|
|
79
79
|
"dialog.usageExceeded.accountRateLimit.title": "Límite de Go alcanzado",
|
|
80
80
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -155,6 +155,8 @@ export const dict = {
|
|
|
155
155
|
"ui.tool.websearch.provider": "{{provider}} Búsqueda web",
|
|
156
156
|
"ui.tool.shell": "Shell",
|
|
157
157
|
"ui.tool.patch": "Parche",
|
|
158
|
+
"ui.tool.todos": "Tareas",
|
|
159
|
+
"ui.tool.todos.read": "Leer tareas",
|
|
158
160
|
"ui.tool.questions": "Preguntas",
|
|
159
161
|
"ui.tool.questions.numbered": "Preguntas {{number}}",
|
|
160
162
|
"ui.tool.agent": "Agente {{type}}",
|
package/src/i18n/et.ts
CHANGED
|
@@ -69,7 +69,7 @@ export const dict: Record<string, string> = {
|
|
|
69
69
|
"ui.sessionTurn.error.addCredits": "Lisa krediite",
|
|
70
70
|
"dialog.usageExceeded.freeTier.title": "Tasuta limiit on täis",
|
|
71
71
|
"dialog.usageExceeded.freeTier.description":
|
|
72
|
-
"Tellige OpenCode, et saada usaldusväärne juurdepääs parimatele avatud lähtekoodiga mudelitele
|
|
72
|
+
"Tellige OpenCode Go 10 dollari eest kuus, et saada usaldusväärne juurdepääs parimatele avatud lähtekoodiga mudelitele.",
|
|
73
73
|
"dialog.usageExceeded.freeTier.actionLabel": "Telli",
|
|
74
74
|
"dialog.usageExceeded.accountRateLimit.title": "Go limiit on täis",
|
|
75
75
|
"dialog.usageExceeded.accountRateLimit.description":
|
|
@@ -143,6 +143,8 @@ export const dict: Record<string, string> = {
|
|
|
143
143
|
"ui.tool.websearch.provider": "{{provider}} Veebiotsing",
|
|
144
144
|
"ui.tool.shell": "Shell",
|
|
145
145
|
"ui.tool.patch": "Patch",
|
|
146
|
+
"ui.tool.todos": "Ülesanded",
|
|
147
|
+
"ui.tool.todos.read": "Lugege ülesandeid",
|
|
146
148
|
"ui.tool.questions": "Küsimused",
|
|
147
149
|
"ui.tool.questions.numbered": "Küsimused {{number}}",
|
|
148
150
|
"ui.tool.agent": "{{type}} Agent",
|
package/src/i18n/fa.ts
CHANGED
|
@@ -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":
|
|
@@ -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}}",
|
package/src/i18n/fi.ts
CHANGED
|
@@ -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",
|
package/src/i18n/fo.ts
CHANGED
|
@@ -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":
|
|
@@ -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",
|
package/src/i18n/fr.ts
CHANGED
|
@@ -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":
|
|
@@ -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}}",
|
package/src/i18n/hi.ts
CHANGED
|
@@ -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":
|
|
@@ -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}} एजेंट",
|
package/src/i18n/hr.ts
CHANGED
|
@@ -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":
|
|
@@ -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",
|
package/src/i18n/hu.ts
CHANGED
|
@@ -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":
|
|
@@ -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",
|