diff --git a/apps/ios/Shared/Views/Onboarding/WhatsNewView.swift b/apps/ios/Shared/Views/Onboarding/WhatsNewView.swift
index 5327a5e796..0e52e5f695 100644
--- a/apps/ios/Shared/Views/Onboarding/WhatsNewView.swift
+++ b/apps/ios/Shared/Views/Onboarding/WhatsNewView.swift
@@ -610,6 +610,27 @@ private let versionDescriptions: [VersionDescription] = [
)),
]
),
+ VersionDescription(
+ version: "v6.4.1",
+ post: URL(string: "https://simplex.chat/blog/20250729-simplex-chat-v6-4-1-welcome-contacts-protect-groups-app-security.html"),
+ features: [
+ .feature(Description(
+ icon: "hand.wave",
+ title: "Welcome your contacts 👋",
+ description: "Set profile bio and welcome message."
+ )),
+ .feature(Description(
+ icon: "stopwatch",
+ title: "Keep your chats clean",
+ description: "Enable disappearing messages by default."
+ )),
+ .view(FeatureView(
+ icon: nil,
+ title: "Short SimpleX address",
+ view: { CreateUpdateAddressShortLink() }
+ ))
+ ]
+ ),
]
private let lastVersion = versionDescriptions.last!.version
@@ -641,6 +662,35 @@ fileprivate struct NewOperatorsView: View {
}
}
+fileprivate struct CreateUpdateAddressShortLink: View {
+ @EnvironmentObject var theme: AppTheme
+
+ var body: some View {
+ VStack(alignment: .leading, spacing: 4) {
+ HStack(alignment: .center, spacing: 4) {
+ Image(systemName: "link")
+ .symbolRenderingMode(.monochrome)
+ .foregroundColor(theme.colors.secondary)
+ .frame(minWidth: 30, alignment: .center)
+ Text("Short SimpleX address").font(.title3).bold()
+ }
+ Group {
+ if let addr = ChatModel.shared.userAddress {
+ if addr.shortLinkDataSet { // update condition
+ Button("Share your address") { print("share address") }
+ } else {
+ Button("Update your address") { print("update address") }
+ }
+ } else {
+ Button("Create your address") { print("create address") }
+ }
+ }
+ .multilineTextAlignment(.leading)
+ .lineLimit(10)
+ }
+ }
+}
+
private enum WhatsNewViewSheet: Identifiable {
case showConditions
diff --git a/apps/ios/Shared/Views/UserSettings/UserAddressView.swift b/apps/ios/Shared/Views/UserSettings/UserAddressView.swift
index bed77cdab1..3087f1f16a 100644
--- a/apps/ios/Shared/Views/UserSettings/UserAddressView.swift
+++ b/apps/ios/Shared/Views/UserSettings/UserAddressView.swift
@@ -216,17 +216,23 @@ struct UserAddressView: View {
private func addShortLinkButton() -> some View {
Button {
- showAddShortLinkAlert()
+ showAddShortLinkAlert(
+ title: NSLocalizedString("Add short link", comment: "alert title"),
+ button: NSLocalizedString("Add link", comment: "alert button")
+ )
} label: {
settingsRow("plus", color: theme.colors.primary) {
- Text("Add short link")
+ Text("Add link")
}
}
}
private func addProfileToShortLinkButton() -> some View {
Button {
- showAddShortLinkAlert()
+ showAddShortLinkAlert(
+ title: NSLocalizedString("Share profile with address", comment: "alert title"),
+ button: NSLocalizedString("Share profile", comment: "alert button")
+ )
} label: {
settingsRow("plus", color: theme.colors.primary) {
Text("Share profile with address")
@@ -234,25 +240,41 @@ struct UserAddressView: View {
}
}
- private func showAddShortLinkAlert() {
+ private func showAddShortLinkAlert(title: String, button: String) {
showAlert(
- title: NSLocalizedString("Share profile with address", comment: "alert title"),
- message: NSLocalizedString("Profile will be shared with the address.", comment: "alert message"),
- buttonTitle: NSLocalizedString("Share profile", comment: "alert button"),
+ title: title,
+ message: NSLocalizedString("Your profile will be shared with the address.", comment: "alert message"),
+ buttonTitle: button,
buttonAction: { addShortLink() },
cancelButton: true
)
}
- private func addShortLink() {
+ private func showUpdateAddressShareAlert(title: String, button: String, shareLink: @escaping () -> Void) {
+ showAlert(
+ title,
+ message: NSLocalizedString("Your profile will be shared with the address.", comment: "alert message"),
+ actions: {[
+ UIAlertAction(
+ title: button,
+ style: .default,
+ handler: { _ in addShortLink(onCompletion: shareLink) }
+ ),
+ UIAlertAction(title: NSLocalizedString("Share full link", comment: "alert button"), style: .default) { _ in shareLink() }
+ ]}
+ )
+ }
+
+ private func addShortLink(onCompletion: (() -> Void)? = nil) {
progressIndicator = true
Task {
do {
let userAddress = try await apiAddMyAddressShortLink()
await MainActor.run {
chatModel.userAddress = userAddress
+ progressIndicator = false
+ onCompletion?()
}
- await MainActor.run { progressIndicator = false }
} catch let error {
logger.error("apiAddMyAddressShortLink: \(responseError(error))")
let a = getErrorAlert(error, "Error adding short link")
@@ -284,8 +306,25 @@ struct UserAddressView: View {
}
private func shareQRCodeButton(_ userAddress: UserContactLink) -> some View {
- Button {
+ let shareLink = {
showShareSheet(items: [simplexChatLink(userAddress.connLinkContact.simplexChatUri(short: showShortLink))])
+ }
+ return Button {
+ if userAddress.connLinkContact.connShortLink == nil {
+ showUpdateAddressShareAlert(
+ title: NSLocalizedString("Add short link", comment: "alert title"),
+ button: NSLocalizedString("Add link", comment: "alert button"),
+ shareLink: shareLink
+ )
+ } else if userAddress.shortLinkDataSet { // TODO update condition
+ shareLink()
+ } else {
+ showUpdateAddressShareAlert(
+ title: NSLocalizedString("Share profile with address", comment: "alert title"),
+ button: NSLocalizedString("Share profile", comment: "alert button"),
+ shareLink: shareLink
+ )
+ }
} label: {
settingsRow("square.and.arrow.up", color: theme.colors.secondary) {
Text("Share address")
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 5809d734af..cbea08cb9e 100644
--- a/apps/ios/SimpleX Localizations/bg.xcloc/Localized Contents/bg.xliff
+++ b/apps/ios/SimpleX Localizations/bg.xcloc/Localized Contents/bg.xliff
@@ -626,6 +626,10 @@ swipe action
Добави приятелиNo comment provided by engineer.
+
+ Add link
+ alert button
+ Add listNo comment provided by engineer.
@@ -651,7 +655,7 @@ swipe action
Add short link
- No comment provided by engineer.
+ alert titleAdd team members
@@ -2098,6 +2102,10 @@ This is your own one-time link!
Създай опашкаserver test step
+
+ Create your address
+ No comment provided by engineer.
+ Create your profileСъздай своя профил
@@ -2863,6 +2871,10 @@ chat item action
Разреши достъпа до камератаNo comment provided by engineer.
+
+ Enable disappearing messages by default.
+ No comment provided by engineer.
+ Enable for allАктивиране за всички
@@ -4407,6 +4419,10 @@ This is your link for group %@!
Запази неизползваната покана за връзка?alert title
+
+ Keep your chats clean
+ No comment provided by engineer.
+ Keep your connectionsЗапазете връзките си
@@ -5804,10 +5820,6 @@ Error: %@
Актуализацията на профила ще бъде изпратена до вашите контакти.alert message
-
- Profile will be shared with the address.
- alert message
- Prohibit audio/video calls.Забрани аудио/видео разговорите.
@@ -6910,6 +6922,10 @@ chat item action
Задай парола за експортиранеNo comment provided by engineer.
+
+ Set profile bio and welcome message.
+ No comment provided by engineer.
+ Set the message shown to new members!Задай съобщението, показано на новите членове!
@@ -6971,6 +6987,10 @@ chat item action
Share from other apps.No comment provided by engineer.
+
+ Share full link
+ alert button
+ Share group profile via linkNo comment provided by engineer.
@@ -7002,6 +7022,14 @@ chat item action
Сподели с контактитеNo comment provided by engineer.
+
+ Share your address
+ No comment provided by engineer.
+
+
+ Short SimpleX address
+ No comment provided by engineer.
+ Short descriptionNo comment provided by engineer.
@@ -7989,6 +8017,10 @@ To connect, please ask your contact to create another connection link and check
Update settings?No comment provided by engineer.
+
+ Update your address
+ No comment provided by engineer.
+ Updated conditionsNo comment provided by engineer.
@@ -8317,6 +8349,10 @@ To connect, please ask your contact to create another connection link and check
Съобщението при посрещане е твърде дългоNo comment provided by engineer.
+
+ Welcome your contacts 👋
+ No comment provided by engineer.
+ What's newКакво е новото
@@ -8828,6 +8864,10 @@ 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 will be shared with the address.
+ alert message
+ Your random profileВашият автоматично генериран профил
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 668d0e2565..b545a44cad 100644
--- a/apps/ios/SimpleX Localizations/cs.xcloc/Localized Contents/cs.xliff
+++ b/apps/ios/SimpleX Localizations/cs.xcloc/Localized Contents/cs.xliff
@@ -612,6 +612,10 @@ swipe action
Add friendsNo comment provided by engineer.
+
+ Add link
+ alert button
+ Add listNo comment provided by engineer.
@@ -637,7 +641,7 @@ swipe action
Add short link
- No comment provided by engineer.
+ alert titleAdd team members
@@ -2001,6 +2005,10 @@ This is your own one-time link!
Vytvořit frontuserver test step
+
+ Create your address
+ No comment provided by engineer.
+ Create your profileVytvořte si profil
@@ -2748,6 +2756,10 @@ chat item action
Enable camera accessNo comment provided by engineer.
+
+ Enable disappearing messages by default.
+ No comment provided by engineer.
+ Enable for allPovolit pro všechny
@@ -4241,6 +4253,10 @@ This is your link for group %@!
Keep unused invitation?alert title
+
+ Keep your chats clean
+ No comment provided by engineer.
+ Keep your connectionsZachovat vaše připojení
@@ -5597,10 +5613,6 @@ Error: %@
Aktualizace profilu bude zaslána vašim kontaktům.alert message
-
- Profile will be shared with the address.
- alert message
- Prohibit audio/video calls.Zákaz audio/video hovorů.
@@ -6683,6 +6695,10 @@ chat item action
Nastavení přístupové fráze pro exportNo comment provided by engineer.
+
+ Set profile bio and welcome message.
+ No comment provided by engineer.
+ Set the message shown to new members!Nastavte zprávu zobrazenou novým členům!
@@ -6743,6 +6759,10 @@ chat item action
Share from other apps.No comment provided by engineer.
+
+ Share full link
+ alert button
+ Share group profile via linkNo comment provided by engineer.
@@ -6773,6 +6793,14 @@ chat item action
Sdílet s kontaktyNo comment provided by engineer.
+
+ Share your address
+ No comment provided by engineer.
+
+
+ Short SimpleX address
+ No comment provided by engineer.
+ Short descriptionNo comment provided by engineer.
@@ -7733,6 +7761,10 @@ Chcete-li se připojit, požádejte svůj kontakt o vytvoření dalšího odkazu
Update settings?No comment provided by engineer.
+
+ Update your address
+ No comment provided by engineer.
+ Updated conditionsNo comment provided by engineer.
@@ -8045,6 +8077,10 @@ Chcete-li se připojit, požádejte svůj kontakt o vytvoření dalšího odkazu
Welcome message is too longNo comment provided by engineer.
+
+ Welcome your contacts 👋
+ No comment provided by engineer.
+ What's newCo je nového
@@ -8535,6 +8571,10 @@ 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 will be shared with the address.
+ alert message
+ 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 bd52a3e0bb..82e1a4f296 100644
--- a/apps/ios/SimpleX Localizations/de.xcloc/Localized Contents/de.xliff
+++ b/apps/ios/SimpleX Localizations/de.xcloc/Localized Contents/de.xliff
@@ -642,6 +642,10 @@ swipe action
Freunde aufnehmenNo comment provided by engineer.
+
+ Add link
+ alert button
+ Add listListe hinzufügen
@@ -670,7 +674,7 @@ swipe action
Add short linkVerkürzten Link hinzufügen
- No comment provided by engineer.
+ alert titleAdd team members
@@ -2205,6 +2209,10 @@ Das ist Ihr eigener Einmal-Link!
Erzeuge Warteschlangeserver test step
+
+ Create your address
+ No comment provided by engineer.
+ Create your profileErstellen Sie Ihr Profil
@@ -3015,6 +3023,10 @@ chat item action
Kamera-Zugriff aktivierenNo comment provided by engineer.
+
+ Enable disappearing messages by default.
+ No comment provided by engineer.
+ Enable for allFür Alle aktivieren
@@ -4647,6 +4659,10 @@ Das ist Ihr Link für die Gruppe %@!
Nicht genutzte Einladung behalten?alert title
+
+ Keep your chats clean
+ No comment provided by engineer.
+ Keep your connectionsIhre Verbindungen beibehalten
@@ -6158,11 +6174,6 @@ Fehler: %@
Profil-Aktualisierung wird an Ihre Kontakte gesendet.alert message
-
- Profile will be shared with the address.
- Das Profil wird über den Adress-Link geteilt.
- alert message
- Prohibit audio/video calls.Audio-/Video-Anrufe nicht erlauben.
@@ -7358,6 +7369,10 @@ chat item action
Passwort für den Export festlegenNo comment provided by engineer.
+
+ Set profile bio and welcome message.
+ No comment provided by engineer.
+ Set the message shown to new members!Definieren Sie eine Begrüßungsmeldung, die neuen Mitgliedern angezeigt wird!
@@ -7424,6 +7439,10 @@ chat item action
Aus anderen Apps heraus teilen.No comment provided by engineer.
+
+ Share full link
+ alert button
+ Share group profile via linkGruppenprofil über einen Link teilen
@@ -7459,6 +7478,14 @@ chat item action
Mit Kontakten teilenNo comment provided by engineer.
+
+ Share your address
+ No comment provided by engineer.
+
+
+ Short SimpleX address
+ No comment provided by engineer.
+ Short descriptionKurze Beschreibung
@@ -8517,6 +8544,10 @@ Bitten Sie Ihren Kontakt darum einen weiteren Verbindungs-Link zu erzeugen, um s
Einstellungen aktualisieren?No comment provided by engineer.
+
+ Update your address
+ No comment provided by engineer.
+ Updated conditionsAktualisierte Nutzungsbedingungen
@@ -8866,6 +8897,10 @@ Bitten Sie Ihren Kontakt darum einen weiteren Verbindungs-Link zu erzeugen, um s
Die Begrüßungsmeldung ist zu langNo comment provided by engineer.
+
+ Welcome your contacts 👋
+ No comment provided by engineer.
+ What's newWas ist neu
@@ -9405,6 +9440,11 @@ Verbindungsanfrage wiederholen?
Ihr Profil wurde geändert. Wenn Sie es speichern, wird das aktualisierte Profil an alle Ihre Kontakte gesendet.alert message
+
+ Your profile will be shared with the address.
+ Das Profil wird über den Adress-Link geteilt.
+ alert message
+ Your random profileIhr Zufallsprofil
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 3841a240af..0aadbb33a7 100644
--- a/apps/ios/SimpleX Localizations/en.xcloc/Localized Contents/en.xliff
+++ b/apps/ios/SimpleX Localizations/en.xcloc/Localized Contents/en.xliff
@@ -642,6 +642,11 @@ swipe action
Add friendsNo comment provided by engineer.
+
+ Add link
+ Add link
+ alert button
+ Add listAdd list
@@ -670,7 +675,7 @@ swipe action
Add short linkAdd short link
- No comment provided by engineer.
+ alert titleAdd team members
@@ -2205,6 +2210,11 @@ This is your own one-time link!
Create queueserver test step
+
+ Create your address
+ Create your address
+ No comment provided by engineer.
+ Create your profileCreate your profile
@@ -3015,6 +3025,11 @@ chat item action
Enable camera accessNo comment provided by engineer.
+
+ Enable disappearing messages by default.
+ Enable disappearing messages by default.
+ No comment provided by engineer.
+ Enable for allEnable for all
@@ -4647,6 +4662,11 @@ This is your link for group %@!
Keep unused invitation?alert title
+
+ Keep your chats clean
+ Keep your chats clean
+ No comment provided by engineer.
+ Keep your connectionsKeep your connections
@@ -6158,11 +6178,6 @@ Error: %@
Profile update will be sent to your contacts.alert message
-
- Profile will be shared with the address.
- Profile will be shared with the address.
- alert message
- Prohibit audio/video calls.Prohibit audio/video calls.
@@ -7358,6 +7373,11 @@ chat item action
Set passphrase to exportNo comment provided by engineer.
+
+ Set profile bio and welcome message.
+ Set profile bio and welcome message.
+ No comment provided by engineer.
+ Set the message shown to new members!Set the message shown to new members!
@@ -7424,6 +7444,11 @@ chat item action
Share from other apps.No comment provided by engineer.
+
+ Share full link
+ Share full link
+ alert button
+ Share group profile via linkShare group profile via link
@@ -7459,6 +7484,16 @@ chat item action
Share with contactsNo comment provided by engineer.
+
+ Share your address
+ Share your address
+ No comment provided by engineer.
+
+
+ Short SimpleX address
+ Short SimpleX address
+ No comment provided by engineer.
+ Short descriptionShort description
@@ -8518,6 +8553,11 @@ To connect, please ask your contact to create another connection link and check
Update settings?No comment provided by engineer.
+
+ Update your address
+ Update your address
+ No comment provided by engineer.
+ Updated conditionsUpdated conditions
@@ -8868,6 +8908,11 @@ To connect, please ask your contact to create another connection link and check
Welcome message is too longNo comment provided by engineer.
+
+ Welcome your contacts 👋
+ Welcome your contacts 👋
+ No comment provided by engineer.
+ What's newWhat's new
@@ -9407,6 +9452,11 @@ 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 will be shared with the address.
+ Your profile will be shared with the address.
+ alert message
+ 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 3136b24be2..37ffdc3def 100644
--- a/apps/ios/SimpleX Localizations/es.xcloc/Localized Contents/es.xliff
+++ b/apps/ios/SimpleX Localizations/es.xcloc/Localized Contents/es.xliff
@@ -642,6 +642,10 @@ swipe action
Añadir amigosNo comment provided by engineer.
+
+ Add link
+ alert button
+ Add listAñadir lista
@@ -670,7 +674,7 @@ swipe action
Add short linkAñadir enlace corto
- No comment provided by engineer.
+ alert titleAdd team members
@@ -2205,6 +2209,10 @@ This is your own one-time link!
Crear colaserver test step
+
+ Create your address
+ No comment provided by engineer.
+ Create your profileCrea tu perfil
@@ -3015,6 +3023,10 @@ chat item action
Permitir acceso a la cámaraNo comment provided by engineer.
+
+ Enable disappearing messages by default.
+ No comment provided by engineer.
+ Enable for allActivar para todos
@@ -4647,6 +4659,10 @@ This is your link for group %@!
¿Guardar enlace no usado?alert title
+
+ Keep your chats clean
+ No comment provided by engineer.
+ Keep your connectionsConserva tus conexiones
@@ -6158,11 +6174,6 @@ Error: %@
La actualización del perfil se enviará a tus contactos.alert message
-
- Profile will be shared with the address.
- El perfil será compartido mediante la dirección de contacto.
- alert message
- Prohibit audio/video calls.No se permiten llamadas y videollamadas.
@@ -7358,6 +7369,10 @@ chat item action
Escribe la contraseña para exportarNo comment provided by engineer.
+
+ Set profile bio and welcome message.
+ No comment provided by engineer.
+ Set the message shown to new members!¡Guarda un mensaje para ser mostrado a los miembros nuevos!
@@ -7424,6 +7439,10 @@ chat item action
Comparte desde otras aplicaciones.No comment provided by engineer.
+
+ Share full link
+ alert button
+ Share group profile via linkCompartir perfil de grupo mediante enlace
@@ -7459,6 +7478,14 @@ chat item action
Compartir con contactosNo comment provided by engineer.
+
+ Share your address
+ No comment provided by engineer.
+
+
+ Short SimpleX address
+ No comment provided by engineer.
+ Short descriptionDescripción corta
@@ -8517,6 +8544,10 @@ Para conectarte pide a tu contacto que cree otro enlace y comprueba la conexión
¿Actualizar configuración?No comment provided by engineer.
+
+ Update your address
+ No comment provided by engineer.
+ Updated conditionsCondiciones actualizadas
@@ -8866,6 +8897,10 @@ Para conectarte pide a tu contacto que cree otro enlace y comprueba la conexión
Mensaje de bienvenida demasiado largoNo comment provided by engineer.
+
+ Welcome your contacts 👋
+ No comment provided by engineer.
+ What's newNovedades
@@ -9405,6 +9440,11 @@ Repeat connection request?
Tu perfil ha sido modificado. Si lo guardas la actualización será enviada a todos tus contactos.alert message
+
+ Your profile will be shared with the address.
+ El perfil será compartido mediante la dirección de contacto.
+ alert message
+ 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 1b17cc7a1b..121688a70e 100644
--- a/apps/ios/SimpleX Localizations/fi.xcloc/Localized Contents/fi.xliff
+++ b/apps/ios/SimpleX Localizations/fi.xcloc/Localized Contents/fi.xliff
@@ -593,6 +593,10 @@ swipe action
Add friendsNo comment provided by engineer.
+
+ Add link
+ alert button
+ Add listNo comment provided by engineer.
@@ -618,7 +622,7 @@ swipe action
Add short link
- No comment provided by engineer.
+ alert titleAdd team members
@@ -1980,6 +1984,10 @@ This is your own one-time link!
Luo jonoserver test step
+
+ Create your address
+ No comment provided by engineer.
+ Create your profileLuo profiilisi
@@ -2727,6 +2735,10 @@ chat item action
Enable camera accessNo comment provided by engineer.
+
+ Enable disappearing messages by default.
+ No comment provided by engineer.
+ Enable for allSalli kaikille
@@ -4217,6 +4229,10 @@ This is your link for group %@!
Keep unused invitation?alert title
+
+ Keep your chats clean
+ No comment provided by engineer.
+ Keep your connectionsPidä kontaktisi
@@ -5571,10 +5587,6 @@ Error: %@
Profiilipäivitys lähetetään kontakteillesi.alert message
-
- Profile will be shared with the address.
- alert message
- Prohibit audio/video calls.Estä ääni- ja videopuhelut.
@@ -6656,6 +6668,10 @@ chat item action
Aseta tunnuslause vientiä vartenNo comment provided by engineer.
+
+ Set profile bio and welcome message.
+ No comment provided by engineer.
+ Set the message shown to new members!Aseta uusille jäsenille näytettävä viesti!
@@ -6716,6 +6732,10 @@ chat item action
Share from other apps.No comment provided by engineer.
+
+ Share full link
+ alert button
+ Share group profile via linkNo comment provided by engineer.
@@ -6746,6 +6766,14 @@ chat item action
Jaa kontaktien kanssaNo comment provided by engineer.
+
+ Share your address
+ No comment provided by engineer.
+
+
+ Short SimpleX address
+ No comment provided by engineer.
+ Short descriptionNo comment provided by engineer.
@@ -7704,6 +7732,10 @@ Jos haluat muodostaa yhteyden, pyydä kontaktiasi luomaan toinen yhteyslinkki ja
Update settings?No comment provided by engineer.
+
+ Update your address
+ No comment provided by engineer.
+ Updated conditionsNo comment provided by engineer.
@@ -8016,6 +8048,10 @@ Jos haluat muodostaa yhteyden, pyydä kontaktiasi luomaan toinen yhteyslinkki ja
Welcome message is too longNo comment provided by engineer.
+
+ Welcome your contacts 👋
+ No comment provided by engineer.
+ What's newUusimmat
@@ -8506,6 +8542,10 @@ 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 will be shared with the address.
+ alert message
+ 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 ea65d7d08a..84f2f765be 100644
--- a/apps/ios/SimpleX Localizations/fr.xcloc/Localized Contents/fr.xliff
+++ b/apps/ios/SimpleX Localizations/fr.xcloc/Localized Contents/fr.xliff
@@ -638,6 +638,10 @@ swipe action
Ajouter des amisNo comment provided by engineer.
+
+ Add link
+ alert button
+ Add listAjouter une liste
@@ -664,7 +668,7 @@ swipe action
Add short link
- No comment provided by engineer.
+ alert titleAdd team members
@@ -2188,6 +2192,10 @@ Il s'agit de votre propre lien unique !
Créer une file d'attenteserver test step
+
+ Create your address
+ No comment provided by engineer.
+ Create your profileCréez votre profil
@@ -2995,6 +3003,10 @@ chat item action
Autoriser l'accès à la caméraNo comment provided by engineer.
+
+ Enable disappearing messages by default.
+ No comment provided by engineer.
+ Enable for allActiver pour tous
@@ -4607,6 +4619,10 @@ Voici votre lien pour le groupe %@ !
Conserver l'invitation inutilisée ?alert title
+
+ Keep your chats clean
+ No comment provided by engineer.
+ Keep your connectionsConserver vos connexions
@@ -6072,10 +6088,6 @@ Erreur : %@
La mise à jour du profil sera envoyée à vos contacts.alert message
-
- Profile will be shared with the address.
- alert message
- Prohibit audio/video calls.Interdire les appels audio/vidéo.
@@ -7238,6 +7250,10 @@ chat item action
Définir la phrase secrète pour l'exportNo comment provided by engineer.
+
+ Set profile bio and welcome message.
+ No comment provided by engineer.
+ Set the message shown to new members!Choisissez un message à l'attention des nouveaux membres !
@@ -7304,6 +7320,10 @@ chat item action
Partager depuis d'autres applications.No comment provided by engineer.
+
+ Share full link
+ alert button
+ Share group profile via linkNo comment provided by engineer.
@@ -7337,6 +7357,14 @@ chat item action
Partager avec vos contactsNo comment provided by engineer.
+
+ Share your address
+ No comment provided by engineer.
+
+
+ Short SimpleX address
+ No comment provided by engineer.
+ Short descriptionNo comment provided by engineer.
@@ -8378,6 +8406,10 @@ Pour vous connecter, veuillez demander à votre contact de créer un autre lien
Mettre à jour les paramètres ?No comment provided by engineer.
+
+ Update your address
+ No comment provided by engineer.
+ Updated conditionsNo comment provided by engineer.
@@ -8723,6 +8755,10 @@ Pour vous connecter, veuillez demander à votre contact de créer un autre lien
Le message de bienvenue est trop longNo comment provided by engineer.
+
+ Welcome your contacts 👋
+ No comment provided by engineer.
+ What's newQuoi de neuf ?
@@ -9255,6 +9291,10 @@ 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 will be shared with the address.
+ alert message
+ Your random profileVotre profil aléatoire
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 0de11a6a4e..d815f35b4e 100644
--- a/apps/ios/SimpleX Localizations/hu.xcloc/Localized Contents/hu.xliff
+++ b/apps/ios/SimpleX Localizations/hu.xcloc/Localized Contents/hu.xliff
@@ -642,6 +642,10 @@ swipe action
Barátok hozzáadásaNo comment provided by engineer.
+
+ Add link
+ alert button
+ Add listLista hozzáadása
@@ -670,7 +674,7 @@ swipe action
Add short linkRövid hivatkozás hozzáadása
- No comment provided by engineer.
+ alert titleAdd team members
@@ -2205,6 +2209,10 @@ Ez a saját egyszer használható meghívója!
Sorba állítás létrehozásaserver test step
+
+ Create your address
+ No comment provided by engineer.
+ Create your profileProfil létrehozása
@@ -3015,6 +3023,10 @@ chat item action
Kamera-hozzáférés engedélyezéseNo comment provided by engineer.
+
+ Enable disappearing messages by default.
+ No comment provided by engineer.
+ Enable for allEngedélyezés az összes tag számára
@@ -4647,6 +4659,10 @@ Ez a saját hivatkozása a(z) %@ nevű csoporthoz!
Megtartja a fel nem használt meghívót?alert title
+
+ Keep your chats clean
+ No comment provided by engineer.
+ Keep your connectionsKapcsolatok megtartása
@@ -6158,11 +6174,6 @@ Hiba: %@
A profilfrissítés el lesz küldve a partnerei számára.alert message
-
- Profile will be shared with the address.
- A profil meg lesz osztva a címhivatkozáson keresztül.
- alert message
- Prohibit audio/video calls.A hívások kezdeményezése le van tiltva.
@@ -7358,6 +7369,10 @@ chat item action
Jelmondat beállítása az exportáláshozNo comment provided by engineer.
+
+ Set profile bio and welcome message.
+ No comment provided by engineer.
+ Set the message shown to new members!Megjelenítendő üzenet beállítása az új tagok számára!
@@ -7424,6 +7439,10 @@ chat item action
Megosztás más alkalmazásokból.No comment provided by engineer.
+
+ Share full link
+ alert button
+ Share group profile via linkCsoportprofil megosztása a hivatkozáson keresztül
@@ -7459,6 +7478,14 @@ chat item action
Megosztás a partnerekkelNo comment provided by engineer.
+
+ Share your address
+ No comment provided by engineer.
+
+
+ Short SimpleX address
+ No comment provided by engineer.
+ Short descriptionRövid leírás
@@ -8517,6 +8544,10 @@ A kapcsolódáshoz kérje meg a partnerét, hogy hozzon létre egy másik kapcso
Frissíti a beállításokat?No comment provided by engineer.
+
+ Update your address
+ No comment provided by engineer.
+ Updated conditionsFrissített feltételek
@@ -8866,6 +8897,10 @@ A kapcsolódáshoz kérje meg a partnerét, hogy hozzon létre egy másik kapcso
Az üdvözlőüzenet túl hosszúNo comment provided by engineer.
+
+ Welcome your contacts 👋
+ No comment provided by engineer.
+ What's newÚjdonságok
@@ -9405,6 +9440,11 @@ Repeat connection request?
A profilja módosult. Ha menti, akkor a profilfrissítés el lesz küldve a partnerei számára.alert message
+
+ Your profile will be shared with the address.
+ A profil meg lesz osztva a címhivatkozáson keresztül.
+ alert message
+ 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 883131d4fe..ca4836cc3e 100644
--- a/apps/ios/SimpleX Localizations/it.xcloc/Localized Contents/it.xliff
+++ b/apps/ios/SimpleX Localizations/it.xcloc/Localized Contents/it.xliff
@@ -642,6 +642,10 @@ swipe action
Aggiungi amiciNo comment provided by engineer.
+
+ Add link
+ alert button
+ Add listAggiungi elenco
@@ -670,7 +674,7 @@ swipe action
Add short linkAggiungi link breve
- No comment provided by engineer.
+ alert titleAdd team members
@@ -2205,6 +2209,10 @@ Questo è il tuo link una tantum!
Crea codaserver test step
+
+ Create your address
+ No comment provided by engineer.
+ Create your profileCrea il tuo profilo
@@ -3015,6 +3023,10 @@ chat item action
Attiva l'accesso alla fotocameraNo comment provided by engineer.
+
+ Enable disappearing messages by default.
+ No comment provided by engineer.
+ Enable for allAttiva per tutti
@@ -4647,6 +4659,10 @@ Questo è il tuo link per il gruppo %@!
Tenere l'invito inutilizzato?alert title
+
+ Keep your chats clean
+ No comment provided by engineer.
+ Keep your connectionsMantieni le tue connessioni
@@ -6158,11 +6174,6 @@ Errore: %@
L'aggiornamento del profilo verrà inviato ai tuoi contatti.alert message
-
- Profile will be shared with the address.
- Il profilo verrà condiviso tramite il link dell'indirizzo.
- alert message
- Prohibit audio/video calls.Proibisci le chiamate audio/video.
@@ -7358,6 +7369,10 @@ chat item action
Imposta la password per esportareNo comment provided by engineer.
+
+ Set profile bio and welcome message.
+ No comment provided by engineer.
+ Set the message shown to new members!Imposta il messaggio mostrato ai nuovi membri!
@@ -7424,6 +7439,10 @@ chat item action
Condividi da altre app.No comment provided by engineer.
+
+ Share full link
+ alert button
+ Share group profile via linkCondividi il profilo del gruppo via link
@@ -7459,6 +7478,14 @@ chat item action
Condividi con i contattiNo comment provided by engineer.
+
+ Share your address
+ No comment provided by engineer.
+
+
+ Short SimpleX address
+ No comment provided by engineer.
+ Short descriptionDescrizione breve
@@ -8517,6 +8544,10 @@ Per connetterti, chiedi al tuo contatto di creare un altro link di connessione e
Aggiornare le impostazioni?No comment provided by engineer.
+
+ Update your address
+ No comment provided by engineer.
+ Updated conditionsCondizioni aggiornate
@@ -8866,6 +8897,10 @@ Per connetterti, chiedi al tuo contatto di creare un altro link di connessione e
Il messaggio di benvenuto è troppo lungoNo comment provided by engineer.
+
+ Welcome your contacts 👋
+ No comment provided by engineer.
+ What's newNovità
@@ -9405,6 +9440,11 @@ 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 will be shared with the address.
+ Il profilo verrà condiviso tramite il link dell'indirizzo.
+ alert message
+ 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 05536e6c02..c7cf5b0db3 100644
--- a/apps/ios/SimpleX Localizations/ja.xcloc/Localized Contents/ja.xliff
+++ b/apps/ios/SimpleX Localizations/ja.xcloc/Localized Contents/ja.xliff
@@ -627,6 +627,10 @@ swipe action
Add friendsNo comment provided by engineer.
+
+ Add link
+ alert button
+ Add listNo comment provided by engineer.
@@ -652,7 +656,7 @@ swipe action
Add short link
- No comment provided by engineer.
+ alert titleAdd team members
@@ -2047,6 +2051,10 @@ This is your own one-time link!
キューの作成server test step
+
+ Create your address
+ No comment provided by engineer.
+ Create your profileプロフィールを作成する
@@ -2799,6 +2807,10 @@ chat item action
Enable camera accessNo comment provided by engineer.
+
+ Enable disappearing messages by default.
+ No comment provided by engineer.
+ Enable for allすべて有効
@@ -4290,6 +4302,10 @@ This is your link for group %@!
Keep unused invitation?alert title
+
+ Keep your chats clean
+ No comment provided by engineer.
+ Keep your connections接続を維持
@@ -5649,10 +5665,6 @@ Error: %@
連絡先にプロフィール更新のお知らせが届きます。alert message
-
- Profile will be shared with the address.
- alert message
- Prohibit audio/video calls.音声/ビデオ通話を禁止する 。
@@ -6726,6 +6738,10 @@ chat item action
暗証フレーズを設定してからエクスポートNo comment provided by engineer.
+
+ Set profile bio and welcome message.
+ No comment provided by engineer.
+ Set the message shown to new members!新しいメンバーに表示されるメッセージを設定してください!
@@ -6786,6 +6802,10 @@ chat item action
Share from other apps.No comment provided by engineer.
+
+ Share full link
+ alert button
+ Share group profile via linkNo comment provided by engineer.
@@ -6816,6 +6836,14 @@ chat item action
連絡先と共有するNo comment provided by engineer.
+
+ Share your address
+ No comment provided by engineer.
+
+
+ Short SimpleX address
+ No comment provided by engineer.
+ Short descriptionNo comment provided by engineer.
@@ -7774,6 +7802,10 @@ To connect, please ask your contact to create another connection link and check
Update settings?No comment provided by engineer.
+
+ Update your address
+ No comment provided by engineer.
+ Updated conditionsNo comment provided by engineer.
@@ -8086,6 +8118,10 @@ To connect, please ask your contact to create another connection link and check
Welcome message is too longNo comment provided by engineer.
+
+ Welcome your contacts 👋
+ No comment provided by engineer.
+ What's new新着情報
@@ -8577,6 +8613,10 @@ 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 will be shared with the address.
+ alert message
+ Your random profileあなたのランダム・プロフィール
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 b52c65b2c6..b163a43f8f 100644
--- a/apps/ios/SimpleX Localizations/nl.xcloc/Localized Contents/nl.xliff
+++ b/apps/ios/SimpleX Localizations/nl.xcloc/Localized Contents/nl.xliff
@@ -641,6 +641,10 @@ swipe action
Vrienden toevoegenNo comment provided by engineer.
+
+ Add link
+ alert button
+ Add listLijst toevoegen
@@ -667,7 +671,7 @@ swipe action
Add short link
- No comment provided by engineer.
+ alert titleAdd team members
@@ -2196,6 +2200,10 @@ Dit is uw eigen eenmalige link!
Maak een wachtrijserver test step
+
+ Create your address
+ No comment provided by engineer.
+ Create your profileMaak je profiel aan
@@ -3004,6 +3012,10 @@ chat item action
Schakel cameratoegang inNo comment provided by engineer.
+
+ Enable disappearing messages by default.
+ No comment provided by engineer.
+ Enable for allInschakelen voor iedereen
@@ -4631,6 +4643,10 @@ Dit is jouw link voor groep %@!
Ongebruikte uitnodiging bewaren?alert title
+
+ Keep your chats clean
+ No comment provided by engineer.
+ Keep your connectionsBehoud uw verbindingen
@@ -6130,10 +6146,6 @@ Fout: %@
Profiel update wordt naar uw contacten verzonden.alert message
-
- Profile will be shared with the address.
- alert message
- Prohibit audio/video calls.Audio/video gesprekken verbieden.
@@ -7320,6 +7332,10 @@ chat item action
Wachtwoord instellen om te exporterenNo comment provided by engineer.
+
+ Set profile bio and welcome message.
+ No comment provided by engineer.
+ Set the message shown to new members!Stel het getoonde bericht in voor nieuwe leden!
@@ -7386,6 +7402,10 @@ chat item action
Delen vanuit andere apps.No comment provided by engineer.
+
+ Share full link
+ alert button
+ Share group profile via linkNo comment provided by engineer.
@@ -7419,6 +7439,14 @@ chat item action
Delen met contactenNo comment provided by engineer.
+
+ Share your address
+ No comment provided by engineer.
+
+
+ Short SimpleX address
+ No comment provided by engineer.
+ Short descriptionNo comment provided by engineer.
@@ -8471,6 +8499,10 @@ Om verbinding te maken, vraagt u uw contact om een andere verbinding link te mak
Instellingen actualiseren?No comment provided by engineer.
+
+ Update your address
+ No comment provided by engineer.
+ Updated conditionsBijgewerkte voorwaarden
@@ -8820,6 +8852,10 @@ Om verbinding te maken, vraagt u uw contact om een andere verbinding link te mak
Welkom bericht is te langNo comment provided by engineer.
+
+ Welcome your contacts 👋
+ No comment provided by engineer.
+ What's newWat is er nieuw
@@ -9354,6 +9390,10 @@ Verbindingsverzoek herhalen?
Je profiel is gewijzigd. Als je het opslaat, wordt het bijgewerkte profiel naar al je contacten verzonden.alert message
+
+ Your profile will be shared with the address.
+ alert message
+ 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 17a6525d3c..7d91139332 100644
--- a/apps/ios/SimpleX Localizations/pl.xcloc/Localized Contents/pl.xliff
+++ b/apps/ios/SimpleX Localizations/pl.xcloc/Localized Contents/pl.xliff
@@ -638,6 +638,10 @@ swipe action
Dodaj znajomychNo comment provided by engineer.
+
+ Add link
+ alert button
+ Add listDodaj listę
@@ -664,7 +668,7 @@ swipe action
Add short link
- No comment provided by engineer.
+ alert titleAdd team members
@@ -2166,6 +2170,10 @@ To jest twój jednorazowy link!
Utwórz kolejkęserver test step
+
+ Create your address
+ No comment provided by engineer.
+ Create your profileUtwórz swój profil
@@ -2956,6 +2964,10 @@ chat item action
Włącz dostęp do kameryNo comment provided by engineer.
+
+ Enable disappearing messages by default.
+ No comment provided by engineer.
+ Enable for allWłącz dla wszystkich
@@ -4538,6 +4550,10 @@ To jest twój link do grupy %@!
Zachować nieużyte zaproszenie?alert title
+
+ Keep your chats clean
+ No comment provided by engineer.
+ Keep your connectionsZachowaj swoje połączenia
@@ -5978,10 +5994,6 @@ Błąd: %@
Aktualizacja profilu zostanie wysłana do Twoich kontaktów.alert message
-
- Profile will be shared with the address.
- alert message
- Prohibit audio/video calls.Zabroń połączeń audio/wideo.
@@ -7139,6 +7151,10 @@ chat item action
Ustaw hasło do eksportuNo comment provided by engineer.
+
+ Set profile bio and welcome message.
+ No comment provided by engineer.
+ Set the message shown to new members!Ustaw wiadomość wyświetlaną nowym członkom!
@@ -7202,6 +7218,10 @@ chat item action
Udostępnij z innych aplikacji.No comment provided by engineer.
+
+ Share full link
+ alert button
+ Share group profile via linkNo comment provided by engineer.
@@ -7235,6 +7255,14 @@ chat item action
Udostępnij kontaktomNo comment provided by engineer.
+
+ Share your address
+ No comment provided by engineer.
+
+
+ Short SimpleX address
+ No comment provided by engineer.
+ Short descriptionNo comment provided by engineer.
@@ -8256,6 +8284,10 @@ Aby się połączyć, poproś Twój kontakt o utworzenie kolejnego linku połąc
Zaktualizować ustawienia?No comment provided by engineer.
+
+ Update your address
+ No comment provided by engineer.
+ Updated conditionsNo comment provided by engineer.
@@ -8595,6 +8627,10 @@ Aby się połączyć, poproś Twój kontakt o utworzenie kolejnego linku połąc
Wiadomość powitalna jest zbyt długaNo comment provided by engineer.
+
+ Welcome your contacts 👋
+ No comment provided by engineer.
+ What's newCo nowego
@@ -9122,6 +9158,10 @@ 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 will be shared with the address.
+ alert message
+ Your random profileTwój losowy profil
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 73ba7af107..bfdfdc19db 100644
--- a/apps/ios/SimpleX Localizations/ru.xcloc/Localized Contents/ru.xliff
+++ b/apps/ios/SimpleX Localizations/ru.xcloc/Localized Contents/ru.xliff
@@ -642,6 +642,10 @@ swipe action
Добавить друзейNo comment provided by engineer.
+
+ Add link
+ alert button
+ Add listДобавить список
@@ -670,7 +674,7 @@ swipe action
Add short linkДобавить короткую ссылку
- No comment provided by engineer.
+ alert titleAdd team members
@@ -2202,6 +2206,10 @@ This is your own one-time link!
Создание очередиserver test step
+
+ Create your address
+ No comment provided by engineer.
+ Create your profileСоздать профиль
@@ -3011,6 +3019,10 @@ chat item action
Включить доступ к камереNo comment provided by engineer.
+
+ Enable disappearing messages by default.
+ No comment provided by engineer.
+ Enable for allВключить для всех
@@ -4642,6 +4654,10 @@ This is your link for group %@!
Оставить неиспользованное приглашение?alert title
+
+ Keep your chats clean
+ No comment provided by engineer.
+ Keep your connectionsСохраните Ваши соединения
@@ -6152,11 +6168,6 @@ Error: %@
Обновлённый профиль будет отправлен Вашим контактам.alert message
-
- Profile will be shared with the address.
- Профиль будет добавлен в адрес.
- alert message
- Prohibit audio/video calls.Запретить аудио/видео звонки.
@@ -7352,6 +7363,10 @@ chat item action
Установите парольNo comment provided by engineer.
+
+ Set profile bio and welcome message.
+ No comment provided by engineer.
+ Set the message shown to new members!Установить сообщение для новых членов группы!
@@ -7418,6 +7433,10 @@ chat item action
Поделитесь из других приложений.No comment provided by engineer.
+
+ Share full link
+ alert button
+ Share group profile via linkДобавить профиль группы в ссылку
@@ -7453,6 +7472,14 @@ chat item action
Поделиться с контактамиNo comment provided by engineer.
+
+ Share your address
+ No comment provided by engineer.
+
+
+ Short SimpleX address
+ No comment provided by engineer.
+ Short descriptionNo comment provided by engineer.
@@ -8507,6 +8534,10 @@ To connect, please ask your contact to create another connection link and check
Обновить настройки?No comment provided by engineer.
+
+ Update your address
+ No comment provided by engineer.
+ Updated conditionsОбновленные условия
@@ -8856,6 +8887,10 @@ To connect, please ask your contact to create another connection link and check
Приветственное сообщение слишком длинноеNo comment provided by engineer.
+
+ Welcome your contacts 👋
+ No comment provided by engineer.
+ What's newНовые функции
@@ -9391,6 +9426,11 @@ Repeat connection request?
Ваш профиль был изменен. Если вы сохраните его, обновленный профиль будет отправлен всем вашим контактам.alert message
+
+ Your profile will be shared with the address.
+ Профиль будет добавлен в адрес.
+ alert message
+ 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 cce4dcd113..efa56887dd 100644
--- a/apps/ios/SimpleX Localizations/th.xcloc/Localized Contents/th.xliff
+++ b/apps/ios/SimpleX Localizations/th.xcloc/Localized Contents/th.xliff
@@ -585,6 +585,10 @@ swipe action
Add friendsNo comment provided by engineer.
+
+ Add link
+ alert button
+ Add listNo comment provided by engineer.
@@ -610,7 +614,7 @@ swipe action
Add short link
- No comment provided by engineer.
+ alert titleAdd team members
@@ -1969,6 +1973,10 @@ This is your own one-time link!
สร้างคิวserver test step
+
+ Create your address
+ No comment provided by engineer.
+ Create your profileสร้างโปรไฟล์ของคุณ
@@ -2714,6 +2722,10 @@ chat item action
Enable camera accessNo comment provided by engineer.
+
+ Enable disappearing messages by default.
+ No comment provided by engineer.
+ Enable for allเปิดใช้งานสําหรับทุกคน
@@ -4200,6 +4212,10 @@ This is your link for group %@!
Keep unused invitation?alert title
+
+ Keep your chats clean
+ No comment provided by engineer.
+ Keep your connectionsรักษาการเชื่อมต่อของคุณ
@@ -5550,10 +5566,6 @@ Error: %@
การอัปเดตโปรไฟล์จะถูกส่งไปยังผู้ติดต่อของคุณalert message
-
- Profile will be shared with the address.
- alert message
- Prohibit audio/video calls.ห้ามการโทรด้วยเสียง/วิดีโอ
@@ -6631,6 +6643,10 @@ chat item action
ตั้งรหัสผ่านเพื่อส่งออกNo comment provided by engineer.
+
+ Set profile bio and welcome message.
+ No comment provided by engineer.
+ Set the message shown to new members!ตั้งข้อความที่แสดงต่อสมาชิกใหม่!
@@ -6691,6 +6707,10 @@ chat item action
Share from other apps.No comment provided by engineer.
+
+ Share full link
+ alert button
+ Share group profile via linkNo comment provided by engineer.
@@ -6721,6 +6741,14 @@ chat item action
แชร์กับผู้ติดต่อNo comment provided by engineer.
+
+ Share your address
+ No comment provided by engineer.
+
+
+ Short SimpleX address
+ No comment provided by engineer.
+ Short descriptionNo comment provided by engineer.
@@ -7676,6 +7704,10 @@ To connect, please ask your contact to create another connection link and check
Update settings?No comment provided by engineer.
+
+ Update your address
+ No comment provided by engineer.
+ Updated conditionsNo comment provided by engineer.
@@ -7986,6 +8018,10 @@ To connect, please ask your contact to create another connection link and check
Welcome message is too longNo comment provided by engineer.
+
+ Welcome your contacts 👋
+ No comment provided by engineer.
+ What's newมีอะไรใหม่
@@ -8474,6 +8510,10 @@ 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 will be shared with the address.
+ alert message
+ 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 c81cbc8d1a..73373a1f1d 100644
--- a/apps/ios/SimpleX Localizations/tr.xcloc/Localized Contents/tr.xliff
+++ b/apps/ios/SimpleX Localizations/tr.xcloc/Localized Contents/tr.xliff
@@ -642,6 +642,10 @@ swipe action
Arkadaş ekleNo comment provided by engineer.
+
+ Add link
+ alert button
+ Add listListe ekle
@@ -670,7 +674,7 @@ swipe action
Add short linkKısa bağlantı ekle
- No comment provided by engineer.
+ alert titleAdd team members
@@ -2205,6 +2209,10 @@ Bu senin kendi tek kullanımlık bağlantın!
Sıra oluşturserver test step
+
+ Create your address
+ No comment provided by engineer.
+ Create your profileProfilini oluştur
@@ -3015,6 +3023,10 @@ chat item action
Kamera erişimini etkinleştirNo comment provided by engineer.
+
+ Enable disappearing messages by default.
+ No comment provided by engineer.
+ Enable for allHerkes için etkinleştir
@@ -4647,6 +4659,10 @@ Bu senin grup için bağlantın %@!
Kullanılmamış davet tutulsun mu?alert title
+
+ Keep your chats clean
+ No comment provided by engineer.
+ Keep your connectionsBağlantılarınızı koruyun
@@ -6158,11 +6174,6 @@ Hata: %@
Profil güncellemesi kişilerinize gönderilecektir.alert message
-
- Profile will be shared with the address.
- Profil adres bağlantısı aracılığıyla paylaşılacaktır.
- alert message
- Prohibit audio/video calls.Sesli/görüntülü aramaları yasakla.
@@ -7358,6 +7369,10 @@ chat item action
Dışa aktarmak için parola ayarlaNo comment provided by engineer.
+
+ Set profile bio and welcome message.
+ No comment provided by engineer.
+ Set the message shown to new members!Yeni üyeler için gösterilen bir mesaj ayarla!
@@ -7424,6 +7439,10 @@ chat item action
Diğer uygulamalardan paylaşın.No comment provided by engineer.
+
+ Share full link
+ alert button
+ Share group profile via linkGrup profilini bağlantı aracılığıyla paylaş
@@ -7459,6 +7478,14 @@ chat item action
Kişilerle paylaşNo comment provided by engineer.
+
+ Share your address
+ No comment provided by engineer.
+
+
+ Short SimpleX address
+ No comment provided by engineer.
+ Short descriptionKısa açıklama
@@ -8517,6 +8544,10 @@ Bağlanmak için lütfen kişinizden başka bir bağlantı oluşturmasını iste
Ayarları güncelleyelim mi?No comment provided by engineer.
+
+ Update your address
+ No comment provided by engineer.
+ Updated conditionsGüncellenmiş koşullar
@@ -8866,6 +8897,10 @@ Bağlanmak için lütfen kişinizden başka bir bağlantı oluşturmasını iste
Hoş geldiniz mesajı çok uzunNo comment provided by engineer.
+
+ Welcome your contacts 👋
+ No comment provided by engineer.
+ What's newNeler yeni
@@ -9405,6 +9440,11 @@ 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 will be shared with the address.
+ Profil adres bağlantısı aracılığıyla paylaşılacaktır.
+ alert message
+ 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 0ef2995baf..0bcdd21338 100644
--- a/apps/ios/SimpleX Localizations/uk.xcloc/Localized Contents/uk.xliff
+++ b/apps/ios/SimpleX Localizations/uk.xcloc/Localized Contents/uk.xliff
@@ -641,6 +641,10 @@ swipe action
Додайте друзівNo comment provided by engineer.
+
+ Add link
+ alert button
+ Add listДодати список
@@ -667,7 +671,7 @@ swipe action
Add short link
- No comment provided by engineer.
+ alert titleAdd team members
@@ -2196,6 +2200,10 @@ This is your own one-time link!
Створити чергуserver test step
+
+ Create your address
+ No comment provided by engineer.
+ Create your profileСтворіть свій профіль
@@ -3004,6 +3012,10 @@ chat item action
Увімкніть доступ до камериNo comment provided by engineer.
+
+ Enable disappearing messages by default.
+ No comment provided by engineer.
+ Enable for allУвімкнути для всіх
@@ -4629,6 +4641,10 @@ This is your link for group %@!
Зберігати невикористані запрошення?alert title
+
+ Keep your chats clean
+ No comment provided by engineer.
+ Keep your connectionsЗберігайте свої зв'язки
@@ -6096,10 +6112,6 @@ Error: %@
Оновлення профілю буде надіслано вашим контактам.alert message
-
- Profile will be shared with the address.
- alert message
- Prohibit audio/video calls.Заборонити аудіо/відеодзвінки.
@@ -7262,6 +7274,10 @@ chat item action
Встановити ключову фразу для експортуNo comment provided by engineer.
+
+ Set profile bio and welcome message.
+ No comment provided by engineer.
+ Set the message shown to new members!Налаштуйте повідомлення, яке показуватиметься новим користувачам!
@@ -7328,6 +7344,10 @@ chat item action
Діліться з інших програм.No comment provided by engineer.
+
+ Share full link
+ alert button
+ Share group profile via linkNo comment provided by engineer.
@@ -7361,6 +7381,14 @@ chat item action
Поділіться з контактамиNo comment provided by engineer.
+
+ Share your address
+ No comment provided by engineer.
+
+
+ Short SimpleX address
+ No comment provided by engineer.
+ Short descriptionNo comment provided by engineer.
@@ -8402,6 +8430,10 @@ To connect, please ask your contact to create another connection link and check
Оновити налаштування?No comment provided by engineer.
+
+ Update your address
+ No comment provided by engineer.
+ Updated conditionsNo comment provided by engineer.
@@ -8747,6 +8779,10 @@ To connect, please ask your contact to create another connection link and check
Привітальне повідомлення занадто довгеNo comment provided by engineer.
+
+ Welcome your contacts 👋
+ No comment provided by engineer.
+ What's newЩо нового
@@ -9279,6 +9315,10 @@ Repeat connection request?
Ваш профіль було змінено. Якщо ви збережете його, оновлений профіль буде надіслано всім вашим контактам.alert message
+
+ Your profile will be shared with the address.
+ alert message
+ 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 4f12aca3f6..353bc02097 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
@@ -638,6 +638,10 @@ swipe action
添加好友No comment provided by engineer.
+
+ Add link
+ alert button
+ Add list添加列表
@@ -664,7 +668,7 @@ swipe action
Add short link
- No comment provided by engineer.
+ alert titleAdd team members
@@ -2189,6 +2193,10 @@ This is your own one-time link!
创建队列server test step
+
+ Create your address
+ No comment provided by engineer.
+ Create your profile创建您的资料
@@ -2996,6 +3004,10 @@ chat item action
启用相机访问No comment provided by engineer.
+
+ Enable disappearing messages by default.
+ No comment provided by engineer.
+ Enable for all全部启用
@@ -4620,6 +4632,10 @@ This is your link for group %@!
保留未使用的邀请吗?alert title
+
+ Keep your chats clean
+ No comment provided by engineer.
+ Keep your connections保持连接
@@ -6104,10 +6120,6 @@ Error: %@
个人资料更新将被发送给您的联系人。alert message
-
- Profile will be shared with the address.
- alert message
- Prohibit audio/video calls.禁止音频/视频通话。
@@ -7262,6 +7274,10 @@ chat item action
设置密码来导出No comment provided by engineer.
+
+ Set profile bio and welcome message.
+ No comment provided by engineer.
+ Set the message shown to new members!设置向新成员显示的消息!
@@ -7324,6 +7340,10 @@ chat item action
从其他应用程序共享。No comment provided by engineer.
+
+ Share full link
+ alert button
+ Share group profile via linkNo comment provided by engineer.
@@ -7356,6 +7376,14 @@ chat item action
与联系人分享No comment provided by engineer.
+
+ Share your address
+ No comment provided by engineer.
+
+
+ Short SimpleX address
+ No comment provided by engineer.
+ Short descriptionNo comment provided by engineer.
@@ -8378,6 +8406,10 @@ To connect, please ask your contact to create another connection link and check
更新设置?No comment provided by engineer.
+
+ Update your address
+ No comment provided by engineer.
+ Updated conditionsNo comment provided by engineer.
@@ -8715,6 +8747,10 @@ To connect, please ask your contact to create another connection link and check
欢迎消息太大了No comment provided by engineer.
+
+ Welcome your contacts 👋
+ No comment provided by engineer.
+ What's new更新内容
@@ -9238,6 +9274,10 @@ 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 will be shared with the address.
+ alert message
+ Your random profile您的随机资料
diff --git a/apps/ios/de.lproj/Localizable.strings b/apps/ios/de.lproj/Localizable.strings
index f471524e08..53fe03304a 100644
--- a/apps/ios/de.lproj/Localizable.strings
+++ b/apps/ios/de.lproj/Localizable.strings
@@ -4106,7 +4106,7 @@ new chat action */
"Profile update will be sent to your contacts." = "Profil-Aktualisierung wird an Ihre Kontakte gesendet.";
/* alert message */
-"Profile will be shared with the address." = "Das Profil wird über den Adress-Link geteilt.";
+"Your profile will be shared with the address." = "Das Profil wird über den Adress-Link geteilt.";
/* No comment provided by engineer. */
"Prohibit audio/video calls." = "Audio-/Video-Anrufe nicht erlauben.";
@@ -6248,4 +6248,3 @@ report reason */
/* No comment provided by engineer. */
"Your SimpleX address" = "Ihre SimpleX-Adresse";
-
diff --git a/apps/ios/es.lproj/Localizable.strings b/apps/ios/es.lproj/Localizable.strings
index e073060682..c46c619ccd 100644
--- a/apps/ios/es.lproj/Localizable.strings
+++ b/apps/ios/es.lproj/Localizable.strings
@@ -4106,7 +4106,7 @@ new chat action */
"Profile update will be sent to your contacts." = "La actualización del perfil se enviará a tus contactos.";
/* alert message */
-"Profile will be shared with the address." = "El perfil será compartido mediante la dirección de contacto.";
+"Your profile will be shared with the address." = "El perfil será compartido mediante la dirección de contacto.";
/* No comment provided by engineer. */
"Prohibit audio/video calls." = "No se permiten llamadas y videollamadas.";
@@ -6248,4 +6248,3 @@ report reason */
/* No comment provided by engineer. */
"Your SimpleX address" = "Mi dirección SimpleX";
-
diff --git a/apps/ios/hu.lproj/Localizable.strings b/apps/ios/hu.lproj/Localizable.strings
index 5f36f57607..49bdc228c2 100644
--- a/apps/ios/hu.lproj/Localizable.strings
+++ b/apps/ios/hu.lproj/Localizable.strings
@@ -4106,7 +4106,7 @@ new chat action */
"Profile update will be sent to your contacts." = "A profilfrissítés el lesz küldve a partnerei számára.";
/* alert message */
-"Profile will be shared with the address." = "A profil meg lesz osztva a címhivatkozáson keresztül.";
+"Your profile will be shared with the address." = "A profil meg lesz osztva a címhivatkozáson keresztül.";
/* No comment provided by engineer. */
"Prohibit audio/video calls." = "A hívások kezdeményezése le van tiltva.";
@@ -6248,4 +6248,3 @@ report reason */
/* No comment provided by engineer. */
"Your SimpleX address" = "Profil SimpleX-címe";
-
diff --git a/apps/ios/it.lproj/Localizable.strings b/apps/ios/it.lproj/Localizable.strings
index 0dbe1785b7..45041710ea 100644
--- a/apps/ios/it.lproj/Localizable.strings
+++ b/apps/ios/it.lproj/Localizable.strings
@@ -4106,7 +4106,7 @@ new chat action */
"Profile update will be sent to your contacts." = "L'aggiornamento del profilo verrà inviato ai tuoi contatti.";
/* alert message */
-"Profile will be shared with the address." = "Il profilo verrà condiviso tramite il link dell'indirizzo.";
+"Your profile will be shared with the address." = "Il profilo verrà condiviso tramite il link dell'indirizzo.";
/* No comment provided by engineer. */
"Prohibit audio/video calls." = "Proibisci le chiamate audio/video.";
@@ -6248,4 +6248,3 @@ report reason */
/* No comment provided by engineer. */
"Your SimpleX address" = "Il tuo indirizzo SimpleX";
-
diff --git a/apps/ios/ru.lproj/Localizable.strings b/apps/ios/ru.lproj/Localizable.strings
index 1ddbdbbfea..c52ded2101 100644
--- a/apps/ios/ru.lproj/Localizable.strings
+++ b/apps/ios/ru.lproj/Localizable.strings
@@ -4091,7 +4091,7 @@ new chat action */
"Profile update will be sent to your contacts." = "Обновлённый профиль будет отправлен Вашим контактам.";
/* alert message */
-"Profile will be shared with the address." = "Профиль будет добавлен в адрес.";
+"Your profile will be shared with the address." = "Профиль будет добавлен в адрес.";
/* No comment provided by engineer. */
"Prohibit audio/video calls." = "Запретить аудио/видео звонки.";
@@ -6209,4 +6209,3 @@ report reason */
/* No comment provided by engineer. */
"Your SimpleX address" = "Ваш адрес SimpleX";
-
diff --git a/apps/ios/tr.lproj/Localizable.strings b/apps/ios/tr.lproj/Localizable.strings
index 443a0c6ea2..7ac52e7092 100644
--- a/apps/ios/tr.lproj/Localizable.strings
+++ b/apps/ios/tr.lproj/Localizable.strings
@@ -4106,7 +4106,7 @@ new chat action */
"Profile update will be sent to your contacts." = "Profil güncellemesi kişilerinize gönderilecektir.";
/* alert message */
-"Profile will be shared with the address." = "Profil adres bağlantısı aracılığıyla paylaşılacaktır.";
+"Your profile will be shared with the address." = "Profil adres bağlantısı aracılığıyla paylaşılacaktır.";
/* No comment provided by engineer. */
"Prohibit audio/video calls." = "Sesli/görüntülü aramaları yasakla.";
@@ -6248,4 +6248,3 @@ report reason */
/* No comment provided by engineer. */
"Your SimpleX address" = "SimpleX adresin";
-
diff --git a/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/onboarding/WhatsNewView.kt b/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/onboarding/WhatsNewView.kt
index 8c88a04ded..406c513588 100644
--- a/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/onboarding/WhatsNewView.kt
+++ b/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/onboarding/WhatsNewView.kt
@@ -848,8 +848,38 @@ private val versionDescriptions: List = listOf(
descrId = MR.strings.v6_4_message_delivery_descr
),
)
- )
-
+ ),
+ VersionDescription(
+ version = "v6.4.1",
+ post = "https://simplex.chat/blog/20250729-simplex-chat-v6-4-1-welcome-contacts-protect-groups-app-security.html",
+ features = listOf(
+ VersionFeature.FeatureDescription(
+ icon = MR.images.ic_waving_hand,
+ titleId = MR.strings.v6_4_1_welcome_contacts,
+ descrId = MR.strings.v6_4_1_welcome_contacts_descr
+ ),
+ VersionFeature.FeatureDescription(
+ icon = MR.images.ic_timer,
+ titleId = MR.strings.v6_4_1_keep_chats_clean,
+ descrId = MR.strings.v6_4_1_keep_chats_clean_descr
+ ),
+ VersionFeature.FeatureDescription(
+ icon = MR.images.ic_link,
+ titleId = MR.strings.v6_4_1_short_address,
+ descrId = null,
+ subfeatures = listOf(
+ MR.images.ic_link to MR.strings.v6_4_1_short_address_create,
+ MR.images.ic_link to MR.strings.v6_4_1_short_address_update,
+ MR.images.ic_link to MR.strings.v6_4_1_short_address_share,
+ )
+ ),
+ VersionFeature.FeatureDescription(
+ icon = MR.images.ic_translate,
+ titleId = MR.strings.v6_4_1_new_interface_languages,
+ descrId = MR.strings.v6_4_1_new_interface_languages_descr,
+ ),
+ )
+ ),
)
private val lastVersion = versionDescriptions.last().version
diff --git a/apps/multiplatform/common/src/commonMain/resources/MR/base/strings.xml b/apps/multiplatform/common/src/commonMain/resources/MR/base/strings.xml
index 98c2b7235e..2e899e3560 100644
--- a/apps/multiplatform/common/src/commonMain/resources/MR/base/strings.xml
+++ b/apps/multiplatform/common/src/commonMain/resources/MR/base/strings.xml
@@ -2445,6 +2445,16 @@
New group role: ModeratorRemoves messages and blocks members.Less traffic on mobile networks.
+ Welcome your contacts 👋
+ Set profile bio and welcome message.
+ Keep your chats clean
+ Enable disappearing messages by default.
+ Short SimpleX address
+ Create your address
+ Update your address
+ Share your address
+ 4 new interface languages
+ Catalan, Indonesian, Romanian and Vietnamese - thanks to our users!View updated conditions
diff --git a/apps/multiplatform/common/src/commonMain/resources/MR/images/ic_waving_hand.svg b/apps/multiplatform/common/src/commonMain/resources/MR/images/ic_waving_hand.svg
new file mode 100644
index 0000000000..28781faa07
--- /dev/null
+++ b/apps/multiplatform/common/src/commonMain/resources/MR/images/ic_waving_hand.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/blog/20250729-simplex-chat-v6-4-1-welcome-contacts-protect-groups-app-security.md b/blog/20250729-simplex-chat-v6-4-1-welcome-contacts-protect-groups-app-security.md
new file mode 100644
index 0000000000..a5c498878e
--- /dev/null
+++ b/blog/20250729-simplex-chat-v6-4-1-welcome-contacts-protect-groups-app-security.md
@@ -0,0 +1,58 @@
+---
+layout: layouts/article.html
+title: "SimpleX Chat v6.4.1: welcome your contacts, review members to protect groups, and more."
+date: 2025-07-29
+# previewBody: blog_previews/20250308.html
+# image: images/20250308-captcha.png
+# imageBottom: true
+draft: true
+permalink: "/blog/20250729-simplex-chat-v6-4-1-welcome-contacts-protect-groups-app-security.html"
+---
+
+# SimpleX Chat v6.4.1: welcome your contacts, review members to protect groups, and more.
+
+**Will be published:** Jul 29, 2025
+
+This is a placeholder for upcoming v6.4.1 release announcement.
+
+**What's new in v6.4.1**:
+
+TODO
+
+## What's new in v6.4.1
+
+TODO
+
+## SimpleX network
+
+Some links to answer the most common questions:
+
+[How can SimpleX deliver messages without user identifiers](./20220511-simplex-chat-v2-images-files.md#the-first-messaging-platform-without-user-identifiers).
+
+[What are the risks to have identifiers assigned to the users](./20220711-simplex-chat-v3-released-ios-notifications-audio-video-calls-database-export-import-protocol-improvements.md#why-having-users-identifiers-is-bad-for-the-users).
+
+[Technical details and limitations](https://github.com/simplex-chat/simplex-chat#privacy-and-security-technical-details-and-limitations).
+
+[Frequently asked questions](../docs/FAQ.md).
+
+Please also see our [website](https://simplex.chat).
+
+## Please support us with your donations
+
+Huge *thank you* to everybody who donated to SimpleX Chat!
+
+Prioritizing users privacy and security, and also raising the investment, would have been impossible without your support and donations.
+
+Also, funding the work to transition the protocols to non-profit governance model would not have been possible without the donations we received from the users.
+
+Our pledge to our users is that SimpleX protocols are and will remain open, and in public domain, so anybody can build the future implementations of the clients and the servers. We are building SimpleX platform based on the same principles as email and web, but much more private and secure.
+
+Your donations help us raise more funds — any amount, even the price of the cup of coffee, makes a big difference for us.
+
+See [this section](https://github.com/simplex-chat/simplex-chat/#please-support-us-with-your-donations) for the ways to donate.
+
+Thank you,
+
+Evgeny
+
+SimpleX Chat founder