diff --git a/apps/ios/Shared/Views/ChatList/ChatListNavLink.swift b/apps/ios/Shared/Views/ChatList/ChatListNavLink.swift
index 2c5ca5c4db..3de6c93101 100644
--- a/apps/ios/Shared/Views/ChatList/ChatListNavLink.swift
+++ b/apps/ios/Shared/Views/ChatList/ChatListNavLink.swift
@@ -244,7 +244,7 @@ struct ChatListNavLink: View {
await MainActor.run { inProgress = false }
}
} label: {
- SwipeLabel("Join", systemImage: chat.chatInfo.incognito ? "theatermasks" : "ipad.and.arrow.forward", inverted: oneHandUI)
+ SwipeLabel(NSLocalizedString("Join", comment: "swipe action"), systemImage: chat.chatInfo.incognito ? "theatermasks" : "ipad.and.arrow.forward", inverted: oneHandUI)
}
.tint(chat.chatInfo.incognito ? .indigo : theme.colors.primary)
}
@@ -254,14 +254,14 @@ struct ChatListNavLink: View {
Button {
Task { await markChatRead(chat) }
} label: {
- SwipeLabel("Read", systemImage: "checkmark", inverted: oneHandUI)
+ SwipeLabel(NSLocalizedString("Read", comment: "swipe action"), systemImage: "checkmark", inverted: oneHandUI)
}
.tint(theme.colors.primary)
} else {
Button {
Task { await markChatUnread(chat) }
} label: {
- SwipeLabel("Unread", systemImage: "circlebadge.fill", inverted: oneHandUI)
+ SwipeLabel(NSLocalizedString("Unread", comment: "swipe action"), systemImage: "circlebadge.fill", inverted: oneHandUI)
}
.tint(theme.colors.primary)
}
@@ -273,14 +273,14 @@ struct ChatListNavLink: View {
Button {
toggleChatFavorite(chat, favorite: false)
} label: {
- SwipeLabel("Unfav.", systemImage: "star.slash.fill", inverted: oneHandUI)
+ SwipeLabel(NSLocalizedString("Unfav.", comment: "swipe action"), systemImage: "star.slash.fill", inverted: oneHandUI)
}
.tint(.green)
} else {
Button {
toggleChatFavorite(chat, favorite: true)
} label: {
- SwipeLabel("Favorite", systemImage: "star.fill", inverted: oneHandUI)
+ SwipeLabel(NSLocalizedString("Favorite", comment: "swipe action"), systemImage: "star.fill", inverted: oneHandUI)
}
.tint(.green)
}
@@ -291,9 +291,9 @@ struct ChatListNavLink: View {
toggleNotifications(chat, enableNtfs: !chat.chatInfo.ntfsEnabled)
} label: {
if chat.chatInfo.ntfsEnabled {
- SwipeLabel("Mute", systemImage: "speaker.slash.fill", inverted: oneHandUI)
+ SwipeLabel(NSLocalizedString("Mute", comment: "swipe action"), systemImage: "speaker.slash.fill", inverted: oneHandUI)
} else {
- SwipeLabel("Unmute", systemImage: "speaker.wave.2.fill", inverted: oneHandUI)
+ SwipeLabel(NSLocalizedString("Unmute", comment: "swipe action"), systemImage: "speaker.wave.2.fill", inverted: oneHandUI)
}
}
}
@@ -302,7 +302,7 @@ struct ChatListNavLink: View {
Button {
AlertManager.shared.showAlert(clearChatAlert())
} label: {
- SwipeLabel("Clear", systemImage: "gobackward", inverted: oneHandUI)
+ SwipeLabel(NSLocalizedString("Clear", comment: "swipe action"), systemImage: "gobackward", inverted: oneHandUI)
}
.tint(Color.orange)
}
@@ -311,7 +311,7 @@ struct ChatListNavLink: View {
Button {
AlertManager.shared.showAlert(clearNoteFolderAlert())
} label: {
- SwipeLabel("Clear", systemImage: "gobackward", inverted: oneHandUI)
+ SwipeLabel(NSLocalizedString("Clear", comment: "swipe action"), systemImage: "gobackward", inverted: oneHandUI)
}
.tint(Color.orange)
}
@@ -320,7 +320,7 @@ struct ChatListNavLink: View {
Button {
AlertManager.shared.showAlert(leaveGroupAlert(groupInfo))
} label: {
- SwipeLabel("Leave", systemImage: "rectangle.portrait.and.arrow.right.fill", inverted: oneHandUI)
+ SwipeLabel(NSLocalizedString("Leave", comment: "swipe action"), systemImage: "rectangle.portrait.and.arrow.right.fill", inverted: oneHandUI)
}
.tint(Color.yellow)
}
@@ -339,18 +339,18 @@ struct ChatListNavLink: View {
.swipeActions(edge: .trailing, allowsFullSwipe: true) {
Button {
Task { await acceptContactRequest(incognito: false, contactRequest: contactRequest) }
- } label: { SwipeLabel("Accept", systemImage: "checkmark", inverted: oneHandUI) }
+ } label: { SwipeLabel(NSLocalizedString("Accept", comment: "swipe action"), systemImage: "checkmark", inverted: oneHandUI) }
.tint(theme.colors.primary)
Button {
Task { await acceptContactRequest(incognito: true, contactRequest: contactRequest) }
} label: {
- SwipeLabel("Accept incognito", systemImage: "theatermasks.fill", inverted: oneHandUI)
+ SwipeLabel(NSLocalizedString("Accept incognito", comment: "swipe action"), systemImage: "theatermasks.fill", inverted: oneHandUI)
}
.tint(.indigo)
Button {
AlertManager.shared.showAlert(rejectContactRequestAlert(contactRequest))
} label: {
- SwipeLabel("Reject", systemImage: "multiply.fill", inverted: oneHandUI)
+ SwipeLabel(NSLocalizedString("Reject", comment: "swipe action"), systemImage: "multiply.fill", inverted: oneHandUI)
}
.tint(.red)
}
@@ -378,7 +378,7 @@ struct ChatListNavLink: View {
Button {
showContactConnectionInfo = true
} label: {
- SwipeLabel("Name", systemImage: "pencil", inverted: oneHandUI)
+ SwipeLabel(NSLocalizedString("Name", comment: "swipe action"), systemImage: "pencil", inverted: oneHandUI)
}
.tint(theme.colors.primary)
}
@@ -398,7 +398,7 @@ struct ChatListNavLink: View {
}
private var deleteLabel: some View {
- SwipeLabel("Delete", systemImage: "trash.fill", inverted: oneHandUI)
+ SwipeLabel(NSLocalizedString("Delete", comment: "swipe action"), systemImage: "trash.fill", inverted: oneHandUI)
}
private func deleteGroupAlert(_ groupInfo: GroupInfo) -> Alert {
diff --git a/apps/ios/Shared/Views/Helpers/SwipeLabel.swift b/apps/ios/Shared/Views/Helpers/SwipeLabel.swift
index f75452dc22..564589be6f 100644
--- a/apps/ios/Shared/Views/Helpers/SwipeLabel.swift
+++ b/apps/ios/Shared/Views/Helpers/SwipeLabel.swift
@@ -28,7 +28,7 @@ struct SwipeLabel: View {
).snapshot(inverted: inverted)
)
} else {
- Label(LocalizedStringKey(text), systemImage: systemImage)
+ Label(text, systemImage: systemImage)
}
}
@@ -42,7 +42,7 @@ struct SwipeLabel: View {
super.init(frame: CGRect(x: 0, y: 0, width: 64, height: 32 + fontSize))
imageView.image = UIImage(systemName: systemName)
imageView.contentMode = .scaleAspectFit
- label.text = NSLocalizedString(text, comment: "swipe action")
+ label.text = text
label.textAlignment = .center
label.font = UIFont.systemFont(ofSize: fontSize, weight: .medium)
addSubview(imageView)
diff --git a/apps/ios/Shared/Views/Onboarding/WhatsNewView.swift b/apps/ios/Shared/Views/Onboarding/WhatsNewView.swift
index 47ac706e15..ed3adcfe7d 100644
--- a/apps/ios/Shared/Views/Onboarding/WhatsNewView.swift
+++ b/apps/ios/Shared/Views/Onboarding/WhatsNewView.swift
@@ -15,9 +15,10 @@ private struct VersionDescription {
}
private struct FeatureDescription {
- var icon: String
+ var icon: String?
var title: LocalizedStringKey
- var description: LocalizedStringKey
+ var description: LocalizedStringKey?
+ var subfeatures: [(icon: String, description: LocalizedStringKey)] = []
}
private let versionDescriptions: [VersionDescription] = [
@@ -432,34 +433,36 @@ private let versionDescriptions: [VersionDescription] = [
version: "v6.0",
post: URL(string: "https://simplex.chat/blog/20240814-simplex-chat-vision-funding-v6-private-routing-new-user-experience.html"),
features: [
+ FeatureDescription(
+ icon: nil,
+ title: "New chat experience 🎉",
+ description: nil,
+ subfeatures: [
+ ("link.badge.plus", "Connect to your friends faster."),
+ ("archivebox", "Archive contacts to chat later."),
+ ("trash", "Delete up to 20 messages at once."),
+ ("platter.filled.bottom.and.arrow.down.iphone", "Use the app with one hand."),
+ ("paintpalette", "Color chats with the new themes."),
+ ]
+ ),
+ FeatureDescription(
+ icon: nil,
+ title: "New media options",
+ description: nil,
+ subfeatures: [
+ ("square.and.arrow.up", "Share from other apps."),
+ ("play.circle", "Play from the chat list."),
+ ("circle.filled.pattern.diagonalline.rectangle", "Blur for better privacy.")
+ ]
+ ),
FeatureDescription(
icon: "arrow.forward",
title: "Private message routing 🚀",
description: "It protects your IP address and connections."
),
- FeatureDescription(
- icon: "person.text.rectangle",
- title: "Your contacts your way",
- description: "- Search contacts when starting chat.\n- Archive contacts to chat later."
- ),
- FeatureDescription(
- icon: "platter.filled.bottom.iphone",
- title: "Reachable chat toolbar 👋",
- description: "Use the app with one hand."
- ),
- FeatureDescription(
- icon: "link",
- title: "Connect to your friends faster",
- description: "Even when they are offline."
- ),
- FeatureDescription(
- icon: "trash",
- title: "Moderate like a pro ✋",
- description: "Delete up to 20 messages at once."
- ),
FeatureDescription(
icon: "network",
- title: "Control your network",
+ title: "Better networking",
description: "Connection and servers status."
)
]
@@ -489,35 +492,37 @@ struct WhatsNewView: View {
VStack {
TabView(selection: $currentVersion) {
ForEach(Array(versionDescriptions.enumerated()), id: \.0) { (i, v) in
- VStack(alignment: .leading, spacing: 16) {
- Text("New in \(v.version)")
- .font(.title)
- .foregroundColor(theme.colors.secondary)
- .frame(maxWidth: .infinity)
- .padding(.vertical)
- ForEach(v.features, id: \.icon) { f in
- 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")
+ ScrollView {
+ VStack(alignment: .leading, spacing: 16) {
+ Text("New in \(v.version)")
+ .font(.title)
+ .foregroundColor(theme.colors.secondary)
+ .frame(maxWidth: .infinity)
+ .padding(.vertical)
+ ForEach(v.features, id: \.title) { f in
+ featureDescription(f)
+ .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") {
- dismiss()
+ if !viaSettings {
+ Spacer()
+ Button("Ok") {
+ dismiss()
+ }
+ .font(.title3)
+ .frame(maxWidth: .infinity, alignment: .center)
+ Spacer()
}
- .font(.title3)
- .frame(maxWidth: .infinity, alignment: .center)
- Spacer()
}
+ .frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .topLeading)
}
- .frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .topLeading)
.tag(i)
}
}
@@ -531,18 +536,37 @@ struct WhatsNewView: View {
}
}
- private func featureDescription(_ icon: String, _ title: LocalizedStringKey, _ description: LocalizedStringKey) -> some View {
+ private func featureDescription(_ f: FeatureDescription) -> some View {
VStack(alignment: .leading, spacing: 4) {
- HStack(alignment: .center, spacing: 4) {
- Image(systemName: icon)
- .symbolRenderingMode(.monochrome)
- .foregroundColor(theme.colors.secondary)
- .frame(minWidth: 30, alignment: .center)
- Text(title).font(.title3).bold()
+ if let icon = f.icon {
+ HStack(alignment: .center, spacing: 4) {
+ Image(systemName: icon)
+ .symbolRenderingMode(.monochrome)
+ .foregroundColor(theme.colors.secondary)
+ .frame(minWidth: 30, alignment: .center)
+ Text(f.title).font(.title3).bold()
+ }
+ } else {
+ Text(f.title).font(.title3).bold()
+ }
+ if let d = f.description {
+ Text(d)
+ .multilineTextAlignment(.leading)
+ .lineLimit(10)
+ }
+ if f.subfeatures.count > 0 {
+ ForEach(f.subfeatures, id: \.icon) { s in
+ HStack(alignment: .center, spacing: 4) {
+ Image(systemName: s.icon)
+ .symbolRenderingMode(.monochrome)
+ .foregroundColor(theme.colors.secondary)
+ .frame(minWidth: 30, alignment: .center)
+ Text(s.description)
+ .multilineTextAlignment(.leading)
+ .lineLimit(3)
+ }
+ }
}
- Text(description)
- .multilineTextAlignment(.leading)
- .lineLimit(10)
}
}
diff --git a/apps/ios/Shared/Views/UserSettings/PrivacySettings.swift b/apps/ios/Shared/Views/UserSettings/PrivacySettings.swift
index 8bd9072f7f..338943f13a 100644
--- a/apps/ios/Shared/Views/UserSettings/PrivacySettings.swift
+++ b/apps/ios/Shared/Views/UserSettings/PrivacySettings.swift
@@ -117,7 +117,7 @@ struct PrivacySettings: View {
privacyAcceptImagesGroupDefault.set($0)
}
}
- settingsRow("circle.rectangle.filled.pattern.diagonalline", color: theme.colors.secondary) {
+ settingsRow("circle.filled.pattern.diagonalline.rectangle", color: theme.colors.secondary) {
Picker("Blur media", selection: $privacyMediaBlurRadius) {
let values = [0, 12, 24, 48] + ([0, 12, 24, 48].contains(privacyMediaBlurRadius) ? [] : [privacyMediaBlurRadius])
ForEach(values, id: \.self) { radius in
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 51f6c9c975..aa077ed370 100644
--- a/apps/ios/SimpleX Localizations/bg.xcloc/Localized Contents/bg.xliff
+++ b/apps/ios/SimpleX Localizations/bg.xcloc/Localized Contents/bg.xliff
@@ -565,7 +565,8 @@
AcceptПриемиaccept contact request via notification
- accept incoming call via notification
+ accept incoming call via notification
+ swipe action
Accept connection request?
@@ -580,7 +581,8 @@
Accept incognitoПриеми инкогнито
- accept contact request via notification
+ accept contact request via notification
+ swipe actionAcknowledged
@@ -1287,6 +1289,10 @@
Чатът е спрян. Ако вече сте използвали тази база данни на друго устройство, трябва да я прехвърлите обратно, преди да стартирате чата отново.No comment provided by engineer.
+
+ Chat list
+ No comment provided by engineer.
+ Chat migrated!Чатът е мигриран!
@@ -1346,7 +1352,7 @@
ClearИзчисти
- No comment provided by engineer.
+ swipe actionClear conversation
@@ -1923,7 +1929,8 @@ This is your own one-time link!
DeleteИзтрий
- chat item action
+ chat item action
+ swipe actionDelete %lld messages of members?
@@ -2125,10 +2132,6 @@ This is your own one-time link!
Изтрито на: %@copied message info
-
- Deleted chats
- No comment provided by engineer.
- Deletion errorsNo comment provided by engineer.
@@ -2991,7 +2994,7 @@ This is your own one-time link!
FavoriteЛюбим
- No comment provided by engineer.
+ swipe actionFile error
@@ -3750,7 +3753,7 @@ Error: %2$@
JoinПрисъединяване
- No comment provided by engineer.
+ swipe actionJoin group
@@ -3841,7 +3844,7 @@ This is your link for group %@!
LeaveНапусни
- No comment provided by engineer.
+ swipe actionLeave group
@@ -4221,7 +4224,7 @@ This is your link for group %@!
MuteБез звук
- No comment provided by engineer.
+ swipe actionMuted when inactive!
@@ -4231,7 +4234,7 @@ This is your link for group %@!
NameИме
- No comment provided by engineer.
+ swipe actionNetwork & servers
@@ -4442,10 +4445,6 @@ This is your link for group %@!
Стар архив на база данниNo comment provided by engineer.
-
- One-hand UI
- No comment provided by engineer.
- One-time invitation linkЛинк за еднократна покана
@@ -5003,6 +5002,10 @@ Enable in *Network & servers* settings.
Оценете приложениетоNo comment provided by engineer.
+
+ Reachable chat toolbar
+ No comment provided by engineer.
+ Reachable chat toolbar 👋No comment provided by engineer.
@@ -5015,7 +5018,7 @@ Enable in *Network & servers* settings.
ReadПрочетено
- No comment provided by engineer.
+ swipe actionRead more
@@ -5166,7 +5169,8 @@ Enable in *Network & servers* settings.
RejectОтхвърляне
- reject incoming call via notification
+ reject incoming call via notification
+ swipe actionReject (sender NOT notified)
@@ -5267,6 +5271,10 @@ Enable in *Network & servers* settings.
НулиранеNo comment provided by engineer.
+
+ Reset all hints
+ No comment provided by engineer.
+ Reset all statisticsNo comment provided by engineer.
@@ -6551,6 +6559,10 @@ You will be prompted to complete authentication before this feature is enabled.<
За да проверите криптирането от край до край с вашия контакт, сравнете (или сканирайте) кода на вашите устройства.No comment provided by engineer.
+
+ Toggle chat list:
+ No comment provided by engineer.
+ Toggle incognito when connecting.Избор на инкогнито при свързване.
@@ -6632,7 +6644,7 @@ You will be prompted to complete authentication before this feature is enabled.<
Unfav.Премахни от любимите
- No comment provided by engineer.
+ swipe actionUnhide
@@ -6708,12 +6720,12 @@ To connect, please ask your contact to create another connection link and check
UnmuteУведомявай
- No comment provided by engineer.
+ swipe actionUnreadНепрочетено
- No comment provided by engineer.
+ swipe actionUp to 100 last messages are sent to new members.
@@ -7191,6 +7203,10 @@ Repeat join request?
Можете да приемате обаждания от заключен екран, без идентификация на устройство и приложението.No comment provided by engineer.
+
+ You can change it in Appearance settings.
+ No comment provided by engineer.
+ You can create it laterМожете да го създадете по-късно
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 ef54e8786e..045c4897f6 100644
--- a/apps/ios/SimpleX Localizations/cs.xcloc/Localized Contents/cs.xliff
+++ b/apps/ios/SimpleX Localizations/cs.xcloc/Localized Contents/cs.xliff
@@ -547,7 +547,8 @@
AcceptPřijmoutaccept contact request via notification
- accept incoming call via notification
+ accept incoming call via notification
+ swipe action
Accept connection request?
@@ -562,7 +563,8 @@
Accept incognitoPřijmout inkognito
- accept contact request via notification
+ accept contact request via notification
+ swipe actionAcknowledged
@@ -1244,6 +1246,10 @@
Chat is stopped. If you already used this database on another device, you should transfer it back before starting chat.No comment provided by engineer.
+
+ Chat list
+ No comment provided by engineer.
+ Chat migrated!No comment provided by engineer.
@@ -1301,7 +1307,7 @@
ClearVyčistit
- No comment provided by engineer.
+ swipe actionClear conversation
@@ -1853,7 +1859,8 @@ This is your own one-time link!
DeleteSmazat
- chat item action
+ chat item action
+ swipe actionDelete %lld messages of members?
@@ -2052,10 +2059,6 @@ This is your own one-time link!
Smazáno v: %@copied message info
-
- Deleted chats
- No comment provided by engineer.
- Deletion errorsNo comment provided by engineer.
@@ -2888,7 +2891,7 @@ This is your own one-time link!
FavoriteOblíbené
- No comment provided by engineer.
+ swipe actionFile error
@@ -3620,7 +3623,7 @@ Error: %2$@
JoinPřipojte se na
- No comment provided by engineer.
+ swipe actionJoin group
@@ -3703,7 +3706,7 @@ This is your link for group %@!
LeaveOpustit
- No comment provided by engineer.
+ swipe actionLeave group
@@ -4067,7 +4070,7 @@ This is your link for group %@!
MuteZtlumit
- No comment provided by engineer.
+ swipe actionMuted when inactive!
@@ -4077,7 +4080,7 @@ This is your link for group %@!
NameJméno
- No comment provided by engineer.
+ swipe actionNetwork & servers
@@ -4282,10 +4285,6 @@ This is your link for group %@!
Archiv staré databázeNo comment provided by engineer.
-
- One-hand UI
- No comment provided by engineer.
- One-time invitation linkJednorázový zvací odkaz
@@ -4820,6 +4819,10 @@ Enable in *Network & servers* settings.
Ohodnoťte aplikaciNo comment provided by engineer.
+
+ Reachable chat toolbar
+ No comment provided by engineer.
+ Reachable chat toolbar 👋No comment provided by engineer.
@@ -4832,7 +4835,7 @@ Enable in *Network & servers* settings.
ReadČíst
- No comment provided by engineer.
+ swipe actionRead more
@@ -4980,7 +4983,8 @@ Enable in *Network & servers* settings.
RejectOdmítnout
- reject incoming call via notification
+ reject incoming call via notification
+ swipe actionReject (sender NOT notified)
@@ -5076,6 +5080,10 @@ Enable in *Network & servers* settings.
ObnovitNo comment provided by engineer.
+
+ Reset all hints
+ No comment provided by engineer.
+ Reset all statisticsNo comment provided by engineer.
@@ -6328,6 +6336,10 @@ Před zapnutím této funkce budete vyzváni k dokončení ověření.
Chcete-li ověřit koncové šifrování u svého kontaktu, porovnejte (nebo naskenujte) kód na svých zařízeních.No comment provided by engineer.
+
+ Toggle chat list:
+ No comment provided by engineer.
+ Toggle incognito when connecting.Změnit inkognito režim při připojení.
@@ -6403,7 +6415,7 @@ Před zapnutím této funkce budete vyzváni k dokončení ověření.
Unfav.Odobl.
- No comment provided by engineer.
+ swipe actionUnhide
@@ -6477,12 +6489,12 @@ Chcete-li se připojit, požádejte svůj kontakt o vytvoření dalšího odkazu
UnmuteZrušit ztlumení
- No comment provided by engineer.
+ swipe actionUnreadNepřečtený
- No comment provided by engineer.
+ swipe actionUp to 100 last messages are sent to new members.
@@ -6928,6 +6940,10 @@ Repeat join request?
Můžete přijímat hovory z obrazovky zámku, bez ověření zařízení a aplikace.No comment provided by engineer.
+
+ You can change it in Appearance settings.
+ No comment provided by engineer.
+ You can create it laterMůžete vytvořit později
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 394d3b23a7..dd53c6d9ff 100644
--- a/apps/ios/SimpleX Localizations/de.xcloc/Localized Contents/de.xliff
+++ b/apps/ios/SimpleX Localizations/de.xcloc/Localized Contents/de.xliff
@@ -566,7 +566,8 @@
AcceptAnnehmenaccept contact request via notification
- accept incoming call via notification
+ accept incoming call via notification
+ swipe action
Accept connection request?
@@ -581,7 +582,8 @@
Accept incognitoInkognito akzeptieren
- accept contact request via notification
+ accept contact request via notification
+ swipe actionAcknowledged
@@ -1308,6 +1310,10 @@
Der Chat ist angehalten. Wenn Sie diese Datenbank bereits auf einem anderen Gerät genutzt haben, sollten Sie diese vor dem Starten des Chats wieder zurückspielen.No comment provided by engineer.
+
+ Chat list
+ No comment provided by engineer.
+ Chat migrated!Chat wurde migriert!
@@ -1371,7 +1377,7 @@
ClearLöschen
- No comment provided by engineer.
+ swipe actionClear conversation
@@ -1964,7 +1970,8 @@ Das ist Ihr eigener Einmal-Link!
DeleteLöschen
- chat item action
+ chat item action
+ swipe actionDelete %lld messages of members?
@@ -2168,10 +2175,6 @@ Das ist Ihr eigener Einmal-Link!
Gelöscht um: %@copied message info
-
- Deleted chats
- No comment provided by engineer.
- Deletion errorsFehler beim Löschen
@@ -3054,7 +3057,7 @@ Das ist Ihr eigener Einmal-Link!
FavoriteFavorit
- No comment provided by engineer.
+ swipe actionFile error
@@ -3830,7 +3833,7 @@ Fehler: %2$@
JoinBeitreten
- No comment provided by engineer.
+ swipe actionJoin group
@@ -3921,7 +3924,7 @@ Das ist Ihr Link für die Gruppe %@!
LeaveVerlassen
- No comment provided by engineer.
+ swipe actionLeave group
@@ -4315,7 +4318,7 @@ Das ist Ihr Link für die Gruppe %@!
MuteStummschalten
- No comment provided by engineer.
+ swipe actionMuted when inactive!
@@ -4325,7 +4328,7 @@ Das ist Ihr Link für die Gruppe %@!
NameName
- No comment provided by engineer.
+ swipe actionNetwork & servers
@@ -4540,10 +4543,6 @@ Das ist Ihr Link für die Gruppe %@!
Altes DatenbankarchivNo comment provided by engineer.
-
- One-hand UI
- No comment provided by engineer.
- One-time invitation linkEinmal-Einladungslink
@@ -5117,6 +5116,10 @@ Aktivieren Sie es in den *Netzwerk & Server* Einstellungen.
Bewerten Sie die AppNo comment provided by engineer.
+
+ Reachable chat toolbar
+ No comment provided by engineer.
+ Reachable chat toolbar 👋No comment provided by engineer.
@@ -5129,7 +5132,7 @@ Aktivieren Sie es in den *Netzwerk & Server* Einstellungen.
ReadGelesen
- No comment provided by engineer.
+ swipe actionRead more
@@ -5289,7 +5292,8 @@ Aktivieren Sie es in den *Netzwerk & Server* Einstellungen.
RejectAblehnen
- reject incoming call via notification
+ reject incoming call via notification
+ swipe actionReject (sender NOT notified)
@@ -5391,6 +5395,10 @@ Aktivieren Sie es in den *Netzwerk & Server* Einstellungen.
ZurücksetzenNo comment provided by engineer.
+
+ Reset all hints
+ No comment provided by engineer.
+ Reset all statisticsAlle Statistiken zurücksetzen
@@ -6729,6 +6737,10 @@ 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.
+
+ Toggle chat list:
+ No comment provided by engineer.
+ Toggle incognito when connecting.Inkognito beim Verbinden einschalten.
@@ -6812,7 +6824,7 @@ Sie werden aufgefordert, die Authentifizierung abzuschließen, bevor diese Funkt
Unfav.Fav. entf.
- No comment provided by engineer.
+ swipe actionUnhide
@@ -6889,12 +6901,12 @@ Bitten Sie Ihren Kontakt darum einen weiteren Verbindungs-Link zu erzeugen, um s
UnmuteStummschaltung aufheben
- No comment provided by engineer.
+ swipe actionUnreadUngelesen
- No comment provided by engineer.
+ swipe actionUp to 100 last messages are sent to new members.
@@ -7387,6 +7399,10 @@ Verbindungsanfrage wiederholen?
Sie können Anrufe ohne Geräte- und App-Authentifizierung vom Sperrbildschirm aus annehmen.No comment provided by engineer.
+
+ You can change it in Appearance settings.
+ No comment provided by engineer.
+ You can create it laterSie können dies später erstellen
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 66f17165b5..3e684f143b 100644
--- a/apps/ios/SimpleX Localizations/en.xcloc/Localized Contents/en.xliff
+++ b/apps/ios/SimpleX Localizations/en.xcloc/Localized Contents/en.xliff
@@ -568,7 +568,8 @@
AcceptAcceptaccept contact request via notification
- accept incoming call via notification
+ accept incoming call via notification
+ swipe action
Accept connection request?
@@ -583,7 +584,8 @@
Accept incognitoAccept incognito
- accept contact request via notification
+ accept contact request via notification
+ swipe actionAcknowledged
@@ -1316,6 +1318,11 @@
Chat is stopped. If you already used this database on another device, you should transfer it back before starting chat.No comment provided by engineer.
+
+ Chat list
+ Chat list
+ No comment provided by engineer.
+ Chat migrated!Chat migrated!
@@ -1379,7 +1386,7 @@
ClearClear
- No comment provided by engineer.
+ swipe actionClear conversation
@@ -1981,7 +1988,8 @@ This is your own one-time link!
DeleteDelete
- chat item action
+ chat item action
+ swipe actionDelete %lld messages of members?
@@ -2188,11 +2196,6 @@ This is your own one-time link!
Deleted at: %@copied message info
-
- Deleted chats
- Deleted chats
- No comment provided by engineer.
- Deletion errorsDeletion errors
@@ -3077,7 +3080,7 @@ This is your own one-time link!
FavoriteFavorite
- No comment provided by engineer.
+ swipe actionFile error
@@ -3854,7 +3857,7 @@ Error: %2$@
JoinJoin
- No comment provided by engineer.
+ swipe actionJoin group
@@ -3946,7 +3949,7 @@ This is your link for group %@!
LeaveLeave
- No comment provided by engineer.
+ swipe actionLeave group
@@ -4341,7 +4344,7 @@ This is your link for group %@!
MuteMute
- No comment provided by engineer.
+ swipe actionMuted when inactive!
@@ -4351,7 +4354,7 @@ This is your link for group %@!
NameName
- No comment provided by engineer.
+ swipe actionNetwork & servers
@@ -4567,11 +4570,6 @@ This is your link for group %@!
Old database archiveNo comment provided by engineer.
-
- One-hand UI
- One-hand UI
- No comment provided by engineer.
- One-time invitation linkOne-time invitation link
@@ -5147,6 +5145,11 @@ Enable in *Network & servers* settings.
Rate the appNo comment provided by engineer.
+
+ Reachable chat toolbar
+ Reachable chat toolbar
+ No comment provided by engineer.
+ Reachable chat toolbar 👋Reachable chat toolbar 👋
@@ -5160,7 +5163,7 @@ Enable in *Network & servers* settings.
ReadRead
- No comment provided by engineer.
+ swipe actionRead more
@@ -5320,7 +5323,8 @@ Enable in *Network & servers* settings.
RejectReject
- reject incoming call via notification
+ reject incoming call via notification
+ swipe actionReject (sender NOT notified)
@@ -5422,6 +5426,11 @@ Enable in *Network & servers* settings.
ResetNo comment provided by engineer.
+
+ Reset all hints
+ Reset all hints
+ No comment provided by engineer.
+ Reset all statisticsReset all statistics
@@ -6761,6 +6770,11 @@ 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.
+
+ Toggle chat list:
+ Toggle chat list:
+ No comment provided by engineer.
+ Toggle incognito when connecting.Toggle incognito when connecting.
@@ -6844,7 +6858,7 @@ You will be prompted to complete authentication before this feature is enabled.<
Unfav.Unfav.
- No comment provided by engineer.
+ swipe actionUnhide
@@ -6921,12 +6935,12 @@ To connect, please ask your contact to create another connection link and check
UnmuteUnmute
- No comment provided by engineer.
+ swipe actionUnreadUnread
- No comment provided by engineer.
+ swipe actionUp to 100 last messages are sent to new members.
@@ -7420,6 +7434,11 @@ Repeat join request?
You can accept calls from lock screen, without device and app authentication.No comment provided by engineer.
+
+ You can change it in Appearance settings.
+ You can change it in Appearance settings.
+ No comment provided by engineer.
+ You can create it laterYou can create it later
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 0636082aa1..786984f3ab 100644
--- a/apps/ios/SimpleX Localizations/es.xcloc/Localized Contents/es.xliff
+++ b/apps/ios/SimpleX Localizations/es.xcloc/Localized Contents/es.xliff
@@ -566,7 +566,8 @@
AcceptAceptaraccept contact request via notification
- accept incoming call via notification
+ accept incoming call via notification
+ swipe action
Accept connection request?
@@ -581,7 +582,8 @@
Accept incognitoAceptar incógnito
- accept contact request via notification
+ accept contact request via notification
+ swipe actionAcknowledged
@@ -1305,6 +1307,10 @@
Chat parado. Si has usado esta base de datos en otro dispositivo, debes transferirla de vuelta antes de iniciar Chat.No comment provided by engineer.
+
+ Chat list
+ No comment provided by engineer.
+ Chat migrated!¡Chat migrado!
@@ -1368,7 +1374,7 @@
ClearVaciar
- No comment provided by engineer.
+ swipe actionClear conversation
@@ -1960,7 +1966,8 @@ This is your own one-time link!
DeleteEliminar
- chat item action
+ chat item action
+ swipe actionDelete %lld messages of members?
@@ -2163,10 +2170,6 @@ This is your own one-time link!
Eliminado: %@copied message info
-
- Deleted chats
- No comment provided by engineer.
- Deletion errorsErrores de borrado
@@ -3044,7 +3047,7 @@ This is your own one-time link!
FavoriteFavoritos
- No comment provided by engineer.
+ swipe actionFile error
@@ -3817,7 +3820,7 @@ Error: %2$@
JoinUnirte
- No comment provided by engineer.
+ swipe actionJoin group
@@ -3908,7 +3911,7 @@ This is your link for group %@!
LeaveSalir
- No comment provided by engineer.
+ swipe actionLeave group
@@ -4299,7 +4302,7 @@ This is your link for group %@!
MuteSilenciar
- No comment provided by engineer.
+ swipe actionMuted when inactive!
@@ -4309,7 +4312,7 @@ This is your link for group %@!
NameNombre
- No comment provided by engineer.
+ swipe actionNetwork & servers
@@ -4523,10 +4526,6 @@ This is your link for group %@!
Archivo de bases de datos antiguasNo comment provided by engineer.
-
- One-hand UI
- No comment provided by engineer.
- One-time invitation linkEnlace de invitación de un solo uso
@@ -5100,6 +5099,10 @@ Actívalo en ajustes de *Servidores y Redes*.
Valora la aplicaciónNo comment provided by engineer.
+
+ Reachable chat toolbar
+ No comment provided by engineer.
+ Reachable chat toolbar 👋No comment provided by engineer.
@@ -5112,7 +5115,7 @@ Actívalo en ajustes de *Servidores y Redes*.
ReadLeer
- No comment provided by engineer.
+ swipe actionRead more
@@ -5272,7 +5275,8 @@ Actívalo en ajustes de *Servidores y Redes*.
RejectRechazar
- reject incoming call via notification
+ reject incoming call via notification
+ swipe actionReject (sender NOT notified)
@@ -5374,6 +5378,10 @@ Actívalo en ajustes de *Servidores y Redes*.
RestablecerNo comment provided by engineer.
+
+ Reset all hints
+ No comment provided by engineer.
+ Reset all statisticsRestablecer estadísticas
@@ -6702,6 +6710,10 @@ Se te pedirá que completes la autenticación antes de activar esta función.Para verificar el cifrado de extremo a extremo con tu contacto, compara (o escanea) el código en ambos dispositivos.
No comment provided by engineer.
+
+ Toggle chat list:
+ No comment provided by engineer.
+ Toggle incognito when connecting.Activa incógnito al conectar.
@@ -6785,7 +6797,7 @@ Se te pedirá que completes la autenticación antes de activar esta función.
Unfav.No fav.
- No comment provided by engineer.
+ swipe actionUnhide
@@ -6862,12 +6874,12 @@ Para conectarte pide a tu contacto que cree otro enlace y comprueba la conexión
UnmuteActivar audio
- No comment provided by engineer.
+ swipe actionUnreadNo leído
- No comment provided by engineer.
+ swipe actionUp to 100 last messages are sent to new members.
@@ -7359,6 +7371,10 @@ Repeat join request?
Puede aceptar llamadas desde la pantalla de bloqueo, sin autenticación de dispositivos y aplicaciones.No comment provided by engineer.
+
+ You can change it in Appearance settings.
+ No comment provided by engineer.
+ You can create it laterPuedes crearla más tarde
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 a980b93a79..9f120b9808 100644
--- a/apps/ios/SimpleX Localizations/fi.xcloc/Localized Contents/fi.xliff
+++ b/apps/ios/SimpleX Localizations/fi.xcloc/Localized Contents/fi.xliff
@@ -542,7 +542,8 @@
AcceptHyväksyaccept contact request via notification
- accept incoming call via notification
+ accept incoming call via notification
+ swipe action
Accept connection request?
@@ -557,7 +558,8 @@
Accept incognitoHyväksy tuntematon
- accept contact request via notification
+ accept contact request via notification
+ swipe actionAcknowledged
@@ -1237,6 +1239,10 @@
Chat is stopped. If you already used this database on another device, you should transfer it back before starting chat.No comment provided by engineer.
+
+ Chat list
+ No comment provided by engineer.
+ Chat migrated!No comment provided by engineer.
@@ -1294,7 +1300,7 @@
ClearTyhjennä
- No comment provided by engineer.
+ swipe actionClear conversation
@@ -1846,7 +1852,8 @@ This is your own one-time link!
DeletePoista
- chat item action
+ chat item action
+ swipe actionDelete %lld messages of members?
@@ -2045,10 +2052,6 @@ This is your own one-time link!
Poistettu klo: %@copied message info
-
- Deleted chats
- No comment provided by engineer.
- Deletion errorsNo comment provided by engineer.
@@ -2878,7 +2881,7 @@ This is your own one-time link!
FavoriteSuosikki
- No comment provided by engineer.
+ swipe actionFile error
@@ -3610,7 +3613,7 @@ Error: %2$@
JoinLiity
- No comment provided by engineer.
+ swipe actionJoin group
@@ -3693,7 +3696,7 @@ This is your link for group %@!
LeavePoistu
- No comment provided by engineer.
+ swipe actionLeave group
@@ -4057,7 +4060,7 @@ This is your link for group %@!
MuteMykistä
- No comment provided by engineer.
+ swipe actionMuted when inactive!
@@ -4067,7 +4070,7 @@ This is your link for group %@!
NameNimi
- No comment provided by engineer.
+ swipe actionNetwork & servers
@@ -4271,10 +4274,6 @@ This is your link for group %@!
Vanha tietokanta-arkistoNo comment provided by engineer.
-
- One-hand UI
- No comment provided by engineer.
- One-time invitation linkKertakutsulinkki
@@ -4808,6 +4807,10 @@ Enable in *Network & servers* settings.
Arvioi sovellusNo comment provided by engineer.
+
+ Reachable chat toolbar
+ No comment provided by engineer.
+ Reachable chat toolbar 👋No comment provided by engineer.
@@ -4820,7 +4823,7 @@ Enable in *Network & servers* settings.
ReadLue
- No comment provided by engineer.
+ swipe actionRead more
@@ -4968,7 +4971,8 @@ Enable in *Network & servers* settings.
RejectHylkää
- reject incoming call via notification
+ reject incoming call via notification
+ swipe actionReject (sender NOT notified)
@@ -5064,6 +5068,10 @@ Enable in *Network & servers* settings.
OletustilaanNo comment provided by engineer.
+
+ Reset all hints
+ No comment provided by engineer.
+ Reset all statisticsNo comment provided by engineer.
@@ -6314,6 +6322,10 @@ Sinua kehotetaan suorittamaan todennus loppuun, ennen kuin tämä ominaisuus ote
Voit tarkistaa päästä päähän -salauksen kontaktisi kanssa vertaamalla (tai skannaamalla) laitteidenne koodia.No comment provided by engineer.
+
+ Toggle chat list:
+ No comment provided by engineer.
+ Toggle incognito when connecting.No comment provided by engineer.
@@ -6388,7 +6400,7 @@ Sinua kehotetaan suorittamaan todennus loppuun, ennen kuin tämä ominaisuus ote
Unfav.Epäsuotuisa.
- No comment provided by engineer.
+ swipe actionUnhide
@@ -6462,12 +6474,12 @@ Jos haluat muodostaa yhteyden, pyydä kontaktiasi luomaan toinen yhteyslinkki ja
UnmutePoista mykistys
- No comment provided by engineer.
+ swipe actionUnreadLukematon
- No comment provided by engineer.
+ swipe actionUp to 100 last messages are sent to new members.
@@ -6913,6 +6925,10 @@ Repeat join request?
Voit vastaanottaa puheluita lukitusnäytöltä ilman laitteen ja sovelluksen todennusta.No comment provided by engineer.
+
+ You can change it in Appearance settings.
+ No comment provided by engineer.
+ You can create it laterVoit luoda sen myöhemmin
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 82eb9384e9..94017c5ece 100644
--- a/apps/ios/SimpleX Localizations/fr.xcloc/Localized Contents/fr.xliff
+++ b/apps/ios/SimpleX Localizations/fr.xcloc/Localized Contents/fr.xliff
@@ -566,7 +566,8 @@
AcceptAccepteraccept contact request via notification
- accept incoming call via notification
+ accept incoming call via notification
+ swipe action
Accept connection request?
@@ -581,7 +582,8 @@
Accept incognitoAccepter en incognito
- accept contact request via notification
+ accept contact request via notification
+ swipe actionAcknowledged
@@ -1307,6 +1309,10 @@
Le chat est arrêté. Si vous avez déjà utilisé cette base de données sur un autre appareil, vous devez la transférer à nouveau avant de démarrer le chat.No comment provided by engineer.
+
+ Chat list
+ No comment provided by engineer.
+ Chat migrated!Messagerie transférée !
@@ -1370,7 +1376,7 @@
ClearEffacer
- No comment provided by engineer.
+ swipe actionClear conversation
@@ -1963,7 +1969,8 @@ Il s'agit de votre propre lien unique !
DeleteSupprimer
- chat item action
+ chat item action
+ swipe actionDelete %lld messages of members?
@@ -2167,10 +2174,6 @@ Il s'agit de votre propre lien unique !
Supprimé à : %@copied message info
-
- Deleted chats
- No comment provided by engineer.
- Deletion errorsErreurs de suppression
@@ -3053,7 +3056,7 @@ Il s'agit de votre propre lien unique !
FavoriteFavoris
- No comment provided by engineer.
+ swipe actionFile error
@@ -3829,7 +3832,7 @@ Erreur : %2$@
JoinRejoindre
- No comment provided by engineer.
+ swipe actionJoin group
@@ -3920,7 +3923,7 @@ Voici votre lien pour le groupe %@ !
LeaveQuitter
- No comment provided by engineer.
+ swipe actionLeave group
@@ -4312,7 +4315,7 @@ Voici votre lien pour le groupe %@ !
MuteMuet
- No comment provided by engineer.
+ swipe actionMuted when inactive!
@@ -4322,7 +4325,7 @@ Voici votre lien pour le groupe %@ !
NameNom
- No comment provided by engineer.
+ swipe actionNetwork & servers
@@ -4537,10 +4540,6 @@ Voici votre lien pour le groupe %@ !
Archives de l'ancienne base de donnéesNo comment provided by engineer.
-
- One-hand UI
- No comment provided by engineer.
- One-time invitation linkLien d'invitation unique
@@ -5114,6 +5113,10 @@ Activez-le dans les paramètres *Réseau et serveurs*.
Évaluer l'appNo comment provided by engineer.
+
+ Reachable chat toolbar
+ No comment provided by engineer.
+ Reachable chat toolbar 👋No comment provided by engineer.
@@ -5126,7 +5129,7 @@ Activez-le dans les paramètres *Réseau et serveurs*.
ReadLire
- No comment provided by engineer.
+ swipe actionRead more
@@ -5286,7 +5289,8 @@ Activez-le dans les paramètres *Réseau et serveurs*.
RejectRejeter
- reject incoming call via notification
+ reject incoming call via notification
+ swipe actionReject (sender NOT notified)
@@ -5388,6 +5392,10 @@ Activez-le dans les paramètres *Réseau et serveurs*.
RéinitialisationNo comment provided by engineer.
+
+ Reset all hints
+ No comment provided by engineer.
+ Reset all statisticsRéinitialiser toutes les statistiques
@@ -6722,6 +6730,10 @@ 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.
+
+ Toggle chat list:
+ No comment provided by engineer.
+ Toggle incognito when connecting.Basculer en mode incognito lors de la connexion.
@@ -6805,7 +6817,7 @@ Vous serez invité à confirmer l'authentification avant que cette fonction ne s
Unfav.Unfav.
- No comment provided by engineer.
+ swipe actionUnhide
@@ -6882,12 +6894,12 @@ Pour vous connecter, veuillez demander à votre contact de créer un autre lien
UnmuteDémute
- No comment provided by engineer.
+ swipe actionUnreadNon lu
- No comment provided by engineer.
+ swipe actionUp to 100 last messages are sent to new members.
@@ -7379,6 +7391,10 @@ Répéter la demande d'adhésion ?
Vous pouvez accepter des appels à partir de l'écran de verrouillage, sans authentification de l'appareil ou de l'application.No comment provided by engineer.
+
+ You can change it in Appearance settings.
+ No comment provided by engineer.
+ You can create it laterVous pouvez la créer plus tard
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 8d932c6a01..2574511655 100644
--- a/apps/ios/SimpleX Localizations/hu.xcloc/Localized Contents/hu.xliff
+++ b/apps/ios/SimpleX Localizations/hu.xcloc/Localized Contents/hu.xliff
@@ -566,7 +566,8 @@
AcceptElfogadásaccept contact request via notification
- accept incoming call via notification
+ accept incoming call via notification
+ swipe action
Accept connection request?
@@ -581,7 +582,8 @@
Accept incognitoFogadás inkognítóban
- accept contact request via notification
+ accept contact request via notification
+ swipe actionAcknowledged
@@ -1308,6 +1310,10 @@
A csevegés leállt. Ha már használta ezt az adatbázist egy másik eszközön, úgy visszaállítás szükséges a csevegés megkezdése előtt.No comment provided by engineer.
+
+ Chat list
+ No comment provided by engineer.
+ Chat migrated!A csevegés átköltöztetve!
@@ -1371,7 +1377,7 @@
ClearKiürítés
- No comment provided by engineer.
+ swipe actionClear conversation
@@ -1964,7 +1970,8 @@ Ez az egyszer használatos hivatkozása!
DeleteTörlés
- chat item action
+ chat item action
+ swipe actionDelete %lld messages of members?
@@ -2168,10 +2175,6 @@ Ez az egyszer használatos hivatkozása!
Törölve ekkor: %@copied message info
-
- Deleted chats
- No comment provided by engineer.
- Deletion errorsTörlési hibák
@@ -3054,7 +3057,7 @@ Ez az egyszer használatos hivatkozása!
FavoriteKedvenc
- No comment provided by engineer.
+ swipe actionFile error
@@ -3830,7 +3833,7 @@ Hiba: %2$@
JoinCsatlakozás
- No comment provided by engineer.
+ swipe actionJoin group
@@ -3921,7 +3924,7 @@ Ez az ön hivatkozása a(z) %@ csoporthoz!
LeaveElhagyás
- No comment provided by engineer.
+ swipe actionLeave group
@@ -4315,7 +4318,7 @@ Ez az ön hivatkozása a(z) %@ csoporthoz!
MuteElnémítás
- No comment provided by engineer.
+ swipe actionMuted when inactive!
@@ -4325,7 +4328,7 @@ Ez az ön hivatkozása a(z) %@ csoporthoz!
NameNév
- No comment provided by engineer.
+ swipe actionNetwork & servers
@@ -4540,10 +4543,6 @@ Ez az ön hivatkozása a(z) %@ csoporthoz!
Régi adatbázis archívumNo comment provided by engineer.
-
- One-hand UI
- No comment provided by engineer.
- One-time invitation linkEgyszer használatos meghívó hivatkozás
@@ -5117,6 +5116,10 @@ Engedélyezze a beállításokban a *Hálózat és kiszolgálók* menüpontban.<
Értékelje az alkalmazástNo comment provided by engineer.
+
+ Reachable chat toolbar
+ No comment provided by engineer.
+ Reachable chat toolbar 👋No comment provided by engineer.
@@ -5129,7 +5132,7 @@ Engedélyezze a beállításokban a *Hálózat és kiszolgálók* menüpontban.<
ReadOlvasd el
- No comment provided by engineer.
+ swipe actionRead more
@@ -5289,7 +5292,8 @@ Engedélyezze a beállításokban a *Hálózat és kiszolgálók* menüpontban.<
RejectElutasítás
- reject incoming call via notification
+ reject incoming call via notification
+ swipe actionReject (sender NOT notified)
@@ -5391,6 +5395,10 @@ Engedélyezze a beállításokban a *Hálózat és kiszolgálók* menüpontban.<
Alaphelyzetbe állításNo comment provided by engineer.
+
+ Reset all hints
+ No comment provided by engineer.
+ Reset all statisticsMinden statisztika visszaállítása
@@ -6729,6 +6737,10 @@ A funkció bekapcsolása előtt a rendszer felszólítja a képernyőzár beáll
A végpontok közötti titkosítás ellenőrzéséhez hasonlítsa össze (vagy olvassa be a QR-kódot) az ismerőse eszközén lévő kóddal.No comment provided by engineer.
+
+ Toggle chat list:
+ No comment provided by engineer.
+ Toggle incognito when connecting.Inkognitó mód kapcsolódáskor.
@@ -6812,7 +6824,7 @@ A funkció bekapcsolása előtt a rendszer felszólítja a képernyőzár beáll
Unfav.Nem kedvelt.
- No comment provided by engineer.
+ swipe actionUnhide
@@ -6889,12 +6901,12 @@ A kapcsolódáshoz kérje meg ismerősét, hogy hozzon létre egy másik kapcsol
UnmuteNémítás feloldása
- No comment provided by engineer.
+ swipe actionUnreadOlvasatlan
- No comment provided by engineer.
+ swipe actionUp to 100 last messages are sent to new members.
@@ -7387,6 +7399,10 @@ Csatlakozási kérés megismétlése?
Hívásokat fogadhat a lezárási képernyőről, eszköz- és alkalmazáshitelesítés nélkül.No comment provided by engineer.
+
+ You can change it in Appearance settings.
+ No comment provided by engineer.
+ You can create it laterLétrehozás később
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 2049816358..fedc2e2d9e 100644
--- a/apps/ios/SimpleX Localizations/it.xcloc/Localized Contents/it.xliff
+++ b/apps/ios/SimpleX Localizations/it.xcloc/Localized Contents/it.xliff
@@ -566,7 +566,8 @@
AcceptAccettaaccept contact request via notification
- accept incoming call via notification
+ accept incoming call via notification
+ swipe action
Accept connection request?
@@ -581,7 +582,8 @@
Accept incognitoAccetta in incognito
- accept contact request via notification
+ accept contact request via notification
+ swipe actionAcknowledged
@@ -1308,6 +1310,10 @@
La chat è ferma. Se hai già usato questo database su un altro dispositivo, dovresti trasferirlo prima di avviare la chat.No comment provided by engineer.
+
+ Chat list
+ No comment provided by engineer.
+ Chat migrated!Chat migrata!
@@ -1371,7 +1377,7 @@
ClearSvuota
- No comment provided by engineer.
+ swipe actionClear conversation
@@ -1964,7 +1970,8 @@ Questo è il tuo link una tantum!
DeleteElimina
- chat item action
+ chat item action
+ swipe actionDelete %lld messages of members?
@@ -2168,10 +2175,6 @@ Questo è il tuo link una tantum!
Eliminato il: %@copied message info
-
- Deleted chats
- No comment provided by engineer.
- Deletion errorsErrori di eliminazione
@@ -3054,7 +3057,7 @@ Questo è il tuo link una tantum!
FavoritePreferito
- No comment provided by engineer.
+ swipe actionFile error
@@ -3830,7 +3833,7 @@ Errore: %2$@
JoinEntra
- No comment provided by engineer.
+ swipe actionJoin group
@@ -3921,7 +3924,7 @@ Questo è il tuo link per il gruppo %@!
LeaveEsci
- No comment provided by engineer.
+ swipe actionLeave group
@@ -4315,7 +4318,7 @@ Questo è il tuo link per il gruppo %@!
MuteSilenzia
- No comment provided by engineer.
+ swipe actionMuted when inactive!
@@ -4325,7 +4328,7 @@ Questo è il tuo link per il gruppo %@!
NameNome
- No comment provided by engineer.
+ swipe actionNetwork & servers
@@ -4540,10 +4543,6 @@ Questo è il tuo link per il gruppo %@!
Vecchio archivio del databaseNo comment provided by engineer.
-
- One-hand UI
- No comment provided by engineer.
- One-time invitation linkLink di invito una tantum
@@ -5117,6 +5116,10 @@ Attivalo nelle impostazioni *Rete e server*.
Valuta l'appNo comment provided by engineer.
+
+ Reachable chat toolbar
+ No comment provided by engineer.
+ Reachable chat toolbar 👋No comment provided by engineer.
@@ -5129,7 +5132,7 @@ Attivalo nelle impostazioni *Rete e server*.
ReadLeggi
- No comment provided by engineer.
+ swipe actionRead more
@@ -5289,7 +5292,8 @@ Attivalo nelle impostazioni *Rete e server*.
RejectRifiuta
- reject incoming call via notification
+ reject incoming call via notification
+ swipe actionReject (sender NOT notified)
@@ -5391,6 +5395,10 @@ Attivalo nelle impostazioni *Rete e server*.
RipristinaNo comment provided by engineer.
+
+ Reset all hints
+ No comment provided by engineer.
+ Reset all statisticsAzzera tutte le statistiche
@@ -6729,6 +6737,10 @@ 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.
+
+ Toggle chat list:
+ No comment provided by engineer.
+ Toggle incognito when connecting.Attiva/disattiva l'incognito quando ti colleghi.
@@ -6812,7 +6824,7 @@ Ti verrà chiesto di completare l'autenticazione prima di attivare questa funzio
Unfav.Non pref.
- No comment provided by engineer.
+ swipe actionUnhide
@@ -6889,12 +6901,12 @@ Per connetterti, chiedi al tuo contatto di creare un altro link di connessione e
UnmuteRiattiva notifiche
- No comment provided by engineer.
+ swipe actionUnreadNon letto
- No comment provided by engineer.
+ swipe actionUp to 100 last messages are sent to new members.
@@ -7387,6 +7399,10 @@ Ripetere la richiesta di ingresso?
Puoi accettare chiamate dalla schermata di blocco, senza l'autenticazione del dispositivo e dell'app.No comment provided by engineer.
+
+ You can change it in Appearance settings.
+ No comment provided by engineer.
+ You can create it laterPuoi crearlo più tardi
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 9d34262316..7d05b72347 100644
--- a/apps/ios/SimpleX Localizations/ja.xcloc/Localized Contents/ja.xliff
+++ b/apps/ios/SimpleX Localizations/ja.xcloc/Localized Contents/ja.xliff
@@ -559,7 +559,8 @@
Accept承諾accept contact request via notification
- accept incoming call via notification
+ accept incoming call via notification
+ swipe action
Accept connection request?
@@ -574,7 +575,8 @@
Accept incognitoシークレットモードで承諾
- accept contact request via notification
+ accept contact request via notification
+ swipe actionAcknowledged
@@ -1261,6 +1263,10 @@
Chat is stopped. If you already used this database on another device, you should transfer it back before starting chat.No comment provided by engineer.
+
+ Chat list
+ No comment provided by engineer.
+ Chat migrated!No comment provided by engineer.
@@ -1318,7 +1324,7 @@
Clear消す
- No comment provided by engineer.
+ swipe actionClear conversation
@@ -1870,7 +1876,8 @@ This is your own one-time link!
Delete削除
- chat item action
+ chat item action
+ swipe actionDelete %lld messages of members?
@@ -2069,10 +2076,6 @@ This is your own one-time link!
削除完了: %@copied message info
-
- Deleted chats
- No comment provided by engineer.
- Deletion errorsNo comment provided by engineer.
@@ -2903,7 +2906,7 @@ This is your own one-time link!
Favoriteお気に入り
- No comment provided by engineer.
+ swipe actionFile error
@@ -3635,7 +3638,7 @@ Error: %2$@
Join参加
- No comment provided by engineer.
+ swipe actionJoin group
@@ -3718,7 +3721,7 @@ This is your link for group %@!
Leave脱退
- No comment provided by engineer.
+ swipe actionLeave group
@@ -4081,7 +4084,7 @@ This is your link for group %@!
Muteミュート
- No comment provided by engineer.
+ swipe actionMuted when inactive!
@@ -4091,7 +4094,7 @@ This is your link for group %@!
Name名前
- No comment provided by engineer.
+ swipe actionNetwork & servers
@@ -4296,10 +4299,6 @@ This is your link for group %@!
過去のデータベースアーカイブNo comment provided by engineer.
-
- One-hand UI
- No comment provided by engineer.
- One-time invitation link使い捨ての招待リンク
@@ -4834,6 +4833,10 @@ Enable in *Network & servers* settings.
アプリを評価No comment provided by engineer.
+
+ Reachable chat toolbar
+ No comment provided by engineer.
+ Reachable chat toolbar 👋No comment provided by engineer.
@@ -4846,7 +4849,7 @@ Enable in *Network & servers* settings.
Read読む
- No comment provided by engineer.
+ swipe actionRead more
@@ -4993,7 +4996,8 @@ Enable in *Network & servers* settings.
Reject拒否
- reject incoming call via notification
+ reject incoming call via notification
+ swipe actionReject (sender NOT notified)
@@ -5089,6 +5093,10 @@ Enable in *Network & servers* settings.
戻すNo comment provided by engineer.
+
+ Reset all hints
+ No comment provided by engineer.
+ Reset all statisticsNo comment provided by engineer.
@@ -6332,6 +6340,10 @@ You will be prompted to complete authentication before this feature is enabled.<
エンドツーエンド暗号化を確認するには、ご自分の端末と連絡先の端末のコードを比べます (スキャンします)。No comment provided by engineer.
+
+ Toggle chat list:
+ No comment provided by engineer.
+ Toggle incognito when connecting.No comment provided by engineer.
@@ -6406,7 +6418,7 @@ You will be prompted to complete authentication before this feature is enabled.<
Unfav.お気に入りを取り消す。
- No comment provided by engineer.
+ swipe actionUnhide
@@ -6480,12 +6492,12 @@ To connect, please ask your contact to create another connection link and check
Unmuteミュート解除
- No comment provided by engineer.
+ swipe actionUnread未読
- No comment provided by engineer.
+ swipe actionUp to 100 last messages are sent to new members.
@@ -6931,6 +6943,10 @@ Repeat join request?
デバイスやアプリの認証を行わずに、ロック画面から通話を受けることができます。No comment provided by engineer.
+
+ You can change it in Appearance settings.
+ No comment provided by engineer.
+ You can create it later後からでも作成できます
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 e138a209de..c16f9f3ff4 100644
--- a/apps/ios/SimpleX Localizations/nl.xcloc/Localized Contents/nl.xliff
+++ b/apps/ios/SimpleX Localizations/nl.xcloc/Localized Contents/nl.xliff
@@ -566,7 +566,8 @@
AcceptAccepteeraccept contact request via notification
- accept incoming call via notification
+ accept incoming call via notification
+ swipe action
Accept connection request?
@@ -581,7 +582,8 @@
Accept incognitoAccepteer incognito
- accept contact request via notification
+ accept contact request via notification
+ swipe actionAcknowledged
@@ -1308,6 +1310,10 @@
Chat is gestopt. Als je deze database al op een ander apparaat hebt gebruikt, moet je deze terugzetten voordat je met chatten begint.No comment provided by engineer.
+
+ Chat list
+ No comment provided by engineer.
+ Chat migrated!Chat gemigreerd!
@@ -1371,7 +1377,7 @@
ClearWissen
- No comment provided by engineer.
+ swipe actionClear conversation
@@ -1964,7 +1970,8 @@ Dit is uw eigen eenmalige link!
DeleteVerwijderen
- chat item action
+ chat item action
+ swipe actionDelete %lld messages of members?
@@ -2168,10 +2175,6 @@ Dit is uw eigen eenmalige link!
Verwijderd om: %@copied message info
-
- Deleted chats
- No comment provided by engineer.
- Deletion errorsVerwijderingsfouten
@@ -3054,7 +3057,7 @@ Dit is uw eigen eenmalige link!
FavoriteFavoriet
- No comment provided by engineer.
+ swipe actionFile error
@@ -3830,7 +3833,7 @@ Fout: %2$@
JoinWord lid van
- No comment provided by engineer.
+ swipe actionJoin group
@@ -3921,7 +3924,7 @@ Dit is jouw link voor groep %@!
LeaveVerlaten
- No comment provided by engineer.
+ swipe actionLeave group
@@ -4315,7 +4318,7 @@ Dit is jouw link voor groep %@!
MuteDempen
- No comment provided by engineer.
+ swipe actionMuted when inactive!
@@ -4325,7 +4328,7 @@ Dit is jouw link voor groep %@!
NameNaam
- No comment provided by engineer.
+ swipe actionNetwork & servers
@@ -4540,10 +4543,6 @@ Dit is jouw link voor groep %@!
Oud database archiefNo comment provided by engineer.
-
- One-hand UI
- No comment provided by engineer.
- One-time invitation linkEenmalige uitnodiging link
@@ -5117,6 +5116,10 @@ Schakel dit in in *Netwerk en servers*-instellingen.
Beoordeel de appNo comment provided by engineer.
+
+ Reachable chat toolbar
+ No comment provided by engineer.
+ Reachable chat toolbar 👋No comment provided by engineer.
@@ -5129,7 +5132,7 @@ Schakel dit in in *Netwerk en servers*-instellingen.
ReadLees
- No comment provided by engineer.
+ swipe actionRead more
@@ -5289,7 +5292,8 @@ Schakel dit in in *Netwerk en servers*-instellingen.
RejectAfwijzen
- reject incoming call via notification
+ reject incoming call via notification
+ swipe actionReject (sender NOT notified)
@@ -5391,6 +5395,10 @@ Schakel dit in in *Netwerk en servers*-instellingen.
ResettenNo comment provided by engineer.
+
+ Reset all hints
+ No comment provided by engineer.
+ Reset all statisticsReset alle statistieken
@@ -6729,6 +6737,10 @@ U wordt gevraagd de authenticatie te voltooien voordat deze functie wordt ingesc
Vergelijk (of scan) de code op uw apparaten om end-to-end-codering met uw contact te verifiëren.No comment provided by engineer.
+
+ Toggle chat list:
+ No comment provided by engineer.
+ Toggle incognito when connecting.Schakel incognito in tijdens het verbinden.
@@ -6812,7 +6824,7 @@ U wordt gevraagd de authenticatie te voltooien voordat deze functie wordt ingesc
Unfav.Niet fav.
- No comment provided by engineer.
+ swipe actionUnhide
@@ -6889,12 +6901,12 @@ Om verbinding te maken, vraagt u uw contact om een andere verbinding link te mak
UnmuteDempen opheffen
- No comment provided by engineer.
+ swipe actionUnreadOngelezen
- No comment provided by engineer.
+ swipe actionUp to 100 last messages are sent to new members.
@@ -7387,6 +7399,10 @@ Deelnameverzoek herhalen?
U kunt oproepen van het vergrendelingsscherm accepteren, zonder apparaat- en app-verificatie.No comment provided by engineer.
+
+ You can change it in Appearance settings.
+ No comment provided by engineer.
+ You can create it laterU kan het later maken
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 19bad71751..2905aa52cf 100644
--- a/apps/ios/SimpleX Localizations/pl.xcloc/Localized Contents/pl.xliff
+++ b/apps/ios/SimpleX Localizations/pl.xcloc/Localized Contents/pl.xliff
@@ -566,7 +566,8 @@
AcceptAkceptujaccept contact request via notification
- accept incoming call via notification
+ accept incoming call via notification
+ swipe action
Accept connection request?
@@ -581,7 +582,8 @@
Accept incognitoAkceptuj incognito
- accept contact request via notification
+ accept contact request via notification
+ swipe actionAcknowledged
@@ -1305,6 +1307,10 @@
Czat został zatrzymany. Jeśli korzystałeś już z tej bazy danych na innym urządzeniu, powinieneś przenieść ją z powrotem przed rozpoczęciem czatu.No comment provided by engineer.
+
+ Chat list
+ No comment provided by engineer.
+ Chat migrated!Czat zmigrowany!
@@ -1368,7 +1374,7 @@
ClearWyczyść
- No comment provided by engineer.
+ swipe actionClear conversation
@@ -1960,7 +1966,8 @@ To jest twój jednorazowy link!
DeleteUsuń
- chat item action
+ chat item action
+ swipe actionDelete %lld messages of members?
@@ -2163,10 +2170,6 @@ To jest twój jednorazowy link!
Usunięto o: %@copied message info
-
- Deleted chats
- No comment provided by engineer.
- Deletion errorsBłędy usuwania
@@ -3044,7 +3047,7 @@ To jest twój jednorazowy link!
FavoriteUlubione
- No comment provided by engineer.
+ swipe actionFile error
@@ -3817,7 +3820,7 @@ Błąd: %2$@
JoinDołącz
- No comment provided by engineer.
+ swipe actionJoin group
@@ -3908,7 +3911,7 @@ To jest twój link do grupy %@!
LeaveOpuść
- No comment provided by engineer.
+ swipe actionLeave group
@@ -4299,7 +4302,7 @@ To jest twój link do grupy %@!
MuteWycisz
- No comment provided by engineer.
+ swipe actionMuted when inactive!
@@ -4309,7 +4312,7 @@ To jest twój link do grupy %@!
NameNazwa
- No comment provided by engineer.
+ swipe actionNetwork & servers
@@ -4523,10 +4526,6 @@ To jest twój link do grupy %@!
Stare archiwum bazy danychNo comment provided by engineer.
-
- One-hand UI
- No comment provided by engineer.
- One-time invitation linkJednorazowy link zaproszenia
@@ -5100,6 +5099,10 @@ Włącz w ustawianiach *Sieć i serwery* .
Oceń aplikacjęNo comment provided by engineer.
+
+ Reachable chat toolbar
+ No comment provided by engineer.
+ Reachable chat toolbar 👋No comment provided by engineer.
@@ -5112,7 +5115,7 @@ Włącz w ustawianiach *Sieć i serwery* .
ReadCzytaj
- No comment provided by engineer.
+ swipe actionRead more
@@ -5272,7 +5275,8 @@ Włącz w ustawianiach *Sieć i serwery* .
RejectOdrzuć
- reject incoming call via notification
+ reject incoming call via notification
+ swipe actionReject (sender NOT notified)
@@ -5374,6 +5378,10 @@ Włącz w ustawianiach *Sieć i serwery* .
ResetujNo comment provided by engineer.
+
+ Reset all hints
+ No comment provided by engineer.
+ Reset all statisticsResetuj wszystkie statystyki
@@ -6702,6 +6710,10 @@ Przed włączeniem tej funkcji zostanie wyświetlony monit uwierzytelniania.Aby zweryfikować szyfrowanie end-to-end z Twoim kontaktem porównaj (lub zeskanuj) kod na waszych urządzeniach.
No comment provided by engineer.
+
+ Toggle chat list:
+ No comment provided by engineer.
+ Toggle incognito when connecting.Przełącz incognito przy połączeniu.
@@ -6785,7 +6797,7 @@ Przed włączeniem tej funkcji zostanie wyświetlony monit uwierzytelniania.
Unfav.Nie ulub.
- No comment provided by engineer.
+ swipe actionUnhide
@@ -6862,12 +6874,12 @@ Aby się połączyć, poproś Twój kontakt o utworzenie kolejnego linku połąc
UnmuteWyłącz wyciszenie
- No comment provided by engineer.
+ swipe actionUnreadNieprzeczytane
- No comment provided by engineer.
+ swipe actionUp to 100 last messages are sent to new members.
@@ -7359,6 +7371,10 @@ Powtórzyć prośbę dołączenia?
Możesz przyjmować połączenia z ekranu blokady, bez uwierzytelniania urządzenia i aplikacji.No comment provided by engineer.
+
+ You can change it in Appearance settings.
+ No comment provided by engineer.
+ You can create it laterMożesz go utworzyć później
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 1a7578c908..529276a7d4 100644
--- a/apps/ios/SimpleX Localizations/ru.xcloc/Localized Contents/ru.xliff
+++ b/apps/ios/SimpleX Localizations/ru.xcloc/Localized Contents/ru.xliff
@@ -565,7 +565,8 @@
AcceptПринятьaccept contact request via notification
- accept incoming call via notification
+ accept incoming call via notification
+ swipe action
Accept connection request?
@@ -580,7 +581,8 @@
Accept incognitoПринять инкогнито
- accept contact request via notification
+ accept contact request via notification
+ swipe actionAcknowledged
@@ -1290,6 +1292,10 @@
Чат остановлен. Если вы уже использовали эту базу данных на другом устройстве, перенесите ее обратно до запуска чата.No comment provided by engineer.
+
+ Chat list
+ No comment provided by engineer.
+ Chat migrated!Чат мигрирован!
@@ -1349,7 +1355,7 @@
ClearОчистить
- No comment provided by engineer.
+ swipe actionClear conversation
@@ -1927,7 +1933,8 @@ This is your own one-time link!
DeleteУдалить
- chat item action
+ chat item action
+ swipe actionDelete %lld messages of members?
@@ -2129,10 +2136,6 @@ This is your own one-time link!
Удалено: %@copied message info
-
- Deleted chats
- No comment provided by engineer.
- Deletion errorsNo comment provided by engineer.
@@ -2998,7 +3001,7 @@ This is your own one-time link!
FavoriteИзбранный
- No comment provided by engineer.
+ swipe actionFile error
@@ -3762,7 +3765,7 @@ Error: %2$@
JoinВступить
- No comment provided by engineer.
+ swipe actionJoin group
@@ -3853,7 +3856,7 @@ This is your link for group %@!
LeaveВыйти
- No comment provided by engineer.
+ swipe actionLeave group
@@ -4234,7 +4237,7 @@ This is your link for group %@!
MuteБез звука
- No comment provided by engineer.
+ swipe actionMuted when inactive!
@@ -4244,7 +4247,7 @@ This is your link for group %@!
NameИмя
- No comment provided by engineer.
+ swipe actionNetwork & servers
@@ -4456,10 +4459,6 @@ This is your link for group %@!
Старый архив чатаNo comment provided by engineer.
-
- One-hand UI
- No comment provided by engineer.
- One-time invitation linkОдноразовая ссылка
@@ -5023,6 +5022,10 @@ Enable in *Network & servers* settings.
Оценить приложениеNo comment provided by engineer.
+
+ Reachable chat toolbar
+ No comment provided by engineer.
+ Reachable chat toolbar 👋No comment provided by engineer.
@@ -5035,7 +5038,7 @@ Enable in *Network & servers* settings.
ReadПрочитано
- No comment provided by engineer.
+ swipe actionRead more
@@ -5186,7 +5189,8 @@ Enable in *Network & servers* settings.
RejectОтклонить
- reject incoming call via notification
+ reject incoming call via notification
+ swipe actionReject (sender NOT notified)
@@ -5287,6 +5291,10 @@ Enable in *Network & servers* settings.
СброситьNo comment provided by engineer.
+
+ Reset all hints
+ No comment provided by engineer.
+ Reset all statisticsNo comment provided by engineer.
@@ -6580,6 +6588,10 @@ You will be prompted to complete authentication before this feature is enabled.<
Чтобы подтвердить end-to-end шифрование с Вашим контактом сравните (или сканируйте) код безопасности на Ваших устройствах.No comment provided by engineer.
+
+ Toggle chat list:
+ No comment provided by engineer.
+ Toggle incognito when connecting.Установите режим Инкогнито при соединении.
@@ -6661,7 +6673,7 @@ You will be prompted to complete authentication before this feature is enabled.<
Unfav.Не избр.
- No comment provided by engineer.
+ swipe actionUnhide
@@ -6738,12 +6750,12 @@ To connect, please ask your contact to create another connection link and check
UnmuteУведомлять
- No comment provided by engineer.
+ swipe actionUnreadНе прочитано
- No comment provided by engineer.
+ swipe actionUp to 100 last messages are sent to new members.
@@ -7226,6 +7238,10 @@ Repeat join request?
Вы можете принимать звонки на экране блокировки, без аутентификации.No comment provided by engineer.
+
+ You can change it in Appearance settings.
+ No comment provided by engineer.
+ You can create it laterВы можете создать его позже
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 6958c185e6..e078f14979 100644
--- a/apps/ios/SimpleX Localizations/th.xcloc/Localized Contents/th.xliff
+++ b/apps/ios/SimpleX Localizations/th.xcloc/Localized Contents/th.xliff
@@ -535,7 +535,8 @@
Acceptรับaccept contact request via notification
- accept incoming call via notification
+ accept incoming call via notification
+ swipe action
Accept connection request?
@@ -549,7 +550,8 @@
Accept incognitoยอมรับโหมดไม่ระบุตัวตน
- accept contact request via notification
+ accept contact request via notification
+ swipe actionAcknowledged
@@ -1229,6 +1231,10 @@
Chat is stopped. If you already used this database on another device, you should transfer it back before starting chat.No comment provided by engineer.
+
+ Chat list
+ No comment provided by engineer.
+ Chat migrated!No comment provided by engineer.
@@ -1286,7 +1292,7 @@
Clearลบ
- No comment provided by engineer.
+ swipe actionClear conversation
@@ -1835,7 +1841,8 @@ This is your own one-time link!
Deleteลบ
- chat item action
+ chat item action
+ swipe actionDelete %lld messages of members?
@@ -2034,10 +2041,6 @@ This is your own one-time link!
ลบที่: %@copied message info
-
- Deleted chats
- No comment provided by engineer.
- Deletion errorsNo comment provided by engineer.
@@ -2863,7 +2866,7 @@ This is your own one-time link!
Favoriteที่ชอบ
- No comment provided by engineer.
+ swipe actionFile error
@@ -3593,7 +3596,7 @@ Error: %2$@
Joinเข้าร่วม
- No comment provided by engineer.
+ swipe actionJoin group
@@ -3676,7 +3679,7 @@ This is your link for group %@!
Leaveออกจาก
- No comment provided by engineer.
+ swipe actionLeave group
@@ -4039,7 +4042,7 @@ This is your link for group %@!
Muteปิดเสียง
- No comment provided by engineer.
+ swipe actionMuted when inactive!
@@ -4049,7 +4052,7 @@ This is your link for group %@!
Nameชื่อ
- No comment provided by engineer.
+ swipe actionNetwork & servers
@@ -4252,10 +4255,6 @@ This is your link for group %@!
คลังฐานข้อมูลเก่าNo comment provided by engineer.
-
- One-hand UI
- No comment provided by engineer.
- One-time invitation linkลิงก์คำเชิญแบบใช้ครั้งเดียว
@@ -4787,6 +4786,10 @@ Enable in *Network & servers* settings.
ให้คะแนนแอปNo comment provided by engineer.
+
+ Reachable chat toolbar
+ No comment provided by engineer.
+ Reachable chat toolbar 👋No comment provided by engineer.
@@ -4799,7 +4802,7 @@ Enable in *Network & servers* settings.
Readอ่าน
- No comment provided by engineer.
+ swipe actionRead more
@@ -4946,7 +4949,8 @@ Enable in *Network & servers* settings.
Rejectปฏิเสธ
- reject incoming call via notification
+ reject incoming call via notification
+ swipe actionReject (sender NOT notified)
@@ -5041,6 +5045,10 @@ Enable in *Network & servers* settings.
รีเซ็ตNo comment provided by engineer.
+
+ Reset all hints
+ No comment provided by engineer.
+ Reset all statisticsNo comment provided by engineer.
@@ -6286,6 +6294,10 @@ You will be prompted to complete authentication before this feature is enabled.<
ในการตรวจสอบการเข้ารหัสแบบ encrypt จากต้นจนจบ กับผู้ติดต่อของคุณ ให้เปรียบเทียบ (หรือสแกน) รหัสบนอุปกรณ์ของคุณNo comment provided by engineer.
+
+ Toggle chat list:
+ No comment provided by engineer.
+ Toggle incognito when connecting.No comment provided by engineer.
@@ -6360,7 +6372,7 @@ You will be prompted to complete authentication before this feature is enabled.<
Unfav.เลิกชอบ
- No comment provided by engineer.
+ swipe actionUnhide
@@ -6434,12 +6446,12 @@ To connect, please ask your contact to create another connection link and check
Unmuteเปิดเสียง
- No comment provided by engineer.
+ swipe actionUnreadเปลี่ยนเป็นยังไม่ได้อ่าน
- No comment provided by engineer.
+ swipe actionUp to 100 last messages are sent to new members.
@@ -6883,6 +6895,10 @@ Repeat join request?
คุณสามารถรับสายจากหน้าจอล็อกโดยไม่ต้องมีการตรวจสอบสิทธิ์อุปกรณ์และแอปNo comment provided by engineer.
+
+ You can change it in Appearance settings.
+ No comment provided by engineer.
+ You can create it laterคุณสามารถสร้างได้ในภายหลัง
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 c79f051d2c..2a3abba4d3 100644
--- a/apps/ios/SimpleX Localizations/tr.xcloc/Localized Contents/tr.xliff
+++ b/apps/ios/SimpleX Localizations/tr.xcloc/Localized Contents/tr.xliff
@@ -565,7 +565,8 @@
AcceptKabul etaccept contact request via notification
- accept incoming call via notification
+ accept incoming call via notification
+ swipe action
Accept connection request?
@@ -580,7 +581,8 @@
Accept incognitoTakma adla kabul et
- accept contact request via notification
+ accept contact request via notification
+ swipe actionAcknowledged
@@ -1290,6 +1292,10 @@
Sohbet durduruldu. Bu veritabanını zaten başka bir cihazda kullandıysanız, sohbete başlamadan önce onu geri aktarmalısınız.No comment provided by engineer.
+
+ Chat list
+ No comment provided by engineer.
+ Chat migrated!Sohbet taşındı!
@@ -1349,7 +1355,7 @@
ClearTemizle
- No comment provided by engineer.
+ swipe actionClear conversation
@@ -1928,7 +1934,8 @@ Bu senin kendi tek kullanımlık bağlantın!
DeleteSil
- chat item action
+ chat item action
+ swipe actionDelete %lld messages of members?
@@ -2130,10 +2137,6 @@ Bu senin kendi tek kullanımlık bağlantın!
%@ de silindicopied message info
-
- Deleted chats
- No comment provided by engineer.
- Deletion errorsNo comment provided by engineer.
@@ -2999,7 +3002,7 @@ Bu senin kendi tek kullanımlık bağlantın!
FavoriteFavori
- No comment provided by engineer.
+ swipe actionFile error
@@ -3763,7 +3766,7 @@ Hata: %2$@
JoinKatıl
- No comment provided by engineer.
+ swipe actionJoin group
@@ -3854,7 +3857,7 @@ Bu senin grup için bağlantın %@!
LeaveAyrıl
- No comment provided by engineer.
+ swipe actionLeave group
@@ -4236,7 +4239,7 @@ Bu senin grup için bağlantın %@!
MuteSustur
- No comment provided by engineer.
+ swipe actionMuted when inactive!
@@ -4246,7 +4249,7 @@ Bu senin grup için bağlantın %@!
Nameİsim
- No comment provided by engineer.
+ swipe actionNetwork & servers
@@ -4458,10 +4461,6 @@ Bu senin grup için bağlantın %@!
Eski veritabanı arşiviNo comment provided by engineer.
-
- One-hand UI
- No comment provided by engineer.
- One-time invitation linkTek zamanlı bağlantı daveti
@@ -5025,6 +5024,10 @@ Enable in *Network & servers* settings.
Uygulamayı değerlendirNo comment provided by engineer.
+
+ Reachable chat toolbar
+ No comment provided by engineer.
+ Reachable chat toolbar 👋No comment provided by engineer.
@@ -5037,7 +5040,7 @@ Enable in *Network & servers* settings.
ReadOku
- No comment provided by engineer.
+ swipe actionRead more
@@ -5188,7 +5191,8 @@ Enable in *Network & servers* settings.
RejectReddet
- reject incoming call via notification
+ reject incoming call via notification
+ swipe actionReject (sender NOT notified)
@@ -5289,6 +5293,10 @@ Enable in *Network & servers* settings.
SıfırlaNo comment provided by engineer.
+
+ Reset all hints
+ No comment provided by engineer.
+ Reset all statisticsNo comment provided by engineer.
@@ -6582,6 +6590,10 @@ Bu özellik etkinleştirilmeden önce kimlik doğrulamayı tamamlamanız istenec
Kişinizle uçtan uca şifrelemeyi doğrulamak için cihazlarınızdaki kodu karşılaştırın (veya tarayın).No comment provided by engineer.
+
+ Toggle chat list:
+ No comment provided by engineer.
+ Toggle incognito when connecting.Bağlanırken gizli moda geçiş yap.
@@ -6663,7 +6675,7 @@ Bu özellik etkinleştirilmeden önce kimlik doğrulamayı tamamlamanız istenec
Unfav.Favorilerden çık.
- No comment provided by engineer.
+ swipe actionUnhide
@@ -6740,12 +6752,12 @@ Bağlanmak için lütfen kişinizden başka bir bağlantı oluşturmasını iste
UnmuteSusturmayı kaldır
- No comment provided by engineer.
+ swipe actionUnreadOkunmamış
- No comment provided by engineer.
+ swipe actionUp to 100 last messages are sent to new members.
@@ -7228,6 +7240,10 @@ Katılma isteği tekrarlansın mı?
Cihaz ve uygulama kimlik doğrulaması olmadan kilit ekranından çağrı kabul edebilirsiniz.No comment provided by engineer.
+
+ You can change it in Appearance settings.
+ No comment provided by engineer.
+ You can create it laterDaha sonra oluşturabilirsiniz
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 7e505910ac..4dd083713c 100644
--- a/apps/ios/SimpleX Localizations/uk.xcloc/Localized Contents/uk.xliff
+++ b/apps/ios/SimpleX Localizations/uk.xcloc/Localized Contents/uk.xliff
@@ -565,7 +565,8 @@
AcceptПрийнятиaccept contact request via notification
- accept incoming call via notification
+ accept incoming call via notification
+ swipe action
Accept connection request?
@@ -580,7 +581,8 @@
Accept incognitoПрийняти інкогніто
- accept contact request via notification
+ accept contact request via notification
+ swipe actionAcknowledged
@@ -1290,6 +1292,10 @@
Чат зупинено. Якщо ви вже використовували цю базу даних на іншому пристрої, перенесіть її назад перед запуском чату.No comment provided by engineer.
+
+ Chat list
+ No comment provided by engineer.
+ Chat migrated!Чат перемістився!
@@ -1349,7 +1355,7 @@
ClearЧисто
- No comment provided by engineer.
+ swipe actionClear conversation
@@ -1928,7 +1934,8 @@ This is your own one-time link!
DeleteВидалити
- chat item action
+ chat item action
+ swipe actionDelete %lld messages of members?
@@ -2130,10 +2137,6 @@ This is your own one-time link!
Видалено за: %@copied message info
-
- Deleted chats
- No comment provided by engineer.
- Deletion errorsNo comment provided by engineer.
@@ -2999,7 +3002,7 @@ This is your own one-time link!
FavoriteУлюблений
- No comment provided by engineer.
+ swipe actionFile error
@@ -3763,7 +3766,7 @@ Error: %2$@
JoinПриєднуйтесь
- No comment provided by engineer.
+ swipe actionJoin group
@@ -3854,7 +3857,7 @@ This is your link for group %@!
LeaveЗалишити
- No comment provided by engineer.
+ swipe actionLeave group
@@ -4236,7 +4239,7 @@ This is your link for group %@!
MuteВимкнути звук
- No comment provided by engineer.
+ swipe actionMuted when inactive!
@@ -4246,7 +4249,7 @@ This is your link for group %@!
NameІм'я
- No comment provided by engineer.
+ swipe actionNetwork & servers
@@ -4458,10 +4461,6 @@ This is your link for group %@!
Старий архів бази данихNo comment provided by engineer.
-
- One-hand UI
- No comment provided by engineer.
- One-time invitation linkПосилання на одноразове запрошення
@@ -5025,6 +5024,10 @@ Enable in *Network & servers* settings.
Оцініть додатокNo comment provided by engineer.
+
+ Reachable chat toolbar
+ No comment provided by engineer.
+ Reachable chat toolbar 👋No comment provided by engineer.
@@ -5037,7 +5040,7 @@ Enable in *Network & servers* settings.
ReadЧитати
- No comment provided by engineer.
+ swipe actionRead more
@@ -5188,7 +5191,8 @@ Enable in *Network & servers* settings.
RejectВідхилити
- reject incoming call via notification
+ reject incoming call via notification
+ swipe actionReject (sender NOT notified)
@@ -5289,6 +5293,10 @@ Enable in *Network & servers* settings.
ПерезавантаженняNo comment provided by engineer.
+
+ Reset all hints
+ No comment provided by engineer.
+ Reset all statisticsNo comment provided by engineer.
@@ -6582,6 +6590,10 @@ You will be prompted to complete authentication before this feature is enabled.<
Щоб перевірити наскрізне шифрування з вашим контактом, порівняйте (або відскануйте) код на ваших пристроях.No comment provided by engineer.
+
+ Toggle chat list:
+ No comment provided by engineer.
+ Toggle incognito when connecting.Увімкніть інкогніто при підключенні.
@@ -6663,7 +6675,7 @@ You will be prompted to complete authentication before this feature is enabled.<
Unfav.Нелюб.
- No comment provided by engineer.
+ swipe actionUnhide
@@ -6740,12 +6752,12 @@ To connect, please ask your contact to create another connection link and check
UnmuteУвімкнути звук
- No comment provided by engineer.
+ swipe actionUnreadНепрочитане
- No comment provided by engineer.
+ swipe actionUp to 100 last messages are sent to new members.
@@ -7228,6 +7240,10 @@ Repeat join request?
Ви можете приймати дзвінки з екрана блокування без автентифікації пристрою та програми.No comment provided by engineer.
+
+ You can change it in Appearance settings.
+ No comment provided by engineer.
+ You can create it laterВи можете створити його пізніше
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 0dd69443f8..0f428db73a 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
@@ -553,7 +553,8 @@
Accept接受accept contact request via notification
- accept incoming call via notification
+ accept incoming call via notification
+ swipe action
Accept connection request?
@@ -568,7 +569,8 @@
Accept incognito接受隐身聊天
- accept contact request via notification
+ accept contact request via notification
+ swipe actionAcknowledged
@@ -1274,6 +1276,10 @@
聊天已停止。如果你已经在另一台设备商使用过此数据库,你应该在启动聊天前将数据库传输回来。No comment provided by engineer.
+
+ Chat list
+ No comment provided by engineer.
+ Chat migrated!已迁移聊天!
@@ -1332,7 +1338,7 @@
Clear清除
- No comment provided by engineer.
+ swipe actionClear conversation
@@ -1901,7 +1907,8 @@ This is your own one-time link!
Delete删除
- chat item action
+ chat item action
+ swipe actionDelete %lld messages of members?
@@ -2102,10 +2109,6 @@ This is your own one-time link!
已删除于:%@copied message info
-
- Deleted chats
- No comment provided by engineer.
- Deletion errorsNo comment provided by engineer.
@@ -2962,7 +2965,7 @@ This is your own one-time link!
Favorite最喜欢
- No comment provided by engineer.
+ swipe actionFile error
@@ -3718,7 +3721,7 @@ Error: %2$@
Join加入
- No comment provided by engineer.
+ swipe actionJoin group
@@ -3805,7 +3808,7 @@ This is your link for group %@!
Leave离开
- No comment provided by engineer.
+ swipe actionLeave group
@@ -4182,7 +4185,7 @@ This is your link for group %@!
Mute静音
- No comment provided by engineer.
+ swipe actionMuted when inactive!
@@ -4192,7 +4195,7 @@ This is your link for group %@!
Name名称
- No comment provided by engineer.
+ swipe actionNetwork & servers
@@ -4403,10 +4406,6 @@ This is your link for group %@!
旧数据库存档No comment provided by engineer.
-
- One-hand UI
- No comment provided by engineer.
- One-time invitation link一次性邀请链接
@@ -4954,6 +4953,10 @@ Enable in *Network & servers* settings.
评价此应用程序No comment provided by engineer.
+
+ Reachable chat toolbar
+ No comment provided by engineer.
+ Reachable chat toolbar 👋No comment provided by engineer.
@@ -4966,7 +4969,7 @@ Enable in *Network & servers* settings.
Read已读
- No comment provided by engineer.
+ swipe actionRead more
@@ -5116,7 +5119,8 @@ Enable in *Network & servers* settings.
Reject拒绝
- reject incoming call via notification
+ reject incoming call via notification
+ swipe actionReject (sender NOT notified)
@@ -5217,6 +5221,10 @@ Enable in *Network & servers* settings.
重置No comment provided by engineer.
+
+ Reset all hints
+ No comment provided by engineer.
+ Reset all statisticsNo comment provided by engineer.
@@ -6501,6 +6509,10 @@ You will be prompted to complete authentication before this feature is enabled.<
要与您的联系人验证端到端加密,请比较(或扫描)您设备上的代码。No comment provided by engineer.
+
+ Toggle chat list:
+ No comment provided by engineer.
+ Toggle incognito when connecting.在连接时切换隐身模式。
@@ -6581,7 +6593,7 @@ You will be prompted to complete authentication before this feature is enabled.<
Unfav.取消最喜欢
- No comment provided by engineer.
+ swipe actionUnhide
@@ -6657,12 +6669,12 @@ To connect, please ask your contact to create another connection link and check
Unmute取消静音
- No comment provided by engineer.
+ swipe actionUnread未读
- No comment provided by engineer.
+ swipe actionUp to 100 last messages are sent to new members.
@@ -7131,6 +7143,10 @@ Repeat join request?
您可以从锁屏上接听电话,无需设备和应用程序的认证。No comment provided by engineer.
+
+ You can change it in Appearance settings.
+ No comment provided by engineer.
+ You can create it later您可以以后创建它
diff --git a/apps/ios/SimpleX.xcodeproj/project.pbxproj b/apps/ios/SimpleX.xcodeproj/project.pbxproj
index 88de762467..12c736cee5 100644
--- a/apps/ios/SimpleX.xcodeproj/project.pbxproj
+++ b/apps/ios/SimpleX.xcodeproj/project.pbxproj
@@ -1980,7 +1980,7 @@
DEVELOPMENT_TEAM = 5NN7GUYB6T;
GENERATE_INFOPLIST_FILE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
- MARKETING_VERSION = 1.0;
+ MARKETING_VERSION = 6.0;
PRODUCT_BUNDLE_IDENTIFIER = "chat.simplex.Tests-iOS";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = iphoneos;
@@ -2000,7 +2000,7 @@
DEVELOPMENT_TEAM = 5NN7GUYB6T;
GENERATE_INFOPLIST_FILE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
- MARKETING_VERSION = 1.0;
+ MARKETING_VERSION = 6.0;
PRODUCT_BUNDLE_IDENTIFIER = "chat.simplex.Tests-iOS";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = iphoneos;
@@ -2212,7 +2212,7 @@
"@executable_path/../../Frameworks",
);
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
- MARKETING_VERSION = 1.0;
+ MARKETING_VERSION = 6.0;
PRODUCT_BUNDLE_IDENTIFIER = "chat.simplex.app.SimpleX-SE";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = iphoneos;
@@ -2246,7 +2246,7 @@
"@executable_path/../../Frameworks",
);
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
- MARKETING_VERSION = 1.0;
+ MARKETING_VERSION = 6.0;
PRODUCT_BUNDLE_IDENTIFIER = "chat.simplex.app.SimpleX-SE";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = iphoneos;
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 05cd9cb118..be9acedd89 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
@@ -30,7 +30,7 @@ fun WhatsNewView(viaSettings: Boolean = false, close: () -> Unit) {
val currentVersion = remember { mutableStateOf(versionDescriptions.lastIndex) }
@Composable
- fun featureDescription(icon: Painter, titleId: StringResource, descrId: StringResource, link: String?) {
+ fun featureDescription(icon: ImageResource?, titleId: StringResource, descrId: StringResource?, link: String?, subfeatures: List>) {
@Composable
fun linkButton(link: String) {
val uriHandler = LocalUriHandler.current
@@ -47,7 +47,7 @@ fun WhatsNewView(viaSettings: Boolean = false, close: () -> Unit) {
horizontalArrangement = Arrangement.spacedBy(8.dp),
modifier = Modifier.padding(bottom = 4.dp)
) {
- Icon(icon, stringResource(titleId), tint = MaterialTheme.colors.secondary)
+ if (icon != null) Icon(painterResource(icon), stringResource(titleId), tint = MaterialTheme.colors.secondary)
Text(
generalGetString(titleId),
maxLines = 2,
@@ -59,7 +59,17 @@ fun WhatsNewView(viaSettings: Boolean = false, close: () -> Unit) {
linkButton(link)
}
}
- Text(generalGetString(descrId), fontSize = 15.sp)
+ if (descrId != null) Text(generalGetString(descrId), fontSize = 15.sp)
+ for ((si, sd) in subfeatures) {
+ Row(
+ verticalAlignment = Alignment.CenterVertically,
+ horizontalArrangement = Arrangement.spacedBy(8.dp),
+ modifier = Modifier.padding(bottom = 4.dp)
+ ) {
+ Icon(painterResource(si), stringResource(sd), tint = MaterialTheme.colors.secondary)
+ Text(generalGetString(sd), fontSize = 15.sp)
+ }
+ }
}
}
@@ -116,7 +126,7 @@ fun WhatsNewView(viaSettings: Boolean = false, close: () -> Unit) {
v.features.forEach { feature ->
if (feature.show) {
- featureDescription(painterResource(feature.icon), feature.titleId, feature.descrId, feature.link)
+ featureDescription(feature.icon, feature.titleId, feature.descrId, feature.link, feature.subfeatures)
}
}
@@ -157,9 +167,10 @@ fun ReadMoreButton(url: String) {
}
private data class FeatureDescription(
- val icon: ImageResource,
+ val icon: ImageResource?,
val titleId: StringResource,
- val descrId: StringResource,
+ val descrId: StringResource?,
+ var subfeatures: List> = listOf(),
val link: String? = null,
val show: Boolean = true
)
@@ -595,14 +606,24 @@ private val versionDescriptions: List = listOf(
post = "https://simplex.chat/blog/20240814-simplex-chat-vision-funding-v6-private-routing-new-user-experience.html",
features = listOf(
FeatureDescription(
- icon = MR.images.ic_settings_ethernet,
- titleId = MR.strings.v5_8_private_routing,
- descrId = MR.strings.v6_0_private_routing_descr
+ icon = null,
+ titleId = MR.strings.v6_0_new_chat_experience,
+ descrId = null,
+ subfeatures = listOf(
+ MR.images.ic_add_link to MR.strings.v6_0_connect_faster_descr,
+ MR.images.ic_inventory_2 to MR.strings.v6_0_your_contacts_descr,
+ MR.images.ic_delete to MR.strings.v6_0_delete_many_messages_descr,
+ MR.images.ic_match_case to MR.strings.v6_0_increase_font_size
+ )
),
FeatureDescription(
- icon = MR.images.ic_id_card,
- titleId = MR.strings.v6_0_your_contacts,
- descrId = MR.strings.v6_0_your_contacts_descr
+ icon = null,
+ titleId = MR.strings.v6_0_new_media_options,
+ descrId = null,
+ subfeatures = listOf(
+ MR.images.ic_play_arrow_filled to MR.strings.v6_0_chat_list_media,
+ MR.images.ic_blur_on to MR.strings.v6_0_privacy_blur,
+ )
),
FeatureDescription(
icon = MR.images.ic_toast,
@@ -611,20 +632,21 @@ private val versionDescriptions: List = listOf(
show = appPlatform.isAndroid
),
FeatureDescription(
- icon = MR.images.ic_link,
- titleId = MR.strings.v6_0_connect_faster,
- descrId = MR.strings.v6_0_connect_faster_descr
- ),
- FeatureDescription(
- icon = MR.images.ic_delete,
- titleId = MR.strings.v6_0_delete_many_messages,
- descrId = MR.strings.v6_0_delete_many_messages_descr
+ icon = MR.images.ic_settings_ethernet,
+ titleId = MR.strings.v5_8_private_routing,
+ descrId = MR.strings.v6_0_private_routing_descr
),
FeatureDescription(
icon = MR.images.ic_wifi_tethering,
titleId = MR.strings.v6_0_connection_servers_status,
descrId = MR.strings.v6_0_connection_servers_status_descr
- )
+ ),
+ FeatureDescription(
+ icon = MR.images.ic_upgrade,
+ titleId = MR.strings.v6_0_upgrade_app,
+ descrId = MR.strings.v6_0_upgrade_app_descr,
+ show = appPlatform.isDesktop
+ ),
),
)
)
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 ec7af68765..db0b407d9d 100644
--- a/apps/multiplatform/common/src/commonMain/resources/MR/base/strings.xml
+++ b/apps/multiplatform/common/src/commonMain/resources/MR/base/strings.xml
@@ -1977,15 +1977,19 @@
Improved message deliveryWith reduced battery usage.Persian UI
+ New chat experience 🎉
+ New media optionsIt protects your IP address and connections.
- Your contacts your way
- - Search contacts when starting chat.\n- Archive contacts to chat later.
- Reachable chat toolbar 👋
+ Archive contacts to chat later.
+ Reachable chat toolbarUse the app with one hand.
- Connect to your friends faster
- Even when they are offline.
- Moderate like a pro ✋
+ Connect to your friends faster.Delete up to 20 messages at once.
+ Play from the chat list.
+ Blur for better privacy.
+ Increase font size.
+ Upgrade app automatically
+ Download new versions from GitHub.Control your networkConnection and servers status.
diff --git a/apps/multiplatform/common/src/commonMain/resources/MR/images/ic_match_case.svg b/apps/multiplatform/common/src/commonMain/resources/MR/images/ic_match_case.svg
new file mode 100644
index 0000000000..b56c8cb590
--- /dev/null
+++ b/apps/multiplatform/common/src/commonMain/resources/MR/images/ic_match_case.svg
@@ -0,0 +1,4 @@
+
\ No newline at end of file
diff --git a/apps/multiplatform/common/src/commonMain/resources/MR/images/ic_upgrade.svg b/apps/multiplatform/common/src/commonMain/resources/MR/images/ic_upgrade.svg
new file mode 100644
index 0000000000..c9ecd4ad87
--- /dev/null
+++ b/apps/multiplatform/common/src/commonMain/resources/MR/images/ic_upgrade.svg
@@ -0,0 +1,4 @@
+
\ No newline at end of file