diff --git a/src/frontend/src/lib/components/modules/attach-detach/AttachSegment.svelte b/src/frontend/src/lib/components/modules/attach-detach/AttachSegment.svelte index 9cf7cf1cec..5755645429 100644 --- a/src/frontend/src/lib/components/modules/attach-detach/AttachSegment.svelte +++ b/src/frontend/src/lib/components/modules/attach-detach/AttachSegment.svelte @@ -1,7 +1,10 @@ @@ -106,7 +118,8 @@ margin: var(--padding-1_5x) 0 0; } - p { + p, + span { font-size: var(--font-size-small); } diff --git a/src/frontend/src/lib/i18n/en.json b/src/frontend/src/lib/i18n/en.json index 90e5e3dd05..643c9d55d1 100644 --- a/src/frontend/src/lib/i18n/en.json +++ b/src/frontend/src/lib/i18n/en.json @@ -322,7 +322,8 @@ "getting_started_credits": "Welcome to Juno! Reach out on Discord and we'll get you started for free.", "attach_title": "Attach Module", "attach_description": "Connect an existing Satellite, Orbiter, or UFO to your Console.", - "attach_id": "Enter ID" + "attach_id": "Enter ID", + "attach_to_mission_control": "Attach to Mission Control as well" }, "satellites": { "title": "Satellites", diff --git a/src/frontend/src/lib/i18n/zh-cn.json b/src/frontend/src/lib/i18n/zh-cn.json index 2703d35d18..f952faef32 100644 --- a/src/frontend/src/lib/i18n/zh-cn.json +++ b/src/frontend/src/lib/i18n/zh-cn.json @@ -323,7 +323,8 @@ "getting_started_credits": "欢迎来到 Juno!在 Discord 上联系我们,免费开始您的旅程。", "attach_title": "附加模块", "attach_description": "将现有的卫星、轨道器或 UFO 连接到您的控制台。", - "attach_id": "输入 ID" + "attach_id": "输入 ID", + "attach_to_mission_control": "同时附加到任务控制" }, "satellites": { "title": "所有卫星", diff --git a/src/frontend/src/lib/types/i18n.d.ts b/src/frontend/src/lib/types/i18n.d.ts index a4acac41a4..b8928cddff 100644 --- a/src/frontend/src/lib/types/i18n.d.ts +++ b/src/frontend/src/lib/types/i18n.d.ts @@ -330,6 +330,7 @@ interface I18nLaunchpad { attach_title: string; attach_description: string; attach_id: string; + attach_to_mission_control: string; } interface I18nSatellites {