From 838e14af6041342678f011de6ecd54a47cffcbc7 Mon Sep 17 00:00:00 2001 From: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com> Date: Sat, 20 May 2023 18:09:18 +0200 Subject: [PATCH] mobile: whats new in v5.1 (#2470) * mobile: whats new in v5.1 * post links, better layout * ios: export localizations * update translations --- .../java/chat/simplex/app/ui/theme/Type.kt | 5 ++ .../app/views/helpers/CloseSheetBar.kt | 5 +- .../app/views/onboarding/WhatsNewView.kt | 71 ++++++++++++++++--- .../app/src/main/res/values/strings.xml | 11 +++ .../Views/Onboarding/WhatsNewView.swift | 46 +++++++++++- .../ar.xcloc/Localized Contents/ar.xliff | 4 +- .../cs.xcloc/Localized Contents/cs.xliff | 32 ++++++++- .../de.xcloc/Localized Contents/de.xliff | 32 ++++++++- .../el.xcloc/Localized Contents/el.xliff | 4 +- .../en.xcloc/Localized Contents/en.xliff | 40 ++++++++++- .../es.xcloc/Localized Contents/es.xliff | 32 ++++++++- .../fi.xcloc/Localized Contents/fi.xliff | 4 +- .../fr.xcloc/Localized Contents/fr.xliff | 32 ++++++++- .../he.xcloc/Localized Contents/he.xliff | 4 +- .../hi.xcloc/Localized Contents/hi.xliff | 4 +- .../hr.xcloc/Localized Contents/hr.xliff | 4 +- .../it.xcloc/Localized Contents/it.xliff | 32 ++++++++- .../ja.xcloc/Localized Contents/ja.xliff | 6 +- .../ko.xcloc/Localized Contents/ko.xliff | 4 +- .../lt.xcloc/Localized Contents/lt.xliff | 4 +- .../nl.xcloc/Localized Contents/nl.xliff | 32 ++++++++- .../pl.xcloc/Localized Contents/pl.xliff | 32 ++++++++- .../Localized Contents/pt-BR.xliff | 4 +- .../pt.xcloc/Localized Contents/pt.xliff | 4 +- .../ru.xcloc/Localized Contents/ru.xliff | 32 ++++++++- .../uk.xcloc/Localized Contents/uk.xliff | 4 +- .../Localized Contents/zh-Hans.xliff | 32 ++++++++- .../Localized Contents/zh-Hant.xliff | 6 +- apps/ios/cs.lproj/Localizable.strings | 2 +- apps/ios/de.lproj/Localizable.strings | 2 +- apps/ios/es.lproj/Localizable.strings | 2 +- apps/ios/fr.lproj/Localizable.strings | 2 +- apps/ios/it.lproj/Localizable.strings | 2 +- apps/ios/nl.lproj/Localizable.strings | 2 +- apps/ios/pl.lproj/Localizable.strings | 2 +- apps/ios/ru.lproj/Localizable.strings | 2 +- apps/ios/zh-Hans.lproj/Localizable.strings | 2 +- 37 files changed, 461 insertions(+), 79 deletions(-) diff --git a/apps/android/app/src/main/java/chat/simplex/app/ui/theme/Type.kt b/apps/android/app/src/main/java/chat/simplex/app/ui/theme/Type.kt index 7297eeec45..177a8effad 100644 --- a/apps/android/app/src/main/java/chat/simplex/app/ui/theme/Type.kt +++ b/apps/android/app/src/main/java/chat/simplex/app/ui/theme/Type.kt @@ -33,6 +33,11 @@ val Typography = Typography( fontWeight = FontWeight.Normal, fontSize = 18.5.sp ), + h4 = TextStyle( + fontFamily = Inter, + fontWeight = FontWeight.Normal, + fontSize = 17.5.sp + ), body1 = TextStyle( fontFamily = Inter, fontWeight = FontWeight.Normal, diff --git a/apps/android/app/src/main/java/chat/simplex/app/views/helpers/CloseSheetBar.kt b/apps/android/app/src/main/java/chat/simplex/app/views/helpers/CloseSheetBar.kt index 6ee9b62a05..b7d42f493d 100644 --- a/apps/android/app/src/main/java/chat/simplex/app/views/helpers/CloseSheetBar.kt +++ b/apps/android/app/src/main/java/chat/simplex/app/views/helpers/CloseSheetBar.kt @@ -12,6 +12,7 @@ import androidx.compose.ui.graphics.Color import androidx.compose.ui.text.style.TextAlign import androidx.compose.ui.text.style.TextOverflow import androidx.compose.ui.tooling.preview.Preview +import androidx.compose.ui.unit.Dp import androidx.compose.ui.unit.dp import chat.simplex.app.ui.theme.* @@ -43,7 +44,7 @@ fun CloseSheetBar(close: (() -> Unit)?, endButtons: @Composable RowScope.() -> U } @Composable -fun AppBarTitle(title: String, withPadding: Boolean = true) { +fun AppBarTitle(title: String, withPadding: Boolean = true, bottomPadding: Dp = DEFAULT_PADDING * 1.5f) { val theme = CurrentColors.collectAsState() val titleColor = CurrentColors.collectAsState().value.appColors.title val brush = if (theme.value.base == DefaultTheme.SIMPLEX) @@ -54,7 +55,7 @@ fun AppBarTitle(title: String, withPadding: Boolean = true) { title, Modifier .fillMaxWidth() - .padding(bottom = DEFAULT_PADDING * 1.5f, start = if (withPadding) DEFAULT_PADDING else 0.dp, end = if (withPadding) DEFAULT_PADDING else 0.dp,), + .padding(bottom = bottomPadding, start = if (withPadding) DEFAULT_PADDING else 0.dp, end = if (withPadding) DEFAULT_PADDING else 0.dp,), overflow = TextOverflow.Ellipsis, style = MaterialTheme.typography.h1.copy(brush = brush), color = MaterialTheme.colors.primaryVariant, diff --git a/apps/android/app/src/main/java/chat/simplex/app/views/onboarding/WhatsNewView.kt b/apps/android/app/src/main/java/chat/simplex/app/views/onboarding/WhatsNewView.kt index 72c28e846f..b67f668f9e 100644 --- a/apps/android/app/src/main/java/chat/simplex/app/views/onboarding/WhatsNewView.kt +++ b/apps/android/app/src/main/java/chat/simplex/app/views/onboarding/WhatsNewView.kt @@ -20,6 +20,7 @@ import androidx.compose.ui.text.style.TextAlign import androidx.compose.ui.text.style.TextOverflow import androidx.compose.ui.tooling.preview.Preview import androidx.compose.ui.unit.dp +import androidx.compose.ui.unit.sp import chat.simplex.app.BuildConfig import chat.simplex.app.R import chat.simplex.app.model.ChatModel @@ -42,9 +43,7 @@ fun WhatsNewView(viaSettings: Boolean = false, close: () -> Unit) { ) } - Column( - modifier = Modifier.padding(bottom = 12.dp) - ) { + Column(modifier = Modifier.padding(bottom = 12.dp)) { Row( verticalAlignment = Alignment.CenterVertically, horizontalArrangement = Arrangement.spacedBy(8.dp), @@ -53,16 +52,16 @@ fun WhatsNewView(viaSettings: Boolean = false, close: () -> Unit) { Icon(icon, stringResource(titleId), tint = MaterialTheme.colors.secondary) Text( generalGetString(titleId), - maxLines = 1, + maxLines = 2, overflow = TextOverflow.Ellipsis, - style = MaterialTheme.typography.h3, + style = MaterialTheme.typography.h4, fontWeight = FontWeight.Medium ) if (link != null) { linkButton(link) } } - Text(generalGetString(descrId)) + Text(generalGetString(descrId), fontSize = 15.sp) } } @@ -114,14 +113,23 @@ fun WhatsNewView(viaSettings: Boolean = false, close: () -> Unit) { .fillMaxSize() .padding(horizontal = DEFAULT_PADDING) .verticalScroll(rememberScrollState()), - verticalArrangement = Arrangement.spacedBy(DEFAULT_PADDING) + verticalArrangement = Arrangement.spacedBy(DEFAULT_PADDING.times(0.75f)) ) { - AppBarTitle(String.format(generalGetString(R.string.new_in_version), v.version)) + AppBarTitle(String.format(generalGetString(R.string.new_in_version), v.version), bottomPadding = DEFAULT_PADDING) v.features.forEach { feature -> featureDescription(painterResource(feature.icon), feature.titleId, feature.descrId, feature.link) } + val uriHandler = LocalUriHandler.current + if (v.post != null) { + Row(horizontalArrangement = Arrangement.spacedBy(8.dp), modifier = Modifier.padding(top = DEFAULT_PADDING.div(4))) { + Text(stringResource(R.string.whats_new_read_more), color = MaterialTheme.colors.primary, + modifier = Modifier.clickable { uriHandler.openUriCatching(v.post) }) + Icon(painterResource(R.drawable.ic_open_in_new), stringResource(R.string.whats_new_read_more), tint = MaterialTheme.colors.primary) + } + } + if (!viaSettings) { Spacer(Modifier.fillMaxHeight().weight(1f)) Box( @@ -153,12 +161,14 @@ private data class FeatureDescription( private data class VersionDescription( val version: String, - val features: List + val features: List, + val post: String? = null, ) private val versionDescriptions: List = listOf( VersionDescription( version = "v4.2", + post = "https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html", features = listOf( FeatureDescription( icon = R.drawable.ic_verified_user, @@ -180,6 +190,7 @@ private val versionDescriptions: List = listOf( ), VersionDescription( version = "v4.3", + post = "https://simplex.chat/blog/20221206-simplex-chat-v4.3-voice-messages.html", features = listOf( FeatureDescription( icon = R.drawable.ic_mic, @@ -205,6 +216,7 @@ private val versionDescriptions: List = listOf( ), VersionDescription( version = "v4.4", + post = "https://simplex.chat/blog/20230103-simplex-chat-v4.4-disappearing-messages.html", features = listOf( FeatureDescription( icon = R.drawable.ic_timer, @@ -230,6 +242,7 @@ private val versionDescriptions: List = listOf( ), VersionDescription( version = "v4.5", + post = "https://simplex.chat/blog/20230204-simplex-chat-v4-5-user-chat-profiles.html", features = listOf( FeatureDescription( icon = R.drawable.ic_manage_accounts, @@ -267,6 +280,7 @@ private val versionDescriptions: List = listOf( ), VersionDescription( version = "v4.6", + post = "https://simplex.chat/blog/20230328-simplex-chat-v4-6-hidden-profiles.html", features = listOf( FeatureDescription( icon = R.drawable.ic_lock, @@ -303,6 +317,7 @@ private val versionDescriptions: List = listOf( ), VersionDescription( version = "v5.0", + post = "https://simplex.chat/blog/20230422-simplex-chat-vision-funding-v5-videos-files-passcode.html", features = listOf( FeatureDescription( icon = R.drawable.ic_upload_file, @@ -321,6 +336,44 @@ private val versionDescriptions: List = listOf( link = "https://github.com/simplex-chat/simplex-chat/tree/stable#help-translating-simplex-chat" ) ) + ), + // Also in v5.1 + // preference to disable calls per contact + // configurable SOCKS proxy port + // access welcome message via a group profile + // improve calls on lock screen + // better formatting of times and dates + VersionDescription( + version = "v5.1", + post = "https://simplex.chat/blog/20230523-simplex-chat-v5-1-message-reactions-self-destruct-passcode.html", + features = listOf( + FeatureDescription( + icon = R.drawable.ic_add_reaction, + titleId = R.string.v5_1_message_reactions, + descrId = R.string.v5_1_message_reactions_descr + ), + FeatureDescription( + icon = R.drawable.ic_chat, + titleId = R.string.v5_1_better_messages, + descrId = R.string.v5_1_better_messages_descr + ), + FeatureDescription( + icon = R.drawable.ic_light_mode, + titleId = R.string.v5_1_custom_themes, + descrId = R.string.v5_1_custom_themes_descr + ), + FeatureDescription( + icon = R.drawable.ic_lock, + titleId = R.string.v5_1_self_destruct_passcode, + descrId = R.string.v5_1_self_destruct_passcode_descr + ), + FeatureDescription( + icon = R.drawable.ic_translate, + titleId = R.string.v5_1_japanese_portuguese_interface, + descrId = R.string.whats_new_thanks_to_users_contribute_weblate, + link = "https://github.com/simplex-chat/simplex-chat/tree/stable#help-translating-simplex-chat" + ) + ) ) ) diff --git a/apps/android/app/src/main/res/values/strings.xml b/apps/android/app/src/main/res/values/strings.xml index 4d616fc5ee..c00d3bcd4f 100644 --- a/apps/android/app/src/main/res/values/strings.xml +++ b/apps/android/app/src/main/res/values/strings.xml @@ -1367,6 +1367,7 @@ What\'s new New in %s + Read more Security assessment SimpleX Chat security was audited by Trail of Bits. Group links @@ -1419,6 +1420,16 @@ Set it instead of system authentication. Polish interface Thanks to the users – contribute via Weblate! + Message reactions + Finally, we have them! 🚀 + Self-destruct passcode + All data is erased when it is entered. + Custom themes + Customize and share color themes. + Better messages + - voice messages up to 5 minutes.\n- custom time to disappear.\n- editing history. + Japanese and Portuguese UI + Thanks to the users – contribute via Weblate! seconds diff --git a/apps/ios/Shared/Views/Onboarding/WhatsNewView.swift b/apps/ios/Shared/Views/Onboarding/WhatsNewView.swift index db79fa03dc..df5c287dc0 100644 --- a/apps/ios/Shared/Views/Onboarding/WhatsNewView.swift +++ b/apps/ios/Shared/Views/Onboarding/WhatsNewView.swift @@ -10,6 +10,7 @@ import SwiftUI private struct VersionDescription { var version: String + var post: URL? var features: [FeatureDescription] } @@ -22,11 +23,12 @@ private struct FeatureDescription { private let versionDescriptions: [VersionDescription] = [ VersionDescription( version: "v4.2", + post: URL(string: "https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html"), features: [ FeatureDescription( icon: "checkmark.shield", title: "Security assessment", - description: "SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html)." + description: "SimpleX Chat security was audited by Trail of Bits." ), FeatureDescription( icon: "person.2", @@ -42,6 +44,7 @@ private let versionDescriptions: [VersionDescription] = [ ), VersionDescription( version: "v4.3", + post: URL(string: "https://simplex.chat/blog/20221206-simplex-chat-v4.3-voice-messages.html"), features: [ FeatureDescription( icon: "mic", @@ -67,6 +70,7 @@ private let versionDescriptions: [VersionDescription] = [ ), VersionDescription( version: "v4.4", + post: URL(string: "https://simplex.chat/blog/20230103-simplex-chat-v4.4-disappearing-messages.html"), features: [ FeatureDescription( icon: "stopwatch", @@ -97,6 +101,7 @@ private let versionDescriptions: [VersionDescription] = [ ), VersionDescription( version: "v4.5", + post: URL(string: "https://simplex.chat/blog/20230204-simplex-chat-v4-5-user-chat-profiles.html"), features: [ FeatureDescription( icon: "person.crop.rectangle.stack", @@ -132,6 +137,7 @@ private let versionDescriptions: [VersionDescription] = [ ), VersionDescription( version: "v4.6", + post: URL(string: "https://simplex.chat/blog/20230328-simplex-chat-v4-6-hidden-profiles.html"), features: [ FeatureDescription( icon: "lock", @@ -167,6 +173,7 @@ private let versionDescriptions: [VersionDescription] = [ ), VersionDescription( version: "v5.0", + post: URL(string: "https://simplex.chat/blog/20230422-simplex-chat-vision-funding-v5-videos-files-passcode.html"), features: [ FeatureDescription( icon: "arrow.up.doc", @@ -184,6 +191,35 @@ private let versionDescriptions: [VersionDescription] = [ description: "Thanks to the users – [contribute via Weblate](https://github.com/simplex-chat/simplex-chat/tree/stable#help-translating-simplex-chat)!" ), ] + ), + // Also + // preference to disable calls per contact + // access welcome message via a group profile + VersionDescription( + version: "v5.1", + post: URL(string: "https://simplex.chat/blog/20230523-simplex-chat-v5-1-message-reactions-self-destruct-passcode.html"), + features: [ + FeatureDescription( + icon: "face.smiling", + title: "Message reactions", + description: "Finally, we have them! 🚀" + ), + FeatureDescription( + icon: "arrow.up.message", + title: "Better messages", + description: "- voice messages up to 5 minutes.\n- custom time to disappear.\n- editing history." + ), + FeatureDescription( + icon: "lock", + title: "Self-destruct passcode", + description: "All data is erased when it is entered." + ), + FeatureDescription( + icon: "character", + title: "Japanese interface", + description: "Thanks to the users – [contribute via Weblate](https://github.com/simplex-chat/simplex-chat/tree/stable#help-translating-simplex-chat)!" + ), + ] ) ] @@ -219,6 +255,14 @@ struct WhatsNewView: View { featureDescription(f.icon, f.title, f.description) .padding(.bottom, 8) } + if let post = v.post { + Link(destination: post) { + HStack { + Text("Read more") + Image(systemName: "arrow.up.right.circle") + } + } + } if !viaSettings { Spacer() Button("Ok") { 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 dbbb37fdc9..99da18e12c 100644 --- a/apps/ios/SimpleX Localizations/ar.xcloc/Localized Contents/ar.xliff +++ b/apps/ios/SimpleX Localizations/ar.xcloc/Localized Contents/ar.xliff @@ -2433,8 +2433,8 @@ We will be adding server redundancy to prevent lost messages. Show preview No comment provided by engineer. - - SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html). + + SimpleX Chat security was audited by Trail of Bits. 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 23773f837e..d43033321e 100644 --- a/apps/ios/SimpleX Localizations/cs.xcloc/Localized Contents/cs.xliff +++ b/apps/ios/SimpleX Localizations/cs.xcloc/Localized Contents/cs.xliff @@ -293,6 +293,12 @@ , No comment provided by engineer. + + - voice messages up to 5 minutes. +- custom time to disappear. +- editing history. + No comment provided by engineer. + . . @@ -477,6 +483,10 @@ Všechny chaty a zprávy budou smazány – tuto akci nelze vrátit zpět! No comment provided by engineer. + + All data is erased when it is entered. + No comment provided by engineer. + All group members will remain connected. Všichni členové skupiny zůstanou připojeni. @@ -704,6 +714,10 @@ Špatný hash zprávy No comment provided by engineer. + + Better messages + No comment provided by engineer. + Both you and your contact can add message reactions. No comment provided by engineer. @@ -2003,6 +2017,10 @@ Soubory a média No comment provided by engineer. + + Finally, we have them! 🚀 + No comment provided by engineer. + For console Pro konzoli @@ -2454,6 +2472,10 @@ Italské rozhraní No comment provided by engineer. + + Japanese interface + No comment provided by engineer. + Join Připojte se na @@ -3261,6 +3283,10 @@ Číst No comment provided by engineer. + + Read more + No comment provided by engineer. + Read more in [User Guide](https://simplex.chat/docs/guide/app-settings.html#your-simplex-contact-address). No comment provided by engineer. @@ -3817,9 +3843,9 @@ SimpleX Address No comment provided by engineer. - - SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html). - Zabezpečení SimpleX chatu bylo [auditováno společností Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html). + + SimpleX Chat security was audited by Trail of Bits. + Zabezpečení SimpleX chatu bylo auditováno společností Trail of Bits. No comment provided by engineer. diff --git a/apps/ios/SimpleX Localizations/de.xcloc/Localized Contents/de.xliff b/apps/ios/SimpleX Localizations/de.xcloc/Localized Contents/de.xliff index 00f406b172..2bfc3233cf 100644 --- a/apps/ios/SimpleX Localizations/de.xcloc/Localized Contents/de.xliff +++ b/apps/ios/SimpleX Localizations/de.xcloc/Localized Contents/de.xliff @@ -295,6 +295,12 @@ , No comment provided by engineer. + + - voice messages up to 5 minutes. +- custom time to disappear. +- editing history. + No comment provided by engineer. + . . @@ -487,6 +493,10 @@ Alle Chats und Nachrichten werden gelöscht! Dies kann nicht rückgängig gemacht werden! No comment provided by engineer. + + All data is erased when it is entered. + No comment provided by engineer. + All group members will remain connected. Alle Gruppenmitglieder bleiben verbunden. @@ -719,6 +729,10 @@ Ungültiger Nachrichten-Hash No comment provided by engineer. + + Better messages + No comment provided by engineer. + Both you and your contact can add message reactions. No comment provided by engineer. @@ -2030,6 +2044,10 @@ Dateien & Medien No comment provided by engineer. + + Finally, we have them! 🚀 + No comment provided by engineer. + For console Für Konsole @@ -2485,6 +2503,10 @@ Italienische Bedienoberfläche No comment provided by engineer. + + Japanese interface + No comment provided by engineer. + Join Beitreten @@ -3297,6 +3319,10 @@ Gelesen No comment provided by engineer. + + Read more + No comment provided by engineer. + Read more in [User Guide](https://simplex.chat/docs/guide/app-settings.html#your-simplex-contact-address). Mehr dazu in der [Benutzeranleitung](https://simplex.chat/docs/guide/app-settings.html#your-simplex-contact-address) lesen. @@ -3869,9 +3895,9 @@ SimpleX-Adresse No comment provided by engineer. - - SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html). - Die Sicherheit von SimpleX Chat wurde [von Trail of Bits überprüft](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html). + + SimpleX Chat security was audited by Trail of Bits. + Die Sicherheit von SimpleX Chat wurde von Trail of Bits überprüft. No comment provided by engineer. 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 8759953c90..7649b595cd 100644 --- a/apps/ios/SimpleX Localizations/el.xcloc/Localized Contents/el.xliff +++ b/apps/ios/SimpleX Localizations/el.xcloc/Localized Contents/el.xliff @@ -2803,8 +2803,8 @@ Available in v5.1 Show: No comment provided by engineer. - - SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html). + + SimpleX Chat security was audited by Trail of Bits. 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 a188d4eaea..1675084433 100644 --- a/apps/ios/SimpleX Localizations/en.xcloc/Localized Contents/en.xliff +++ b/apps/ios/SimpleX Localizations/en.xcloc/Localized Contents/en.xliff @@ -297,6 +297,15 @@ , No comment provided by engineer. + + - voice messages up to 5 minutes. +- custom time to disappear. +- editing history. + - voice messages up to 5 minutes. +- custom time to disappear. +- editing history. + No comment provided by engineer. + . . @@ -492,6 +501,11 @@ All chats and messages will be deleted - this cannot be undone! No comment provided by engineer. + + All data is erased when it is entered. + All data is erased when it is entered. + No comment provided by engineer. + All group members will remain connected. All group members will remain connected. @@ -727,6 +741,11 @@ Bad message hash No comment provided by engineer. + + Better messages + Better messages + No comment provided by engineer. + Both you and your contact can add message reactions. Both you and your contact can add message reactions. @@ -2046,6 +2065,11 @@ Files & media No comment provided by engineer. + + Finally, we have them! 🚀 + Finally, we have them! 🚀 + No comment provided by engineer. + For console For console @@ -2504,6 +2528,11 @@ Italian interface No comment provided by engineer. + + Japanese interface + Japanese interface + No comment provided by engineer. + Join Join @@ -3328,6 +3357,11 @@ Read No comment provided by engineer. + + Read more + Read more + No comment provided by engineer. + Read more in [User Guide](https://simplex.chat/docs/guide/app-settings.html#your-simplex-contact-address). Read more in [User Guide](https://simplex.chat/docs/guide/app-settings.html#your-simplex-contact-address). @@ -3908,9 +3942,9 @@ SimpleX Address No comment provided by engineer. - - SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html). - SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html). + + SimpleX Chat security was audited by Trail of Bits. + SimpleX Chat security was audited by Trail of Bits. No comment provided by engineer. diff --git a/apps/ios/SimpleX Localizations/es.xcloc/Localized Contents/es.xliff b/apps/ios/SimpleX Localizations/es.xcloc/Localized Contents/es.xliff index 4e73817fa4..1e6435a803 100644 --- a/apps/ios/SimpleX Localizations/es.xcloc/Localized Contents/es.xliff +++ b/apps/ios/SimpleX Localizations/es.xcloc/Localized Contents/es.xliff @@ -295,6 +295,12 @@ , No comment provided by engineer. + + - voice messages up to 5 minutes. +- custom time to disappear. +- editing history. + No comment provided by engineer. + . . @@ -487,6 +493,10 @@ Se eliminarán todos los chats y mensajes. ¡No se puede deshacer! No comment provided by engineer. + + All data is erased when it is entered. + No comment provided by engineer. + All group members will remain connected. Todos los miembros del grupo permanecerán conectados. @@ -719,6 +729,10 @@ Hash de mensaje incorrecto No comment provided by engineer. + + Better messages + No comment provided by engineer. + Both you and your contact can add message reactions. No comment provided by engineer. @@ -2030,6 +2044,10 @@ Archivos y multimedia No comment provided by engineer. + + Finally, we have them! 🚀 + No comment provided by engineer. + For console Para consola @@ -2485,6 +2503,10 @@ Interfaz en italiano No comment provided by engineer. + + Japanese interface + No comment provided by engineer. + Join Únete @@ -3297,6 +3319,10 @@ Leer No comment provided by engineer. + + Read more + No comment provided by engineer. + Read more in [User Guide](https://simplex.chat/docs/guide/app-settings.html#your-simplex-contact-address). Más información en el [Manual de usuario](https://simplex.chat/docs/guide/app-settings.html#your-simplex-contact-address). @@ -3869,9 +3895,9 @@ Dirección SimpleX No comment provided by engineer. - - SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html). - La seguridad de SimpleX Chat ha sido [auditada por Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html). + + SimpleX Chat security was audited by Trail of Bits. + La seguridad de SimpleX Chat ha sido auditada por Trail of Bits. No comment provided by engineer. 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 cf72da51a0..e652786fd8 100644 --- a/apps/ios/SimpleX Localizations/fi.xcloc/Localized Contents/fi.xliff +++ b/apps/ios/SimpleX Localizations/fi.xcloc/Localized Contents/fi.xliff @@ -2496,8 +2496,8 @@ We will be adding server redundancy to prevent lost messages. Show preview No comment provided by engineer. - - SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html). + + SimpleX Chat security was audited by Trail of Bits. No comment provided by engineer. diff --git a/apps/ios/SimpleX Localizations/fr.xcloc/Localized Contents/fr.xliff b/apps/ios/SimpleX Localizations/fr.xcloc/Localized Contents/fr.xliff index e7191d91d8..570067bf4f 100644 --- a/apps/ios/SimpleX Localizations/fr.xcloc/Localized Contents/fr.xliff +++ b/apps/ios/SimpleX Localizations/fr.xcloc/Localized Contents/fr.xliff @@ -295,6 +295,12 @@ , No comment provided by engineer. + + - voice messages up to 5 minutes. +- custom time to disappear. +- editing history. + No comment provided by engineer. + . . @@ -490,6 +496,10 @@ Toutes les discussions et tous les messages seront supprimés - il est impossible de revenir en arrière ! No comment provided by engineer. + + All data is erased when it is entered. + No comment provided by engineer. + All group members will remain connected. Tous les membres du groupe resteront connectés. @@ -725,6 +735,10 @@ Mauvais hash de message No comment provided by engineer. + + Better messages + No comment provided by engineer. + Both you and your contact can add message reactions. Vous et votre contact pouvez ajouter des réactions aux messages. @@ -2039,6 +2053,10 @@ Fichiers & médias No comment provided by engineer. + + Finally, we have them! 🚀 + No comment provided by engineer. + For console Pour la console @@ -2495,6 +2513,10 @@ Interface en italien No comment provided by engineer. + + Japanese interface + No comment provided by engineer. + Join Rejoindre @@ -3314,6 +3336,10 @@ Lire No comment provided by engineer. + + Read more + No comment provided by engineer. + Read more in [User Guide](https://simplex.chat/docs/guide/app-settings.html#your-simplex-contact-address). Pour en savoir plus, consultez le [Guide de l'utilisateur](https://simplex.chat/docs/guide/app-settings.html#your-simplex-contact-address). @@ -3886,9 +3912,9 @@ Adresse SimpleX No comment provided by engineer. - - SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html). - La sécurité de SimpleX Chat a été [auditée par Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html). + + SimpleX Chat security was audited by Trail of Bits. + La sécurité de SimpleX Chat a été auditée par Trail of Bits. No comment provided by engineer. 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 1665c5220e..12913662ab 100644 --- a/apps/ios/SimpleX Localizations/he.xcloc/Localized Contents/he.xliff +++ b/apps/ios/SimpleX Localizations/he.xcloc/Localized Contents/he.xliff @@ -2803,8 +2803,8 @@ Available in v5.1 Show: No comment provided by engineer. - - SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html). + + SimpleX Chat security was audited by Trail of Bits. No comment provided by engineer. diff --git a/apps/ios/SimpleX Localizations/hi.xcloc/Localized Contents/hi.xliff b/apps/ios/SimpleX Localizations/hi.xcloc/Localized Contents/hi.xliff index fe0432dcac..31746eccd9 100644 --- a/apps/ios/SimpleX Localizations/hi.xcloc/Localized Contents/hi.xliff +++ b/apps/ios/SimpleX Localizations/hi.xcloc/Localized Contents/hi.xliff @@ -2318,8 +2318,8 @@ We will be adding server redundancy to prevent lost messages. Show preview No comment provided by engineer. - - SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html). + + SimpleX Chat security was audited by Trail of Bits. 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 32ffae38d7..abf15ee42d 100644 --- a/apps/ios/SimpleX Localizations/hr.xcloc/Localized Contents/hr.xliff +++ b/apps/ios/SimpleX Localizations/hr.xcloc/Localized Contents/hr.xliff @@ -2429,8 +2429,8 @@ We will be adding server redundancy to prevent lost messages. Show preview No comment provided by engineer. - - SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html). + + SimpleX Chat security was audited by Trail of Bits. No comment provided by engineer. diff --git a/apps/ios/SimpleX Localizations/it.xcloc/Localized Contents/it.xliff b/apps/ios/SimpleX Localizations/it.xcloc/Localized Contents/it.xliff index 00f5f8db84..ca2cd62b5e 100644 --- a/apps/ios/SimpleX Localizations/it.xcloc/Localized Contents/it.xliff +++ b/apps/ios/SimpleX Localizations/it.xcloc/Localized Contents/it.xliff @@ -295,6 +295,12 @@ , No comment provided by engineer. + + - voice messages up to 5 minutes. +- custom time to disappear. +- editing history. + No comment provided by engineer. + . . @@ -490,6 +496,10 @@ Tutte le chat e i messaggi verranno eliminati. Non è reversibile! No comment provided by engineer. + + All data is erased when it is entered. + No comment provided by engineer. + All group members will remain connected. Tutti i membri del gruppo resteranno connessi. @@ -725,6 +735,10 @@ Hash del messaggio errato No comment provided by engineer. + + Better messages + No comment provided by engineer. + Both you and your contact can add message reactions. Sia tu che il tuo contatto potete aggiungere reazioni ai messaggi. @@ -2039,6 +2053,10 @@ File e multimediali No comment provided by engineer. + + Finally, we have them! 🚀 + No comment provided by engineer. + For console Per console @@ -2495,6 +2513,10 @@ Interfaccia italiana No comment provided by engineer. + + Japanese interface + No comment provided by engineer. + Join Entra @@ -3314,6 +3336,10 @@ Leggi No comment provided by engineer. + + Read more + No comment provided by engineer. + Read more in [User Guide](https://simplex.chat/docs/guide/app-settings.html#your-simplex-contact-address). Maggiori informazioni nella [Guida per l'utente](https://simplex.chat/docs/guide/app-settings.html#your-simplex-contact-address). @@ -3888,9 +3914,9 @@ Indirizzo SimpleX No comment provided by engineer. - - SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html). - La sicurezza di SimpleX Chat è stata [verificata da Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html). + + SimpleX Chat security was audited by Trail of Bits. + La sicurezza di SimpleX Chat è stata verificata da Trail of Bits. No comment provided by engineer. diff --git a/apps/ios/SimpleX Localizations/ja.xcloc/Localized Contents/ja.xliff b/apps/ios/SimpleX Localizations/ja.xcloc/Localized Contents/ja.xliff index 4ec88089d0..50492dc512 100644 --- a/apps/ios/SimpleX Localizations/ja.xcloc/Localized Contents/ja.xliff +++ b/apps/ios/SimpleX Localizations/ja.xcloc/Localized Contents/ja.xliff @@ -2884,9 +2884,9 @@ We will be adding server redundancy to prevent lost messages. プレビューを表示 No comment provided by engineer. - - SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html). - SimpleX Chat のセキュリティは [Trail of Bits によって監査されました](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html)。 + + SimpleX Chat security was audited by Trail of Bits. + SimpleX Chat のセキュリティは Trail of Bits によって監査されました。 No comment provided by engineer. 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 2f4a9ed664..cc7b5522e6 100644 --- a/apps/ios/SimpleX Localizations/ko.xcloc/Localized Contents/ko.xliff +++ b/apps/ios/SimpleX Localizations/ko.xcloc/Localized Contents/ko.xliff @@ -2501,8 +2501,8 @@ We will be adding server redundancy to prevent lost messages. Show preview No comment provided by engineer. - - SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html). + + SimpleX Chat security was audited by Trail of Bits. 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 1e8e628d2d..feb1e177f1 100644 --- a/apps/ios/SimpleX Localizations/lt.xcloc/Localized Contents/lt.xliff +++ b/apps/ios/SimpleX Localizations/lt.xcloc/Localized Contents/lt.xliff @@ -2443,8 +2443,8 @@ We will be adding server redundancy to prevent lost messages. Show preview No comment provided by engineer. - - SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html). + + SimpleX Chat security was audited by Trail of Bits. 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 51894a2a29..c01c581e25 100644 --- a/apps/ios/SimpleX Localizations/nl.xcloc/Localized Contents/nl.xliff +++ b/apps/ios/SimpleX Localizations/nl.xcloc/Localized Contents/nl.xliff @@ -297,6 +297,12 @@ , No comment provided by engineer. + + - voice messages up to 5 minutes. +- custom time to disappear. +- editing history. + No comment provided by engineer. + . . @@ -492,6 +498,10 @@ Alle chats en berichten worden verwijderd, dit kan niet ongedaan worden gemaakt! No comment provided by engineer. + + All data is erased when it is entered. + No comment provided by engineer. + All group members will remain connected. Alle groepsleden blijven verbonden. @@ -727,6 +737,10 @@ Onjuiste bericht hash No comment provided by engineer. + + Better messages + No comment provided by engineer. + Both you and your contact can add message reactions. Zowel u als uw contactpersoon kunnen berichtreacties toevoegen. @@ -2046,6 +2060,10 @@ Bestanden en media No comment provided by engineer. + + Finally, we have them! 🚀 + No comment provided by engineer. + For console Voor console @@ -2504,6 +2522,10 @@ Italiaanse interface No comment provided by engineer. + + Japanese interface + No comment provided by engineer. + Join Word lid van @@ -3328,6 +3350,10 @@ Lees No comment provided by engineer. + + Read more + No comment provided by engineer. + Read more in [User Guide](https://simplex.chat/docs/guide/app-settings.html#your-simplex-contact-address). Lees meer in de [Gebruikershandleiding](https://simplex.chat/docs/guide/app-settings.html#uw-simplex-contactadres). @@ -3908,9 +3934,9 @@ SimpleX adres No comment provided by engineer. - - SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html). - De beveiliging van SimpleX Chat is [gecontroleerd door Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html). + + SimpleX Chat security was audited by Trail of Bits. + De beveiliging van SimpleX Chat is gecontroleerd door Trail of Bits. No comment provided by engineer. diff --git a/apps/ios/SimpleX Localizations/pl.xcloc/Localized Contents/pl.xliff b/apps/ios/SimpleX Localizations/pl.xcloc/Localized Contents/pl.xliff index 5839a4af79..c312532660 100644 --- a/apps/ios/SimpleX Localizations/pl.xcloc/Localized Contents/pl.xliff +++ b/apps/ios/SimpleX Localizations/pl.xcloc/Localized Contents/pl.xliff @@ -297,6 +297,12 @@ , No comment provided by engineer. + + - voice messages up to 5 minutes. +- custom time to disappear. +- editing history. + No comment provided by engineer. + . . @@ -492,6 +498,10 @@ Wszystkie czaty i wiadomości zostaną usunięte - nie można tego cofnąć! No comment provided by engineer. + + All data is erased when it is entered. + No comment provided by engineer. + All group members will remain connected. Wszyscy członkowie grupy pozostaną połączeni. @@ -727,6 +737,10 @@ Zły hash wiadomości No comment provided by engineer. + + Better messages + No comment provided by engineer. + Both you and your contact can add message reactions. Zarówno Ty, jak i Twój kontakt możecie dodawać reakcje wiadomości. @@ -2046,6 +2060,10 @@ Pliki i media No comment provided by engineer. + + Finally, we have them! 🚀 + No comment provided by engineer. + For console Dla konsoli @@ -2504,6 +2522,10 @@ Włoski interfejs No comment provided by engineer. + + Japanese interface + No comment provided by engineer. + Join Dołącz @@ -3328,6 +3350,10 @@ Czytaj No comment provided by engineer. + + Read more + No comment provided by engineer. + Read more in [User Guide](https://simplex.chat/docs/guide/app-settings.html#your-simplex-contact-address). Przeczytaj więcej w [Podręczniku Użytkownika](https://simplex.chat/docs/guide/app-settings.html#your-simplex-contact-address). @@ -3908,9 +3934,9 @@ Adres SimpleX No comment provided by engineer. - - SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html). - Bezpieczeństwo SimpleX Chat zostało [zaudytowane przez Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html). + + SimpleX Chat security was audited by Trail of Bits. + Bezpieczeństwo SimpleX Chat zostało zaudytowane przez Trail of Bits. No comment provided by engineer. 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 f73d93df78..e2279731ab 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 @@ -2767,8 +2767,8 @@ We will be adding server redundancy to prevent lost messages. Mostrar prévia No comment provided by engineer. - - SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html). + + SimpleX Chat security was audited by Trail of Bits. 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 d016a4649e..71c523ca4e 100644 --- a/apps/ios/SimpleX Localizations/pt.xcloc/Localized Contents/pt.xliff +++ b/apps/ios/SimpleX Localizations/pt.xcloc/Localized Contents/pt.xliff @@ -2803,8 +2803,8 @@ Available in v5.1 Show: No comment provided by engineer. - - SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html). + + SimpleX Chat security was audited by Trail of Bits. 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 db5c7f93fa..9332a73dd2 100644 --- a/apps/ios/SimpleX Localizations/ru.xcloc/Localized Contents/ru.xliff +++ b/apps/ios/SimpleX Localizations/ru.xcloc/Localized Contents/ru.xliff @@ -293,6 +293,12 @@ , No comment provided by engineer. + + - voice messages up to 5 minutes. +- custom time to disappear. +- editing history. + No comment provided by engineer. + . . @@ -477,6 +483,10 @@ Все чаты и сообщения будут удалены - это нельзя отменить! No comment provided by engineer. + + All data is erased when it is entered. + No comment provided by engineer. + All group members will remain connected. Все члены группы, которые соединились через эту ссылку, останутся в группе. @@ -704,6 +714,10 @@ Ошибка хэш сообщения No comment provided by engineer. + + Better messages + No comment provided by engineer. + Both you and your contact can add message reactions. No comment provided by engineer. @@ -2003,6 +2017,10 @@ Файлы и медиа No comment provided by engineer. + + Finally, we have them! 🚀 + No comment provided by engineer. + For console Для консоли @@ -2454,6 +2472,10 @@ Итальянский интерфейс No comment provided by engineer. + + Japanese interface + No comment provided by engineer. + Join Вступить @@ -3261,6 +3283,10 @@ Прочитано No comment provided by engineer. + + Read more + No comment provided by engineer. + Read more in [User Guide](https://simplex.chat/docs/guide/app-settings.html#your-simplex-contact-address). No comment provided by engineer. @@ -3817,9 +3843,9 @@ SimpleX Address No comment provided by engineer. - - SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html). - Безопасность SimpleX Chat была [проверена Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html). + + SimpleX Chat security was audited by Trail of Bits. + Безопасность SimpleX Chat была проверена Trail of Bits. No comment provided by engineer. 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 d7ffea7d5a..9be1a59501 100644 --- a/apps/ios/SimpleX Localizations/uk.xcloc/Localized Contents/uk.xliff +++ b/apps/ios/SimpleX Localizations/uk.xcloc/Localized Contents/uk.xliff @@ -2390,8 +2390,8 @@ We will be adding server redundancy to prevent lost messages. Show preview No comment provided by engineer. - - SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html). + + SimpleX Chat security was audited by Trail of Bits. No comment provided by engineer. diff --git a/apps/ios/SimpleX Localizations/zh-Hans.xcloc/Localized Contents/zh-Hans.xliff b/apps/ios/SimpleX Localizations/zh-Hans.xcloc/Localized Contents/zh-Hans.xliff index a55ee3119d..d9b35f2799 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 @@ -294,6 +294,12 @@ , No comment provided by engineer. + + - voice messages up to 5 minutes. +- custom time to disappear. +- editing history. + No comment provided by engineer. + . . @@ -480,6 +486,10 @@ 所有聊天记录和消息将被删除——这一行为无法撤销! No comment provided by engineer. + + All data is erased when it is entered. + No comment provided by engineer. + All group members will remain connected. 所有群组成员将保持连接。 @@ -708,6 +718,10 @@ 错误消息散列 No comment provided by engineer. + + Better messages + No comment provided by engineer. + Both you and your contact can add message reactions. No comment provided by engineer. @@ -2007,6 +2021,10 @@ 文件和媒体 No comment provided by engineer. + + Finally, we have them! 🚀 + No comment provided by engineer. + For console 用于控制台 @@ -2458,6 +2476,10 @@ 意大利语界面 No comment provided by engineer. + + Japanese interface + No comment provided by engineer. + Join 加入 @@ -3265,6 +3287,10 @@ 已读 No comment provided by engineer. + + Read more + No comment provided by engineer. + Read more in [User Guide](https://simplex.chat/docs/guide/app-settings.html#your-simplex-contact-address). No comment provided by engineer. @@ -3822,9 +3848,9 @@ SimpleX Address No comment provided by engineer. - - SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html). - SimpleX Chat 的安全性 [由 Trail of Bits 审核](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html)。 + + SimpleX Chat security was audited by Trail of Bits. + SimpleX Chat 的安全性 由 Trail of Bits 审核。 No comment provided by engineer. 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 769e1e2ab7..0782398656 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 @@ -2835,9 +2835,9 @@ We will be adding server redundancy to prevent lost messages. 顯示預覽 No comment provided by engineer. - - SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html). - SimpleX Chat 的安全性[由 Trail of Bits 審核](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html)。 + + SimpleX Chat security was audited by Trail of Bits. + SimpleX Chat 的安全性由 Trail of Bits 審核。 No comment provided by engineer. diff --git a/apps/ios/cs.lproj/Localizable.strings b/apps/ios/cs.lproj/Localizable.strings index 9ba712c103..b477e8a5b6 100644 --- a/apps/ios/cs.lproj/Localizable.strings +++ b/apps/ios/cs.lproj/Localizable.strings @@ -2350,7 +2350,7 @@ "Show:" = "Zobrazit:"; /* No comment provided by engineer. */ -"SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html)." = "Zabezpečení SimpleX chatu bylo [auditováno společností Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html)."; +"SimpleX Chat security was audited by Trail of Bits." = "Zabezpečení SimpleX chatu bylo auditováno společností Trail of Bits."; /* simplex link type */ "SimpleX contact address" = "SimpleX kontaktní adresa"; diff --git a/apps/ios/de.lproj/Localizable.strings b/apps/ios/de.lproj/Localizable.strings index e6c3d4addf..dcb12a440b 100644 --- a/apps/ios/de.lproj/Localizable.strings +++ b/apps/ios/de.lproj/Localizable.strings @@ -2507,7 +2507,7 @@ "SimpleX Address" = "SimpleX-Adresse"; /* No comment provided by engineer. */ -"SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html)." = "Die Sicherheit von SimpleX Chat wurde [von Trail of Bits überprüft](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html)."; +"SimpleX Chat security was audited by Trail of Bits." = "Die Sicherheit von SimpleX Chat wurde von Trail of Bits überprüft."; /* simplex link type */ "SimpleX contact address" = "SimpleX Kontaktadressen-Link"; diff --git a/apps/ios/es.lproj/Localizable.strings b/apps/ios/es.lproj/Localizable.strings index 985ceb6ed2..3320719276 100644 --- a/apps/ios/es.lproj/Localizable.strings +++ b/apps/ios/es.lproj/Localizable.strings @@ -2507,7 +2507,7 @@ "SimpleX Address" = "Dirección SimpleX"; /* No comment provided by engineer. */ -"SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html)." = "La seguridad de SimpleX Chat ha sido [auditada por Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html)."; +"SimpleX Chat security was audited by Trail of Bits." = "La seguridad de SimpleX Chat ha sido auditada por Trail of Bits."; /* simplex link type */ "SimpleX contact address" = "Dirección de contacto SimpleX"; diff --git a/apps/ios/fr.lproj/Localizable.strings b/apps/ios/fr.lproj/Localizable.strings index dca07df7dd..983f431f46 100644 --- a/apps/ios/fr.lproj/Localizable.strings +++ b/apps/ios/fr.lproj/Localizable.strings @@ -2573,7 +2573,7 @@ "SimpleX Address" = "Adresse SimpleX"; /* No comment provided by engineer. */ -"SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html)." = "La sécurité de SimpleX Chat a été [auditée par Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html)."; +"SimpleX Chat security was audited by Trail of Bits." = "La sécurité de SimpleX Chat a été auditée par Trail of Bits."; /* simplex link type */ "SimpleX contact address" = "Adresse de contact SimpleX"; diff --git a/apps/ios/it.lproj/Localizable.strings b/apps/ios/it.lproj/Localizable.strings index 48640de67a..b5a5795255 100644 --- a/apps/ios/it.lproj/Localizable.strings +++ b/apps/ios/it.lproj/Localizable.strings @@ -2582,7 +2582,7 @@ "SimpleX Address" = "Indirizzo SimpleX"; /* No comment provided by engineer. */ -"SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html)." = "La sicurezza di SimpleX Chat è stata [verificata da Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html)."; +"SimpleX Chat security was audited by Trail of Bits." = "La sicurezza di SimpleX Chat è stata verificata da Trail of Bits."; /* simplex link type */ "SimpleX contact address" = "Indirizzo del contatto SimpleX"; diff --git a/apps/ios/nl.lproj/Localizable.strings b/apps/ios/nl.lproj/Localizable.strings index 08ac23d8a6..1ae3220067 100644 --- a/apps/ios/nl.lproj/Localizable.strings +++ b/apps/ios/nl.lproj/Localizable.strings @@ -2642,7 +2642,7 @@ "SimpleX Address" = "SimpleX adres"; /* No comment provided by engineer. */ -"SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html)." = "De beveiliging van SimpleX Chat is [gecontroleerd door Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html)."; +"SimpleX Chat security was audited by Trail of Bits." = "De beveiliging van SimpleX Chat is gecontroleerd door Trail of Bits."; /* simplex link type */ "SimpleX contact address" = "SimpleX contact adres"; diff --git a/apps/ios/pl.lproj/Localizable.strings b/apps/ios/pl.lproj/Localizable.strings index c36c846518..8630170cd5 100644 --- a/apps/ios/pl.lproj/Localizable.strings +++ b/apps/ios/pl.lproj/Localizable.strings @@ -2642,7 +2642,7 @@ "SimpleX Address" = "Adres SimpleX"; /* No comment provided by engineer. */ -"SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html)." = "Bezpieczeństwo SimpleX Chat zostało [zaudytowane przez Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html)."; +"SimpleX Chat security was audited by Trail of Bits." = "Bezpieczeństwo SimpleX Chat zostało zaudytowane przez Trail of Bits."; /* simplex link type */ "SimpleX contact address" = "Adres kontaktowy SimpleX"; diff --git a/apps/ios/ru.lproj/Localizable.strings b/apps/ios/ru.lproj/Localizable.strings index 91a1b75263..beabc894a4 100644 --- a/apps/ios/ru.lproj/Localizable.strings +++ b/apps/ios/ru.lproj/Localizable.strings @@ -2350,7 +2350,7 @@ "Show:" = "Показать:"; /* No comment provided by engineer. */ -"SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html)." = "Безопасность SimpleX Chat была [проверена Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html)."; +"SimpleX Chat security was audited by Trail of Bits." = "Безопасность SimpleX Chat была проверена Trail of Bits."; /* simplex link type */ "SimpleX contact address" = "SimpleX ссылка-контакт"; diff --git a/apps/ios/zh-Hans.lproj/Localizable.strings b/apps/ios/zh-Hans.lproj/Localizable.strings index f629f75899..7c56ddcaf4 100644 --- a/apps/ios/zh-Hans.lproj/Localizable.strings +++ b/apps/ios/zh-Hans.lproj/Localizable.strings @@ -2365,7 +2365,7 @@ "Show:" = "显示:"; /* No comment provided by engineer. */ -"SimpleX Chat security was [audited by Trail of Bits](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html)." = "SimpleX Chat 的安全性 [由 Trail of Bits 审核](https://simplex.chat/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html)。"; +"SimpleX Chat security was audited by Trail of Bits." = "SimpleX Chat 的安全性 由 Trail of Bits 审核。"; /* simplex link type */ "SimpleX contact address" = "SimpleX 联系地址";