From ee3b0277031a8055f76a305dcf6f5c57347785e2 Mon Sep 17 00:00:00 2001 From: Lawrence Chen <54008264+lawrencecchen@users.noreply.github.com> Date: Fri, 13 Mar 2026 07:24:51 -0700 Subject: [PATCH] Change help menu "Welcome" to "Welcome to cmux!" (#1377) Co-authored-by: Lawrence Chen Co-authored-by: Claude Opus 4.6 --- Resources/Localizable.xcstrings | 4 ++-- Sources/ContentView.swift | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Resources/Localizable.xcstrings b/Resources/Localizable.xcstrings index 75896d0b..e533c374 100644 --- a/Resources/Localizable.xcstrings +++ b/Resources/Localizable.xcstrings @@ -845,13 +845,13 @@ "en": { "stringUnit": { "state": "translated", - "value": "Welcome" + "value": "Welcome to cmux!" } }, "ja": { "stringUnit": { "state": "translated", - "value": "ようこそ" + "value": "cmuxへようこそ!" } } } diff --git a/Sources/ContentView.swift b/Sources/ContentView.swift index fad0279e..a24c8b7a 100644 --- a/Sources/ContentView.swift +++ b/Sources/ContentView.swift @@ -8983,7 +8983,7 @@ private struct SidebarHelpMenuButton: View { private var helpPopover: some View { VStack(alignment: .leading, spacing: 2) { helpOptionButton( - title: String(localized: "sidebar.help.welcome", defaultValue: "Welcome"), + title: String(localized: "sidebar.help.welcome", defaultValue: "Welcome to cmux!"), action: .welcome, accessibilityIdentifier: "SidebarHelpMenuOptionWelcome", isExternalLink: false