diff --git a/apps/ios/Shared/Views/ChatList/ChatListNavLink.swift b/apps/ios/Shared/Views/ChatList/ChatListNavLink.swift
index f9cf5e98e4..81d78fbadd 100644
--- a/apps/ios/Shared/Views/ChatList/ChatListNavLink.swift
+++ b/apps/ios/Shared/Views/ChatList/ChatListNavLink.swift
@@ -94,7 +94,7 @@ struct ChatListNavLink: View {
Group {
if contact.activeConn == nil && contact.profile.contactLink != nil && contact.active {
ChatPreviewView(chat: chat, progressByTimeout: Binding.constant(false))
- .frame(height: dynamicRowHeight)
+ .frameCompat(height: dynamicRowHeight)
.swipeActions(edge: .trailing, allowsFullSwipe: true) {
Button {
deleteContactDialog(
@@ -121,6 +121,7 @@ struct ChatListNavLink: View {
selection: $chatModel.chatId,
label: { ChatPreviewView(chat: chat, progressByTimeout: Binding.constant(false)) }
)
+ .frameCompat(height: dynamicRowHeight)
.swipeActions(edge: .leading, allowsFullSwipe: true) {
markReadButton()
toggleFavoriteButton()
@@ -145,7 +146,6 @@ struct ChatListNavLink: View {
}
.tint(.red)
}
- .frame(height: dynamicRowHeight)
}
}
.alert(item: $alert) { $0.alert }
@@ -163,7 +163,7 @@ struct ChatListNavLink: View {
switch (groupInfo.membership.memberStatus) {
case .memInvited:
ChatPreviewView(chat: chat, progressByTimeout: $progressByTimeout)
- .frame(height: dynamicRowHeight)
+ .frameCompat(height: dynamicRowHeight)
.swipeActions(edge: .trailing, allowsFullSwipe: true) {
joinGroupButton()
if groupInfo.canDelete {
@@ -183,7 +183,7 @@ struct ChatListNavLink: View {
.disabled(inProgress)
case .memAccepted:
ChatPreviewView(chat: chat, progressByTimeout: Binding.constant(false))
- .frame(height: dynamicRowHeight)
+ .frameCompat(height: dynamicRowHeight)
.onTapGesture {
AlertManager.shared.showAlert(groupInvitationAcceptedAlert())
}
@@ -203,7 +203,7 @@ struct ChatListNavLink: View {
label: { ChatPreviewView(chat: chat, progressByTimeout: Binding.constant(false)) },
disabled: !groupInfo.ready
)
- .frame(height: dynamicRowHeight)
+ .frameCompat(height: dynamicRowHeight)
.swipeActions(edge: .leading, allowsFullSwipe: true) {
markReadButton()
toggleFavoriteButton()
@@ -250,7 +250,7 @@ struct ChatListNavLink: View {
label: { ChatPreviewView(chat: chat, progressByTimeout: Binding.constant(false)) },
disabled: !noteFolder.ready
)
- .frame(height: dynamicRowHeight)
+ .frameCompat(height: dynamicRowHeight)
.swipeActions(edge: .leading, allowsFullSwipe: true) {
markReadButton()
}
@@ -433,6 +433,7 @@ struct ChatListNavLink: View {
private func contactRequestNavLink(_ contactRequest: UserContactRequest) -> some View {
ContactRequestView(contactRequest: contactRequest, chat: chat)
+ .frameCompat(height: dynamicRowHeight)
.swipeActions(edge: .trailing, allowsFullSwipe: true) {
Button {
Task { await acceptContactRequest(incognito: false, contactRequest: contactRequest) }
@@ -451,7 +452,6 @@ struct ChatListNavLink: View {
}
.tint(.red)
}
- .frame(height: dynamicRowHeight)
.contentShape(Rectangle())
.onTapGesture { showContactRequestDialog = true }
.confirmationDialog("Accept connection request?", isPresented: $showContactRequestDialog, titleVisibility: .visible) {
@@ -463,6 +463,7 @@ struct ChatListNavLink: View {
private func contactConnectionNavLink(_ contactConnection: PendingContactConnection) -> some View {
ContactConnectionView(chat: chat)
+ .frameCompat(height: dynamicRowHeight)
.swipeActions(edge: .trailing, allowsFullSwipe: true) {
Button {
AlertManager.shared.showAlert(deleteContactConnectionAlert(contactConnection) { a in
@@ -480,7 +481,6 @@ struct ChatListNavLink: View {
}
.tint(theme.colors.primary)
}
- .frame(height: dynamicRowHeight)
.appSheet(isPresented: $showContactConnectionInfo) {
Group {
if case let .contactConnection(contactConnection) = chat.chatInfo {
@@ -583,7 +583,7 @@ struct ChatListNavLink: View {
Text("invalid chat data")
.foregroundColor(.red)
.padding(4)
- .frame(height: dynamicRowHeight)
+ .frameCompat(height: dynamicRowHeight)
.onTapGesture { showInvalidJSON = true }
.appSheet(isPresented: $showInvalidJSON) {
invalidJSONView(dataToString(json))
@@ -603,6 +603,24 @@ struct ChatListNavLink: View {
}
}
+extension View {
+ @inline(__always)
+ @ViewBuilder fileprivate func frameCompat(height: CGFloat) -> some View {
+ if #available(iOS 16, *) {
+ self.frame(height: height)
+ } else {
+ VStack(spacing: 0) {
+ Divider()
+ .padding(.leading, 16)
+ self
+ .frame(height: height)
+ .padding(.horizontal, 8)
+ .padding(.vertical, 8)
+ }
+ }
+ }
+}
+
func rejectContactRequestAlert(_ contactRequest: UserContactRequest) -> Alert {
Alert(
title: Text("Reject contact request"),
diff --git a/apps/ios/Shared/Views/ChatList/ChatListView.swift b/apps/ios/Shared/Views/ChatList/ChatListView.swift
index 5c491b6303..f34f930c6f 100644
--- a/apps/ios/Shared/Views/ChatList/ChatListView.swift
+++ b/apps/ios/Shared/Views/ChatList/ChatListView.swift
@@ -367,13 +367,7 @@ struct ChatListView: View {
.offset(x: -8)
} else {
ForEach(cs, id: \.viewId) { chat in
- VStack(spacing: .zero) {
- Divider()
- .padding(.leading, 16)
- ChatListNavLink(chat: chat, parentSheet: $sheet)
- .padding(.horizontal, 8)
- .padding(.vertical, 6)
- }
+ ChatListNavLink(chat: chat, parentSheet: $sheet)
.scaleEffect(x: 1, y: oneHandUI ? -1 : 1, anchor: .center)
.listRowSeparator(.hidden)
.listRowInsets(EdgeInsets())
diff --git a/apps/ios/Shared/Views/Onboarding/ChooseServerOperators.swift b/apps/ios/Shared/Views/Onboarding/ChooseServerOperators.swift
index 17e1735472..656cef4a04 100644
--- a/apps/ios/Shared/Views/Onboarding/ChooseServerOperators.swift
+++ b/apps/ios/Shared/Views/Onboarding/ChooseServerOperators.swift
@@ -67,7 +67,7 @@ struct OnboardingConditionsView: View {
var body: some View {
GeometryReader { g in
- ScrollView {
+ let v = ScrollView {
VStack(alignment: .leading, spacing: 20) {
Text("Conditions of use")
.font(.largeTitle)
@@ -107,6 +107,7 @@ struct OnboardingConditionsView: View {
.frame(minHeight: 40)
}
}
+ .padding(25)
.frame(minHeight: g.size.height)
}
.onAppear {
@@ -127,9 +128,14 @@ struct OnboardingConditionsView: View {
}
}
.frame(maxHeight: .infinity, alignment: .top)
+ if #available(iOS 16.4, *) {
+ v.scrollBounceBehavior(.basedOnSize)
+ } else {
+ v
+ }
}
.frame(maxHeight: .infinity, alignment: .top)
- .padding(25)
+ .navigationBarHidden(true) // necessary on iOS 15
}
private func continueToNextStep() {
diff --git a/apps/ios/Shared/Views/Onboarding/CreateProfile.swift b/apps/ios/Shared/Views/Onboarding/CreateProfile.swift
index c022a2a012..ae72cb1be5 100644
--- a/apps/ios/Shared/Views/Onboarding/CreateProfile.swift
+++ b/apps/ios/Shared/Views/Onboarding/CreateProfile.swift
@@ -62,8 +62,7 @@ struct CreateProfile: View {
.frame(height: 20)
} footer: {
VStack(alignment: .leading, spacing: 8) {
- Text("Your profile, contacts and delivered messages are stored on your device.")
- Text("The profile is only shared with your contacts.")
+ Text("Your profile is stored on your device and only shared with your contacts.")
}
.foregroundColor(theme.colors.secondary)
.frame(maxWidth: .infinity, alignment: .leading)
@@ -118,25 +117,22 @@ struct CreateFirstProfile: View {
@State private var nextStepNavLinkActive = false
var body: some View {
- VStack(alignment: .leading, spacing: 20) {
- VStack(alignment: .center, spacing: 20) {
- Text("Create your profile")
+ let v = VStack(alignment: .leading, spacing: 16) {
+ VStack(alignment: .center, spacing: 16) {
+ Text("Create profile")
.font(.largeTitle)
.bold()
.multilineTextAlignment(.center)
-
- Text("Your profile, contacts and delivered messages are stored on your device.")
- .font(.callout)
- .foregroundColor(theme.colors.secondary)
- .multilineTextAlignment(.center)
-
- Text("The profile is only shared with your contacts.")
+
+ Text("Your profile is stored on your device and only shared with your contacts.")
.font(.callout)
.foregroundColor(theme.colors.secondary)
.multilineTextAlignment(.center)
}
+ .fixedSize(horizontal: false, vertical: true)
.frame(maxWidth: .infinity) // Ensures it takes up the full width
.padding(.horizontal, 10)
+ .onTapGesture { focusDisplayName = false }
HStack {
let name = displayName.trimmingCharacters(in: .whitespaces)
@@ -174,12 +170,23 @@ struct CreateFirstProfile: View {
}
}
.onAppear() {
- focusDisplayName = true
+ if #available(iOS 16, *) {
+ focusDisplayName = true
+ } else {
+ // it does not work before animation completes on iOS 15
+ DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
+ focusDisplayName = true
+ }
+ }
}
.padding(.horizontal, 25)
- .padding(.top, 10)
.padding(.bottom, 25)
.frame(maxWidth: .infinity, alignment: .leading)
+ if #available(iOS 16, *) {
+ return v.padding(.top, 10)
+ } else {
+ return v.padding(.top, 75).ignoresSafeArea(.all, edges: .top)
+ }
}
func createProfileButton() -> some View {
diff --git a/apps/ios/Shared/Views/Onboarding/SetNotificationsMode.swift b/apps/ios/Shared/Views/Onboarding/SetNotificationsMode.swift
index 97e1f49382..31865e7af9 100644
--- a/apps/ios/Shared/Views/Onboarding/SetNotificationsMode.swift
+++ b/apps/ios/Shared/Views/Onboarding/SetNotificationsMode.swift
@@ -17,7 +17,7 @@ struct SetNotificationsMode: View {
var body: some View {
GeometryReader { g in
- ScrollView {
+ let v = ScrollView {
VStack(alignment: .center, spacing: 20) {
Text("Push notifications")
.font(.largeTitle)
@@ -57,11 +57,17 @@ struct SetNotificationsMode: View {
.padding(25)
.frame(minHeight: g.size.height)
}
+ if #available(iOS 16.4, *) {
+ v.scrollBounceBehavior(.basedOnSize)
+ } else {
+ v
+ }
}
.frame(maxHeight: .infinity)
.sheet(isPresented: $showInfo) {
NotificationsInfoView()
}
+ .navigationBarHidden(true) // necessary on iOS 15
}
private func setNotificationsMode(_ token: DeviceToken, _ mode: NotificationsMode) {
diff --git a/apps/ios/Shared/Views/Onboarding/SimpleXInfo.swift b/apps/ios/Shared/Views/Onboarding/SimpleXInfo.swift
index e55cc4037a..9f41a37b1d 100644
--- a/apps/ios/Shared/Views/Onboarding/SimpleXInfo.swift
+++ b/apps/ios/Shared/Views/Onboarding/SimpleXInfo.swift
@@ -18,7 +18,7 @@ struct SimpleXInfo: View {
var body: some View {
GeometryReader { g in
- ScrollView {
+ let v = ScrollView {
VStack(alignment: .leading) {
VStack(alignment: .center, spacing: 10) {
Image(colorScheme == .light ? "logo" : "logo-light")
@@ -36,7 +36,7 @@ struct SimpleXInfo: View {
.font(.headline)
}
}
-
+
Spacer()
VStack(alignment: .leading) {
@@ -66,6 +66,9 @@ struct SimpleXInfo: View {
}
}
}
+ .padding(.horizontal, 25)
+ .padding(.top, 75)
+ .padding(.bottom, 25)
.frame(minHeight: g.size.height)
}
.sheet(isPresented: Binding(
@@ -88,14 +91,17 @@ struct SimpleXInfo: View {
createProfileNavLinkActive: $createProfileNavLinkActive
)
}
+ if #available(iOS 16.4, *) {
+ v.scrollBounceBehavior(.basedOnSize)
+ } else {
+ v
+ }
}
.onAppear() {
setLastVersionDefault()
}
.frame(maxHeight: .infinity)
- .padding(.horizontal, 25)
- .padding(.top, 75)
- .padding(.bottom, 25)
+ .navigationBarHidden(true) // necessary on iOS 15
}
private func onboardingInfoRow(_ image: String, _ title: LocalizedStringKey, _ text: LocalizedStringKey, width: CGFloat) -> some View {
diff --git a/apps/ios/SimpleX Localizations/ar.xcloc/Localized Contents/ar.xliff b/apps/ios/SimpleX Localizations/ar.xcloc/Localized Contents/ar.xliff
index 278b9ec9b2..e965e5a1a5 100644
--- a/apps/ios/SimpleX Localizations/ar.xcloc/Localized Contents/ar.xliff
+++ b/apps/ios/SimpleX Localizations/ar.xcloc/Localized Contents/ar.xliff
@@ -2826,8 +2826,8 @@ We will be adding server redundancy to prevent lost messages.
The old database was not removed during the migration, it can be deleted.No comment provided by engineer.
-
- The profile is only shared with your contacts.
+
+ Your profile is stored on your device and only shared with your contacts.No comment provided by engineer.
diff --git a/apps/ios/SimpleX Localizations/bg.xcloc/Localized Contents/bg.xliff b/apps/ios/SimpleX Localizations/bg.xcloc/Localized Contents/bg.xliff
index 56553b3283..776199ac1f 100644
--- a/apps/ios/SimpleX Localizations/bg.xcloc/Localized Contents/bg.xliff
+++ b/apps/ios/SimpleX Localizations/bg.xcloc/Localized Contents/bg.xliff
@@ -7329,11 +7329,6 @@ It can happen because of some bug or when the connection is compromised.Старата база данни не бе премахната по време на миграцията, тя може да бъде изтрита.
No comment provided by engineer.
-
- The profile is only shared with your contacts.
- Профилът се споделя само с вашите контакти.
- No comment provided by engineer.
- The same conditions will apply to operator **%@**.No comment provided by engineer.
@@ -8577,6 +8572,11 @@ Repeat connection request?
Вашият профил **%@** ще бъде споделен.No comment provided by engineer.
+
+ Your profile is stored on your device and only shared with your contacts.
+ Профилът се споделя само с вашите контакти.
+ No comment provided by engineer.
+ Your profile is stored on your device and shared only with your contacts. SimpleX servers cannot see your profile.Вашият профил се съхранява на вашето устройство и се споделя само с вашите контакти. SimpleX сървърите не могат да видят вашия профил.
@@ -8586,11 +8586,6 @@ Repeat connection request?
Your profile was changed. If you save it, the updated profile will be sent to all your contacts.alert message
-
- Your profile, contacts and delivered messages are stored on your device.
- Вашият профил, контакти и доставени съобщения се съхраняват на вашето устройство.
- No comment provided by engineer.
- Your random profileВашият автоматично генериран профил
diff --git a/apps/ios/SimpleX Localizations/bn.xcloc/Localized Contents/bn.xliff b/apps/ios/SimpleX Localizations/bn.xcloc/Localized Contents/bn.xliff
index 7002f790df..bf7753675e 100644
--- a/apps/ios/SimpleX Localizations/bn.xcloc/Localized Contents/bn.xliff
+++ b/apps/ios/SimpleX Localizations/bn.xcloc/Localized Contents/bn.xliff
@@ -3422,8 +3422,8 @@ It can happen because of some bug or when the connection is compromised.The old database was not removed during the migration, it can be deleted.
No comment provided by engineer.
-
- The profile is only shared with your contacts.
+
+ Your profile is stored on your device and only shared with your contacts.No comment provided by engineer.
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 21bf0aef60..0400839cb0 100644
--- a/apps/ios/SimpleX Localizations/cs.xcloc/Localized Contents/cs.xliff
+++ b/apps/ios/SimpleX Localizations/cs.xcloc/Localized Contents/cs.xliff
@@ -1942,6 +1942,7 @@ This is your own one-time link!
Create profile
+ Vytvořte si profilNo comment provided by engineer.
@@ -7080,11 +7081,6 @@ Může se to stát kvůli nějaké chybě, nebo pokud je spojení kompromitován
Stará databáze nebyla během přenášení odstraněna, lze ji smazat.No comment provided by engineer.
-
- The profile is only shared with your contacts.
- Profil je sdílen pouze s vašimi kontakty.
- No comment provided by engineer.
- The same conditions will apply to operator **%@**.No comment provided by engineer.
@@ -8271,6 +8267,11 @@ Repeat connection request?
Váš profil **%@** bude sdílen.No comment provided by engineer.
+
+ Your profile is stored on your device and only shared with your contacts.
+ Profil je sdílen pouze s vašimi kontakty.
+ No comment provided by engineer.
+ Your profile is stored on your device and shared only with your contacts. SimpleX servers cannot see your profile.Váš profil je uložen ve vašem zařízení a sdílen pouze s vašimi kontakty. Servery SimpleX nevidí váš profil.
@@ -8280,11 +8281,6 @@ Repeat connection request?
Your profile was changed. If you save it, the updated profile will be sent to all your contacts.alert message
-
- Your profile, contacts and delivered messages are stored on your device.
- Váš profil, kontakty a doručené zprávy jsou uloženy ve vašem zařízení.
- No comment provided by engineer.
- Your random profileVáš náhodný profil
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 a113d35bbd..06fd7c5a1d 100644
--- a/apps/ios/SimpleX Localizations/de.xcloc/Localized Contents/de.xliff
+++ b/apps/ios/SimpleX Localizations/de.xcloc/Localized Contents/de.xliff
@@ -7763,11 +7763,6 @@ Dies kann passieren, wenn es einen Fehler gegeben hat oder die Verbindung kompro
Die alte Datenbank wurde während der Migration nicht entfernt. Sie kann gelöscht werden.No comment provided by engineer.
-
- The profile is only shared with your contacts.
- Das Profil wird nur mit Ihren Kontakten geteilt.
- No comment provided by engineer.
- The same conditions will apply to operator **%@**.Dieselben Nutzungsbedingungen gelten auch für den Betreiber **%@**.
@@ -9081,6 +9076,11 @@ Verbindungsanfrage wiederholen?
Ihr Profil **%@** wird geteilt.No comment provided by engineer.
+
+ Your profile is stored on your device and only shared with your contacts.
+ Das Profil wird nur mit Ihren Kontakten geteilt.
+ No comment provided by engineer.
+ Your profile is stored on your device and shared only with your contacts. SimpleX servers cannot see your profile.Ihr Profil wird auf Ihrem Gerät gespeichert und nur mit Ihren Kontakten geteilt. SimpleX-Server können Ihr Profil nicht einsehen.
@@ -9091,11 +9091,6 @@ Verbindungsanfrage wiederholen?
Ihr Profil wurde geändert. Wenn Sie es speichern, wird das aktualisierte Profil an alle Ihre Kontakte gesendet.alert message
-
- Your profile, contacts and delivered messages are stored on your device.
- Ihr Profil, Ihre Kontakte und zugestellten Nachrichten werden auf Ihrem Gerät gespeichert.
- No comment provided by engineer.
- Your random profileIhr Zufallsprofil
diff --git a/apps/ios/SimpleX Localizations/el.xcloc/Localized Contents/el.xliff b/apps/ios/SimpleX Localizations/el.xcloc/Localized Contents/el.xliff
index b601d1fa74..fc1846942c 100644
--- a/apps/ios/SimpleX Localizations/el.xcloc/Localized Contents/el.xliff
+++ b/apps/ios/SimpleX Localizations/el.xcloc/Localized Contents/el.xliff
@@ -3043,8 +3043,8 @@ It can happen because of some bug or when the connection is compromised.The old database was not removed during the migration, it can be deleted.
No comment provided by engineer.
-
- The profile is only shared with your contacts.
+
+ Your profile is stored on your device and only shared with your contacts.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 641af86c2a..fd71e0dee6 100644
--- a/apps/ios/SimpleX Localizations/en.xcloc/Localized Contents/en.xliff
+++ b/apps/ios/SimpleX Localizations/en.xcloc/Localized Contents/en.xliff
@@ -7764,11 +7764,6 @@ It can happen because of some bug or when the connection is compromised.The old database was not removed during the migration, it can be deleted.
No comment provided by engineer.
-
- The profile is only shared with your contacts.
- The profile is only shared with your contacts.
- No comment provided by engineer.
- The same conditions will apply to operator **%@**.The same conditions will apply to operator **%@**.
@@ -9082,6 +9077,11 @@ Repeat connection request?
Your profile **%@** will be shared.No comment provided by engineer.
+
+ Your profile is stored on your device and only shared with your contacts.
+ Your profile is stored on your device and only shared with your contacts.
+ No comment provided by engineer.
+ Your profile is stored on your device and shared only with your contacts. SimpleX servers cannot see your profile.Your profile is stored on your device and shared only with your contacts. SimpleX servers cannot see your profile.
@@ -9092,11 +9092,6 @@ Repeat connection request?
Your profile was changed. If you save it, the updated profile will be sent to all your contacts.alert message
-
- Your profile, contacts and delivered messages are stored on your device.
- Your profile, contacts and delivered messages are stored on your device.
- No comment provided by engineer.
- Your random profileYour random profile
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 73f88e1cab..d39fb61249 100644
--- a/apps/ios/SimpleX Localizations/es.xcloc/Localized Contents/es.xliff
+++ b/apps/ios/SimpleX Localizations/es.xcloc/Localized Contents/es.xliff
@@ -7763,11 +7763,6 @@ Puede ocurrir por algún bug o cuando la conexión está comprometida.
La base de datos antigua no se eliminó durante la migración, puede eliminarse.No comment provided by engineer.
-
- The profile is only shared with your contacts.
- El perfil sólo se comparte con tus contactos.
- No comment provided by engineer.
- The same conditions will apply to operator **%@**.Las mismas condiciones se aplicarán al operador **%@**.
@@ -9081,6 +9076,11 @@ Repeat connection request?
El perfil **%@** será compartido.No comment provided by engineer.
+
+ Your profile is stored on your device and only shared with your contacts.
+ El perfil sólo se comparte con tus contactos.
+ No comment provided by engineer.
+ Your profile is stored on your device and shared only with your contacts. SimpleX servers cannot see your profile.Tu perfil es almacenado en tu dispositivo y solamente se comparte con tus contactos. Los servidores SimpleX no pueden ver tu perfil.
@@ -9091,11 +9091,6 @@ Repeat connection request?
Tu perfil ha sido modificado. Si lo guardas la actualización será enviada a todos tus contactos.alert message
-
- Your profile, contacts and delivered messages are stored on your device.
- Tu perfil, contactos y mensajes se almacenan en tu dispositivo.
- No comment provided by engineer.
- Your random profileTu perfil aleatorio
diff --git a/apps/ios/SimpleX Localizations/fi.xcloc/Localized Contents/fi.xliff b/apps/ios/SimpleX Localizations/fi.xcloc/Localized Contents/fi.xliff
index 5281fbc701..a54666bb10 100644
--- a/apps/ios/SimpleX Localizations/fi.xcloc/Localized Contents/fi.xliff
+++ b/apps/ios/SimpleX Localizations/fi.xcloc/Localized Contents/fi.xliff
@@ -1923,6 +1923,7 @@ This is your own one-time link!
Create profile
+ Luo profiilisiNo comment provided by engineer.
@@ -7054,11 +7055,6 @@ Tämä voi johtua jostain virheestä tai siitä, että yhteys on vaarantunut.Vanhaa tietokantaa ei poistettu siirron aikana, se voidaan kuitenkin poistaa.
No comment provided by engineer.
-
- The profile is only shared with your contacts.
- Profiili jaetaan vain kontaktiesi kanssa.
- No comment provided by engineer.
- The same conditions will apply to operator **%@**.No comment provided by engineer.
@@ -8244,6 +8240,11 @@ Repeat connection request?
Profiilisi **%@** jaetaan.No comment provided by engineer.
+
+ Your profile is stored on your device and only shared with your contacts.
+ Profiili jaetaan vain kontaktiesi kanssa.
+ No comment provided by engineer.
+ Your profile is stored on your device and shared only with your contacts. SimpleX servers cannot see your profile.Profiilisi tallennetaan laitteeseesi ja jaetaan vain yhteystietojesi kanssa. SimpleX-palvelimet eivät näe profiiliasi.
@@ -8253,11 +8254,6 @@ Repeat connection request?
Your profile was changed. If you save it, the updated profile will be sent to all your contacts.alert message
-
- Your profile, contacts and delivered messages are stored on your device.
- Profiilisi, kontaktisi ja toimitetut viestit tallennetaan laitteellesi.
- No comment provided by engineer.
- Your random profileSatunnainen profiilisi
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 1e5da0b0ed..59bde0650e 100644
--- a/apps/ios/SimpleX Localizations/fr.xcloc/Localized Contents/fr.xliff
+++ b/apps/ios/SimpleX Localizations/fr.xcloc/Localized Contents/fr.xliff
@@ -7696,11 +7696,6 @@ Cela peut se produire en raison d'un bug ou lorsque la connexion est compromise.
L'ancienne base de données n'a pas été supprimée lors de la migration, elle peut être supprimée.No comment provided by engineer.
-
- The profile is only shared with your contacts.
- Le profil n'est partagé qu'avec vos contacts.
- No comment provided by engineer.
- The same conditions will apply to operator **%@**.Les mêmes conditions s'appliquent à l'opérateur **%@**.
@@ -9003,6 +8998,11 @@ Répéter la demande de connexion ?
Votre profil **%@** sera partagé.No comment provided by engineer.
+
+ Your profile is stored on your device and only shared with your contacts.
+ Le profil n'est partagé qu'avec vos contacts.
+ No comment provided by engineer.
+ Your profile is stored on your device and shared only with your contacts. SimpleX servers cannot see your profile.Votre profil est stocké sur votre appareil et est seulement partagé avec vos contacts. Les serveurs SimpleX ne peuvent pas voir votre profil.
@@ -9013,11 +9013,6 @@ Répéter la demande de connexion ?
Votre profil a été modifié. Si vous l'enregistrez, le profil mis à jour sera envoyé à tous vos contacts.alert message
-
- Your profile, contacts and delivered messages are stored on your device.
- Votre profil, vos contacts et les messages reçus sont stockés sur votre appareil.
- No comment provided by engineer.
- Your random profileVotre profil aléatoire
diff --git a/apps/ios/SimpleX Localizations/he.xcloc/Localized Contents/he.xliff b/apps/ios/SimpleX Localizations/he.xcloc/Localized Contents/he.xliff
index 08f46bb056..f76d7eba1e 100644
--- a/apps/ios/SimpleX Localizations/he.xcloc/Localized Contents/he.xliff
+++ b/apps/ios/SimpleX Localizations/he.xcloc/Localized Contents/he.xliff
@@ -3569,8 +3569,8 @@ It can happen because of some bug or when the connection is compromised.The old database was not removed during the migration, it can be deleted.
No comment provided by engineer.
-
- The profile is only shared with your contacts.
+
+ Your profile is stored on your device and only shared with your contacts.No comment provided by engineer.
diff --git a/apps/ios/SimpleX Localizations/hr.xcloc/Localized Contents/hr.xliff b/apps/ios/SimpleX Localizations/hr.xcloc/Localized Contents/hr.xliff
index bdb3083f5a..6ad4d159c7 100644
--- a/apps/ios/SimpleX Localizations/hr.xcloc/Localized Contents/hr.xliff
+++ b/apps/ios/SimpleX Localizations/hr.xcloc/Localized Contents/hr.xliff
@@ -2619,8 +2619,8 @@ We will be adding server redundancy to prevent lost messages.
The old database was not removed during the migration, it can be deleted.No comment provided by engineer.
-
- The profile is only shared with your contacts.
+
+ Your profile is stored on your device and only shared with your contacts.No comment provided by engineer.
diff --git a/apps/ios/SimpleX Localizations/hu.xcloc/Localized Contents/hu.xliff b/apps/ios/SimpleX Localizations/hu.xcloc/Localized Contents/hu.xliff
index 9be5879eb6..78bee138e4 100644
--- a/apps/ios/SimpleX Localizations/hu.xcloc/Localized Contents/hu.xliff
+++ b/apps/ios/SimpleX Localizations/hu.xcloc/Localized Contents/hu.xliff
@@ -7763,11 +7763,6 @@ Ez valamilyen hiba vagy sérült kapcsolat esetén fordulhat elő.
A régi adatbázis nem lett eltávolítva az átköltöztetéskor, ezért törölhető.No comment provided by engineer.
-
- The profile is only shared with your contacts.
- A profilja csak a partnereivel van megosztva.
- No comment provided by engineer.
- The same conditions will apply to operator **%@**.Ugyanezek a feltételek lesznek elfogadva a következő üzemeltető számára is: **%@**.
@@ -9081,6 +9076,11 @@ Megismétli a meghívási kérést?
A(z) **%@** nevű profilja meg lesz osztva.No comment provided by engineer.
+
+ Your profile is stored on your device and only shared with your contacts.
+ A profilja csak a partnereivel van megosztva.
+ No comment provided by engineer.
+ Your profile is stored on your device and shared only with your contacts. SimpleX servers cannot see your profile.A profilja az eszközén van tárolva és csak a partnereivel van megosztva. A SimpleX-kiszolgálók nem láthatják a profilját.
@@ -9091,11 +9091,6 @@ Megismétli a meghívási kérést?
A profilja módosult. Ha elmenti, a profilfrissítés el lesz küldve a partnerei számára.alert message
-
- Your profile, contacts and delivered messages are stored on your device.
- A profilja, a partnerei és az elküldött üzenetei a saját eszközén vannak tárolva.
- No comment provided by engineer.
- Your random profileVéletlenszerű profil
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 0c0c12004e..cf5f61918f 100644
--- a/apps/ios/SimpleX Localizations/it.xcloc/Localized Contents/it.xliff
+++ b/apps/ios/SimpleX Localizations/it.xcloc/Localized Contents/it.xliff
@@ -7763,11 +7763,6 @@ Può accadere a causa di qualche bug o quando la connessione è compromessa.Il database vecchio non è stato rimosso durante la migrazione, può essere eliminato.
No comment provided by engineer.
-
- The profile is only shared with your contacts.
- Il profilo è condiviso solo con i tuoi contatti.
- No comment provided by engineer.
- The same conditions will apply to operator **%@**.Le stesse condizioni si applicheranno all'operatore **%@**.
@@ -9081,6 +9076,11 @@ Ripetere la richiesta di connessione?
Verrà condiviso il tuo profilo **%@**.No comment provided by engineer.
+
+ Your profile is stored on your device and only shared with your contacts.
+ Il profilo è condiviso solo con i tuoi contatti.
+ No comment provided by engineer.
+ Your profile is stored on your device and shared only with your contacts. SimpleX servers cannot see your profile.Il tuo profilo è memorizzato sul tuo dispositivo e condiviso solo con i tuoi contatti. I server di SimpleX non possono vedere il tuo profilo.
@@ -9091,11 +9091,6 @@ Ripetere la richiesta di connessione?
Il tuo profilo è stato cambiato. Se lo salvi, il profilo aggiornato verrà inviato a tutti i tuoi contatti.alert message
-
- Your profile, contacts and delivered messages are stored on your device.
- Il tuo profilo, i contatti e i messaggi recapitati sono memorizzati sul tuo dispositivo.
- No comment provided by engineer.
- Your random profileIl tuo profilo casuale
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 26f415dd13..27134216a7 100644
--- a/apps/ios/SimpleX Localizations/ja.xcloc/Localized Contents/ja.xliff
+++ b/apps/ios/SimpleX Localizations/ja.xcloc/Localized Contents/ja.xliff
@@ -1990,6 +1990,7 @@ This is your own one-time link!
Create profile
+ プロフィールを作成するNo comment provided by engineer.
@@ -7125,11 +7126,6 @@ It can happen because of some bug or when the connection is compromised.古いデータベースは移行時に削除されなかったので、削除することができます。
No comment provided by engineer.
-
- The profile is only shared with your contacts.
- プロフィールは連絡先にしか共有されません。
- No comment provided by engineer.
- The same conditions will apply to operator **%@**.No comment provided by engineer.
@@ -8315,6 +8311,11 @@ Repeat connection request?
あなたのプロファイル **%@** が共有されます。No comment provided by engineer.
+
+ Your profile is stored on your device and only shared with your contacts.
+ プロフィールは連絡先にしか共有されません。
+ No comment provided by engineer.
+ Your profile is stored on your device and shared only with your contacts. SimpleX servers cannot see your profile.プロフィールはデバイスに保存され、連絡先とのみ共有されます。 SimpleX サーバーはあなたのプロファイルを参照できません。
@@ -8324,11 +8325,6 @@ Repeat connection request?
Your profile was changed. If you save it, the updated profile will be sent to all your contacts.alert message
-
- Your profile, contacts and delivered messages are stored on your device.
- あなたのプロフィール、連絡先、送信したメッセージがご自分の端末に保存されます。
- No comment provided by engineer.
- Your random profileあなたのランダム・プロフィール
diff --git a/apps/ios/SimpleX Localizations/ko.xcloc/Localized Contents/ko.xliff b/apps/ios/SimpleX Localizations/ko.xcloc/Localized Contents/ko.xliff
index e35732f046..019f63cbc0 100644
--- a/apps/ios/SimpleX Localizations/ko.xcloc/Localized Contents/ko.xliff
+++ b/apps/ios/SimpleX Localizations/ko.xcloc/Localized Contents/ko.xliff
@@ -2867,8 +2867,8 @@ We will be adding server redundancy to prevent lost messages.
The old database was not removed during the migration, it can be deleted.No comment provided by engineer.
-
- The profile is only shared with your contacts.
+
+ Your profile is stored on your device and only shared with your contacts.No comment provided by engineer.
diff --git a/apps/ios/SimpleX Localizations/lt.xcloc/Localized Contents/lt.xliff b/apps/ios/SimpleX Localizations/lt.xcloc/Localized Contents/lt.xliff
index 54a713478f..0f795170c6 100644
--- a/apps/ios/SimpleX Localizations/lt.xcloc/Localized Contents/lt.xliff
+++ b/apps/ios/SimpleX Localizations/lt.xcloc/Localized Contents/lt.xliff
@@ -2631,8 +2631,8 @@ We will be adding server redundancy to prevent lost messages.
The old database was not removed during the migration, it can be deleted.No comment provided by engineer.
-
- The profile is only shared with your contacts.
+
+ Your profile is stored on your device and only shared with your contacts.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 681502e255..4008c57ac0 100644
--- a/apps/ios/SimpleX Localizations/nl.xcloc/Localized Contents/nl.xliff
+++ b/apps/ios/SimpleX Localizations/nl.xcloc/Localized Contents/nl.xliff
@@ -7760,11 +7760,6 @@ Het kan gebeuren vanwege een bug of wanneer de verbinding is aangetast.
De oude database is niet verwijderd tijdens de migratie, deze kan worden verwijderd.No comment provided by engineer.
-
- The profile is only shared with your contacts.
- Het profiel wordt alleen gedeeld met uw contacten.
- No comment provided by engineer.
- The same conditions will apply to operator **%@**.Dezelfde voorwaarden gelden voor operator **%@**.
@@ -9074,6 +9069,11 @@ Verbindingsverzoek herhalen?
Uw profiel **%@** wordt gedeeld.No comment provided by engineer.
+
+ Your profile is stored on your device and only shared with your contacts.
+ Het profiel wordt alleen gedeeld met uw contacten.
+ No comment provided by engineer.
+ Your profile is stored on your device and shared only with your contacts. SimpleX servers cannot see your profile.Uw profiel wordt op uw apparaat opgeslagen en alleen gedeeld met uw contacten. SimpleX servers kunnen uw profiel niet zien.
@@ -9084,11 +9084,6 @@ Verbindingsverzoek herhalen?
Je profiel is gewijzigd. Als je het opslaat, wordt het bijgewerkte profiel naar al je contacten verzonden.alert message
-
- Your profile, contacts and delivered messages are stored on your device.
- Uw profiel, contacten en afgeleverde berichten worden op uw apparaat opgeslagen.
- No comment provided by engineer.
- Your random profileJe willekeurige profiel
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 01bc0b8508..175c8b4112 100644
--- a/apps/ios/SimpleX Localizations/pl.xcloc/Localized Contents/pl.xliff
+++ b/apps/ios/SimpleX Localizations/pl.xcloc/Localized Contents/pl.xliff
@@ -7583,11 +7583,6 @@ Może się to zdarzyć z powodu jakiegoś błędu lub gdy połączenie jest skom
Stara baza danych nie została usunięta podczas migracji, można ją usunąć.No comment provided by engineer.
-
- The profile is only shared with your contacts.
- Profil jest udostępniany tylko Twoim kontaktom.
- No comment provided by engineer.
- The same conditions will apply to operator **%@**.No comment provided by engineer.
@@ -8870,6 +8865,11 @@ Powtórzyć prośbę połączenia?
Twój profil **%@** zostanie udostępniony.No comment provided by engineer.
+
+ Your profile is stored on your device and only shared with your contacts.
+ Profil jest udostępniany tylko Twoim kontaktom.
+ No comment provided by engineer.
+ Your profile is stored on your device and shared only with your contacts. SimpleX servers cannot see your profile.Twój profil jest przechowywany na urządzeniu i udostępniany tylko Twoim kontaktom. Serwery SimpleX nie mogą zobaczyć Twojego profilu.
@@ -8880,11 +8880,6 @@ Powtórzyć prośbę połączenia?
Twój profil został zmieniony. Jeśli go zapiszesz, zaktualizowany profil zostanie wysłany do wszystkich kontaktów.alert message
-
- Your profile, contacts and delivered messages are stored on your device.
- Twój profil, kontakty i dostarczone wiadomości są przechowywane na Twoim urządzeniu.
- No comment provided by engineer.
- Your random profileTwój losowy profil
diff --git a/apps/ios/SimpleX Localizations/pt-BR.xcloc/Localized Contents/pt-BR.xliff b/apps/ios/SimpleX Localizations/pt-BR.xcloc/Localized Contents/pt-BR.xliff
index 93ba6f357b..bbb6c7d22a 100644
--- a/apps/ios/SimpleX Localizations/pt-BR.xcloc/Localized Contents/pt-BR.xliff
+++ b/apps/ios/SimpleX Localizations/pt-BR.xcloc/Localized Contents/pt-BR.xliff
@@ -3002,8 +3002,8 @@ We will be adding server redundancy to prevent lost messages.
The old database was not removed during the migration, it can be deleted.No comment provided by engineer.
-
- The profile is only shared with your contacts.
+
+ Your profile is stored on your device and only shared with your contacts.O perfil é compartilhado apenas com seus contatos.No comment provided by engineer.
diff --git a/apps/ios/SimpleX Localizations/pt.xcloc/Localized Contents/pt.xliff b/apps/ios/SimpleX Localizations/pt.xcloc/Localized Contents/pt.xliff
index de1787bdad..bc8bf79da1 100644
--- a/apps/ios/SimpleX Localizations/pt.xcloc/Localized Contents/pt.xliff
+++ b/apps/ios/SimpleX Localizations/pt.xcloc/Localized Contents/pt.xliff
@@ -3146,8 +3146,8 @@ It can happen because of some bug or when the connection is compromised.The old database was not removed during the migration, it can be deleted.
No comment provided by engineer.
-
- The profile is only shared with your contacts.
+
+ Your profile is stored on your device and only shared with your contacts.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 a7b63e38ba..419fa75375 100644
--- a/apps/ios/SimpleX Localizations/ru.xcloc/Localized Contents/ru.xliff
+++ b/apps/ios/SimpleX Localizations/ru.xcloc/Localized Contents/ru.xliff
@@ -7715,11 +7715,6 @@ It can happen because of some bug or when the connection is compromised.Предыдущая версия данных чата не удалена при перемещении, её можно удалить.
No comment provided by engineer.
-
- The profile is only shared with your contacts.
- Профиль отправляется только Вашим контактам.
- No comment provided by engineer.
- The same conditions will apply to operator **%@**.Те же самые условия будут приняты для оператора **%@**.
@@ -9021,6 +9016,11 @@ Repeat connection request?
Будет отправлен Ваш профиль **%@**.No comment provided by engineer.
+
+ Your profile is stored on your device and only shared with your contacts.
+ Ваш профиль храниться на Вашем устройстве и отправляется только контактам.
+ No comment provided by engineer.
+ Your profile is stored on your device and shared only with your contacts. SimpleX servers cannot see your profile.Ваш профиль хранится на Вашем устройстве и отправляется только Вашим контактам. SimpleX серверы не могут получить доступ к Вашему профилю.
@@ -9031,11 +9031,6 @@ Repeat connection request?
Ваш профиль был изменен. Если вы сохраните его, обновленный профиль будет отправлен всем вашим контактам.alert message
-
- Your profile, contacts and delivered messages are stored on your device.
- Ваш профиль, контакты и доставленные сообщения хранятся на Вашем устройстве.
- No comment provided by engineer.
- Your random profileСлучайный профиль
diff --git a/apps/ios/SimpleX Localizations/th.xcloc/Localized Contents/th.xliff b/apps/ios/SimpleX Localizations/th.xcloc/Localized Contents/th.xliff
index be68dc9780..671dd87d7d 100644
--- a/apps/ios/SimpleX Localizations/th.xcloc/Localized Contents/th.xliff
+++ b/apps/ios/SimpleX Localizations/th.xcloc/Localized Contents/th.xliff
@@ -7028,11 +7028,6 @@ It can happen because of some bug or when the connection is compromised.ฐานข้อมูลเก่าไม่ได้ถูกลบในระหว่างการย้ายข้อมูล แต่สามารถลบได้
No comment provided by engineer.
-
- The profile is only shared with your contacts.
- โปรไฟล์นี้แชร์กับผู้ติดต่อของคุณเท่านั้น
- No comment provided by engineer.
- The same conditions will apply to operator **%@**.No comment provided by engineer.
@@ -8212,6 +8207,11 @@ Repeat connection request?
Your profile **%@** will be shared.No comment provided by engineer.
+
+ Your profile is stored on your device and only shared with your contacts.
+ โปรไฟล์นี้แชร์กับผู้ติดต่อของคุณเท่านั้น
+ No comment provided by engineer.
+ Your profile is stored on your device and shared only with your contacts. SimpleX servers cannot see your profile.โปรไฟล์ของคุณจะถูกจัดเก็บไว้ในอุปกรณ์ของคุณและแชร์กับผู้ติดต่อของคุณเท่านั้น เซิร์ฟเวอร์ SimpleX ไม่สามารถดูโปรไฟล์ของคุณได้
@@ -8221,11 +8221,6 @@ Repeat connection request?
Your profile was changed. If you save it, the updated profile will be sent to all your contacts.alert message
-
- Your profile, contacts and delivered messages are stored on your device.
- โปรไฟล์ รายชื่อผู้ติดต่อ และข้อความที่ส่งของคุณจะถูกจัดเก็บไว้ในอุปกรณ์ของคุณ
- No comment provided by engineer.
- Your random profileโปรไฟล์แบบสุ่มของคุณ
diff --git a/apps/ios/SimpleX Localizations/tr.xcloc/Localized Contents/tr.xliff b/apps/ios/SimpleX Localizations/tr.xcloc/Localized Contents/tr.xliff
index 6eb1daf84b..bbee40c2b9 100644
--- a/apps/ios/SimpleX Localizations/tr.xcloc/Localized Contents/tr.xliff
+++ b/apps/ios/SimpleX Localizations/tr.xcloc/Localized Contents/tr.xliff
@@ -7599,11 +7599,6 @@ Bazı hatalar nedeniyle veya bağlantı tehlikeye girdiğinde meydana gelebilir.
Eski veritabanı geçiş sırasında kaldırılmadı, silinebilir.No comment provided by engineer.
-
- The profile is only shared with your contacts.
- Profil sadece kişilerinle paylaşılacak.
- No comment provided by engineer.
- The same conditions will apply to operator **%@**.No comment provided by engineer.
@@ -8886,6 +8881,11 @@ Bağlantı isteği tekrarlansın mı?
Profiliniz **%@** paylaşılacaktır.No comment provided by engineer.
+
+ Your profile is stored on your device and only shared with your contacts.
+ Profil sadece kişilerinle paylaşılacak.
+ No comment provided by engineer.
+ Your profile is stored on your device and shared only with your contacts. SimpleX servers cannot see your profile.Profiliniz cihazınızda saklanır ve sadece kişilerinizle paylaşılır. SimpleX sunucuları profilinizi göremez.
@@ -8896,11 +8896,6 @@ Bağlantı isteği tekrarlansın mı?
Profiliniz değiştirildi. Kaydederseniz, güncellenmiş profil tüm kişilerinize gönderilecektir.alert message
-
- Your profile, contacts and delivered messages are stored on your device.
- Profiliniz, kişileriniz ve gönderilmiş mesajlar cihazınızda saklanır.
- No comment provided by engineer.
- Your random profileRasgele profiliniz
diff --git a/apps/ios/SimpleX Localizations/uk.xcloc/Localized Contents/uk.xliff b/apps/ios/SimpleX Localizations/uk.xcloc/Localized Contents/uk.xliff
index 7c8c6f4254..c0375e3b02 100644
--- a/apps/ios/SimpleX Localizations/uk.xcloc/Localized Contents/uk.xliff
+++ b/apps/ios/SimpleX Localizations/uk.xcloc/Localized Contents/uk.xliff
@@ -7638,11 +7638,6 @@ It can happen because of some bug or when the connection is compromised.Стара база даних не була видалена під час міграції, її можна видалити.
No comment provided by engineer.
-
- The profile is only shared with your contacts.
- Профіль доступний лише вашим контактам.
- No comment provided by engineer.
- The same conditions will apply to operator **%@**.Такі ж умови діятимуть і для оператора **%@**.
@@ -8945,6 +8940,11 @@ Repeat connection request?
Ваш профіль **%@** буде опублікований.No comment provided by engineer.
+
+ Your profile is stored on your device and only shared with your contacts.
+ Профіль доступний лише вашим контактам.
+ No comment provided by engineer.
+ Your profile is stored on your device and shared only with your contacts. SimpleX servers cannot see your profile.Ваш профіль зберігається на вашому пристрої і доступний лише вашим контактам. Сервери SimpleX не бачать ваш профіль.
@@ -8955,11 +8955,6 @@ Repeat connection request?
Ваш профіль було змінено. Якщо ви збережете його, оновлений профіль буде надіслано всім вашим контактам.alert message
-
- Your profile, contacts and delivered messages are stored on your device.
- Ваш профіль, контакти та доставлені повідомлення зберігаються на вашому пристрої.
- No comment provided by engineer.
- Your random profileВаш випадковий профіль
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 03e053326a..d5411f86e3 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
@@ -7708,11 +7708,6 @@ It can happen because of some bug or when the connection is compromised.旧数据库在迁移过程中没有被移除,可以删除。
No comment provided by engineer.
-
- The profile is only shared with your contacts.
- 该资料仅与您的联系人共享。
- No comment provided by engineer.
- The same conditions will apply to operator **%@**.No comment provided by engineer.
@@ -8987,6 +8982,11 @@ Repeat connection request?
您的个人资料 **%@** 将被共享。No comment provided by engineer.
+
+ Your profile is stored on your device and only shared with your contacts.
+ 该资料仅与您的联系人共享。
+ No comment provided by engineer.
+ Your profile is stored on your device and shared only with your contacts. SimpleX servers cannot see your profile.您的资料存储在您的设备上并仅与您的联系人共享。 SimpleX 服务器无法看到您的资料。
@@ -8996,11 +8996,6 @@ Repeat connection request?
Your profile was changed. If you save it, the updated profile will be sent to all your contacts.alert message
-
- Your profile, contacts and delivered messages are stored on your device.
- 您的资料、联系人和发送的消息存储在您的设备上。
- No comment provided by engineer.
- Your random profile您的随机资料
diff --git a/apps/ios/SimpleX Localizations/zh-Hant.xcloc/Localized Contents/zh-Hant.xliff b/apps/ios/SimpleX Localizations/zh-Hant.xcloc/Localized Contents/zh-Hant.xliff
index 8a771369e6..3ea46ee364 100644
--- a/apps/ios/SimpleX Localizations/zh-Hant.xcloc/Localized Contents/zh-Hant.xliff
+++ b/apps/ios/SimpleX Localizations/zh-Hant.xcloc/Localized Contents/zh-Hant.xliff
@@ -3054,8 +3054,8 @@ We will be adding server redundancy to prevent lost messages.
舊的數據庫在遷移過程中沒有被移除,可以刪除。No comment provided by engineer.
-
- The profile is only shared with your contacts.
+
+ Your profile is stored on your device and only shared with your contacts.你的個人檔案只會和你的聯絡人分享。No comment provided by engineer.
diff --git a/apps/ios/bg.lproj/Localizable.strings b/apps/ios/bg.lproj/Localizable.strings
index f241158185..e4bc8f2150 100644
--- a/apps/ios/bg.lproj/Localizable.strings
+++ b/apps/ios/bg.lproj/Localizable.strings
@@ -3777,7 +3777,7 @@ chat item action */
"The old database was not removed during the migration, it can be deleted." = "Старата база данни не бе премахната по време на миграцията, тя може да бъде изтрита.";
/* No comment provided by engineer. */
-"The profile is only shared with your contacts." = "Профилът се споделя само с вашите контакти.";
+"Your profile is stored on your device and only shared with your contacts." = "Профилът се споделя само с вашите контакти.";
/* No comment provided by engineer. */
"The second tick we missed! ✅" = "Втората отметка, която пропуснахме! ✅";
diff --git a/apps/ios/cs.lproj/Localizable.strings b/apps/ios/cs.lproj/Localizable.strings
index 003ac23325..08a94615a3 100644
--- a/apps/ios/cs.lproj/Localizable.strings
+++ b/apps/ios/cs.lproj/Localizable.strings
@@ -822,6 +822,9 @@ set passcode view */
/* No comment provided by engineer. */
"Create new profile in [desktop app](https://simplex.chat/downloads/). 💻" = "Vytvořit nový profil v [desktop app](https://simplex.chat/downloads/). 💻";
+/* No comment provided by engineer. */
+"Create profile" = "Vytvořte si profil";
+
/* server test step */
"Create queue" = "Vytvořit frontu";
@@ -2986,7 +2989,7 @@ chat item action */
"The old database was not removed during the migration, it can be deleted." = "Stará databáze nebyla během přenášení odstraněna, lze ji smazat.";
/* No comment provided by engineer. */
-"The profile is only shared with your contacts." = "Profil je sdílen pouze s vašimi kontakty.";
+"Your profile is stored on your device and only shared with your contacts." = "Profil je sdílen pouze s vašimi kontakty.";
/* No comment provided by engineer. */
"The second tick we missed! ✅" = "Druhé zaškrtnutí jsme přehlédli! ✅";
diff --git a/apps/ios/de.lproj/Localizable.strings b/apps/ios/de.lproj/Localizable.strings
index 0eab764216..8da7835c43 100644
--- a/apps/ios/de.lproj/Localizable.strings
+++ b/apps/ios/de.lproj/Localizable.strings
@@ -5101,7 +5101,7 @@ report reason */
"The old database was not removed during the migration, it can be deleted." = "Die alte Datenbank wurde während der Migration nicht entfernt. Sie kann gelöscht werden.";
/* No comment provided by engineer. */
-"The profile is only shared with your contacts." = "Das Profil wird nur mit Ihren Kontakten geteilt.";
+"Your profile is stored on your device and only shared with your contacts." = "Das Profil wird nur mit Ihren Kontakten geteilt.";
/* No comment provided by engineer. */
"The same conditions will apply to operator **%@**." = "Dieselben Nutzungsbedingungen gelten auch für den Betreiber **%@**.";
diff --git a/apps/ios/es.lproj/Localizable.strings b/apps/ios/es.lproj/Localizable.strings
index e797b73b98..28ba0f0642 100644
--- a/apps/ios/es.lproj/Localizable.strings
+++ b/apps/ios/es.lproj/Localizable.strings
@@ -5101,7 +5101,7 @@ report reason */
"The old database was not removed during the migration, it can be deleted." = "La base de datos antigua no se eliminó durante la migración, puede eliminarse.";
/* No comment provided by engineer. */
-"The profile is only shared with your contacts." = "El perfil sólo se comparte con tus contactos.";
+"Your profile is stored on your device and only shared with your contacts." = "El perfil sólo se comparte con tus contactos.";
/* No comment provided by engineer. */
"The same conditions will apply to operator **%@**." = "Las mismas condiciones se aplicarán al operador **%@**.";
diff --git a/apps/ios/fi.lproj/Localizable.strings b/apps/ios/fi.lproj/Localizable.strings
index c4031adf9a..4891c7fb26 100644
--- a/apps/ios/fi.lproj/Localizable.strings
+++ b/apps/ios/fi.lproj/Localizable.strings
@@ -768,6 +768,9 @@ set passcode view */
/* No comment provided by engineer. */
"Create new profile in [desktop app](https://simplex.chat/downloads/). 💻" = "Luo uusi profiili [työpöytäsovelluksessa](https://simplex.chat/downloads/). 💻";
+/* No comment provided by engineer. */
+"Create profile" = "Luo profiilisi";
+
/* server test step */
"Create queue" = "Luo jono";
@@ -2908,7 +2911,7 @@ chat item action */
"The old database was not removed during the migration, it can be deleted." = "Vanhaa tietokantaa ei poistettu siirron aikana, se voidaan kuitenkin poistaa.";
/* No comment provided by engineer. */
-"The profile is only shared with your contacts." = "Profiili jaetaan vain kontaktiesi kanssa.";
+"Your profile is stored on your device and only shared with your contacts." = "Profiili jaetaan vain kontaktiesi kanssa.";
/* No comment provided by engineer. */
"The second tick we missed! ✅" = "Toinen kuittaus, joka uupui! ✅";
diff --git a/apps/ios/fr.lproj/Localizable.strings b/apps/ios/fr.lproj/Localizable.strings
index 1c16f8847d..4dd75039dc 100644
--- a/apps/ios/fr.lproj/Localizable.strings
+++ b/apps/ios/fr.lproj/Localizable.strings
@@ -4884,7 +4884,7 @@ chat item action */
"The old database was not removed during the migration, it can be deleted." = "L'ancienne base de données n'a pas été supprimée lors de la migration, elle peut être supprimée.";
/* No comment provided by engineer. */
-"The profile is only shared with your contacts." = "Le profil n'est partagé qu'avec vos contacts.";
+"Your profile is stored on your device and only shared with your contacts." = "Le profil n'est partagé qu'avec vos contacts.";
/* No comment provided by engineer. */
"The same conditions will apply to operator **%@**." = "Les mêmes conditions s'appliquent à l'opérateur **%@**.";
diff --git a/apps/ios/hu.lproj/Localizable.strings b/apps/ios/hu.lproj/Localizable.strings
index c190cccaba..5a9b6b4e38 100644
--- a/apps/ios/hu.lproj/Localizable.strings
+++ b/apps/ios/hu.lproj/Localizable.strings
@@ -5101,7 +5101,7 @@ report reason */
"The old database was not removed during the migration, it can be deleted." = "A régi adatbázis nem lett eltávolítva az átköltöztetéskor, ezért törölhető.";
/* No comment provided by engineer. */
-"The profile is only shared with your contacts." = "A profilja csak a partnereivel van megosztva.";
+"Your profile is stored on your device and only shared with your contacts." = "A profilja csak a partnereivel van megosztva.";
/* No comment provided by engineer. */
"The same conditions will apply to operator **%@**." = "Ugyanezek a feltételek lesznek elfogadva a következő üzemeltető számára is: **%@**.";
diff --git a/apps/ios/it.lproj/Localizable.strings b/apps/ios/it.lproj/Localizable.strings
index f67a492cc4..b914a06079 100644
--- a/apps/ios/it.lproj/Localizable.strings
+++ b/apps/ios/it.lproj/Localizable.strings
@@ -5101,7 +5101,7 @@ report reason */
"The old database was not removed during the migration, it can be deleted." = "Il database vecchio non è stato rimosso durante la migrazione, può essere eliminato.";
/* No comment provided by engineer. */
-"The profile is only shared with your contacts." = "Il profilo è condiviso solo con i tuoi contatti.";
+"Your profile is stored on your device and only shared with your contacts." = "Il profilo è condiviso solo con i tuoi contatti.";
/* No comment provided by engineer. */
"The same conditions will apply to operator **%@**." = "Le stesse condizioni si applicheranno all'operatore **%@**.";
diff --git a/apps/ios/ja.lproj/Localizable.strings b/apps/ios/ja.lproj/Localizable.strings
index 9d0cccf591..d214f88e1c 100644
--- a/apps/ios/ja.lproj/Localizable.strings
+++ b/apps/ios/ja.lproj/Localizable.strings
@@ -957,6 +957,9 @@ set passcode view */
/* No comment provided by engineer. */
"Create new profile in [desktop app](https://simplex.chat/downloads/). 💻" = "[デスクトップアプリ](https://simplex.chat/downloads/)で新しいプロファイルを作成します。 💻";
+/* No comment provided by engineer. */
+"Create profile" = "プロフィールを作成する";
+
/* server test step */
"Create queue" = "キューの作成";
@@ -3109,7 +3112,7 @@ chat item action */
"The old database was not removed during the migration, it can be deleted." = "古いデータベースは移行時に削除されなかったので、削除することができます。";
/* No comment provided by engineer. */
-"The profile is only shared with your contacts." = "プロフィールは連絡先にしか共有されません。";
+"Your profile is stored on your device and only shared with your contacts." = "プロフィールは連絡先にしか共有されません。";
/* No comment provided by engineer. */
"The second tick we missed! ✅" = "長らくお待たせしました! ✅";
diff --git a/apps/ios/nl.lproj/Localizable.strings b/apps/ios/nl.lproj/Localizable.strings
index d2cfcba0de..232de56641 100644
--- a/apps/ios/nl.lproj/Localizable.strings
+++ b/apps/ios/nl.lproj/Localizable.strings
@@ -5092,7 +5092,7 @@ report reason */
"The old database was not removed during the migration, it can be deleted." = "De oude database is niet verwijderd tijdens de migratie, deze kan worden verwijderd.";
/* No comment provided by engineer. */
-"The profile is only shared with your contacts." = "Het profiel wordt alleen gedeeld met uw contacten.";
+"Your profile is stored on your device and only shared with your contacts." = "Het profiel wordt alleen gedeeld met uw contacten.";
/* No comment provided by engineer. */
"The same conditions will apply to operator **%@**." = "Dezelfde voorwaarden gelden voor operator **%@**.";
diff --git a/apps/ios/pl.lproj/Localizable.strings b/apps/ios/pl.lproj/Localizable.strings
index 867f3beff4..31a9b87662 100644
--- a/apps/ios/pl.lproj/Localizable.strings
+++ b/apps/ios/pl.lproj/Localizable.strings
@@ -4557,7 +4557,7 @@ chat item action */
"The old database was not removed during the migration, it can be deleted." = "Stara baza danych nie została usunięta podczas migracji, można ją usunąć.";
/* No comment provided by engineer. */
-"The profile is only shared with your contacts." = "Profil jest udostępniany tylko Twoim kontaktom.";
+"Your profile is stored on your device and only shared with your contacts." = "Profil jest udostępniany tylko Twoim kontaktom.";
/* No comment provided by engineer. */
"The second tick we missed! ✅" = "Drugi tik, który przegapiliśmy! ✅";
diff --git a/apps/ios/ru.lproj/Localizable.strings b/apps/ios/ru.lproj/Localizable.strings
index b819d013b9..cb837836ff 100644
--- a/apps/ios/ru.lproj/Localizable.strings
+++ b/apps/ios/ru.lproj/Localizable.strings
@@ -4957,7 +4957,7 @@ report reason */
"The old database was not removed during the migration, it can be deleted." = "Предыдущая версия данных чата не удалена при перемещении, её можно удалить.";
/* No comment provided by engineer. */
-"The profile is only shared with your contacts." = "Профиль отправляется только Вашим контактам.";
+"Your profile is stored on your device and only shared with your contacts." = "Ваш профиль храниться на Вашем устройстве и отправляется только контактам.";
/* No comment provided by engineer. */
"The same conditions will apply to operator **%@**." = "Те же самые условия будут приняты для оператора **%@**.";
diff --git a/apps/ios/th.lproj/Localizable.strings b/apps/ios/th.lproj/Localizable.strings
index 6b3381922a..57c0466eb9 100644
--- a/apps/ios/th.lproj/Localizable.strings
+++ b/apps/ios/th.lproj/Localizable.strings
@@ -2830,7 +2830,7 @@ chat item action */
"The old database was not removed during the migration, it can be deleted." = "ฐานข้อมูลเก่าไม่ได้ถูกลบในระหว่างการย้ายข้อมูล แต่สามารถลบได้";
/* No comment provided by engineer. */
-"The profile is only shared with your contacts." = "โปรไฟล์นี้แชร์กับผู้ติดต่อของคุณเท่านั้น";
+"Your profile is stored on your device and only shared with your contacts." = "โปรไฟล์นี้แชร์กับผู้ติดต่อของคุณเท่านั้น";
/* No comment provided by engineer. */
"The second tick we missed! ✅" = "ขีดที่สองที่เราพลาด! ✅";
diff --git a/apps/ios/tr.lproj/Localizable.strings b/apps/ios/tr.lproj/Localizable.strings
index ab0703333e..e3bb11d1cc 100644
--- a/apps/ios/tr.lproj/Localizable.strings
+++ b/apps/ios/tr.lproj/Localizable.strings
@@ -4602,7 +4602,7 @@ chat item action */
"The old database was not removed during the migration, it can be deleted." = "Eski veritabanı geçiş sırasında kaldırılmadı, silinebilir.";
/* No comment provided by engineer. */
-"The profile is only shared with your contacts." = "Profil sadece kişilerinle paylaşılacak.";
+"Your profile is stored on your device and only shared with your contacts." = "Profil sadece kişilerinle paylaşılacak.";
/* No comment provided by engineer. */
"The second tick we missed! ✅" = "Özlediğimiz ikinci tik! ✅";
diff --git a/apps/ios/uk.lproj/Localizable.strings b/apps/ios/uk.lproj/Localizable.strings
index 8e2b514ed4..734b8dda82 100644
--- a/apps/ios/uk.lproj/Localizable.strings
+++ b/apps/ios/uk.lproj/Localizable.strings
@@ -4722,7 +4722,7 @@ chat item action */
"The old database was not removed during the migration, it can be deleted." = "Стара база даних не була видалена під час міграції, її можна видалити.";
/* No comment provided by engineer. */
-"The profile is only shared with your contacts." = "Профіль доступний лише вашим контактам.";
+"Your profile is stored on your device and only shared with your contacts." = "Профіль доступний лише вашим контактам.";
/* No comment provided by engineer. */
"The same conditions will apply to operator **%@**." = "Такі ж умови діятимуть і для оператора **%@**.";
diff --git a/apps/ios/zh-Hans.lproj/Localizable.strings b/apps/ios/zh-Hans.lproj/Localizable.strings
index 6ceeeb22d0..e3f9669d9f 100644
--- a/apps/ios/zh-Hans.lproj/Localizable.strings
+++ b/apps/ios/zh-Hans.lproj/Localizable.strings
@@ -4923,7 +4923,7 @@ chat item action */
"The old database was not removed during the migration, it can be deleted." = "旧数据库在迁移过程中没有被移除,可以删除。";
/* No comment provided by engineer. */
-"The profile is only shared with your contacts." = "该资料仅与您的联系人共享。";
+"Your profile is stored on your device and only shared with your contacts." = "该资料仅与您的联系人共享。";
/* No comment provided by engineer. */
"The second tick we missed! ✅" = "我们错过的第二个\"√\"!✅";