From 577e7562eebe409c91c5cdd6896e752f997e326f Mon Sep 17 00:00:00 2001 From: Stuart Breckenridge Date: Wed, 21 Dec 2022 21:09:44 +0800 Subject: [PATCH] Improves the Import/Export OPML titles --- iOS/Settings/General/SettingsView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iOS/Settings/General/SettingsView.swift b/iOS/Settings/General/SettingsView.swift index f2e5f17f4..2942df1b1 100644 --- a/iOS/Settings/General/SettingsView.swift +++ b/iOS/Settings/General/SettingsView.swift @@ -34,7 +34,7 @@ struct SettingsView: View { SettingsViewRows.addAccount SettingsViewRows.manageExtensions SettingsViewRows.importOPML(showImportActionSheet: $viewModel.showImportActionSheet) - .confirmationDialog(Text("Import OPML", comment: "Import OPML confirmation title."), + .confirmationDialog(Text("Choose an account to receive the imported feeds and folders", comment: "Import OPML confirmation title."), isPresented: $viewModel.showImportActionSheet, titleVisibility: .visible) { ForEach(AccountManager.shared.sortedActiveAccounts, id: \.self) { account in @@ -46,7 +46,7 @@ struct SettingsView: View { } SettingsViewRows.exportOPML(showExportActionSheet: $viewModel.showExportActionSheet) - .confirmationDialog(Text("Export OPML", comment: "Export OPML confirmation title."), + .confirmationDialog(Text("Choose an account with the subscriptions to export", comment: "Export OPML confirmation title."), isPresented: $viewModel.showExportActionSheet, titleVisibility: .visible) { ForEach(AccountManager.shared.sortedAccounts, id: \.self) { account in