From 41576f80e7b7f83406a70ef7cefb5d3bd51e30ee Mon Sep 17 00:00:00 2001 From: Evgeny Date: Thu, 8 Aug 2024 13:07:55 +0100 Subject: [PATCH] ui: update whats new in 6.0 (#4625) * ui: update whats new in 6.0 * update * export localization * android whats new --- .../Views/ChatList/ChatListNavLink.swift | 30 ++-- .../ios/Shared/Views/Helpers/SwipeLabel.swift | 4 +- .../Views/Onboarding/WhatsNewView.swift | 138 ++++++++++-------- .../Views/UserSettings/PrivacySettings.swift | 2 +- .../bg.xcloc/Localized Contents/bg.xliff | 60 +++++--- .../cs.xcloc/Localized Contents/cs.xliff | 60 +++++--- .../de.xcloc/Localized Contents/de.xliff | 60 +++++--- .../en.xcloc/Localized Contents/en.xliff | 67 ++++++--- .../es.xcloc/Localized Contents/es.xliff | 60 +++++--- .../fi.xcloc/Localized Contents/fi.xliff | 60 +++++--- .../fr.xcloc/Localized Contents/fr.xliff | 60 +++++--- .../hu.xcloc/Localized Contents/hu.xliff | 60 +++++--- .../it.xcloc/Localized Contents/it.xliff | 60 +++++--- .../ja.xcloc/Localized Contents/ja.xliff | 60 +++++--- .../nl.xcloc/Localized Contents/nl.xliff | 60 +++++--- .../pl.xcloc/Localized Contents/pl.xliff | 60 +++++--- .../ru.xcloc/Localized Contents/ru.xliff | 60 +++++--- .../th.xcloc/Localized Contents/th.xliff | 60 +++++--- .../tr.xcloc/Localized Contents/tr.xliff | 60 +++++--- .../uk.xcloc/Localized Contents/uk.xliff | 60 +++++--- .../Localized Contents/zh-Hans.xliff | 60 +++++--- apps/ios/SimpleX.xcodeproj/project.pbxproj | 8 +- .../common/views/onboarding/WhatsNewView.kt | 64 +++++--- .../commonMain/resources/MR/base/strings.xml | 16 +- .../resources/MR/images/ic_match_case.svg | 4 + .../resources/MR/images/ic_upgrade.svg | 4 + 26 files changed, 815 insertions(+), 482 deletions(-) create mode 100644 apps/multiplatform/common/src/commonMain/resources/MR/images/ic_match_case.svg create mode 100644 apps/multiplatform/common/src/commonMain/resources/MR/images/ic_upgrade.svg 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 action Acknowledged @@ -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 action Clear conversation @@ -1923,7 +1929,8 @@ This is your own one-time link! Delete Изтрий - chat item action + chat item action + swipe action Delete %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 errors No comment provided by engineer. @@ -2991,7 +2994,7 @@ This is your own one-time link! Favorite Любим - No comment provided by engineer. + swipe action File error @@ -3750,7 +3753,7 @@ Error: %2$@ Join Присъединяване - No comment provided by engineer. + swipe action Join group @@ -3841,7 +3844,7 @@ This is your link for group %@! Leave Напусни - No comment provided by engineer. + swipe action Leave group @@ -4221,7 +4224,7 @@ This is your link for group %@! Mute Без звук - No comment provided by engineer. + swipe action Muted when inactive! @@ -4231,7 +4234,7 @@ This is your link for group %@! Name Име - No comment provided by engineer. + swipe action Network & 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 action Read more @@ -5166,7 +5169,8 @@ Enable in *Network & servers* settings. Reject Отхвърляне - reject incoming call via notification + reject incoming call via notification + swipe action Reject (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 statistics No 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 action Unhide @@ -6708,12 +6720,12 @@ To connect, please ask your contact to create another connection link and check Unmute Уведомявай - No comment provided by engineer. + swipe action Unread Непрочетено - No comment provided by engineer. + swipe action Up 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 @@ Accept Přijmout accept contact request via notification - accept incoming call via notification + accept incoming call via notification + swipe action Accept connection request? @@ -562,7 +563,8 @@ Accept incognito Přijmout inkognito - accept contact request via notification + accept contact request via notification + swipe action Acknowledged @@ -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 @@ Clear Vyčistit - No comment provided by engineer. + swipe action Clear conversation @@ -1853,7 +1859,8 @@ This is your own one-time link! Delete Smazat - chat item action + chat item action + swipe action Delete %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 errors No comment provided by engineer. @@ -2888,7 +2891,7 @@ This is your own one-time link! Favorite Oblíbené - No comment provided by engineer. + swipe action File error @@ -3620,7 +3623,7 @@ Error: %2$@ Join Připojte se na - No comment provided by engineer. + swipe action Join group @@ -3703,7 +3706,7 @@ This is your link for group %@! Leave Opustit - No comment provided by engineer. + swipe action Leave group @@ -4067,7 +4070,7 @@ This is your link for group %@! Mute Ztlumit - No comment provided by engineer. + swipe action Muted when inactive! @@ -4077,7 +4080,7 @@ This is your link for group %@! Name Jméno - No comment provided by engineer. + swipe action Network & servers @@ -4282,10 +4285,6 @@ This is your link for group %@! Archiv staré databáze No comment provided by engineer. - - One-hand UI - No comment provided by engineer. - One-time invitation link Jednorázový zvací odkaz @@ -4820,6 +4819,10 @@ Enable in *Network & servers* settings. Ohodnoťte aplikaci No 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 action Read more @@ -4980,7 +4983,8 @@ Enable in *Network & servers* settings. Reject Odmítnout - reject incoming call via notification + reject incoming call via notification + swipe action Reject (sender NOT notified) @@ -5076,6 +5080,10 @@ Enable in *Network & servers* settings. Obnovit No comment provided by engineer. + + Reset all hints + No comment provided by engineer. + Reset all statistics No 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 action Unhide @@ -6477,12 +6489,12 @@ Chcete-li se připojit, požádejte svůj kontakt o vytvoření dalšího odkazu Unmute Zrušit ztlumení - No comment provided by engineer. + swipe action Unread Nepřečtený - No comment provided by engineer. + swipe action Up 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 later Můž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 @@ Accept Annehmen accept contact request via notification - accept incoming call via notification + accept incoming call via notification + swipe action Accept connection request? @@ -581,7 +582,8 @@ Accept incognito Inkognito akzeptieren - accept contact request via notification + accept contact request via notification + swipe action Acknowledged @@ -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 @@ Clear Löschen - No comment provided by engineer. + swipe action Clear conversation @@ -1964,7 +1970,8 @@ Das ist Ihr eigener Einmal-Link! Delete Löschen - chat item action + chat item action + swipe action Delete %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 errors Fehler beim Löschen @@ -3054,7 +3057,7 @@ Das ist Ihr eigener Einmal-Link! Favorite Favorit - No comment provided by engineer. + swipe action File error @@ -3830,7 +3833,7 @@ Fehler: %2$@ Join Beitreten - No comment provided by engineer. + swipe action Join group @@ -3921,7 +3924,7 @@ Das ist Ihr Link für die Gruppe %@! Leave Verlassen - No comment provided by engineer. + swipe action Leave group @@ -4315,7 +4318,7 @@ Das ist Ihr Link für die Gruppe %@! Mute Stummschalten - No comment provided by engineer. + swipe action Muted when inactive! @@ -4325,7 +4328,7 @@ Das ist Ihr Link für die Gruppe %@! Name Name - No comment provided by engineer. + swipe action Network & servers @@ -4540,10 +4543,6 @@ Das ist Ihr Link für die Gruppe %@! Altes Datenbankarchiv No comment provided by engineer. - - One-hand UI - No comment provided by engineer. - One-time invitation link Einmal-Einladungslink @@ -5117,6 +5116,10 @@ Aktivieren Sie es in den *Netzwerk & Server* Einstellungen. Bewerten Sie die App No 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. Read Gelesen - No comment provided by engineer. + swipe action Read more @@ -5289,7 +5292,8 @@ Aktivieren Sie es in den *Netzwerk & Server* Einstellungen. Reject Ablehnen - reject incoming call via notification + reject incoming call via notification + swipe action Reject (sender NOT notified) @@ -5391,6 +5395,10 @@ Aktivieren Sie es in den *Netzwerk & Server* Einstellungen. Zurücksetzen No comment provided by engineer. + + Reset all hints + No comment provided by engineer. + Reset all statistics Alle 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 action Unhide @@ -6889,12 +6901,12 @@ Bitten Sie Ihren Kontakt darum einen weiteren Verbindungs-Link zu erzeugen, um s Unmute Stummschaltung aufheben - No comment provided by engineer. + swipe action Unread Ungelesen - No comment provided by engineer. + swipe action Up 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 later Sie 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 @@ Accept Accept accept contact request via notification - accept incoming call via notification + accept incoming call via notification + swipe action Accept connection request? @@ -583,7 +584,8 @@ Accept incognito Accept incognito - accept contact request via notification + accept contact request via notification + swipe action Acknowledged @@ -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 @@ Clear Clear - No comment provided by engineer. + swipe action Clear conversation @@ -1981,7 +1988,8 @@ This is your own one-time link! Delete Delete - chat item action + chat item action + swipe action Delete %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 errors Deletion errors @@ -3077,7 +3080,7 @@ This is your own one-time link! Favorite Favorite - No comment provided by engineer. + swipe action File error @@ -3854,7 +3857,7 @@ Error: %2$@ Join Join - No comment provided by engineer. + swipe action Join group @@ -3946,7 +3949,7 @@ This is your link for group %@! Leave Leave - No comment provided by engineer. + swipe action Leave group @@ -4341,7 +4344,7 @@ This is your link for group %@! Mute Mute - No comment provided by engineer. + swipe action Muted when inactive! @@ -4351,7 +4354,7 @@ This is your link for group %@! Name Name - No comment provided by engineer. + swipe action Network & servers @@ -4567,11 +4570,6 @@ This is your link for group %@! Old database archive No comment provided by engineer. - - One-hand UI - One-hand UI - No comment provided by engineer. - One-time invitation link One-time invitation link @@ -5147,6 +5145,11 @@ Enable in *Network & servers* settings. Rate the app No 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. Read Read - No comment provided by engineer. + swipe action Read more @@ -5320,7 +5323,8 @@ Enable in *Network & servers* settings. Reject Reject - reject incoming call via notification + reject incoming call via notification + swipe action Reject (sender NOT notified) @@ -5422,6 +5426,11 @@ Enable in *Network & servers* settings. Reset No comment provided by engineer. + + Reset all hints + Reset all hints + No comment provided by engineer. + Reset all statistics Reset 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 action Unhide @@ -6921,12 +6935,12 @@ To connect, please ask your contact to create another connection link and check Unmute Unmute - No comment provided by engineer. + swipe action Unread Unread - No comment provided by engineer. + swipe action Up 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 later You 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 @@ Accept Aceptar accept contact request via notification - accept incoming call via notification + accept incoming call via notification + swipe action Accept connection request? @@ -581,7 +582,8 @@ Accept incognito Aceptar incógnito - accept contact request via notification + accept contact request via notification + swipe action Acknowledged @@ -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 @@ Clear Vaciar - No comment provided by engineer. + swipe action Clear conversation @@ -1960,7 +1966,8 @@ This is your own one-time link! Delete Eliminar - chat item action + chat item action + swipe action Delete %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 errors Errores de borrado @@ -3044,7 +3047,7 @@ This is your own one-time link! Favorite Favoritos - No comment provided by engineer. + swipe action File error @@ -3817,7 +3820,7 @@ Error: %2$@ Join Unirte - No comment provided by engineer. + swipe action Join group @@ -3908,7 +3911,7 @@ This is your link for group %@! Leave Salir - No comment provided by engineer. + swipe action Leave group @@ -4299,7 +4302,7 @@ This is your link for group %@! Mute Silenciar - No comment provided by engineer. + swipe action Muted when inactive! @@ -4309,7 +4312,7 @@ This is your link for group %@! Name Nombre - No comment provided by engineer. + swipe action Network & servers @@ -4523,10 +4526,6 @@ This is your link for group %@! Archivo de bases de datos antiguas No comment provided by engineer. - - One-hand UI - No comment provided by engineer. - One-time invitation link Enlace de invitación de un solo uso @@ -5100,6 +5099,10 @@ Actívalo en ajustes de *Servidores y Redes*. Valora la aplicación 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 @@ Actívalo en ajustes de *Servidores y Redes*. Read Leer - No comment provided by engineer. + swipe action Read more @@ -5272,7 +5275,8 @@ Actívalo en ajustes de *Servidores y Redes*. Reject Rechazar - reject incoming call via notification + reject incoming call via notification + swipe action Reject (sender NOT notified) @@ -5374,6 +5378,10 @@ Actívalo en ajustes de *Servidores y Redes*. Restablecer No comment provided by engineer. + + Reset all hints + No comment provided by engineer. + Reset all statistics Restablecer 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 action Unhide @@ -6862,12 +6874,12 @@ Para conectarte pide a tu contacto que cree otro enlace y comprueba la conexión Unmute Activar audio - No comment provided by engineer. + swipe action Unread No leído - No comment provided by engineer. + swipe action Up 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 later Puedes 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 @@ Accept Hyväksy accept contact request via notification - accept incoming call via notification + accept incoming call via notification + swipe action Accept connection request? @@ -557,7 +558,8 @@ Accept incognito Hyväksy tuntematon - accept contact request via notification + accept contact request via notification + swipe action Acknowledged @@ -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 @@ Clear Tyhjennä - No comment provided by engineer. + swipe action Clear conversation @@ -1846,7 +1852,8 @@ This is your own one-time link! Delete Poista - chat item action + chat item action + swipe action Delete %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 errors No comment provided by engineer. @@ -2878,7 +2881,7 @@ This is your own one-time link! Favorite Suosikki - No comment provided by engineer. + swipe action File error @@ -3610,7 +3613,7 @@ Error: %2$@ Join Liity - No comment provided by engineer. + swipe action Join group @@ -3693,7 +3696,7 @@ This is your link for group %@! Leave Poistu - No comment provided by engineer. + swipe action Leave group @@ -4057,7 +4060,7 @@ This is your link for group %@! Mute Mykistä - No comment provided by engineer. + swipe action Muted when inactive! @@ -4067,7 +4070,7 @@ This is your link for group %@! Name Nimi - No comment provided by engineer. + swipe action Network & servers @@ -4271,10 +4274,6 @@ This is your link for group %@! Vanha tietokanta-arkisto No comment provided by engineer. - - One-hand UI - No comment provided by engineer. - One-time invitation link Kertakutsulinkki @@ -4808,6 +4807,10 @@ Enable in *Network & servers* settings. Arvioi sovellus No 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. Read Lue - No comment provided by engineer. + swipe action Read more @@ -4968,7 +4971,8 @@ Enable in *Network & servers* settings. Reject Hylkää - reject incoming call via notification + reject incoming call via notification + swipe action Reject (sender NOT notified) @@ -5064,6 +5068,10 @@ Enable in *Network & servers* settings. Oletustilaan No comment provided by engineer. + + Reset all hints + No comment provided by engineer. + Reset all statistics No 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 action Unhide @@ -6462,12 +6474,12 @@ Jos haluat muodostaa yhteyden, pyydä kontaktiasi luomaan toinen yhteyslinkki ja Unmute Poista mykistys - No comment provided by engineer. + swipe action Unread Lukematon - No comment provided by engineer. + swipe action Up 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 later Voit 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 @@ Accept Accepter accept contact request via notification - accept incoming call via notification + accept incoming call via notification + swipe action Accept connection request? @@ -581,7 +582,8 @@ Accept incognito Accepter en incognito - accept contact request via notification + accept contact request via notification + swipe action Acknowledged @@ -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 @@ Clear Effacer - No comment provided by engineer. + swipe action Clear conversation @@ -1963,7 +1969,8 @@ Il s'agit de votre propre lien unique ! Delete Supprimer - chat item action + chat item action + swipe action Delete %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 errors Erreurs de suppression @@ -3053,7 +3056,7 @@ Il s'agit de votre propre lien unique ! Favorite Favoris - No comment provided by engineer. + swipe action File error @@ -3829,7 +3832,7 @@ Erreur : %2$@ Join Rejoindre - No comment provided by engineer. + swipe action Join group @@ -3920,7 +3923,7 @@ Voici votre lien pour le groupe %@ ! Leave Quitter - No comment provided by engineer. + swipe action Leave group @@ -4312,7 +4315,7 @@ Voici votre lien pour le groupe %@ ! Mute Muet - No comment provided by engineer. + swipe action Muted when inactive! @@ -4322,7 +4325,7 @@ Voici votre lien pour le groupe %@ ! Name Nom - No comment provided by engineer. + swipe action Network & servers @@ -4537,10 +4540,6 @@ Voici votre lien pour le groupe %@ ! Archives de l'ancienne base de données No comment provided by engineer. - - One-hand UI - No comment provided by engineer. - One-time invitation link Lien d'invitation unique @@ -5114,6 +5113,10 @@ Activez-le dans les paramètres *Réseau et serveurs*. Évaluer l'app No 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*. Read Lire - No comment provided by engineer. + swipe action Read more @@ -5286,7 +5289,8 @@ Activez-le dans les paramètres *Réseau et serveurs*. Reject Rejeter - reject incoming call via notification + reject incoming call via notification + swipe action Reject (sender NOT notified) @@ -5388,6 +5392,10 @@ Activez-le dans les paramètres *Réseau et serveurs*. Réinitialisation No comment provided by engineer. + + Reset all hints + No comment provided by engineer. + Reset all statistics Ré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 action Unhide @@ -6882,12 +6894,12 @@ Pour vous connecter, veuillez demander à votre contact de créer un autre lien Unmute Démute - No comment provided by engineer. + swipe action Unread Non lu - No comment provided by engineer. + swipe action Up 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 later Vous 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 @@ Accept Elfogadás accept contact request via notification - accept incoming call via notification + accept incoming call via notification + swipe action Accept connection request? @@ -581,7 +582,8 @@ Accept incognito Fogadás inkognítóban - accept contact request via notification + accept contact request via notification + swipe action Acknowledged @@ -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 @@ Clear Kiürítés - No comment provided by engineer. + swipe action Clear conversation @@ -1964,7 +1970,8 @@ Ez az egyszer használatos hivatkozása! Delete Törlés - chat item action + chat item action + swipe action Delete %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 errors Törlési hibák @@ -3054,7 +3057,7 @@ Ez az egyszer használatos hivatkozása! Favorite Kedvenc - No comment provided by engineer. + swipe action File error @@ -3830,7 +3833,7 @@ Hiba: %2$@ Join Csatlakozás - No comment provided by engineer. + swipe action Join group @@ -3921,7 +3924,7 @@ Ez az ön hivatkozása a(z) %@ csoporthoz! Leave Elhagyás - No comment provided by engineer. + swipe action Leave group @@ -4315,7 +4318,7 @@ Ez az ön hivatkozása a(z) %@ csoporthoz! Mute Elnémítás - No comment provided by engineer. + swipe action Muted when inactive! @@ -4325,7 +4328,7 @@ Ez az ön hivatkozása a(z) %@ csoporthoz! Name Név - No comment provided by engineer. + swipe action Network & servers @@ -4540,10 +4543,6 @@ Ez az ön hivatkozása a(z) %@ csoporthoz! Régi adatbázis archívum No comment provided by engineer. - - One-hand UI - No comment provided by engineer. - One-time invitation link Egyszer 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ást No 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.< Read Olvasd el - No comment provided by engineer. + swipe action Read more @@ -5289,7 +5292,8 @@ Engedélyezze a beállításokban a *Hálózat és kiszolgálók* menüpontban.< Reject Elutasítás - reject incoming call via notification + reject incoming call via notification + swipe action Reject (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ás No comment provided by engineer. + + Reset all hints + No comment provided by engineer. + Reset all statistics Minden 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 action Unhide @@ -6889,12 +6901,12 @@ A kapcsolódáshoz kérje meg ismerősét, hogy hozzon létre egy másik kapcsol Unmute Némítás feloldása - No comment provided by engineer. + swipe action Unread Olvasatlan - No comment provided by engineer. + swipe action Up 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 later Lé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 @@ Accept Accetta accept contact request via notification - accept incoming call via notification + accept incoming call via notification + swipe action Accept connection request? @@ -581,7 +582,8 @@ Accept incognito Accetta in incognito - accept contact request via notification + accept contact request via notification + swipe action Acknowledged @@ -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 @@ Clear Svuota - No comment provided by engineer. + swipe action Clear conversation @@ -1964,7 +1970,8 @@ Questo è il tuo link una tantum! Delete Elimina - chat item action + chat item action + swipe action Delete %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 errors Errori di eliminazione @@ -3054,7 +3057,7 @@ Questo è il tuo link una tantum! Favorite Preferito - No comment provided by engineer. + swipe action File error @@ -3830,7 +3833,7 @@ Errore: %2$@ Join Entra - No comment provided by engineer. + swipe action Join group @@ -3921,7 +3924,7 @@ Questo è il tuo link per il gruppo %@! Leave Esci - No comment provided by engineer. + swipe action Leave group @@ -4315,7 +4318,7 @@ Questo è il tuo link per il gruppo %@! Mute Silenzia - No comment provided by engineer. + swipe action Muted when inactive! @@ -4325,7 +4328,7 @@ Questo è il tuo link per il gruppo %@! Name Nome - No comment provided by engineer. + swipe action Network & servers @@ -4540,10 +4543,6 @@ Questo è il tuo link per il gruppo %@! Vecchio archivio del database No comment provided by engineer. - - One-hand UI - No comment provided by engineer. - One-time invitation link Link di invito una tantum @@ -5117,6 +5116,10 @@ Attivalo nelle impostazioni *Rete e server*. Valuta l'app No 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*. Read Leggi - No comment provided by engineer. + swipe action Read more @@ -5289,7 +5292,8 @@ Attivalo nelle impostazioni *Rete e server*. Reject Rifiuta - reject incoming call via notification + reject incoming call via notification + swipe action Reject (sender NOT notified) @@ -5391,6 +5395,10 @@ Attivalo nelle impostazioni *Rete e server*. Ripristina No comment provided by engineer. + + Reset all hints + No comment provided by engineer. + Reset all statistics Azzera 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 action Unhide @@ -6889,12 +6901,12 @@ Per connetterti, chiedi al tuo contatto di creare un altro link di connessione e Unmute Riattiva notifiche - No comment provided by engineer. + swipe action Unread Non letto - No comment provided by engineer. + swipe action Up 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 later Puoi 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 action Acknowledged @@ -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 action Clear conversation @@ -1870,7 +1876,8 @@ This is your own one-time link! Delete 削除 - chat item action + chat item action + swipe action Delete %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 errors No comment provided by engineer. @@ -2903,7 +2906,7 @@ This is your own one-time link! Favorite お気に入り - No comment provided by engineer. + swipe action File error @@ -3635,7 +3638,7 @@ Error: %2$@ Join 参加 - No comment provided by engineer. + swipe action Join group @@ -3718,7 +3721,7 @@ This is your link for group %@! Leave 脱退 - No comment provided by engineer. + swipe action Leave group @@ -4081,7 +4084,7 @@ This is your link for group %@! Mute ミュート - No comment provided by engineer. + swipe action Muted when inactive! @@ -4091,7 +4094,7 @@ This is your link for group %@! Name 名前 - No comment provided by engineer. + swipe action Network & 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 action Read more @@ -4993,7 +4996,8 @@ Enable in *Network & servers* settings. Reject 拒否 - reject incoming call via notification + reject incoming call via notification + swipe action Reject (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 statistics No 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 action Unhide @@ -6480,12 +6492,12 @@ To connect, please ask your contact to create another connection link and check Unmute ミュート解除 - No comment provided by engineer. + swipe action Unread 未読 - No comment provided by engineer. + swipe action Up 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 @@ Accept Accepteer accept contact request via notification - accept incoming call via notification + accept incoming call via notification + swipe action Accept connection request? @@ -581,7 +582,8 @@ Accept incognito Accepteer incognito - accept contact request via notification + accept contact request via notification + swipe action Acknowledged @@ -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 @@ Clear Wissen - No comment provided by engineer. + swipe action Clear conversation @@ -1964,7 +1970,8 @@ Dit is uw eigen eenmalige link! Delete Verwijderen - chat item action + chat item action + swipe action Delete %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 errors Verwijderingsfouten @@ -3054,7 +3057,7 @@ Dit is uw eigen eenmalige link! Favorite Favoriet - No comment provided by engineer. + swipe action File error @@ -3830,7 +3833,7 @@ Fout: %2$@ Join Word lid van - No comment provided by engineer. + swipe action Join group @@ -3921,7 +3924,7 @@ Dit is jouw link voor groep %@! Leave Verlaten - No comment provided by engineer. + swipe action Leave group @@ -4315,7 +4318,7 @@ Dit is jouw link voor groep %@! Mute Dempen - No comment provided by engineer. + swipe action Muted when inactive! @@ -4325,7 +4328,7 @@ Dit is jouw link voor groep %@! Name Naam - No comment provided by engineer. + swipe action Network & servers @@ -4540,10 +4543,6 @@ Dit is jouw link voor groep %@! Oud database archief No comment provided by engineer. - - One-hand UI - No comment provided by engineer. - One-time invitation link Eenmalige uitnodiging link @@ -5117,6 +5116,10 @@ Schakel dit in in *Netwerk en servers*-instellingen. Beoordeel de app No 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. Read Lees - No comment provided by engineer. + swipe action Read more @@ -5289,7 +5292,8 @@ Schakel dit in in *Netwerk en servers*-instellingen. Reject Afwijzen - reject incoming call via notification + reject incoming call via notification + swipe action Reject (sender NOT notified) @@ -5391,6 +5395,10 @@ Schakel dit in in *Netwerk en servers*-instellingen. Resetten No comment provided by engineer. + + Reset all hints + No comment provided by engineer. + Reset all statistics Reset 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 action Unhide @@ -6889,12 +6901,12 @@ Om verbinding te maken, vraagt u uw contact om een andere verbinding link te mak Unmute Dempen opheffen - No comment provided by engineer. + swipe action Unread Ongelezen - No comment provided by engineer. + swipe action Up 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 later U 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 @@ Accept Akceptuj accept contact request via notification - accept incoming call via notification + accept incoming call via notification + swipe action Accept connection request? @@ -581,7 +582,8 @@ Accept incognito Akceptuj incognito - accept contact request via notification + accept contact request via notification + swipe action Acknowledged @@ -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 @@ Clear Wyczyść - No comment provided by engineer. + swipe action Clear conversation @@ -1960,7 +1966,8 @@ To jest twój jednorazowy link! Delete Usuń - chat item action + chat item action + swipe action Delete %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 errors Błędy usuwania @@ -3044,7 +3047,7 @@ To jest twój jednorazowy link! Favorite Ulubione - No comment provided by engineer. + swipe action File error @@ -3817,7 +3820,7 @@ Błąd: %2$@ Join Dołącz - No comment provided by engineer. + swipe action Join group @@ -3908,7 +3911,7 @@ To jest twój link do grupy %@! Leave Opuść - No comment provided by engineer. + swipe action Leave group @@ -4299,7 +4302,7 @@ To jest twój link do grupy %@! Mute Wycisz - No comment provided by engineer. + swipe action Muted when inactive! @@ -4309,7 +4312,7 @@ To jest twój link do grupy %@! Name Nazwa - No comment provided by engineer. + swipe action Network & servers @@ -4523,10 +4526,6 @@ To jest twój link do grupy %@! Stare archiwum bazy danych No comment provided by engineer. - - One-hand UI - No comment provided by engineer. - One-time invitation link Jednorazowy 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* . Read Czytaj - No comment provided by engineer. + swipe action Read more @@ -5272,7 +5275,8 @@ Włącz w ustawianiach *Sieć i serwery* . Reject Odrzuć - reject incoming call via notification + reject incoming call via notification + swipe action Reject (sender NOT notified) @@ -5374,6 +5378,10 @@ Włącz w ustawianiach *Sieć i serwery* . Resetuj No comment provided by engineer. + + Reset all hints + No comment provided by engineer. + Reset all statistics Resetuj 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 action Unhide @@ -6862,12 +6874,12 @@ Aby się połączyć, poproś Twój kontakt o utworzenie kolejnego linku połąc Unmute Wyłącz wyciszenie - No comment provided by engineer. + swipe action Unread Nieprzeczytane - No comment provided by engineer. + swipe action Up 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 later Moż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 action Acknowledged @@ -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 action Clear conversation @@ -1927,7 +1933,8 @@ This is your own one-time link! Delete Удалить - chat item action + chat item action + swipe action Delete %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 errors No comment provided by engineer. @@ -2998,7 +3001,7 @@ This is your own one-time link! Favorite Избранный - No comment provided by engineer. + swipe action File error @@ -3762,7 +3765,7 @@ Error: %2$@ Join Вступить - No comment provided by engineer. + swipe action Join group @@ -3853,7 +3856,7 @@ This is your link for group %@! Leave Выйти - No comment provided by engineer. + swipe action Leave group @@ -4234,7 +4237,7 @@ This is your link for group %@! Mute Без звука - No comment provided by engineer. + swipe action Muted when inactive! @@ -4244,7 +4247,7 @@ This is your link for group %@! Name Имя - No comment provided by engineer. + swipe action Network & 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 action Read more @@ -5186,7 +5189,8 @@ Enable in *Network & servers* settings. Reject Отклонить - reject incoming call via notification + reject incoming call via notification + swipe action Reject (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 statistics No 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 action Unhide @@ -6738,12 +6750,12 @@ To connect, please ask your contact to create another connection link and check Unmute Уведомлять - No comment provided by engineer. + swipe action Unread Не прочитано - No comment provided by engineer. + swipe action Up 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 action Acknowledged @@ -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 action Clear conversation @@ -1835,7 +1841,8 @@ This is your own one-time link! Delete ลบ - chat item action + chat item action + swipe action Delete %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 errors No comment provided by engineer. @@ -2863,7 +2866,7 @@ This is your own one-time link! Favorite ที่ชอบ - No comment provided by engineer. + swipe action File error @@ -3593,7 +3596,7 @@ Error: %2$@ Join เข้าร่วม - No comment provided by engineer. + swipe action Join group @@ -3676,7 +3679,7 @@ This is your link for group %@! Leave ออกจาก - No comment provided by engineer. + swipe action Leave group @@ -4039,7 +4042,7 @@ This is your link for group %@! Mute ปิดเสียง - No comment provided by engineer. + swipe action Muted when inactive! @@ -4049,7 +4052,7 @@ This is your link for group %@! Name ชื่อ - No comment provided by engineer. + swipe action Network & 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 action Read more @@ -4946,7 +4949,8 @@ Enable in *Network & servers* settings. Reject ปฏิเสธ - reject incoming call via notification + reject incoming call via notification + swipe action Reject (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 statistics No 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 action Unhide @@ -6434,12 +6446,12 @@ To connect, please ask your contact to create another connection link and check Unmute เปิดเสียง - No comment provided by engineer. + swipe action Unread เปลี่ยนเป็นยังไม่ได้อ่าน - No comment provided by engineer. + swipe action Up 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 @@ Accept Kabul et 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 Takma adla kabul et - accept contact request via notification + accept contact request via notification + swipe action Acknowledged @@ -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 @@ Clear Temizle - No comment provided by engineer. + swipe action Clear conversation @@ -1928,7 +1934,8 @@ Bu senin kendi tek kullanımlık bağlantın! Delete Sil - chat item action + chat item action + swipe action Delete %lld messages of members? @@ -2130,10 +2137,6 @@ Bu senin kendi tek kullanımlık bağlantın! %@ de silindi copied message info - - Deleted chats - No comment provided by engineer. - Deletion errors No comment provided by engineer. @@ -2999,7 +3002,7 @@ Bu senin kendi tek kullanımlık bağlantın! Favorite Favori - No comment provided by engineer. + swipe action File error @@ -3763,7 +3766,7 @@ Hata: %2$@ Join Katıl - No comment provided by engineer. + swipe action Join group @@ -3854,7 +3857,7 @@ Bu senin grup için bağlantın %@! Leave Ayrıl - No comment provided by engineer. + swipe action Leave group @@ -4236,7 +4239,7 @@ Bu senin grup için bağlantın %@! Mute Sustur - No comment provided by engineer. + swipe action Muted when inactive! @@ -4246,7 +4249,7 @@ Bu senin grup için bağlantın %@! Name İsim - No comment provided by engineer. + swipe action Network & servers @@ -4458,10 +4461,6 @@ Bu senin grup için bağlantın %@! Eski veritabanı arşivi No comment provided by engineer. - - One-hand UI - No comment provided by engineer. - One-time invitation link Tek zamanlı bağlantı daveti @@ -5025,6 +5024,10 @@ Enable in *Network & servers* settings. Uygulamayı değerlendir 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 Oku - No comment provided by engineer. + swipe action Read more @@ -5188,7 +5191,8 @@ Enable in *Network & servers* settings. Reject Reddet - reject incoming call via notification + reject incoming call via notification + swipe action Reject (sender NOT notified) @@ -5289,6 +5293,10 @@ Enable in *Network & servers* settings. Sıfırla No comment provided by engineer. + + Reset all hints + No comment provided by engineer. + Reset all statistics No 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 action Unhide @@ -6740,12 +6752,12 @@ Bağlanmak için lütfen kişinizden başka bir bağlantı oluşturmasını iste Unmute Susturmayı kaldır - No comment provided by engineer. + swipe action Unread Okunmamış - No comment provided by engineer. + swipe action Up 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 later Daha 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 action Acknowledged @@ -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 action Clear conversation @@ -1928,7 +1934,8 @@ This is your own one-time link! Delete Видалити - chat item action + chat item action + swipe action Delete %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 errors No comment provided by engineer. @@ -2999,7 +3002,7 @@ This is your own one-time link! Favorite Улюблений - No comment provided by engineer. + swipe action File error @@ -3763,7 +3766,7 @@ Error: %2$@ Join Приєднуйтесь - No comment provided by engineer. + swipe action Join group @@ -3854,7 +3857,7 @@ This is your link for group %@! Leave Залишити - No comment provided by engineer. + swipe action Leave group @@ -4236,7 +4239,7 @@ This is your link for group %@! Mute Вимкнути звук - No comment provided by engineer. + swipe action Muted when inactive! @@ -4246,7 +4249,7 @@ This is your link for group %@! Name Ім'я - No comment provided by engineer. + swipe action Network & 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 action Read more @@ -5188,7 +5191,8 @@ Enable in *Network & servers* settings. Reject Відхилити - reject incoming call via notification + reject incoming call via notification + swipe action Reject (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 statistics No 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 action Unhide @@ -6740,12 +6752,12 @@ To connect, please ask your contact to create another connection link and check Unmute Увімкнути звук - No comment provided by engineer. + swipe action Unread Непрочитане - No comment provided by engineer. + swipe action Up 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 action Acknowledged @@ -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 action Clear conversation @@ -1901,7 +1907,8 @@ This is your own one-time link! Delete 删除 - chat item action + chat item action + swipe action Delete %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 errors No comment provided by engineer. @@ -2962,7 +2965,7 @@ This is your own one-time link! Favorite 最喜欢 - No comment provided by engineer. + swipe action File error @@ -3718,7 +3721,7 @@ Error: %2$@ Join 加入 - No comment provided by engineer. + swipe action Join group @@ -3805,7 +3808,7 @@ This is your link for group %@! Leave 离开 - No comment provided by engineer. + swipe action Leave group @@ -4182,7 +4185,7 @@ This is your link for group %@! Mute 静音 - No comment provided by engineer. + swipe action Muted when inactive! @@ -4192,7 +4195,7 @@ This is your link for group %@! Name 名称 - No comment provided by engineer. + swipe action Network & 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 action Read more @@ -5116,7 +5119,8 @@ Enable in *Network & servers* settings. Reject 拒绝 - reject incoming call via notification + reject incoming call via notification + swipe action Reject (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 statistics No 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 action Unhide @@ -6657,12 +6669,12 @@ To connect, please ask your contact to create another connection link and check Unmute 取消静音 - No comment provided by engineer. + swipe action Unread 未读 - No comment provided by engineer. + swipe action Up 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 delivery With reduced battery usage. Persian UI + New chat experience 🎉 + New media options It 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 toolbar Use 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 network Connection 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