From 520ff0a42f81fd20a17dfadbb7f8563000221c26 Mon Sep 17 00:00:00 2001 From: Doug <6060466+pixlwave@users.noreply.github.com> Date: Fri, 29 Sep 2023 12:09:21 +0100 Subject: [PATCH] Update strings that will be removed. (#1827) --- .../ServerSelectionScreen/View/ServerSelectionScreen.swift | 2 +- ElementX/Sources/Screens/RoomScreen/View/RoomScreen.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ElementX/Sources/Screens/Authentication/ServerSelectionScreen/View/ServerSelectionScreen.swift b/ElementX/Sources/Screens/Authentication/ServerSelectionScreen/View/ServerSelectionScreen.swift index b5d2e1d90..2db4fccf5 100644 --- a/ElementX/Sources/Screens/Authentication/ServerSelectionScreen/View/ServerSelectionScreen.swift +++ b/ElementX/Sources/Screens/Authentication/ServerSelectionScreen/View/ServerSelectionScreen.swift @@ -43,7 +43,7 @@ struct ServerSelectionScreen: View { AuthenticationIconImage(image: Image(asset: Asset.Images.serverSelectionIcon), insets: 19) .padding(.bottom, 8) - Text(L10n.commonSelectYourServer) + Text(L10n.screenChangeServerTitle) .font(.compound.headingMDBold) .multilineTextAlignment(.center) .foregroundColor(.compound.textPrimary) diff --git a/ElementX/Sources/Screens/RoomScreen/View/RoomScreen.swift b/ElementX/Sources/Screens/RoomScreen/View/RoomScreen.swift index 4c1a284bb..10ed0c2fe 100644 --- a/ElementX/Sources/Screens/RoomScreen/View/RoomScreen.swift +++ b/ElementX/Sources/Screens/RoomScreen/View/RoomScreen.swift @@ -81,7 +81,7 @@ struct RoomScreen: View { Button(L10n.screenRoomRetrySendMenuSendAgainAction) { context.send(viewAction: .retrySend(itemID: info.itemID)) } - Button(L10n.screenRoomRetrySendMenuRemoveAction, role: .destructive) { + Button(L10n.actionRemove, role: .destructive) { context.send(viewAction: .cancelSend(itemID: info.itemID)) } }