From f30dfa0be7e28a4c3cc6f072cc6b168ec803b495 Mon Sep 17 00:00:00 2001 From: Evgeny Date: Sun, 4 Aug 2024 12:01:09 +0100 Subject: [PATCH] ios: move onion and private routing to advanced network settings, enable private routing by default (#4571) * ios: move onion and private routing to advanced network settings, enable private routing by default * update * update labels * update localizations --- .../AdvancedNetworkSettings.swift | 191 +++++++++++++--- .../UserSettings/NetworkAndServers.swift | 206 +----------------- .../UserSettings/ProtocolServersView.swift | 2 +- .../bg.xcloc/Localized Contents/bg.xliff | 95 ++++---- .../cs.xcloc/Localized Contents/cs.xliff | 95 ++++---- .../de.xcloc/Localized Contents/de.xliff | 97 ++++----- .../en.xcloc/Localized Contents/en.xliff | 109 ++++----- .../es.xcloc/Localized Contents/es.xliff | 97 ++++----- .../fi.xcloc/Localized Contents/fi.xliff | 95 ++++---- .../fr.xcloc/Localized Contents/fr.xliff | 97 ++++----- .../hu.xcloc/Localized Contents/hu.xliff | 97 ++++----- .../it.xcloc/Localized Contents/it.xliff | 97 ++++----- .../ja.xcloc/Localized Contents/ja.xliff | 95 ++++---- .../nl.xcloc/Localized Contents/nl.xliff | 97 ++++----- .../pl.xcloc/Localized Contents/pl.xliff | 97 ++++----- .../ru.xcloc/Localized Contents/ru.xliff | 97 ++++----- .../th.xcloc/Localized Contents/th.xliff | 89 ++++---- .../tr.xcloc/Localized Contents/tr.xliff | 97 ++++----- .../uk.xcloc/Localized Contents/uk.xliff | 97 ++++----- .../Localized Contents/zh-Hans.xliff | 89 ++++---- apps/ios/SimpleXChat/APITypes.swift | 30 ++- apps/ios/SimpleXChat/AppGroup.swift | 8 +- apps/ios/bg.lproj/Localizable.strings | 29 +-- apps/ios/cs.lproj/Localizable.strings | 27 +-- apps/ios/de.lproj/Localizable.strings | 37 +--- apps/ios/es.lproj/Localizable.strings | 37 +--- apps/ios/fi.lproj/Localizable.strings | 27 +-- apps/ios/fr.lproj/Localizable.strings | 37 +--- apps/ios/hu.lproj/Localizable.strings | 37 +--- apps/ios/it.lproj/Localizable.strings | 37 +--- apps/ios/ja.lproj/Localizable.strings | 27 +-- apps/ios/nl.lproj/Localizable.strings | 37 +--- apps/ios/pl.lproj/Localizable.strings | 37 +--- apps/ios/ru.lproj/Localizable.strings | 35 +-- apps/ios/th.lproj/Localizable.strings | 27 +-- apps/ios/tr.lproj/Localizable.strings | 37 +--- apps/ios/uk.lproj/Localizable.strings | 37 +--- apps/ios/zh-Hans.lproj/Localizable.strings | 29 +-- 38 files changed, 1080 insertions(+), 1528 deletions(-) diff --git a/apps/ios/Shared/Views/UserSettings/AdvancedNetworkSettings.swift b/apps/ios/Shared/Views/UserSettings/AdvancedNetworkSettings.swift index 6dda7bf799..99c0a588eb 100644 --- a/apps/ios/Shared/Views/UserSettings/AdvancedNetworkSettings.swift +++ b/apps/ios/Shared/Views/UserSettings/AdvancedNetworkSettings.swift @@ -24,34 +24,114 @@ enum NetworkSettingsAlert: Identifiable { } struct AdvancedNetworkSettings: View { + @Environment(\.dismiss) var dismiss: DismissAction @EnvironmentObject var theme: AppTheme + @AppStorage(DEFAULT_DEVELOPER_TOOLS) private var developerTools = false + @AppStorage(DEFAULT_SHOW_SENT_VIA_RPOXY) private var showSentViaProxy = false @State private var netCfg = NetCfg.defaults @State private var currentNetCfg = NetCfg.defaults @State private var cfgLoaded = false @State private var enableKeepAlive = true @State private var keepAliveOpts = KeepAliveOpts.defaults @State private var showSettingsAlert: NetworkSettingsAlert? + @State private var onionHosts: OnionHosts = .no + @State private var showSaveDialog = false var body: some View { VStack { List { Section { - Button { - updateNetCfgView(NetCfg.defaults) - showSettingsAlert = .update + NavigationLink { + List { + Section { + SelectionListView(list: SMPProxyMode.values, selection: $netCfg.smpProxyMode) { mode in + netCfg.smpProxyMode = mode + } + } footer: { + Text(proxyModeInfo(netCfg.smpProxyMode)) + .font(.callout) + .foregroundColor(theme.colors.secondary) + } + } + .navigationTitle("Private routing") + .modifier(ThemedBackground(grouped: true)) + .navigationBarTitleDisplayMode(.inline) } label: { - Text("Reset to defaults") + HStack { + Text("Private routing") + Spacer() + Text(netCfg.smpProxyMode.label) + } } - .disabled(currentNetCfg == NetCfg.defaults) - - Button { - updateNetCfgView(NetCfg.proxyDefaults) - showSettingsAlert = .update + + NavigationLink { + List { + Section { + SelectionListView(list: SMPProxyFallback.values, selection: $netCfg.smpProxyFallback) { mode in + netCfg.smpProxyFallback = mode + } + .disabled(netCfg.smpProxyMode == .never) + } footer: { + Text(proxyFallbackInfo(netCfg.smpProxyFallback)) + .font(.callout) + .foregroundColor(theme.colors.secondary) + } + } + .navigationTitle("Allow downgrade") + .modifier(ThemedBackground(grouped: true)) + .navigationBarTitleDisplayMode(.inline) } label: { - Text("Set timeouts for proxy/VPN") + HStack { + Text("Allow downgrade") + Spacer() + Text(netCfg.smpProxyFallback.label) + } } - .disabled(currentNetCfg == NetCfg.proxyDefaults) + Toggle("Show message status", isOn: $showSentViaProxy) + } header: { + Text("Private message routing") + .foregroundColor(theme.colors.secondary) + } footer: { + VStack(alignment: .leading) { + Text("To protect your IP address, private routing uses your SMP servers to deliver messages.") + if showSentViaProxy { + Text("Show → on messages sent via private routing.") + } + } + .foregroundColor(theme.colors.secondary) + } + + Section { + Picker("Use .onion hosts", selection: $onionHosts) { + ForEach(OnionHosts.values, id: \.self) { Text($0.text) } + } + .frame(height: 36) + } footer: { + Text(onionHostsInfo(onionHosts)) + .foregroundColor(theme.colors.secondary) + } + .onChange(of: onionHosts) { hosts in + if hosts != OnionHosts(netCfg: currentNetCfg) { + let (hostMode, requiredHostMode) = hosts.hostMode + netCfg.hostMode = hostMode + netCfg.requiredHostMode = requiredHostMode + } + } + + if developerTools { + Section { + Picker("Transport isolation", selection: $netCfg.sessionMode) { + ForEach(TransportSessionMode.values, id: \.self) { Text($0.text) } + } + .frame(height: 36) + } footer: { + Text(sessionModeInfo(netCfg.sessionMode)) + .foregroundColor(theme.colors.secondary) + } + } + + Section("TCP connection") { timeoutSettingPicker("TCP connection timeout", selection: $netCfg.tcpConnectTimeout, values: [10_000000, 15_000000, 20_000000, 30_000000, 45_000000, 60_000000, 90_000000], label: secondsLabel) timeoutSettingPicker("Protocol timeout", selection: $netCfg.tcpTimeout, values: [5_000000, 7_000000, 10_000000, 15_000000, 20_000000, 30_000000], label: secondsLabel) timeoutSettingPicker("Protocol timeout per KB", selection: $netCfg.tcpTimeoutPerKb, values: [2_500, 5_000, 10_000, 15_000, 20_000, 30_000], label: secondsLabel) @@ -72,24 +152,21 @@ struct AdvancedNetworkSettings: View { } .foregroundColor(theme.colors.secondary) } - } header: { - Text("") - .foregroundColor(theme.colors.secondary) - } footer: { - HStack { - Button { - updateNetCfgView(currentNetCfg) - } label: { - Label("Revert", systemImage: "arrow.counterclockwise").font(.callout) - } + } + + Section { + Button("Reset to defaults") { + updateNetCfgView(NetCfg.defaults) + } + .disabled(netCfg == NetCfg.defaults) - Spacer() - - Button { - showSettingsAlert = .update - } label: { - Label("Save", systemImage: "checkmark").font(.callout) - } + Button("Set timeouts for proxy/VPN") { + updateNetCfgView(netCfg.withProxyTimeouts) + } + .disabled(netCfg.hasProxyTimeouts) + + Button("Save and reconnect") { + showSettingsAlert = .update } .disabled(netCfg == currentNetCfg) } @@ -111,10 +188,10 @@ struct AdvancedNetworkSettings: View { switch a { case .update: return Alert( - title: Text("Update network settings?"), + title: Text("Update settings?"), message: Text("Updating settings will re-connect the client to all servers."), primaryButton: .default(Text("Ok")) { - saveNetCfg() + _ = saveNetCfg() }, secondaryButton: .cancel() ) @@ -125,23 +202,43 @@ struct AdvancedNetworkSettings: View { ) } } + .modifier(BackButton(disabled: Binding.constant(false)) { + if netCfg == currentNetCfg { + dismiss() + cfgLoaded = false + } else { + showSaveDialog = true + } + }) + .confirmationDialog("Update network settings?", isPresented: $showSaveDialog, titleVisibility: .visible) { + Button("Save and reconnect") { + if saveNetCfg() { + dismiss() + cfgLoaded = false + } + } + Button("Exit without saving") { dismiss() } + } } private func updateNetCfgView(_ cfg: NetCfg) { netCfg = cfg + onionHosts = OnionHosts(netCfg: netCfg) enableKeepAlive = netCfg.enableKeepAlive keepAliveOpts = netCfg.tcpKeepAlive ?? KeepAliveOpts.defaults } - private func saveNetCfg() { + private func saveNetCfg() -> Bool { do { try setNetworkConfig(netCfg) currentNetCfg = netCfg setNetCfg(netCfg) + return true } catch let error { let err = responseError(error) showSettingsAlert = .error(err: err) logger.error("\(err)") + return false } } @@ -164,6 +261,38 @@ struct AdvancedNetworkSettings: View { } .frame(height: 36) } + + private func onionHostsInfo(_ hosts: OnionHosts) -> LocalizedStringKey { + switch hosts { + case .no: return "Onion hosts will not be used." + case .prefer: return "Onion hosts will be used when available.\nRequires compatible VPN." + case .require: return "Onion hosts will be **required** for connection.\nRequires compatible VPN." + } + } + + private func sessionModeInfo(_ mode: TransportSessionMode) -> LocalizedStringKey { + switch mode { + case .user: return "A separate TCP connection will be used **for each chat profile you have in the app**." + case .entity: return "A separate TCP connection will be used **for each contact and group member**.\n**Please note**: if you have many connections, your battery and traffic consumption can be substantially higher and some connections may fail." + } + } + + private func proxyModeInfo(_ mode: SMPProxyMode) -> LocalizedStringKey { + switch mode { + case .always: return "Always use private routing." + case .unknown: return "Use private routing with unknown servers." + case .unprotected: return "Use private routing with unknown servers when IP address is not protected." + case .never: return "Do NOT use private routing." + } + } + + private func proxyFallbackInfo(_ proxyFallback: SMPProxyFallback) -> LocalizedStringKey { + switch proxyFallback { + case .allow: return "Send messages directly when your or destination server does not support private routing." + case .allowProtected: return "Send messages directly when IP address is protected and your or destination server does not support private routing." + case .prohibit: return "Do NOT send messages directly, even if your or destination server does not support private routing." + } + } } struct AdvancedNetworkSettings_Previews: PreviewProvider { diff --git a/apps/ios/Shared/Views/UserSettings/NetworkAndServers.swift b/apps/ios/Shared/Views/UserSettings/NetworkAndServers.swift index 3d93a92e08..155a3956be 100644 --- a/apps/ios/Shared/Views/UserSettings/NetworkAndServers.swift +++ b/apps/ios/Shared/Views/UserSettings/NetworkAndServers.swift @@ -10,18 +10,10 @@ import SwiftUI import SimpleXChat private enum NetworkAlert: Identifiable { - case updateOnionHosts(hosts: OnionHosts) - case updateSessionMode(mode: TransportSessionMode) - case updateSMPProxyMode(proxyMode: SMPProxyMode) - case updateSMPProxyFallback(proxyFallback: SMPProxyFallback) case error(err: String) var id: String { switch self { - case let .updateOnionHosts(hosts): return "updateOnionHosts \(hosts)" - case let .updateSessionMode(mode): return "updateSessionMode \(mode)" - case let .updateSMPProxyMode(proxyMode): return "updateSMPProxyMode \(proxyMode)" - case let .updateSMPProxyFallback(proxyFallback): return "updateSMPProxyFallback \(proxyFallback)" case let .error(err): return "error \(err)" } } @@ -30,16 +22,6 @@ private enum NetworkAlert: Identifiable { struct NetworkAndServers: View { @EnvironmentObject var m: ChatModel @EnvironmentObject var theme: AppTheme - @AppStorage(DEFAULT_DEVELOPER_TOOLS) private var developerTools = false - @AppStorage(DEFAULT_SHOW_SENT_VIA_RPOXY) private var showSentViaProxy = false - @State private var cfgLoaded = false - @State private var currentNetCfg = NetCfg.defaults - @State private var netCfg = NetCfg.defaults - @State private var onionHosts: OnionHosts = .no - @State private var sessionMode: TransportSessionMode = .user - @State private var proxyMode: SMPProxyMode = .never - @State private var proxyFallback: SMPProxyFallback = .allow - @State private var alert: NetworkAlert? var body: some View { VStack { @@ -50,7 +32,7 @@ struct NetworkAndServers: View { .navigationTitle("Your SMP servers") .modifier(ThemedBackground(grouped: true)) } label: { - Text("SMP servers") + Text("Message servers") } NavigationLink { @@ -58,24 +40,12 @@ struct NetworkAndServers: View { .navigationTitle("Your XFTP servers") .modifier(ThemedBackground(grouped: true)) } label: { - Text("XFTP servers") - } - - Picker("Use .onion hosts", selection: $onionHosts) { - ForEach(OnionHosts.values, id: \.self) { Text($0.text) } - } - .frame(height: 36) - - if developerTools { - Picker("Transport isolation", selection: $sessionMode) { - ForEach(TransportSessionMode.values, id: \.self) { Text($0.text) } - } - .frame(height: 36) + Text("Media & file servers") } NavigationLink { AdvancedNetworkSettings() - .navigationTitle("Network settings") + .navigationTitle("Advanced settings") .modifier(ThemedBackground(grouped: true)) } label: { Text("Advanced network settings") @@ -83,35 +53,6 @@ struct NetworkAndServers: View { } header: { Text("Messages & files") .foregroundColor(theme.colors.secondary) - } footer: { - Text("Using .onion hosts requires compatible VPN provider.") - .foregroundColor(theme.colors.secondary) - } - - Section { - Picker("Private routing", selection: $proxyMode) { - ForEach(SMPProxyMode.values, id: \.self) { Text($0.text) } - } - .frame(height: 36) - - Picker("Allow downgrade", selection: $proxyFallback) { - ForEach(SMPProxyFallback.values, id: \.self) { Text($0.text) } - } - .disabled(proxyMode == .never) - .frame(height: 36) - - Toggle("Show message status", isOn: $showSentViaProxy) - } header: { - Text("Private message routing") - .foregroundColor(theme.colors.secondary) - } footer: { - VStack(alignment: .leading) { - Text("To protect your IP address, private routing uses your SMP servers to deliver messages.") - if showSentViaProxy { - Text("Show → on messages sent via private routing.") - } - } - .foregroundColor(theme.colors.secondary) } Section(header: Text("Calls").foregroundColor(theme.colors.secondary)) { @@ -133,147 +74,6 @@ struct NetworkAndServers: View { } } } - .onAppear { - if cfgLoaded { return } - cfgLoaded = true - currentNetCfg = getNetCfg() - resetNetCfgView() - } - .onChange(of: onionHosts) { hosts in - if hosts != OnionHosts(netCfg: currentNetCfg) { - alert = .updateOnionHosts(hosts: hosts) - } - } - .onChange(of: sessionMode) { mode in - if mode != netCfg.sessionMode { - alert = .updateSessionMode(mode: mode) - } - } - .onChange(of: proxyMode) { mode in - if mode != netCfg.smpProxyMode { - alert = .updateSMPProxyMode(proxyMode: mode) - } - } - .onChange(of: proxyFallback) { fallbackMode in - if fallbackMode != netCfg.smpProxyFallback { - alert = .updateSMPProxyFallback(proxyFallback: fallbackMode) - } - } - .alert(item: $alert) { a in - switch a { - case let .updateOnionHosts(hosts): - return Alert( - title: Text("Update .onion hosts setting?"), - message: Text(onionHostsInfo(hosts)) + Text("\n") + Text("Updating this setting will re-connect the client to all servers."), - primaryButton: .default(Text("Ok")) { - let (hostMode, requiredHostMode) = hosts.hostMode - netCfg.hostMode = hostMode - netCfg.requiredHostMode = requiredHostMode - saveNetCfg() - }, - secondaryButton: .cancel() { - resetNetCfgView() - } - ) - case let .updateSessionMode(mode): - return Alert( - title: Text("Update transport isolation mode?"), - message: Text(sessionModeInfo(mode)) + Text("\n") + Text("Updating this setting will re-connect the client to all servers."), - primaryButton: .default(Text("Ok")) { - netCfg.sessionMode = mode - saveNetCfg() - }, - secondaryButton: .cancel() { - resetNetCfgView() - } - ) - case let .updateSMPProxyMode(proxyMode): - return Alert( - title: Text("Message routing mode"), - message: Text(proxyModeInfo(proxyMode)) + Text("\n") + Text("Updating this setting will re-connect the client to all servers."), - primaryButton: .default(Text("Ok")) { - netCfg.smpProxyMode = proxyMode - saveNetCfg() - }, - secondaryButton: .cancel() { - resetNetCfgView() - } - ) - case let .updateSMPProxyFallback(proxyFallback): - return Alert( - title: Text("Message routing fallback"), - message: Text(proxyFallbackInfo(proxyFallback)) + Text("\n") + Text("Updating this setting will re-connect the client to all servers."), - primaryButton: .default(Text("Ok")) { - netCfg.smpProxyFallback = proxyFallback - saveNetCfg() - }, - secondaryButton: .cancel() { - resetNetCfgView() - } - ) - case let .error(err): - return Alert( - title: Text("Error updating settings"), - message: Text(err) - ) - } - } - } - - private func saveNetCfg() { - do { - let def = netCfg.hostMode == .onionHost ? NetCfg.proxyDefaults : NetCfg.defaults - netCfg.tcpConnectTimeout = def.tcpConnectTimeout - netCfg.tcpTimeout = def.tcpTimeout - try setNetworkConfig(netCfg) - currentNetCfg = netCfg - setNetCfg(netCfg) - } catch let error { - let err = responseError(error) - resetNetCfgView() - alert = .error(err: err) - logger.error("\(err)") - } - } - - private func resetNetCfgView() { - netCfg = currentNetCfg - onionHosts = OnionHosts(netCfg: netCfg) - sessionMode = netCfg.sessionMode - proxyMode = netCfg.smpProxyMode - proxyFallback = netCfg.smpProxyFallback - } - - private func onionHostsInfo(_ hosts: OnionHosts) -> LocalizedStringKey { - switch hosts { - case .no: return "Onion hosts will not be used." - case .prefer: return "Onion hosts will be used when available. Requires enabling VPN." - case .require: return "Onion hosts will be required for connection. Requires enabling VPN." - } - } - - private func sessionModeInfo(_ mode: TransportSessionMode) -> LocalizedStringKey { - switch mode { - case .user: return "A separate TCP connection will be used **for each chat profile you have in the app**." - case .entity: return "A separate TCP connection will be used **for each contact and group member**.\n**Please note**: if you have many connections, your battery and traffic consumption can be substantially higher and some connections may fail." - } - } - - private func proxyModeInfo(_ mode: SMPProxyMode) -> LocalizedStringKey { - switch mode { - case .always: return "Always use private routing." - case .unknown: return "Use private routing with unknown servers." - case .unprotected: return "Use private routing with unknown servers when IP address is not protected." - case .never: return "Do NOT use private routing." - } - } - - private func proxyFallbackInfo(_ proxyFallback: SMPProxyFallback) -> LocalizedStringKey { - switch proxyFallback { - case .allow: return "Send messages directly when your or destination server does not support private routing." - case .allowProtected: return "Send messages directly when IP address is protected and your or destination server does not support private routing." - case .prohibit: return "Do NOT send messages directly, even if your or destination server does not support private routing." - } } } diff --git a/apps/ios/Shared/Views/UserSettings/ProtocolServersView.swift b/apps/ios/Shared/Views/UserSettings/ProtocolServersView.swift index ea1953e4ac..0fb37d5c49 100644 --- a/apps/ios/Shared/Views/UserSettings/ProtocolServersView.swift +++ b/apps/ios/Shared/Views/UserSettings/ProtocolServersView.swift @@ -130,7 +130,7 @@ struct ProtocolServersView: View { showSaveDialog = true } }) - .confirmationDialog("Save servers?", isPresented: $showSaveDialog) { + .confirmationDialog("Save servers?", isPresented: $showSaveDialog, titleVisibility: .visible) { Button("Save") { saveServers() dismiss() 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 6f1ed52623..b8875610fc 100644 --- a/apps/ios/SimpleX Localizations/bg.xcloc/Localized Contents/bg.xliff +++ b/apps/ios/SimpleX Localizations/bg.xcloc/Localized Contents/bg.xliff @@ -1234,6 +1234,10 @@ Базата данни на чата е изтрита No comment provided by engineer. + + Chat database exported + No comment provided by engineer. + Chat database imported Базата данни на чат е импортирана @@ -3899,6 +3903,10 @@ This is your link for group %@! Макс. 30 секунди, получено незабавно. No comment provided by engineer. + + Media & file servers + No comment provided by engineer. + Medium blur media @@ -3981,12 +3989,8 @@ This is your link for group %@! Message reception No comment provided by engineer. - - Message routing fallback - No comment provided by engineer. - - - Message routing mode + + Message servers No comment provided by engineer. @@ -4365,14 +4369,18 @@ This is your link for group %@! Линк за еднократна покана No comment provided by engineer. - - Onion hosts will be required for connection. Requires enabling VPN. - За свързване ще са необходими Onion хостове. Изисква се активиране на VPN. + + Onion hosts will be **required** for connection. +Requires compatible VPN. + За свързване ще са **необходими** Onion хостове. +Изисква се активиране на VPN. No comment provided by engineer. - - Onion hosts will be used when available. Requires enabling VPN. - Ще се използват Onion хостове, когато са налични. Изисква се активиране на VPN. + + Onion hosts will be used when available. +Requires compatible VPN. + Ще се използват Onion хостове, когато са налични. +Изисква се активиране на VPN. No comment provided by engineer. @@ -5231,11 +5239,6 @@ Enable in *Network & servers* settings. Покажи chat item action - - Revert - Отмени промените - No comment provided by engineer. - Revoke Отзови @@ -5265,11 +5268,6 @@ Enable in *Network & servers* settings. SMP server No comment provided by engineer. - - SMP servers - SMP сървъри - No comment provided by engineer. - Safely receive files No comment provided by engineer. @@ -5299,6 +5297,10 @@ Enable in *Network & servers* settings. Запази и уведоми членовете на групата No comment provided by engineer. + + Save and reconnect + No comment provided by engineer. + Save and update group profile Запази и актуализирай профила на групата @@ -5959,11 +5961,19 @@ Enable in *Network & servers* settings. Soft blur media + + Some file(s) were not exported: + No comment provided by engineer. + Some non-fatal errors occurred during import - you may see Chat console for more details. Някои не-фатални грешки са възникнали по време на импортиране - може да видите конзолата за повече подробности. No comment provided by engineer. + + Some non-fatal errors occurred during import: + No comment provided by engineer. + Somebody Някой @@ -6093,6 +6103,10 @@ Enable in *Network & servers* settings. Системна идентификация No comment provided by engineer. + + TCP connection + No comment provided by engineer. + TCP connection timeout Времето на изчакване за установяване на TCP връзка @@ -6623,11 +6637,6 @@ To connect, please ask your contact to create another connection link and check Актуализация No comment provided by engineer. - - Update .onion hosts setting? - Актуализиране на настройката за .onion хостове? - No comment provided by engineer. - Update database passphrase Актуализирай паролата на базата данни @@ -6638,9 +6647,8 @@ To connect, please ask your contact to create another connection link and check Актуализиране на мрежовите настройки? No comment provided by engineer. - - Update transport isolation mode? - Актуализиране на режима на изолация на транспорта? + + Update settings? No comment provided by engineer. @@ -6648,11 +6656,6 @@ To connect, please ask your contact to create another connection link and check Актуализирането на настройките ще свърже отново клиента към всички сървъри. No comment provided by engineer. - - Updating this setting will re-connect the client to all servers. - Актуализирането на тази настройка ще свърже повторно клиента към всички сървъри. - No comment provided by engineer. - Upgrade and open chat Актуализирай и отвори чата @@ -6757,11 +6760,6 @@ To connect, please ask your contact to create another connection link and check User selection No comment provided by engineer. - - Using .onion hosts requires compatible VPN provider. - Използването на .onion хостове изисква съвместим VPN доставчик. - No comment provided by engineer. - Using SimpleX Chat servers. Използват се сървърите на SimpleX Chat. @@ -7015,11 +7013,6 @@ To connect, please ask your contact to create another connection link and check XFTP server No comment provided by engineer. - - XFTP servers - XFTP сървъри - No comment provided by engineer. - You Вие @@ -7233,6 +7226,14 @@ Repeat connection request? Вие се присъединихте към тази група. Свързване с поканващия член на групата. No comment provided by engineer. + + You may migrate the exported database. + No comment provided by engineer. + + + You may save the exported archive. + No comment provided by engineer. + You must use the most recent version of your chat database on one device ONLY, otherwise you may stop receiving the messages from some contacts. Трябва да използвате най-новата версия на вашата чат база данни САМО на едно устройство, в противен случай може да спрете да получавате съобщения от някои контакти. @@ -8203,8 +8204,8 @@ last received msg: %2$@ неизвестен connection info - - unknown relays + + unknown servers No comment provided by engineer. diff --git a/apps/ios/SimpleX Localizations/cs.xcloc/Localized Contents/cs.xliff b/apps/ios/SimpleX Localizations/cs.xcloc/Localized Contents/cs.xliff index 15d80de7b5..ce0c5d6970 100644 --- a/apps/ios/SimpleX Localizations/cs.xcloc/Localized Contents/cs.xliff +++ b/apps/ios/SimpleX Localizations/cs.xcloc/Localized Contents/cs.xliff @@ -1192,6 +1192,10 @@ Databáze chatu odstraněna No comment provided by engineer. + + Chat database exported + No comment provided by engineer. + Chat database imported Importovaná databáze chatu @@ -3756,6 +3760,10 @@ This is your link for group %@! Max 30 vteřin, přijato okamžitě. No comment provided by engineer. + + Media & file servers + No comment provided by engineer. + Medium blur media @@ -3838,12 +3846,8 @@ This is your link for group %@! Message reception No comment provided by engineer. - - Message routing fallback - No comment provided by engineer. - - - Message routing mode + + Message servers No comment provided by engineer. @@ -4203,14 +4207,18 @@ This is your link for group %@! Jednorázový zvací odkaz No comment provided by engineer. - - Onion hosts will be required for connection. Requires enabling VPN. - Pro připojení budou vyžadováni Onion hostitelé. Vyžaduje povolení sítě VPN. + + Onion hosts will be **required** for connection. +Requires compatible VPN. + Pro připojení budou vyžadováni Onion hostitelé. +Vyžaduje povolení sítě VPN. No comment provided by engineer. - - Onion hosts will be used when available. Requires enabling VPN. - Onion hostitelé budou použiti, pokud jsou k dispozici. Vyžaduje povolení sítě VPN. + + Onion hosts will be used when available. +Requires compatible VPN. + Onion hostitelé budou použiti, pokud jsou k dispozici. +Vyžaduje povolení sítě VPN. No comment provided by engineer. @@ -5037,11 +5045,6 @@ Enable in *Network & servers* settings. Odhalit chat item action - - Revert - Vrátit - No comment provided by engineer. - Revoke Odvolat @@ -5071,11 +5074,6 @@ Enable in *Network & servers* settings. SMP server No comment provided by engineer. - - SMP servers - SMP servery - No comment provided by engineer. - Safely receive files No comment provided by engineer. @@ -5104,6 +5102,10 @@ Enable in *Network & servers* settings. Uložit a upozornit členy skupiny No comment provided by engineer. + + Save and reconnect + No comment provided by engineer. + Save and update group profile Uložit a aktualizovat profil skupiny @@ -5750,11 +5752,19 @@ Enable in *Network & servers* settings. Soft blur media + + Some file(s) were not exported: + No comment provided by engineer. + Some non-fatal errors occurred during import - you may see Chat console for more details. Během importu došlo k nezávažným chybám - podrobnosti naleznete v chat konzoli. No comment provided by engineer. + + Some non-fatal errors occurred during import: + No comment provided by engineer. + Somebody Někdo @@ -5880,6 +5890,10 @@ Enable in *Network & servers* settings. Ověření systému No comment provided by engineer. + + TCP connection + No comment provided by engineer. + TCP connection timeout Časový limit připojení TCP @@ -6389,11 +6403,6 @@ Chcete-li se připojit, požádejte svůj kontakt o vytvoření dalšího odkazu Aktualizovat No comment provided by engineer. - - Update .onion hosts setting? - Aktualizovat nastavení hostitelů .onion? - No comment provided by engineer. - Update database passphrase Aktualizovat přístupovou frázi databáze @@ -6404,9 +6413,8 @@ Chcete-li se připojit, požádejte svůj kontakt o vytvoření dalšího odkazu Aktualizovat nastavení sítě? No comment provided by engineer. - - Update transport isolation mode? - Aktualizovat režim dopravní izolace? + + Update settings? No comment provided by engineer. @@ -6414,11 +6422,6 @@ Chcete-li se připojit, požádejte svůj kontakt o vytvoření dalšího odkazu Aktualizací nastavení se klient znovu připojí ke všem serverům. No comment provided by engineer. - - Updating this setting will re-connect the client to all servers. - Aktualizace tohoto nastavení znovu připojí klienta ke všem serverům. - No comment provided by engineer. - Upgrade and open chat Zvýšit a otevřít chat @@ -6518,11 +6521,6 @@ Chcete-li se připojit, požádejte svůj kontakt o vytvoření dalšího odkazu User selection No comment provided by engineer. - - Using .onion hosts requires compatible VPN provider. - Použití hostitelů .onion vyžaduje kompatibilního poskytovatele VPN. - No comment provided by engineer. - Using SimpleX Chat servers. Používat servery SimpleX Chat. @@ -6759,11 +6757,6 @@ Chcete-li se připojit, požádejte svůj kontakt o vytvoření dalšího odkazu XFTP server No comment provided by engineer. - - XFTP servers - XFTP servery - No comment provided by engineer. - You Vy @@ -6962,6 +6955,14 @@ Repeat connection request? Připojili jste se k této skupině. Připojení k pozvání člena skupiny. No comment provided by engineer. + + You may migrate the exported database. + No comment provided by engineer. + + + You may save the exported archive. + No comment provided by engineer. + You must use the most recent version of your chat database on one device ONLY, otherwise you may stop receiving the messages from some contacts. Nejnovější verzi databáze chatu musíte používat POUZE v jednom zařízení, jinak se může stát, že přestanete přijímat zprávy od některých kontaktů. @@ -7907,8 +7908,8 @@ last received msg: %2$@ neznámý connection info - - unknown relays + + unknown servers No comment provided by engineer. diff --git a/apps/ios/SimpleX Localizations/de.xcloc/Localized Contents/de.xliff b/apps/ios/SimpleX Localizations/de.xcloc/Localized Contents/de.xliff index 95df9edf6d..e44b4f02d7 100644 --- a/apps/ios/SimpleX Localizations/de.xcloc/Localized Contents/de.xliff +++ b/apps/ios/SimpleX Localizations/de.xcloc/Localized Contents/de.xliff @@ -1252,6 +1252,10 @@ Chat-Datenbank gelöscht No comment provided by engineer. + + Chat database exported + No comment provided by engineer. + Chat database imported Chat-Datenbank importiert @@ -3966,6 +3970,10 @@ Das ist Ihr Link für die Gruppe %@! Max. 30 Sekunden, sofort erhalten. No comment provided by engineer. + + Media & file servers + No comment provided by engineer. + Medium blur media @@ -4055,14 +4063,8 @@ Das ist Ihr Link für die Gruppe %@! Nachrichtenempfang No comment provided by engineer. - - Message routing fallback - Fallback für das Nachrichten-Routing - No comment provided by engineer. - - - Message routing mode - Modus für das Nachrichten-Routing + + Message servers No comment provided by engineer. @@ -4448,14 +4450,18 @@ Das ist Ihr Link für die Gruppe %@! Einmal-Einladungslink No comment provided by engineer. - - Onion hosts will be required for connection. Requires enabling VPN. - Für diese Verbindung werden Onion-Hosts benötigt. Dies erfordert die Aktivierung eines VPNs. + + Onion hosts will be **required** for connection. +Requires compatible VPN. + Für diese Verbindung werden Onion-Hosts benötigt. +Dies erfordert die Aktivierung eines VPNs. No comment provided by engineer. - - Onion hosts will be used when available. Requires enabling VPN. - Wenn Onion-Hosts verfügbar sind, werden sie verwendet. Dies erfordert die Aktivierung eines VPNs. + + Onion hosts will be used when available. +Requires compatible VPN. + Wenn Onion-Hosts verfügbar sind, werden sie verwendet. +Dies erfordert die Aktivierung eines VPNs. No comment provided by engineer. @@ -5344,11 +5350,6 @@ Aktivieren Sie es in den *Netzwerk & Server* Einstellungen. Aufdecken chat item action - - Revert - Zurückkehren - No comment provided by engineer. - Revoke Widerrufen @@ -5379,11 +5380,6 @@ Aktivieren Sie es in den *Netzwerk & Server* Einstellungen. SMP-Server No comment provided by engineer. - - SMP servers - SMP-Server - No comment provided by engineer. - Safely receive files Dateien sicher empfangen @@ -5414,6 +5410,10 @@ Aktivieren Sie es in den *Netzwerk & Server* Einstellungen. Speichern und Gruppenmitglieder benachrichtigen No comment provided by engineer. + + Save and reconnect + No comment provided by engineer. + Save and update group profile Gruppen-Profil sichern und aktualisieren @@ -6101,11 +6101,19 @@ Aktivieren Sie es in den *Netzwerk & Server* Einstellungen. Soft blur media + + Some file(s) were not exported: + No comment provided by engineer. + Some non-fatal errors occurred during import - you may see Chat console for more details. Während des Imports sind einige nicht schwerwiegende Fehler aufgetreten - in der Chat-Konsole finden Sie weitere Einzelheiten. No comment provided by engineer. + + Some non-fatal errors occurred during import: + No comment provided by engineer. + Somebody Jemand @@ -6240,6 +6248,10 @@ Aktivieren Sie es in den *Netzwerk & Server* Einstellungen. System-Authentifizierung No comment provided by engineer. + + TCP connection + No comment provided by engineer. + TCP connection timeout Timeout der TCP-Verbindung @@ -6779,11 +6791,6 @@ Bitten Sie Ihren Kontakt darum einen weiteren Verbindungs-Link zu erzeugen, um s Aktualisieren No comment provided by engineer. - - Update .onion hosts setting? - Einstellung für .onion-Hosts aktualisieren? - No comment provided by engineer. - Update database passphrase Datenbank-Passwort aktualisieren @@ -6794,9 +6801,8 @@ Bitten Sie Ihren Kontakt darum einen weiteren Verbindungs-Link zu erzeugen, um s Netzwerkeinstellungen aktualisieren? No comment provided by engineer. - - Update transport isolation mode? - Transport-Isolations-Modus aktualisieren? + + Update settings? No comment provided by engineer. @@ -6804,11 +6810,6 @@ Bitten Sie Ihren Kontakt darum einen weiteren Verbindungs-Link zu erzeugen, um s Die Aktualisierung der Einstellungen wird den Client wieder mit allen Servern verbinden. No comment provided by engineer. - - Updating this setting will re-connect the client to all servers. - Die Aktualisierung dieser Einstellung wird den Client wieder mit allen Servern verbinden. - No comment provided by engineer. - Upgrade and open chat Aktualisieren und den Chat öffnen @@ -6919,11 +6920,6 @@ Bitten Sie Ihren Kontakt darum einen weiteren Verbindungs-Link zu erzeugen, um s Benutzer-Auswahl No comment provided by engineer. - - Using .onion hosts requires compatible VPN provider. - Für die Nutzung von .onion-Hosts sind kompatible VPN-Anbieter erforderlich. - No comment provided by engineer. - Using SimpleX Chat servers. Verwendung von SimpleX-Chat-Servern. @@ -7184,11 +7180,6 @@ Bitten Sie Ihren Kontakt darum einen weiteren Verbindungs-Link zu erzeugen, um s XFTP-Server No comment provided by engineer. - - XFTP servers - XFTP-Server - No comment provided by engineer. - You Profil @@ -7403,6 +7394,14 @@ Verbindungsanfrage wiederholen? Sie sind dieser Gruppe beigetreten. Sie werden mit dem einladenden Gruppenmitglied verbunden. No comment provided by engineer. + + You may migrate the exported database. + No comment provided by engineer. + + + You may save the exported archive. + No comment provided by engineer. + You must use the most recent version of your chat database on one device ONLY, otherwise you may stop receiving the messages from some contacts. Sie dürfen die neueste Version Ihrer Chat-Datenbank NUR auf einem Gerät verwenden, andernfalls erhalten Sie möglicherweise keine Nachrichten mehr von einigen Ihrer Kontakte. @@ -8383,8 +8382,8 @@ Zuletzt empfangene Nachricht: %2$@ Unbekannt connection info - - unknown relays + + unknown servers Unbekannte Relais No comment provided by engineer. diff --git a/apps/ios/SimpleX Localizations/en.xcloc/Localized Contents/en.xliff b/apps/ios/SimpleX Localizations/en.xcloc/Localized Contents/en.xliff index 3fc3e6037b..d416dc9138 100644 --- a/apps/ios/SimpleX Localizations/en.xcloc/Localized Contents/en.xliff +++ b/apps/ios/SimpleX Localizations/en.xcloc/Localized Contents/en.xliff @@ -1254,6 +1254,11 @@ Chat database deleted No comment provided by engineer. + + Chat database exported + Chat database exported + No comment provided by engineer. + Chat database imported Chat database imported @@ -3978,6 +3983,11 @@ This is your link for group %@! Max 30 seconds, received instantly. No comment provided by engineer. + + Media & file servers + Media & file servers + No comment provided by engineer. + Medium Medium @@ -4068,14 +4078,9 @@ This is your link for group %@! Message reception No comment provided by engineer. - - Message routing fallback - Message routing fallback - No comment provided by engineer. - - - Message routing mode - Message routing mode + + Message servers + Message servers No comment provided by engineer. @@ -4462,14 +4467,18 @@ This is your link for group %@! One-time invitation link No comment provided by engineer. - - Onion hosts will be required for connection. Requires enabling VPN. - Onion hosts will be required for connection. Requires enabling VPN. + + Onion hosts will be **required** for connection. +Requires compatible VPN. + Onion hosts will be **required** for connection. +Requires compatible VPN. No comment provided by engineer. - - Onion hosts will be used when available. Requires enabling VPN. - Onion hosts will be used when available. Requires enabling VPN. + + Onion hosts will be used when available. +Requires compatible VPN. + Onion hosts will be used when available. +Requires compatible VPN. No comment provided by engineer. @@ -5358,11 +5367,6 @@ Enable in *Network & servers* settings. Reveal chat item action - - Revert - Revert - No comment provided by engineer. - Revoke Revoke @@ -5393,11 +5397,6 @@ Enable in *Network & servers* settings. SMP server No comment provided by engineer. - - SMP servers - SMP servers - No comment provided by engineer. - Safely receive files Safely receive files @@ -5428,6 +5427,11 @@ Enable in *Network & servers* settings. Save and notify group members No comment provided by engineer. + + Save and reconnect + Save and reconnect + No comment provided by engineer. + Save and update group profile Save and update group profile @@ -6118,11 +6122,21 @@ Enable in *Network & servers* settings. Soft blur media + + Some file(s) were not exported: + Some file(s) were not exported: + No comment provided by engineer. + Some non-fatal errors occurred during import - you may see Chat console for more details. Some non-fatal errors occurred during import - you may see Chat console for more details. No comment provided by engineer. + + Some non-fatal errors occurred during import: + Some non-fatal errors occurred during import: + No comment provided by engineer. + Somebody Somebody @@ -6258,6 +6272,11 @@ Enable in *Network & servers* settings. System authentication No comment provided by engineer. + + TCP connection + TCP connection + No comment provided by engineer. + TCP connection timeout TCP connection timeout @@ -6799,11 +6818,6 @@ To connect, please ask your contact to create another connection link and check Update No comment provided by engineer. - - Update .onion hosts setting? - Update .onion hosts setting? - No comment provided by engineer. - Update database passphrase Update database passphrase @@ -6814,9 +6828,9 @@ To connect, please ask your contact to create another connection link and check Update network settings? No comment provided by engineer. - - Update transport isolation mode? - Update transport isolation mode? + + Update settings? + Update settings? No comment provided by engineer. @@ -6824,11 +6838,6 @@ To connect, please ask your contact to create another connection link and check Updating settings will re-connect the client to all servers. No comment provided by engineer. - - Updating this setting will re-connect the client to all servers. - Updating this setting will re-connect the client to all servers. - No comment provided by engineer. - Upgrade and open chat Upgrade and open chat @@ -6939,11 +6948,6 @@ To connect, please ask your contact to create another connection link and check User selection No comment provided by engineer. - - Using .onion hosts requires compatible VPN provider. - Using .onion hosts requires compatible VPN provider. - No comment provided by engineer. - Using SimpleX Chat servers. Using SimpleX Chat servers. @@ -7204,11 +7208,6 @@ To connect, please ask your contact to create another connection link and check XFTP server No comment provided by engineer. - - XFTP servers - XFTP servers - No comment provided by engineer. - You You @@ -7423,6 +7422,16 @@ Repeat connection request? You joined this group. Connecting to inviting group member. No comment provided by engineer. + + You may migrate the exported database. + You may migrate the exported database. + No comment provided by engineer. + + + You may save the exported archive. + You may save the exported archive. + No comment provided by engineer. + You must use the most recent version of your chat database on one device ONLY, otherwise you may stop receiving the messages from some contacts. You must use the most recent version of your chat database on one device ONLY, otherwise you may stop receiving the messages from some contacts. @@ -8403,9 +8412,9 @@ last received msg: %2$@ unknown connection info - - unknown relays - unknown relays + + unknown servers + unknown servers No comment provided by engineer. diff --git a/apps/ios/SimpleX Localizations/es.xcloc/Localized Contents/es.xliff b/apps/ios/SimpleX Localizations/es.xcloc/Localized Contents/es.xliff index 3e33bb5d39..e908c8a69e 100644 --- a/apps/ios/SimpleX Localizations/es.xcloc/Localized Contents/es.xliff +++ b/apps/ios/SimpleX Localizations/es.xcloc/Localized Contents/es.xliff @@ -1252,6 +1252,10 @@ Base de datos eliminada No comment provided by engineer. + + Chat database exported + No comment provided by engineer. + Chat database imported Base de datos importada @@ -3966,6 +3970,10 @@ This is your link for group %@! Máximo 30 segundos, recibido al instante. No comment provided by engineer. + + Media & file servers + No comment provided by engineer. + Medium blur media @@ -4055,14 +4063,8 @@ This is your link for group %@! Recepción de mensaje No comment provided by engineer. - - Message routing fallback - Enrutamiento de mensajes alternativo - No comment provided by engineer. - - - Message routing mode - Modo de enrutamiento de mensajes + + Message servers No comment provided by engineer. @@ -4448,14 +4450,18 @@ This is your link for group %@! Enlace de invitación de un solo uso No comment provided by engineer. - - Onion hosts will be required for connection. Requires enabling VPN. - Se requieren hosts .onion para la conexión. Requiere activación de la VPN. + + Onion hosts will be **required** for connection. +Requires compatible VPN. + Se **requieren** hosts .onion para la conexión. +Requiere activación de la VPN. No comment provided by engineer. - - Onion hosts will be used when available. Requires enabling VPN. - Se usarán hosts .onion si están disponibles. Requiere activación de la VPN. + + Onion hosts will be used when available. +Requires compatible VPN. + Se usarán hosts .onion si están disponibles. +Requiere activación de la VPN. No comment provided by engineer. @@ -5344,11 +5350,6 @@ Actívalo en ajustes de *Servidores y Redes*. Revelar chat item action - - Revert - Revertir - No comment provided by engineer. - Revoke Revocar @@ -5379,11 +5380,6 @@ Actívalo en ajustes de *Servidores y Redes*. Servidor SMP No comment provided by engineer. - - SMP servers - Servidores SMP - No comment provided by engineer. - Safely receive files Recibe archivos de forma segura @@ -5414,6 +5410,10 @@ Actívalo en ajustes de *Servidores y Redes*. Guardar y notificar grupo No comment provided by engineer. + + Save and reconnect + No comment provided by engineer. + Save and update group profile Guardar y actualizar perfil del grupo @@ -6101,11 +6101,19 @@ Actívalo en ajustes de *Servidores y Redes*. Soft blur media + + Some file(s) were not exported: + No comment provided by engineer. + Some non-fatal errors occurred during import - you may see Chat console for more details. Algunos errores no críticos ocurrieron durante la importación - para más detalles puedes ver la consola de Chat. No comment provided by engineer. + + Some non-fatal errors occurred during import: + No comment provided by engineer. + Somebody Alguien @@ -6240,6 +6248,10 @@ Actívalo en ajustes de *Servidores y Redes*. Autenticación del sistema No comment provided by engineer. + + TCP connection + No comment provided by engineer. + TCP connection timeout Timeout de la conexión TCP @@ -6779,11 +6791,6 @@ Para conectarte pide a tu contacto que cree otro enlace y comprueba la conexión Actualizar No comment provided by engineer. - - Update .onion hosts setting? - ¿Actualizar la configuración de los hosts .onion? - No comment provided by engineer. - Update database passphrase Actualizar contraseña de la base de datos @@ -6794,9 +6801,8 @@ Para conectarte pide a tu contacto que cree otro enlace y comprueba la conexión ¿Actualizar la configuración de red? No comment provided by engineer. - - Update transport isolation mode? - ¿Actualizar el modo de aislamiento de transporte? + + Update settings? No comment provided by engineer. @@ -6804,11 +6810,6 @@ Para conectarte pide a tu contacto que cree otro enlace y comprueba la conexión Al actualizar la configuración el cliente se reconectará a todos los servidores. No comment provided by engineer. - - Updating this setting will re-connect the client to all servers. - Al actualizar esta configuración el cliente se reconectará a todos los servidores. - No comment provided by engineer. - Upgrade and open chat Actualizar y abrir Chat @@ -6919,11 +6920,6 @@ Para conectarte pide a tu contacto que cree otro enlace y comprueba la conexión Selección de usuarios No comment provided by engineer. - - Using .onion hosts requires compatible VPN provider. - Usar hosts .onion requiere un proveedor VPN compatible. - No comment provided by engineer. - Using SimpleX Chat servers. Usar servidores SimpleX Chat. @@ -7184,11 +7180,6 @@ Para conectarte pide a tu contacto que cree otro enlace y comprueba la conexión Servidor XFTP No comment provided by engineer. - - XFTP servers - Servidores XFTP - No comment provided by engineer. - You @@ -7403,6 +7394,14 @@ Repeat connection request? Te has unido a este grupo. Conectando con el emisor de la invitacíon. No comment provided by engineer. + + You may migrate the exported database. + No comment provided by engineer. + + + You may save the exported archive. + No comment provided by engineer. + You must use the most recent version of your chat database on one device ONLY, otherwise you may stop receiving the messages from some contacts. Debes usar la versión más reciente de tu base de datos ÚNICAMENTE en un dispositivo, de lo contrario podrías dejar de recibir mensajes de algunos contactos. @@ -8383,8 +8382,8 @@ last received msg: %2$@ desconocido connection info - - unknown relays + + unknown servers con servidores desconocidos No comment provided by engineer. diff --git a/apps/ios/SimpleX Localizations/fi.xcloc/Localized Contents/fi.xliff b/apps/ios/SimpleX Localizations/fi.xcloc/Localized Contents/fi.xliff index 5b6a1fab80..37d3b4aa03 100644 --- a/apps/ios/SimpleX Localizations/fi.xcloc/Localized Contents/fi.xliff +++ b/apps/ios/SimpleX Localizations/fi.xcloc/Localized Contents/fi.xliff @@ -1185,6 +1185,10 @@ Chat-tietokanta poistettu No comment provided by engineer. + + Chat database exported + No comment provided by engineer. + Chat database imported Chat-tietokanta tuotu @@ -3746,6 +3750,10 @@ This is your link for group %@! Enintään 30 sekuntia, vastaanotetaan välittömästi. No comment provided by engineer. + + Media & file servers + No comment provided by engineer. + Medium blur media @@ -3828,12 +3836,8 @@ This is your link for group %@! Message reception No comment provided by engineer. - - Message routing fallback - No comment provided by engineer. - - - Message routing mode + + Message servers No comment provided by engineer. @@ -4192,14 +4196,18 @@ This is your link for group %@! Kertakutsulinkki No comment provided by engineer. - - Onion hosts will be required for connection. Requires enabling VPN. - Yhteyden muodostamiseen tarvitaan Onion-isäntiä. Edellyttää VPN:n sallimista. + + Onion hosts will be **required** for connection. +Requires compatible VPN. + Yhteyden muodostamiseen tarvitaan Onion-isäntiä. +Edellyttää VPN:n sallimista. No comment provided by engineer. - - Onion hosts will be used when available. Requires enabling VPN. - Onion-isäntiä käytetään, kun niitä on saatavilla. Edellyttää VPN:n sallimista. + + Onion hosts will be used when available. +Requires compatible VPN. + Onion-isäntiä käytetään, kun niitä on saatavilla. +Edellyttää VPN:n sallimista. No comment provided by engineer. @@ -5025,11 +5033,6 @@ Enable in *Network & servers* settings. Paljasta chat item action - - Revert - Palauta - No comment provided by engineer. - Revoke Peruuta @@ -5059,11 +5062,6 @@ Enable in *Network & servers* settings. SMP server No comment provided by engineer. - - SMP servers - SMP-palvelimet - No comment provided by engineer. - Safely receive files No comment provided by engineer. @@ -5092,6 +5090,10 @@ Enable in *Network & servers* settings. Tallenna ja ilmoita ryhmän jäsenille No comment provided by engineer. + + Save and reconnect + No comment provided by engineer. + Save and update group profile Tallenna ja päivitä ryhmäprofiili @@ -5736,11 +5738,19 @@ Enable in *Network & servers* settings. Soft blur media + + Some file(s) were not exported: + No comment provided by engineer. + Some non-fatal errors occurred during import - you may see Chat console for more details. Tuonnin aikana tapahtui joitakin ei-vakavia virheitä – saatat nähdä Chat-konsolissa lisätietoja. No comment provided by engineer. + + Some non-fatal errors occurred during import: + No comment provided by engineer. + Somebody Joku @@ -5866,6 +5876,10 @@ Enable in *Network & servers* settings. Järjestelmän todennus No comment provided by engineer. + + TCP connection + No comment provided by engineer. + TCP connection timeout TCP-yhteyden aikakatkaisu @@ -6374,11 +6388,6 @@ Jos haluat muodostaa yhteyden, pyydä kontaktiasi luomaan toinen yhteyslinkki ja Päivitä No comment provided by engineer. - - Update .onion hosts setting? - Päivitä .onion-isäntien asetus? - No comment provided by engineer. - Update database passphrase Päivitä tietokannan tunnuslause @@ -6389,9 +6398,8 @@ Jos haluat muodostaa yhteyden, pyydä kontaktiasi luomaan toinen yhteyslinkki ja Päivitä verkkoasetukset? No comment provided by engineer. - - Update transport isolation mode? - Päivitä kuljetuksen eristystila? + + Update settings? No comment provided by engineer. @@ -6399,11 +6407,6 @@ Jos haluat muodostaa yhteyden, pyydä kontaktiasi luomaan toinen yhteyslinkki ja Asetusten päivittäminen yhdistää asiakkaan uudelleen kaikkiin palvelimiin. No comment provided by engineer. - - Updating this setting will re-connect the client to all servers. - Tämän asetuksen päivittäminen yhdistää asiakkaan uudelleen kaikkiin palvelimiin. - No comment provided by engineer. - Upgrade and open chat Päivitä ja avaa keskustelu @@ -6503,11 +6506,6 @@ Jos haluat muodostaa yhteyden, pyydä kontaktiasi luomaan toinen yhteyslinkki ja User selection No comment provided by engineer. - - Using .onion hosts requires compatible VPN provider. - .onion-isäntien käyttäminen vaatii yhteensopivan VPN-palveluntarjoajan. - No comment provided by engineer. - Using SimpleX Chat servers. Käyttää SimpleX Chat -palvelimia. @@ -6744,11 +6742,6 @@ Jos haluat muodostaa yhteyden, pyydä kontaktiasi luomaan toinen yhteyslinkki ja XFTP server No comment provided by engineer. - - XFTP servers - XFTP-palvelimet - No comment provided by engineer. - You Sinä @@ -6947,6 +6940,14 @@ Repeat connection request? Liityit tähän ryhmään. Muodostetaan yhteyttä ryhmän jäsenten kutsumiseksi. No comment provided by engineer. + + You may migrate the exported database. + No comment provided by engineer. + + + You may save the exported archive. + No comment provided by engineer. + You must use the most recent version of your chat database on one device ONLY, otherwise you may stop receiving the messages from some contacts. Sinun tulee käyttää keskustelujen-tietokannan uusinta versiota AINOSTAAN yhdessä laitteessa, muuten saatat lakata vastaanottamasta viestejä joiltakin kontakteilta. @@ -7891,8 +7892,8 @@ last received msg: %2$@ tuntematon connection info - - unknown relays + + unknown servers No comment provided by engineer. diff --git a/apps/ios/SimpleX Localizations/fr.xcloc/Localized Contents/fr.xliff b/apps/ios/SimpleX Localizations/fr.xcloc/Localized Contents/fr.xliff index e3c45aeebf..3f02545700 100644 --- a/apps/ios/SimpleX Localizations/fr.xcloc/Localized Contents/fr.xliff +++ b/apps/ios/SimpleX Localizations/fr.xcloc/Localized Contents/fr.xliff @@ -1252,6 +1252,10 @@ Base de données du chat supprimée No comment provided by engineer. + + Chat database exported + No comment provided by engineer. + Chat database imported Base de données du chat importée @@ -3966,6 +3970,10 @@ Voici votre lien pour le groupe %@ ! Max 30 secondes, réception immédiate. No comment provided by engineer. + + Media & file servers + No comment provided by engineer. + Medium blur media @@ -4055,14 +4063,8 @@ Voici votre lien pour le groupe %@ ! Réception de message No comment provided by engineer. - - Message routing fallback - Rabattement du routage des messages - No comment provided by engineer. - - - Message routing mode - Mode de routage des messages + + Message servers No comment provided by engineer. @@ -4448,14 +4450,18 @@ Voici votre lien pour le groupe %@ ! Lien d'invitation unique No comment provided by engineer. - - Onion hosts will be required for connection. Requires enabling VPN. - Les hôtes .onion seront nécessaires pour la connexion. Nécessite l'activation d'un VPN. + + Onion hosts will be **required** for connection. +Requires compatible VPN. + Les hôtes .onion seront **nécessaires** pour la connexion. +Nécessite l'activation d'un VPN. No comment provided by engineer. - - Onion hosts will be used when available. Requires enabling VPN. - Les hôtes .onion seront utilisés dès que possible. Nécessite l'activation d'un VPN. + + Onion hosts will be used when available. +Requires compatible VPN. + Les hôtes .onion seront utilisés dès que possible. +Nécessite l'activation d'un VPN. No comment provided by engineer. @@ -5344,11 +5350,6 @@ Activez-le dans les paramètres *Réseau et serveurs*. Révéler chat item action - - Revert - Revenir en arrière - No comment provided by engineer. - Revoke Révoquer @@ -5379,11 +5380,6 @@ Activez-le dans les paramètres *Réseau et serveurs*. Serveur SMP No comment provided by engineer. - - SMP servers - Serveurs SMP - No comment provided by engineer. - Safely receive files Réception de fichiers en toute sécurité @@ -5414,6 +5410,10 @@ Activez-le dans les paramètres *Réseau et serveurs*. Enregistrer et en informer les membres du groupe No comment provided by engineer. + + Save and reconnect + No comment provided by engineer. + Save and update group profile Enregistrer et mettre à jour le profil du groupe @@ -6100,11 +6100,19 @@ Activez-le dans les paramètres *Réseau et serveurs*. Soft blur media + + Some file(s) were not exported: + No comment provided by engineer. + Some non-fatal errors occurred during import - you may see Chat console for more details. Des erreurs non fatales se sont produites lors de l'importation - vous pouvez consulter la console de chat pour plus de détails. No comment provided by engineer. + + Some non-fatal errors occurred during import: + No comment provided by engineer. + Somebody Quelqu'un @@ -6239,6 +6247,10 @@ Activez-le dans les paramètres *Réseau et serveurs*. Authentification du système No comment provided by engineer. + + TCP connection + No comment provided by engineer. + TCP connection timeout Délai de connexion TCP @@ -6778,11 +6790,6 @@ Pour vous connecter, veuillez demander à votre contact de créer un autre lien Mise à jour No comment provided by engineer. - - Update .onion hosts setting? - Mettre à jour le paramètre des hôtes .onion ? - No comment provided by engineer. - Update database passphrase Mise à jour de la phrase secrète de la base de données @@ -6793,9 +6800,8 @@ Pour vous connecter, veuillez demander à votre contact de créer un autre lien Mettre à jour les paramètres réseau ? No comment provided by engineer. - - Update transport isolation mode? - Mettre à jour le mode d'isolement du transport ? + + Update settings? No comment provided by engineer. @@ -6803,11 +6809,6 @@ Pour vous connecter, veuillez demander à votre contact de créer un autre lien La mise à jour des ces paramètres reconnectera le client à tous les serveurs. No comment provided by engineer. - - Updating this setting will re-connect the client to all servers. - La mise à jour de ce paramètre reconnectera le client à tous les serveurs. - No comment provided by engineer. - Upgrade and open chat Mettre à niveau et ouvrir le chat @@ -6918,11 +6919,6 @@ Pour vous connecter, veuillez demander à votre contact de créer un autre lien Sélection de l'utilisateur No comment provided by engineer. - - Using .onion hosts requires compatible VPN provider. - L'utilisation des hôtes .onion nécessite un fournisseur VPN compatible. - No comment provided by engineer. - Using SimpleX Chat servers. Vous utilisez les serveurs SimpleX. @@ -7183,11 +7179,6 @@ Pour vous connecter, veuillez demander à votre contact de créer un autre lien Serveur XFTP No comment provided by engineer. - - XFTP servers - Serveurs XFTP - No comment provided by engineer. - You Vous @@ -7402,6 +7393,14 @@ Répéter la demande de connexion ? Vous avez rejoint ce groupe. Connexion à l'invitation d'un membre du groupe. No comment provided by engineer. + + You may migrate the exported database. + No comment provided by engineer. + + + You may save the exported archive. + No comment provided by engineer. + You must use the most recent version of your chat database on one device ONLY, otherwise you may stop receiving the messages from some contacts. Vous devez utiliser la version la plus récente de votre base de données de chat sur un seul appareil UNIQUEMENT, sinon vous risquez de ne plus recevoir les messages de certains contacts. @@ -8382,8 +8381,8 @@ dernier message reçu : %2$@ inconnu connection info - - unknown relays + + unknown servers relais inconnus No comment provided by engineer. 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 d6ac48d974..2ab1126178 100644 --- a/apps/ios/SimpleX Localizations/hu.xcloc/Localized Contents/hu.xliff +++ b/apps/ios/SimpleX Localizations/hu.xcloc/Localized Contents/hu.xliff @@ -1252,6 +1252,10 @@ Csevegési adatbázis törölve No comment provided by engineer. + + Chat database exported + No comment provided by engineer. + Chat database imported Csevegési adatbázis importálva @@ -3966,6 +3970,10 @@ Ez az ön hivatkozása a(z) %@ csoporthoz! Max. 30 másodperc, azonnal érkezett. No comment provided by engineer. + + Media & file servers + No comment provided by engineer. + Medium blur media @@ -4055,14 +4063,8 @@ Ez az ön hivatkozása a(z) %@ csoporthoz! Üzenetjelentés No comment provided by engineer. - - Message routing fallback - Üzenet útválasztási tartalék - No comment provided by engineer. - - - Message routing mode - Üzenet útválasztási mód + + Message servers No comment provided by engineer. @@ -4448,14 +4450,18 @@ Ez az ön hivatkozása a(z) %@ csoporthoz! Egyszer használatos meghívó hivatkozás No comment provided by engineer. - - Onion hosts will be required for connection. Requires enabling VPN. - A kapcsolódáshoz Onion kiszolgálókra lesz szükség. VPN engedélyezése szükséges. + + Onion hosts will be **required** for connection. +Requires compatible VPN. + A kapcsolódáshoz Onion kiszolgálókra lesz szükség. +VPN engedélyezése szükséges. No comment provided by engineer. - - Onion hosts will be used when available. Requires enabling VPN. - Onion kiszolgálók használata, ha azok rendelkezésre állnak. VPN engedélyezése szükséges. + + Onion hosts will be used when available. +Requires compatible VPN. + Onion kiszolgálók használata, ha azok rendelkezésre állnak. +VPN engedélyezése szükséges. No comment provided by engineer. @@ -5344,11 +5350,6 @@ Engedélyezze a beállításokban a *Hálózat és kiszolgálók* menüpontban.< Felfedés chat item action - - Revert - Visszaállítás - No comment provided by engineer. - Revoke Visszavonás @@ -5379,11 +5380,6 @@ Engedélyezze a beállításokban a *Hálózat és kiszolgálók* menüpontban.< SMP-kiszolgáló No comment provided by engineer. - - SMP servers - SMP kiszolgálók - No comment provided by engineer. - Safely receive files Fájlok biztonságos fogadása @@ -5414,6 +5410,10 @@ Engedélyezze a beállításokban a *Hálózat és kiszolgálók* menüpontban.< Mentés és a csoporttagok értesítése No comment provided by engineer. + + Save and reconnect + No comment provided by engineer. + Save and update group profile Mentés és csoportprofil frissítése @@ -6101,11 +6101,19 @@ Engedélyezze a beállításokban a *Hálózat és kiszolgálók* menüpontban.< Soft blur media + + Some file(s) were not exported: + No comment provided by engineer. + Some non-fatal errors occurred during import - you may see Chat console for more details. Néhány nem végzetes hiba történt az importálás során – további részletekért a csevegési konzolban olvashat. No comment provided by engineer. + + Some non-fatal errors occurred during import: + No comment provided by engineer. + Somebody Valaki @@ -6240,6 +6248,10 @@ Engedélyezze a beállításokban a *Hálózat és kiszolgálók* menüpontban.< Rendszerhitelesítés No comment provided by engineer. + + TCP connection + No comment provided by engineer. + TCP connection timeout TCP kapcsolat időtúllépés @@ -6779,11 +6791,6 @@ A kapcsolódáshoz kérje meg ismerősét, hogy hozzon létre egy másik kapcsol Frissítés No comment provided by engineer. - - Update .onion hosts setting? - Tor .onion kiszolgálók beállításainak frissítése? - No comment provided by engineer. - Update database passphrase Adatbázis jelmondat megváltoztatása @@ -6794,9 +6801,8 @@ A kapcsolódáshoz kérje meg ismerősét, hogy hozzon létre egy másik kapcsol Hálózati beállítások megváltoztatása? No comment provided by engineer. - - Update transport isolation mode? - Kapcsolat izolációs mód frissítése? + + Update settings? No comment provided by engineer. @@ -6804,11 +6810,6 @@ A kapcsolódáshoz kérje meg ismerősét, hogy hozzon létre egy másik kapcsol A beállítások frissítése a kiszolgálókhoz való újra kapcsolódással jár. No comment provided by engineer. - - Updating this setting will re-connect the client to all servers. - A beállítás frissítésével a kliens újrakapcsolódik az összes kiszolgálóhoz. - No comment provided by engineer. - Upgrade and open chat A csevegés frissítése és megnyitása @@ -6919,11 +6920,6 @@ A kapcsolódáshoz kérje meg ismerősét, hogy hozzon létre egy másik kapcsol Felhasználó kiválasztása No comment provided by engineer. - - Using .onion hosts requires compatible VPN provider. - A .onion kiszolgálók használatához kompatibilis VPN szolgáltatóra van szükség. - No comment provided by engineer. - Using SimpleX Chat servers. SimpleX Chat kiszolgálók használatban. @@ -7184,11 +7180,6 @@ A kapcsolódáshoz kérje meg ismerősét, hogy hozzon létre egy másik kapcsol XFTP-kiszolgáló No comment provided by engineer. - - XFTP servers - XFTP kiszolgálók - No comment provided by engineer. - You Ön @@ -7403,6 +7394,14 @@ Kapcsolódási kérés megismétlése? Csatlakozott ehhez a csoporthoz. Kapcsolódás a meghívó csoporttaghoz. No comment provided by engineer. + + You may migrate the exported database. + No comment provided by engineer. + + + You may save the exported archive. + No comment provided by engineer. + You must use the most recent version of your chat database on one device ONLY, otherwise you may stop receiving the messages from some contacts. A csevegési adatbázis legfrissebb verzióját CSAK egy eszközön kell használnia, ellenkező esetben előfordulhat, hogy az üzeneteket nem fogja megkapni valamennyi ismerőstől. @@ -8383,8 +8382,8 @@ utoljára fogadott üzenet: %2$@ ismeretlen connection info - - unknown relays + + unknown servers ismeretlen átjátszók No comment provided by engineer. diff --git a/apps/ios/SimpleX Localizations/it.xcloc/Localized Contents/it.xliff b/apps/ios/SimpleX Localizations/it.xcloc/Localized Contents/it.xliff index e196830ac4..7fa997f06d 100644 --- a/apps/ios/SimpleX Localizations/it.xcloc/Localized Contents/it.xliff +++ b/apps/ios/SimpleX Localizations/it.xcloc/Localized Contents/it.xliff @@ -1252,6 +1252,10 @@ Database della chat eliminato No comment provided by engineer. + + Chat database exported + No comment provided by engineer. + Chat database imported Database della chat importato @@ -3966,6 +3970,10 @@ Questo è il tuo link per il gruppo %@! Max 30 secondi, ricevuto istantaneamente. No comment provided by engineer. + + Media & file servers + No comment provided by engineer. + Medium blur media @@ -4055,14 +4063,8 @@ Questo è il tuo link per il gruppo %@! Ricezione messaggi No comment provided by engineer. - - Message routing fallback - Ripiego instradamento messaggio - No comment provided by engineer. - - - Message routing mode - Modalità instradamento messaggio + + Message servers No comment provided by engineer. @@ -4448,14 +4450,18 @@ Questo è il tuo link per il gruppo %@! Link di invito una tantum No comment provided by engineer. - - Onion hosts will be required for connection. Requires enabling VPN. - Gli host Onion saranno necessari per la connessione. Richiede l'attivazione della VPN. + + Onion hosts will be **required** for connection. +Requires compatible VPN. + Gli host Onion saranno **necessari** per la connessione. +Richiede l'attivazione della VPN. No comment provided by engineer. - - Onion hosts will be used when available. Requires enabling VPN. - Gli host Onion verranno usati quando disponibili. Richiede l'attivazione della VPN. + + Onion hosts will be used when available. +Requires compatible VPN. + Gli host Onion verranno usati quando disponibili. +Richiede l'attivazione della VPN. No comment provided by engineer. @@ -5344,11 +5350,6 @@ Attivalo nelle impostazioni *Rete e server*. Rivela chat item action - - Revert - Ripristina - No comment provided by engineer. - Revoke Revoca @@ -5379,11 +5380,6 @@ Attivalo nelle impostazioni *Rete e server*. Server SMP No comment provided by engineer. - - SMP servers - Server SMP - No comment provided by engineer. - Safely receive files Ricevi i file in sicurezza @@ -5414,6 +5410,10 @@ Attivalo nelle impostazioni *Rete e server*. Salva e avvisa i membri del gruppo No comment provided by engineer. + + Save and reconnect + No comment provided by engineer. + Save and update group profile Salva e aggiorna il profilo del gruppo @@ -6101,11 +6101,19 @@ Attivalo nelle impostazioni *Rete e server*. Soft blur media + + Some file(s) were not exported: + No comment provided by engineer. + Some non-fatal errors occurred during import - you may see Chat console for more details. Si sono verificati alcuni errori non gravi durante l'importazione: vedi la console della chat per i dettagli. No comment provided by engineer. + + Some non-fatal errors occurred during import: + No comment provided by engineer. + Somebody Qualcuno @@ -6240,6 +6248,10 @@ Attivalo nelle impostazioni *Rete e server*. Autenticazione di sistema No comment provided by engineer. + + TCP connection + No comment provided by engineer. + TCP connection timeout Scadenza connessione TCP @@ -6779,11 +6791,6 @@ Per connetterti, chiedi al tuo contatto di creare un altro link di connessione e Aggiorna No comment provided by engineer. - - Update .onion hosts setting? - Aggiornare l'impostazione degli host .onion? - No comment provided by engineer. - Update database passphrase Aggiorna la password del database @@ -6794,9 +6801,8 @@ Per connetterti, chiedi al tuo contatto di creare un altro link di connessione e Aggiornare le impostazioni di rete? No comment provided by engineer. - - Update transport isolation mode? - Aggiornare la modalità di isolamento del trasporto? + + Update settings? No comment provided by engineer. @@ -6804,11 +6810,6 @@ Per connetterti, chiedi al tuo contatto di creare un altro link di connessione e L'aggiornamento delle impostazioni riconnetterà il client a tutti i server. No comment provided by engineer. - - Updating this setting will re-connect the client to all servers. - L'aggiornamento di questa impostazione riconnetterà il client a tutti i server. - No comment provided by engineer. - Upgrade and open chat Aggiorna e apri chat @@ -6919,11 +6920,6 @@ Per connetterti, chiedi al tuo contatto di creare un altro link di connessione e Selezione utente No comment provided by engineer. - - Using .onion hosts requires compatible VPN provider. - L'uso di host .onion richiede un fornitore di VPN compatibile. - No comment provided by engineer. - Using SimpleX Chat servers. Utilizzo dei server SimpleX Chat. @@ -7184,11 +7180,6 @@ Per connetterti, chiedi al tuo contatto di creare un altro link di connessione e Server XFTP No comment provided by engineer. - - XFTP servers - Server XFTP - No comment provided by engineer. - You Tu @@ -7403,6 +7394,14 @@ Ripetere la richiesta di connessione? Sei entrato/a in questo gruppo. Connessione al membro del gruppo invitante. No comment provided by engineer. + + You may migrate the exported database. + No comment provided by engineer. + + + You may save the exported archive. + No comment provided by engineer. + You must use the most recent version of your chat database on one device ONLY, otherwise you may stop receiving the messages from some contacts. Devi usare la versione più recente del tuo database della chat SOLO su un dispositivo, altrimenti potresti non ricevere più i messaggi da alcuni contatti. @@ -8383,8 +8382,8 @@ ultimo msg ricevuto: %2$@ sconosciuto connection info - - unknown relays + + unknown servers relay sconosciuti No comment provided by engineer. diff --git a/apps/ios/SimpleX Localizations/ja.xcloc/Localized Contents/ja.xliff b/apps/ios/SimpleX Localizations/ja.xcloc/Localized Contents/ja.xliff index 46ef837f9f..584c186c4d 100644 --- a/apps/ios/SimpleX Localizations/ja.xcloc/Localized Contents/ja.xliff +++ b/apps/ios/SimpleX Localizations/ja.xcloc/Localized Contents/ja.xliff @@ -1209,6 +1209,10 @@ チャットのデータベースが削除されました No comment provided by engineer. + + Chat database exported + No comment provided by engineer. + Chat database imported チャットのデータベースが読み込まれました @@ -3771,6 +3775,10 @@ This is your link for group %@! 最大 30 秒で即時受信します。 No comment provided by engineer. + + Media & file servers + No comment provided by engineer. + Medium blur media @@ -3852,12 +3860,8 @@ This is your link for group %@! Message reception No comment provided by engineer. - - Message routing fallback - No comment provided by engineer. - - - Message routing mode + + Message servers No comment provided by engineer. @@ -4217,14 +4221,18 @@ This is your link for group %@! 使い捨ての招待リンク No comment provided by engineer. - - Onion hosts will be required for connection. Requires enabling VPN. - 接続にオニオンのホストが必要となります。VPN を有効にする必要があります。 + + Onion hosts will be **required** for connection. +Requires compatible VPN. + 接続にオニオンのホストが必要となります。 +VPN を有効にする必要があります。 No comment provided by engineer. - - Onion hosts will be used when available. Requires enabling VPN. - オニオンのホストが利用可能時に使われます。VPN を有効にする必要があります。 + + Onion hosts will be used when available. +Requires compatible VPN. + オニオンのホストが利用可能時に使われます。 +VPN を有効にする必要があります。 No comment provided by engineer. @@ -5050,11 +5058,6 @@ Enable in *Network & servers* settings. 開示する chat item action - - Revert - 元に戻す - No comment provided by engineer. - Revoke 取り消す @@ -5084,11 +5087,6 @@ Enable in *Network & servers* settings. SMP server No comment provided by engineer. - - SMP servers - SMPサーバ - No comment provided by engineer. - Safely receive files No comment provided by engineer. @@ -5117,6 +5115,10 @@ Enable in *Network & servers* settings. 保存して、グループのメンバーにに知らせる No comment provided by engineer. + + Save and reconnect + No comment provided by engineer. + Save and update group profile グループプロファイルの保存と更新 @@ -5755,11 +5757,19 @@ Enable in *Network & servers* settings. Soft blur media + + Some file(s) were not exported: + No comment provided by engineer. + Some non-fatal errors occurred during import - you may see Chat console for more details. インポート中に致命的でないエラーが発生しました - 詳細はチャットコンソールを参照してください。 No comment provided by engineer. + + Some non-fatal errors occurred during import: + No comment provided by engineer. + Somebody 誰か @@ -5885,6 +5895,10 @@ Enable in *Network & servers* settings. システム認証 No comment provided by engineer. + + TCP connection + No comment provided by engineer. + TCP connection timeout TCP接続タイムアウト @@ -6392,11 +6406,6 @@ To connect, please ask your contact to create another connection link and check 更新 No comment provided by engineer. - - Update .onion hosts setting? - .onionのホスト設定を更新しますか? - No comment provided by engineer. - Update database passphrase データベースのパスフレーズを更新 @@ -6407,9 +6416,8 @@ To connect, please ask your contact to create another connection link and check ネットワーク設定を更新しますか? No comment provided by engineer. - - Update transport isolation mode? - トランスポート隔離モードを更新しますか? + + Update settings? No comment provided by engineer. @@ -6417,11 +6425,6 @@ To connect, please ask your contact to create another connection link and check 設定を更新すると、全サーバにクライントの再接続が行われます。 No comment provided by engineer. - - Updating this setting will re-connect the client to all servers. - 設定を更新すると、全サーバにクライントの再接続が行われます。 - No comment provided by engineer. - Upgrade and open chat アップグレードしてチャットを開く @@ -6521,11 +6524,6 @@ To connect, please ask your contact to create another connection link and check User selection No comment provided by engineer. - - Using .onion hosts requires compatible VPN provider. - .onionホストを使用するには、互換性のあるVPNプロバイダーが必要です。 - No comment provided by engineer. - Using SimpleX Chat servers. SimpleX チャット サーバーを使用する。 @@ -6762,11 +6760,6 @@ To connect, please ask your contact to create another connection link and check XFTP server No comment provided by engineer. - - XFTP servers - XFTPサーバ - No comment provided by engineer. - You あなた @@ -6965,6 +6958,14 @@ Repeat connection request? グループに参加しました。招待をくれたメンバーに接続してます。 No comment provided by engineer. + + You may migrate the exported database. + No comment provided by engineer. + + + You may save the exported archive. + No comment provided by engineer. + You must use the most recent version of your chat database on one device ONLY, otherwise you may stop receiving the messages from some contacts. あなたの最新データベースを1つの端末にしか使わなければ、一部の連絡先からメッセージが届きかねます。 @@ -7909,8 +7910,8 @@ last received msg: %2$@ 不明 connection info - - unknown relays + + unknown servers No comment provided by engineer. diff --git a/apps/ios/SimpleX Localizations/nl.xcloc/Localized Contents/nl.xliff b/apps/ios/SimpleX Localizations/nl.xcloc/Localized Contents/nl.xliff index 6a5eb34a47..d94be279f9 100644 --- a/apps/ios/SimpleX Localizations/nl.xcloc/Localized Contents/nl.xliff +++ b/apps/ios/SimpleX Localizations/nl.xcloc/Localized Contents/nl.xliff @@ -1252,6 +1252,10 @@ Chat database verwijderd No comment provided by engineer. + + Chat database exported + No comment provided by engineer. + Chat database imported Chat database geïmporteerd @@ -3966,6 +3970,10 @@ Dit is jouw link voor groep %@! Max 30 seconden, direct ontvangen. No comment provided by engineer. + + Media & file servers + No comment provided by engineer. + Medium blur media @@ -4055,14 +4063,8 @@ Dit is jouw link voor groep %@! Bericht ontvangst No comment provided by engineer. - - Message routing fallback - Terugval op berichtroutering - No comment provided by engineer. - - - Message routing mode - Berichtrouteringsmodus + + Message servers No comment provided by engineer. @@ -4448,14 +4450,18 @@ Dit is jouw link voor groep %@! Eenmalige uitnodiging link No comment provided by engineer. - - Onion hosts will be required for connection. Requires enabling VPN. - Onion hosts zullen nodig zijn voor verbinding. Vereist het inschakelen van VPN. + + Onion hosts will be **required** for connection. +Requires compatible VPN. + Onion hosts zullen nodig zijn voor verbinding. +Vereist het inschakelen van VPN. No comment provided by engineer. - - Onion hosts will be used when available. Requires enabling VPN. - Onion hosts worden gebruikt indien beschikbaar. Vereist het inschakelen van VPN. + + Onion hosts will be used when available. +Requires compatible VPN. + Onion hosts worden gebruikt indien beschikbaar. +Vereist het inschakelen van VPN. No comment provided by engineer. @@ -5344,11 +5350,6 @@ Schakel dit in in *Netwerk en servers*-instellingen. Onthullen chat item action - - Revert - Terugdraaien - No comment provided by engineer. - Revoke Intrekken @@ -5379,11 +5380,6 @@ Schakel dit in in *Netwerk en servers*-instellingen. SMP server No comment provided by engineer. - - SMP servers - SMP servers - No comment provided by engineer. - Safely receive files Veilig bestanden ontvangen @@ -5414,6 +5410,10 @@ Schakel dit in in *Netwerk en servers*-instellingen. Opslaan en groep leden melden No comment provided by engineer. + + Save and reconnect + No comment provided by engineer. + Save and update group profile Groep profiel opslaan en bijwerken @@ -6101,11 +6101,19 @@ Schakel dit in in *Netwerk en servers*-instellingen. Soft blur media + + Some file(s) were not exported: + No comment provided by engineer. + Some non-fatal errors occurred during import - you may see Chat console for more details. Er zijn enkele niet-fatale fouten opgetreden tijdens het importeren - u kunt de Chat console raadplegen voor meer details. No comment provided by engineer. + + Some non-fatal errors occurred during import: + No comment provided by engineer. + Somebody Iemand @@ -6240,6 +6248,10 @@ Schakel dit in in *Netwerk en servers*-instellingen. Systeem authenticatie No comment provided by engineer. + + TCP connection + No comment provided by engineer. + TCP connection timeout Timeout van TCP-verbinding @@ -6779,11 +6791,6 @@ Om verbinding te maken, vraagt u uw contact om een andere verbinding link te mak Update No comment provided by engineer. - - Update .onion hosts setting? - .onion hosts-instelling updaten? - No comment provided by engineer. - Update database passphrase Database wachtwoord bijwerken @@ -6794,9 +6801,8 @@ Om verbinding te maken, vraagt u uw contact om een andere verbinding link te mak Netwerk instellingen bijwerken? No comment provided by engineer. - - Update transport isolation mode? - Transportisolatiemodus updaten? + + Update settings? No comment provided by engineer. @@ -6804,11 +6810,6 @@ Om verbinding te maken, vraagt u uw contact om een andere verbinding link te mak Door de instellingen bij te werken, wordt de client opnieuw verbonden met alle servers. No comment provided by engineer. - - Updating this setting will re-connect the client to all servers. - Als u deze instelling bijwerkt, wordt de client opnieuw verbonden met alle servers. - No comment provided by engineer. - Upgrade and open chat Upgrade en open chat @@ -6919,11 +6920,6 @@ Om verbinding te maken, vraagt u uw contact om een andere verbinding link te mak Gebruikersselectie No comment provided by engineer. - - Using .onion hosts requires compatible VPN provider. - Het gebruik van .onion-hosts vereist een compatibele VPN-provider. - No comment provided by engineer. - Using SimpleX Chat servers. SimpleX Chat servers gebruiken. @@ -7184,11 +7180,6 @@ Om verbinding te maken, vraagt u uw contact om een andere verbinding link te mak XFTP server No comment provided by engineer. - - XFTP servers - XFTP servers - No comment provided by engineer. - You Jij @@ -7403,6 +7394,14 @@ Verbindingsverzoek herhalen? Je bent lid geworden van deze groep. Verbinding maken met uitnodigend groepslid. No comment provided by engineer. + + You may migrate the exported database. + No comment provided by engineer. + + + You may save the exported archive. + No comment provided by engineer. + You must use the most recent version of your chat database on one device ONLY, otherwise you may stop receiving the messages from some contacts. U mag ALLEEN de meest recente versie van uw chat database op één apparaat gebruiken, anders ontvangt u mogelijk geen berichten meer van sommige contacten. @@ -8383,8 +8382,8 @@ laatst ontvangen bericht: %2$@ onbekend connection info - - unknown relays + + unknown servers onbekende relays No comment provided by engineer. diff --git a/apps/ios/SimpleX Localizations/pl.xcloc/Localized Contents/pl.xliff b/apps/ios/SimpleX Localizations/pl.xcloc/Localized Contents/pl.xliff index a9d342d549..5b6e769692 100644 --- a/apps/ios/SimpleX Localizations/pl.xcloc/Localized Contents/pl.xliff +++ b/apps/ios/SimpleX Localizations/pl.xcloc/Localized Contents/pl.xliff @@ -1252,6 +1252,10 @@ Baza danych czatu usunięta No comment provided by engineer. + + Chat database exported + No comment provided by engineer. + Chat database imported Zaimportowano bazę danych czatu @@ -3966,6 +3970,10 @@ To jest twój link do grupy %@! Maksymalnie 30 sekund, odbierane natychmiast. No comment provided by engineer. + + Media & file servers + No comment provided by engineer. + Medium blur media @@ -4055,14 +4063,8 @@ To jest twój link do grupy %@! Odebranie wiadomości No comment provided by engineer. - - Message routing fallback - Rezerwowe trasowania wiadomości - No comment provided by engineer. - - - Message routing mode - Tryb trasowania wiadomości + + Message servers No comment provided by engineer. @@ -4448,14 +4450,18 @@ To jest twój link do grupy %@! Jednorazowy link zaproszenia No comment provided by engineer. - - Onion hosts will be required for connection. Requires enabling VPN. - Hosty onion będą wymagane do połączenia. Wymaga włączenia VPN. + + Onion hosts will be **required** for connection. +Requires compatible VPN. + Hosty onion będą wymagane do połączenia. +Wymaga włączenia VPN. No comment provided by engineer. - - Onion hosts will be used when available. Requires enabling VPN. - Hosty onion będą używane, gdy będą dostępne. Wymaga włączenia VPN. + + Onion hosts will be used when available. +Requires compatible VPN. + Hosty onion będą używane, gdy będą dostępne. +Wymaga włączenia VPN. No comment provided by engineer. @@ -5344,11 +5350,6 @@ Włącz w ustawianiach *Sieć i serwery* . Ujawnij chat item action - - Revert - Przywrócić - No comment provided by engineer. - Revoke Odwołaj @@ -5379,11 +5380,6 @@ Włącz w ustawianiach *Sieć i serwery* . Serwer SMP No comment provided by engineer. - - SMP servers - Serwery SMP - No comment provided by engineer. - Safely receive files Bezpiecznie otrzymuj pliki @@ -5414,6 +5410,10 @@ Włącz w ustawianiach *Sieć i serwery* . Zapisz i powiadom członków grupy No comment provided by engineer. + + Save and reconnect + No comment provided by engineer. + Save and update group profile Zapisz i zaktualizuj profil grupowy @@ -6101,11 +6101,19 @@ Włącz w ustawianiach *Sieć i serwery* . Soft blur media + + Some file(s) were not exported: + No comment provided by engineer. + Some non-fatal errors occurred during import - you may see Chat console for more details. Podczas importu wystąpiły niekrytyczne błędy - więcej szczegółów można znaleźć w konsoli czatu. No comment provided by engineer. + + Some non-fatal errors occurred during import: + No comment provided by engineer. + Somebody Ktoś @@ -6240,6 +6248,10 @@ Włącz w ustawianiach *Sieć i serwery* . Uwierzytelnianie systemu No comment provided by engineer. + + TCP connection + No comment provided by engineer. + TCP connection timeout Limit czasu połączenia TCP @@ -6779,11 +6791,6 @@ Aby się połączyć, poproś Twój kontakt o utworzenie kolejnego linku połąc Aktualizuj No comment provided by engineer. - - Update .onion hosts setting? - Zaktualizować ustawienie hostów .onion? - No comment provided by engineer. - Update database passphrase Aktualizuj hasło do bazy danych @@ -6794,9 +6801,8 @@ Aby się połączyć, poproś Twój kontakt o utworzenie kolejnego linku połąc Zaktualizować ustawienia sieci? No comment provided by engineer. - - Update transport isolation mode? - Zaktualizować tryb izolacji transportu? + + Update settings? No comment provided by engineer. @@ -6804,11 +6810,6 @@ Aby się połączyć, poproś Twój kontakt o utworzenie kolejnego linku połąc Aktualizacja ustawień spowoduje ponowne połączenie klienta ze wszystkimi serwerami. No comment provided by engineer. - - Updating this setting will re-connect the client to all servers. - Aktualizacja tych ustawień spowoduje ponowne połączenie klienta ze wszystkimi serwerami. - No comment provided by engineer. - Upgrade and open chat Zaktualizuj i otwórz czat @@ -6919,11 +6920,6 @@ Aby się połączyć, poproś Twój kontakt o utworzenie kolejnego linku połąc Wybór użytkownika No comment provided by engineer. - - Using .onion hosts requires compatible VPN provider. - Używanie hostów .onion wymaga kompatybilnego dostawcy VPN. - No comment provided by engineer. - Using SimpleX Chat servers. Używanie serwerów SimpleX Chat. @@ -7184,11 +7180,6 @@ Aby się połączyć, poproś Twój kontakt o utworzenie kolejnego linku połąc Serwer XFTP No comment provided by engineer. - - XFTP servers - Serwery XFTP - No comment provided by engineer. - You Ty @@ -7403,6 +7394,14 @@ Powtórzyć prośbę połączenia? Dołączyłeś do tej grupy. Łączenie z zapraszającym członkiem grupy. No comment provided by engineer. + + You may migrate the exported database. + No comment provided by engineer. + + + You may save the exported archive. + No comment provided by engineer. + You must use the most recent version of your chat database on one device ONLY, otherwise you may stop receiving the messages from some contacts. Musisz używać najnowszej wersji bazy danych czatu TYLKO na jednym urządzeniu, w przeciwnym razie możesz przestać otrzymywać wiadomości od niektórych kontaktów. @@ -8383,8 +8382,8 @@ ostatnia otrzymana wiadomość: %2$@ nieznany connection info - - unknown relays + + unknown servers nieznane przekaźniki No comment provided by engineer. diff --git a/apps/ios/SimpleX Localizations/ru.xcloc/Localized Contents/ru.xliff b/apps/ios/SimpleX Localizations/ru.xcloc/Localized Contents/ru.xliff index 7789f9ddcf..cd0798a027 100644 --- a/apps/ios/SimpleX Localizations/ru.xcloc/Localized Contents/ru.xliff +++ b/apps/ios/SimpleX Localizations/ru.xcloc/Localized Contents/ru.xliff @@ -1237,6 +1237,10 @@ Данные чата удалены No comment provided by engineer. + + Chat database exported + No comment provided by engineer. + Chat database imported Архив чата импортирован @@ -3911,6 +3915,10 @@ This is your link for group %@! Макс. 30 секунд, доставляются мгновенно. No comment provided by engineer. + + Media & file servers + No comment provided by engineer. + Medium blur media @@ -3994,14 +4002,8 @@ This is your link for group %@! Message reception No comment provided by engineer. - - Message routing fallback - Прямая доставка сообщений - No comment provided by engineer. - - - Message routing mode - Режим доставки сообщений + + Message servers No comment provided by engineer. @@ -4381,14 +4383,18 @@ This is your link for group %@! Одноразовая ссылка No comment provided by engineer. - - Onion hosts will be required for connection. Requires enabling VPN. - Подключаться только к onion хостам. Требуется включенный VPN. + + Onion hosts will be **required** for connection. +Requires compatible VPN. + Подключаться только к **onion** хостам. +Требуется совместимый VPN. No comment provided by engineer. - - Onion hosts will be used when available. Requires enabling VPN. - Onion хосты используются, если возможно. Требуется включенный VPN. + + Onion hosts will be used when available. +Requires compatible VPN. + Onion хосты используются, если возможно. +Требуется совместимый VPN. No comment provided by engineer. @@ -5253,11 +5259,6 @@ Enable in *Network & servers* settings. Показать chat item action - - Revert - Отменить изменения - No comment provided by engineer. - Revoke Отозвать @@ -5287,11 +5288,6 @@ Enable in *Network & servers* settings. SMP server No comment provided by engineer. - - SMP servers - SMP серверы - No comment provided by engineer. - Safely receive files Получайте файлы безопасно @@ -5322,6 +5318,10 @@ Enable in *Network & servers* settings. Сохранить и уведомить членов группы No comment provided by engineer. + + Save and reconnect + No comment provided by engineer. + Save and update group profile Сохранить сообщение и обновить группу @@ -5988,11 +5988,19 @@ Enable in *Network & servers* settings. Soft blur media + + Some file(s) were not exported: + No comment provided by engineer. + Some non-fatal errors occurred during import - you may see Chat console for more details. Во время импорта произошли некоторые ошибки - для получения более подробной информации вы можете обратиться к консоли. No comment provided by engineer. + + Some non-fatal errors occurred during import: + No comment provided by engineer. + Somebody Контакт @@ -6122,6 +6130,10 @@ Enable in *Network & servers* settings. Системная аутентификация No comment provided by engineer. + + TCP connection + No comment provided by engineer. + TCP connection timeout Таймаут TCP соединения @@ -6655,11 +6667,6 @@ To connect, please ask your contact to create another connection link and check Обновить No comment provided by engineer. - - Update .onion hosts setting? - Обновить настройки .onion хостов? - No comment provided by engineer. - Update database passphrase Поменять пароль @@ -6670,9 +6677,8 @@ To connect, please ask your contact to create another connection link and check Обновить настройки сети? No comment provided by engineer. - - Update transport isolation mode? - Обновить режим отдельных сессий? + + Update settings? No comment provided by engineer. @@ -6680,11 +6686,6 @@ To connect, please ask your contact to create another connection link and check Обновление настроек приведет к сбросу и установке нового соединения со всеми серверами. No comment provided by engineer. - - Updating this setting will re-connect the client to all servers. - Обновление этих настроек приведет к сбросу и установке нового соединения со всеми серверами. - No comment provided by engineer. - Upgrade and open chat Обновить и открыть чат @@ -6791,11 +6792,6 @@ To connect, please ask your contact to create another connection link and check User selection No comment provided by engineer. - - Using .onion hosts requires compatible VPN provider. - Для использования .onion хостов требуется совместимый VPN провайдер. - No comment provided by engineer. - Using SimpleX Chat servers. Используются серверы, предоставленные SimpleX Chat. @@ -7052,11 +7048,6 @@ To connect, please ask your contact to create another connection link and check XFTP server No comment provided by engineer. - - XFTP servers - XFTP серверы - No comment provided by engineer. - You Вы @@ -7270,6 +7261,14 @@ Repeat connection request? Вы вступили в эту группу. Устанавливается соединение с пригласившим членом группы. No comment provided by engineer. + + You may migrate the exported database. + No comment provided by engineer. + + + You may save the exported archive. + No comment provided by engineer. + You must use the most recent version of your chat database on one device ONLY, otherwise you may stop receiving the messages from some contacts. Вы должны всегда использовать самую новую версию данных чата, ТОЛЬКО на одном устройстве, иначе Вы можете перестать получать сообщения от каких то контактов. @@ -8240,8 +8239,8 @@ last received msg: %2$@ неизвестно connection info - - unknown relays + + unknown servers неизвестные серверы No comment provided by engineer. 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 0735f1b288..4c40040191 100644 --- a/apps/ios/SimpleX Localizations/th.xcloc/Localized Contents/th.xliff +++ b/apps/ios/SimpleX Localizations/th.xcloc/Localized Contents/th.xliff @@ -1177,6 +1177,10 @@ ลบฐานข้อมูลแชทแล้ว No comment provided by engineer. + + Chat database exported + No comment provided by engineer. + Chat database imported นำฐานข้อมูลแชทเข้าแล้ว @@ -3729,6 +3733,10 @@ This is your link for group %@! สูงสุด 30 วินาที รับทันที No comment provided by engineer. + + Media & file servers + No comment provided by engineer. + Medium blur media @@ -3811,12 +3819,8 @@ This is your link for group %@! Message reception No comment provided by engineer. - - Message routing fallback - No comment provided by engineer. - - - Message routing mode + + Message servers No comment provided by engineer. @@ -4173,13 +4177,15 @@ This is your link for group %@! ลิงก์คำเชิญแบบใช้ครั้งเดียว No comment provided by engineer. - - Onion hosts will be required for connection. Requires enabling VPN. + + Onion hosts will be **required** for connection. +Requires compatible VPN. จำเป็นต้องมีโฮสต์หัวหอมสำหรับการเชื่อมต่อ ต้องเปิดใช้งาน VPN สำหรับการเชื่อมต่อ No comment provided by engineer. - - Onion hosts will be used when available. Requires enabling VPN. + + Onion hosts will be used when available. +Requires compatible VPN. จำเป็นต้องมีโฮสต์หัวหอมสำหรับการเชื่อมต่อ ต้องเปิดใช้งาน VPN สำหรับการเชื่อมต่อ No comment provided by engineer. @@ -5004,11 +5010,6 @@ Enable in *Network & servers* settings. เปิดเผย chat item action - - Revert - เปลี่ยนกลับ - No comment provided by engineer. - Revoke ถอน @@ -5038,11 +5039,6 @@ Enable in *Network & servers* settings. SMP server No comment provided by engineer. - - SMP servers - เซิร์ฟเวอร์ SMP - No comment provided by engineer. - Safely receive files No comment provided by engineer. @@ -5071,6 +5067,10 @@ Enable in *Network & servers* settings. บันทึกและแจ้งให้สมาชิกในกลุ่มทราบ No comment provided by engineer. + + Save and reconnect + No comment provided by engineer. + Save and update group profile บันทึกและอัปเดตโปรไฟล์กลุ่ม @@ -5711,11 +5711,19 @@ Enable in *Network & servers* settings. Soft blur media + + Some file(s) were not exported: + No comment provided by engineer. + Some non-fatal errors occurred during import - you may see Chat console for more details. ข้อผิดพลาดที่ไม่ร้ายแรงบางอย่างเกิดขึ้นระหว่างการนำเข้า - คุณอาจดูรายละเอียดเพิ่มเติมได้ที่คอนโซล Chat No comment provided by engineer. + + Some non-fatal errors occurred during import: + No comment provided by engineer. + Somebody ใครบางคน @@ -5841,6 +5849,10 @@ Enable in *Network & servers* settings. การรับรองความถูกต้องของระบบ No comment provided by engineer. + + TCP connection + No comment provided by engineer. + TCP connection timeout หมดเวลาการเชื่อมต่อ TCP @@ -6348,11 +6360,6 @@ To connect, please ask your contact to create another connection link and check อัปเดต No comment provided by engineer. - - Update .onion hosts setting? - อัปเดตการตั้งค่าโฮสต์ .onion ไหม? - No comment provided by engineer. - Update database passphrase อัปเดตรหัสผ่านของฐานข้อมูล @@ -6363,9 +6370,8 @@ To connect, please ask your contact to create another connection link and check อัปเดตการตั้งค่าเครือข่ายไหม? No comment provided by engineer. - - Update transport isolation mode? - อัปเดตโหมดการแยกการขนส่งไหม? + + Update settings? No comment provided by engineer. @@ -6373,11 +6379,6 @@ To connect, please ask your contact to create another connection link and check การอัปเดตการตั้งค่าจะเชื่อมต่อไคลเอนต์กับเซิร์ฟเวอร์ทั้งหมดอีกครั้ง No comment provided by engineer. - - Updating this setting will re-connect the client to all servers. - การอัปเดตการตั้งค่านี้จะเชื่อมต่อไคลเอนต์กับเซิร์ฟเวอร์ทั้งหมดอีกครั้ง - No comment provided by engineer. - Upgrade and open chat อัปเกรดและเปิดการแชท @@ -6475,11 +6476,6 @@ To connect, please ask your contact to create another connection link and check User selection No comment provided by engineer. - - Using .onion hosts requires compatible VPN provider. - การใช้โฮสต์ .onion ต้องการผู้ให้บริการ VPN ที่เข้ากันได้ - No comment provided by engineer. - Using SimpleX Chat servers. กำลังใช้เซิร์ฟเวอร์ SimpleX Chat อยู่ @@ -6716,11 +6712,6 @@ To connect, please ask your contact to create another connection link and check XFTP server No comment provided by engineer. - - XFTP servers - เซิร์ฟเวอร์ XFTP - No comment provided by engineer. - You คุณ @@ -6918,6 +6909,14 @@ Repeat connection request? คุณเข้าร่วมกลุ่มนี้แล้ว กำลังเชื่อมต่อเพื่อเชิญสมาชิกกลุ่ม No comment provided by engineer. + + You may migrate the exported database. + No comment provided by engineer. + + + You may save the exported archive. + No comment provided by engineer. + You must use the most recent version of your chat database on one device ONLY, otherwise you may stop receiving the messages from some contacts. คุณต้องใช้ฐานข้อมูลแชทเวอร์ชันล่าสุดบนอุปกรณ์เครื่องเดียวเท่านั้น มิฉะนั้น คุณอาจหยุดได้รับข้อความจากผู้ติดต่อบางคน @@ -7859,8 +7858,8 @@ last received msg: %2$@ ไม่ทราบ connection info - - unknown relays + + unknown servers No comment provided by engineer. 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 2781891aa6..f409d7c2c4 100644 --- a/apps/ios/SimpleX Localizations/tr.xcloc/Localized Contents/tr.xliff +++ b/apps/ios/SimpleX Localizations/tr.xcloc/Localized Contents/tr.xliff @@ -1237,6 +1237,10 @@ Sohbet veritabanı silindi No comment provided by engineer. + + Chat database exported + No comment provided by engineer. + Chat database imported Sohbet veritabanı içe aktarıldı @@ -3912,6 +3916,10 @@ Bu senin grup için bağlantın %@! Maksimum 30 saniye, anında alındı. No comment provided by engineer. + + Media & file servers + No comment provided by engineer. + Medium blur media @@ -3996,14 +4004,8 @@ Bu senin grup için bağlantın %@! Message reception No comment provided by engineer. - - Message routing fallback - Mesaj yönlendirme yedeklemesi - No comment provided by engineer. - - - Message routing mode - Mesaj yönlendirme modu + + Message servers No comment provided by engineer. @@ -4383,14 +4385,18 @@ Bu senin grup için bağlantın %@! Tek zamanlı bağlantı daveti No comment provided by engineer. - - Onion hosts will be required for connection. Requires enabling VPN. - Bağlantı için Onion ana bilgisayarları gerekecektir. VPN'nin etkinleştirilmesi gerekir. + + Onion hosts will be **required** for connection. +Requires compatible VPN. + Bağlantı için Onion ana bilgisayarları gerekecektir. +VPN'nin etkinleştirilmesi gerekir. No comment provided by engineer. - - Onion hosts will be used when available. Requires enabling VPN. - Onion ana bilgisayarları mevcutsa kullanılacaktır. VPN'nin etkinleştirilmesi gerekir. + + Onion hosts will be used when available. +Requires compatible VPN. + Onion ana bilgisayarları mevcutsa kullanılacaktır. +VPN'nin etkinleştirilmesi gerekir. No comment provided by engineer. @@ -5255,11 +5261,6 @@ Enable in *Network & servers* settings. Göster chat item action - - Revert - Geri al - No comment provided by engineer. - Revoke İptal et @@ -5289,11 +5290,6 @@ Enable in *Network & servers* settings. SMP server No comment provided by engineer. - - SMP servers - SMP sunucuları - No comment provided by engineer. - Safely receive files Dosyaları güvenle alın @@ -5324,6 +5320,10 @@ Enable in *Network & servers* settings. Kaydet ve grup üyelerine bildir No comment provided by engineer. + + Save and reconnect + No comment provided by engineer. + Save and update group profile Kaydet ve grup profilini güncelle @@ -5990,11 +5990,19 @@ Enable in *Network & servers* settings. Soft blur media + + Some file(s) were not exported: + No comment provided by engineer. + Some non-fatal errors occurred during import - you may see Chat console for more details. İçe aktarma sırasında bazı ölümcül olmayan hatalar oluştu - daha fazla ayrıntı için Sohbet konsoluna bakabilirsiniz. No comment provided by engineer. + + Some non-fatal errors occurred during import: + No comment provided by engineer. + Somebody Biri @@ -6124,6 +6132,10 @@ Enable in *Network & servers* settings. Sistem yetkilendirilmesi No comment provided by engineer. + + TCP connection + No comment provided by engineer. + TCP connection timeout TCP bağlantı zaman aşımı @@ -6657,11 +6669,6 @@ Bağlanmak için lütfen kişinizden başka bir bağlantı oluşturmasını iste Güncelle No comment provided by engineer. - - Update .onion hosts setting? - .onion ana bilgisayarların ayarı güncellensin mi? - No comment provided by engineer. - Update database passphrase Veritabanı parolasını güncelle @@ -6672,9 +6679,8 @@ Bağlanmak için lütfen kişinizden başka bir bağlantı oluşturmasını iste Bağlantı ayarları güncellensin mi? No comment provided by engineer. - - Update transport isolation mode? - Taşıma izolasyon modu güncellensin mi? + + Update settings? No comment provided by engineer. @@ -6682,11 +6688,6 @@ Bağlanmak için lütfen kişinizden başka bir bağlantı oluşturmasını iste Ayarların güncellenmesi, istemciyi tüm sunuculara yeniden bağlayacaktır. No comment provided by engineer. - - Updating this setting will re-connect the client to all servers. - Bu ayarın güncellenmesi, istemciyi tüm sunuculara yeniden bağlayacaktır. - No comment provided by engineer. - Upgrade and open chat Yükselt ve sohbeti aç @@ -6793,11 +6794,6 @@ Bağlanmak için lütfen kişinizden başka bir bağlantı oluşturmasını iste User selection No comment provided by engineer. - - Using .onion hosts requires compatible VPN provider. - .onion ana bilgisayarlarını kullanmak için uyumlu VPN sağlayıcısı gerekir. - No comment provided by engineer. - Using SimpleX Chat servers. SimpleX Chat sunucuları kullanılıyor. @@ -7054,11 +7050,6 @@ Bağlanmak için lütfen kişinizden başka bir bağlantı oluşturmasını iste XFTP server No comment provided by engineer. - - XFTP servers - XFTP sunucuları - No comment provided by engineer. - You Sen @@ -7272,6 +7263,14 @@ Bağlantı isteği tekrarlansın mı? Bu gruba katıldınız. Davet eden grup üyesine bağlanılıyor. No comment provided by engineer. + + You may migrate the exported database. + No comment provided by engineer. + + + You may save the exported archive. + No comment provided by engineer. + You must use the most recent version of your chat database on one device ONLY, otherwise you may stop receiving the messages from some contacts. Sohbet veritabanınızın en son sürümünü SADECE bir cihazda kullanmalısınız, aksi takdirde bazı kişilerden daha fazla mesaj alamayabilirsiniz. @@ -8245,8 +8244,8 @@ son alınan msj: %2$@ bilinmeyen connection info - - unknown relays + + unknown servers bilinmeyen yönlendiriciler No comment provided by engineer. diff --git a/apps/ios/SimpleX Localizations/uk.xcloc/Localized Contents/uk.xliff b/apps/ios/SimpleX Localizations/uk.xcloc/Localized Contents/uk.xliff index 3d95496a67..82fef1f1bf 100644 --- a/apps/ios/SimpleX Localizations/uk.xcloc/Localized Contents/uk.xliff +++ b/apps/ios/SimpleX Localizations/uk.xcloc/Localized Contents/uk.xliff @@ -1237,6 +1237,10 @@ Видалено базу даних чату No comment provided by engineer. + + Chat database exported + No comment provided by engineer. + Chat database imported Імпорт бази даних чату @@ -3912,6 +3916,10 @@ This is your link for group %@! Максимум 30 секунд, отримується миттєво. No comment provided by engineer. + + Media & file servers + No comment provided by engineer. + Medium blur media @@ -3996,14 +4004,8 @@ This is your link for group %@! Message reception No comment provided by engineer. - - Message routing fallback - Запасний варіант маршрутизації повідомлень - No comment provided by engineer. - - - Message routing mode - Режим маршрутизації повідомлень + + Message servers No comment provided by engineer. @@ -4383,14 +4385,18 @@ This is your link for group %@! Посилання на одноразове запрошення No comment provided by engineer. - - Onion hosts will be required for connection. Requires enabling VPN. - Для підключення будуть потрібні хости onion. Потрібно увімкнути VPN. + + Onion hosts will be **required** for connection. +Requires compatible VPN. + Для підключення будуть потрібні хости onion. +Потрібно увімкнути VPN. No comment provided by engineer. - - Onion hosts will be used when available. Requires enabling VPN. - Onion хости будуть використовуватися, коли вони будуть доступні. Потрібно увімкнути VPN. + + Onion hosts will be used when available. +Requires compatible VPN. + Onion хости будуть використовуватися, коли вони будуть доступні. +Потрібно увімкнути VPN. No comment provided by engineer. @@ -5255,11 +5261,6 @@ Enable in *Network & servers* settings. Показувати chat item action - - Revert - Повернутися - No comment provided by engineer. - Revoke Відкликати @@ -5289,11 +5290,6 @@ Enable in *Network & servers* settings. SMP server No comment provided by engineer. - - SMP servers - Сервери SMP - No comment provided by engineer. - Safely receive files Безпечне отримання файлів @@ -5324,6 +5320,10 @@ Enable in *Network & servers* settings. Зберегти та повідомити учасників групи No comment provided by engineer. + + Save and reconnect + No comment provided by engineer. + Save and update group profile Збереження та оновлення профілю групи @@ -5990,11 +5990,19 @@ Enable in *Network & servers* settings. Soft blur media + + Some file(s) were not exported: + No comment provided by engineer. + Some non-fatal errors occurred during import - you may see Chat console for more details. Під час імпорту виникли деякі нефатальні помилки – ви можете переглянути консоль чату, щоб дізнатися більше. No comment provided by engineer. + + Some non-fatal errors occurred during import: + No comment provided by engineer. + Somebody Хтось @@ -6124,6 +6132,10 @@ Enable in *Network & servers* settings. Автентифікація системи No comment provided by engineer. + + TCP connection + No comment provided by engineer. + TCP connection timeout Тайм-аут TCP-з'єднання @@ -6657,11 +6669,6 @@ To connect, please ask your contact to create another connection link and check Оновлення No comment provided by engineer. - - Update .onion hosts setting? - Оновити налаштування хостів .onion? - No comment provided by engineer. - Update database passphrase Оновити парольну фразу бази даних @@ -6672,9 +6679,8 @@ To connect, please ask your contact to create another connection link and check Оновити налаштування мережі? No comment provided by engineer. - - Update transport isolation mode? - Оновити режим транспортної ізоляції? + + Update settings? No comment provided by engineer. @@ -6682,11 +6688,6 @@ To connect, please ask your contact to create another connection link and check Оновлення налаштувань призведе до перепідключення клієнта до всіх серверів. No comment provided by engineer. - - Updating this setting will re-connect the client to all servers. - Оновлення цього параметра призведе до перепідключення клієнта до всіх серверів. - No comment provided by engineer. - Upgrade and open chat Оновлення та відкритий чат @@ -6793,11 +6794,6 @@ To connect, please ask your contact to create another connection link and check User selection No comment provided by engineer. - - Using .onion hosts requires compatible VPN provider. - Для використання хостів .onion потрібен сумісний VPN-провайдер. - No comment provided by engineer. - Using SimpleX Chat servers. Використання серверів SimpleX Chat. @@ -7054,11 +7050,6 @@ To connect, please ask your contact to create another connection link and check XFTP server No comment provided by engineer. - - XFTP servers - Сервери XFTP - No comment provided by engineer. - You Ти @@ -7272,6 +7263,14 @@ Repeat connection request? Ви приєдналися до цієї групи. Підключення до запрошеного учасника групи. No comment provided by engineer. + + You may migrate the exported database. + No comment provided by engineer. + + + You may save the exported archive. + No comment provided by engineer. + You must use the most recent version of your chat database on one device ONLY, otherwise you may stop receiving the messages from some contacts. Ви повинні використовувати найновішу версію бази даних чату ТІЛЬКИ на одному пристрої, інакше ви можете перестати отримувати повідомлення від деяких контактів. @@ -8245,8 +8244,8 @@ last received msg: %2$@ невідомий connection info - - unknown relays + + unknown servers невідомі реле No comment provided by engineer. diff --git a/apps/ios/SimpleX Localizations/zh-Hans.xcloc/Localized Contents/zh-Hans.xliff b/apps/ios/SimpleX Localizations/zh-Hans.xcloc/Localized Contents/zh-Hans.xliff index 097de15cb3..8ebcf02977 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 @@ -1221,6 +1221,10 @@ 聊天数据库已删除 No comment provided by engineer. + + Chat database exported + No comment provided by engineer. + Chat database imported 聊天数据库已导入 @@ -3861,6 +3865,10 @@ This is your link for group %@! 最长30秒,立即接收。 No comment provided by engineer. + + Media & file servers + No comment provided by engineer. + Medium blur media @@ -3943,12 +3951,8 @@ This is your link for group %@! Message reception No comment provided by engineer. - - Message routing fallback - No comment provided by engineer. - - - Message routing mode + + Message servers No comment provided by engineer. @@ -4324,13 +4328,15 @@ This is your link for group %@! 一次性邀请链接 No comment provided by engineer. - - Onion hosts will be required for connection. Requires enabling VPN. + + Onion hosts will be **required** for connection. +Requires compatible VPN. Onion 主机将用于连接。需要启用 VPN。 No comment provided by engineer. - - Onion hosts will be used when available. Requires enabling VPN. + + Onion hosts will be used when available. +Requires compatible VPN. 当可用时,将使用 Onion 主机。需要启用 VPN。 No comment provided by engineer. @@ -5181,11 +5187,6 @@ Enable in *Network & servers* settings. 揭示 chat item action - - Revert - 恢复 - No comment provided by engineer. - Revoke 撤销 @@ -5215,11 +5216,6 @@ Enable in *Network & servers* settings. SMP server No comment provided by engineer. - - SMP servers - SMP 服务器 - No comment provided by engineer. - Safely receive files No comment provided by engineer. @@ -5249,6 +5245,10 @@ Enable in *Network & servers* settings. 保存并通知群组成员 No comment provided by engineer. + + Save and reconnect + No comment provided by engineer. + Save and update group profile 保存和更新组配置文件 @@ -5909,11 +5909,19 @@ Enable in *Network & servers* settings. Soft blur media + + Some file(s) were not exported: + No comment provided by engineer. + Some non-fatal errors occurred during import - you may see Chat console for more details. 导入过程中发生了一些非致命错误——您可以查看聊天控制台了解更多详细信息。 No comment provided by engineer. + + Some non-fatal errors occurred during import: + No comment provided by engineer. + Somebody 某人 @@ -6043,6 +6051,10 @@ Enable in *Network & servers* settings. 系统验证 No comment provided by engineer. + + TCP connection + No comment provided by engineer. + TCP connection timeout TCP 连接超时 @@ -6572,11 +6584,6 @@ To connect, please ask your contact to create another connection link and check 更新 No comment provided by engineer. - - Update .onion hosts setting? - 更新 .onion 主机设置? - No comment provided by engineer. - Update database passphrase 更新数据库密码 @@ -6587,9 +6594,8 @@ To connect, please ask your contact to create another connection link and check 更新网络设置? No comment provided by engineer. - - Update transport isolation mode? - 更新传输隔离模式? + + Update settings? No comment provided by engineer. @@ -6597,11 +6603,6 @@ To connect, please ask your contact to create another connection link and check 更新设置会将客户端重新连接到所有服务器。 No comment provided by engineer. - - Updating this setting will re-connect the client to all servers. - 更新此设置将重新连接客户端到所有服务器。 - No comment provided by engineer. - Upgrade and open chat 升级并打开聊天 @@ -6705,11 +6706,6 @@ To connect, please ask your contact to create another connection link and check User selection No comment provided by engineer. - - Using .onion hosts requires compatible VPN provider. - 使用 .onion 主机需要兼容的 VPN 提供商。 - No comment provided by engineer. - Using SimpleX Chat servers. 使用 SimpleX Chat 服务器。 @@ -6962,11 +6958,6 @@ To connect, please ask your contact to create another connection link and check XFTP server No comment provided by engineer. - - XFTP servers - XFTP 服务器 - No comment provided by engineer. - You @@ -7171,6 +7162,14 @@ Repeat connection request? 你加入了这个群组。连接到邀请组成员。 No comment provided by engineer. + + You may migrate the exported database. + No comment provided by engineer. + + + You may save the exported archive. + No comment provided by engineer. + You must use the most recent version of your chat database on one device ONLY, otherwise you may stop receiving the messages from some contacts. 您只能在一台设备上使用最新版本的聊天数据库,否则您可能会停止接收来自某些联系人的消息。 @@ -8134,8 +8133,8 @@ last received msg: %2$@ 未知 connection info - - unknown relays + + unknown servers No comment provided by engineer. diff --git a/apps/ios/SimpleXChat/APITypes.swift b/apps/ios/SimpleXChat/APITypes.swift index 17b4c2d6ad..b839804b79 100644 --- a/apps/ios/SimpleXChat/APITypes.swift +++ b/apps/ios/SimpleXChat/APITypes.swift @@ -1325,13 +1325,31 @@ public struct NetCfg: Codable, Equatable, Hashable { smpPingInterval: 1200_000_000 ) - public static let proxyDefaults: NetCfg = NetCfg( + static let proxyDefaults: NetCfg = NetCfg( tcpConnectTimeout: 35_000_000, tcpTimeout: 20_000_000, tcpTimeoutPerKb: 15_000, rcvConcurrency: 8, smpPingInterval: 1200_000_000 ) + + public var withProxyTimeouts: NetCfg { + var cfg = self + cfg.tcpConnectTimeout = NetCfg.proxyDefaults.tcpConnectTimeout + cfg.tcpTimeout = NetCfg.proxyDefaults.tcpTimeout + cfg.tcpTimeoutPerKb = NetCfg.proxyDefaults.tcpTimeoutPerKb + cfg.rcvConcurrency = NetCfg.proxyDefaults.rcvConcurrency + cfg.smpPingInterval = NetCfg.proxyDefaults.smpPingInterval + return cfg + } + + public var hasProxyTimeouts: Bool { + tcpConnectTimeout == NetCfg.proxyDefaults.tcpConnectTimeout && + tcpTimeout == NetCfg.proxyDefaults.tcpTimeout && + tcpTimeoutPerKb == NetCfg.proxyDefaults.tcpTimeoutPerKb && + rcvConcurrency == NetCfg.proxyDefaults.rcvConcurrency && + smpPingInterval == NetCfg.proxyDefaults.smpPingInterval + } public var enableKeepAlive: Bool { tcpKeepAlive != nil } } @@ -1347,16 +1365,16 @@ public enum SocksMode: String, Codable, Hashable { case onion = "onion" } -public enum SMPProxyMode: String, Codable, Hashable { +public enum SMPProxyMode: String, Codable, Hashable, SelectableItem { case always = "always" case unknown = "unknown" case unprotected = "unprotected" case never = "never" - public var text: LocalizedStringKey { + public var label: LocalizedStringKey { switch self { case .always: return "always" - case .unknown: return "unknown relays" + case .unknown: return "unknown servers" case .unprotected: return "unprotected" case .never: return "never" } @@ -1367,12 +1385,12 @@ public enum SMPProxyMode: String, Codable, Hashable { public static let values: [SMPProxyMode] = [.always, .unknown, .unprotected, .never] } -public enum SMPProxyFallback: String, Codable, Hashable { +public enum SMPProxyFallback: String, Codable, Hashable, SelectableItem { case allow = "allow" case allowProtected = "allowProtected" case prohibit = "prohibit" - public var text: LocalizedStringKey { + public var label: LocalizedStringKey { switch self { case .allow: return "yes" case .allowProtected: return "when IP hidden" diff --git a/apps/ios/SimpleXChat/AppGroup.swift b/apps/ios/SimpleXChat/AppGroup.swift index 1690c7bc73..933842e0cb 100644 --- a/apps/ios/SimpleXChat/AppGroup.swift +++ b/apps/ios/SimpleXChat/AppGroup.swift @@ -66,8 +66,8 @@ public func registerGroupDefaults() { GROUP_DEFAULT_NTF_ENABLE_PERIODIC: false, GROUP_DEFAULT_NETWORK_USE_ONION_HOSTS: OnionHosts.no.rawValue, GROUP_DEFAULT_NETWORK_SESSION_MODE: TransportSessionMode.user.rawValue, - GROUP_DEFAULT_NETWORK_SMP_PROXY_MODE: SMPProxyMode.never.rawValue, - GROUP_DEFAULT_NETWORK_SMP_PROXY_FALLBACK: SMPProxyFallback.allow.rawValue, + GROUP_DEFAULT_NETWORK_SMP_PROXY_MODE: SMPProxyMode.unknown.rawValue, + GROUP_DEFAULT_NETWORK_SMP_PROXY_FALLBACK: SMPProxyFallback.allowProtected.rawValue, GROUP_DEFAULT_NETWORK_TCP_CONNECT_TIMEOUT: NetCfg.defaults.tcpConnectTimeout, GROUP_DEFAULT_NETWORK_TCP_TIMEOUT: NetCfg.defaults.tcpTimeout, GROUP_DEFAULT_NETWORK_TCP_TIMEOUT_PER_KB: NetCfg.defaults.tcpTimeoutPerKb, @@ -235,13 +235,13 @@ public let networkSessionModeGroupDefault = EnumDefault( public let networkSMPProxyModeGroupDefault = EnumDefault( defaults: groupDefaults, forKey: GROUP_DEFAULT_NETWORK_SMP_PROXY_MODE, - withDefault: .never + withDefault: .unknown ) public let networkSMPProxyFallbackGroupDefault = EnumDefault( defaults: groupDefaults, forKey: GROUP_DEFAULT_NETWORK_SMP_PROXY_FALLBACK, - withDefault: .allow + withDefault: .allowProtected ) public let storeDBPassphraseGroupDefault = BoolDefault(defaults: groupDefaults, forKey: GROUP_DEFAULT_STORE_DB_PASSPHRASE) diff --git a/apps/ios/bg.lproj/Localizable.strings b/apps/ios/bg.lproj/Localizable.strings index 1e7b7a6314..7ef2237a06 100644 --- a/apps/ios/bg.lproj/Localizable.strings +++ b/apps/ios/bg.lproj/Localizable.strings @@ -641,7 +641,7 @@ /* rcv group event chat item */ "blocked %@" = "блокиран %@"; -/* blocked chat item */ +/* marked deleted chat item preview text */ "blocked by admin" = "блокиран от админ"; /* No comment provided by engineer. */ @@ -2719,10 +2719,10 @@ "One-time invitation link" = "Линк за еднократна покана"; /* No comment provided by engineer. */ -"Onion hosts will be required for connection. Requires enabling VPN." = "За свързване ще са необходими Onion хостове. Изисква се активиране на VPN."; +"Onion hosts will be **required** for connection.\nRequires compatible VPN." = "За свързване ще са **необходими** Onion хостове.\nИзисква се активиране на VPN."; /* No comment provided by engineer. */ -"Onion hosts will be used when available. Requires enabling VPN." = "Ще се използват Onion хостове, когато са налични. Изисква се активиране на VPN."; +"Onion hosts will be used when available.\nRequires compatible VPN." = "Ще се използват Onion хостове, когато са налични.\nИзисква се активиране на VPN."; /* No comment provided by engineer. */ "Onion hosts will not be used." = "Няма се използват Onion хостове."; @@ -3204,9 +3204,6 @@ /* chat item action */ "Reveal" = "Покажи"; -/* No comment provided by engineer. */ -"Revert" = "Отмени промените"; - /* No comment provided by engineer. */ "Revoke" = "Отзови"; @@ -3336,7 +3333,7 @@ /* chat item text */ "security code changed" = "кодът за сигурност е променен"; -/* No comment provided by engineer. */ +/* chat item action */ "Select" = "Избери"; /* No comment provided by engineer. */ @@ -3588,9 +3585,6 @@ /* No comment provided by engineer. */ "Small groups (max 20)" = "Малки групи (максимум 20)"; -/* No comment provided by engineer. */ -"SMP servers" = "SMP сървъри"; - /* No comment provided by engineer. */ "Some non-fatal errors occurred during import - you may see Chat console for more details." = "Някои не-фатални грешки са възникнали по време на импортиране - може да видите конзолата за повече подробности."; @@ -3966,18 +3960,12 @@ /* No comment provided by engineer. */ "Update" = "Актуализация"; -/* No comment provided by engineer. */ -"Update .onion hosts setting?" = "Актуализиране на настройката за .onion хостове?"; - /* No comment provided by engineer. */ "Update database passphrase" = "Актуализирай паролата на базата данни"; /* No comment provided by engineer. */ "Update network settings?" = "Актуализиране на мрежовите настройки?"; -/* No comment provided by engineer. */ -"Update transport isolation mode?" = "Актуализиране на режима на изолация на транспорта?"; - /* rcv group event chat item */ "updated group profile" = "актуализиран профил на групата"; @@ -3987,9 +3975,6 @@ /* No comment provided by engineer. */ "Updating settings will re-connect the client to all servers." = "Актуализирането на настройките ще свърже отново клиента към всички сървъри."; -/* No comment provided by engineer. */ -"Updating this setting will re-connect the client to all servers." = "Актуализирането на тази настройка ще свърже повторно клиента към всички сървъри."; - /* No comment provided by engineer. */ "Upgrade and open chat" = "Актуализирай и отвори чата"; @@ -4038,9 +4023,6 @@ /* No comment provided by engineer. */ "User profile" = "Потребителски профил"; -/* No comment provided by engineer. */ -"Using .onion hosts requires compatible VPN provider." = "Използването на .onion хостове изисква съвместим VPN доставчик."; - /* No comment provided by engineer. */ "Using SimpleX Chat servers." = "Използват се сървърите на SimpleX Chat."; @@ -4209,9 +4191,6 @@ /* No comment provided by engineer. */ "Wrong passphrase!" = "Грешна парола!"; -/* No comment provided by engineer. */ -"XFTP servers" = "XFTP сървъри"; - /* pref value */ "yes" = "да"; diff --git a/apps/ios/cs.lproj/Localizable.strings b/apps/ios/cs.lproj/Localizable.strings index c7f916408f..62d1b541b9 100644 --- a/apps/ios/cs.lproj/Localizable.strings +++ b/apps/ios/cs.lproj/Localizable.strings @@ -2215,10 +2215,10 @@ "One-time invitation link" = "Jednorázový zvací odkaz"; /* No comment provided by engineer. */ -"Onion hosts will be required for connection. Requires enabling VPN." = "Pro připojení budou vyžadováni Onion hostitelé. Vyžaduje povolení sítě VPN."; +"Onion hosts will be **required** for connection.\nRequires compatible VPN." = "Pro připojení budou vyžadováni Onion hostitelé.\nVyžaduje povolení sítě VPN."; /* No comment provided by engineer. */ -"Onion hosts will be used when available. Requires enabling VPN." = "Onion hostitelé budou použiti, pokud jsou k dispozici. Vyžaduje povolení sítě VPN."; +"Onion hosts will be used when available.\nRequires compatible VPN." = "Onion hostitelé budou použiti, pokud jsou k dispozici.\nVyžaduje povolení sítě VPN."; /* No comment provided by engineer. */ "Onion hosts will not be used." = "Onion hostitelé nebudou použiti."; @@ -2595,9 +2595,6 @@ /* chat item action */ "Reveal" = "Odhalit"; -/* No comment provided by engineer. */ -"Revert" = "Vrátit"; - /* No comment provided by engineer. */ "Revoke" = "Odvolat"; @@ -2700,7 +2697,7 @@ /* chat item text */ "security code changed" = "bezpečnostní kód změněn"; -/* No comment provided by engineer. */ +/* chat item action */ "Select" = "Vybrat"; /* No comment provided by engineer. */ @@ -2922,9 +2919,6 @@ /* No comment provided by engineer. */ "Small groups (max 20)" = "Malé skupiny (max. 20)"; -/* No comment provided by engineer. */ -"SMP servers" = "SMP servery"; - /* No comment provided by engineer. */ "Some non-fatal errors occurred during import - you may see Chat console for more details." = "Během importu došlo k nezávažným chybám - podrobnosti naleznete v chat konzoli."; @@ -3216,27 +3210,18 @@ /* No comment provided by engineer. */ "Update" = "Aktualizovat"; -/* No comment provided by engineer. */ -"Update .onion hosts setting?" = "Aktualizovat nastavení hostitelů .onion?"; - /* No comment provided by engineer. */ "Update database passphrase" = "Aktualizovat přístupovou frázi databáze"; /* No comment provided by engineer. */ "Update network settings?" = "Aktualizovat nastavení sítě?"; -/* No comment provided by engineer. */ -"Update transport isolation mode?" = "Aktualizovat režim dopravní izolace?"; - /* rcv group event chat item */ "updated group profile" = "aktualizoval profil skupiny"; /* No comment provided by engineer. */ "Updating settings will re-connect the client to all servers." = "Aktualizací nastavení se klient znovu připojí ke všem serverům."; -/* No comment provided by engineer. */ -"Updating this setting will re-connect the client to all servers." = "Aktualizace tohoto nastavení znovu připojí klienta ke všem serverům."; - /* No comment provided by engineer. */ "Upgrade and open chat" = "Zvýšit a otevřít chat"; @@ -3270,9 +3255,6 @@ /* No comment provided by engineer. */ "User profile" = "Profil uživatele"; -/* No comment provided by engineer. */ -"Using .onion hosts requires compatible VPN provider." = "Použití hostitelů .onion vyžaduje kompatibilního poskytovatele VPN."; - /* No comment provided by engineer. */ "Using SimpleX Chat servers." = "Používat servery SimpleX Chat."; @@ -3387,9 +3369,6 @@ /* No comment provided by engineer. */ "Wrong passphrase!" = "Špatná přístupová fráze!"; -/* No comment provided by engineer. */ -"XFTP servers" = "XFTP servery"; - /* pref value */ "yes" = "ano"; diff --git a/apps/ios/de.lproj/Localizable.strings b/apps/ios/de.lproj/Localizable.strings index b410f63f4c..40dec857b0 100644 --- a/apps/ios/de.lproj/Localizable.strings +++ b/apps/ios/de.lproj/Localizable.strings @@ -689,7 +689,7 @@ /* rcv group event chat item */ "blocked %@" = "%@ wurde blockiert"; -/* blocked chat item */ +/* marked deleted chat item preview text */ "blocked by admin" = "wurde vom Administrator blockiert"; /* No comment provided by engineer. */ @@ -2698,12 +2698,6 @@ /* No comment provided by engineer. */ "Message reception" = "Nachrichtenempfang"; -/* No comment provided by engineer. */ -"Message routing fallback" = "Fallback für das Nachrichten-Routing"; - -/* No comment provided by engineer. */ -"Message routing mode" = "Modus für das Nachrichten-Routing"; - /* No comment provided by engineer. */ "Message source remains private." = "Die Nachrichtenquelle bleibt privat."; @@ -2977,10 +2971,10 @@ "One-time invitation link" = "Einmal-Einladungslink"; /* No comment provided by engineer. */ -"Onion hosts will be required for connection. Requires enabling VPN." = "Für diese Verbindung werden Onion-Hosts benötigt. Dies erfordert die Aktivierung eines VPNs."; +"Onion hosts will be **required** for connection.\nRequires compatible VPN." = "Für diese Verbindung werden Onion-Hosts benötigt.\nDies erfordert die Aktivierung eines VPNs."; /* No comment provided by engineer. */ -"Onion hosts will be used when available. Requires enabling VPN." = "Wenn Onion-Hosts verfügbar sind, werden sie verwendet. Dies erfordert die Aktivierung eines VPNs."; +"Onion hosts will be used when available.\nRequires compatible VPN." = "Wenn Onion-Hosts verfügbar sind, werden sie verwendet.\nDies erfordert die Aktivierung eines VPNs."; /* No comment provided by engineer. */ "Onion hosts will not be used." = "Onion-Hosts werden nicht verwendet."; @@ -3552,9 +3546,6 @@ /* chat item action */ "Reveal" = "Aufdecken"; -/* No comment provided by engineer. */ -"Revert" = "Zurückkehren"; - /* No comment provided by engineer. */ "Revoke" = "Widerrufen"; @@ -3699,7 +3690,7 @@ /* chat item text */ "security code changed" = "Sicherheitscode wurde geändert"; -/* No comment provided by engineer. */ +/* chat item action */ "Select" = "Auswählen"; /* No comment provided by engineer. */ @@ -4026,9 +4017,6 @@ /* No comment provided by engineer. */ "SMP server" = "SMP-Server"; -/* No comment provided by engineer. */ -"SMP servers" = "SMP-Server"; - /* No comment provided by engineer. */ "Some non-fatal errors occurred during import - you may see Chat console for more details." = "Während des Imports sind einige nicht schwerwiegende Fehler aufgetreten - in der Chat-Konsole finden Sie weitere Einzelheiten."; @@ -4411,7 +4399,7 @@ "Unknown error" = "Unbekannter Fehler"; /* No comment provided by engineer. */ -"unknown relays" = "Unbekannte Relais"; +"unknown servers" = "Unbekannte Relais"; /* No comment provided by engineer. */ "Unknown servers!" = "Unbekannte Server!"; @@ -4452,18 +4440,12 @@ /* No comment provided by engineer. */ "Update" = "Aktualisieren"; -/* No comment provided by engineer. */ -"Update .onion hosts setting?" = "Einstellung für .onion-Hosts aktualisieren?"; - /* No comment provided by engineer. */ "Update database passphrase" = "Datenbank-Passwort aktualisieren"; /* No comment provided by engineer. */ "Update network settings?" = "Netzwerkeinstellungen aktualisieren?"; -/* No comment provided by engineer. */ -"Update transport isolation mode?" = "Transport-Isolations-Modus aktualisieren?"; - /* rcv group event chat item */ "updated group profile" = "Aktualisiertes Gruppenprofil"; @@ -4473,9 +4455,6 @@ /* No comment provided by engineer. */ "Updating settings will re-connect the client to all servers." = "Die Aktualisierung der Einstellungen wird den Client wieder mit allen Servern verbinden."; -/* No comment provided by engineer. */ -"Updating this setting will re-connect the client to all servers." = "Die Aktualisierung dieser Einstellung wird den Client wieder mit allen Servern verbinden."; - /* No comment provided by engineer. */ "Upgrade and open chat" = "Aktualisieren und den Chat öffnen"; @@ -4542,9 +4521,6 @@ /* No comment provided by engineer. */ "User selection" = "Benutzer-Auswahl"; -/* No comment provided by engineer. */ -"Using .onion hosts requires compatible VPN provider." = "Für die Nutzung von .onion-Hosts sind kompatible VPN-Anbieter erforderlich."; - /* No comment provided by engineer. */ "Using SimpleX Chat servers." = "Verwendung von SimpleX-Chat-Servern."; @@ -4737,9 +4713,6 @@ /* No comment provided by engineer. */ "XFTP server" = "XFTP-Server"; -/* No comment provided by engineer. */ -"XFTP servers" = "XFTP-Server"; - /* pref value */ "yes" = "Ja"; diff --git a/apps/ios/es.lproj/Localizable.strings b/apps/ios/es.lproj/Localizable.strings index a84f8c0433..9b48f56617 100644 --- a/apps/ios/es.lproj/Localizable.strings +++ b/apps/ios/es.lproj/Localizable.strings @@ -689,7 +689,7 @@ /* rcv group event chat item */ "blocked %@" = "ha bloqueado a %@"; -/* blocked chat item */ +/* marked deleted chat item preview text */ "blocked by admin" = "bloqueado por administrador"; /* No comment provided by engineer. */ @@ -2698,12 +2698,6 @@ /* No comment provided by engineer. */ "Message reception" = "Recepción de mensaje"; -/* No comment provided by engineer. */ -"Message routing fallback" = "Enrutamiento de mensajes alternativo"; - -/* No comment provided by engineer. */ -"Message routing mode" = "Modo de enrutamiento de mensajes"; - /* No comment provided by engineer. */ "Message source remains private." = "El autor del mensaje se mantiene privado."; @@ -2977,10 +2971,10 @@ "One-time invitation link" = "Enlace de invitación de un solo uso"; /* No comment provided by engineer. */ -"Onion hosts will be required for connection. Requires enabling VPN." = "Se requieren hosts .onion para la conexión. Requiere activación de la VPN."; +"Onion hosts will be **required** for connection.\nRequires compatible VPN." = "Se **requieren** hosts .onion para la conexión.\nRequiere activación de la VPN."; /* No comment provided by engineer. */ -"Onion hosts will be used when available. Requires enabling VPN." = "Se usarán hosts .onion si están disponibles. Requiere activación de la VPN."; +"Onion hosts will be used when available.\nRequires compatible VPN." = "Se usarán hosts .onion si están disponibles.\nRequiere activación de la VPN."; /* No comment provided by engineer. */ "Onion hosts will not be used." = "No se usarán hosts .onion."; @@ -3552,9 +3546,6 @@ /* chat item action */ "Reveal" = "Revelar"; -/* No comment provided by engineer. */ -"Revert" = "Revertir"; - /* No comment provided by engineer. */ "Revoke" = "Revocar"; @@ -3699,7 +3690,7 @@ /* chat item text */ "security code changed" = "código de seguridad cambiado"; -/* No comment provided by engineer. */ +/* chat item action */ "Select" = "Seleccionar"; /* No comment provided by engineer. */ @@ -4026,9 +4017,6 @@ /* No comment provided by engineer. */ "SMP server" = "Servidor SMP"; -/* No comment provided by engineer. */ -"SMP servers" = "Servidores SMP"; - /* No comment provided by engineer. */ "Some non-fatal errors occurred during import - you may see Chat console for more details." = "Algunos errores no críticos ocurrieron durante la importación - para más detalles puedes ver la consola de Chat."; @@ -4411,7 +4399,7 @@ "Unknown error" = "Error desconocido"; /* No comment provided by engineer. */ -"unknown relays" = "con servidores desconocidos"; +"unknown servers" = "con servidores desconocidos"; /* No comment provided by engineer. */ "Unknown servers!" = "¡Servidores desconocidos!"; @@ -4452,18 +4440,12 @@ /* No comment provided by engineer. */ "Update" = "Actualizar"; -/* No comment provided by engineer. */ -"Update .onion hosts setting?" = "¿Actualizar la configuración de los hosts .onion?"; - /* No comment provided by engineer. */ "Update database passphrase" = "Actualizar contraseña de la base de datos"; /* No comment provided by engineer. */ "Update network settings?" = "¿Actualizar la configuración de red?"; -/* No comment provided by engineer. */ -"Update transport isolation mode?" = "¿Actualizar el modo de aislamiento de transporte?"; - /* rcv group event chat item */ "updated group profile" = "ha actualizado el perfil del grupo"; @@ -4473,9 +4455,6 @@ /* No comment provided by engineer. */ "Updating settings will re-connect the client to all servers." = "Al actualizar la configuración el cliente se reconectará a todos los servidores."; -/* No comment provided by engineer. */ -"Updating this setting will re-connect the client to all servers." = "Al actualizar esta configuración el cliente se reconectará a todos los servidores."; - /* No comment provided by engineer. */ "Upgrade and open chat" = "Actualizar y abrir Chat"; @@ -4542,9 +4521,6 @@ /* No comment provided by engineer. */ "User selection" = "Selección de usuarios"; -/* No comment provided by engineer. */ -"Using .onion hosts requires compatible VPN provider." = "Usar hosts .onion requiere un proveedor VPN compatible."; - /* No comment provided by engineer. */ "Using SimpleX Chat servers." = "Usar servidores SimpleX Chat."; @@ -4737,9 +4713,6 @@ /* No comment provided by engineer. */ "XFTP server" = "Servidor XFTP"; -/* No comment provided by engineer. */ -"XFTP servers" = "Servidores XFTP"; - /* pref value */ "yes" = "sí"; diff --git a/apps/ios/fi.lproj/Localizable.strings b/apps/ios/fi.lproj/Localizable.strings index b9ea0024c5..905a9a1f8f 100644 --- a/apps/ios/fi.lproj/Localizable.strings +++ b/apps/ios/fi.lproj/Localizable.strings @@ -2188,10 +2188,10 @@ "One-time invitation link" = "Kertakutsulinkki"; /* No comment provided by engineer. */ -"Onion hosts will be required for connection. Requires enabling VPN." = "Yhteyden muodostamiseen tarvitaan Onion-isäntiä. Edellyttää VPN:n sallimista."; +"Onion hosts will be **required** for connection.\nRequires compatible VPN." = "Yhteyden muodostamiseen tarvitaan Onion-isäntiä.\nEdellyttää VPN:n sallimista."; /* No comment provided by engineer. */ -"Onion hosts will be used when available. Requires enabling VPN." = "Onion-isäntiä käytetään, kun niitä on saatavilla. Edellyttää VPN:n sallimista."; +"Onion hosts will be used when available.\nRequires compatible VPN." = "Onion-isäntiä käytetään, kun niitä on saatavilla.\nEdellyttää VPN:n sallimista."; /* No comment provided by engineer. */ "Onion hosts will not be used." = "Onion-isäntiä ei käytetä."; @@ -2565,9 +2565,6 @@ /* chat item action */ "Reveal" = "Paljasta"; -/* No comment provided by engineer. */ -"Revert" = "Palauta"; - /* No comment provided by engineer. */ "Revoke" = "Peruuta"; @@ -2670,7 +2667,7 @@ /* chat item text */ "security code changed" = "turvakoodi on muuttunut"; -/* No comment provided by engineer. */ +/* chat item action */ "Select" = "Valitse"; /* No comment provided by engineer. */ @@ -2883,9 +2880,6 @@ /* No comment provided by engineer. */ "Small groups (max 20)" = "Pienryhmät (max 20)"; -/* No comment provided by engineer. */ -"SMP servers" = "SMP-palvelimet"; - /* No comment provided by engineer. */ "Some non-fatal errors occurred during import - you may see Chat console for more details." = "Tuonnin aikana tapahtui joitakin ei-vakavia virheitä – saatat nähdä Chat-konsolissa lisätietoja."; @@ -3174,27 +3168,18 @@ /* No comment provided by engineer. */ "Update" = "Päivitä"; -/* No comment provided by engineer. */ -"Update .onion hosts setting?" = "Päivitä .onion-isäntien asetus?"; - /* No comment provided by engineer. */ "Update database passphrase" = "Päivitä tietokannan tunnuslause"; /* No comment provided by engineer. */ "Update network settings?" = "Päivitä verkkoasetukset?"; -/* No comment provided by engineer. */ -"Update transport isolation mode?" = "Päivitä kuljetuksen eristystila?"; - /* rcv group event chat item */ "updated group profile" = "päivitetty ryhmäprofiili"; /* No comment provided by engineer. */ "Updating settings will re-connect the client to all servers." = "Asetusten päivittäminen yhdistää asiakkaan uudelleen kaikkiin palvelimiin."; -/* No comment provided by engineer. */ -"Updating this setting will re-connect the client to all servers." = "Tämän asetuksen päivittäminen yhdistää asiakkaan uudelleen kaikkiin palvelimiin."; - /* No comment provided by engineer. */ "Upgrade and open chat" = "Päivitä ja avaa keskustelu"; @@ -3228,9 +3213,6 @@ /* No comment provided by engineer. */ "User profile" = "Käyttäjäprofiili"; -/* No comment provided by engineer. */ -"Using .onion hosts requires compatible VPN provider." = ".onion-isäntien käyttäminen vaatii yhteensopivan VPN-palveluntarjoajan."; - /* No comment provided by engineer. */ "Using SimpleX Chat servers." = "Käyttää SimpleX Chat -palvelimia."; @@ -3345,9 +3327,6 @@ /* No comment provided by engineer. */ "Wrong passphrase!" = "Väärä tunnuslause!"; -/* No comment provided by engineer. */ -"XFTP servers" = "XFTP-palvelimet"; - /* pref value */ "yes" = "kyllä"; diff --git a/apps/ios/fr.lproj/Localizable.strings b/apps/ios/fr.lproj/Localizable.strings index 272c3bb410..7743e491bb 100644 --- a/apps/ios/fr.lproj/Localizable.strings +++ b/apps/ios/fr.lproj/Localizable.strings @@ -689,7 +689,7 @@ /* rcv group event chat item */ "blocked %@" = "%@ bloqué"; -/* blocked chat item */ +/* marked deleted chat item preview text */ "blocked by admin" = "bloqué par l'administrateur"; /* No comment provided by engineer. */ @@ -2698,12 +2698,6 @@ /* No comment provided by engineer. */ "Message reception" = "Réception de message"; -/* No comment provided by engineer. */ -"Message routing fallback" = "Rabattement du routage des messages"; - -/* No comment provided by engineer. */ -"Message routing mode" = "Mode de routage des messages"; - /* No comment provided by engineer. */ "Message source remains private." = "La source du message reste privée."; @@ -2977,10 +2971,10 @@ "One-time invitation link" = "Lien d'invitation unique"; /* No comment provided by engineer. */ -"Onion hosts will be required for connection. Requires enabling VPN." = "Les hôtes .onion seront nécessaires pour la connexion. Nécessite l'activation d'un VPN."; +"Onion hosts will be **required** for connection.\nRequires compatible VPN." = "Les hôtes .onion seront **nécessaires** pour la connexion.\nNécessite l'activation d'un VPN."; /* No comment provided by engineer. */ -"Onion hosts will be used when available. Requires enabling VPN." = "Les hôtes .onion seront utilisés dès que possible. Nécessite l'activation d'un VPN."; +"Onion hosts will be used when available.\nRequires compatible VPN." = "Les hôtes .onion seront utilisés dès que possible.\nNécessite l'activation d'un VPN."; /* No comment provided by engineer. */ "Onion hosts will not be used." = "Les hôtes .onion ne seront pas utilisés."; @@ -3552,9 +3546,6 @@ /* chat item action */ "Reveal" = "Révéler"; -/* No comment provided by engineer. */ -"Revert" = "Revenir en arrière"; - /* No comment provided by engineer. */ "Revoke" = "Révoquer"; @@ -3699,7 +3690,7 @@ /* chat item text */ "security code changed" = "code de sécurité modifié"; -/* No comment provided by engineer. */ +/* chat item action */ "Select" = "Choisir"; /* No comment provided by engineer. */ @@ -4023,9 +4014,6 @@ /* No comment provided by engineer. */ "SMP server" = "Serveur SMP"; -/* No comment provided by engineer. */ -"SMP servers" = "Serveurs SMP"; - /* No comment provided by engineer. */ "Some non-fatal errors occurred during import - you may see Chat console for more details." = "Des erreurs non fatales se sont produites lors de l'importation - vous pouvez consulter la console de chat pour plus de détails."; @@ -4408,7 +4396,7 @@ "Unknown error" = "Erreur inconnue"; /* No comment provided by engineer. */ -"unknown relays" = "relais inconnus"; +"unknown servers" = "relais inconnus"; /* No comment provided by engineer. */ "Unknown servers!" = "Serveurs inconnus !"; @@ -4449,18 +4437,12 @@ /* No comment provided by engineer. */ "Update" = "Mise à jour"; -/* No comment provided by engineer. */ -"Update .onion hosts setting?" = "Mettre à jour le paramètre des hôtes .onion ?"; - /* No comment provided by engineer. */ "Update database passphrase" = "Mise à jour de la phrase secrète de la base de données"; /* No comment provided by engineer. */ "Update network settings?" = "Mettre à jour les paramètres réseau ?"; -/* No comment provided by engineer. */ -"Update transport isolation mode?" = "Mettre à jour le mode d'isolement du transport ?"; - /* rcv group event chat item */ "updated group profile" = "mise à jour du profil de groupe"; @@ -4470,9 +4452,6 @@ /* No comment provided by engineer. */ "Updating settings will re-connect the client to all servers." = "La mise à jour des ces paramètres reconnectera le client à tous les serveurs."; -/* No comment provided by engineer. */ -"Updating this setting will re-connect the client to all servers." = "La mise à jour de ce paramètre reconnectera le client à tous les serveurs."; - /* No comment provided by engineer. */ "Upgrade and open chat" = "Mettre à niveau et ouvrir le chat"; @@ -4539,9 +4518,6 @@ /* No comment provided by engineer. */ "User selection" = "Sélection de l'utilisateur"; -/* No comment provided by engineer. */ -"Using .onion hosts requires compatible VPN provider." = "L'utilisation des hôtes .onion nécessite un fournisseur VPN compatible."; - /* No comment provided by engineer. */ "Using SimpleX Chat servers." = "Vous utilisez les serveurs SimpleX."; @@ -4734,9 +4710,6 @@ /* No comment provided by engineer. */ "XFTP server" = "Serveur XFTP"; -/* No comment provided by engineer. */ -"XFTP servers" = "Serveurs XFTP"; - /* pref value */ "yes" = "oui"; diff --git a/apps/ios/hu.lproj/Localizable.strings b/apps/ios/hu.lproj/Localizable.strings index 3027e1df3f..138da70f61 100644 --- a/apps/ios/hu.lproj/Localizable.strings +++ b/apps/ios/hu.lproj/Localizable.strings @@ -689,7 +689,7 @@ /* rcv group event chat item */ "blocked %@" = "letiltotta őt: %@"; -/* blocked chat item */ +/* marked deleted chat item preview text */ "blocked by admin" = "letiltva az admin által"; /* No comment provided by engineer. */ @@ -2698,12 +2698,6 @@ /* No comment provided by engineer. */ "Message reception" = "Üzenetjelentés"; -/* No comment provided by engineer. */ -"Message routing fallback" = "Üzenet útválasztási tartalék"; - -/* No comment provided by engineer. */ -"Message routing mode" = "Üzenet útválasztási mód"; - /* No comment provided by engineer. */ "Message source remains private." = "Az üzenet forrása titokban marad."; @@ -2977,10 +2971,10 @@ "One-time invitation link" = "Egyszer használatos meghívó hivatkozás"; /* No comment provided by engineer. */ -"Onion hosts will be required for connection. Requires enabling VPN." = "A kapcsolódáshoz Onion kiszolgálókra lesz szükség. VPN engedélyezése szükséges."; +"Onion hosts will be **required** for connection.\nRequires compatible VPN." = "A kapcsolódáshoz Onion kiszolgálókra lesz szükség.\nVPN engedélyezése szükséges."; /* No comment provided by engineer. */ -"Onion hosts will be used when available. Requires enabling VPN." = "Onion kiszolgálók használata, ha azok rendelkezésre állnak. VPN engedélyezése szükséges."; +"Onion hosts will be used when available.\nRequires compatible VPN." = "Onion kiszolgálók használata, ha azok rendelkezésre állnak.\nVPN engedélyezése szükséges."; /* No comment provided by engineer. */ "Onion hosts will not be used." = "Onion kiszolgálók nem lesznek használva."; @@ -3552,9 +3546,6 @@ /* chat item action */ "Reveal" = "Felfedés"; -/* No comment provided by engineer. */ -"Revert" = "Visszaállítás"; - /* No comment provided by engineer. */ "Revoke" = "Visszavonás"; @@ -3699,7 +3690,7 @@ /* chat item text */ "security code changed" = "a biztonsági kód megváltozott"; -/* No comment provided by engineer. */ +/* chat item action */ "Select" = "Választás"; /* No comment provided by engineer. */ @@ -4026,9 +4017,6 @@ /* No comment provided by engineer. */ "SMP server" = "SMP-kiszolgáló"; -/* No comment provided by engineer. */ -"SMP servers" = "SMP kiszolgálók"; - /* No comment provided by engineer. */ "Some non-fatal errors occurred during import - you may see Chat console for more details." = "Néhány nem végzetes hiba történt az importálás során – további részletekért a csevegési konzolban olvashat."; @@ -4411,7 +4399,7 @@ "Unknown error" = "Ismeretlen hiba"; /* No comment provided by engineer. */ -"unknown relays" = "ismeretlen átjátszók"; +"unknown servers" = "ismeretlen átjátszók"; /* No comment provided by engineer. */ "Unknown servers!" = "Ismeretlen kiszolgálók!"; @@ -4452,18 +4440,12 @@ /* No comment provided by engineer. */ "Update" = "Frissítés"; -/* No comment provided by engineer. */ -"Update .onion hosts setting?" = "Tor .onion kiszolgálók beállításainak frissítése?"; - /* No comment provided by engineer. */ "Update database passphrase" = "Adatbázis jelmondat megváltoztatása"; /* No comment provided by engineer. */ "Update network settings?" = "Hálózati beállítások megváltoztatása?"; -/* No comment provided by engineer. */ -"Update transport isolation mode?" = "Kapcsolat izolációs mód frissítése?"; - /* rcv group event chat item */ "updated group profile" = "frissítette a csoport profilját"; @@ -4473,9 +4455,6 @@ /* No comment provided by engineer. */ "Updating settings will re-connect the client to all servers." = "A beállítások frissítése a kiszolgálókhoz való újra kapcsolódással jár."; -/* No comment provided by engineer. */ -"Updating this setting will re-connect the client to all servers." = "A beállítás frissítésével a kliens újrakapcsolódik az összes kiszolgálóhoz."; - /* No comment provided by engineer. */ "Upgrade and open chat" = "A csevegés frissítése és megnyitása"; @@ -4542,9 +4521,6 @@ /* No comment provided by engineer. */ "User selection" = "Felhasználó kiválasztása"; -/* No comment provided by engineer. */ -"Using .onion hosts requires compatible VPN provider." = "A .onion kiszolgálók használatához kompatibilis VPN szolgáltatóra van szükség."; - /* No comment provided by engineer. */ "Using SimpleX Chat servers." = "SimpleX Chat kiszolgálók használatban."; @@ -4737,9 +4713,6 @@ /* No comment provided by engineer. */ "XFTP server" = "XFTP-kiszolgáló"; -/* No comment provided by engineer. */ -"XFTP servers" = "XFTP kiszolgálók"; - /* pref value */ "yes" = "igen"; diff --git a/apps/ios/it.lproj/Localizable.strings b/apps/ios/it.lproj/Localizable.strings index 5854d28162..f2e8f4fc21 100644 --- a/apps/ios/it.lproj/Localizable.strings +++ b/apps/ios/it.lproj/Localizable.strings @@ -689,7 +689,7 @@ /* rcv group event chat item */ "blocked %@" = "ha bloccato %@"; -/* blocked chat item */ +/* marked deleted chat item preview text */ "blocked by admin" = "bloccato dall'amministratore"; /* No comment provided by engineer. */ @@ -2698,12 +2698,6 @@ /* No comment provided by engineer. */ "Message reception" = "Ricezione messaggi"; -/* No comment provided by engineer. */ -"Message routing fallback" = "Ripiego instradamento messaggio"; - -/* No comment provided by engineer. */ -"Message routing mode" = "Modalità instradamento messaggio"; - /* No comment provided by engineer. */ "Message source remains private." = "La fonte del messaggio resta privata."; @@ -2977,10 +2971,10 @@ "One-time invitation link" = "Link di invito una tantum"; /* No comment provided by engineer. */ -"Onion hosts will be required for connection. Requires enabling VPN." = "Gli host Onion saranno necessari per la connessione. Richiede l'attivazione della VPN."; +"Onion hosts will be **required** for connection.\nRequires compatible VPN." = "Gli host Onion saranno **necessari** per la connessione.\nRichiede l'attivazione della VPN."; /* No comment provided by engineer. */ -"Onion hosts will be used when available. Requires enabling VPN." = "Gli host Onion verranno usati quando disponibili. Richiede l'attivazione della VPN."; +"Onion hosts will be used when available.\nRequires compatible VPN." = "Gli host Onion verranno usati quando disponibili.\nRichiede l'attivazione della VPN."; /* No comment provided by engineer. */ "Onion hosts will not be used." = "Gli host Onion non verranno usati."; @@ -3552,9 +3546,6 @@ /* chat item action */ "Reveal" = "Rivela"; -/* No comment provided by engineer. */ -"Revert" = "Ripristina"; - /* No comment provided by engineer. */ "Revoke" = "Revoca"; @@ -3699,7 +3690,7 @@ /* chat item text */ "security code changed" = "codice di sicurezza modificato"; -/* No comment provided by engineer. */ +/* chat item action */ "Select" = "Seleziona"; /* No comment provided by engineer. */ @@ -4026,9 +4017,6 @@ /* No comment provided by engineer. */ "SMP server" = "Server SMP"; -/* No comment provided by engineer. */ -"SMP servers" = "Server SMP"; - /* No comment provided by engineer. */ "Some non-fatal errors occurred during import - you may see Chat console for more details." = "Si sono verificati alcuni errori non gravi durante l'importazione: vedi la console della chat per i dettagli."; @@ -4411,7 +4399,7 @@ "Unknown error" = "Errore sconosciuto"; /* No comment provided by engineer. */ -"unknown relays" = "relay sconosciuti"; +"unknown servers" = "relay sconosciuti"; /* No comment provided by engineer. */ "Unknown servers!" = "Server sconosciuti!"; @@ -4452,18 +4440,12 @@ /* No comment provided by engineer. */ "Update" = "Aggiorna"; -/* No comment provided by engineer. */ -"Update .onion hosts setting?" = "Aggiornare l'impostazione degli host .onion?"; - /* No comment provided by engineer. */ "Update database passphrase" = "Aggiorna la password del database"; /* No comment provided by engineer. */ "Update network settings?" = "Aggiornare le impostazioni di rete?"; -/* No comment provided by engineer. */ -"Update transport isolation mode?" = "Aggiornare la modalità di isolamento del trasporto?"; - /* rcv group event chat item */ "updated group profile" = "ha aggiornato il profilo del gruppo"; @@ -4473,9 +4455,6 @@ /* No comment provided by engineer. */ "Updating settings will re-connect the client to all servers." = "L'aggiornamento delle impostazioni riconnetterà il client a tutti i server."; -/* No comment provided by engineer. */ -"Updating this setting will re-connect the client to all servers." = "L'aggiornamento di questa impostazione riconnetterà il client a tutti i server."; - /* No comment provided by engineer. */ "Upgrade and open chat" = "Aggiorna e apri chat"; @@ -4542,9 +4521,6 @@ /* No comment provided by engineer. */ "User selection" = "Selezione utente"; -/* No comment provided by engineer. */ -"Using .onion hosts requires compatible VPN provider." = "L'uso di host .onion richiede un fornitore di VPN compatibile."; - /* No comment provided by engineer. */ "Using SimpleX Chat servers." = "Utilizzo dei server SimpleX Chat."; @@ -4737,9 +4713,6 @@ /* No comment provided by engineer. */ "XFTP server" = "Server XFTP"; -/* No comment provided by engineer. */ -"XFTP servers" = "Server XFTP"; - /* pref value */ "yes" = "sì"; diff --git a/apps/ios/ja.lproj/Localizable.strings b/apps/ios/ja.lproj/Localizable.strings index 7c8897e6cb..7a9483cea5 100644 --- a/apps/ios/ja.lproj/Localizable.strings +++ b/apps/ios/ja.lproj/Localizable.strings @@ -2263,10 +2263,10 @@ "One-time invitation link" = "使い捨ての招待リンク"; /* No comment provided by engineer. */ -"Onion hosts will be required for connection. Requires enabling VPN." = "接続にオニオンのホストが必要となります。VPN を有効にする必要があります。"; +"Onion hosts will be **required** for connection.\nRequires compatible VPN." = "接続にオニオンのホストが必要となります。\nVPN を有効にする必要があります。"; /* No comment provided by engineer. */ -"Onion hosts will be used when available. Requires enabling VPN." = "オニオンのホストが利用可能時に使われます。VPN を有効にする必要があります。"; +"Onion hosts will be used when available.\nRequires compatible VPN." = "オニオンのホストが利用可能時に使われます。\nVPN を有効にする必要があります。"; /* No comment provided by engineer. */ "Onion hosts will not be used." = "オニオンのホストが使われません。"; @@ -2640,9 +2640,6 @@ /* chat item action */ "Reveal" = "開示する"; -/* No comment provided by engineer. */ -"Revert" = "元に戻す"; - /* No comment provided by engineer. */ "Revoke" = "取り消す"; @@ -2745,7 +2742,7 @@ /* chat item text */ "security code changed" = "セキュリティコードが変更されました"; -/* No comment provided by engineer. */ +/* chat item action */ "Select" = "選択"; /* No comment provided by engineer. */ @@ -2940,9 +2937,6 @@ /* No comment provided by engineer. */ "Small groups (max 20)" = "小グループ(最大20名)"; -/* No comment provided by engineer. */ -"SMP servers" = "SMPサーバ"; - /* No comment provided by engineer. */ "Some non-fatal errors occurred during import - you may see Chat console for more details." = "インポート中に致命的でないエラーが発生しました - 詳細はチャットコンソールを参照してください。"; @@ -3228,27 +3222,18 @@ /* No comment provided by engineer. */ "Update" = "更新"; -/* No comment provided by engineer. */ -"Update .onion hosts setting?" = ".onionのホスト設定を更新しますか?"; - /* No comment provided by engineer. */ "Update database passphrase" = "データベースのパスフレーズを更新"; /* No comment provided by engineer. */ "Update network settings?" = "ネットワーク設定を更新しますか?"; -/* No comment provided by engineer. */ -"Update transport isolation mode?" = "トランスポート隔離モードを更新しますか?"; - /* rcv group event chat item */ "updated group profile" = "グループプロフィールを更新しました"; /* No comment provided by engineer. */ "Updating settings will re-connect the client to all servers." = "設定を更新すると、全サーバにクライントの再接続が行われます。"; -/* No comment provided by engineer. */ -"Updating this setting will re-connect the client to all servers." = "設定を更新すると、全サーバにクライントの再接続が行われます。"; - /* No comment provided by engineer. */ "Upgrade and open chat" = "アップグレードしてチャットを開く"; @@ -3282,9 +3267,6 @@ /* No comment provided by engineer. */ "User profile" = "ユーザープロフィール"; -/* No comment provided by engineer. */ -"Using .onion hosts requires compatible VPN provider." = ".onionホストを使用するには、互換性のあるVPNプロバイダーが必要です。"; - /* No comment provided by engineer. */ "Using SimpleX Chat servers." = "SimpleX チャット サーバーを使用する。"; @@ -3399,9 +3381,6 @@ /* No comment provided by engineer. */ "Wrong passphrase!" = "パスフレーズが違います!"; -/* No comment provided by engineer. */ -"XFTP servers" = "XFTPサーバ"; - /* pref value */ "yes" = "はい"; diff --git a/apps/ios/nl.lproj/Localizable.strings b/apps/ios/nl.lproj/Localizable.strings index 23eccdcf3b..688bc8cab9 100644 --- a/apps/ios/nl.lproj/Localizable.strings +++ b/apps/ios/nl.lproj/Localizable.strings @@ -689,7 +689,7 @@ /* rcv group event chat item */ "blocked %@" = "geblokkeerd %@"; -/* blocked chat item */ +/* marked deleted chat item preview text */ "blocked by admin" = "geblokkeerd door beheerder"; /* No comment provided by engineer. */ @@ -2698,12 +2698,6 @@ /* No comment provided by engineer. */ "Message reception" = "Bericht ontvangst"; -/* No comment provided by engineer. */ -"Message routing fallback" = "Terugval op berichtroutering"; - -/* No comment provided by engineer. */ -"Message routing mode" = "Berichtrouteringsmodus"; - /* No comment provided by engineer. */ "Message source remains private." = "Berichtbron blijft privé."; @@ -2977,10 +2971,10 @@ "One-time invitation link" = "Eenmalige uitnodiging link"; /* No comment provided by engineer. */ -"Onion hosts will be required for connection. Requires enabling VPN." = "Onion hosts zullen nodig zijn voor verbinding. Vereist het inschakelen van VPN."; +"Onion hosts will be **required** for connection.\nRequires compatible VPN." = "Onion hosts zullen nodig zijn voor verbinding.\nVereist het inschakelen van VPN."; /* No comment provided by engineer. */ -"Onion hosts will be used when available. Requires enabling VPN." = "Onion hosts worden gebruikt indien beschikbaar. Vereist het inschakelen van VPN."; +"Onion hosts will be used when available.\nRequires compatible VPN." = "Onion hosts worden gebruikt indien beschikbaar.\nVereist het inschakelen van VPN."; /* No comment provided by engineer. */ "Onion hosts will not be used." = "Onion hosts worden niet gebruikt."; @@ -3552,9 +3546,6 @@ /* chat item action */ "Reveal" = "Onthullen"; -/* No comment provided by engineer. */ -"Revert" = "Terugdraaien"; - /* No comment provided by engineer. */ "Revoke" = "Intrekken"; @@ -3699,7 +3690,7 @@ /* chat item text */ "security code changed" = "beveiligingscode gewijzigd"; -/* No comment provided by engineer. */ +/* chat item action */ "Select" = "Selecteer"; /* No comment provided by engineer. */ @@ -4026,9 +4017,6 @@ /* No comment provided by engineer. */ "SMP server" = "SMP server"; -/* No comment provided by engineer. */ -"SMP servers" = "SMP servers"; - /* No comment provided by engineer. */ "Some non-fatal errors occurred during import - you may see Chat console for more details." = "Er zijn enkele niet-fatale fouten opgetreden tijdens het importeren - u kunt de Chat console raadplegen voor meer details."; @@ -4411,7 +4399,7 @@ "Unknown error" = "Onbekende fout"; /* No comment provided by engineer. */ -"unknown relays" = "onbekende relays"; +"unknown servers" = "onbekende relays"; /* No comment provided by engineer. */ "Unknown servers!" = "Onbekende servers!"; @@ -4452,18 +4440,12 @@ /* No comment provided by engineer. */ "Update" = "Update"; -/* No comment provided by engineer. */ -"Update .onion hosts setting?" = ".onion hosts-instelling updaten?"; - /* No comment provided by engineer. */ "Update database passphrase" = "Database wachtwoord bijwerken"; /* No comment provided by engineer. */ "Update network settings?" = "Netwerk instellingen bijwerken?"; -/* No comment provided by engineer. */ -"Update transport isolation mode?" = "Transportisolatiemodus updaten?"; - /* rcv group event chat item */ "updated group profile" = "bijgewerkt groep profiel"; @@ -4473,9 +4455,6 @@ /* No comment provided by engineer. */ "Updating settings will re-connect the client to all servers." = "Door de instellingen bij te werken, wordt de client opnieuw verbonden met alle servers."; -/* No comment provided by engineer. */ -"Updating this setting will re-connect the client to all servers." = "Als u deze instelling bijwerkt, wordt de client opnieuw verbonden met alle servers."; - /* No comment provided by engineer. */ "Upgrade and open chat" = "Upgrade en open chat"; @@ -4542,9 +4521,6 @@ /* No comment provided by engineer. */ "User selection" = "Gebruikersselectie"; -/* No comment provided by engineer. */ -"Using .onion hosts requires compatible VPN provider." = "Het gebruik van .onion-hosts vereist een compatibele VPN-provider."; - /* No comment provided by engineer. */ "Using SimpleX Chat servers." = "SimpleX Chat servers gebruiken."; @@ -4737,9 +4713,6 @@ /* No comment provided by engineer. */ "XFTP server" = "XFTP server"; -/* No comment provided by engineer. */ -"XFTP servers" = "XFTP servers"; - /* pref value */ "yes" = "Ja"; diff --git a/apps/ios/pl.lproj/Localizable.strings b/apps/ios/pl.lproj/Localizable.strings index fd284d9537..5953c00684 100644 --- a/apps/ios/pl.lproj/Localizable.strings +++ b/apps/ios/pl.lproj/Localizable.strings @@ -689,7 +689,7 @@ /* rcv group event chat item */ "blocked %@" = "zablokowany %@"; -/* blocked chat item */ +/* marked deleted chat item preview text */ "blocked by admin" = "zablokowany przez admina"; /* No comment provided by engineer. */ @@ -2698,12 +2698,6 @@ /* No comment provided by engineer. */ "Message reception" = "Odebranie wiadomości"; -/* No comment provided by engineer. */ -"Message routing fallback" = "Rezerwowe trasowania wiadomości"; - -/* No comment provided by engineer. */ -"Message routing mode" = "Tryb trasowania wiadomości"; - /* No comment provided by engineer. */ "Message source remains private." = "Źródło wiadomości pozostaje prywatne."; @@ -2977,10 +2971,10 @@ "One-time invitation link" = "Jednorazowy link zaproszenia"; /* No comment provided by engineer. */ -"Onion hosts will be required for connection. Requires enabling VPN." = "Hosty onion będą wymagane do połączenia. Wymaga włączenia VPN."; +"Onion hosts will be **required** for connection.\nRequires compatible VPN." = "Hosty onion będą wymagane do połączenia.\nWymaga włączenia VPN."; /* No comment provided by engineer. */ -"Onion hosts will be used when available. Requires enabling VPN." = "Hosty onion będą używane, gdy będą dostępne. Wymaga włączenia VPN."; +"Onion hosts will be used when available.\nRequires compatible VPN." = "Hosty onion będą używane, gdy będą dostępne.\nWymaga włączenia VPN."; /* No comment provided by engineer. */ "Onion hosts will not be used." = "Hosty onion nie będą używane."; @@ -3552,9 +3546,6 @@ /* chat item action */ "Reveal" = "Ujawnij"; -/* No comment provided by engineer. */ -"Revert" = "Przywrócić"; - /* No comment provided by engineer. */ "Revoke" = "Odwołaj"; @@ -3699,7 +3690,7 @@ /* chat item text */ "security code changed" = "kod bezpieczeństwa zmieniony"; -/* No comment provided by engineer. */ +/* chat item action */ "Select" = "Wybierz"; /* No comment provided by engineer. */ @@ -4026,9 +4017,6 @@ /* No comment provided by engineer. */ "SMP server" = "Serwer SMP"; -/* No comment provided by engineer. */ -"SMP servers" = "Serwery SMP"; - /* No comment provided by engineer. */ "Some non-fatal errors occurred during import - you may see Chat console for more details." = "Podczas importu wystąpiły niekrytyczne błędy - więcej szczegółów można znaleźć w konsoli czatu."; @@ -4411,7 +4399,7 @@ "Unknown error" = "Nieznany błąd"; /* No comment provided by engineer. */ -"unknown relays" = "nieznane przekaźniki"; +"unknown servers" = "nieznane przekaźniki"; /* No comment provided by engineer. */ "Unknown servers!" = "Nieznane serwery!"; @@ -4452,18 +4440,12 @@ /* No comment provided by engineer. */ "Update" = "Aktualizuj"; -/* No comment provided by engineer. */ -"Update .onion hosts setting?" = "Zaktualizować ustawienie hostów .onion?"; - /* No comment provided by engineer. */ "Update database passphrase" = "Aktualizuj hasło do bazy danych"; /* No comment provided by engineer. */ "Update network settings?" = "Zaktualizować ustawienia sieci?"; -/* No comment provided by engineer. */ -"Update transport isolation mode?" = "Zaktualizować tryb izolacji transportu?"; - /* rcv group event chat item */ "updated group profile" = "zaktualizowano profil grupy"; @@ -4473,9 +4455,6 @@ /* No comment provided by engineer. */ "Updating settings will re-connect the client to all servers." = "Aktualizacja ustawień spowoduje ponowne połączenie klienta ze wszystkimi serwerami."; -/* No comment provided by engineer. */ -"Updating this setting will re-connect the client to all servers." = "Aktualizacja tych ustawień spowoduje ponowne połączenie klienta ze wszystkimi serwerami."; - /* No comment provided by engineer. */ "Upgrade and open chat" = "Zaktualizuj i otwórz czat"; @@ -4542,9 +4521,6 @@ /* No comment provided by engineer. */ "User selection" = "Wybór użytkownika"; -/* No comment provided by engineer. */ -"Using .onion hosts requires compatible VPN provider." = "Używanie hostów .onion wymaga kompatybilnego dostawcy VPN."; - /* No comment provided by engineer. */ "Using SimpleX Chat servers." = "Używanie serwerów SimpleX Chat."; @@ -4737,9 +4713,6 @@ /* No comment provided by engineer. */ "XFTP server" = "Serwer XFTP"; -/* No comment provided by engineer. */ -"XFTP servers" = "Serwery XFTP"; - /* pref value */ "yes" = "tak"; diff --git a/apps/ios/ru.lproj/Localizable.strings b/apps/ios/ru.lproj/Localizable.strings index d842364f91..a1b95a63a0 100644 --- a/apps/ios/ru.lproj/Localizable.strings +++ b/apps/ios/ru.lproj/Localizable.strings @@ -2500,12 +2500,6 @@ /* notification */ "message received" = "получено сообщение"; -/* No comment provided by engineer. */ -"Message routing fallback" = "Прямая доставка сообщений"; - -/* No comment provided by engineer. */ -"Message routing mode" = "Режим доставки сообщений"; - /* No comment provided by engineer. */ "Message source remains private." = "Источник сообщения остаётся конфиденциальным."; @@ -2761,10 +2755,10 @@ "One-time invitation link" = "Одноразовая ссылка"; /* No comment provided by engineer. */ -"Onion hosts will be required for connection. Requires enabling VPN." = "Подключаться только к onion хостам. Требуется включенный VPN."; +"Onion hosts will be **required** for connection.\nRequires compatible VPN." = "Подключаться только к **onion** хостам.\nТребуется совместимый VPN."; /* No comment provided by engineer. */ -"Onion hosts will be used when available. Requires enabling VPN." = "Onion хосты используются, если возможно. Требуется включенный VPN."; +"Onion hosts will be used when available.\nRequires compatible VPN." = "Onion хосты используются, если возможно.\nТребуется совместимый VPN."; /* No comment provided by engineer. */ "Onion hosts will not be used." = "Onion хосты не используются."; @@ -3261,9 +3255,6 @@ /* chat item action */ "Reveal" = "Показать"; -/* No comment provided by engineer. */ -"Revert" = "Отменить изменения"; - /* No comment provided by engineer. */ "Revoke" = "Отозвать"; @@ -3396,7 +3387,7 @@ /* chat item text */ "security code changed" = "код безопасности изменился"; -/* No comment provided by engineer. */ +/* chat item action */ "Select" = "Выбрать"; /* No comment provided by engineer. */ @@ -3666,9 +3657,6 @@ /* No comment provided by engineer. */ "Small groups (max 20)" = "Маленькие группы (до 20)"; -/* No comment provided by engineer. */ -"SMP servers" = "SMP серверы"; - /* No comment provided by engineer. */ "Some non-fatal errors occurred during import - you may see Chat console for more details." = "Во время импорта произошли некоторые ошибки - для получения более подробной информации вы можете обратиться к консоли."; @@ -4018,7 +4006,7 @@ "Unknown error" = "Неизвестная ошибка"; /* No comment provided by engineer. */ -"unknown relays" = "неизвестные серверы"; +"unknown servers" = "неизвестные серверы"; /* No comment provided by engineer. */ "Unknown servers!" = "Неизвестные серверы!"; @@ -4059,18 +4047,12 @@ /* No comment provided by engineer. */ "Update" = "Обновить"; -/* No comment provided by engineer. */ -"Update .onion hosts setting?" = "Обновить настройки .onion хостов?"; - /* No comment provided by engineer. */ "Update database passphrase" = "Поменять пароль"; /* No comment provided by engineer. */ "Update network settings?" = "Обновить настройки сети?"; -/* No comment provided by engineer. */ -"Update transport isolation mode?" = "Обновить режим отдельных сессий?"; - /* rcv group event chat item */ "updated group profile" = "обновил(а) профиль группы"; @@ -4080,9 +4062,6 @@ /* No comment provided by engineer. */ "Updating settings will re-connect the client to all servers." = "Обновление настроек приведет к сбросу и установке нового соединения со всеми серверами."; -/* No comment provided by engineer. */ -"Updating this setting will re-connect the client to all servers." = "Обновление этих настроек приведет к сбросу и установке нового соединения со всеми серверами."; - /* No comment provided by engineer. */ "Upgrade and open chat" = "Обновить и открыть чат"; @@ -4137,9 +4116,6 @@ /* No comment provided by engineer. */ "User profile" = "Профиль чата"; -/* No comment provided by engineer. */ -"Using .onion hosts requires compatible VPN provider." = "Для использования .onion хостов требуется совместимый VPN провайдер."; - /* No comment provided by engineer. */ "Using SimpleX Chat servers." = "Используются серверы, предоставленные SimpleX Chat."; @@ -4320,9 +4296,6 @@ /* No comment provided by engineer. */ "Wrong passphrase!" = "Неправильный пароль!"; -/* No comment provided by engineer. */ -"XFTP servers" = "XFTP серверы"; - /* pref value */ "yes" = "да"; diff --git a/apps/ios/th.lproj/Localizable.strings b/apps/ios/th.lproj/Localizable.strings index b1d328ce6e..90b052a4dc 100644 --- a/apps/ios/th.lproj/Localizable.strings +++ b/apps/ios/th.lproj/Localizable.strings @@ -2125,10 +2125,10 @@ "One-time invitation link" = "ลิงก์คำเชิญแบบใช้ครั้งเดียว"; /* No comment provided by engineer. */ -"Onion hosts will be required for connection. Requires enabling VPN." = "จำเป็นต้องมีโฮสต์หัวหอมสำหรับการเชื่อมต่อ ต้องเปิดใช้งาน VPN สำหรับการเชื่อมต่อ"; +"Onion hosts will be **required** for connection.\nRequires compatible VPN." = "จำเป็นต้องมีโฮสต์หัวหอมสำหรับการเชื่อมต่อ ต้องเปิดใช้งาน VPN สำหรับการเชื่อมต่อ"; /* No comment provided by engineer. */ -"Onion hosts will be used when available. Requires enabling VPN." = "จำเป็นต้องมีโฮสต์หัวหอมสำหรับการเชื่อมต่อ ต้องเปิดใช้งาน VPN สำหรับการเชื่อมต่อ"; +"Onion hosts will be used when available.\nRequires compatible VPN." = "จำเป็นต้องมีโฮสต์หัวหอมสำหรับการเชื่อมต่อ ต้องเปิดใช้งาน VPN สำหรับการเชื่อมต่อ"; /* No comment provided by engineer. */ "Onion hosts will not be used." = "โฮสต์หัวหอมจะไม่ถูกใช้"; @@ -2496,9 +2496,6 @@ /* chat item action */ "Reveal" = "เปิดเผย"; -/* No comment provided by engineer. */ -"Revert" = "เปลี่ยนกลับ"; - /* No comment provided by engineer. */ "Revoke" = "ถอน"; @@ -2601,7 +2598,7 @@ /* chat item text */ "security code changed" = "เปลี่ยนรหัสความปลอดภัยแล้ว"; -/* No comment provided by engineer. */ +/* chat item action */ "Select" = "เลือก"; /* No comment provided by engineer. */ @@ -2802,9 +2799,6 @@ /* No comment provided by engineer. */ "Skipped messages" = "ข้อความที่ข้ามไป"; -/* No comment provided by engineer. */ -"SMP servers" = "เซิร์ฟเวอร์ SMP"; - /* No comment provided by engineer. */ "Some non-fatal errors occurred during import - you may see Chat console for more details." = "ข้อผิดพลาดที่ไม่ร้ายแรงบางอย่างเกิดขึ้นระหว่างการนำเข้า - คุณอาจดูรายละเอียดเพิ่มเติมได้ที่คอนโซล Chat"; @@ -3087,27 +3081,18 @@ /* No comment provided by engineer. */ "Update" = "อัปเดต"; -/* No comment provided by engineer. */ -"Update .onion hosts setting?" = "อัปเดตการตั้งค่าโฮสต์ .onion ไหม?"; - /* No comment provided by engineer. */ "Update database passphrase" = "อัปเดตรหัสผ่านของฐานข้อมูล"; /* No comment provided by engineer. */ "Update network settings?" = "อัปเดตการตั้งค่าเครือข่ายไหม?"; -/* No comment provided by engineer. */ -"Update transport isolation mode?" = "อัปเดตโหมดการแยกการขนส่งไหม?"; - /* rcv group event chat item */ "updated group profile" = "อัปเดตโปรไฟล์กลุ่มแล้ว"; /* No comment provided by engineer. */ "Updating settings will re-connect the client to all servers." = "การอัปเดตการตั้งค่าจะเชื่อมต่อไคลเอนต์กับเซิร์ฟเวอร์ทั้งหมดอีกครั้ง"; -/* No comment provided by engineer. */ -"Updating this setting will re-connect the client to all servers." = "การอัปเดตการตั้งค่านี้จะเชื่อมต่อไคลเอนต์กับเซิร์ฟเวอร์ทั้งหมดอีกครั้ง"; - /* No comment provided by engineer. */ "Upgrade and open chat" = "อัปเกรดและเปิดการแชท"; @@ -3135,9 +3120,6 @@ /* No comment provided by engineer. */ "User profile" = "โปรไฟล์ผู้ใช้"; -/* No comment provided by engineer. */ -"Using .onion hosts requires compatible VPN provider." = "การใช้โฮสต์ .onion ต้องการผู้ให้บริการ VPN ที่เข้ากันได้"; - /* No comment provided by engineer. */ "Using SimpleX Chat servers." = "กำลังใช้เซิร์ฟเวอร์ SimpleX Chat อยู่"; @@ -3252,9 +3234,6 @@ /* No comment provided by engineer. */ "Wrong passphrase!" = "รหัสผ่านผิด!"; -/* No comment provided by engineer. */ -"XFTP servers" = "เซิร์ฟเวอร์ XFTP"; - /* pref value */ "yes" = "ใช่"; diff --git a/apps/ios/tr.lproj/Localizable.strings b/apps/ios/tr.lproj/Localizable.strings index 98645f8b42..4b45b7cabe 100644 --- a/apps/ios/tr.lproj/Localizable.strings +++ b/apps/ios/tr.lproj/Localizable.strings @@ -647,7 +647,7 @@ /* rcv group event chat item */ "blocked %@" = "engellendi %@"; -/* blocked chat item */ +/* marked deleted chat item preview text */ "blocked by admin" = "yönetici tarafından engellendi"; /* No comment provided by engineer. */ @@ -2506,12 +2506,6 @@ /* notification */ "message received" = "mesaj alındı"; -/* No comment provided by engineer. */ -"Message routing fallback" = "Mesaj yönlendirme yedeklemesi"; - -/* No comment provided by engineer. */ -"Message routing mode" = "Mesaj yönlendirme modu"; - /* No comment provided by engineer. */ "Message source remains private." = "Mesaj kaynağı gizli kalır."; @@ -2767,10 +2761,10 @@ "One-time invitation link" = "Tek zamanlı bağlantı daveti"; /* No comment provided by engineer. */ -"Onion hosts will be required for connection. Requires enabling VPN." = "Bağlantı için Onion ana bilgisayarları gerekecektir. VPN'nin etkinleştirilmesi gerekir."; +"Onion hosts will be **required** for connection.\nRequires compatible VPN." = "Bağlantı için Onion ana bilgisayarları gerekecektir.\nVPN'nin etkinleştirilmesi gerekir."; /* No comment provided by engineer. */ -"Onion hosts will be used when available. Requires enabling VPN." = "Onion ana bilgisayarları mevcutsa kullanılacaktır. VPN'nin etkinleştirilmesi gerekir."; +"Onion hosts will be used when available.\nRequires compatible VPN." = "Onion ana bilgisayarları mevcutsa kullanılacaktır.\nVPN'nin etkinleştirilmesi gerekir."; /* No comment provided by engineer. */ "Onion hosts will not be used." = "Onion ana bilgisayarları kullanılmayacaktır."; @@ -3267,9 +3261,6 @@ /* chat item action */ "Reveal" = "Göster"; -/* No comment provided by engineer. */ -"Revert" = "Geri al"; - /* No comment provided by engineer. */ "Revoke" = "İptal et"; @@ -3402,7 +3393,7 @@ /* chat item text */ "security code changed" = "güvenlik kodu değiştirildi"; -/* No comment provided by engineer. */ +/* chat item action */ "Select" = "Seç"; /* No comment provided by engineer. */ @@ -3675,9 +3666,6 @@ /* No comment provided by engineer. */ "Small groups (max 20)" = "Küçük gruplar (en fazla 20 kişi)"; -/* No comment provided by engineer. */ -"SMP servers" = "SMP sunucuları"; - /* No comment provided by engineer. */ "Some non-fatal errors occurred during import - you may see Chat console for more details." = "İçe aktarma sırasında bazı ölümcül olmayan hatalar oluştu - daha fazla ayrıntı için Sohbet konsoluna bakabilirsiniz."; @@ -4027,7 +4015,7 @@ "Unknown error" = "Bilinmeyen hata"; /* No comment provided by engineer. */ -"unknown relays" = "bilinmeyen yönlendiriciler"; +"unknown servers" = "bilinmeyen yönlendiriciler"; /* No comment provided by engineer. */ "Unknown servers!" = "Bilinmeyen sunucular!"; @@ -4068,18 +4056,12 @@ /* No comment provided by engineer. */ "Update" = "Güncelle"; -/* No comment provided by engineer. */ -"Update .onion hosts setting?" = ".onion ana bilgisayarların ayarı güncellensin mi?"; - /* No comment provided by engineer. */ "Update database passphrase" = "Veritabanı parolasını güncelle"; /* No comment provided by engineer. */ "Update network settings?" = "Bağlantı ayarları güncellensin mi?"; -/* No comment provided by engineer. */ -"Update transport isolation mode?" = "Taşıma izolasyon modu güncellensin mi?"; - /* rcv group event chat item */ "updated group profile" = "grup profili güncellendi"; @@ -4089,9 +4071,6 @@ /* No comment provided by engineer. */ "Updating settings will re-connect the client to all servers." = "Ayarların güncellenmesi, istemciyi tüm sunuculara yeniden bağlayacaktır."; -/* No comment provided by engineer. */ -"Updating this setting will re-connect the client to all servers." = "Bu ayarın güncellenmesi, istemciyi tüm sunuculara yeniden bağlayacaktır."; - /* No comment provided by engineer. */ "Upgrade and open chat" = "Yükselt ve sohbeti aç"; @@ -4146,9 +4125,6 @@ /* No comment provided by engineer. */ "User profile" = "Kullanıcı profili"; -/* No comment provided by engineer. */ -"Using .onion hosts requires compatible VPN provider." = ".onion ana bilgisayarlarını kullanmak için uyumlu VPN sağlayıcısı gerekir."; - /* No comment provided by engineer. */ "Using SimpleX Chat servers." = "SimpleX Chat sunucuları kullanılıyor."; @@ -4329,9 +4305,6 @@ /* No comment provided by engineer. */ "Wrong passphrase!" = "Yanlış parola!"; -/* No comment provided by engineer. */ -"XFTP servers" = "XFTP sunucuları"; - /* pref value */ "yes" = "evet"; diff --git a/apps/ios/uk.lproj/Localizable.strings b/apps/ios/uk.lproj/Localizable.strings index 1d2630dd1f..a8138d29a9 100644 --- a/apps/ios/uk.lproj/Localizable.strings +++ b/apps/ios/uk.lproj/Localizable.strings @@ -647,7 +647,7 @@ /* rcv group event chat item */ "blocked %@" = "заблоковано %@"; -/* blocked chat item */ +/* marked deleted chat item preview text */ "blocked by admin" = "заблоковано адміністратором"; /* No comment provided by engineer. */ @@ -2506,12 +2506,6 @@ /* notification */ "message received" = "повідомлення отримано"; -/* No comment provided by engineer. */ -"Message routing fallback" = "Запасний варіант маршрутизації повідомлень"; - -/* No comment provided by engineer. */ -"Message routing mode" = "Режим маршрутизації повідомлень"; - /* No comment provided by engineer. */ "Message source remains private." = "Джерело повідомлення залишається приватним."; @@ -2767,10 +2761,10 @@ "One-time invitation link" = "Посилання на одноразове запрошення"; /* No comment provided by engineer. */ -"Onion hosts will be required for connection. Requires enabling VPN." = "Для підключення будуть потрібні хости onion. Потрібно увімкнути VPN."; +"Onion hosts will be **required** for connection.\nRequires compatible VPN." = "Для підключення будуть потрібні хости onion.\nПотрібно увімкнути VPN."; /* No comment provided by engineer. */ -"Onion hosts will be used when available. Requires enabling VPN." = "Onion хости будуть використовуватися, коли вони будуть доступні. Потрібно увімкнути VPN."; +"Onion hosts will be used when available.\nRequires compatible VPN." = "Onion хости будуть використовуватися, коли вони будуть доступні.\nПотрібно увімкнути VPN."; /* No comment provided by engineer. */ "Onion hosts will not be used." = "Onion хости не будуть використовуватися."; @@ -3267,9 +3261,6 @@ /* chat item action */ "Reveal" = "Показувати"; -/* No comment provided by engineer. */ -"Revert" = "Повернутися"; - /* No comment provided by engineer. */ "Revoke" = "Відкликати"; @@ -3402,7 +3393,7 @@ /* chat item text */ "security code changed" = "змінено код безпеки"; -/* No comment provided by engineer. */ +/* chat item action */ "Select" = "Виберіть"; /* No comment provided by engineer. */ @@ -3675,9 +3666,6 @@ /* No comment provided by engineer. */ "Small groups (max 20)" = "Невеликі групи (максимум 20 осіб)"; -/* No comment provided by engineer. */ -"SMP servers" = "Сервери SMP"; - /* No comment provided by engineer. */ "Some non-fatal errors occurred during import - you may see Chat console for more details." = "Під час імпорту виникли деякі нефатальні помилки – ви можете переглянути консоль чату, щоб дізнатися більше."; @@ -4027,7 +4015,7 @@ "Unknown error" = "Невідома помилка"; /* No comment provided by engineer. */ -"unknown relays" = "невідомі реле"; +"unknown servers" = "невідомі реле"; /* No comment provided by engineer. */ "Unknown servers!" = "Невідомі сервери!"; @@ -4068,18 +4056,12 @@ /* No comment provided by engineer. */ "Update" = "Оновлення"; -/* No comment provided by engineer. */ -"Update .onion hosts setting?" = "Оновити налаштування хостів .onion?"; - /* No comment provided by engineer. */ "Update database passphrase" = "Оновити парольну фразу бази даних"; /* No comment provided by engineer. */ "Update network settings?" = "Оновити налаштування мережі?"; -/* No comment provided by engineer. */ -"Update transport isolation mode?" = "Оновити режим транспортної ізоляції?"; - /* rcv group event chat item */ "updated group profile" = "оновлений профіль групи"; @@ -4089,9 +4071,6 @@ /* No comment provided by engineer. */ "Updating settings will re-connect the client to all servers." = "Оновлення налаштувань призведе до перепідключення клієнта до всіх серверів."; -/* No comment provided by engineer. */ -"Updating this setting will re-connect the client to all servers." = "Оновлення цього параметра призведе до перепідключення клієнта до всіх серверів."; - /* No comment provided by engineer. */ "Upgrade and open chat" = "Оновлення та відкритий чат"; @@ -4146,9 +4125,6 @@ /* No comment provided by engineer. */ "User profile" = "Профіль користувача"; -/* No comment provided by engineer. */ -"Using .onion hosts requires compatible VPN provider." = "Для використання хостів .onion потрібен сумісний VPN-провайдер."; - /* No comment provided by engineer. */ "Using SimpleX Chat servers." = "Використання серверів SimpleX Chat."; @@ -4329,9 +4305,6 @@ /* No comment provided by engineer. */ "Wrong passphrase!" = "Неправильний пароль!"; -/* No comment provided by engineer. */ -"XFTP servers" = "Сервери XFTP"; - /* pref value */ "yes" = "так"; diff --git a/apps/ios/zh-Hans.lproj/Localizable.strings b/apps/ios/zh-Hans.lproj/Localizable.strings index 07eecee246..f28cbcfcec 100644 --- a/apps/ios/zh-Hans.lproj/Localizable.strings +++ b/apps/ios/zh-Hans.lproj/Localizable.strings @@ -599,7 +599,7 @@ /* rcv group event chat item */ "blocked %@" = "已封禁 %@"; -/* blocked chat item */ +/* marked deleted chat item preview text */ "blocked by admin" = "由管理员封禁"; /* No comment provided by engineer. */ @@ -2599,10 +2599,10 @@ "One-time invitation link" = "一次性邀请链接"; /* No comment provided by engineer. */ -"Onion hosts will be required for connection. Requires enabling VPN." = "Onion 主机将用于连接。需要启用 VPN。"; +"Onion hosts will be **required** for connection.\nRequires compatible VPN." = "Onion 主机将用于连接。需要启用 VPN。"; /* No comment provided by engineer. */ -"Onion hosts will be used when available. Requires enabling VPN." = "当可用时,将使用 Onion 主机。需要启用 VPN。"; +"Onion hosts will be used when available.\nRequires compatible VPN." = "当可用时,将使用 Onion 主机。需要启用 VPN。"; /* No comment provided by engineer. */ "Onion hosts will not be used." = "将不会使用 Onion 主机。"; @@ -3060,9 +3060,6 @@ /* chat item action */ "Reveal" = "揭示"; -/* No comment provided by engineer. */ -"Revert" = "恢复"; - /* No comment provided by engineer. */ "Revoke" = "撤销"; @@ -3189,7 +3186,7 @@ /* chat item text */ "security code changed" = "安全密码已更改"; -/* No comment provided by engineer. */ +/* chat item action */ "Select" = "选择"; /* No comment provided by engineer. */ @@ -3441,9 +3438,6 @@ /* No comment provided by engineer. */ "Small groups (max 20)" = "小群组(最多 20 人)"; -/* No comment provided by engineer. */ -"SMP servers" = "SMP 服务器"; - /* No comment provided by engineer. */ "Some non-fatal errors occurred during import - you may see Chat console for more details." = "导入过程中发生了一些非致命错误——您可以查看聊天控制台了解更多详细信息。"; @@ -3813,18 +3807,12 @@ /* No comment provided by engineer. */ "Update" = "更新"; -/* No comment provided by engineer. */ -"Update .onion hosts setting?" = "更新 .onion 主机设置?"; - /* No comment provided by engineer. */ "Update database passphrase" = "更新数据库密码"; /* No comment provided by engineer. */ "Update network settings?" = "更新网络设置?"; -/* No comment provided by engineer. */ -"Update transport isolation mode?" = "更新传输隔离模式?"; - /* rcv group event chat item */ "updated group profile" = "已更新的群组资料"; @@ -3834,9 +3822,6 @@ /* No comment provided by engineer. */ "Updating settings will re-connect the client to all servers." = "更新设置会将客户端重新连接到所有服务器。"; -/* No comment provided by engineer. */ -"Updating this setting will re-connect the client to all servers." = "更新此设置将重新连接客户端到所有服务器。"; - /* No comment provided by engineer. */ "Upgrade and open chat" = "升级并打开聊天"; @@ -3882,9 +3867,6 @@ /* No comment provided by engineer. */ "User profile" = "用户资料"; -/* No comment provided by engineer. */ -"Using .onion hosts requires compatible VPN provider." = "使用 .onion 主机需要兼容的 VPN 提供商。"; - /* No comment provided by engineer. */ "Using SimpleX Chat servers." = "使用 SimpleX Chat 服务器。"; @@ -4047,9 +4029,6 @@ /* No comment provided by engineer. */ "Wrong passphrase!" = "密码错误!"; -/* No comment provided by engineer. */ -"XFTP servers" = "XFTP 服务器"; - /* pref value */ "yes" = "是";