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)) } }