diff --git a/Tusker/Screens/Preferences/PreferencesView.swift b/Tusker/Screens/Preferences/PreferencesView.swift index 7169a826..1ad074bb 100644 --- a/Tusker/Screens/Preferences/PreferencesView.swift +++ b/Tusker/Screens/Preferences/PreferencesView.swift @@ -80,13 +80,13 @@ struct PreferencesView: View { Button(action: { NotificationCenter.default.post(name: .addAccount, object: nil) }) { - Text("Add Account...") + Text("Add Account…") } Button(action: { self.showingLogoutConfirmation = true }) { - Text("Logout from current") + Text("Logout from Current…") }.alert(isPresented: $showingLogoutConfirmation) { Alert(title: Text("Are you sure you want to logout?"), message: nil, primaryButton: .destructive(Text("Logout"), action: self.logoutPressed), secondaryButton: .cancel()) }