diff --git a/apps/android/app/src/main/java/chat/simplex/app/model/SimpleXAPI.kt b/apps/android/app/src/main/java/chat/simplex/app/model/SimpleXAPI.kt index 45756ea21f..8e53ef3827 100644 --- a/apps/android/app/src/main/java/chat/simplex/app/model/SimpleXAPI.kt +++ b/apps/android/app/src/main/java/chat/simplex/app/model/SimpleXAPI.kt @@ -88,7 +88,7 @@ class AppPreferences(val context: Context) { val webrtcIceServers = mkStrPreference(SHARED_PREFS_WEBRTC_ICE_SERVERS, null) val privacyProtectScreen = mkBoolPreference(SHARED_PREFS_PRIVACY_PROTECT_SCREEN, true) val privacyAcceptImages = mkBoolPreference(SHARED_PREFS_PRIVACY_ACCEPT_IMAGES, true) - val privacyTransferImagesInline = mkBoolPreference(SHARED_PREFS_PRIVACY_TRANSFER_IMAGES_INLINE, true) + val privacyTransferImagesInline = mkBoolPreference(SHARED_PREFS_PRIVACY_TRANSFER_IMAGES_INLINE, false) val privacyLinkPreviews = mkBoolPreference(SHARED_PREFS_PRIVACY_LINK_PREVIEWS, true) private val _simplexLinkMode = mkStrPreference(SHARED_PREFS_PRIVACY_SIMPLEX_LINK_MODE, SimplexLinkMode.default.name) val simplexLinkMode: SharedPreference = SharedPreference( diff --git a/apps/android/app/src/main/res/values-cs/strings.xml b/apps/android/app/src/main/res/values-cs/strings.xml index 7eee85face..07f36a95dc 100644 --- a/apps/android/app/src/main/res/values-cs/strings.xml +++ b/apps/android/app/src/main/res/values-cs/strings.xml @@ -467,7 +467,7 @@ Ochrana osobních údajů a zabezpečení Vaše soukromí Ochrana obrazovky aplikace - Rychlejší přenos obrázků + Rychlejší přenos obrázků (BETA) Odesílání náhledů odkazů Zálohování dat aplikace Confirm new passphrase… diff --git a/apps/android/app/src/main/res/values-de/strings.xml b/apps/android/app/src/main/res/values-de/strings.xml index 3914426715..083b248116 100644 --- a/apps/android/app/src/main/res/values-de/strings.xml +++ b/apps/android/app/src/main/res/values-de/strings.xml @@ -559,7 +559,7 @@ Meine Privatsphäre App-Bildschirm schützen Bilder automatisch akzeptieren - Bilder schneller übertragen + Bilder schneller übertragen (BETA) Link-Vorschau senden App-Datensicherung diff --git a/apps/android/app/src/main/res/values-fr/strings.xml b/apps/android/app/src/main/res/values-fr/strings.xml index fc8d0696e6..2508ff42c5 100644 --- a/apps/android/app/src/main/res/values-fr/strings.xml +++ b/apps/android/app/src/main/res/values-fr/strings.xml @@ -623,7 +623,7 @@ Vie privée et sécurité Protéger l\'écran de l\'app Images auto-acceptées - Transfert d\'images plus rapide + Transfert d\'images plus rapide (BETA) Sauvegarde des données de l\'app VOUS AIDE diff --git a/apps/android/app/src/main/res/values-it/strings.xml b/apps/android/app/src/main/res/values-it/strings.xml index f7d9b3195c..c60f68a659 100644 --- a/apps/android/app/src/main/res/values-it/strings.xml +++ b/apps/android/app/src/main/res/values-it/strings.xml @@ -742,7 +742,7 @@ SUPPORTA SIMPLEX CHAT TEMI Questa azione non può essere annullata: il tuo profilo, i contatti, i messaggi e i file andranno persi in modo irreversibile. - Trasferisci immagini più velocemente + Trasferisci immagini più velocemente (BETA) TU Il tuo database della chat Il tuo attuale database di chat verrà ELIMINATO e SOSTITUITO con quello importato. diff --git a/apps/android/app/src/main/res/values-ru/strings.xml b/apps/android/app/src/main/res/values-ru/strings.xml index 3a3561d4ef..877d738d2a 100644 --- a/apps/android/app/src/main/res/values-ru/strings.xml +++ b/apps/android/app/src/main/res/values-ru/strings.xml @@ -560,7 +560,7 @@ Конфиденциальность Защитить экран приложения Автоприем изображений - Передавать изображения быстрее + Передавать изображения в том же соединении (БЕТА) Отправлять картинки ссылок Резервная копия данных diff --git a/apps/android/app/src/main/res/values/strings.xml b/apps/android/app/src/main/res/values/strings.xml index 8c86916f74..0463e9350b 100644 --- a/apps/android/app/src/main/res/values/strings.xml +++ b/apps/android/app/src/main/res/values/strings.xml @@ -673,7 +673,7 @@ Your privacy Protect app screen Auto-accept images - Transfer images faster + Transfer images inline (BETA) Send link previews App data backup diff --git a/apps/ios/Shared/Views/UserSettings/PrivacySettings.swift b/apps/ios/Shared/Views/UserSettings/PrivacySettings.swift index 5039bd84cd..c4a81c0841 100644 --- a/apps/ios/Shared/Views/UserSettings/PrivacySettings.swift +++ b/apps/ios/Shared/Views/UserSettings/PrivacySettings.swift @@ -13,7 +13,7 @@ struct PrivacySettings: View { @AppStorage(DEFAULT_PRIVACY_ACCEPT_IMAGES) private var autoAcceptImages = true @AppStorage(DEFAULT_PRIVACY_LINK_PREVIEWS) private var useLinkPreviews = true @AppStorage(DEFAULT_DEVELOPER_TOOLS) private var developerTools = false - @AppStorage(GROUP_DEFAULT_PRIVACY_TRANSFER_IMAGES_INLINE, store: groupDefaults) private var transferImagesInline = true + @AppStorage(GROUP_DEFAULT_PRIVACY_TRANSFER_IMAGES_INLINE, store: groupDefaults) private var transferImagesInline = false @State private var simplexLinkMode = privacySimplexLinkModeDefault.get() @AppStorage(DEFAULT_PRIVACY_PROTECT_SCREEN) private var protectScreen = false @@ -35,7 +35,7 @@ struct PrivacySettings: View { } } settingsRow("photo.on.rectangle") { - Toggle("Transfer images faster", isOn: $transferImagesInline) + Toggle("Transfer images inline (BETA)", isOn: $transferImagesInline) } settingsRow("network") { Toggle("Send link previews", isOn: $useLinkPreviews) 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 d3d8a663a4..21b5e942fb 100644 --- a/apps/ios/SimpleX Localizations/de.xcloc/Localized Contents/de.xliff +++ b/apps/ios/SimpleX Localizations/de.xcloc/Localized Contents/de.xliff @@ -940,11 +940,6 @@ Dunkel No comment provided by engineer. - - Data - Daten - No comment provided by engineer. - Database ID Datenbank-ID @@ -1093,11 +1088,6 @@ Datenbank löschen No comment provided by engineer. - - Delete files & media - Dateien & Medien löschen - No comment provided by engineer. - Delete files and media? Dateien und Medien löschen? @@ -3307,9 +3297,9 @@ Sie werden aufgefordert, die Authentifizierung abzuschließen, bevor diese Funkt Um die Ende-zu-Ende-Verschlüsselung mit Ihrem Kontakt zu überprüfen, müssen Sie den Sicherheitscode in Ihren Apps vergleichen oder scannen. No comment provided by engineer. - - Transfer images faster - Bilder schneller übertragen + + Transfer images inline (BETA) + Bilder schneller übertragen (BETA) No comment provided by engineer. @@ -3764,11 +3754,6 @@ Bitten Sie Ihren Kontakt darum einen weiteren Verbindungs-Link zu erzeugen, um s Ihre Chat-Datenbank ist nicht verschlüsselt. Bitte legen Sie ein Passwort fest, um sie zu schützen. No comment provided by engineer. - - Your chat profile - Mein Chat-Profil - No comment provided by engineer. - Your chat profile will be sent to group members Ihr Chat-Profil wird an Gruppenmitglieder gesendet 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 1373dd2021..c35e215976 100644 --- a/apps/ios/SimpleX Localizations/en.xcloc/Localized Contents/en.xliff +++ b/apps/ios/SimpleX Localizations/en.xcloc/Localized Contents/en.xliff @@ -940,11 +940,6 @@ Dark No comment provided by engineer. - - Data - Data - No comment provided by engineer. - Database ID Database ID @@ -1093,11 +1088,6 @@ Delete database No comment provided by engineer. - - Delete files & media - Delete files & media - No comment provided by engineer. - Delete files and media? Delete files and media? @@ -3307,9 +3297,9 @@ You will be prompted to complete authentication before this feature is enabled.< To verify end-to-end encryption with your contact compare (or scan) the code on your devices. No comment provided by engineer. - - Transfer images faster - Transfer images faster + + Transfer images inline (BETA) + Transfer images inline (BETA) No comment provided by engineer. @@ -3764,11 +3754,6 @@ To connect, please ask your contact to create another connection link and check Your chat database is not encrypted - set passphrase to encrypt it. No comment provided by engineer. - - Your chat profile - Your chat profile - No comment provided by engineer. - Your chat profile will be sent to group members Your chat profile will be sent to group members 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 6dbff7f0a7..f8e6054bcb 100644 --- a/apps/ios/SimpleX Localizations/fr.xcloc/Localized Contents/fr.xliff +++ b/apps/ios/SimpleX Localizations/fr.xcloc/Localized Contents/fr.xliff @@ -939,11 +939,6 @@ Sombre No comment provided by engineer. - - Data - Données - No comment provided by engineer. - Database ID ID de base de données @@ -1092,11 +1087,6 @@ Supprimer la base de données No comment provided by engineer. - - Delete files & media - Supprimer les fichiers et médias - No comment provided by engineer. - Delete files and media? Supprimer les fichiers et médias ? @@ -3294,9 +3284,9 @@ Vous serez invité à confirmer l'authentification avant que cette fonction ne s Pour vérifier le chiffrement de bout en bout avec votre contact, comparez (ou scannez) le code sur vos appareils. No comment provided by engineer. - - Transfer images faster - Transfert d'images plus rapide + + Transfer images inline (BETA) + Transfert d'images plus rapide (BETA) No comment provided by engineer. @@ -3751,11 +3741,6 @@ Pour vous connecter, veuillez demander à votre contact de créer un autre lien Votre base de données de chat n'est pas chiffrée - définisez une phrase secrète. No comment provided by engineer. - - Your chat profile - Votre profil de chat - No comment provided by engineer. - Your chat profile will be sent to group members Votre profil de chat sera envoyé aux membres du groupe 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 2466d5a034..738a8876d0 100644 --- a/apps/ios/SimpleX Localizations/it.xcloc/Localized Contents/it.xliff +++ b/apps/ios/SimpleX Localizations/it.xcloc/Localized Contents/it.xliff @@ -940,11 +940,6 @@ Scuro No comment provided by engineer. - - Data - Dati - No comment provided by engineer. - Database ID ID database @@ -1093,11 +1088,6 @@ Elimina database No comment provided by engineer. - - Delete files & media - Elimina file e multimediali - No comment provided by engineer. - Delete files and media? Eliminare i file e i multimediali? @@ -3307,9 +3297,9 @@ Ti verrà chiesto di completare l'autenticazione prima di attivare questa funzio Per verificare la crittografia end-to-end con il tuo contatto, confrontate (o scansionate) il codice sui vostri dispositivi. No comment provided by engineer. - - Transfer images faster - Trasferisci immagini più velocemente + + Transfer images inline (BETA) + Trasferisci immagini più velocemente (BETA) No comment provided by engineer. @@ -3764,11 +3754,6 @@ Per connetterti, chiedi al tuo contatto di creare un altro link di connessione e Il tuo database della chat non è crittografato: imposta la password per crittografarlo. No comment provided by engineer. - - Your chat profile - Il tuo profilo di chat - No comment provided by engineer. - Your chat profile will be sent to group members Il tuo profilo di chat verrà inviato ai membri del gruppo 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 46c185ff01..d877fc51b0 100644 --- a/apps/ios/SimpleX Localizations/ru.xcloc/Localized Contents/ru.xliff +++ b/apps/ios/SimpleX Localizations/ru.xcloc/Localized Contents/ru.xliff @@ -940,11 +940,6 @@ Тёмная No comment provided by engineer. - - Data - Данные - No comment provided by engineer. - Database ID ID базы данных @@ -1093,11 +1088,6 @@ Удалить данные чата No comment provided by engineer. - - Delete files & media - Удалить файлы и медиа - No comment provided by engineer. - Delete files and media? Удалить файлы и медиа? @@ -3307,9 +3297,9 @@ You will be prompted to complete authentication before this feature is enabled.< Чтобы подтвердить end-to-end шифрование с вашим контактом сравните (или сканируйте) код безопасности на ваших устройствах. No comment provided by engineer. - - Transfer images faster - Передавать изображения быстрее + + Transfer images inline (BETA) + Передавать изображения в том же соединении0 (БЕТА) No comment provided by engineer. @@ -3764,11 +3754,6 @@ To connect, please ask your contact to create another connection link and check База данных НЕ зашифрована. Установите пароль, чтобы защитить ваши данные. No comment provided by engineer. - - Your chat profile - Ваш профиль - No comment provided by engineer. - Your chat profile will be sent to group members Ваш профиль чата будет отправлен членам группы diff --git a/apps/ios/SimpleXChat/AppGroup.swift b/apps/ios/SimpleXChat/AppGroup.swift index d9135a3128..8ac3d647ce 100644 --- a/apps/ios/SimpleXChat/AppGroup.swift +++ b/apps/ios/SimpleXChat/AppGroup.swift @@ -50,7 +50,7 @@ public func registerGroupDefaults() { GROUP_DEFAULT_STORE_DB_PASSPHRASE: true, GROUP_DEFAULT_INITIAL_RANDOM_DB_PASSPHRASE: false, GROUP_DEFAULT_PRIVACY_ACCEPT_IMAGES: true, - GROUP_DEFAULT_PRIVACY_TRANSFER_IMAGES_INLINE: true + GROUP_DEFAULT_PRIVACY_TRANSFER_IMAGES_INLINE: false ]) } diff --git a/apps/ios/de.lproj/Localizable.strings b/apps/ios/de.lproj/Localizable.strings index 8f87205ba0..7c569903ea 100644 --- a/apps/ios/de.lproj/Localizable.strings +++ b/apps/ios/de.lproj/Localizable.strings @@ -674,9 +674,6 @@ /* No comment provided by engineer. */ "Dark" = "Dunkel"; -/* No comment provided by engineer. */ -"Data" = "Daten"; - /* No comment provided by engineer. */ "Database encrypted!" = "Datenbank verschlüsselt!"; @@ -764,9 +761,6 @@ /* No comment provided by engineer. */ "Delete database" = "Datenbank löschen"; -/* No comment provided by engineer. */ -"Delete files & media" = "Dateien & Medien löschen"; - /* No comment provided by engineer. */ "Delete files and media?" = "Dateien und Medien löschen?"; @@ -2257,7 +2251,7 @@ "To verify end-to-end encryption with your contact compare (or scan) the code on your devices." = "Um die Ende-zu-Ende-Verschlüsselung mit Ihrem Kontakt zu überprüfen, müssen Sie den Sicherheitscode in Ihren Apps vergleichen oder scannen."; /* No comment provided by engineer. */ -"Transfer images faster" = "Bilder schneller übertragen"; +"Transfer images inline (BETA)" = "Bilder schneller übertragen (BETA)"; /* No comment provided by engineer. */ "Transport isolation" = "Transport-Isolation"; @@ -2586,9 +2580,6 @@ /* No comment provided by engineer. */ "Your chat database is not encrypted - set passphrase to encrypt it." = "Ihre Chat-Datenbank ist nicht verschlüsselt. Bitte legen Sie ein Passwort fest, um sie zu schützen."; -/* No comment provided by engineer. */ -"Your chat profile" = "Mein Chat-Profil"; - /* No comment provided by engineer. */ "Your chat profile will be sent to group members" = "Ihr Chat-Profil wird an Gruppenmitglieder gesendet"; diff --git a/apps/ios/fr.lproj/Localizable.strings b/apps/ios/fr.lproj/Localizable.strings index b3a9921c98..e3398ea16c 100644 --- a/apps/ios/fr.lproj/Localizable.strings +++ b/apps/ios/fr.lproj/Localizable.strings @@ -671,9 +671,6 @@ /* No comment provided by engineer. */ "Dark" = "Sombre"; -/* No comment provided by engineer. */ -"Data" = "Données"; - /* No comment provided by engineer. */ "Database encrypted!" = "Base de données chiffrée !"; @@ -761,9 +758,6 @@ /* No comment provided by engineer. */ "Delete database" = "Supprimer la base de données"; -/* No comment provided by engineer. */ -"Delete files & media" = "Supprimer les fichiers et médias"; - /* No comment provided by engineer. */ "Delete files and media?" = "Supprimer les fichiers et médias ?"; @@ -2218,7 +2212,7 @@ "To verify end-to-end encryption with your contact compare (or scan) the code on your devices." = "Pour vérifier le chiffrement de bout en bout avec votre contact, comparez (ou scannez) le code sur vos appareils."; /* No comment provided by engineer. */ -"Transfer images faster" = "Transfert d'images plus rapide"; +"Transfer images inline (BETA)" = "Transfert d'images plus rapide (BETA)"; /* No comment provided by engineer. */ "Transport isolation" = "Isolement du transport"; @@ -2547,9 +2541,6 @@ /* No comment provided by engineer. */ "Your chat database is not encrypted - set passphrase to encrypt it." = "Votre base de données de chat n'est pas chiffrée - définisez une phrase secrète."; -/* No comment provided by engineer. */ -"Your chat profile" = "Votre profil de chat"; - /* No comment provided by engineer. */ "Your chat profile will be sent to group members" = "Votre profil de chat sera envoyé aux membres du groupe"; diff --git a/apps/ios/it.lproj/Localizable.strings b/apps/ios/it.lproj/Localizable.strings index 1d5df356f9..493c71f9c0 100644 --- a/apps/ios/it.lproj/Localizable.strings +++ b/apps/ios/it.lproj/Localizable.strings @@ -674,9 +674,6 @@ /* No comment provided by engineer. */ "Dark" = "Scuro"; -/* No comment provided by engineer. */ -"Data" = "Dati"; - /* No comment provided by engineer. */ "Database encrypted!" = "Database crittografato!"; @@ -764,9 +761,6 @@ /* No comment provided by engineer. */ "Delete database" = "Elimina database"; -/* No comment provided by engineer. */ -"Delete files & media" = "Elimina file e multimediali"; - /* No comment provided by engineer. */ "Delete files and media?" = "Eliminare i file e i multimediali?"; @@ -2257,7 +2251,7 @@ "To verify end-to-end encryption with your contact compare (or scan) the code on your devices." = "Per verificare la crittografia end-to-end con il tuo contatto, confrontate (o scansionate) il codice sui vostri dispositivi."; /* No comment provided by engineer. */ -"Transfer images faster" = "Trasferisci immagini più velocemente"; +"Transfer images inline (BETA)" = "Trasferisci immagini più velocemente (BETA)"; /* No comment provided by engineer. */ "Transport isolation" = "Isolamento del trasporto"; @@ -2586,9 +2580,6 @@ /* No comment provided by engineer. */ "Your chat database is not encrypted - set passphrase to encrypt it." = "Il tuo database della chat non è crittografato: imposta la password per crittografarlo."; -/* No comment provided by engineer. */ -"Your chat profile" = "Il tuo profilo di chat"; - /* No comment provided by engineer. */ "Your chat profile will be sent to group members" = "Il tuo profilo di chat verrà inviato ai membri del gruppo"; diff --git a/apps/ios/ru.lproj/Localizable.strings b/apps/ios/ru.lproj/Localizable.strings index 027dbdc01b..15f1f353d6 100644 --- a/apps/ios/ru.lproj/Localizable.strings +++ b/apps/ios/ru.lproj/Localizable.strings @@ -674,9 +674,6 @@ /* No comment provided by engineer. */ "Dark" = "Тёмная"; -/* No comment provided by engineer. */ -"Data" = "Данные"; - /* No comment provided by engineer. */ "Database encrypted!" = "База данных зашифрована!"; @@ -764,9 +761,6 @@ /* No comment provided by engineer. */ "Delete database" = "Удалить данные чата"; -/* No comment provided by engineer. */ -"Delete files & media" = "Удалить файлы и медиа"; - /* No comment provided by engineer. */ "Delete files and media?" = "Удалить файлы и медиа?"; @@ -2257,7 +2251,7 @@ "To verify end-to-end encryption with your contact compare (or scan) the code on your devices." = "Чтобы подтвердить end-to-end шифрование с вашим контактом сравните (или сканируйте) код безопасности на ваших устройствах."; /* No comment provided by engineer. */ -"Transfer images faster" = "Передавать изображения быстрее"; +"Transfer images inline (BETA)" = "Передавать изображения в том же соединении0 (БЕТА)"; /* No comment provided by engineer. */ "Transport isolation" = "Отдельные сессии для"; @@ -2586,9 +2580,6 @@ /* No comment provided by engineer. */ "Your chat database is not encrypted - set passphrase to encrypt it." = "База данных НЕ зашифрована. Установите пароль, чтобы защитить ваши данные."; -/* No comment provided by engineer. */ -"Your chat profile" = "Ваш профиль"; - /* No comment provided by engineer. */ "Your chat profile will be sent to group members" = "Ваш профиль чата будет отправлен членам группы";