patch first message after register

This commit is contained in:
cheykrym 2025-10-26 03:19:54 +03:00
parent 8568f6c20e
commit 7a10ba5b33
4 changed files with 6 additions and 5 deletions

View File

@ -506,9 +506,6 @@
},
"Заблокированные" : {
},
"Заблокированные пользователи" : {
},
"Заблокировать контакт" : {
"comment" : "Contacts context action block"
@ -2595,6 +2592,9 @@
},
"Черновики доступны в боковом меню в разделе Drafts." : {
"comment" : "FAQ answer: drafts"
},
"Чёрный список" : {
},
"Что вам понравилось?" : {
"comment" : "feedback prompt: praise",

View File

@ -234,6 +234,7 @@ private extension MainView {
}
isAfterRegisterPresented = true
viewModel.onboardingDestination = nil
}
var deepLinkNavigationLink: some View {

View File

@ -27,7 +27,7 @@ struct BlockedUsersView: View {
usersSection
}
}
.navigationTitle(NSLocalizedString("Заблокированные", comment: ""))
.navigationTitle(NSLocalizedString("Чёрный список", comment: ""))
.navigationBarTitleDisplayMode(.inline)
.toolbar {
ToolbarItem(placement: .navigationBarTrailing) {

View File

@ -24,7 +24,7 @@ struct SettingsView: View {
}
NavigationLink(destination: BlockedUsersView()) {
Label(NSLocalizedString("Заблокированные пользователи", comment: ""), systemImage: "hand.raised.fill")
Label(NSLocalizedString("Чёрный список", comment: ""), systemImage: "hand.raised.fill")
}
}