Update strings that will be removed. (#1827)

This commit is contained in:
Doug
2023-09-29 12:09:21 +01:00
committed by GitHub
parent 89b84a6c02
commit 520ff0a42f
2 changed files with 2 additions and 2 deletions

View File

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

View File

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