diff --git a/apps/mobile/src/components/agents/child-session-message.test.ts b/apps/mobile/src/components/agents/child-session-message.test.ts index d1bf61c1e4..207d05a003 100644 --- a/apps/mobile/src/components/agents/child-session-message.test.ts +++ b/apps/mobile/src/components/agents/child-session-message.test.ts @@ -239,8 +239,8 @@ describe('ChildSessionMessage routing seam', () => { }); }); -describe('ChildSessionSection model label', () => { - it('renders the model label when child messages carry model data', () => { +describe('ChildSessionSection card metadata', () => { + it('does not render a transcript-derived model label on the card', () => { const childMessages = [makeMessage([makeTextPart('child text')])]; const onOpenChildSession = vi.fn<(sessionId: string, title: string) => void>(); const part = makeToolPart('task', taskCompletedState); @@ -253,23 +253,6 @@ describe('ChildSessionSection model label', () => { onOpenChildSession, }); - const labels = findByType(root, ChildSessionModelLabel); - expect(labels).toHaveLength(1); - expect(labels[0]?.props).toMatchObject({ modelLabel: 'Test Model' }); - }); - - it('hides the model label when child messages are empty and still renders the card', () => { - const onOpenChildSession = vi.fn<(sessionId: string, title: string) => void>(); - const part = makeToolPart('task', taskCompletedState); - - // eslint-disable-next-line new-cap, react-compiler-runtime/react-compiler-runtime -- direct function call - const root = ChildSessionSection({ - part, - childMessages: [], - modelOptions: [modelOption], - onOpenChildSession, - }); - expect(findByType(root, ChildSessionModelLabel)).toHaveLength(0); const taskNameTexts = findAll( root, diff --git a/apps/mobile/src/components/agents/child-session-section.tsx b/apps/mobile/src/components/agents/child-session-section.tsx index c4e9276d05..e87ebbf880 100644 --- a/apps/mobile/src/components/agents/child-session-section.tsx +++ b/apps/mobile/src/components/agents/child-session-section.tsx @@ -22,8 +22,6 @@ import { getChildSessionCardState, getTaskToolSessionId, } from './child-session-card-state'; -import { getChildSessionModelLabel } from './child-session-model'; -import { ChildSessionModelLabel } from './child-session-model-label'; import { MessageErrorBoundary } from './message-error-boundary'; import { isToolPart } from './part-types'; @@ -55,16 +53,12 @@ type ChildSessionSectionProps = { export function ChildSessionSection({ part, - childMessages, onOpenChildSession, - modelOptions, }: Readonly) { const colors = useThemeColors(); const { t } = useTranslation(); const { agentName, taskName, status }: ChildSessionCardState = getChildSessionCardState(part); - const modelLabel = - childMessages.length > 0 ? getChildSessionModelLabel(childMessages, modelOptions ?? []) : null; const isRunning = status === 'running' || status === 'pending'; const sessionId = getTaskToolSessionId(part); @@ -90,7 +84,6 @@ export function ChildSessionSection({ accessibilityLabel={t('agentChat.childSession.accessibilityLabel', { agentName, taskName, - modelLabel: modelLabel ? `, ${modelLabel}` : '', status: t(CHILD_SESSION_STATUS_LABEL_KEYS[status]), })} accessibilityHint={sessionId ? t('agentChat.childSession.openHint') : undefined} @@ -111,7 +104,6 @@ export function ChildSessionSection({ {taskName} - {modelLabel ? : null} diff --git a/apps/mobile/src/i18n/locales/af.json b/apps/mobile/src/i18n/locales/af.json index 91c4fe3d07..2a9a247947 100644 --- a/apps/mobile/src/i18n/locales/af.json +++ b/apps/mobile/src/i18n/locales/af.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "Die agent wag op toestemming. Terwyl hierdie versoek oop is, is jou boodskap aan die agent onderbreek." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Maksimum nesdiepte bereik.", "modelAccessibility": "Model: {{modelLabel}}", "openHint": "Maak subsessie oop", diff --git a/apps/mobile/src/i18n/locales/am.json b/apps/mobile/src/i18n/locales/am.json index 0987f05dc6..4829aed17a 100644 --- a/apps/mobile/src/i18n/locales/am.json +++ b/apps/mobile/src/i18n/locales/am.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "ወኪሉ ፈቃድን እየጠበቀ ነው። ይህ ጥያቄ ክፍት ሆኖ እስካለ ድረስ፣ ለወኪሉ የሚልኩት መልእክት ቆሟል።" }, "childSession": { - "accessibilityLabel": "{{agentName}}፣ {{taskName}}{{modelLabel}}፣ {{status}}", + "accessibilityLabel": "{{agentName}}፣ {{taskName}}፣ {{status}}", "maxNestingDepth": "ከፍተኛው ጥልቀት ደርሷል።", "modelAccessibility": "ሞዴል፡ {{modelLabel}}", "openHint": "የንዑስ-ወኪል ክፍለ-ጊዜ ይክፈቱ", diff --git a/apps/mobile/src/i18n/locales/ar.json b/apps/mobile/src/i18n/locales/ar.json index 1f52a748b5..68f4f70d9c 100644 --- a/apps/mobile/src/i18n/locales/ar.json +++ b/apps/mobile/src/i18n/locales/ar.json @@ -2027,7 +2027,7 @@ "waitingForPermission": "الوكيل في انتظار الإذن. أثناء فتح هذا الطلب، تتوقف رسالتك إلى الوكيل مؤقتًا." }, "childSession": { - "accessibilityLabel": "{{agentName}}، {{taskName}}{{modelLabel}}، {{status}}", + "accessibilityLabel": "{{agentName}}، {{taskName}}، {{status}}", "maxNestingDepth": "تم الوصول إلى أقصى عمق تداخل.", "modelAccessibility": "النموذج: {{modelLabel}}", "openHint": "فتح جلسة الوكيل الفرعي", diff --git a/apps/mobile/src/i18n/locales/az.json b/apps/mobile/src/i18n/locales/az.json index 3d644edcf3..69a730eaf3 100644 --- a/apps/mobile/src/i18n/locales/az.json +++ b/apps/mobile/src/i18n/locales/az.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "Agent icazə gözləyir. Bu sorğu açıq olduğu müddətdə agentə mesajınız dayandırılıb." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Maksimum yuvalama dərinliyinə çatıldı.", "modelAccessibility": "Model: {{modelLabel}}", "openHint": "Subagent sessiyasını aç", diff --git a/apps/mobile/src/i18n/locales/be.json b/apps/mobile/src/i18n/locales/be.json index 02695fa80e..1bd61a079d 100644 --- a/apps/mobile/src/i18n/locales/be.json +++ b/apps/mobile/src/i18n/locales/be.json @@ -2477,7 +2477,7 @@ "waitingForPermission": "Агент чакае дазволу. Пакуль запыт адкрыты, ваша паведамленне агенту прыпыненае." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Дасягнутая максімальная глыбіня ўкладання.", "modelAccessibility": "Мадэль: {{modelLabel}}", "openHint": "Адкрыць сеанс падагента", diff --git a/apps/mobile/src/i18n/locales/bg.json b/apps/mobile/src/i18n/locales/bg.json index fd5c31ac9e..047928d58c 100644 --- a/apps/mobile/src/i18n/locales/bg.json +++ b/apps/mobile/src/i18n/locales/bg.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "Агентът чака разрешение. Докато тази заявка е отворена, съобщението ви до агента е на пауза." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Достигната е максималната дълбочина на влагане.", "modelAccessibility": "Модел: {{modelLabel}}", "openHint": "Отворете сесия на субагент", diff --git a/apps/mobile/src/i18n/locales/bn.json b/apps/mobile/src/i18n/locales/bn.json index 2c66b08c9d..8a5af1f19c 100644 --- a/apps/mobile/src/i18n/locales/bn.json +++ b/apps/mobile/src/i18n/locales/bn.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "এজেন্ট অনুমতির জন্য অপেক্ষা করছে। এই অনুরোধটি খোলা থাকলে, এজেন্টে আপনার বার্তা বিরতিতে থাকে।" }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "সর্বাধিক নেস্টিং গভীরতায় পৌঁছেছে।", "modelAccessibility": "মডেল: {{modelLabel}}", "openHint": "সাবএজেন্ট সেশন খুলুন", diff --git a/apps/mobile/src/i18n/locales/bs.json b/apps/mobile/src/i18n/locales/bs.json index 567791a749..5e414a0185 100644 --- a/apps/mobile/src/i18n/locales/bs.json +++ b/apps/mobile/src/i18n/locales/bs.json @@ -2461,7 +2461,7 @@ "waitingForPermission": "Agent čeka dozvolu. Dok je ovaj zahtjev otvoren, vaša poruka agentu je pauzirana." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Dosegnuta je maksimalna dubina gniježđenja.", "modelAccessibility": "Model: {{modelLabel}}", "openHint": "Otvori sesiju podagenta", diff --git a/apps/mobile/src/i18n/locales/ca.json b/apps/mobile/src/i18n/locales/ca.json index 06a97d29c8..eba891719d 100644 --- a/apps/mobile/src/i18n/locales/ca.json +++ b/apps/mobile/src/i18n/locales/ca.json @@ -2461,7 +2461,7 @@ "waitingForPermission": "L'agent espera un permís. Mentre aquesta petició sigui oberta, el teu missatge a l'agent està en pausa." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "S'ha assolit la profunditat màxima de nidificació.", "modelAccessibility": "Model: {{modelLabel}}", "openHint": "Obre la sessió de subagent", diff --git a/apps/mobile/src/i18n/locales/ckb.json b/apps/mobile/src/i18n/locales/ckb.json index b3859bbf79..a45aeec91a 100644 --- a/apps/mobile/src/i18n/locales/ckb.json +++ b/apps/mobile/src/i18n/locales/ckb.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "ئەجێنتەکە چاوەڕوانی مۆڵەتە. تا ئەم داواکارییە کراوە بێت، نامەکەی تۆ بۆ ئەجێنتەکە ڕاوەستاوە." }, "childSession": { - "accessibilityLabel": "{{agentName}}، {{taskName}}{{modelLabel}}، {{status}}", + "accessibilityLabel": "{{agentName}}، {{taskName}}، {{status}}", "maxNestingDepth": "زۆرترین قوڵایی لەتکراوە گەیشتە.", "modelAccessibility": "مۆدێل: {{modelLabel}}", "openHint": "کردنەوەی دانیشتنی ساب‌ئەجێنت", diff --git a/apps/mobile/src/i18n/locales/cs.json b/apps/mobile/src/i18n/locales/cs.json index 1b2872d166..41a92f7093 100644 --- a/apps/mobile/src/i18n/locales/cs.json +++ b/apps/mobile/src/i18n/locales/cs.json @@ -2477,7 +2477,7 @@ "waitingForPermission": "Agent čeká na oprávnění. Dokud je tento požadavek otevřený, vaše zpráva agentovi je pozastavena." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Dosažena maximální hloubka vnoření.", "modelAccessibility": "Model: {{modelLabel}}", "openHint": "Otevřít relaci subagenta", diff --git a/apps/mobile/src/i18n/locales/cy.json b/apps/mobile/src/i18n/locales/cy.json index 31a6492abc..61eff48ae7 100644 --- a/apps/mobile/src/i18n/locales/cy.json +++ b/apps/mobile/src/i18n/locales/cy.json @@ -2509,7 +2509,7 @@ "waitingForPermission": "Mae'r asiant yn aros am ganiatâd. Tra bod y cais hwn ar agor, mae eich neges at yr asiant wedi'i hoedi." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Cyrhaeddwyd dyfnder nythu uchaf.", "modelAccessibility": "Model: {{modelLabel}}", "openHint": "Agor sesiwn is-asiant", diff --git a/apps/mobile/src/i18n/locales/da.json b/apps/mobile/src/i18n/locales/da.json index 154353bc38..92961e6646 100644 --- a/apps/mobile/src/i18n/locales/da.json +++ b/apps/mobile/src/i18n/locales/da.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "Agenten venter på tilladelse. Mens denne anmodning er åben, er din besked til agenten sat på pause." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Maksimal redeniveau nået.", "modelAccessibility": "Model: {{modelLabel}}", "openHint": "Åbn subagent-session", diff --git a/apps/mobile/src/i18n/locales/de.json b/apps/mobile/src/i18n/locales/de.json index 81dc24d01a..71d925316f 100644 --- a/apps/mobile/src/i18n/locales/de.json +++ b/apps/mobile/src/i18n/locales/de.json @@ -1991,7 +1991,7 @@ "waitingForPermission": "Der Agent wartet auf eine Berechtigung. Solange diese Anfrage offen ist, ist deine Nachricht an den Agenten pausiert." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Maximale Verschachtelungstiefe erreicht.", "modelAccessibility": "Modell: {{modelLabel}}", "openHint": "Subagent-Sitzung öffnen", diff --git a/apps/mobile/src/i18n/locales/el.json b/apps/mobile/src/i18n/locales/el.json index 67570941cc..61b46ab49f 100644 --- a/apps/mobile/src/i18n/locales/el.json +++ b/apps/mobile/src/i18n/locales/el.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "Ο πράκτορας περιμένει άδεια. Όσο αυτό το αίτημα είναι ανοιχτό, το μήνυμά σας προς τον πράκτορα είναι σε παύση." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Επιτεύχθηκε το μέγιστο βάθος ένθεσης.", "modelAccessibility": "Μοντέλο: {{modelLabel}}", "openHint": "Άνοιγμα συνεδρίας υποπράκτορα", diff --git a/apps/mobile/src/i18n/locales/en.json b/apps/mobile/src/i18n/locales/en.json index f613159fc6..4ac6121a8a 100644 --- a/apps/mobile/src/i18n/locales/en.json +++ b/apps/mobile/src/i18n/locales/en.json @@ -2475,7 +2475,7 @@ "waitingForPermission": "The agent is waiting for permission. While this request is open, your message to the agent is paused." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Maximum nesting depth reached.", "modelAccessibility": "Model: {{modelLabel}}", "openHint": "Open subagent session", diff --git a/apps/mobile/src/i18n/locales/es.json b/apps/mobile/src/i18n/locales/es.json index e322aefaa8..a928be0409 100644 --- a/apps/mobile/src/i18n/locales/es.json +++ b/apps/mobile/src/i18n/locales/es.json @@ -2000,7 +2000,7 @@ "waitingForPermission": "El agente está esperando permiso. Mientras esta solicitud esté abierta, tu mensaje al agente está en pausa." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Profundidad máxima de anidamiento alcanzada.", "modelAccessibility": "Modelo: {{modelLabel}}", "openHint": "Abrir sesión del subagente", diff --git a/apps/mobile/src/i18n/locales/et.json b/apps/mobile/src/i18n/locales/et.json index 65afc56be7..110c57d4fc 100644 --- a/apps/mobile/src/i18n/locales/et.json +++ b/apps/mobile/src/i18n/locales/et.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "Agent ootab luba. Kuni see taotlus on avatud, on sinu sõnum agendile peatatud." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Maksimaalne pesastussügavus saavutatud.", "modelAccessibility": "Mudel: {{modelLabel}}", "openHint": "Ava alaseansi seanss", diff --git a/apps/mobile/src/i18n/locales/eu.json b/apps/mobile/src/i18n/locales/eu.json index 0d6f351e14..134c0288b9 100644 --- a/apps/mobile/src/i18n/locales/eu.json +++ b/apps/mobile/src/i18n/locales/eu.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "Agentea baimenaren zain dago. Eskari hau irekita dagoen bitartean, agentearentzako mezua pausatuta dago." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Gehieneko habiaratze-sakonera iritsi da.", "modelAccessibility": "Modeloa: {{modelLabel}}", "openHint": "Ireki subagentearen saioa", diff --git a/apps/mobile/src/i18n/locales/fa.json b/apps/mobile/src/i18n/locales/fa.json index 5858e187ec..a189764c60 100644 --- a/apps/mobile/src/i18n/locales/fa.json +++ b/apps/mobile/src/i18n/locales/fa.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "عامل منتظر مجوز است. تا باز بودن این درخواست، پیام شما به عامل متوقف است." }, "childSession": { - "accessibilityLabel": "{{agentName}}، {{taskName}}{{modelLabel}}، {{status}}", + "accessibilityLabel": "{{agentName}}، {{taskName}}، {{status}}", "maxNestingDepth": "حداکثر عمق تو در تو به دست آمده است.", "modelAccessibility": "مدل: {{modelLabel}}", "openHint": "باز کردن جلسه زیرعامل", diff --git a/apps/mobile/src/i18n/locales/fi.json b/apps/mobile/src/i18n/locales/fi.json index 923918039a..a0fed1db70 100644 --- a/apps/mobile/src/i18n/locales/fi.json +++ b/apps/mobile/src/i18n/locales/fi.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "Agentti odottaa lupaa. Kun pyyntö on avoinna, viestisi agentille on keskeytetty." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Suurin sisäkkäissyvyys saavutettu.", "modelAccessibility": "Malli: {{modelLabel}}", "openHint": "Avaa alagentin istunto", diff --git a/apps/mobile/src/i18n/locales/fil.json b/apps/mobile/src/i18n/locales/fil.json index accafb8593..fb2f2f6edb 100644 --- a/apps/mobile/src/i18n/locales/fil.json +++ b/apps/mobile/src/i18n/locales/fil.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "Naghihintay ang agent ng pahintulot. Habang bukas ang kahilingang ito, naka-pause ang iyong mensahe sa agent." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Naabot ang maximum na lalim ng nesting.", "modelAccessibility": "Modelo: {{modelLabel}}", "openHint": "Buksan ang subagent session", diff --git a/apps/mobile/src/i18n/locales/fr.json b/apps/mobile/src/i18n/locales/fr.json index e84d569626..191d9bf5d2 100644 --- a/apps/mobile/src/i18n/locales/fr.json +++ b/apps/mobile/src/i18n/locales/fr.json @@ -1916,7 +1916,7 @@ "waitingForPermission": "L'agent attend une autorisation. Tant que cette demande est ouverte, votre message à l'agent est en pause." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Profondeur d'imbrication maximale atteinte.", "modelAccessibility": "Modèle : {{modelLabel}}", "openHint": "Ouvrir la session du sous-agent", diff --git a/apps/mobile/src/i18n/locales/ga.json b/apps/mobile/src/i18n/locales/ga.json index 2378722ef5..950b4abb50 100644 --- a/apps/mobile/src/i18n/locales/ga.json +++ b/apps/mobile/src/i18n/locales/ga.json @@ -2493,7 +2493,7 @@ "waitingForPermission": "Tá an gníomhaire ag fanacht ar chead. Agus an t-iarratas seo ar oscailt, tá do theachtaireacht chuig an ngníomhaire ar sos." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Baineadh an t-uasdoimhneacht neadaithe amach.", "modelAccessibility": "Samhail: {{modelLabel}}", "openHint": "Oscail seisiún foghníomhaire", diff --git a/apps/mobile/src/i18n/locales/gl.json b/apps/mobile/src/i18n/locales/gl.json index 96f62a33bb..90edc96e0b 100644 --- a/apps/mobile/src/i18n/locales/gl.json +++ b/apps/mobile/src/i18n/locales/gl.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "O axente está agardando permiso. Mentres esta solicitude estea aberta, a túa mensaxe para o axente está en pausa." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Acadouse a profundidade máxima de anidación.", "modelAccessibility": "Modelo: {{modelLabel}}", "openHint": "Abrir sesión de subaxente", diff --git a/apps/mobile/src/i18n/locales/gu.json b/apps/mobile/src/i18n/locales/gu.json index 6ac9b2d5a5..fe32ff94b5 100644 --- a/apps/mobile/src/i18n/locales/gu.json +++ b/apps/mobile/src/i18n/locales/gu.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "એજન્ટ પરવાનગીની રાહ જોઈ રહ્યો છે. આ વિનંતી ખુલ્લી હોય ત્યાં સુધી, એજન્ટને તમારો સંદેશ થંભેલો છે." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "મહત્તમ નેસ્ટિંગ ઊંડાઈ સુધી પહોંચી ગયું.", "modelAccessibility": "મોડલ: {{modelLabel}}", "openHint": "સબએજન્ટ સત્ર ખોલો", diff --git a/apps/mobile/src/i18n/locales/ha.json b/apps/mobile/src/i18n/locales/ha.json index 8d08b6407d..99c7f01f51 100644 --- a/apps/mobile/src/i18n/locales/ha.json +++ b/apps/mobile/src/i18n/locales/ha.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "Wakili yana jiran izini. Yayin da wannan buƙata ke a buɗe, sakonka zuwa wakili yana dakatarwa." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Matsakaicin zurfin gida ya kai ga iyaka.", "modelAccessibility": "Model: {{modelLabel}}", "openHint": "Buɗe zaman subagent", diff --git a/apps/mobile/src/i18n/locales/he.json b/apps/mobile/src/i18n/locales/he.json index 0a27f8e8fd..611e608c68 100644 --- a/apps/mobile/src/i18n/locales/he.json +++ b/apps/mobile/src/i18n/locales/he.json @@ -2000,7 +2000,7 @@ "waitingForPermission": "הסוכן ממתין להרשאה. בזמן שהבקשה הזו פתוחה, ההודעה שלך לסוכן מושהה." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "הגעת לעומק הקינון המרבי.", "modelAccessibility": "דגם: {{modelLabel}}", "openHint": "פתח הפעלת תת-סוכן", diff --git a/apps/mobile/src/i18n/locales/hi.json b/apps/mobile/src/i18n/locales/hi.json index 8651c94070..83eb75ce4f 100644 --- a/apps/mobile/src/i18n/locales/hi.json +++ b/apps/mobile/src/i18n/locales/hi.json @@ -1964,7 +1964,7 @@ "waitingForPermission": "एजेंट अनुमति की प्रतीक्षा कर रहा है। जब तक यह अनुरोध खुला है, एजेंट को आपका संदेश रुका हुआ है।" }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "अधिकतम नेस्टिंग गहराई तक पहुँच गए।", "modelAccessibility": "मॉडल: {{modelLabel}}", "openHint": "सबएजेंट सत्र खोलें", diff --git a/apps/mobile/src/i18n/locales/hr.json b/apps/mobile/src/i18n/locales/hr.json index 344065c505..fc9b420ecd 100644 --- a/apps/mobile/src/i18n/locales/hr.json +++ b/apps/mobile/src/i18n/locales/hr.json @@ -2461,7 +2461,7 @@ "waitingForPermission": "Agent čeka dozvolu. Dok je ovaj zahtjev otvoren, vaša je poruka agentu pauzirana." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Dosegnuta je najveća dubina ugniježđenja.", "modelAccessibility": "Model: {{modelLabel}}", "openHint": "Otvori sesiju podagenta", diff --git a/apps/mobile/src/i18n/locales/ht.json b/apps/mobile/src/i18n/locales/ht.json index c74380e8de..c661f75d35 100644 --- a/apps/mobile/src/i18n/locales/ht.json +++ b/apps/mobile/src/i18n/locales/ht.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "Ajant lan ap tann pèmisyon. Pandan demann sa a ouvè, mesaj ou bay ajant lan ap sispann." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Pwofondè maksimòm kouche rive jwenn.", "modelAccessibility": "Modèl: {{modelLabel}}", "openHint": "Louvri sesyon subajant", diff --git a/apps/mobile/src/i18n/locales/hu.json b/apps/mobile/src/i18n/locales/hu.json index 75cd946787..a935d17388 100644 --- a/apps/mobile/src/i18n/locales/hu.json +++ b/apps/mobile/src/i18n/locales/hu.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "Az ügynök engedélyre vár. Amíg ez a kérés nyitva van, az ügynöknek küldött üzeneted szünetel." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Elérted a maximális beágyazási mélységet.", "modelAccessibility": "Modell: {{modelLabel}}", "openHint": "Alügynök munkamenet megnyitása", diff --git a/apps/mobile/src/i18n/locales/hy.json b/apps/mobile/src/i18n/locales/hy.json index 0c765d11b0..787e385bb4 100644 --- a/apps/mobile/src/i18n/locales/hy.json +++ b/apps/mobile/src/i18n/locales/hy.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "Գործակալը սպասում է թույլտվության: Քանի դեռ այս հարցումը բաց է, ձեր հաղորդագրությունը գործակալին դադարեցված է:" }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Հասել է բնադրման առավելագույն խորությանը:", "modelAccessibility": "Մոդել: {{modelLabel}}", "openHint": "Բացել ենթագործակալի նիստ", diff --git a/apps/mobile/src/i18n/locales/id.json b/apps/mobile/src/i18n/locales/id.json index 09935fdff9..116c3fa631 100644 --- a/apps/mobile/src/i18n/locales/id.json +++ b/apps/mobile/src/i18n/locales/id.json @@ -1991,7 +1991,7 @@ "waitingForPermission": "Agen sedang menunggu izin. Saat permintaan ini terbuka, pesan Anda ke agen dijeda." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Kedalaman sarang maksimum tercapai.", "modelAccessibility": "Model: {{modelLabel}}", "openHint": "Buka sesi subagen", diff --git a/apps/mobile/src/i18n/locales/ig.json b/apps/mobile/src/i18n/locales/ig.json index f3cd03f36b..2312a50c93 100644 --- a/apps/mobile/src/i18n/locales/ig.json +++ b/apps/mobile/src/i18n/locales/ig.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "Onye nnọchite na-eche ikike. Ọ bụrụhaala na arịrịọ a meghere, ozi gị nye onye nnọchite na-akwụsị." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Omimi kachasị ruru.", "modelAccessibility": "Ụdị: {{modelLabel}}", "openHint": "Mepee nnọkọ onye nnọchite", diff --git a/apps/mobile/src/i18n/locales/is.json b/apps/mobile/src/i18n/locales/is.json index e249ef1b02..aaed204da2 100644 --- a/apps/mobile/src/i18n/locales/is.json +++ b/apps/mobile/src/i18n/locales/is.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "Umboðið bíður heimildar. Meðan þessi beiðni er opin er skilaboðum þínum til umboðsins haldið í bið." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Hámarks varpaningsdýpt náð.", "modelAccessibility": "Líkan: {{modelLabel}}", "openHint": "Opna undirumboðslotu", diff --git a/apps/mobile/src/i18n/locales/it.json b/apps/mobile/src/i18n/locales/it.json index 9e17f68043..ddf2069032 100644 --- a/apps/mobile/src/i18n/locales/it.json +++ b/apps/mobile/src/i18n/locales/it.json @@ -1982,7 +1982,7 @@ "waitingForPermission": "L'agente attende l'autorizzazione. Mentre questa richiesta è aperta, il tuo messaggio all'agente è in pausa." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Raggiunta la profondità massima di annidamento.", "modelAccessibility": "Modello: {{modelLabel}}", "openHint": "Apri sessione del subagente", diff --git a/apps/mobile/src/i18n/locales/ja.json b/apps/mobile/src/i18n/locales/ja.json index fa14a04b09..7ed6333095 100644 --- a/apps/mobile/src/i18n/locales/ja.json +++ b/apps/mobile/src/i18n/locales/ja.json @@ -1991,7 +1991,7 @@ "waitingForPermission": "エージェントが権限を待っています。このリクエストが開いている間、エージェントへのメッセージは一時停止されます。" }, "childSession": { - "accessibilityLabel": "{{agentName}}、{{taskName}}{{modelLabel}}、{{status}}", + "accessibilityLabel": "{{agentName}}、{{taskName}}、{{status}}", "maxNestingDepth": "最大ネスト深度に達しました。", "modelAccessibility": "モデル: {{modelLabel}}", "openHint": "サブエージェントセッションを開く", diff --git a/apps/mobile/src/i18n/locales/ka.json b/apps/mobile/src/i18n/locales/ka.json index 90ef442d89..370993de3d 100644 --- a/apps/mobile/src/i18n/locales/ka.json +++ b/apps/mobile/src/i18n/locales/ka.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "აგენტი ელოდება ნებართვას. სანამ ეს მოთხოვნა ღიაა, აგენტისთვის გაგზავნილი თქვენი შეტყობინება შეჩერებულია." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "მაქსიმალური ბუდირების სიღრმე მიღწეულია.", "modelAccessibility": "მოდელი: {{modelLabel}}", "openHint": "ქვეაგენტის სესიის გახსნა", diff --git a/apps/mobile/src/i18n/locales/kk.json b/apps/mobile/src/i18n/locales/kk.json index e63e0f95ae..28c4221327 100644 --- a/apps/mobile/src/i18n/locales/kk.json +++ b/apps/mobile/src/i18n/locales/kk.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "Агент рұқсатты күтуде. Сұраныс ашық тұрғанда, агентке жіберілетін хабарлама кідіртілген." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Ұялаудың ең жоғары тереңдігіне жетілді.", "modelAccessibility": "Модель: {{modelLabel}}", "openHint": "Субаргент сессиясын ашу", diff --git a/apps/mobile/src/i18n/locales/km.json b/apps/mobile/src/i18n/locales/km.json index 6128d428ba..cb6f389cf9 100644 --- a/apps/mobile/src/i18n/locales/km.json +++ b/apps/mobile/src/i18n/locales/km.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "ភ្នាក់ងារកំពុងរង់ចាំការអនុញ្ញាត។ ខណៈពេលសំណើនេះបើក សាររបស់អ្នកទៅកាន់ភ្នាក់ងារត្រូវបានផ្អាក។" }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "ឈានដល់ជម្រៅនៃការដាក់ក្នុងអតិបរមា។", "modelAccessibility": "ម៉ូដែល: {{modelLabel}}", "openHint": "បើកវគ្គភ្នាក់ងាររង", diff --git a/apps/mobile/src/i18n/locales/kn.json b/apps/mobile/src/i18n/locales/kn.json index 6fe6520ead..892bc12281 100644 --- a/apps/mobile/src/i18n/locales/kn.json +++ b/apps/mobile/src/i18n/locales/kn.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "ಏಜೆಂಟ್ ಅನುಮತಿಗಾಗಿ ಕಾಯುತ್ತಿದೆ. ಈ ವಿನಂತಿ ತೆರೆದಿರುವಾಗ, ಏಜೆಂಟ್ಗೆ ನಿಮ್ಮ ಸಂದೇಶ ವಿರಾಮಗೊಳಿಸಲಾಗಿದೆ." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "ಗರಿಷ್ಠ ನೆಸ್ಟಿಂಗ್ ಆಳ ತಲುಪಲಾಗಿದೆ.", "modelAccessibility": "ಮಾದರಿ: {{modelLabel}}", "openHint": "ಉಪ-ಏಜೆಂಟ್ ಸೆಷನ್ ತೆರೆಯಿರಿ", diff --git a/apps/mobile/src/i18n/locales/ko.json b/apps/mobile/src/i18n/locales/ko.json index 120121c200..1e29fd6639 100644 --- a/apps/mobile/src/i18n/locales/ko.json +++ b/apps/mobile/src/i18n/locales/ko.json @@ -1991,7 +1991,7 @@ "waitingForPermission": "에이전트가 권한을 기다리고 있습니다. 이 요청이 열려 있는 동안 에이전트에게 보내는 메시지가 일시 중지됩니다." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "최대 중첩 깊이에 도달했습니다.", "modelAccessibility": "모델: {{modelLabel}}", "openHint": "하위 에이전트 세션 열기", diff --git a/apps/mobile/src/i18n/locales/lo.json b/apps/mobile/src/i18n/locales/lo.json index c98296ce1f..1fc23f58d5 100644 --- a/apps/mobile/src/i18n/locales/lo.json +++ b/apps/mobile/src/i18n/locales/lo.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "ຕົວແທນກຳລັງລໍຖ້າການອະນຸຍາດ. ໃນຂະນະທີ່ຄຳຂໍນີ້ເປີດຢູ່, ຂໍ້ຄວາມຂອງທ່ານໄປຫາຕົວແທນຖືກຢຸດ." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "ຄວາມເລິກຂອງການຊ້ອນກັນສູງສຸດຮອດແລ້ວ.", "modelAccessibility": "ຮູບແບບ: {{modelLabel}}", "openHint": "ເປີດເຊດຊັນຂອງຕົວແທນຍ່ອຍ", diff --git a/apps/mobile/src/i18n/locales/lt.json b/apps/mobile/src/i18n/locales/lt.json index f2b4e94bb3..9909d10530 100644 --- a/apps/mobile/src/i18n/locales/lt.json +++ b/apps/mobile/src/i18n/locales/lt.json @@ -2477,7 +2477,7 @@ "waitingForPermission": "Agentas laukia leidimo. Kol šis prašymas atviras, jūsų žinutė agentui pristabdyta." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Pasiekta didžiausias įdėjimo gylis.", "modelAccessibility": "Modelis: {{modelLabel}}", "openHint": "Atidaryti subagento sesiją", diff --git a/apps/mobile/src/i18n/locales/lv.json b/apps/mobile/src/i18n/locales/lv.json index 6d8f5c6855..6ce712b8a4 100644 --- a/apps/mobile/src/i18n/locales/lv.json +++ b/apps/mobile/src/i18n/locales/lv.json @@ -2461,7 +2461,7 @@ "waitingForPermission": "Aģents gaida atļauju. Kamēr šis pieprasījums ir atvērts, tavs ziņojums aģentam ir apturēts." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Sasniegts maksimālais ligzdošanas dziļums.", "modelAccessibility": "Modelis: {{modelLabel}}", "openHint": "Atvērt apakšaģenta sesiju", diff --git a/apps/mobile/src/i18n/locales/mg.json b/apps/mobile/src/i18n/locales/mg.json index e81289c3fd..c5716103b7 100644 --- a/apps/mobile/src/i18n/locales/mg.json +++ b/apps/mobile/src/i18n/locales/mg.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "Miandry alalana ny agent. Raha mbola misokatra ity fangatahana ity dia mijanona ny hafatrao ho an'ny agent." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Tafakatra ny fetran'ny halalina ambony indrindra.", "modelAccessibility": "Modely: {{modelLabel}}", "openHint": "Sokafy ny session subagent", diff --git a/apps/mobile/src/i18n/locales/mi.json b/apps/mobile/src/i18n/locales/mi.json index 093076d8af..219980058f 100644 --- a/apps/mobile/src/i18n/locales/mi.json +++ b/apps/mobile/src/i18n/locales/mi.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "Kei te tatari te kaihoko ki te whakaaetanga. I te wā e tuwhera ana tēnei tono, kua tū tō karere ki te kaihoko." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Kua tae ki te hōhonu kāho mōrahi.", "modelAccessibility": "Tauira: {{modelLabel}}", "openHint": "Whakatuwhera wātū kaihoko-iti", diff --git a/apps/mobile/src/i18n/locales/mk.json b/apps/mobile/src/i18n/locales/mk.json index 09bbf7c8ff..c07c89c76b 100644 --- a/apps/mobile/src/i18n/locales/mk.json +++ b/apps/mobile/src/i18n/locales/mk.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "Агентот чека дозвола. Додека ова барање е отворено, вашата порака до агентот е паузирана." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Достигната е максималната длабочина на вгнездување.", "modelAccessibility": "Модел: {{modelLabel}}", "openHint": "Отвори сесија на субагент", diff --git a/apps/mobile/src/i18n/locales/ml.json b/apps/mobile/src/i18n/locales/ml.json index 9445599427..6dabbd6f9e 100644 --- a/apps/mobile/src/i18n/locales/ml.json +++ b/apps/mobile/src/i18n/locales/ml.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "ഏജന്റ് അനുമതിക്കായി കാത്തിരിക്കുന്നു. ഈ അഭ്യർത്ഥന തുറന്നിരിക്കുമ്പോൾ, ഏജന്റിനുള്ള നിങ്ങളുടെ സന്ദേശം താൽക്കാലികമായി നിർത്തിയിരിക്കുന്നു." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "പരമാവധി നെസ്റ്റിംഗ് ആഴത്തിൽ എത്തി.", "modelAccessibility": "മോഡൽ: {{modelLabel}}", "openHint": "സബ്ഏജന്റ് സെഷൻ തുറക്കുക", diff --git a/apps/mobile/src/i18n/locales/mn.json b/apps/mobile/src/i18n/locales/mn.json index 25a6d27a5b..697268632c 100644 --- a/apps/mobile/src/i18n/locales/mn.json +++ b/apps/mobile/src/i18n/locales/mn.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "Агент зөвшөөрлийг хүлээж байна. Энэ хүсэлт нээлттэй байхад таны агент руу илгээсэн мэдээлэл түр зогсоно." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Хамгийн их үүрлэлтийн гүнд хүрлээ.", "modelAccessibility": "Загвар: {{modelLabel}}", "openHint": "Дэд агентын сессийг нээх", diff --git a/apps/mobile/src/i18n/locales/mr.json b/apps/mobile/src/i18n/locales/mr.json index 4403f45656..89571750f1 100644 --- a/apps/mobile/src/i18n/locales/mr.json +++ b/apps/mobile/src/i18n/locales/mr.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "एजंट परवानगीची वाट पाहत आहे. ही विनंती उघडी असताना, एजंटला तुमचा संदेश थांबलेला आहे." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "कमाल नेस्टिंग खोलीपर्यंत पोहोचले.", "modelAccessibility": "मॉडेल: {{modelLabel}}", "openHint": "सबएजंट सत्र उघडा", diff --git a/apps/mobile/src/i18n/locales/ms.json b/apps/mobile/src/i18n/locales/ms.json index dfb6118c25..17f4e0baa6 100644 --- a/apps/mobile/src/i18n/locales/ms.json +++ b/apps/mobile/src/i18n/locales/ms.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "Ejen sedang menunggu kebenaran. Semasa permintaan ini terbuka, mesej anda kepada ejen dijeda." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Kedalaman penyarangan maksimum dicapai.", "modelAccessibility": "Model: {{modelLabel}}", "openHint": "Buka sesi subejen", diff --git a/apps/mobile/src/i18n/locales/mt.json b/apps/mobile/src/i18n/locales/mt.json index 688c5bcf84..365ee93c6e 100644 --- a/apps/mobile/src/i18n/locales/mt.json +++ b/apps/mobile/src/i18n/locales/mt.json @@ -2493,7 +2493,7 @@ "waitingForPermission": "L-aġent qed jistenna l-permess. Waqt li din it-talba tkun miftuħa, il-messaġġ tiegħek lill-aġent ikun waqaf." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Il-fond massimu ta' nesting intlaħaq.", "modelAccessibility": "Mudell: {{modelLabel}}", "openHint": "Iftaħ is-sessjoni tas-subaġent", diff --git a/apps/mobile/src/i18n/locales/my.json b/apps/mobile/src/i18n/locales/my.json index 4eea3f0a09..986b981c3b 100644 --- a/apps/mobile/src/i18n/locales/my.json +++ b/apps/mobile/src/i18n/locales/my.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "Agent သည် ခွင့်ပြုချက်ကို စောင့်နေသည်။ ဤတောင်းဆိုမှု ဖွင့်ထားစဉ် agent သို့ သင့်စာသည် ရပ်နေသည်။" }, "childSession": { - "accessibilityLabel": "{{agentName}}၊ {{taskName}}{{modelLabel}}၊ {{status}}", + "accessibilityLabel": "{{agentName}}၊ {{taskName}}၊ {{status}}", "maxNestingDepth": "အများဆုံး nesting အတိမ်အနက်သို့ ရောက်ရှိပြီးပါပြီ။", "modelAccessibility": "မော်ဒယ်: {{modelLabel}}", "openHint": "subagent session ဖွင့်ရန်", diff --git a/apps/mobile/src/i18n/locales/nb.json b/apps/mobile/src/i18n/locales/nb.json index 67f3b4c07c..73e307baf3 100644 --- a/apps/mobile/src/i18n/locales/nb.json +++ b/apps/mobile/src/i18n/locales/nb.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "Agenten venter på tillatelse. Mens denne forespørselen er åpen, er meldingen din til agenten satt på pause." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Maksimal nesteingsdybde er nådd.", "modelAccessibility": "Modell: {{modelLabel}}", "openHint": "Åpne underagentøkten", diff --git a/apps/mobile/src/i18n/locales/ne.json b/apps/mobile/src/i18n/locales/ne.json index eeb7dd20f7..e6f5608d5a 100644 --- a/apps/mobile/src/i18n/locales/ne.json +++ b/apps/mobile/src/i18n/locales/ne.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "एजेन्ट अनुमतिको पर्खाइमा छ। यो अनुरोध खुला हुँदा, एजेन्टलाई तपाईंको सन्देश रोकिएको छ।" }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "अधिकतम नेस्टिङ गहिराइ पुग्यो।", "modelAccessibility": "मोडेल: {{modelLabel}}", "openHint": "सबएजेन्ट सत्र खोल्नुहोस्", diff --git a/apps/mobile/src/i18n/locales/nl.json b/apps/mobile/src/i18n/locales/nl.json index 3b825057b2..98ffabc6bb 100644 --- a/apps/mobile/src/i18n/locales/nl.json +++ b/apps/mobile/src/i18n/locales/nl.json @@ -1991,7 +1991,7 @@ "waitingForPermission": "De agent wacht op toestemming. Zolang dit verzoek open is, is je bericht aan de agent gepauzeerd." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Maximale nestdiepte bereikt.", "modelAccessibility": "Model: {{modelLabel}}", "openHint": "Subagentsessie openen", diff --git a/apps/mobile/src/i18n/locales/om.json b/apps/mobile/src/i18n/locales/om.json index a385f4df24..d6faece5fa 100644 --- a/apps/mobile/src/i18n/locales/om.json +++ b/apps/mobile/src/i18n/locales/om.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "Agent'ichi hayyama eegaa jira. Waanti kun banaa yeroo jiru, ergaa kee agent'ichaf dhaabameera." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Sadarkaan foyyoomuu baay'een ga'eera.", "modelAccessibility": "Moodela: {{modelLabel}}", "openHint": "Shumarra subagent bani", diff --git a/apps/mobile/src/i18n/locales/or.json b/apps/mobile/src/i18n/locales/or.json index 76117c6d36..21d9c93bd3 100644 --- a/apps/mobile/src/i18n/locales/or.json +++ b/apps/mobile/src/i18n/locales/or.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "ଏଜେଣ୍ଟ ଅନୁମତି ଅପେକ୍ଷା କରୁଛି। ଏହି ଅନୁରୋଧ ଖୋଲା ଥିବାବେଳେ, ଏଜେଣ୍ଟଙ୍କୁ ଆପଣଙ୍କ ବାର୍ତ୍ତା ବିରତ ହୋଇଛି।" }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "ସର୍ବାଧିକ ନେଷ୍ଟିଂ ଗଭୀରତାରେ ପହଞ୍ଚିଛି।", "modelAccessibility": "ମଡେଲ: {{modelLabel}}", "openHint": "ସବଏଜେଣ୍ଟ ସେସନ୍ ଖୋଲନ୍ତୁ", diff --git a/apps/mobile/src/i18n/locales/pa.json b/apps/mobile/src/i18n/locales/pa.json index f62c1487c7..59837a501c 100644 --- a/apps/mobile/src/i18n/locales/pa.json +++ b/apps/mobile/src/i18n/locales/pa.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "ਏਜੰਟ ਇਜਾਜ਼ਤ ਦੀ ਉਡੀਕ ਕਰ ਰਿਹਾ ਹੈ। ਜਦੋਂ ਇਹ ਬੇਨਤੀ ਖੁੱਲ੍ਹੀ ਹੈ, ਏਜੰਟ ਨੂੰ ਤੁਹਾਡਾ ਸੁਨੇਹਾ ਰੁਕਿਆ ਰਹਿੰਦਾ ਹੈ।" }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "ਵੱਧ ਤੋਂ ਵੱਧ ਨੇਸਟਿੰਗ ਡੂੰਘਾਈ ਪਹੁੰਚ ਗਈ।", "modelAccessibility": "ਮਾਡਲ: {{modelLabel}}", "openHint": "ਸਬਏਜੰਟ ਸੈਸ਼ਨ ਖੋਲ੍ਹੋ", diff --git a/apps/mobile/src/i18n/locales/pl.json b/apps/mobile/src/i18n/locales/pl.json index 20e0562d85..e85e49f43b 100644 --- a/apps/mobile/src/i18n/locales/pl.json +++ b/apps/mobile/src/i18n/locales/pl.json @@ -2009,7 +2009,7 @@ "waitingForPermission": "Agent czeka na uprawnienie. Dopóki ta prośba jest otwarta, Twoja wiadomość do agenta jest wstrzymana." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Osiągnięto maksymalną głębokość zagnieżdżenia.", "modelAccessibility": "Model: {{modelLabel}}", "openHint": "Otwórz sesję podagenta", diff --git a/apps/mobile/src/i18n/locales/ps.json b/apps/mobile/src/i18n/locales/ps.json index 0eb1d3384a..2a7147e468 100644 --- a/apps/mobile/src/i18n/locales/ps.json +++ b/apps/mobile/src/i18n/locales/ps.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "اجنټ د اجازې انتظار باسي. تر هغه چې دا غوښتنه خلاصه وي، اجنټ ته ستاسو پیغام درول شوی دی." }, "childSession": { - "accessibilityLabel": "{{agentName}}، {{taskName}}{{modelLabel}}، {{status}}", + "accessibilityLabel": "{{agentName}}، {{taskName}}، {{status}}", "maxNestingDepth": "اعظمي د ځای ناستي ژوروالي ته رسېدلی دی.", "modelAccessibility": "ماډل: {{modelLabel}}", "openHint": "د فرعي اجنټ غونډه پرانیزئ", diff --git a/apps/mobile/src/i18n/locales/pt-BR.json b/apps/mobile/src/i18n/locales/pt-BR.json index a7289c2c30..44279c0d07 100644 --- a/apps/mobile/src/i18n/locales/pt-BR.json +++ b/apps/mobile/src/i18n/locales/pt-BR.json @@ -1982,7 +1982,7 @@ "waitingForPermission": "O agente está aguardando permissão. Enquanto esta solicitação estiver aberta, sua mensagem ao agente fica pausada." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Profundidade máxima de aninhamento atingida.", "modelAccessibility": "Modelo: {{modelLabel}}", "openHint": "Abrir sessão do subagente", diff --git a/apps/mobile/src/i18n/locales/pt.json b/apps/mobile/src/i18n/locales/pt.json index b7d3c23a5d..1265dd436d 100644 --- a/apps/mobile/src/i18n/locales/pt.json +++ b/apps/mobile/src/i18n/locales/pt.json @@ -2461,7 +2461,7 @@ "waitingForPermission": "O agente aguarda permissão. Enquanto este pedido estiver aberto, a sua mensagem ao agente está em pausa." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Profundidade máxima de aninhamento atingida.", "modelAccessibility": "Modelo: {{modelLabel}}", "openHint": "Abrir sessão de subagente", diff --git a/apps/mobile/src/i18n/locales/ro.json b/apps/mobile/src/i18n/locales/ro.json index 30a7d2fc18..ebfa725287 100644 --- a/apps/mobile/src/i18n/locales/ro.json +++ b/apps/mobile/src/i18n/locales/ro.json @@ -2461,7 +2461,7 @@ "waitingForPermission": "Agentul așteaptă permisiunea. Cât timp această cerere este deschisă, mesajul tău către agent este în pauză." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "S-a atins adâncimea maximă de cuibărire.", "modelAccessibility": "Model: {{modelLabel}}", "openHint": "Deschide sesiunea de subagent", diff --git a/apps/mobile/src/i18n/locales/ru.json b/apps/mobile/src/i18n/locales/ru.json index 225915dd50..c9cd54c965 100644 --- a/apps/mobile/src/i18n/locales/ru.json +++ b/apps/mobile/src/i18n/locales/ru.json @@ -2009,7 +2009,7 @@ "waitingForPermission": "Агент ждет разрешения. Пока этот запрос открыт, ваше сообщение агенту приостановлено." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Достигнута максимальная глубина вложенности.", "modelAccessibility": "Модель: {{modelLabel}}", "openHint": "Открыть сеанс субагента", diff --git a/apps/mobile/src/i18n/locales/si.json b/apps/mobile/src/i18n/locales/si.json index 03af1b3a7f..e29af95aff 100644 --- a/apps/mobile/src/i18n/locales/si.json +++ b/apps/mobile/src/i18n/locales/si.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "ඒජන්තයා අවසරය එනතුරු බලා සිටී. මෙම ඉල්ලීම විවෘතව ඇති අතරතුර, ඒජන්තයාට ඔබගේ පණිවිඩය විරාම කර ඇත." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "උපරිම කැදලි ගැඹුරට ළඟා විය.", "modelAccessibility": "මාදිලිය: {{modelLabel}}", "openHint": "උපඒජන්ත සැසිය විවෘත කරන්න", diff --git a/apps/mobile/src/i18n/locales/sk.json b/apps/mobile/src/i18n/locales/sk.json index 5bfb4dc52d..f577b1c23a 100644 --- a/apps/mobile/src/i18n/locales/sk.json +++ b/apps/mobile/src/i18n/locales/sk.json @@ -2477,7 +2477,7 @@ "waitingForPermission": "Agent čaká na povolenie. Kým je táto požiadavka otvorená, vaša správa agentovi je pozastavená." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Dosiahla sa maximálna hĺbka vnorenia.", "modelAccessibility": "Model: {{modelLabel}}", "openHint": "Otvoriť reláciu subagenta", diff --git a/apps/mobile/src/i18n/locales/sl.json b/apps/mobile/src/i18n/locales/sl.json index faf8925766..458f983568 100644 --- a/apps/mobile/src/i18n/locales/sl.json +++ b/apps/mobile/src/i18n/locales/sl.json @@ -2477,7 +2477,7 @@ "waitingForPermission": "Agent čaka na dovoljenje. Dokler je ta zahteva odprta, je tvoje sporočilo agentu začasno ustavljeno." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Dosežena je največja globina gnezdenja.", "modelAccessibility": "Model: {{modelLabel}}", "openHint": "Odpri podagentovo sejo", diff --git a/apps/mobile/src/i18n/locales/so.json b/apps/mobile/src/i18n/locales/so.json index 25235c74cb..13c8e82ad1 100644 --- a/apps/mobile/src/i18n/locales/so.json +++ b/apps/mobile/src/i18n/locales/so.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "Wakiilku wuxuu sugayaa ogolaansho. Inta codkani furan yahay, fariintaada wakiilka waa hakad ah." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Qotada ugu sarreysa ee guntinta waa la gaaray.", "modelAccessibility": "Model: {{modelLabel}}", "openHint": "Fur kalfadhiga subagent", diff --git a/apps/mobile/src/i18n/locales/sq.json b/apps/mobile/src/i18n/locales/sq.json index 0f3f75f900..5375ca05c7 100644 --- a/apps/mobile/src/i18n/locales/sq.json +++ b/apps/mobile/src/i18n/locales/sq.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "Agjenti po pret lejen. Ndërsa kjo kërkesë është e hapur, mesazhi juaj te agjenti është i ndërprerë." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "U arrit thellësia maksimale e folezimit.", "modelAccessibility": "Modeli: {{modelLabel}}", "openHint": "Hap seancën e nënagjentit", diff --git a/apps/mobile/src/i18n/locales/sr.json b/apps/mobile/src/i18n/locales/sr.json index 9ab96da601..343fe7e58f 100644 --- a/apps/mobile/src/i18n/locales/sr.json +++ b/apps/mobile/src/i18n/locales/sr.json @@ -2461,7 +2461,7 @@ "waitingForPermission": "Agent čeka dozvolu. Dok je ovaj zahtev otvoren, vaša poruka agentu je pauzirana." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Dostignuta je maksimalna dubina ugnježđivanja.", "modelAccessibility": "Model: {{modelLabel}}", "openHint": "Otvori sesiju podagenta", diff --git a/apps/mobile/src/i18n/locales/sv.json b/apps/mobile/src/i18n/locales/sv.json index 23cbf8fa1f..6e723d37be 100644 --- a/apps/mobile/src/i18n/locales/sv.json +++ b/apps/mobile/src/i18n/locales/sv.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "Agenten väntar på behörighet. Medan denna förfrågan är öppen är ditt meddelande till agenten pausat." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Maximalt kapslingsdjup nått.", "modelAccessibility": "Modell: {{modelLabel}}", "openHint": "Öppna undersessionssession", diff --git a/apps/mobile/src/i18n/locales/sw.json b/apps/mobile/src/i18n/locales/sw.json index e9fad4ecae..ebaaa97ac4 100644 --- a/apps/mobile/src/i18n/locales/sw.json +++ b/apps/mobile/src/i18n/locales/sw.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "Wakala anasubiri ruhusa. Wakati ombi hili liko wazi, ujumbe wako kwa wakala umesimamishwa." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Kina cha juu zaidi cha kupachika kimefikiwa.", "modelAccessibility": "Mfano: {{modelLabel}}", "openHint": "Fungua kikao cha subagent", diff --git a/apps/mobile/src/i18n/locales/ta.json b/apps/mobile/src/i18n/locales/ta.json index f90891b773..87435f7963 100644 --- a/apps/mobile/src/i18n/locales/ta.json +++ b/apps/mobile/src/i18n/locales/ta.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "முகவர் அனுமதிக்காக காத்திருக்கிறார். இந்த கோரிக்கை திறந்திருக்கும்போது, முகவருக்கான உங்கள் செய்தி இடைநிறுத்தப்பட்டுள்ளது." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "அதிகபட்ச உள்ளமைவு ஆழத்தை எட்டியது.", "modelAccessibility": "மாதிரி: {{modelLabel}}", "openHint": "துணை முகவர் அமர்வைத் திறக்கவும்", diff --git a/apps/mobile/src/i18n/locales/te.json b/apps/mobile/src/i18n/locales/te.json index 280655856f..218dabc064 100644 --- a/apps/mobile/src/i18n/locales/te.json +++ b/apps/mobile/src/i18n/locales/te.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "ఏజెంట్ అనుమతి కోసం వేచి ఉంది. ఈ అభ్యర్థన తెరిచి ఉన్నప్పుడు, ఏజెంట్కు మీ సందేశం పాజ్ చేయబడుతుంది." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "గరిష్ట గూడు లోతు చేరుకుంది.", "modelAccessibility": "మోడల్: {{modelLabel}}", "openHint": "సబ్ఏజెంట్ సెషన్ను తెరవండి", diff --git a/apps/mobile/src/i18n/locales/th.json b/apps/mobile/src/i18n/locales/th.json index 5ae3b1461c..dbf1b8d795 100644 --- a/apps/mobile/src/i18n/locales/th.json +++ b/apps/mobile/src/i18n/locales/th.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "เอเจนต์กำลังรอสิทธิ์ ในขณะที่คำขอนี้ยังเปิดอยู่ ข้อความของคุณถึงเอเจนต์จะถูกหยุดชั่วคราว" }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "ถึงความลึกสูงสุดของการซ้อนแล้ว", "modelAccessibility": "โมเดล: {{modelLabel}}", "openHint": "เปิดเซสชันซับเอเจนต์", diff --git a/apps/mobile/src/i18n/locales/tr.json b/apps/mobile/src/i18n/locales/tr.json index b9b04a5be2..f9433faf65 100644 --- a/apps/mobile/src/i18n/locales/tr.json +++ b/apps/mobile/src/i18n/locales/tr.json @@ -1991,7 +1991,7 @@ "waitingForPermission": "Ajan izin bekliyor. Bu istek açıkken ajana gönderdiğiniz mesaj duraklatılır." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Maksimum yuvalama derinliğine ulaşıldı.", "modelAccessibility": "Model: {{modelLabel}}", "openHint": "Alt ajan oturumunu aç", diff --git a/apps/mobile/src/i18n/locales/uk.json b/apps/mobile/src/i18n/locales/uk.json index 399e4da772..0b19cc8ae7 100644 --- a/apps/mobile/src/i18n/locales/uk.json +++ b/apps/mobile/src/i18n/locales/uk.json @@ -2009,7 +2009,7 @@ "waitingForPermission": "Агент чекає на дозвіл. Поки цей запит відкритий, ваше повідомлення агенту призупинено." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Досягнуто максимальної глибини вкладеності.", "modelAccessibility": "Модель: {{modelLabel}}", "openHint": "Відкрити сеанс субагента", diff --git a/apps/mobile/src/i18n/locales/ur.json b/apps/mobile/src/i18n/locales/ur.json index 5e30365a74..032630418b 100644 --- a/apps/mobile/src/i18n/locales/ur.json +++ b/apps/mobile/src/i18n/locales/ur.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "ایجنٹ اجازت کا انتظار کر رہا ہے۔ جب تک یہ درخواست کھلی ہے، ایجنٹ کو آپ کا پیغام روکا ہوا ہے۔" }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "زیادہ سے زیادہ گہرائی تک پہنچ گئی۔", "modelAccessibility": "ماڈل: {{modelLabel}}", "openHint": "ذیلی ایجنٹ سیشن کھولیں", diff --git a/apps/mobile/src/i18n/locales/uz.json b/apps/mobile/src/i18n/locales/uz.json index d3297e5340..329cfa0986 100644 --- a/apps/mobile/src/i18n/locales/uz.json +++ b/apps/mobile/src/i18n/locales/uz.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "Agent ruxsatni kutmoqda. Bu so'rov ochiq ekan, agentga xabaringiz pauza qilinadi." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Maksimal ichki o'rnatish chuqurligiga yetildi.", "modelAccessibility": "Model: {{modelLabel}}", "openHint": "Subagent sessiyasini ochish", diff --git a/apps/mobile/src/i18n/locales/vi.json b/apps/mobile/src/i18n/locales/vi.json index c53f554d09..e7c3dcc55a 100644 --- a/apps/mobile/src/i18n/locales/vi.json +++ b/apps/mobile/src/i18n/locales/vi.json @@ -1991,7 +1991,7 @@ "waitingForPermission": "Tác nhân đang chờ quyền. Trong khi yêu cầu này đang mở, tin nhắn của bạn đến tác nhân bị tạm dừng." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Đã đạt độ sâu lồng tối đa.", "modelAccessibility": "Mô hình: {{modelLabel}}", "openHint": "Mở phiên tác nhân phụ", diff --git a/apps/mobile/src/i18n/locales/yo.json b/apps/mobile/src/i18n/locales/yo.json index 49fa1bec99..f2a9045a39 100644 --- a/apps/mobile/src/i18n/locales/yo.json +++ b/apps/mobile/src/i18n/locales/yo.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "Aṣoju n duro fun igbanilaye. Nigba ti ibeere yii ba wa ni sisi, ifiranṣẹ rẹ si aṣoju ti duro si." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Ijinle ẹgbẹ ti de opin.", "modelAccessibility": "Awoṣe: {{modelLabel}}", "openHint": "Ṣii igba-ijiroro subagent", diff --git a/apps/mobile/src/i18n/locales/zh-Hans.json b/apps/mobile/src/i18n/locales/zh-Hans.json index e9dc24dec0..fc5c4461db 100644 --- a/apps/mobile/src/i18n/locales/zh-Hans.json +++ b/apps/mobile/src/i18n/locales/zh-Hans.json @@ -1991,7 +1991,7 @@ "waitingForPermission": "代理正在等待权限。此请求打开期间,您发给代理的消息已暂停。" }, "childSession": { - "accessibilityLabel": "{{agentName}},{{taskName}}{{modelLabel}},{{status}}", + "accessibilityLabel": "{{agentName}},{{taskName}},{{status}}", "maxNestingDepth": "已达到最大嵌套深度。", "modelAccessibility": "模型:{{modelLabel}}", "openHint": "打开子代理会话", diff --git a/apps/mobile/src/i18n/locales/zh-Hant.json b/apps/mobile/src/i18n/locales/zh-Hant.json index d5b5656157..b41db57518 100644 --- a/apps/mobile/src/i18n/locales/zh-Hant.json +++ b/apps/mobile/src/i18n/locales/zh-Hant.json @@ -1991,7 +1991,7 @@ "waitingForPermission": "代理正在等待權限。此要求開啟期間,您傳給代理的訊息已暫停。" }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "已達最大巢狀深度。", "modelAccessibility": "模型:{{modelLabel}}", "openHint": "開啟子代理工作階段", diff --git a/apps/mobile/src/i18n/locales/zu.json b/apps/mobile/src/i18n/locales/zu.json index 70eaf72ec4..47e2ab0241 100644 --- a/apps/mobile/src/i18n/locales/zu.json +++ b/apps/mobile/src/i18n/locales/zu.json @@ -2445,7 +2445,7 @@ "waitingForPermission": "I-agent ilinde imvume. Ngenkathi lesi sicelo sivulekile, umlayezo wakho ku-agent umisiwe." }, "childSession": { - "accessibilityLabel": "{{agentName}}, {{taskName}}{{modelLabel}}, {{status}}", + "accessibilityLabel": "{{agentName}}, {{taskName}}, {{status}}", "maxNestingDepth": "Ukujula kokufakela kwafinyelelwa.", "modelAccessibility": "Imodeli: {{modelLabel}}", "openHint": "Vula iseshini ye-subagent",