From e7089d4c2fde09dd00e07d5c2c9f5271ac9ee67d Mon Sep 17 00:00:00 2001 From: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com> Date: Sat, 17 Jun 2023 09:58:35 +0100 Subject: [PATCH] mobile: allow hiding profile when SimpleX lock is disabled (#2586) --- .../app/views/usersettings/UserProfilesView.kt | 11 ++++------- .../Views/UserSettings/UserProfilesView.swift | 5 ++--- .../cs.xcloc/Localized Contents/cs.xliff | 12 +++++++----- .../de.xcloc/Localized Contents/de.xliff | 12 +++++++----- .../en.xcloc/Localized Contents/en.xliff | 13 ++++++++----- .../es.xcloc/Localized Contents/es.xliff | 12 +++++++----- .../fr.xcloc/Localized Contents/fr.xliff | 12 +++++++----- .../it.xcloc/Localized Contents/it.xliff | 12 +++++++----- .../ja.xcloc/Localized Contents/ja.xliff | 12 +++++++----- .../nl.xcloc/Localized Contents/nl.xliff | 12 +++++++----- .../pl.xcloc/Localized Contents/pl.xliff | 12 +++++++----- .../ru.xcloc/Localized Contents/ru.xliff | 12 +++++++----- .../zh-Hans.xcloc/Localized Contents/zh-Hans.xliff | 12 +++++++----- apps/ios/cs.lproj/Localizable.strings | 2 +- apps/ios/de.lproj/Localizable.strings | 2 +- apps/ios/es.lproj/Localizable.strings | 2 +- apps/ios/fr.lproj/Localizable.strings | 2 +- apps/ios/it.lproj/Localizable.strings | 2 +- apps/ios/ja.lproj/Localizable.strings | 2 +- apps/ios/nl.lproj/Localizable.strings | 2 +- apps/ios/pl.lproj/Localizable.strings | 2 +- apps/ios/ru.lproj/Localizable.strings | 2 +- apps/ios/zh-Hans.lproj/Localizable.strings | 2 +- 23 files changed, 94 insertions(+), 75 deletions(-) diff --git a/apps/android/app/src/main/java/chat/simplex/app/views/usersettings/UserProfilesView.kt b/apps/android/app/src/main/java/chat/simplex/app/views/usersettings/UserProfilesView.kt index 98c1519320..997d0b9f02 100644 --- a/apps/android/app/src/main/java/chat/simplex/app/views/usersettings/UserProfilesView.kt +++ b/apps/android/app/src/main/java/chat/simplex/app/views/usersettings/UserProfilesView.kt @@ -38,14 +38,13 @@ fun UserProfilesView(m: ChatModel, search: MutableState, profileHidden: val searchTextOrPassword = rememberSaveable { search } val users by remember { derivedStateOf { m.users.map { it.user } } } val filteredUsers by remember { derivedStateOf { filteredUsers(m, searchTextOrPassword.value) } } - UserProfilesView( + UserProfilesLayout( users = users, filteredUsers = filteredUsers, profileHidden = profileHidden, searchTextOrPassword = searchTextOrPassword, showHiddenProfilesNotice = m.controller.appPrefs.showHiddenProfilesNotice, visibleUsersCount = visibleUsersCount(m), - prefPerformLA = m.controller.appPrefs.performLA.get(), addUser = { ModalManager.shared.showModalCloseable { close -> CreateProfile(m, close) @@ -137,13 +136,12 @@ fun UserProfilesView(m: ChatModel, search: MutableState, profileHidden: } @Composable -private fun UserProfilesView( +private fun UserProfilesLayout( users: List, filteredUsers: List, searchTextOrPassword: MutableState, profileHidden: MutableState, visibleUsersCount: Int, - prefPerformLA: Boolean, showHiddenProfilesNotice: SharedPreference, addUser: () -> Unit, activateUser: (User) -> Unit, @@ -171,7 +169,7 @@ private fun UserProfilesView( SectionView { for (user in filteredUsers) { - UserView(user, users, visibleUsersCount, prefPerformLA, activateUser, removeUser, unhideUser, muteUser, unmuteUser, showHiddenProfile) + UserView(user, users, visibleUsersCount, activateUser, removeUser, unhideUser, muteUser, unmuteUser, showHiddenProfile) SectionDivider() } if (searchTextOrPassword.value.trim().isEmpty()) { @@ -205,7 +203,6 @@ private fun UserView( user: User, users: List, visibleUsersCount: Int, - prefPerformLA: Boolean, activateUser: (User) -> Unit, removeUser: (User) -> Unit, unhideUser: (User) -> Unit, @@ -225,7 +222,7 @@ private fun UserView( unhideUser(user) }) } else { - if (visibleUsersCount > 1 && prefPerformLA) { + if (visibleUsersCount > 1) { ItemAction(stringResource(R.string.user_hide), painterResource(R.drawable.ic_lock), onClick = { showMenu.value = false showHiddenProfile(user) diff --git a/apps/ios/Shared/Views/UserSettings/UserProfilesView.swift b/apps/ios/Shared/Views/UserSettings/UserProfilesView.swift index 0c1225da9b..f6c7bf37e8 100644 --- a/apps/ios/Shared/Views/UserSettings/UserProfilesView.swift +++ b/apps/ios/Shared/Views/UserSettings/UserProfilesView.swift @@ -9,7 +9,6 @@ import SimpleXChat struct UserProfilesView: View { @EnvironmentObject private var m: ChatModel @Environment(\.editMode) private var editMode - @AppStorage(DEFAULT_PERFORM_LA) private var prefPerformLA = false @AppStorage(DEFAULT_SHOW_HIDDEN_PROFILES_NOTICE) private var showHiddenProfilesNotice = true @AppStorage(DEFAULT_SHOW_MUTE_PROFILE_ALERT) private var showMuteProfileAlert = true @State private var showDeleteConfirmation = false @@ -157,7 +156,7 @@ struct UserProfilesView: View { case .hiddenProfilesNotice: return Alert( title: Text("Make profile private!"), - message: Text("You can hide or mute a user profile - swipe it to the right.\nSimpleX Lock must be enabled."), + message: Text("You can hide or mute a user profile - swipe it to the right."), primaryButton: .default(Text("Don't show again")) { showHiddenProfilesNotice = false }, @@ -338,7 +337,7 @@ struct UserProfilesView: View { } .tint(.green) } else { - if visibleUsersCount > 1 && prefPerformLA { + if visibleUsersCount > 1 { Button("Hide") { selectedUser = user } diff --git a/apps/ios/SimpleX Localizations/cs.xcloc/Localized Contents/cs.xliff b/apps/ios/SimpleX Localizations/cs.xcloc/Localized Contents/cs.xliff index 5c7e0f8a16..03eb28ac25 100644 --- a/apps/ios/SimpleX Localizations/cs.xcloc/Localized Contents/cs.xliff +++ b/apps/ios/SimpleX Localizations/cs.xcloc/Localized Contents/cs.xliff @@ -4002,6 +4002,10 @@ Přeskočené zprávy No comment provided by engineer. + + Some non-fatal errors occurred during import - you may see Chat console for more details. + No comment provided by engineer. + Somebody Někdo @@ -4758,11 +4762,9 @@ Chcete-li se připojit, požádejte svůj kontakt o vytvoření dalšího odkazu Můžete vytvořit později No comment provided by engineer. - - You can hide or mute a user profile - swipe it to the right. -SimpleX Lock must be enabled. - Profil uživatele můžete skrýt nebo ztlumit - přejeďte prstem doprava. -SimpleX zámek musí být povolen. + + You can hide or mute a user profile - swipe it to the right. + Profil uživatele můžete skrýt nebo ztlumit - přejeďte prstem doprava. No comment provided by engineer. diff --git a/apps/ios/SimpleX Localizations/de.xcloc/Localized Contents/de.xliff b/apps/ios/SimpleX Localizations/de.xcloc/Localized Contents/de.xliff index d8dbb08e8a..1d863cc197 100644 --- a/apps/ios/SimpleX Localizations/de.xcloc/Localized Contents/de.xliff +++ b/apps/ios/SimpleX Localizations/de.xcloc/Localized Contents/de.xliff @@ -4002,6 +4002,10 @@ Übersprungene Nachrichten No comment provided by engineer. + + Some non-fatal errors occurred during import - you may see Chat console for more details. + No comment provided by engineer. + Somebody Jemand @@ -4758,11 +4762,9 @@ Bitten Sie Ihren Kontakt darum einen weiteren Verbindungs-Link zu erzeugen, um s Sie können dies später erstellen No comment provided by engineer. - - You can hide or mute a user profile - swipe it to the right. -SimpleX Lock must be enabled. - Sie können ein Benutzerprofil verbergen oder stummschalten - wischen Sie es nach rechts. -Dafür muss die SimpleX Sperre aktiviert sein. + + You can hide or mute a user profile - swipe it to the right. + Sie können ein Benutzerprofil verbergen oder stummschalten - wischen Sie es nach rechts. No comment provided by engineer. diff --git a/apps/ios/SimpleX Localizations/en.xcloc/Localized Contents/en.xliff b/apps/ios/SimpleX Localizations/en.xcloc/Localized Contents/en.xliff index 023f507387..af65f8fb08 100644 --- a/apps/ios/SimpleX Localizations/en.xcloc/Localized Contents/en.xliff +++ b/apps/ios/SimpleX Localizations/en.xcloc/Localized Contents/en.xliff @@ -4002,6 +4002,11 @@ Skipped messages No comment provided by engineer. + + Some non-fatal errors occurred during import - you may see Chat console for more details. + Some non-fatal errors occurred during import - you may see Chat console for more details. + No comment provided by engineer. + Somebody Somebody @@ -4758,11 +4763,9 @@ To connect, please ask your contact to create another connection link and check You can create it later No comment provided by engineer. - - You can hide or mute a user profile - swipe it to the right. -SimpleX Lock must be enabled. - You can hide or mute a user profile - swipe it to the right. -SimpleX Lock must be enabled. + + You can hide or mute a user profile - swipe it to the right. + You can hide or mute a user profile - swipe it to the right. No comment provided by engineer. diff --git a/apps/ios/SimpleX Localizations/es.xcloc/Localized Contents/es.xliff b/apps/ios/SimpleX Localizations/es.xcloc/Localized Contents/es.xliff index 95cd6b972a..c0e6caf3ff 100644 --- a/apps/ios/SimpleX Localizations/es.xcloc/Localized Contents/es.xliff +++ b/apps/ios/SimpleX Localizations/es.xcloc/Localized Contents/es.xliff @@ -4002,6 +4002,10 @@ Mensajes omitidos No comment provided by engineer. + + Some non-fatal errors occurred during import - you may see Chat console for more details. + No comment provided by engineer. + Somebody Alguien @@ -4759,11 +4763,9 @@ Para conectarte, pide a tu contacto que cree otro enlace de conexión y comprueb Puedes crearlo más tarde No comment provided by engineer. - - You can hide or mute a user profile - swipe it to the right. -SimpleX Lock must be enabled. - Puedes ocultar o silenciar un perfil de usuario: deslízalo hacia la derecha. -Bloqueo SimpleX debe estar activado. + + You can hide or mute a user profile - swipe it to the right. + Puedes ocultar o silenciar un perfil de usuario: deslízalo hacia la derecha. No comment provided by engineer. diff --git a/apps/ios/SimpleX Localizations/fr.xcloc/Localized Contents/fr.xliff b/apps/ios/SimpleX Localizations/fr.xcloc/Localized Contents/fr.xliff index 332ab0422f..ae457b029d 100644 --- a/apps/ios/SimpleX Localizations/fr.xcloc/Localized Contents/fr.xliff +++ b/apps/ios/SimpleX Localizations/fr.xcloc/Localized Contents/fr.xliff @@ -4002,6 +4002,10 @@ Messages manqués No comment provided by engineer. + + Some non-fatal errors occurred during import - you may see Chat console for more details. + No comment provided by engineer. + Somebody Quelqu'un @@ -4758,11 +4762,9 @@ Pour vous connecter, veuillez demander à votre contact de créer un autre lien Vous pouvez la créer plus tard No comment provided by engineer. - - You can hide or mute a user profile - swipe it to the right. -SimpleX Lock must be enabled. - Vous pouvez masquer ou mettre en sourdine un profil d'utilisateur - faites-le glisser vers la droite. -SimpleX Lock doit être activé. + + You can hide or mute a user profile - swipe it to the right. + Vous pouvez masquer ou mettre en sourdine un profil d'utilisateur - faites-le glisser vers la droite. No comment provided by engineer. diff --git a/apps/ios/SimpleX Localizations/it.xcloc/Localized Contents/it.xliff b/apps/ios/SimpleX Localizations/it.xcloc/Localized Contents/it.xliff index ce622228ee..e72bdd3626 100644 --- a/apps/ios/SimpleX Localizations/it.xcloc/Localized Contents/it.xliff +++ b/apps/ios/SimpleX Localizations/it.xcloc/Localized Contents/it.xliff @@ -4002,6 +4002,10 @@ Messaggi saltati No comment provided by engineer. + + Some non-fatal errors occurred during import - you may see Chat console for more details. + No comment provided by engineer. + Somebody Qualcuno @@ -4758,11 +4762,9 @@ Per connetterti, chiedi al tuo contatto di creare un altro link di connessione e Puoi crearlo più tardi No comment provided by engineer. - - You can hide or mute a user profile - swipe it to the right. -SimpleX Lock must be enabled. - Puoi nascondere o silenziare un profilo utente - scorrilo verso destra. -SimpleX Lock deve essere attivato. + + You can hide or mute a user profile - swipe it to the right. + Puoi nascondere o silenziare un profilo utente - scorrilo verso destra. No comment provided by engineer. diff --git a/apps/ios/SimpleX Localizations/ja.xcloc/Localized Contents/ja.xliff b/apps/ios/SimpleX Localizations/ja.xcloc/Localized Contents/ja.xliff index 18d8359928..2e22257d01 100644 --- a/apps/ios/SimpleX Localizations/ja.xcloc/Localized Contents/ja.xliff +++ b/apps/ios/SimpleX Localizations/ja.xcloc/Localized Contents/ja.xliff @@ -4000,6 +4000,10 @@ 飛ばしたメッセージ No comment provided by engineer. + + Some non-fatal errors occurred during import - you may see Chat console for more details. + No comment provided by engineer. + Somebody 誰か @@ -4756,11 +4760,9 @@ To connect, please ask your contact to create another connection link and check 後からでも作成できます No comment provided by engineer. - - You can hide or mute a user profile - swipe it to the right. -SimpleX Lock must be enabled. - ユーザープロファイルを右にスワイプすると、非表示またはミュートにすることができます。 -SimpleXロックが有効になっている必要があります。 + + You can hide or mute a user profile - swipe it to the right. + ユーザープロファイルを右にスワイプすると、非表示またはミュートにすることができます。 No comment provided by engineer. diff --git a/apps/ios/SimpleX Localizations/nl.xcloc/Localized Contents/nl.xliff b/apps/ios/SimpleX Localizations/nl.xcloc/Localized Contents/nl.xliff index 349f0c1ca8..d6b98e7c79 100644 --- a/apps/ios/SimpleX Localizations/nl.xcloc/Localized Contents/nl.xliff +++ b/apps/ios/SimpleX Localizations/nl.xcloc/Localized Contents/nl.xliff @@ -4002,6 +4002,10 @@ Overgeslagen berichten No comment provided by engineer. + + Some non-fatal errors occurred during import - you may see Chat console for more details. + No comment provided by engineer. + Somebody Iemand @@ -4758,11 +4762,9 @@ Om verbinding te maken, vraagt u uw contactpersoon om een andere verbinding link U kan het later maken No comment provided by engineer. - - You can hide or mute a user profile - swipe it to the right. -SimpleX Lock must be enabled. - U kunt een gebruikers profiel verbergen of dempen - veeg het naar rechts. -SimpleX Lock moet ingeschakeld zijn. + + You can hide or mute a user profile - swipe it to the right. + U kunt een gebruikers profiel verbergen of dempen - veeg het naar rechts. No comment provided by engineer. diff --git a/apps/ios/SimpleX Localizations/pl.xcloc/Localized Contents/pl.xliff b/apps/ios/SimpleX Localizations/pl.xcloc/Localized Contents/pl.xliff index fabc58d013..8e41d51764 100644 --- a/apps/ios/SimpleX Localizations/pl.xcloc/Localized Contents/pl.xliff +++ b/apps/ios/SimpleX Localizations/pl.xcloc/Localized Contents/pl.xliff @@ -4002,6 +4002,10 @@ Pominięte wiadomości No comment provided by engineer. + + Some non-fatal errors occurred during import - you may see Chat console for more details. + No comment provided by engineer. + Somebody Ktoś @@ -4758,11 +4762,9 @@ Aby się połączyć, poproś Twój kontakt o utworzenie kolejnego linku połąc Możesz go utworzyć później No comment provided by engineer. - - You can hide or mute a user profile - swipe it to the right. -SimpleX Lock must be enabled. - Możesz ukryć lub wyciszyć profil użytkownika - przesuń palcem w prawo. -Funkcja blokady SimpleX musi być włączona. + + You can hide or mute a user profile - swipe it to the right. + Możesz ukryć lub wyciszyć profil użytkownika - przesuń palcem w prawo. No comment provided by engineer. diff --git a/apps/ios/SimpleX Localizations/ru.xcloc/Localized Contents/ru.xliff b/apps/ios/SimpleX Localizations/ru.xcloc/Localized Contents/ru.xliff index c8faa7b6c8..34749b9e5f 100644 --- a/apps/ios/SimpleX Localizations/ru.xcloc/Localized Contents/ru.xliff +++ b/apps/ios/SimpleX Localizations/ru.xcloc/Localized Contents/ru.xliff @@ -4002,6 +4002,10 @@ Пропущенные сообщения No comment provided by engineer. + + Some non-fatal errors occurred during import - you may see Chat console for more details. + No comment provided by engineer. + Somebody Контакт @@ -4758,11 +4762,9 @@ To connect, please ask your contact to create another connection link and check Вы можете создать его позже No comment provided by engineer. - - You can hide or mute a user profile - swipe it to the right. -SimpleX Lock must be enabled. - Вы можете скрыть профиль или выключить уведомления - потяните его вправо. -Блокировка SimpleX должна быть включена. + + You can hide or mute a user profile - swipe it to the right. + Вы можете скрыть профиль или выключить уведомления - потяните его вправо. No comment provided by engineer. diff --git a/apps/ios/SimpleX Localizations/zh-Hans.xcloc/Localized Contents/zh-Hans.xliff b/apps/ios/SimpleX Localizations/zh-Hans.xcloc/Localized Contents/zh-Hans.xliff index 0b032e2852..8c8c7aa2f0 100644 --- a/apps/ios/SimpleX Localizations/zh-Hans.xcloc/Localized Contents/zh-Hans.xliff +++ b/apps/ios/SimpleX Localizations/zh-Hans.xcloc/Localized Contents/zh-Hans.xliff @@ -4002,6 +4002,10 @@ 已跳过消息 No comment provided by engineer. + + Some non-fatal errors occurred during import - you may see Chat console for more details. + No comment provided by engineer. + Somebody 某人 @@ -4758,11 +4762,9 @@ To connect, please ask your contact to create another connection link and check 您可以以后创建它 No comment provided by engineer. - - You can hide or mute a user profile - swipe it to the right. -SimpleX Lock must be enabled. - 您可以隐藏或静音用户个人资料——只需向右滑动。 -必须启用 SimpleX Lock。 + + You can hide or mute a user profile - swipe it to the right. + 您可以隐藏或静音用户个人资料——只需向右滑动。 No comment provided by engineer. diff --git a/apps/ios/cs.lproj/Localizable.strings b/apps/ios/cs.lproj/Localizable.strings index 1a70b7cdc7..0939e9db5a 100644 --- a/apps/ios/cs.lproj/Localizable.strings +++ b/apps/ios/cs.lproj/Localizable.strings @@ -3203,7 +3203,7 @@ "You can create it later" = "Můžete vytvořit později"; /* No comment provided by engineer. */ -"You can hide or mute a user profile - swipe it to the right.\nSimpleX Lock must be enabled." = "Profil uživatele můžete skrýt nebo ztlumit - přejeďte prstem doprava.\nSimpleX zámek musí být povolen."; +"You can hide or mute a user profile - swipe it to the right." = "Profil uživatele můžete skrýt nebo ztlumit - přejeďte prstem doprava."; /* notification body */ "You can now send messages to %@" = "Nyní můžete posílat zprávy %@"; diff --git a/apps/ios/de.lproj/Localizable.strings b/apps/ios/de.lproj/Localizable.strings index 6f815f0626..cef8b62936 100644 --- a/apps/ios/de.lproj/Localizable.strings +++ b/apps/ios/de.lproj/Localizable.strings @@ -3203,7 +3203,7 @@ "You can create it later" = "Sie können dies später erstellen"; /* No comment provided by engineer. */ -"You can hide or mute a user profile - swipe it to the right.\nSimpleX Lock must be enabled." = "Sie können ein Benutzerprofil verbergen oder stummschalten - wischen Sie es nach rechts.\nDafür muss die SimpleX Sperre aktiviert sein."; +"You can hide or mute a user profile - swipe it to the right." = "Sie können ein Benutzerprofil verbergen oder stummschalten - wischen Sie es nach rechts."; /* notification body */ "You can now send messages to %@" = "Sie können nun Nachrichten an %@ versenden"; diff --git a/apps/ios/es.lproj/Localizable.strings b/apps/ios/es.lproj/Localizable.strings index ddcf9c7e8e..48288bc63c 100644 --- a/apps/ios/es.lproj/Localizable.strings +++ b/apps/ios/es.lproj/Localizable.strings @@ -3203,7 +3203,7 @@ "You can create it later" = "Puedes crearlo más tarde"; /* No comment provided by engineer. */ -"You can hide or mute a user profile - swipe it to the right.\nSimpleX Lock must be enabled." = "Puedes ocultar o silenciar un perfil de usuario: deslízalo hacia la derecha.\nBloqueo SimpleX debe estar activado."; +"You can hide or mute a user profile - swipe it to the right." = "Puedes ocultar o silenciar un perfil de usuario: deslízalo hacia la derecha."; /* notification body */ "You can now send messages to %@" = "Ya puedes enviar mensajes a %@"; diff --git a/apps/ios/fr.lproj/Localizable.strings b/apps/ios/fr.lproj/Localizable.strings index 49021c4be8..b9cc5f8e10 100644 --- a/apps/ios/fr.lproj/Localizable.strings +++ b/apps/ios/fr.lproj/Localizable.strings @@ -3203,7 +3203,7 @@ "You can create it later" = "Vous pouvez la créer plus tard"; /* No comment provided by engineer. */ -"You can hide or mute a user profile - swipe it to the right.\nSimpleX Lock must be enabled." = "Vous pouvez masquer ou mettre en sourdine un profil d'utilisateur - faites-le glisser vers la droite.\nSimpleX Lock doit être activé."; +"You can hide or mute a user profile - swipe it to the right." = "Vous pouvez masquer ou mettre en sourdine un profil d'utilisateur - faites-le glisser vers la droite."; /* notification body */ "You can now send messages to %@" = "Vous pouvez maintenant envoyer des messages à %@"; diff --git a/apps/ios/it.lproj/Localizable.strings b/apps/ios/it.lproj/Localizable.strings index a4975a404c..fcd888ebbf 100644 --- a/apps/ios/it.lproj/Localizable.strings +++ b/apps/ios/it.lproj/Localizable.strings @@ -3200,7 +3200,7 @@ "You can create it later" = "Puoi crearlo più tardi"; /* No comment provided by engineer. */ -"You can hide or mute a user profile - swipe it to the right.\nSimpleX Lock must be enabled." = "Puoi nascondere o silenziare un profilo utente - scorrilo verso destra.\nSimpleX Lock deve essere attivato."; +"You can hide or mute a user profile - swipe it to the right." = "Puoi nascondere o silenziare un profilo utente - scorrilo verso destra."; /* notification body */ "You can now send messages to %@" = "Ora puoi inviare messaggi a %@"; diff --git a/apps/ios/ja.lproj/Localizable.strings b/apps/ios/ja.lproj/Localizable.strings index 255d5f4654..e1768da252 100644 --- a/apps/ios/ja.lproj/Localizable.strings +++ b/apps/ios/ja.lproj/Localizable.strings @@ -3194,7 +3194,7 @@ "You can create it later" = "後からでも作成できます"; /* No comment provided by engineer. */ -"You can hide or mute a user profile - swipe it to the right.\nSimpleX Lock must be enabled." = "ユーザープロファイルを右にスワイプすると、非表示またはミュートにすることができます。\nSimpleXロックが有効になっている必要があります。"; +"You can hide or mute a user profile - swipe it to the right." = "ユーザープロファイルを右にスワイプすると、非表示またはミュートにすることができます。"; /* notification body */ "You can now send messages to %@" = "%@ にメッセージを送信できるようになりました"; diff --git a/apps/ios/nl.lproj/Localizable.strings b/apps/ios/nl.lproj/Localizable.strings index 381369d3d2..8c01806437 100644 --- a/apps/ios/nl.lproj/Localizable.strings +++ b/apps/ios/nl.lproj/Localizable.strings @@ -3203,7 +3203,7 @@ "You can create it later" = "U kan het later maken"; /* No comment provided by engineer. */ -"You can hide or mute a user profile - swipe it to the right.\nSimpleX Lock must be enabled." = "U kunt een gebruikers profiel verbergen of dempen - veeg het naar rechts.\nSimpleX Lock moet ingeschakeld zijn."; +"You can hide or mute a user profile - swipe it to the right." = "U kunt een gebruikers profiel verbergen of dempen - veeg het naar rechts."; /* notification body */ "You can now send messages to %@" = "Je kunt nu berichten sturen naar %@"; diff --git a/apps/ios/pl.lproj/Localizable.strings b/apps/ios/pl.lproj/Localizable.strings index d134e82113..27540849e3 100644 --- a/apps/ios/pl.lproj/Localizable.strings +++ b/apps/ios/pl.lproj/Localizable.strings @@ -3203,7 +3203,7 @@ "You can create it later" = "Możesz go utworzyć później"; /* No comment provided by engineer. */ -"You can hide or mute a user profile - swipe it to the right.\nSimpleX Lock must be enabled." = "Możesz ukryć lub wyciszyć profil użytkownika - przesuń palcem w prawo.\nFunkcja blokady SimpleX musi być włączona."; +"You can hide or mute a user profile - swipe it to the right." = "Możesz ukryć lub wyciszyć profil użytkownika - przesuń palcem w prawo."; /* notification body */ "You can now send messages to %@" = "Możesz teraz wysyłać wiadomości do %@"; diff --git a/apps/ios/ru.lproj/Localizable.strings b/apps/ios/ru.lproj/Localizable.strings index d77d910bbb..360d363f0e 100644 --- a/apps/ios/ru.lproj/Localizable.strings +++ b/apps/ios/ru.lproj/Localizable.strings @@ -3200,7 +3200,7 @@ "You can create it later" = "Вы можете создать его позже"; /* No comment provided by engineer. */ -"You can hide or mute a user profile - swipe it to the right.\nSimpleX Lock must be enabled." = "Вы можете скрыть профиль или выключить уведомления - потяните его вправо.\nБлокировка SimpleX должна быть включена."; +"You can hide or mute a user profile - swipe it to the right." = "Вы можете скрыть профиль или выключить уведомления - потяните его вправо."; /* notification body */ "You can now send messages to %@" = "Вы теперь можете отправлять сообщения %@"; diff --git a/apps/ios/zh-Hans.lproj/Localizable.strings b/apps/ios/zh-Hans.lproj/Localizable.strings index 996011688e..3276265636 100644 --- a/apps/ios/zh-Hans.lproj/Localizable.strings +++ b/apps/ios/zh-Hans.lproj/Localizable.strings @@ -3203,7 +3203,7 @@ "You can create it later" = "您可以以后创建它"; /* No comment provided by engineer. */ -"You can hide or mute a user profile - swipe it to the right.\nSimpleX Lock must be enabled." = "您可以隐藏或静音用户个人资料——只需向右滑动。\n必须启用 SimpleX Lock。"; +"You can hide or mute a user profile - swipe it to the right." = "您可以隐藏或静音用户个人资料——只需向右滑动。"; /* notification body */ "You can now send messages to %@" = "您现在可以给 %@ 发送消息";