Rename "Import From Browser" to "Import Browser Data" (#1672)

Co-authored-by: Lawrence Chen <lawrencecchen@users.noreply.github.com>
This commit is contained in:
Lawrence Chen 2026-03-17 22:07:19 -07:00 committed by GitHub
parent 3bca43d6b1
commit 58de044f4f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 9 additions and 9 deletions

View file

@ -38278,13 +38278,13 @@
"en": {
"stringUnit": {
"state": "translated",
"value": "Import From Browser…"
"value": "Import Browser Data…"
}
},
"ja": {
"stringUnit": {
"state": "translated",
"value": "ブラウザーから取り込む…"
"value": "ブラウザーデータを取り込む…"
}
}
}
@ -51224,13 +51224,13 @@
"en": {
"stringUnit": {
"state": "translated",
"value": "Import From Browser"
"value": "Import Browser Data"
}
},
"ja": {
"stringUnit": {
"state": "translated",
"value": "ブラウザーから取り込む"
"value": "ブラウザーデータを取り込む"
}
}
}

View file

@ -9809,7 +9809,7 @@ private struct SidebarHelpMenuButton: View {
isExternalLink: false
)
helpOptionButton(
title: String(localized: "menu.view.importFromBrowser", defaultValue: "Import From Browser…"),
title: String(localized: "menu.view.importFromBrowser", defaultValue: "Import Browser Data"),
action: .importBrowserData,
accessibilityIdentifier: "SidebarHelpMenuOptionImportBrowserData",
isExternalLink: false

View file

@ -965,7 +965,7 @@ struct BrowserPanelView: View {
Button {
presentImportDialogFromProfileMenu()
} label: {
Text(String(localized: "menu.view.importFromBrowser", defaultValue: "Import From Browser…"))
Text(String(localized: "menu.view.importFromBrowser", defaultValue: "Import Browser Data"))
.font(.system(size: 12))
}
.buttonStyle(.plain)

View file

@ -628,7 +628,7 @@ struct cmuxApp: App {
BrowserHistoryStore.shared.clearHistory()
}
Button(String(localized: "menu.view.importFromBrowser", defaultValue: "Import From Browser…")) {
Button(String(localized: "menu.view.importFromBrowser", defaultValue: "Import Browser Data")) {
// Defer modal presentation until after AppKit finishes menu tracking.
DispatchQueue.main.async {
BrowserDataImportCoordinator.shared.presentImportDialog()
@ -2167,7 +2167,7 @@ private struct BrowserProfilePopoverDebugView: View {
Text(String(localized: "browser.profile.new", defaultValue: "New Profile..."))
.font(.system(size: 12))
Text(String(localized: "menu.view.importFromBrowser", defaultValue: "Import From Browser…"))
Text(String(localized: "menu.view.importFromBrowser", defaultValue: "Import Browser Data"))
.font(.system(size: 12))
}
.padding(.horizontal, BrowserProfilePopoverDebugSettings.resolvedHorizontalPadding(horizontalPaddingRaw))
@ -4880,7 +4880,7 @@ struct SettingsView: View {
VStack(alignment: .leading, spacing: 12) {
VStack(alignment: .leading, spacing: 8) {
Text(String(localized: "settings.browser.import", defaultValue: "Import From Browser"))
Text(String(localized: "settings.browser.import", defaultValue: "Import Browser Data"))
.font(.system(size: 13, weight: .semibold))
VStack(alignment: .leading, spacing: 6) {