Is there a way to change the delete button title when editing a List?
Example -
struct ContentView: View  {
    @State private var users = ["Paul", "Taylor", "Adele"]
    var body: some View {
        NavigationView {
            List {
                ForEach(users, id: \.self) { user in
                    Text(user)
                }.onDelete(perform: delete)
            }.navigationBarItems(trailing: EditButton())
        }
    }
    func delete(source: IndexSet) { }
}

