Compare commits

...

3 Commits

Author SHA1 Message Date
Hona 9876d7aa7c refactor(i18n): centralize locale-aware rendering 2026-08-09 17:13:17 +00:00
opencode-agent[bot] 0bff28de09 fix(stats): fall back after full sync failure (#41411) 2026-08-09 10:58:58 -05:00
opencode-agent[bot] 38e10eb140 fix(opencode): ignore unknown config fields (#41312) 2026-08-08 14:53:43 -04:00
76 changed files with 372 additions and 556 deletions
+17
View File
@@ -167,6 +167,23 @@ describe("i18n parity", () => {
}
}
})
test("UI rich templates keep exactly one typed slot", async () => {
const expected = {
"ui.lineComment.label": "selection",
"ui.lineComment.editorLabel": "selection",
"ui.list.emptyWithFilter": "query",
} as const
const legacy = Object.keys(expected).flatMap((key) => [`${key}.prefix`, `${key}.suffix`])
for (const locale of ["en", ...appLocales]) {
const target = await dictionary(`../../../ui/src/i18n/${locale}.ts`)
for (const [key, slot] of Object.entries(expected)) {
expect({ locale, key, placeholders: placeholders(target[key]) }).toEqual({ locale, key, placeholders: [slot] })
}
expect({ locale, legacy: legacy.filter((key) => Object.hasOwn(target, key)) }).toEqual({ locale, legacy: [] })
}
})
})
describe("i18n plural parity", () => {
@@ -37,8 +37,7 @@ export function useUsageExceededDialogs() {
const sdk = useSDK()
const dialog = useDialog()
const { params } = useSessionLayout()
const { t, locale } = useI18n()
const isEnglish = () => locale() === "en"
const { tDynamic } = useI18n()
const [goUpsellState, setGoUpsellState] = persisted(
Persist.global("go-upsell"),
@@ -68,9 +67,9 @@ export function useUsageExceededDialogs() {
if (action.reason === "free_tier_limit") {
dialog.show(() => (
<DialogUsageExceeded
title={isEnglish() ? action.title : t("dialog.usageExceeded.freeTier.title")}
description={isEnglish() ? action.message : t("dialog.usageExceeded.freeTier.description")}
actionLabel={isEnglish() ? action.label : t("dialog.usageExceeded.freeTier.actionLabel")}
title={tDynamic("dialog.usageExceeded.freeTier.title", action.title)}
description={tDynamic("dialog.usageExceeded.freeTier.description", action.message)}
actionLabel={tDynamic("dialog.usageExceeded.freeTier.actionLabel", action.label)}
link={action.link}
onClose={(dontShowAgain) => {
setGoUpsellState(keys.lastSeenAt, Date.now())
@@ -88,9 +87,9 @@ export function useUsageExceededDialogs() {
} else if (action.reason === "account_rate_limit") {
dialog.show(() => (
<DialogUsageExceeded
title={isEnglish() ? action.title : t("dialog.usageExceeded.accountRateLimit.title")}
description={isEnglish() ? action.message : t("dialog.usageExceeded.accountRateLimit.description")}
actionLabel={isEnglish() ? action.label : t("dialog.usageExceeded.accountRateLimit.actionLabel")}
title={tDynamic("dialog.usageExceeded.accountRateLimit.title", action.title)}
description={tDynamic("dialog.usageExceeded.accountRateLimit.description", action.message)}
actionLabel={tDynamic("dialog.usageExceeded.accountRateLimit.actionLabel", action.label)}
link={action.link}
onClose={(dontShowAgain) => {
setGoUpsellState(keys.lastSeenAt, Date.now())
+5 -23
View File
@@ -37,22 +37,11 @@ export function schema<S extends EffectSchema.Decoder<unknown, never>>(
data: unknown,
source: string,
): DeepMutable<S["Type"]> {
const extra = topLevelExtraKeys(schema, data)
if (extra.length) {
throw new InvalidError({
path: source,
issues: [
{
code: "unrecognized_keys",
keys: extra,
path: [],
message: `Unrecognized key${extra.length === 1 ? "" : "s"}: ${extra.join(", ")}`,
},
],
})
}
const decoded = EffectSchema.decodeUnknownExit(schema)(data, { errors: "all", propertyOrder: "original" })
const decoded = EffectSchema.decodeUnknownExit(schema)(data, {
errors: "all",
onExcessProperty: "ignore",
propertyOrder: "original",
})
if (Exit.isSuccess(decoded)) return decoded.value as DeepMutable<S["Type"]>
const error = Cause.squash(decoded.cause)
@@ -70,10 +59,3 @@ export function schema<S extends EffectSchema.Decoder<unknown, never>>(
{ cause: error },
)
}
function topLevelExtraKeys(schema: EffectSchema.Top, data: unknown) {
if (typeof data !== "object" || data === null || Array.isArray(data)) return []
if (schema.ast._tag !== "Objects" || schema.ast.indexSignatures.length > 0) return []
const known = new Set(schema.ast.propertySignatures.map((item) => String(item.name)))
return Object.keys(data).filter((key) => !known.has(key))
}
+5 -10
View File
@@ -597,12 +597,12 @@ accountTokenIt.instance("resolves env templates in account config with account t
}),
)
it.instance("validates config schema and throws on invalid fields", () =>
it.instance("validates config schema and throws on invalid values", () =>
Effect.gen(function* () {
const test = yield* TestInstance
yield* writeConfigEffect(test.directory, {
$schema: "https://opencode.ai/config.json",
invalid_field: "should cause error",
model: 42,
})
const exit = yield* Config.use.get().pipe(Effect.exit)
expect(Exit.isFailure(exit)).toBe(true)
@@ -1331,7 +1331,7 @@ it.instance("permission config preserves user key order", () =>
}),
)
test("config parser preserves permission order while rejecting unknown top-level keys", () => {
test("config parser preserves permission order while ignoring unknown top-level keys", () => {
const config = ConfigParse.schema(
ConfigV1.Info,
{
@@ -1340,18 +1340,13 @@ test("config parser preserves permission order while rejecting unknown top-level
"*": "deny",
edit: "ask",
},
plugins: ["example"],
},
"test",
)
expect(Object.keys(config.permission!)).toEqual(["bash", "*", "edit"])
try {
ConfigParse.schema(ConfigV1.Info, { invalid_field: true }, "test")
throw new Error("expected config parse to fail")
} catch (err) {
const error = err as { data?: { issues?: Array<{ code?: string; keys?: string[]; path?: string[] }> } }
expect(error.data?.issues?.[0]).toMatchObject({ code: "unrecognized_keys", keys: ["invalid_field"], path: [] })
}
expect(config).not.toHaveProperty("plugins")
})
// MCP config merging tests
+2
View File
@@ -3,5 +3,7 @@
- NEVER hardcode user-visible English strings in production code. ALWAYS use an i18n key for visible copy, placeholders, accessible labels, tooltips, menus, dialogs, empty states, and displayed errors.
- When migrating existing copy to i18n, preserve the English text byte-for-byte unless the task explicitly requests a copy change.
- NEVER change existing English text or English keys to facilitate translation. English is intentional, designer-written source copy; adapt locale-specific translations and i18n mechanics around it.
- Keep locale and grammar logic behind the shared typed i18n API. Session components should use `t(...)`, `plural(...)`, `parts(...)`, or `pluralParts(...)`; they must not inspect locales, choose plural categories, construct category-suffixed keys, or assemble translated grammatical fragments.
- Prefer complete phrase templates with typed rich slots for styled values. If the current API cannot express a phrase, deepen the shared context instead of leaking locale mechanics into session components.
- Do not translate from model knowledge alone. Verify terminology and grammar with Unicode CLDR locale/plural data, Microsoft Localization Style Guides and terminology, Apple localization/style guidance and localized platform UI, Mozilla localization style guides, Mozilla Pontoon, and the Firefox localization corpus at `github.com/mozilla-l10n/firefox-l10n`.
- Also use the relevant language authority or official dictionary for the locale (for example RAE/Fundéu, FranceTerme, Duden, TDK, Kotus/Kielitoimiston sanakirja, Språkrådet/Bokmålsordboka, Rada Języka Polskiego/PWN, the Russian and Arabic language academies, the Ukrainian Orthography, Taiwan MOE dictionaries, or the Royal Society of Thailand). Treat the English dictionary as the semantic source of truth and preserve placeholders, code identifiers, product names, and keyboard labels.
@@ -146,11 +146,7 @@ export const LineComment = (props: LineCommentProps) => {
<div data-slot="line-comment-tools">{split.actions}</div>
</Show>
</div>
<div data-slot="line-comment-label">
{i18n.t("ui.lineComment.label.prefix")}
{split.selection}
{i18n.t("ui.lineComment.label.suffix")}
</div>
<div data-slot="line-comment-label">{i18n.parts("ui.lineComment.label", { selection: split.selection })}</div>
</div>
</LineCommentAnchor>
)
@@ -395,9 +391,7 @@ export const LineCommentEditor = (props: LineCommentEditorProps) => {
</Show>
<div data-slot="line-comment-actions">
<div data-slot="line-comment-editor-label">
{i18n.t("ui.lineComment.editorLabel.prefix")}
{split.selection}
{i18n.t("ui.lineComment.editorLabel.suffix")}
{i18n.parts("ui.lineComment.editorLabel", { selection: split.selection })}
</div>
<Show
when={!props.inline}
@@ -1,57 +1,6 @@
[data-component="tool-count-label"] {
display: inline-flex;
align-items: baseline;
white-space: nowrap;
white-space: pre;
gap: 0;
[data-slot="tool-count-label-before"] {
display: inline-block;
white-space: pre;
line-height: inherit;
}
[data-slot="tool-count-label-word"] {
display: inline-flex;
align-items: baseline;
white-space: pre;
line-height: inherit;
}
[data-slot="tool-count-label-stem"] {
display: inline-block;
white-space: pre;
}
[data-slot="tool-count-label-suffix"] {
display: inline-grid;
grid-template-columns: 0fr;
opacity: 0;
filter: blur(calc(var(--tool-motion-blur, 2px) * 0.42));
overflow: hidden;
transform: translateX(-0.04em);
transition-property: grid-template-columns, opacity, filter, transform;
transition-duration: 250ms, 250ms, 250ms, 250ms;
transition-timing-function:
var(--tool-motion-ease, cubic-bezier(0.22, 1, 0.36, 1)), ease-out, ease-out,
var(--tool-motion-ease, cubic-bezier(0.22, 1, 0.36, 1));
}
[data-slot="tool-count-label-suffix"][data-active="true"] {
grid-template-columns: 1fr;
opacity: 1;
filter: blur(0);
transform: translateX(0);
}
[data-slot="tool-count-label-suffix-inner"] {
min-width: 0;
overflow: hidden;
white-space: pre;
}
}
@media (prefers-reduced-motion: reduce) {
[data-component="tool-count-label"] [data-slot="tool-count-label-suffix"] {
transition-duration: 0ms;
}
}
@@ -1,61 +1,18 @@
import { createMemo } from "solid-js"
import { AnimatedNumber } from "@opencode-ai/ui/animated-number"
import { pluralCategory, pluralKey, useI18n, type UiI18nPluralKey } from "@opencode-ai/ui/context/i18n"
function split(text: string) {
const match = /{{\s*count\s*}}/.exec(text)
if (!match) return { before: "", after: text }
if (match.index === undefined) return { before: "", after: text }
return {
before: text.slice(0, match.index),
after: text.slice(match.index + match[0].length),
}
}
function common(one: string, other: string) {
const a = Array.from(one)
const b = Array.from(other)
let i = 0
while (i < a.length && i < b.length && a[i] === b[i]) i++
return {
stem: a.slice(0, i).join(""),
one: a.slice(i).join(""),
other: b.slice(i).join(""),
}
}
import { useI18n, type UiI18nPluralKey } from "@opencode-ai/ui/context/i18n"
export function AnimatedCountLabel(props: { count: number; plural: UiI18nPluralKey; class?: string }) {
const i18n = useI18n()
const category = createMemo(() => pluralCategory(i18n.locale(), Math.round(props.count)))
const one = createMemo(() => split(i18n.t(pluralKey(props.plural, "one"))))
const other = createMemo(() => split(i18n.t(pluralKey(props.plural, "other"))))
const active = createMemo(() => split(i18n.t(pluralKey(props.plural, category()))))
const suffix = createMemo(() => common(one().after, other().after))
const splitSuffix = createMemo(
() =>
(category() === "one" || category() === "other") &&
one().before === other().before &&
(one().after.startsWith(other().after) || other().after.startsWith(one().after)),
const parts = createMemo(() =>
i18n.pluralParts(props.plural, Math.round(props.count), {
count: <AnimatedNumber value={props.count} />,
}),
)
const before = createMemo(() => (splitSuffix() ? one().before : active().before))
const stem = createMemo(() => (splitSuffix() ? suffix().stem : active().after))
const tail = createMemo(() => {
if (!splitSuffix()) return ""
if (category() === "one") return suffix().one
return suffix().other
})
const showTail = createMemo(() => splitSuffix() && tail().length > 0)
return (
<span data-component="tool-count-label" class={props.class}>
<span data-slot="tool-count-label-before">{before()}</span>
<AnimatedNumber value={props.count} />
<span data-slot="tool-count-label-word">
<span data-slot="tool-count-label-stem">{stem()}</span>
<span data-slot="tool-count-label-suffix" data-active={showTail() ? "true" : "false"}>
<span data-slot="tool-count-label-suffix-inner">{tail()}</span>
</span>
</span>
{parts()}
</span>
)
}
+1 -1
View File
@@ -9,7 +9,7 @@ import { Effect, Layer } from "effect"
import * as Context from "effect/Context"
import { Resource } from "sst/resource"
const ATHENA_MAX_POLL_ATTEMPTS = 300
const ATHENA_MAX_POLL_ATTEMPTS = 900
const ATHENA_PAGE_SIZE = 1000
export type AthenaData = Record<string, string>
+13 -3
View File
@@ -19,9 +19,19 @@ const daemon = Effect.gen(function* () {
let lastFullDay = ""
const pass = Effect.gen(function* () {
const today = new Date().toISOString().slice(0, 10)
const full = lastFullDay !== today
yield* syncStats({ full })
if (full) lastFullDay = today
if (lastFullDay !== today) {
const completed = yield* syncStats({ full: true }).pipe(
Effect.as(true),
Effect.catchCause((cause) =>
Effect.logWarning(`full stats sync failed; falling back to incremental sync ${Cause.pretty(cause)}`).pipe(
Effect.as(false),
),
),
)
lastFullDay = today
if (completed) return
}
yield* syncStats({ full: false })
}).pipe(
Effect.catchCause((cause) =>
Effect.logWarning(`stats sync failed ${JSON.stringify({ cause: Cause.pretty(cause) })}`),
+2
View File
@@ -3,6 +3,8 @@
- NEVER hardcode user-visible English strings in production code. ALWAYS use an i18n key for component defaults, visible copy, placeholders, accessible labels, tooltips, dialogs, toasts, empty states, and displayed errors.
- When migrating existing copy to i18n, preserve the English text byte-for-byte unless the task explicitly requests a copy change.
- NEVER change existing English text or English keys to facilitate translation. English is intentional, designer-written source copy; adapt locale-specific translations and i18n mechanics around it.
- Keep locale and grammar logic behind the shared typed i18n API. Components should use `t(...)`, `plural(...)`, `parts(...)`, or `pluralParts(...)`; they must not inspect locales, choose plural categories, construct category-suffixed keys, or assemble translated grammatical fragments.
- Prefer complete phrase templates with typed rich slots for styled values. If the current API cannot express a phrase, deepen the shared context instead of leaking locale mechanics into components.
- Do not translate from model knowledge alone. Verify terminology and grammar with Unicode CLDR locale/plural data, Microsoft Localization Style Guides and terminology, Apple localization/style guidance and localized platform UI, Mozilla localization style guides, Mozilla Pontoon, and the Firefox localization corpus at `github.com/mozilla-l10n/firefox-l10n`.
- For developer-facing terminology, prefer established usage in the target language's developer community over literal translations. Cross-check maintained Firefox, KDE, and VS Code localizations, using at least two independent corpora when available. Keep established English loanwords and acronyms instead of inventing unfamiliar terms.
- Translate whole UI phrases in context rather than substituting glossary words. Audit recurring concepts for consistency and review every exact-English value; retain it only when it is an intentional product/provider/tool name, URL, code token, keyboard legend, acronym, asset name, or established borrowing.
+3 -10
View File
@@ -247,16 +247,9 @@ export function List<T>(props: ListProps<T> & { ref?: (ref: ListRef) => void })
const query = filter()
if (!query) return i18n.t("ui.list.empty")
const suffix = i18n.t("ui.list.emptyWithFilter.suffix")
return (
<>
<span>{i18n.t("ui.list.emptyWithFilter.prefix")}</span>
<span data-slot="list-filter">&quot;{query}&quot;</span>
<Show when={suffix}>
<span>{suffix}</span>
</Show>
</>
)
return i18n.parts("ui.list.emptyWithFilter", {
query: <span data-slot="list-filter">&quot;{query}&quot;</span>,
})
}
return (
+56 -1
View File
@@ -1,5 +1,5 @@
import { describe, expect, test } from "bun:test"
import { pluralCategory } from "./i18n"
import { createUiI18n, pluralCategory, pluralKey, type UiI18nParams, type UiI18nSource } from "./i18n"
describe("pluralCategory", () => {
test.each([
@@ -22,3 +22,58 @@ describe("pluralCategory", () => {
expect(pluralCategory(locale, count)).toBe(expected)
})
})
function i18n(locale: string, messages: Record<string, string>) {
const source: UiI18nSource = {
locale: () => locale,
t: (key, params) => resolve(messages[key] ?? key, params),
plural: (key, count, params) =>
source.t(pluralKey(key, pluralCategory(source.locale(), count)), { ...params, count }),
}
return createUiI18n(source)
}
function resolve(template: string, params?: UiI18nParams) {
if (!params) return template
return template.replace(/{{\s*([^}]+?)\s*}}/g, (_, key) => String(params[String(key)] ?? ""))
}
describe("createUiI18n", () => {
test("keeps dynamic source copy for English locale tags", () => {
const value = i18n("en-US", { title: "Dictionary title" })
expect(value.tDynamic("title", "Runtime {{name}}", { name: "title" })).toBe("Runtime title")
})
test("uses dictionary copy for non-English locales", () => {
const value = i18n("fr", { title: "Titre traduit" })
expect(value.tDynamic("title", "Runtime title")).toBe("Titre traduit")
})
test("inserts rich values in dictionary order", () => {
const value = i18n("ja", {
"ui.lineComment.label": "{{selection}}へのコメント",
"ui.lineComment.editorLabel": "Commenting on {{selection}}",
"ui.list.emptyWithFilter": "没有关于{{query}}的结果",
})
const selection = { id: "selection" }
expect(value.parts("ui.lineComment.label", { selection })).toEqual(["", selection, "へのコメント"])
expect(value.parts("ui.list.emptyWithFilter", { query: "needle" })).toEqual(["没有关于", "needle", "的结果"])
})
test("rejects malformed rich templates", () => {
const value = i18n("en", { "ui.lineComment.label": "Comment" })
expect(() => value.parts("ui.lineComment.label", { selection: "path" })).toThrow()
})
test("selects plural copy before inserting the animated count", () => {
const value = i18n("ar", {
"ui.messagePart.context.read.two": "تمت قراءة ملفين: {{count}} في {{folder}}",
})
const count = { id: "animated-count" }
expect(value.pluralParts("ui.messagePart.context.read", 2, { count }, { folder: "src" })).toEqual([
"تمت قراءة ملفين: ",
count,
" في src",
])
})
})
+55 -8
View File
@@ -16,13 +16,32 @@ export type UiI18nPluralLookupKey = `${UiI18nPluralKey}.${UiPluralCategory}`
export type UiI18nParams = Record<string, string | number | boolean>
export type UiI18n = {
export const UI_RICH_KEYS = {
"ui.lineComment.label": "selection",
"ui.lineComment.editorLabel": "selection",
"ui.list.emptyWithFilter": "query",
} as const
export type UiI18nRichKey = keyof typeof UI_RICH_KEYS
export type UiI18nRichSlot<K extends UiI18nRichKey> = (typeof UI_RICH_KEYS)[K]
export type UiI18nPart<T> = string | T
export type UiI18nSource = {
locale: Accessor<string>
layoutLocale?: Accessor<string>
t: (key: UiI18nKey, params?: UiI18nParams) => string
plural: (key: UiI18nPluralKey, count: number, params?: UiI18nParams) => string
}
export type UiI18n = UiI18nSource & {
/** Preserve runtime-generated English copy while using the keyed dictionary for every other locale. */
tDynamic: (key: UiI18nKey, source: string, params?: UiI18nParams) => string
parts: <K extends UiI18nRichKey, S extends Record<UiI18nRichSlot<K>, unknown>>(
key: K,
slots: S,
) => UiI18nPart<S[UiI18nRichSlot<K>]>[]
pluralParts: <T>(key: UiI18nPluralKey, count: number, slots: { count: T }, params?: UiI18nParams) => UiI18nPart<T>[]
}
const rules = new Map<string, Intl.PluralRules>()
export function pluralCategory(locale: string, count: number): UiPluralCategory {
@@ -35,7 +54,7 @@ export function pluralCategory(locale: string, count: number): UiPluralCategory
}
export function pluralKey(key: UiI18nPluralKey, category: UiPluralCategory) {
return `${key}.${category}` as UiI18nPluralLookupKey
return `${key}.${category}`
}
function resolveTemplate(text: string, params?: UiI18nParams) {
@@ -47,22 +66,50 @@ function resolveTemplate(text: string, params?: UiI18nParams) {
})
}
const fallback: UiI18n = {
function resolveParts<T>(template: string, slot: string, value: T, params?: UiI18nParams): UiI18nPart<T>[] {
const matches = Array.from(template.matchAll(/{{\s*([^}]+?)\s*}}/g)).filter((match) => match[1] === slot)
if (matches.length !== 1) throw new Error(`Expected exactly one {{${slot}}} placeholder`)
const match = matches[0]
const index = match.index
return [
resolveTemplate(template.slice(0, index), params),
value,
resolveTemplate(template.slice(index + match[0].length), params),
]
}
export function createUiI18n(source: UiI18nSource): UiI18n {
return {
...source,
tDynamic: (key, value, params) =>
source.locale().toLowerCase().split("-")[0] === "en" ? resolveTemplate(value, params) : source.t(key, params),
parts: (key, slots) => {
const slot = UI_RICH_KEYS[key]
return resolveParts(source.t(key), slot, slots[slot])
},
pluralParts: (key, count, slots, params) =>
resolveParts(source.t(pluralKey(key, pluralCategory(source.locale(), count))), "count", slots.count, params),
}
}
const fallbackSource: UiI18nSource = {
locale: () => "en",
t: (key, params) => {
const value = en[key] ?? String(key)
const value = en[key] ?? key
return resolveTemplate(value, params)
},
plural: (key, count, params) =>
fallback.t(pluralKey(key, pluralCategory(fallback.locale(), count)), { ...params, count }),
fallbackSource.t(pluralKey(key, pluralCategory(fallbackSource.locale(), count)), { ...params, count }),
}
const fallback = createUiI18n(fallbackSource)
const Context = createContext<UiI18n>(fallback)
function UiI18nProvider(props: ParentProps<{ value: UiI18n }>) {
function UiI18nProvider(props: ParentProps<{ value: UiI18nSource }>) {
const value = createUiI18n(props.value)
return (
<I18nProvider locale={(props.value.layoutLocale ?? props.value.locale)()}>
<Context.Provider value={props.value}>{props.children}</Context.Provider>
<I18nProvider locale={(value.layoutLocale ?? value.locale)()}>
<Context.Provider value={value}>{props.children}</Context.Provider>
</I18nProvider>
)
}
+3 -6
View File
@@ -43,10 +43,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "ሁለትዮሽ ፋይል",
"ui.fileMedia.binary.description.path": "{{path}} ሁለትዮሽ ነው።",
"ui.fileMedia.binary.description.default": "ሁለትዮሽ ይዘት",
"ui.lineComment.label.prefix": "አስተያየት በ ላይ ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "በላይ አስተያየት መስጠት ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "አስተያየት በ ላይ {{selection}}",
"ui.lineComment.editorLabel": "በላይ አስተያየት መስጠት {{selection}}",
"ui.lineComment.placeholder": "አስተያየት ያክሉ",
"ui.lineComment.contextPlaceholder": "ለዚህ ለውጥ አውድ ጨምር",
"ui.lineComment.submit": "አስተያየት",
@@ -102,8 +100,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "በመጫን ላይ",
"ui.list.empty": "ምንም ውጤቶች",
"ui.list.clearFilter": "ማጣሪያን አጽዳ",
"ui.list.emptyWithFilter.prefix": "ምንም ውጤቶች ለ",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "ምንም ውጤቶች ለ{{query}}",
"ui.fileSearch.placeholder": "አግኝ",
"ui.fileSearch.previousMatch": "የቀድሞ ግጥሚያ",
"ui.fileSearch.nextMatch": "ቀጣይ ተዛማጅ",
+3 -6
View File
@@ -44,10 +44,8 @@ export const dict = {
"ui.fileMedia.binary.description.path": "{{path}} عبارة عن ملف ثنائي ولا يمكن عرضه.",
"ui.fileMedia.binary.description.default": "هذا ملف ثنائي ولا يمكن عرضه.",
"ui.lineComment.label.prefix": "تعليق على ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "جارٍ التعليق على ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "تعليق على {{selection}}",
"ui.lineComment.editorLabel": "جارٍ التعليق على {{selection}}",
"ui.lineComment.placeholder": "أضف تعليقًا",
"ui.lineComment.contextPlaceholder": "أضف سياقًا لهذا التغيير",
"ui.lineComment.submit": "تعليق",
@@ -126,8 +124,7 @@ export const dict = {
"ui.list.loading": "جارٍ التحميل",
"ui.list.empty": "لا توجد نتائج",
"ui.list.clearFilter": "مسح عامل التصفية",
"ui.list.emptyWithFilter.prefix": "لا توجد نتائج لـ",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "لا توجد نتائج لـ{{query}}",
"ui.messageNav.newMessage": "رسالة جديدة",
+3 -6
View File
@@ -43,10 +43,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "İkili fayl",
"ui.fileMedia.binary.description.path": "{{path}} ikili fayldır.",
"ui.fileMedia.binary.description.default": "İkili məzmun",
"ui.lineComment.label.prefix": "Şərh: ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Şərh yazılır: ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Şərh: {{selection}}",
"ui.lineComment.editorLabel": "Şərh yazılır: {{selection}}",
"ui.lineComment.placeholder": "Şərh əlavə et",
"ui.lineComment.contextPlaceholder": "Bu dəyişiklik üçün kontekst əlavə et",
"ui.lineComment.submit": "Şərh et",
@@ -103,8 +101,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "Yüklənir",
"ui.list.empty": "Nəticə yoxdur",
"ui.list.clearFilter": "Filtri təmizlə",
"ui.list.emptyWithFilter.prefix": "Nəticə tapılmadı:",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Nəticə tapılmadı:{{query}}",
"ui.fileSearch.placeholder": "Axtar",
"ui.fileSearch.previousMatch": "Əvvəlki uyğunluq",
"ui.fileSearch.nextMatch": "Növbəti uyğunluq",
+3 -6
View File
@@ -43,10 +43,8 @@ export const dict = {
"ui.fileMedia.binary.title": "Двоичен файл",
"ui.fileMedia.binary.description.path": "{{path}} е двоичен.",
"ui.fileMedia.binary.description.default": "Двоично съдържание",
"ui.lineComment.label.prefix": "Коментирайте",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Коментиране на",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Коментирайте{{selection}}",
"ui.lineComment.editorLabel": "Коментиране на{{selection}}",
"ui.lineComment.placeholder": "Добавете коментар",
"ui.lineComment.contextPlaceholder": "Добавете контекст за тази промяна",
"ui.lineComment.submit": "Коментирайте",
@@ -103,8 +101,7 @@ export const dict = {
"ui.list.loading": "Зарежда се",
"ui.list.empty": "Няма резултати",
"ui.list.clearFilter": "Изчистване на филтъра",
"ui.list.emptyWithFilter.prefix": "Няма резултати за",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Няма резултати за{{query}}",
"ui.fileSearch.placeholder": "Намерете",
"ui.fileSearch.previousMatch": "Предишен мач",
"ui.fileSearch.nextMatch": "Следващ мач",
+5 -8
View File
@@ -45,10 +45,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "বাইনারি ফাইল",
"ui.fileMedia.binary.description.path": "{{path}} হল বাইনারি।",
"ui.fileMedia.binary.description.default": "বাইনারি বিষয়বস্তু",
"ui.lineComment.label.prefix": "মন্তব্য করুন",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "মন্তব্য করছেন",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "মন্তব্য করুন{{selection}}",
"ui.lineComment.editorLabel": "মন্তব্য করছেন{{selection}}",
"ui.lineComment.placeholder": "মন্তব্য যোগ করুন",
"ui.lineComment.contextPlaceholder": "এই পরিবর্তনের জন্য প্রসঙ্গ যোগ করুন",
"ui.lineComment.submit": "মন্তব্য করুন",
@@ -105,8 +103,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "লোড হচ্ছে",
"ui.list.empty": "কোন ফলাফল নেই",
"ui.list.clearFilter": "ফিল্টার পরিষ্কার করুন",
"ui.list.emptyWithFilter.prefix": "জন্য কোন ফলাফল",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "জন্য কোন ফলাফল{{query}}",
"ui.fileSearch.placeholder": "খুঁজুন",
"ui.fileSearch.previousMatch": "আগের ম্যাচ",
"ui.fileSearch.nextMatch": "পরের ম্যাচ",
@@ -141,8 +138,8 @@ export const dict: Record<string, string> = {
"ui.tool.grep": "Grep",
"ui.tool.task": "টাস্ক",
"ui.tool.webfetch": "ওয়েবফেচ",
"ui.tool.websearch": "Web Search",
"ui.tool.websearch.provider": "{{provider}} Web Search",
"ui.tool.websearch": "ওয়েব অনুসন্ধান",
"ui.tool.websearch.provider": "{{provider}} ওয়েব অনুসন্ধান",
"ui.tool.shell": "শেল",
"ui.tool.patch": "প্যাচ",
"ui.tool.todos": "করণীয়",
+3 -6
View File
@@ -44,10 +44,8 @@ export const dict = {
"ui.fileMedia.binary.description.path": "Não é possível exibir {{path}} porque é um arquivo binário.",
"ui.fileMedia.binary.description.default": "Não é possível exibir o arquivo porque ele é binário.",
"ui.lineComment.label.prefix": "Comentar em ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Comentando em ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Comentar em {{selection}}",
"ui.lineComment.editorLabel": "Comentando em {{selection}}",
"ui.lineComment.placeholder": "Adicionar comentário",
"ui.lineComment.contextPlaceholder": "Adicionar contexto para esta alteração",
"ui.lineComment.submit": "Comentar",
@@ -114,8 +112,7 @@ export const dict = {
"ui.list.loading": "Carregando",
"ui.list.empty": "Nenhum resultado",
"ui.list.clearFilter": "Limpar filtro",
"ui.list.emptyWithFilter.prefix": "Nenhum resultado para",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Nenhum resultado para{{query}}",
"ui.messageNav.newMessage": "Nova mensagem",
+3 -6
View File
@@ -48,10 +48,8 @@ export const dict = {
"ui.fileMedia.binary.description.path": "{{path}} je binarna datoteka.",
"ui.fileMedia.binary.description.default": "Binarni sadržaj",
"ui.lineComment.label.prefix": "Komentar na ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Komentarišeš ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Komentar na {{selection}}",
"ui.lineComment.editorLabel": "Komentarišeš {{selection}}",
"ui.lineComment.placeholder": "Dodaj komentar",
"ui.lineComment.contextPlaceholder": "Dodaj kontekst za ovu izmjenu",
"ui.lineComment.submit": "Komentariši",
@@ -118,8 +116,7 @@ export const dict = {
"ui.list.loading": "Učitavanje",
"ui.list.empty": "Nema rezultata",
"ui.list.clearFilter": "Očisti filter",
"ui.list.emptyWithFilter.prefix": "Nema rezultata za",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Nema rezultata za{{query}}",
"ui.messageNav.newMessage": "Nova poruka",
+3 -6
View File
@@ -43,10 +43,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "Fitxer binari",
"ui.fileMedia.binary.description.path": "{{path}} és binari.",
"ui.fileMedia.binary.description.default": "Contingut binari",
"ui.lineComment.label.prefix": "Comenta ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Comentant ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Comenta {{selection}}",
"ui.lineComment.editorLabel": "Comentant {{selection}}",
"ui.lineComment.placeholder": "Afegeix un comentari",
"ui.lineComment.contextPlaceholder": "Afegeix context per a aquest canvi",
"ui.lineComment.submit": "Comenta",
@@ -107,8 +105,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "Carregant",
"ui.list.empty": "Sense resultats",
"ui.list.clearFilter": "Esborra el filtre",
"ui.list.emptyWithFilter.prefix": "No hi ha resultats per a",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "No hi ha resultats per a{{query}}",
"ui.fileSearch.placeholder": "Troba",
"ui.fileSearch.previousMatch": "Coincidència anterior",
"ui.fileSearch.nextMatch": "Coincidència següent",
+3 -6
View File
@@ -43,10 +43,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "Binární soubor",
"ui.fileMedia.binary.description.path": "{{path}} je binární.",
"ui.fileMedia.binary.description.default": "Binární obsah",
"ui.lineComment.label.prefix": "Komentář k ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Komentování ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Komentář k {{selection}}",
"ui.lineComment.editorLabel": "Komentování {{selection}}",
"ui.lineComment.placeholder": "Přidat komentář",
"ui.lineComment.contextPlaceholder": "Přidejte kontext pro tuto změnu",
"ui.lineComment.submit": "Komentář",
@@ -111,8 +109,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "Načítání",
"ui.list.empty": "Žádné výsledky",
"ui.list.clearFilter": "Vymazat filtr",
"ui.list.emptyWithFilter.prefix": "Žádné výsledky pro",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Žádné výsledky pro{{query}}",
"ui.fileSearch.placeholder": "Najít",
"ui.fileSearch.previousMatch": "Předchozí shoda",
"ui.fileSearch.nextMatch": "Další shoda",
+3 -6
View File
@@ -44,10 +44,8 @@ export const dict = {
"ui.fileMedia.binary.title": "Binær fil",
"ui.fileMedia.binary.description.path": "{{path}} kan ikke vises, fordi det er en binær fil.",
"ui.fileMedia.binary.description.default": "Denne fil kan ikke vises, fordi det er en binær fil.",
"ui.lineComment.label.prefix": "Skriv en kommentar til ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Skriver en kommentar til ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Skriv en kommentar til {{selection}}",
"ui.lineComment.editorLabel": "Skriver en kommentar til {{selection}}",
"ui.lineComment.placeholder": "Tilføj kommentar",
"ui.lineComment.submit": "Kommenter",
"ui.lineComment.cancel": "Annuller",
@@ -108,8 +106,7 @@ export const dict = {
"ui.list.loading": "Indlæser",
"ui.list.empty": "Ingen resultater",
"ui.list.clearFilter": "Ryd filter",
"ui.list.emptyWithFilter.prefix": "Ingen resultater for",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Ingen resultater for{{query}}",
"ui.messageNav.newMessage": "Ny besked",
+3 -6
View File
@@ -51,10 +51,8 @@ export const dict = {
"{{path}} kann nicht angezeigt werden, da es sich um eine Binärdatei handelt.",
"ui.fileMedia.binary.description.default":
"Diese Datei kann nicht angezeigt werden, da es sich um eine Binärdatei handelt.",
"ui.lineComment.label.prefix": "Kommentar zu ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Kommentiere ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Kommentar zu {{selection}}",
"ui.lineComment.editorLabel": "Kommentiere {{selection}}",
"ui.lineComment.placeholder": "Kommentar hinzufügen",
"ui.lineComment.submit": "Kommentieren",
"ui.lineComment.cancel": "Abbrechen",
@@ -115,8 +113,7 @@ export const dict = {
"ui.list.loading": "Laden",
"ui.list.empty": "Keine Ergebnisse",
"ui.list.clearFilter": "Filter löschen",
"ui.list.emptyWithFilter.prefix": "Keine Ergebnisse für",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Keine Ergebnisse für{{query}}",
"ui.messageNav.newMessage": "Neue Nachricht",
+3 -6
View File
@@ -44,10 +44,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "ބައިނަރީ ފައިލް އެވެ",
"ui.fileMedia.binary.description.path": "{{path}} އަކީ ބައިނަރީ އެއްޗެކެވެ.",
"ui.fileMedia.binary.description.default": "ބައިނަރީ ކޮންޓެންޓް",
"ui.lineComment.label.prefix": "ކޮމެންޓް ކޮށްލައްވާ ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "ކޮމެންޓް ކުރަމުންނެވެ ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "ކޮމެންޓް ކޮށްލައްވާ {{selection}}",
"ui.lineComment.editorLabel": "ކޮމެންޓް ކުރަމުންނެވެ {{selection}}",
"ui.lineComment.placeholder": "ކޮމެންޓް އެޑް ކުރާށެވެ",
"ui.lineComment.contextPlaceholder": "މި ބަދަލަށް ކޮންޓެކްސްޓް އިތުރުކުރުން",
"ui.lineComment.submit": "ކޮމެންޓް",
@@ -104,8 +102,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "ލޯޑިންގ",
"ui.list.empty": "ނަތީޖާއެއް ނެތެވެ",
"ui.list.clearFilter": "ފިލްޓަރ ސާފުކުރުން",
"ui.list.emptyWithFilter.prefix": "އެއްވެސް ނަތީޖާއެއް ނުލިބެއެވެ",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "އެއްވެސް ނަތީޖާއެއް ނުލިބެއެވެ{{query}}",
"ui.fileSearch.placeholder": "ހޯދުން",
"ui.fileSearch.previousMatch": "ކުރީ މެޗެވެ",
"ui.fileSearch.nextMatch": "ދެން މެޗް",
+5 -8
View File
@@ -45,10 +45,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "ཟུང་ལྡན་ཡིག་སྣོད།",
"ui.fileMedia.binary.description.path": "{{path}} འདི་ཟུང་ལྡན་ཨིན།",
"ui.fileMedia.binary.description.default": "ཟུང་ལྡན་ནང་དོན།",
"ui.lineComment.label.prefix": "བསམ་འཆར།",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "བསམ་འཆར་བཀོད་དོན།",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "བསམ་འཆར།{{selection}}",
"ui.lineComment.editorLabel": "བསམ་འཆར་བཀོད་དོན།{{selection}}",
"ui.lineComment.placeholder": "བསམ་འཆར་ཁ་སྣོན་འབད།",
"ui.lineComment.contextPlaceholder": "བསྒྱུར་བཅོས་འདི་གི་དོན་ལུ་ སྐབས་དོན་ཁ་སྐོང་བརྐྱབ།",
"ui.lineComment.submit": "བསམ༌འཆར",
@@ -105,8 +103,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "མངོན་གསལ་འབད་དོ།",
"ui.list.empty": "གྲུབ་འབྲས་མེད།",
"ui.list.clearFilter": "ཚགས་མ་བསལ།",
"ui.list.emptyWithFilter.prefix": "2019 ལོའི་གྲུབ་འབྲས་མེད།",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "2019 ལོའི་གྲུབ་འབྲས་མེད།{{query}}",
"ui.fileSearch.placeholder": "འཚོལ་ནི",
"ui.fileSearch.previousMatch": "ཧེ་མའི་རྩེད་འགྲན་འདི།",
"ui.fileSearch.nextMatch": "རྩེད་འགྲན་ཤུལ་མམ།",
@@ -141,8 +138,8 @@ export const dict: Record<string, string> = {
"ui.tool.grep": "Grep།",
"ui.tool.task": "ལཱ",
"ui.tool.webfetch": "ཝེབ་ཕིཆ།",
"ui.tool.websearch": "Web Search",
"ui.tool.websearch.provider": "{{provider}} Web Search",
"ui.tool.websearch": "ཡོངས་འབྲེལ་འཚོལ་ཞིབ།",
"ui.tool.websearch.provider": "{{provider}} ཡོངས་འབྲེལ་འཚོལ་ཞིབ།",
"ui.tool.shell": "Shell",
"ui.tool.patch": "ལྷནམ",
"ui.tool.todos": "འབད་དགོཔ་ཚུ།",
+3 -6
View File
@@ -43,10 +43,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "Δυαδικό αρχείο",
"ui.fileMedia.binary.description.path": "{{path}} είναι δυαδικό.",
"ui.fileMedia.binary.description.default": "Δυαδικό περιεχόμενο",
"ui.lineComment.label.prefix": "Σχόλιο ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Σχολιασμός ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Σχόλιο {{selection}}",
"ui.lineComment.editorLabel": "Σχολιασμός {{selection}}",
"ui.lineComment.placeholder": "Προσθήκη σχολίου",
"ui.lineComment.contextPlaceholder": "Προσθήκη περιβάλλοντος για αυτήν την αλλαγή",
"ui.lineComment.submit": "Σχόλιο",
@@ -103,8 +101,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "Φόρτωση",
"ui.list.empty": "Δεν υπάρχουν αποτελέσματα",
"ui.list.clearFilter": "Διαγραφή φίλτρου",
"ui.list.emptyWithFilter.prefix": "Δεν υπάρχουν αποτελέσματα για",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Δεν υπάρχουν αποτελέσματα για{{query}}",
"ui.fileSearch.placeholder": "Εύρεση",
"ui.fileSearch.previousMatch": "Προηγούμενη αντιστοίχιση",
"ui.fileSearch.nextMatch": "Επόμενος αγώνας",
+3 -6
View File
@@ -46,10 +46,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.description.path": "{{path}} is binary.",
"ui.fileMedia.binary.description.default": "Binary content",
"ui.lineComment.label.prefix": "Comment on ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Commenting on ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Comment on {{selection}}",
"ui.lineComment.editorLabel": "Commenting on {{selection}}",
"ui.lineComment.placeholder": "Add comment",
"ui.lineComment.contextPlaceholder": "Add context for this change",
"ui.lineComment.submit": "Comment",
@@ -112,8 +110,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "Loading",
"ui.list.empty": "No results",
"ui.list.clearFilter": "Clear filter",
"ui.list.emptyWithFilter.prefix": "No results for",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "No results for{{query}}",
"ui.fileSearch.placeholder": "Find",
"ui.fileSearch.previousMatch": "Previous match",
+3 -6
View File
@@ -44,10 +44,8 @@ export const dict = {
"ui.fileMedia.binary.description.path": "No se puede mostrar {{path}} porque es un archivo binario.",
"ui.fileMedia.binary.description.default": "No se puede mostrar este archivo porque es un archivo binario.",
"ui.lineComment.label.prefix": "Comentar en ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Comentando en ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Comentar en {{selection}}",
"ui.lineComment.editorLabel": "Comentando en {{selection}}",
"ui.lineComment.placeholder": "Añadir comentario",
"ui.lineComment.contextPlaceholder": "Añadir contexto para este cambio",
"ui.lineComment.submit": "Comentar",
@@ -114,8 +112,7 @@ export const dict = {
"ui.list.loading": "Cargando",
"ui.list.empty": "Sin resultados",
"ui.list.clearFilter": "Borrar filtro",
"ui.list.emptyWithFilter.prefix": "Sin resultados para",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Sin resultados para{{query}}",
"ui.messageNav.newMessage": "Nuevo mensaje",
+3 -6
View File
@@ -43,10 +43,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "Binaarne fail",
"ui.fileMedia.binary.description.path": "{{path}} on binaarne.",
"ui.fileMedia.binary.description.default": "Binaarne sisu",
"ui.lineComment.label.prefix": "kommenteerida ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Kommenteerides ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "kommenteerida {{selection}}",
"ui.lineComment.editorLabel": "Kommenteerides {{selection}}",
"ui.lineComment.placeholder": "Lisa kommentaar",
"ui.lineComment.contextPlaceholder": "Lisage selle muudatuse kontekst",
"ui.lineComment.submit": "Kommenteeri",
@@ -103,8 +101,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "Laadimine",
"ui.list.empty": "Tulemusi pole",
"ui.list.clearFilter": "Selge filter",
"ui.list.emptyWithFilter.prefix": "Päringule pole tulemusi",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Päringule pole tulemusi{{query}}",
"ui.fileSearch.placeholder": "Otsi",
"ui.fileSearch.previousMatch": "Eelmine vaste",
"ui.fileSearch.nextMatch": "Järgmine vaste",
+3 -6
View File
@@ -43,10 +43,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "فایل باینری",
"ui.fileMedia.binary.description.path": "{{path}} باینری است.",
"ui.fileMedia.binary.description.default": "محتوای باینری",
"ui.lineComment.label.prefix": "نظر دهید ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "در حال اظهار نظر ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "نظر دهید {{selection}}",
"ui.lineComment.editorLabel": "در حال اظهار نظر {{selection}}",
"ui.lineComment.placeholder": "نظر اضافه کنید",
"ui.lineComment.contextPlaceholder": "برای این تغییر زمینه اضافه کنید",
"ui.lineComment.submit": "نظر دهید",
@@ -103,8 +101,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "در حال بارگذاری",
"ui.list.empty": "هیچ نتیجه ای وجود ندارد",
"ui.list.clearFilter": "فیلتر را پاک کنید",
"ui.list.emptyWithFilter.prefix": "هیچ نتیجه ای برای",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "هیچ نتیجه ای برای{{query}}",
"ui.fileSearch.placeholder": "پیدا کنید",
"ui.fileSearch.previousMatch": "مسابقه قبلی",
"ui.fileSearch.nextMatch": "مسابقه بعدی",
+3 -6
View File
@@ -43,10 +43,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "Binääritiedosto",
"ui.fileMedia.binary.description.path": "{{path}} on binääritiedosto.",
"ui.fileMedia.binary.description.default": "Binäärisisältö",
"ui.lineComment.label.prefix": "Kommentoi ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Kommentoit kohdetta ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Kommentoi {{selection}}",
"ui.lineComment.editorLabel": "Kommentoit kohdetta {{selection}}",
"ui.lineComment.placeholder": "Lisää kommentti",
"ui.lineComment.submit": "Kommentoi",
"ui.lineComment.cancel": "Peruuta",
@@ -102,8 +100,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "Ladataan",
"ui.list.empty": "Ei tuloksia",
"ui.list.clearFilter": "Tyhjennä suodatin",
"ui.list.emptyWithFilter.prefix": "Ei tuloksia haulle",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Ei tuloksia haulle{{query}}",
"ui.fileSearch.placeholder": "Etsi",
"ui.fileSearch.previousMatch": "Edellinen osuma",
"ui.fileSearch.nextMatch": "Seuraava osuma",
+3 -6
View File
@@ -43,10 +43,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "Binær fíla",
"ui.fileMedia.binary.description.path": "{{path}} er binær.",
"ui.fileMedia.binary.description.default": "Binært innihald",
"ui.lineComment.label.prefix": "Viðmerk á ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Viðmerkjandi ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Viðmerk á {{selection}}",
"ui.lineComment.editorLabel": "Viðmerkjandi {{selection}}",
"ui.lineComment.placeholder": "Legg viðmerking til",
"ui.lineComment.contextPlaceholder": "Legg samanhang til hesa broyting",
"ui.lineComment.submit": "Viðmerking",
@@ -103,8 +101,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "Innlesing",
"ui.list.empty": "Einki úrslit",
"ui.list.clearFilter": "Rudda filtur",
"ui.list.emptyWithFilter.prefix": "Einki úrslit fyri",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Einki úrslit fyri{{query}}",
"ui.fileSearch.placeholder": "Finn",
"ui.fileSearch.previousMatch": "Fyrra samsvar",
"ui.fileSearch.nextMatch": "Næsta samsvar",
+3 -6
View File
@@ -45,10 +45,8 @@ export const dict = {
"ui.fileMedia.binary.description.path": "Impossible d'afficher {{path}} car il s'agit d'un fichier binaire.",
"ui.fileMedia.binary.description.default": "Impossible d'afficher ce fichier car il s'agit d'un fichier binaire.",
"ui.lineComment.label.prefix": "Commenter ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Commentaire concernant ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Commenter {{selection}}",
"ui.lineComment.editorLabel": "Commentaire concernant {{selection}}",
"ui.lineComment.placeholder": "Ajouter un commentaire",
"ui.lineComment.contextPlaceholder": "Ajouter du contexte à cette modification",
"ui.lineComment.submit": "Commenter",
@@ -115,8 +113,7 @@ export const dict = {
"ui.list.loading": "Chargement",
"ui.list.empty": "Aucun résultat",
"ui.list.clearFilter": "Effacer le filtre",
"ui.list.emptyWithFilter.prefix": "Aucun résultat pour",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Aucun résultat pour{{query}}",
"ui.messageNav.newMessage": "Nouveau message",
+3 -6
View File
@@ -44,10 +44,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "बाइनरी फ़ाइल",
"ui.fileMedia.binary.description.path": "{{path}} बाइनरी है।",
"ui.fileMedia.binary.description.default": "बाइनरी सामग्री",
"ui.lineComment.label.prefix": "इस पर टिप्पणी: ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "इस पर टिप्पणी की जा रही है: ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "इस पर टिप्पणी: {{selection}}",
"ui.lineComment.editorLabel": "इस पर टिप्पणी की जा रही है: {{selection}}",
"ui.lineComment.placeholder": "टिप्पणी जोड़ें",
"ui.lineComment.contextPlaceholder": "इस परिवर्तन के लिए संदर्भ जोड़ें",
"ui.lineComment.submit": "टिप्पणी",
@@ -104,8 +102,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "लोड हो रहा है",
"ui.list.empty": "कोई परिणाम नहीं",
"ui.list.clearFilter": "फ़िल्टर साफ़ करें",
"ui.list.emptyWithFilter.prefix": "के लिए कोई परिणाम नहीं",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "के लिए कोई परिणाम नहीं{{query}}",
"ui.fileSearch.placeholder": "खोजें",
"ui.fileSearch.previousMatch": "पिछला मिलान",
"ui.fileSearch.nextMatch": "अगला मिलान",
+3 -6
View File
@@ -44,10 +44,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "Binarna datoteka",
"ui.fileMedia.binary.description.path": "{{path}} je binarni.",
"ui.fileMedia.binary.description.default": "Binarni sadržaj",
"ui.lineComment.label.prefix": "Komentirajte",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Komentiranje",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Komentirajte{{selection}}",
"ui.lineComment.editorLabel": "Komentiranje{{selection}}",
"ui.lineComment.placeholder": "Dodajte komentar",
"ui.lineComment.contextPlaceholder": "Dodajte kontekst za ovu promjenu",
"ui.lineComment.submit": "Komentar",
@@ -108,8 +106,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "Učitavanje",
"ui.list.empty": "Nema rezultata",
"ui.list.clearFilter": "Očisti filter",
"ui.list.emptyWithFilter.prefix": "Nema rezultata za",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Nema rezultata za{{query}}",
"ui.fileSearch.placeholder": "Pronaći",
"ui.fileSearch.previousMatch": "Prethodno podudaranje",
"ui.fileSearch.nextMatch": "Sljedeće podudaranje",
+3 -6
View File
@@ -45,10 +45,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "Bináris fájl",
"ui.fileMedia.binary.description.path": "A {{path}} bináris.",
"ui.fileMedia.binary.description.default": "Bináris tartalom",
"ui.lineComment.label.prefix": "Hozzászólás",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Hozzászólás",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Hozzászólás{{selection}}",
"ui.lineComment.editorLabel": "Hozzászólás{{selection}}",
"ui.lineComment.placeholder": "Megjegyzés hozzáadása",
"ui.lineComment.contextPlaceholder": "Kontextus hozzáadása ehhez a módosításhoz",
"ui.lineComment.submit": "Megjegyzés",
@@ -105,8 +103,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "Betöltés",
"ui.list.empty": "Nincs eredmény",
"ui.list.clearFilter": "Szűrő törlése",
"ui.list.emptyWithFilter.prefix": "Nincs találat a következőre",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Nincs találat a következőre{{query}}",
"ui.fileSearch.placeholder": "Keresés",
"ui.fileSearch.previousMatch": "Előző találat",
"ui.fileSearch.nextMatch": "Következő találat",
+3 -6
View File
@@ -43,10 +43,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "Երկուական ֆայլ",
"ui.fileMedia.binary.description.path": "{{path}}-ը երկուական է:",
"ui.fileMedia.binary.description.default": "Երկուական բովանդակություն",
"ui.lineComment.label.prefix": "Մեկնաբանություն ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Մեկնաբանում ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Մեկնաբանություն {{selection}}",
"ui.lineComment.editorLabel": "Մեկնաբանում {{selection}}",
"ui.lineComment.placeholder": "Ավելացնել մեկնաբանություն",
"ui.lineComment.contextPlaceholder": "Ավելացնել համատեքստ այս փոփոխության համար",
"ui.lineComment.submit": "Մեկնաբանություն",
@@ -103,8 +101,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "Բեռնվում",
"ui.list.empty": "Արդյունք չկա",
"ui.list.clearFilter": "Մաքրել զտիչը",
"ui.list.emptyWithFilter.prefix": "Արդյունք չկա",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Արդյունք չկա{{query}}",
"ui.fileSearch.placeholder": "Գտնել",
"ui.fileSearch.previousMatch": "Նախորդ համընկնում",
"ui.fileSearch.nextMatch": "Հաջորդ համընկնում",
+3 -6
View File
@@ -45,10 +45,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.description.path": "Berkas {{path}} bersifat biner.",
"ui.fileMedia.binary.description.default": "Konten biner",
"ui.lineComment.label.prefix": "Komentar pada ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Mengomentari ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Komentar pada {{selection}}",
"ui.lineComment.editorLabel": "Mengomentari {{selection}}",
"ui.lineComment.placeholder": "Tambah komentar",
"ui.lineComment.contextPlaceholder": "Tambahkan konteks untuk perubahan ini",
"ui.lineComment.submit": "Komentar",
@@ -111,8 +109,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "Memuat",
"ui.list.empty": "Tidak ada hasil",
"ui.list.clearFilter": "Hapus filter",
"ui.list.emptyWithFilter.prefix": "Tidak ada hasil untuk",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Tidak ada hasil untuk{{query}}",
"ui.fileSearch.placeholder": "Cari",
"ui.fileSearch.previousMatch": "Kecocokan sebelumnya",
+3 -6
View File
@@ -43,10 +43,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "Tvíundarskrá",
"ui.fileMedia.binary.description.path": "{{path}} er tvíundarskrá.",
"ui.fileMedia.binary.description.default": "Tvíundarefni",
"ui.lineComment.label.prefix": "Athugasemdir við",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Gerir athugasemdir við",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Athugasemdir við{{selection}}",
"ui.lineComment.editorLabel": "Gerir athugasemdir við{{selection}}",
"ui.lineComment.placeholder": "Bæta við athugasemd",
"ui.lineComment.contextPlaceholder": "Bættu við samhengi fyrir þessa breytingu",
"ui.lineComment.submit": "Athugasemd",
@@ -103,8 +101,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "Hleðsla",
"ui.list.empty": "Engar niðurstöður",
"ui.list.clearFilter": "Hreinsaðu síu",
"ui.list.emptyWithFilter.prefix": "Engar niðurstöður fyrir",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Engar niðurstöður fyrir{{query}}",
"ui.fileSearch.placeholder": "Finndu",
"ui.fileSearch.previousMatch": "Fyrri samsvörun",
"ui.fileSearch.nextMatch": "Næsta samsvörun",
+3 -6
View File
@@ -44,10 +44,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "File binario",
"ui.fileMedia.binary.description.path": "{{path}} è binario.",
"ui.fileMedia.binary.description.default": "Contenuto binario",
"ui.lineComment.label.prefix": "Commento su ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Commento su ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Commento su {{selection}}",
"ui.lineComment.editorLabel": "Commento su {{selection}}",
"ui.lineComment.placeholder": "Aggiungi commento",
"ui.lineComment.contextPlaceholder": "Aggiungi contesto per questa modifica",
"ui.lineComment.submit": "Commenta",
@@ -108,8 +106,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "Caricamento",
"ui.list.empty": "Nessun risultato",
"ui.list.clearFilter": "Cancella filtro",
"ui.list.emptyWithFilter.prefix": "Nessun risultato per",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Nessun risultato per{{query}}",
"ui.fileSearch.placeholder": "Cerca",
"ui.fileSearch.previousMatch": "Corrispondenza precedente",
"ui.fileSearch.nextMatch": "Corrispondenza successiva",
+3 -6
View File
@@ -44,10 +44,8 @@ export const dict = {
"ui.fileMedia.binary.title": "バイナリファイル",
"ui.fileMedia.binary.description.path": "{{path}} はバイナリファイルのため表示できません。",
"ui.fileMedia.binary.description.default": "このファイルはバイナリファイルのため表示できません。",
"ui.lineComment.label.prefix": "",
"ui.lineComment.label.suffix": "へのコメント",
"ui.lineComment.editorLabel.prefix": "",
"ui.lineComment.editorLabel.suffix": "へのコメントを作成中",
"ui.lineComment.label": "{{selection}}へのコメント",
"ui.lineComment.editorLabel": "{{selection}}へのコメントを作成中",
"ui.lineComment.placeholder": "コメントを追加",
"ui.lineComment.contextPlaceholder": "この変更に関するコンテキストを追加",
"ui.lineComment.submit": "コメント",
@@ -109,8 +107,7 @@ export const dict = {
"ui.list.loading": "読み込み中",
"ui.list.empty": "結果なし",
"ui.list.clearFilter": "フィルターをクリア",
"ui.list.emptyWithFilter.prefix": "次の検索結果はありません: ",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "次の検索結果はありません: {{query}}",
"ui.messageNav.newMessage": "新しいメッセージ",
+3 -6
View File
@@ -43,10 +43,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "ორობითი ფაილი",
"ui.fileMedia.binary.description.path": "{{path}} არის ორობითი.",
"ui.fileMedia.binary.description.default": "ორობითი შინაარსი",
"ui.lineComment.label.prefix": "კომენტარი ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "კომენტირება ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "კომენტარი {{selection}}",
"ui.lineComment.editorLabel": "კომენტირება {{selection}}",
"ui.lineComment.placeholder": "კომენტარის დამატება",
"ui.lineComment.contextPlaceholder": "დაამატეთ კონტექსტი ამ ცვლილებისთვის",
"ui.lineComment.submit": "კომენტარი",
@@ -103,8 +101,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "იტვირთება",
"ui.list.empty": "შედეგები არ არის",
"ui.list.clearFilter": "ფილტრის გასუფთავება",
"ui.list.emptyWithFilter.prefix": "შედეგები არ არის",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "შედეგები არ არის{{query}}",
"ui.fileSearch.placeholder": "მოძებნა",
"ui.fileSearch.previousMatch": "წინა მატჩი",
"ui.fileSearch.nextMatch": "შემდეგი მატჩი",
+3 -6
View File
@@ -44,10 +44,8 @@ export const dict = {
"ui.fileMedia.binary.title": "ឯកសារគោលពីរ",
"ui.fileMedia.binary.description.path": "{{path}} គឺជាប្រព័ន្ធគោលពីរ។",
"ui.fileMedia.binary.description.default": "មាតិកាគោលពីរ",
"ui.lineComment.label.prefix": "មតិយោបល់លើ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "អត្ថាធិប្បាយលើ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "មតិយោបល់លើ{{selection}}",
"ui.lineComment.editorLabel": "អត្ថាធិប្បាយលើ{{selection}}",
"ui.lineComment.placeholder": "បន្ថែមមតិ",
"ui.lineComment.contextPlaceholder": "បន្ថែមបរិបទសម្រាប់ការផ្លាស់ប្តូរនេះ។",
"ui.lineComment.submit": "មតិយោបល់",
@@ -104,8 +102,7 @@ export const dict = {
"ui.list.loading": "កំពុងផ្ទុក",
"ui.list.empty": "គ្មានលទ្ធផល",
"ui.list.clearFilter": "ជម្រះតម្រង",
"ui.list.emptyWithFilter.prefix": "គ្មានលទ្ធផលសម្រាប់",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "គ្មានលទ្ធផលសម្រាប់{{query}}",
"ui.fileSearch.placeholder": "ស្វែងរក",
"ui.fileSearch.previousMatch": "ការប្រកួតពីមុន",
"ui.fileSearch.nextMatch": "ការប្រកួតបន្ទាប់",
+3 -6
View File
@@ -26,10 +26,8 @@ export const dict = {
"ui.fileMedia.binary.description.path": "{{path}}은(는) 바이너리 파일이므로 표시할 수 없습니다.",
"ui.fileMedia.binary.description.default": "바이너리 파일이므로 표시할 수 없습니다.",
"ui.lineComment.label.prefix": "",
"ui.lineComment.label.suffix": "에 댓글 달기",
"ui.lineComment.editorLabel.prefix": "",
"ui.lineComment.editorLabel.suffix": "에 댓글 작성 중",
"ui.lineComment.label": "{{selection}}에 댓글 달기",
"ui.lineComment.editorLabel": "{{selection}}에 댓글 작성 중",
"ui.lineComment.placeholder": "댓글 추가",
"ui.lineComment.contextPlaceholder": "이 변경 사항에 대한 컨텍스트 추가",
"ui.lineComment.submit": "댓글 달기",
@@ -86,8 +84,7 @@ export const dict = {
"ui.list.loading": "로딩 중",
"ui.list.empty": "결과 없음",
"ui.list.clearFilter": "필터 지우기",
"ui.list.emptyWithFilter.prefix": "다음에 대한 결과 없음: ",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "다음에 대한 결과 없음: {{query}}",
"ui.messageNav.newMessage": "새 메시지",
+3 -6
View File
@@ -43,10 +43,8 @@ export const dict = {
"ui.fileMedia.binary.title": "ໄຟລ໌ຖານສອງ",
"ui.fileMedia.binary.description.path": "{{path}} ເປັນໄບນາຣີ.",
"ui.fileMedia.binary.description.default": "ເນື້ອໃນຖານສອງ",
"ui.lineComment.label.prefix": "ຄໍາເຫັນກ່ຽວກັບ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "ຄໍາເຫັນກ່ຽວກັບ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "ຄໍາເຫັນກ່ຽວກັບ{{selection}}",
"ui.lineComment.editorLabel": "ຄໍາເຫັນກ່ຽວກັບ{{selection}}",
"ui.lineComment.placeholder": "ເພີ່ມຄຳເຫັນ",
"ui.lineComment.contextPlaceholder": "ເພີ່ມບໍລິບົດສໍາລັບການປ່ຽນແປງນີ້",
"ui.lineComment.submit": "ຄໍາເຫັນ",
@@ -103,8 +101,7 @@ export const dict = {
"ui.list.loading": "ກຳລັງໂຫຼດ",
"ui.list.empty": "ບໍ່ມີຜົນໄດ້ຮັບ",
"ui.list.clearFilter": "ລ້າງການກັ່ນຕອງ",
"ui.list.emptyWithFilter.prefix": "ບໍ່ມີຜົນໄດ້ຮັບສໍາລັບ",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "ບໍ່ມີຜົນໄດ້ຮັບສໍາລັບ{{query}}",
"ui.fileSearch.placeholder": "ຊອກຫາ",
"ui.fileSearch.previousMatch": "ການແຂ່ງຂັນທີ່ຜ່ານມາ",
"ui.fileSearch.nextMatch": "ການແຂ່ງຂັນຕໍ່ໄປ",
+3 -6
View File
@@ -43,10 +43,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "Dvejetainis failas",
"ui.fileMedia.binary.description.path": "{{path}} yra dvejetainis.",
"ui.fileMedia.binary.description.default": "Dvejetainis turinys",
"ui.lineComment.label.prefix": "Komentuoti",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Komentuodamas",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Komentuoti{{selection}}",
"ui.lineComment.editorLabel": "Komentuodamas{{selection}}",
"ui.lineComment.placeholder": "Pridėti komentarą",
"ui.lineComment.contextPlaceholder": "Pridėkite šio pakeitimo kontekstą",
"ui.lineComment.submit": "komentuoti",
@@ -111,8 +109,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "Įkeliama",
"ui.list.empty": "Jokių rezultatų",
"ui.list.clearFilter": "Išvalyti filtrą",
"ui.list.emptyWithFilter.prefix": "Nėra rezultatų pagal",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Nėra rezultatų pagal{{query}}",
"ui.fileSearch.placeholder": "Rasti",
"ui.fileSearch.previousMatch": "Ankstesnis atitikmuo",
"ui.fileSearch.nextMatch": "Kitas atitikmuo",
+3 -6
View File
@@ -43,10 +43,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "Binārs fails",
"ui.fileMedia.binary.description.path": "{{path}} ir binārs fails.",
"ui.fileMedia.binary.description.default": "Binārs saturs",
"ui.lineComment.label.prefix": "Komentēt",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Komentē",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Komentēt{{selection}}",
"ui.lineComment.editorLabel": "Komentē{{selection}}",
"ui.lineComment.placeholder": "Pievieno komentāru",
"ui.lineComment.contextPlaceholder": "Pievieno kontekstu šai izmaiņai",
"ui.lineComment.submit": "Komentēt",
@@ -107,8 +105,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "Ielādējas",
"ui.list.empty": "Nav rezultātu",
"ui.list.clearFilter": "Notīrīt filtru",
"ui.list.emptyWithFilter.prefix": "Nav rezultātu vaicājumam",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Nav rezultātu vaicājumam{{query}}",
"ui.fileSearch.placeholder": "Meklēt",
"ui.fileSearch.previousMatch": "Iepriekšējā atbilstība",
"ui.fileSearch.nextMatch": "Nākamā atbilstība",
+3 -6
View File
@@ -43,10 +43,8 @@ export const dict = {
"ui.fileMedia.binary.title": "Бинарна датотека",
"ui.fileMedia.binary.description.path": "{{path}} е бинарен.",
"ui.fileMedia.binary.description.default": "Бинарна содржина",
"ui.lineComment.label.prefix": "Коментар на",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Коментирајќи на",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Коментар на{{selection}}",
"ui.lineComment.editorLabel": "Коментирајќи на{{selection}}",
"ui.lineComment.placeholder": "Додадете коментар",
"ui.lineComment.contextPlaceholder": "Додадете контекст за оваа промена",
"ui.lineComment.submit": "Коментар",
@@ -103,8 +101,7 @@ export const dict = {
"ui.list.loading": "Се вчитува",
"ui.list.empty": "Нема резултати",
"ui.list.clearFilter": "Исчистете го филтерот",
"ui.list.emptyWithFilter.prefix": "Нема резултати за",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Нема резултати за{{query}}",
"ui.fileSearch.placeholder": "Најдете",
"ui.fileSearch.previousMatch": "Претходен натпревар",
"ui.fileSearch.nextMatch": "Следен натпревар",
+3 -6
View File
@@ -43,10 +43,8 @@ export const dict = {
"ui.fileMedia.binary.title": "Хоёртын файл",
"ui.fileMedia.binary.description.path": "{{path}} нь хоёртын систем юм.",
"ui.fileMedia.binary.description.default": "Хоёртын агуулга",
"ui.lineComment.label.prefix": "Сэтгэгдэл бичих",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Сэтгэгдэл бичиж байна",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Сэтгэгдэл бичих{{selection}}",
"ui.lineComment.editorLabel": "Сэтгэгдэл бичиж байна{{selection}}",
"ui.lineComment.placeholder": "Сэтгэгдэл нэмэх",
"ui.lineComment.contextPlaceholder": "Энэ өөрчлөлтийн контекст нэмнэ үү",
"ui.lineComment.submit": "Сэтгэгдэл",
@@ -103,8 +101,7 @@ export const dict = {
"ui.list.loading": "Ачааж байна",
"ui.list.empty": "Үр дүн алга",
"ui.list.clearFilter": "Шүүлтүүрийг цэвэрлэх",
"ui.list.emptyWithFilter.prefix": "-д илэрц байхгүй",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "-д илэрц байхгүй{{query}}",
"ui.fileSearch.placeholder": "Хай",
"ui.fileSearch.previousMatch": "Өмнөх тоглолт",
"ui.fileSearch.nextMatch": "Дараагийн тоглолт",
+3 -6
View File
@@ -43,10 +43,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "Fail binari",
"ui.fileMedia.binary.description.path": "{{path}} ialah fail binari.",
"ui.fileMedia.binary.description.default": "Kandungan binari",
"ui.lineComment.label.prefix": "Komen pada",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Sedang mengulas pada",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Komen pada{{selection}}",
"ui.lineComment.editorLabel": "Sedang mengulas pada{{selection}}",
"ui.lineComment.placeholder": "Tambah komen",
"ui.lineComment.contextPlaceholder": "Tambah konteks untuk perubahan ini",
"ui.lineComment.submit": "Komen",
@@ -103,8 +101,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "Memuatkan",
"ui.list.empty": "Tiada hasil",
"ui.list.clearFilter": "Kosongkan penapis",
"ui.list.emptyWithFilter.prefix": "Tiada hasil untuk",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Tiada hasil untuk{{query}}",
"ui.fileSearch.placeholder": "Cari",
"ui.fileSearch.previousMatch": "Padanan sebelumnya",
"ui.fileSearch.nextMatch": "Padanan seterusnya",
+3 -6
View File
@@ -44,10 +44,8 @@ export const dict = {
"ui.fileMedia.binary.title": "Binary ဖိုင်",
"ui.fileMedia.binary.description.path": "{{path}} သည် ဒွိစုံဖြစ်သည်။",
"ui.fileMedia.binary.description.default": "Binary အကြောင်းအရာ",
"ui.lineComment.label.prefix": "မှတ်ချက်",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "မှတ်ချက်ပေးခြင်း",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "မှတ်ချက်{{selection}}",
"ui.lineComment.editorLabel": "မှတ်ချက်ပေးခြင်း{{selection}}",
"ui.lineComment.placeholder": "မှတ်ချက်ထည့်ပါ။",
"ui.lineComment.contextPlaceholder": "ဤပြောင်းလဲမှုအတွက် အကြောင်းအရာကို ထည့်ပါ။",
"ui.lineComment.submit": "မှတ်ချက်",
@@ -104,8 +102,7 @@ export const dict = {
"ui.list.loading": "တင်နေသည်။",
"ui.list.empty": "ရလဒ်မရှိပါ။",
"ui.list.clearFilter": "စစ်ထုတ်မှုကို ရှင်းလင်းပါ။",
"ui.list.emptyWithFilter.prefix": "အတွက် ရလဒ်များ မရှိပါ။",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "အတွက် ရလဒ်များ မရှိပါ။{{query}}",
"ui.fileSearch.placeholder": "ရှာပါ။",
"ui.fileSearch.previousMatch": "ယခင်ပွဲ",
"ui.fileSearch.nextMatch": "နောက်ပွဲ",
+5 -8
View File
@@ -45,10 +45,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "बाइनरी फाइल",
"ui.fileMedia.binary.description.path": "{{path}} बाइनरी हो।",
"ui.fileMedia.binary.description.default": "बाइनरी सामग्री",
"ui.lineComment.label.prefix": "टिप्पणी गर्नुहोस्",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "टिप्पणी गर्दै",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "टिप्पणी गर्नुहोस्{{selection}}",
"ui.lineComment.editorLabel": "टिप्पणी गर्दै{{selection}}",
"ui.lineComment.placeholder": "टिप्पणी थप्नुहोस्",
"ui.lineComment.contextPlaceholder": "यो परिवर्तनको लागि सन्दर्भ थप्नुहोस्",
"ui.lineComment.submit": "टिप्पणी गर्नुहोस्",
@@ -105,8 +103,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "लोड गर्दै",
"ui.list.empty": "कुनै परिणाम छैन",
"ui.list.clearFilter": "फिल्टर खाली गर्नुहोस्",
"ui.list.emptyWithFilter.prefix": "को लागि कुनै परिणाम छैन",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "को लागि कुनै परिणाम छैन{{query}}",
"ui.fileSearch.placeholder": "फेला पार्नुहोस्",
"ui.fileSearch.previousMatch": "अघिल्लो खेल",
"ui.fileSearch.nextMatch": "अर्को खेल",
@@ -141,8 +138,8 @@ export const dict: Record<string, string> = {
"ui.tool.grep": "Grep",
"ui.tool.task": "कार्य",
"ui.tool.webfetch": "Webfetch",
"ui.tool.websearch": "Web Search",
"ui.tool.websearch.provider": "{{provider}} Web Search",
"ui.tool.websearch": "वेब खोज",
"ui.tool.websearch.provider": "{{provider}} वेब खोज",
"ui.tool.shell": "शेल",
"ui.tool.patch": "प्याच",
"ui.tool.todos": "गर्नुपर्ने कार्यहरू",
+3 -6
View File
@@ -43,10 +43,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "Binair bestand",
"ui.fileMedia.binary.description.path": "{{path}} is binair.",
"ui.fileMedia.binary.description.default": "Binaire inhoud",
"ui.lineComment.label.prefix": "Opmerking bij ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Opmerking bij ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Opmerking bij {{selection}}",
"ui.lineComment.editorLabel": "Opmerking bij {{selection}}",
"ui.lineComment.placeholder": "Opmerking toevoegen",
"ui.lineComment.contextPlaceholder": "Context voor deze wijziging toevoegen",
"ui.lineComment.submit": "Opmerking plaatsen",
@@ -103,8 +101,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "Laden",
"ui.list.empty": "Geen resultaten",
"ui.list.clearFilter": "Filter wissen",
"ui.list.emptyWithFilter.prefix": "Geen resultaten voor",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Geen resultaten voor{{query}}",
"ui.fileSearch.placeholder": "Zoeken",
"ui.fileSearch.previousMatch": "Vorige overeenkomst",
"ui.fileSearch.nextMatch": "Volgende overeenkomst",
+3 -6
View File
@@ -29,10 +29,8 @@ export const dict: Record<Keys, string> = {
"ui.fileMedia.binary.description.path": "{{path}} kan ikke vises fordi det er en binærfil.",
"ui.fileMedia.binary.description.default": "Denne filen kan ikke vises fordi det er en binærfil.",
"ui.lineComment.label.prefix": "Legg inn kommentar til ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Kommentar til ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Legg inn kommentar til {{selection}}",
"ui.lineComment.editorLabel": "Kommentar til {{selection}}",
"ui.lineComment.placeholder": "Legg til kommentar",
"ui.lineComment.contextPlaceholder": "Legg til kontekst for denne endringen",
"ui.lineComment.submit": "Kommenter",
@@ -89,8 +87,7 @@ export const dict: Record<Keys, string> = {
"ui.list.loading": "Laster",
"ui.list.empty": "Ingen resultater",
"ui.list.clearFilter": "Tøm filter",
"ui.list.emptyWithFilter.prefix": "Ingen resultater for",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Ingen resultater for{{query}}",
"ui.messageNav.newMessage": "Ny melding",
+5 -8
View File
@@ -44,10 +44,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "بائنری فائل",
"ui.fileMedia.binary.description.path": "{{path}} بائنری اے۔",
"ui.fileMedia.binary.description.default": "بائنری مواد",
"ui.lineComment.label.prefix": "ایتھے تبصرہ کرو: ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "ایتھے تبصرہ ہو رہیا اے: ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "ایتھے تبصرہ کرو: {{selection}}",
"ui.lineComment.editorLabel": "ایتھے تبصرہ ہو رہیا اے: {{selection}}",
"ui.lineComment.placeholder": "تبصرہ شامل کرو",
"ui.lineComment.contextPlaceholder": "اس تبدیلی لئی تناظر شامل کرو",
"ui.lineComment.submit": "تبصرہ کرو",
@@ -104,8 +102,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "لوڈ ہو رہیا اے",
"ui.list.empty": "کوئی نتیجہ نئیں نکلیا",
"ui.list.clearFilter": "فلٹر صاف کرو",
"ui.list.emptyWithFilter.prefix": "لئی کوئی نتیجہ نئیں",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "لئی کوئی نتیجہ نئیں{{query}}",
"ui.fileSearch.placeholder": "لبھو",
"ui.fileSearch.previousMatch": "پچھلا میل",
"ui.fileSearch.nextMatch": "اگلا میل",
@@ -140,8 +137,8 @@ export const dict: Record<string, string> = {
"ui.tool.grep": "Grep",
"ui.tool.task": "کم",
"ui.tool.webfetch": "Webfetch",
"ui.tool.websearch": "Web Search",
"ui.tool.websearch.provider": "{{provider}} Web Search",
"ui.tool.websearch": "ویب تلاش",
"ui.tool.websearch.provider": "{{provider}} ویب تلاش",
"ui.tool.shell": "Shell",
"ui.tool.patch": "Patch",
"ui.tool.todos": "ٹوڈوس",
+3 -6
View File
@@ -44,10 +44,8 @@ export const dict = {
"ui.fileMedia.binary.title": "Plik binarny",
"ui.fileMedia.binary.description.path": "Nie można wyświetlić pliku {{path}}, ponieważ jest to plik binarny.",
"ui.fileMedia.binary.description.default": "Nie można wyświetlić tego pliku, ponieważ jest to plik binarny.",
"ui.lineComment.label.prefix": "Komentarz do ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Komentowanie: ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Komentarz do {{selection}}",
"ui.lineComment.editorLabel": "Komentowanie: {{selection}}",
"ui.lineComment.placeholder": "Dodaj komentarz",
"ui.lineComment.contextPlaceholder": "Dodaj kontekst tej zmiany",
"ui.lineComment.submit": "Skomentuj",
@@ -117,8 +115,7 @@ export const dict = {
"ui.list.loading": "Ładowanie",
"ui.list.empty": "Brak wyników",
"ui.list.clearFilter": "Wyczyść filtr",
"ui.list.emptyWithFilter.prefix": "Brak wyników dla",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Brak wyników dla{{query}}",
"ui.messageNav.newMessage": "Nowa wiadomość",
+3 -6
View File
@@ -43,10 +43,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "Fișier binar",
"ui.fileMedia.binary.description.path": "{{path}} este binar.",
"ui.fileMedia.binary.description.default": "Conținut binar",
"ui.lineComment.label.prefix": "Comentează la",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Se comentează la",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Comentează la{{selection}}",
"ui.lineComment.editorLabel": "Se comentează la{{selection}}",
"ui.lineComment.placeholder": "Adaugă comentariu",
"ui.lineComment.contextPlaceholder": "Adaugă context pentru această modificare",
"ui.lineComment.submit": "Comentează",
@@ -107,8 +105,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "Se încarcă",
"ui.list.empty": "Niciun rezultat",
"ui.list.clearFilter": "Șterge filtrul",
"ui.list.emptyWithFilter.prefix": "Niciun rezultat pentru",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Niciun rezultat pentru{{query}}",
"ui.fileSearch.placeholder": "Caută",
"ui.fileSearch.previousMatch": "Potrivirea anterioară",
"ui.fileSearch.nextMatch": "Potrivirea următoare",
+3 -6
View File
@@ -44,10 +44,8 @@ export const dict = {
"ui.fileMedia.binary.title": "Двоичный файл",
"ui.fileMedia.binary.description.path": "Невозможно отобразить {{path}}, так как это двоичный файл.",
"ui.fileMedia.binary.description.default": "Невозможно отобразить этот файл, так как он двоичный.",
"ui.lineComment.label.prefix": "Комментарий к ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Комментирование: ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Комментарий к {{selection}}",
"ui.lineComment.editorLabel": "Комментирование: {{selection}}",
"ui.lineComment.placeholder": "Добавить комментарий",
"ui.lineComment.contextPlaceholder": "Добавить контекст для этого изменения",
"ui.lineComment.submit": "Добавить комментарий",
@@ -117,8 +115,7 @@ export const dict = {
"ui.list.loading": "Загрузка",
"ui.list.empty": "Нет результатов",
"ui.list.clearFilter": "Очистить фильтр",
"ui.list.emptyWithFilter.prefix": "Нет результатов для",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Нет результатов для{{query}}",
"ui.messageNav.newMessage": "Новое сообщение",
+6 -9
View File
@@ -14,7 +14,7 @@ export const dict: Record<string, string> = {
"ui.sessionReview.image.placeholder": "රූපය",
"ui.sessionReview.largeDiff.title": "විදැහුම් කිරීමට විශාල වෙනස",
"ui.sessionReview.largeDiff.meta": "සීමාව: {{limit}} රේඛා වෙනස් කර ඇත. වත්මන්: {{current}} වෙනස් කළ රේඛා.",
"ui.sessionReview.largeDiff.renderAnyway": "කොහොම හරි Render කරන්න",
"ui.sessionReview.largeDiff.renderAnyway": "කෙසේ හෝ විදැහුම් කරන්න",
"ui.sessionReviewV2.expandMode": "වෙනස පුළුල් කරන්න හෝ හකුළන්න",
"ui.sessionReviewV2.filterFiles": "ගොනු පෙරහන් කරන්න",
"ui.sessionReviewV2.toggleSidebar": "ගොනු ගස ටොගල් කරන්න",
@@ -43,10 +43,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "ද්විමය ගොනුව",
"ui.fileMedia.binary.description.path": "{{path}} ද්විමය වේ.",
"ui.fileMedia.binary.description.default": "ද්විමය අන්තර්ගතය",
"ui.lineComment.label.prefix": "අදහස් දක්වන්න",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "අදහස් දක්වමින්",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "අදහස් දක්වන්න{{selection}}",
"ui.lineComment.editorLabel": "අදහස් දක්වමින්{{selection}}",
"ui.lineComment.placeholder": "අදහස් එක් කරන්න",
"ui.lineComment.contextPlaceholder": "මෙම වෙනස සඳහා සන්දර්භය එක් කරන්න",
"ui.lineComment.submit": "අදහස් දක්වන්න",
@@ -103,8 +101,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "පැටවීම",
"ui.list.empty": "ප්‍රතිඵල නැත",
"ui.list.clearFilter": "පෙරහන හිස් කරන්න",
"ui.list.emptyWithFilter.prefix": "සඳහා ප්‍රතිඵල නැත",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "සඳහා ප්‍රතිඵල නැත{{query}}",
"ui.fileSearch.placeholder": "සොයන්න",
"ui.fileSearch.previousMatch": "පෙර තරගය",
"ui.fileSearch.nextMatch": "ඊළඟ තරගය",
@@ -139,8 +136,8 @@ export const dict: Record<string, string> = {
"ui.tool.grep": "Grep",
"ui.tool.task": "කාර්යය",
"ui.tool.webfetch": "Webfetch",
"ui.tool.websearch": "Web Search",
"ui.tool.websearch.provider": "{{provider}} Web Search",
"ui.tool.websearch": "වෙබ් සෙවුම",
"ui.tool.websearch.provider": "{{provider}} වෙබ් සෙවුම",
"ui.tool.shell": "ෂෙල්",
"ui.tool.patch": "පැච්",
"ui.tool.todos": "කළ යුතු දේ",
+3 -6
View File
@@ -43,10 +43,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "Binárny súbor",
"ui.fileMedia.binary.description.path": "{{path}} je binárny súbor.",
"ui.fileMedia.binary.description.default": "Binárny obsah",
"ui.lineComment.label.prefix": "Komentár k",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Komentujete",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Komentár k{{selection}}",
"ui.lineComment.editorLabel": "Komentujete{{selection}}",
"ui.lineComment.placeholder": "Pridať komentár",
"ui.lineComment.contextPlaceholder": "Pridať kontext k tejto zmene",
"ui.lineComment.submit": "Komentovať",
@@ -111,8 +109,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "Načítava sa",
"ui.list.empty": "Žiadne výsledky",
"ui.list.clearFilter": "Vymazať filter",
"ui.list.emptyWithFilter.prefix": "Žiadne výsledky pre",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Žiadne výsledky pre{{query}}",
"ui.fileSearch.placeholder": "Hľadať",
"ui.fileSearch.previousMatch": "Predchádzajúca zhoda",
"ui.fileSearch.nextMatch": "Nasledujúca zhoda",
+3 -6
View File
@@ -44,10 +44,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "Binarna datoteka",
"ui.fileMedia.binary.description.path": "{{path}} je binaren.",
"ui.fileMedia.binary.description.default": "Binarna vsebina",
"ui.lineComment.label.prefix": "Komentiraj ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Komentiranje ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Komentiraj {{selection}}",
"ui.lineComment.editorLabel": "Komentiranje {{selection}}",
"ui.lineComment.placeholder": "Dodaj komentar",
"ui.lineComment.contextPlaceholder": "Dodajte kontekst za to spremembo",
"ui.lineComment.submit": "Komentiraj",
@@ -112,8 +110,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "Nalaganje",
"ui.list.empty": "Brez rezultatov",
"ui.list.clearFilter": "Počisti filter",
"ui.list.emptyWithFilter.prefix": "Ni rezultatov za",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Ni rezultatov za{{query}}",
"ui.fileSearch.placeholder": "Najdi",
"ui.fileSearch.previousMatch": "Prejšnja tekma",
"ui.fileSearch.nextMatch": "Naslednja tekma",
+3 -6
View File
@@ -43,10 +43,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "Skedar binar",
"ui.fileMedia.binary.description.path": "{{path}} është binare.",
"ui.fileMedia.binary.description.default": "Përmbajtja binare",
"ui.lineComment.label.prefix": "Komentoni ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Duke komentuar ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Komentoni {{selection}}",
"ui.lineComment.editorLabel": "Duke komentuar {{selection}}",
"ui.lineComment.placeholder": "Shto koment",
"ui.lineComment.contextPlaceholder": "Shto kontekst për këtë ndryshim",
"ui.lineComment.submit": "Komentoni",
@@ -103,8 +101,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "Po ngarkohet",
"ui.list.empty": "Nuk ka rezultate",
"ui.list.clearFilter": "Pastro filtrin",
"ui.list.emptyWithFilter.prefix": "Nuk ka rezultate për",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Nuk ka rezultate për{{query}}",
"ui.fileSearch.placeholder": "Gjeni",
"ui.fileSearch.previousMatch": "Ndeshja e mëparshme",
"ui.fileSearch.nextMatch": "Ndeshja e radhës",
+3 -6
View File
@@ -44,10 +44,8 @@ export const dict = {
"ui.fileMedia.binary.title": "Бинарна датотека",
"ui.fileMedia.binary.description.path": "{{path}} је бинарни.",
"ui.fileMedia.binary.description.default": "бинарни садржај",
"ui.lineComment.label.prefix": "Коментирајте",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "коментаришем",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Коментирајте{{selection}}",
"ui.lineComment.editorLabel": "коментаришем{{selection}}",
"ui.lineComment.placeholder": "Додајте коментар",
"ui.lineComment.contextPlaceholder": "Додајте контекст за ову промену",
"ui.lineComment.submit": "Коментар",
@@ -108,8 +106,7 @@ export const dict = {
"ui.list.loading": "Учитавање",
"ui.list.empty": "Нема резултата",
"ui.list.clearFilter": "Обриши филтер",
"ui.list.emptyWithFilter.prefix": "Нема резултата за",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Нема резултата за{{query}}",
"ui.fileSearch.placeholder": "Пронађи",
"ui.fileSearch.previousMatch": "Претходно подударање",
"ui.fileSearch.nextMatch": "Следеће подударање",
+3 -6
View File
@@ -43,10 +43,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "Binär fil",
"ui.fileMedia.binary.description.path": "{{path}} är binär.",
"ui.fileMedia.binary.description.default": "Binärt innehåll",
"ui.lineComment.label.prefix": "Kommentera ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Kommenterar ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Kommentera {{selection}}",
"ui.lineComment.editorLabel": "Kommenterar {{selection}}",
"ui.lineComment.placeholder": "Lägg till kommentar",
"ui.lineComment.contextPlaceholder": "Lägg till kontext för den här ändringen",
"ui.lineComment.submit": "Kommentera",
@@ -103,8 +101,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "Laddar",
"ui.list.empty": "Inga resultat",
"ui.list.clearFilter": "Rensa filter",
"ui.list.emptyWithFilter.prefix": "Inga resultat för",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Inga resultat för{{query}}",
"ui.fileSearch.placeholder": "Hitta",
"ui.fileSearch.previousMatch": "Föregående match",
"ui.fileSearch.nextMatch": "Nästa match",
+3 -6
View File
@@ -43,10 +43,8 @@ export const dict = {
"ui.fileMedia.binary.title": "Файли дуӣ",
"ui.fileMedia.binary.description.path": "{{path}} дуӣ аст.",
"ui.fileMedia.binary.description.default": "Мундариҷаи дуӣ",
"ui.lineComment.label.prefix": "Шарҳ дар бораи",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Шарҳ дар бораи",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Шарҳ дар бораи{{selection}}",
"ui.lineComment.editorLabel": "Шарҳ дар бораи{{selection}}",
"ui.lineComment.placeholder": "Иловаи шарҳ",
"ui.lineComment.contextPlaceholder": "Барои ин тағирот контекст илова кунед",
"ui.lineComment.submit": "Шарҳ",
@@ -103,8 +101,7 @@ export const dict = {
"ui.list.loading": "Бор карда мешавад",
"ui.list.empty": "Ҳеҷ натиҷае нест",
"ui.list.clearFilter": "Филтрро тоза кунед",
"ui.list.emptyWithFilter.prefix": "Ягон натиҷа барои",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Ягон натиҷа барои{{query}}",
"ui.fileSearch.placeholder": "Пайдо кунед",
"ui.fileSearch.previousMatch": "Бозии қаблӣ",
"ui.fileSearch.nextMatch": "Бозии навбатй",
+3 -6
View File
@@ -44,10 +44,8 @@ export const dict = {
"ui.fileMedia.binary.description.path": "{{path}} เป็นไฟล์ไบนารีและไม่สามารถแสดงผลได้",
"ui.fileMedia.binary.description.default": "ไฟล์ไบนารีไม่สามารถแสดงผลได้",
"ui.lineComment.label.prefix": "แสดงความคิดเห็นที่ ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "กำลังแสดงความคิดเห็นที่ ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "แสดงความคิดเห็นที่ {{selection}}",
"ui.lineComment.editorLabel": "กำลังแสดงความคิดเห็นที่ {{selection}}",
"ui.lineComment.placeholder": "เพิ่มความคิดเห็น",
"ui.lineComment.contextPlaceholder": "เพิ่มบริบทสำหรับการเปลี่ยนแปลงนี้",
"ui.lineComment.submit": "แสดงความคิดเห็น",
@@ -110,8 +108,7 @@ export const dict = {
"ui.list.loading": "กำลังโหลด",
"ui.list.empty": "ไม่มีผลลัพธ์",
"ui.list.clearFilter": "ล้างตัวกรอง",
"ui.list.emptyWithFilter.prefix": "ไม่มีผลลัพธ์สำหรับ",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "ไม่มีผลลัพธ์สำหรับ{{query}}",
"ui.messageNav.newMessage": "ข้อความใหม่",
+3 -6
View File
@@ -43,10 +43,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "Ikilik faýl",
"ui.fileMedia.binary.description.path": "{{path}} ikilikdir.",
"ui.fileMedia.binary.description.default": "Ikilik mazmuny",
"ui.lineComment.label.prefix": "Düşündiriş ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Düşündiriş ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Düşündiriş {{selection}}",
"ui.lineComment.editorLabel": "Düşündiriş {{selection}}",
"ui.lineComment.placeholder": "Teswir goşuň",
"ui.lineComment.contextPlaceholder": "Bu üýtgeşmäniň mazmunyny goşuň",
"ui.lineComment.submit": "Düşündiriş",
@@ -103,8 +101,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "Adingüklemek",
"ui.list.empty": "Netije ýok",
"ui.list.clearFilter": "Süzgüçi arassalaň",
"ui.list.emptyWithFilter.prefix": "Netije ýok",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Netije ýok{{query}}",
"ui.fileSearch.placeholder": "Tap",
"ui.fileSearch.previousMatch": "Öňki oýun",
"ui.fileSearch.nextMatch": "Indiki oýun",
+3 -6
View File
@@ -50,10 +50,8 @@ export const dict = {
"ui.fileMedia.binary.description.path": "{{path}} ikili dosyadır.",
"ui.fileMedia.binary.description.default": "İkili içerik",
"ui.lineComment.label.prefix": "Yorum: ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Yorum yapılıyor: ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Yorum: {{selection}}",
"ui.lineComment.editorLabel": "Yorum yapılıyor: {{selection}}",
"ui.lineComment.placeholder": "Yorum ekle",
"ui.lineComment.contextPlaceholder": "Bu değişiklik için bağlam ekle",
"ui.lineComment.submit": "Yorum yap",
@@ -116,8 +114,7 @@ export const dict = {
"ui.list.loading": "Yükleniyor",
"ui.list.empty": "Sonuç bulunamadı",
"ui.list.clearFilter": "Filtreyi temizle",
"ui.list.emptyWithFilter.prefix": "Sonuç bulunamadı:",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Sonuç bulunamadı:{{query}}",
"ui.messageNav.newMessage": "Yeni mesaj",
+3 -6
View File
@@ -46,10 +46,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.description.path": "Неможливо відобразити {{path}}, оскільки це двійковий файл.",
"ui.fileMedia.binary.description.default": "Неможливо відобразити цей файл, оскільки він двійковий.",
"ui.lineComment.label.prefix": "Коментар до ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Коментування: ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Коментар до {{selection}}",
"ui.lineComment.editorLabel": "Коментування: {{selection}}",
"ui.lineComment.placeholder": "Додати коментар",
"ui.lineComment.contextPlaceholder": "Додати контекст для цієї зміни",
"ui.lineComment.submit": "Коментувати",
@@ -120,8 +118,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "Завантаження",
"ui.list.empty": "Немає результатів",
"ui.list.clearFilter": "Очистити фільтр",
"ui.list.emptyWithFilter.prefix": "Немає результатів для",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Немає результатів для{{query}}",
"ui.fileSearch.placeholder": "Знайти",
"ui.fileSearch.previousMatch": "Попередній збіг",
+3 -6
View File
@@ -44,10 +44,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "بائنری فائل",
"ui.fileMedia.binary.description.path": "{{path}} بائنری ہے۔",
"ui.fileMedia.binary.description.default": "بائنری مواد",
"ui.lineComment.label.prefix": "اس پر تبصرہ: ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "اس پر تبصرہ کیا جا رہا ہے: ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "اس پر تبصرہ: {{selection}}",
"ui.lineComment.editorLabel": "اس پر تبصرہ کیا جا رہا ہے: {{selection}}",
"ui.lineComment.placeholder": "تبصرہ شامل کریں۔",
"ui.lineComment.contextPlaceholder": "اس تبدیلی کا سیاق و سباق شامل کریں",
"ui.lineComment.submit": "تبصرہ کریں",
@@ -104,8 +102,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "لوڈ ہو رہا ہے۔",
"ui.list.empty": "کوئی نتیجہ نہیں ملا",
"ui.list.clearFilter": "فلٹر صاف کریں۔",
"ui.list.emptyWithFilter.prefix": "اس کے لیے کوئی نتیجہ نہیں ملا: ",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "اس کے لیے کوئی نتیجہ نہیں ملا: {{query}}",
"ui.fileSearch.placeholder": "تلاش کریں۔",
"ui.fileSearch.previousMatch": "پچھلی مماثلت",
"ui.fileSearch.nextMatch": "اگلی مماثلت",
+3 -6
View File
@@ -45,10 +45,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "Ikkilik fayl",
"ui.fileMedia.binary.description.path": "{{path}} ikkilikdir.",
"ui.fileMedia.binary.description.default": "Ikkilik tarkib",
"ui.lineComment.label.prefix": "Fikr bildiring ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Fikr bildirish ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Fikr bildiring {{selection}}",
"ui.lineComment.editorLabel": "Fikr bildirish {{selection}}",
"ui.lineComment.placeholder": "Fikr qo'shing",
"ui.lineComment.contextPlaceholder": "Ushbu o'zgarish uchun kontekst qo'shing",
"ui.lineComment.submit": "Izoh",
@@ -105,8 +103,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "Yuklanmoqda",
"ui.list.empty": "Natija yoʻq",
"ui.list.clearFilter": "Filtrni tozalash",
"ui.list.emptyWithFilter.prefix": "uchun hech qanday natija topilmadi",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "uchun hech qanday natija topilmadi{{query}}",
"ui.fileSearch.placeholder": "Toping",
"ui.fileSearch.previousMatch": "Oldingi o'yin",
"ui.fileSearch.nextMatch": "Keyingi o'yin",
+3 -6
View File
@@ -43,10 +43,8 @@ export const dict: Record<string, string> = {
"ui.fileMedia.binary.title": "Tệp nhị phân",
"ui.fileMedia.binary.description.path": "{{path}} là nhị phân.",
"ui.fileMedia.binary.description.default": "Nội dung nhị phân",
"ui.lineComment.label.prefix": "Bình luận về ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "Bình luận về ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "Bình luận về {{selection}}",
"ui.lineComment.editorLabel": "Bình luận về {{selection}}",
"ui.lineComment.placeholder": "Thêm nhận xét",
"ui.lineComment.contextPlaceholder": "Thêm ngữ cảnh cho thay đổi này",
"ui.lineComment.submit": "Bình luận",
@@ -103,8 +101,7 @@ export const dict: Record<string, string> = {
"ui.list.loading": "Đang tải",
"ui.list.empty": "Không có kết quả",
"ui.list.clearFilter": "Xóa bộ lọc",
"ui.list.emptyWithFilter.prefix": "Không có kết quả cho",
"ui.list.emptyWithFilter.suffix": "",
"ui.list.emptyWithFilter": "Không có kết quả cho{{query}}",
"ui.fileSearch.placeholder": "Tìm",
"ui.fileSearch.previousMatch": "Kết quả khớp trước",
"ui.fileSearch.nextMatch": "Kết quả khớp tiếp theo",
+3 -6
View File
@@ -48,10 +48,8 @@ export const dict = {
"ui.fileMedia.binary.description.path": "无法显示 {{path}},因为它是二进制文件。",
"ui.fileMedia.binary.description.default": "无法显示此文件,因为它是二进制文件。",
"ui.lineComment.label.prefix": "评论",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "正在评论",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "评论{{selection}}",
"ui.lineComment.editorLabel": "正在评论{{selection}}",
"ui.lineComment.placeholder": "添加评论",
"ui.lineComment.contextPlaceholder": "添加此更改的上下文",
"ui.lineComment.submit": "发布评论",
@@ -112,8 +110,7 @@ export const dict = {
"ui.list.loading": "加载中",
"ui.list.empty": "无结果",
"ui.list.clearFilter": "清除筛选",
"ui.list.emptyWithFilter.prefix": "没有关于",
"ui.list.emptyWithFilter.suffix": "的结果",
"ui.list.emptyWithFilter": "没有关于{{query}}的结果",
"ui.messageNav.newMessage": "新消息",
+3 -6
View File
@@ -48,10 +48,8 @@ export const dict = {
"ui.fileMedia.binary.description.path": "無法顯示 {{path}},因為它是二進位檔案。",
"ui.fileMedia.binary.description.default": "無法顯示此檔案,因為它是二進位檔案。",
"ui.lineComment.label.prefix": "留言於 ",
"ui.lineComment.label.suffix": "",
"ui.lineComment.editorLabel.prefix": "正在留言於 ",
"ui.lineComment.editorLabel.suffix": "",
"ui.lineComment.label": "留言於 {{selection}}",
"ui.lineComment.editorLabel": "正在留言於 {{selection}}",
"ui.lineComment.placeholder": "新增留言",
"ui.lineComment.contextPlaceholder": "新增此變更的相關資訊",
"ui.lineComment.submit": "留言",
@@ -112,8 +110,7 @@ export const dict = {
"ui.list.loading": "載入中",
"ui.list.empty": "無結果",
"ui.list.clearFilter": "清除篩選",
"ui.list.emptyWithFilter.prefix": "沒有關於",
"ui.list.emptyWithFilter.suffix": "的結果",
"ui.list.emptyWithFilter": "沒有關於{{query}}的結果",
"ui.messageNav.newMessage": "新訊息",