diff --git a/WireLogging/Sources/WireLogging/SystemLogger.swift b/WireLogging/Sources/WireLogging/SystemLogger.swift index c52cb855f4a..ae8f770baa3 100644 --- a/WireLogging/Sources/WireLogging/SystemLogger.swift +++ b/WireLogging/Sources/WireLogging/SystemLogger.swift @@ -58,7 +58,7 @@ public struct SystemLogger: LoggerProtocol { } public func warn(_ message: any LogConvertible, attributes: LogAttributes...) { - log(message, attributes: attributes, osLogType: .fault) + log(message, attributes: attributes, osLogType: .default) } public func error(_ message: any LogConvertible, attributes: LogAttributes...) { diff --git a/WireUI/Sources/WireIndividualToTeamMigrationUI/Resources/Localizable.xcstrings b/WireUI/Sources/WireIndividualToTeamMigrationUI/Resources/Localizable.xcstrings index efd271cc5f5..d74e4c42a23 100644 --- a/WireUI/Sources/WireIndividualToTeamMigrationUI/Resources/Localizable.xcstrings +++ b/WireUI/Sources/WireIndividualToTeamMigrationUI/Resources/Localizable.xcstrings @@ -498,4 +498,4 @@ } }, "version" : "1.0" -} \ No newline at end of file +} diff --git a/wire-ios-data-model/Source/Core Crypto/CoreCryptoProvider.swift b/wire-ios-data-model/Source/Core Crypto/CoreCryptoProvider.swift index 5dbcc08c116..2c1b52e9bd1 100644 --- a/wire-ios-data-model/Source/Core Crypto/CoreCryptoProvider.swift +++ b/wire-ios-data-model/Source/Core Crypto/CoreCryptoProvider.swift @@ -171,7 +171,11 @@ public actor CoreCryptoProvider: CoreCryptoProviderProtocol { } private func configureProteusClient(coreCrypto: SafeCoreCrypto) async throws { - try await coreCrypto.perform { try await $0.proteusInit() } + // here we don't need to lock the context or restoreFromDisk() + // it fixes `Mls(WireCoreCrypto.MlsError.Other("Proteus client hasn\'t been initialized"))` + // Empty transaction was committed, this could be an indication of a programming error - [core_crypto_context: + // {}] + try await coreCrypto.unsafePerform { try await $0.proteusInit() } } private func configureMLSClient(coreCrypto: SafeCoreCrypto) async throws { diff --git a/wire-ios-data-model/Source/Core Crypto/SafeCoreCrypto.swift b/wire-ios-data-model/Source/Core Crypto/SafeCoreCrypto.swift index c7a3fb70a04..2f9278ca6c6 100644 --- a/wire-ios-data-model/Source/Core Crypto/SafeCoreCrypto.swift +++ b/wire-ios-data-model/Source/Core Crypto/SafeCoreCrypto.swift @@ -24,7 +24,7 @@ import WireLogging public protocol SafeCoreCryptoProtocol { func perform(_ block: (CoreCryptoProtocol) async throws -> T) async rethrows -> T - func unsafePerform(_ block: (CoreCryptoProtocol) throws -> T) rethrows -> T + func unsafePerform(_ block: (CoreCryptoProtocol) async throws -> T) async rethrows -> T func tearDown() throws } @@ -71,8 +71,8 @@ public class SafeCoreCrypto: SafeCoreCryptoProtocol { return try await block(coreCrypto) } - public func unsafePerform(_ block: (CoreCryptoProtocol) throws -> T) rethrows -> T { - try block(coreCrypto) + public func unsafePerform(_ block: (CoreCryptoProtocol) async throws -> T) async rethrows -> T { + try await block(coreCrypto) } private func restoreFromDisk() async { diff --git a/wire-ios-data-model/Source/MLS/OneOnOne/OneOnOneMigrator.swift b/wire-ios-data-model/Source/MLS/OneOnOne/OneOnOneMigrator.swift index c41b79a9677..40a6d37191e 100644 --- a/wire-ios-data-model/Source/MLS/OneOnOne/OneOnOneMigrator.swift +++ b/wire-ios-data-model/Source/MLS/OneOnOne/OneOnOneMigrator.swift @@ -48,31 +48,26 @@ public struct OneOnOneMigrator: OneOnOneMigratorInterface { userID: QualifiedID, in context: NSManagedObjectContext ) async throws -> MLSGroupID { + // Fetch MLS 1:1 conversation and store it locally. let (mlsGroupID, removalKeys) = try await syncMLSConversationFromBackend( userID: userID, in: context ) - if try await mlsService.conversationExists(groupID: mlsGroupID) { - return mlsGroupID - } - - guard let epoch = await fetchMLSConversationEpoch(mlsGroupID: mlsGroupID, in: context) else { - throw MigrateMLSOneOnOneConversationError.missingConversationEpoch - } - - if epoch == 0 { - try await establishMLSGroupIfNeeded( + // Create or join the MLS conversation if needed. + if try await !mlsService.conversationExists(groupID: mlsGroupID) { + try await createOrJoinMLSConversationIfNeeded( userID: userID, mlsGroupID: mlsGroupID, removalKeys: removalKeys, - in: context - ) - } else { - try await mlsService.joinGroup(with: mlsGroupID) + in: context) } - try await switchLocalConversationToMLS( + // Perform the migration of messages and link the MLS conversation if needed. + // It's safe to attempt this step each time to enhance the resilience of the app. + // This ensures that in cases where an MLS conversation exists but Proteus hasn't yet switched and the messages haven't been migrated, + // it will attempt the migration again. + try await migrateMessagesAndLinkMLSConversationIfNeeded( userID: userID, mlsGroupID: mlsGroupID, in: context @@ -137,7 +132,7 @@ public struct OneOnOneMigrator: OneOnOneMigratorInterface { } } - private func switchLocalConversationToMLS( + private func migrateMessagesAndLinkMLSConversationIfNeeded( userID: QualifiedID, mlsGroupID: MLSGroupID, in context: NSManagedObjectContext @@ -155,10 +150,10 @@ public struct OneOnOneMigrator: OneOnOneMigratorInterface { } // move local messages from proteus conversation if it exists - if let proteusConversation = otherUser.oneOnOneConversation { + if let existingConversation = otherUser.oneOnOneConversation, existingConversation.messageProtocol == .proteus { // Since ZMMessages only have a single conversation connected, // forming this union also removes the relationship to the proteus conversation. - mlsConversation.mutableMessages.union(proteusConversation.allMessages) + mlsConversation.mutableMessages.union(existingConversation.allMessages) // update just to be sure mlsConversation.needsToBeUpdatedFromBackend = true @@ -168,4 +163,26 @@ public struct OneOnOneMigrator: OneOnOneMigratorInterface { otherUser.oneOnOneConversation = mlsConversation } } + + private func createOrJoinMLSConversationIfNeeded( + userID: QualifiedID, + mlsGroupID: MLSGroupID, + removalKeys: BackendMLSPublicKeys?, + in context: NSManagedObjectContext + ) async throws { + guard let epoch = await fetchMLSConversationEpoch(mlsGroupID: mlsGroupID, in: context) else { + throw MigrateMLSOneOnOneConversationError.missingConversationEpoch + } + + if epoch == 0 { + try await establishMLSGroupIfNeeded( + userID: userID, + mlsGroupID: mlsGroupID, + removalKeys: removalKeys, + in: context + ) + } else { + try await mlsService.joinGroup(with: mlsGroupID) + } + } } diff --git a/wire-ios-data-model/Source/MLS/OneOnOne/OneOnOneResolver.swift b/wire-ios-data-model/Source/MLS/OneOnOne/OneOnOneResolver.swift index 6f8311dbe92..746c92f5b78 100644 --- a/wire-ios-data-model/Source/MLS/OneOnOne/OneOnOneResolver.swift +++ b/wire-ios-data-model/Source/MLS/OneOnOne/OneOnOneResolver.swift @@ -64,7 +64,7 @@ public final class OneOnOneResolver: OneOnOneResolverInterface { try await self.resolveOneOnOneConversation(with: userID, in: context) } catch { // skip conversation migration for this user - WireLogger.conversation.error("resolve 1-1 conversation with userID \(userID) failed!") + WireLogger.conversation.error("resolve 1-1 conversation with userID \(userID) failed: \(error)") } } } diff --git a/wire-ios-data-model/Support/Sources/MockSafeCoreCrypto.swift b/wire-ios-data-model/Support/Sources/MockSafeCoreCrypto.swift index d4bdd724a17..afd26e5bfb0 100644 --- a/wire-ios-data-model/Support/Sources/MockSafeCoreCrypto.swift +++ b/wire-ios-data-model/Support/Sources/MockSafeCoreCrypto.swift @@ -35,9 +35,9 @@ public class MockSafeCoreCrypto: SafeCoreCryptoProtocol { } var unsafePerformCount = 0 - public func unsafePerform(_ block: (CoreCryptoProtocol) throws -> T) rethrows -> T { + public func unsafePerform(_ block: (CoreCryptoProtocol) async throws -> T) async rethrows -> T { unsafePerformCount += 1 - return try block(coreCrypto) + return try await block(coreCrypto) } var performAsyncCount = 0 diff --git a/wire-ios-request-strategy/Sources/APIs/NetworkError.swift b/wire-ios-request-strategy/Sources/APIs/NetworkError.swift index 11e36ea5fed..a950a8ca756 100644 --- a/wire-ios-request-strategy/Sources/APIs/NetworkError.swift +++ b/wire-ios-request-strategy/Sources/APIs/NetworkError.swift @@ -59,3 +59,24 @@ public enum NetworkError: Error, Equatable { } } } + +// MARK: - LocalizedError + +extension NetworkError: LocalizedError { + public var errorDescription: String? { + switch self { + case .errorEncodingRequest: + "Failed to encode the request." + case let .errorDecodingResponse(response): + "Failed to decode the response: \(response)." + case let .errorDecodingURLResponse(urlResponse): + "Failed to decode the URL response: \(urlResponse)." + case .endpointNotAvailable: + "The requested endpoint is not available." + case let .missingClients(status, response): + "Missing clients with status: \(status). Response: \(response)." + case let .invalidRequestError(failure, response): + "Invalid request error: \(failure). Response: \(response)." + } + } +} diff --git a/wire-ios/Wire-iOS/Resources/ar.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/ar.lproj/Localizable.strings index 6113eb5b94e..2f4f2ef2629 100644 --- a/wire-ios/Wire-iOS/Resources/ar.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/ar.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "معرفة المزيد"; "peoplepicker.no_matching_results.action.manage_services" = "إدارة الخدمات"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "لا توجد نتائج."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "الجميع حاضرون."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "يمكن استخدامها لمدة أسبوعين. حال انتهاء صلاحيتها أرسل واحدة جديدة."; "peoplepicker.send_invitation.dialog.ok" = "موافق"; -"peoplepicker.invite_more_people" = "ادعُ أشخاصًا أكثر"; "peoplepicker.invite_team_members" = "ادعُ أشخاصًا إلى الانضمام إلى الفريق"; "peoplepicker.quick-action.open-conversation" = "افتح"; "peoplepicker.quick-action.admin-services" = "إدارة الخدمات"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "البلد"; -"registration.share_contacts.hero.title" = "إيجاد أُناس على Wire"; -"registration.share_contacts.hero.paragraph" = "اسمح لـWire بالوصول لجهات الإتصال الخاصة بك حتى تتمكن من التواصل مع الآخرين. نحن نحفظ سرية معلوماتك ولا نتشاركها من أحد آخر."; -"registration.share_contacts.find_friends_button.title" = "مشاركة جهات الاتصال"; -"registration.share_contacts.skip_button.title" = "ليس الآن"; - -"registration.address_book_access_denied.hero.title" = "لا يملك Wire صلاحية الوصول لجهات اتصالك."; -"registration.address_book_access_denied.hero.paragraph1" = "يساعدك Wire في العثور على أصدقائك عند مشاركة جهات اتصالك."; -"registration.address_book_access_denied.hero.paragraph2" = "لتمكين الوصول اذهب للإعدادات وقم بتفعيله."; -"registration.address_book_access_denied.settings_button.title" = "الإعدادات"; -"registration.address_book_access_denied.maybe_later_button.title" = "ربما في وقت لاحق"; - "registration.push_access_denied.hero.title" = "لا تُفَوّت أي مُكالمة أو رسالة."; "registration.push_access_denied.hero.paragraph1" = "فعّل الإشعارات من الإعدادات."; "registration.push_access_denied.settings_button.title" = "اذهب للإعدادات"; diff --git a/wire-ios/Wire-iOS/Resources/be.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/be.lproj/Localizable.strings index 3ddcb3acc3c..c74585f6968 100644 --- a/wire-ios/Wire-iOS/Resources/be.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/be.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Learn more"; "peoplepicker.no_matching_results.action.manage_services" = "Manage Services"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "No results."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Everyone’s here."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "It can be used for 2 weeks. Send a new one if it expires."; "peoplepicker.send_invitation.dialog.ok" = "OK"; -"peoplepicker.invite_more_people" = "Invite more people"; "peoplepicker.invite_team_members" = "Invite people to join the team"; "peoplepicker.quick-action.open-conversation" = "Open"; "peoplepicker.quick-action.admin-services" = "Manage Services"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Country"; -"registration.share_contacts.hero.title" = "Find people on Wire"; -"registration.share_contacts.hero.paragraph" = "Share your contacts so we can connect you with others. We anonymize all information and do not share it with anyone else."; -"registration.share_contacts.find_friends_button.title" = "Share contacts"; -"registration.share_contacts.skip_button.title" = "Not now"; - -"registration.address_book_access_denied.hero.title" = "Wire does not have access to your contacts."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire helps find your friends if you share your contacts."; -"registration.address_book_access_denied.hero.paragraph2" = "To enable access tap Settings and turn on Contacts."; -"registration.address_book_access_denied.settings_button.title" = "Settings"; -"registration.address_book_access_denied.maybe_later_button.title" = "Maybe later"; - "registration.push_access_denied.hero.title" = "Never miss a call or a message."; "registration.push_access_denied.hero.paragraph1" = "Enable Notifications in Settings."; "registration.push_access_denied.settings_button.title" = "Go to Settings"; diff --git a/wire-ios/Wire-iOS/Resources/bg.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/bg.lproj/Localizable.strings index 07843baa2d1..0d6261a00d6 100644 --- a/wire-ios/Wire-iOS/Resources/bg.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/bg.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Learn more"; "peoplepicker.no_matching_results.action.manage_services" = "Manage Services"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "No results."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Everyone’s here."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "It can be used for 2 weeks. Send a new one if it expires."; "peoplepicker.send_invitation.dialog.ok" = "OK"; -"peoplepicker.invite_more_people" = "Invite more people"; "peoplepicker.invite_team_members" = "Invite people to join the team"; "peoplepicker.quick-action.open-conversation" = "Open"; "peoplepicker.quick-action.admin-services" = "Manage Services"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Country"; -"registration.share_contacts.hero.title" = "Find people on Wire"; -"registration.share_contacts.hero.paragraph" = "Share your contacts so we can connect you with others. We anonymize all information and do not share it with anyone else."; -"registration.share_contacts.find_friends_button.title" = "Share contacts"; -"registration.share_contacts.skip_button.title" = "Not now"; - -"registration.address_book_access_denied.hero.title" = "Wire does not have access to your contacts."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire helps find your friends if you share your contacts."; -"registration.address_book_access_denied.hero.paragraph2" = "To enable access tap Settings and turn on Contacts."; -"registration.address_book_access_denied.settings_button.title" = "Настройки"; -"registration.address_book_access_denied.maybe_later_button.title" = "Maybe later"; - "registration.push_access_denied.hero.title" = "Never miss a call or a message."; "registration.push_access_denied.hero.paragraph1" = "Enable Notifications in Settings."; "registration.push_access_denied.settings_button.title" = "Go to Settings"; diff --git a/wire-ios/Wire-iOS/Resources/bn.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/bn.lproj/Localizable.strings index a3745c57f06..56b649a4a4d 100644 --- a/wire-ios/Wire-iOS/Resources/bn.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/bn.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Learn more"; "peoplepicker.no_matching_results.action.manage_services" = "Manage Services"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "No results."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Everyone’s here."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "It can be used for 2 weeks. Send a new one if it expires."; "peoplepicker.send_invitation.dialog.ok" = "ওকে"; -"peoplepicker.invite_more_people" = "Invite more people"; "peoplepicker.invite_team_members" = "Invite people to join the team"; "peoplepicker.quick-action.open-conversation" = "খুলুন"; "peoplepicker.quick-action.admin-services" = "Manage Services"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "দেশ"; -"registration.share_contacts.hero.title" = "Find people on Wire"; -"registration.share_contacts.hero.paragraph" = "Share your contacts so we can connect you with others. We anonymize all information and do not share it with anyone else."; -"registration.share_contacts.find_friends_button.title" = "Share contacts"; -"registration.share_contacts.skip_button.title" = "Not now"; - -"registration.address_book_access_denied.hero.title" = "Wire does not have access to your contacts."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire helps find your friends if you share your contacts."; -"registration.address_book_access_denied.hero.paragraph2" = "To enable access tap Settings and turn on Contacts."; -"registration.address_book_access_denied.settings_button.title" = "সেটিং সমূহ "; -"registration.address_book_access_denied.maybe_later_button.title" = "Maybe later"; - "registration.push_access_denied.hero.title" = "Never miss a call or a message."; "registration.push_access_denied.hero.paragraph1" = "Enable Notifications in Settings."; "registration.push_access_denied.settings_button.title" = "Go to Settings"; diff --git a/wire-ios/Wire-iOS/Resources/ca.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/ca.lproj/Localizable.strings index 978ef7c9ddc..498695a2340 100644 --- a/wire-ios/Wire-iOS/Resources/ca.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/ca.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Saber-ne més"; "peoplepicker.no_matching_results.action.manage_services" = "Gestionar els serveis"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "Sense resultats."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Everyone’s here."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "It can be used for 2 weeks. Send a new one if it expires."; "peoplepicker.send_invitation.dialog.ok" = "D'ACORD"; -"peoplepicker.invite_more_people" = "Invite more people"; "peoplepicker.invite_team_members" = "Convida gent a afegir-se a l'equip"; "peoplepicker.quick-action.open-conversation" = "Obre"; "peoplepicker.quick-action.admin-services" = "Gestionar els serveis"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "País"; -"registration.share_contacts.hero.title" = "Find people on Wire"; -"registration.share_contacts.hero.paragraph" = "Share your contacts so we can connect you with others. We anonymize all information and do not share it with anyone else."; -"registration.share_contacts.find_friends_button.title" = "Comparteix contactes"; -"registration.share_contacts.skip_button.title" = "Ara no"; - -"registration.address_book_access_denied.hero.title" = "Wire does not have access to your contacts."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire helps find your friends if you share your contacts."; -"registration.address_book_access_denied.hero.paragraph2" = "To enable access tap Settings and turn on Contacts."; -"registration.address_book_access_denied.settings_button.title" = "Configuració"; -"registration.address_book_access_denied.maybe_later_button.title" = "Maybe later"; - "registration.push_access_denied.hero.title" = "Never miss a call or a message."; "registration.push_access_denied.hero.paragraph1" = "Enable Notifications in Settings."; "registration.push_access_denied.settings_button.title" = "Go to Settings"; diff --git a/wire-ios/Wire-iOS/Resources/cs.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/cs.lproj/Localizable.strings index d24fae689f5..51bf4a87c16 100644 --- a/wire-ios/Wire-iOS/Resources/cs.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/cs.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Dozvědět se více"; "peoplepicker.no_matching_results.action.manage_services" = "Spravovat služby"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "Žádné výsledky."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Všichni jsou zde."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "Může být použito na 2 týdny. Zašlete novou, pokud její platnost vyprší."; "peoplepicker.send_invitation.dialog.ok" = "OK"; -"peoplepicker.invite_more_people" = "Pozvat další osoby"; "peoplepicker.invite_team_members" = "Pozvat do týmu další členy"; "peoplepicker.quick-action.open-conversation" = "Otevřít"; "peoplepicker.quick-action.admin-services" = "Spravovat služby"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Země"; -"registration.share_contacts.hero.title" = "Najít lidi na Wire"; -"registration.share_contacts.hero.paragraph" = "Vaše údaje o kontaktech používáme k propojení s ostatními uživateli. Všechny informace anonymizujeme a nesdílíme je s nikým dalším."; -"registration.share_contacts.find_friends_button.title" = "Sdílet kontakty"; -"registration.share_contacts.skip_button.title" = "Nyní ne"; - -"registration.address_book_access_denied.hero.title" = "Wire nemá přístup k vašim kontaktům."; -"registration.address_book_access_denied.hero.paragraph1" = "Pokud s aplikací sdílíte své kontakty, Wire vám pomůže najít vaše přátele."; -"registration.address_book_access_denied.hero.paragraph2" = "Klepnutím v Nastavení a zapnutím Kontaktů povolíte přístup."; -"registration.address_book_access_denied.settings_button.title" = "Nastavení"; -"registration.address_book_access_denied.maybe_later_button.title" = "Možná později"; - "registration.push_access_denied.hero.title" = "Nikdy nezmeškáte hovor nebo zprávu."; "registration.push_access_denied.hero.paragraph1" = "Povolte oznámení v nastavení."; "registration.push_access_denied.settings_button.title" = "Přejít do nastavení"; diff --git a/wire-ios/Wire-iOS/Resources/da.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/da.lproj/Localizable.strings index 1d2cfab3f93..36987b079e1 100644 --- a/wire-ios/Wire-iOS/Resources/da.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/da.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Lær mere"; "peoplepicker.no_matching_results.action.manage_services" = "Manage Services"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "Ingen resultater."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Everyone’s here."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "Den kan anvendes i 2 uger. Send en ny, hvis den udløber."; "peoplepicker.send_invitation.dialog.ok" = "OK"; -"peoplepicker.invite_more_people" = "Invitér flere personer"; "peoplepicker.invite_team_members" = "Inviter personer til holdet"; "peoplepicker.quick-action.open-conversation" = "Åbn"; "peoplepicker.quick-action.admin-services" = "Manage Services"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Land"; -"registration.share_contacts.hero.title" = "Find personer på Wire"; -"registration.share_contacts.hero.paragraph" = "Del dine kontakter så vi kan forbinde dig med andre. Vi anonymiserer alle informationer og deler dem ikke med andre."; -"registration.share_contacts.find_friends_button.title" = "Del kontakter"; -"registration.share_contacts.skip_button.title" = "Ikke nu"; - -"registration.address_book_access_denied.hero.title" = "Wire har ikke adgang til dine kontakter."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire hjælper med at finde dine venner, hvis du deler dine kontaktpersoner."; -"registration.address_book_access_denied.hero.paragraph2" = "For at aktivere adgang tryk på Indstillinger og slå kontaktpersoner til."; -"registration.address_book_access_denied.settings_button.title" = "Indstillinger"; -"registration.address_book_access_denied.maybe_later_button.title" = "Måske senere"; - "registration.push_access_denied.hero.title" = "Gå aldrig glip af et opkald eller en besked."; "registration.push_access_denied.hero.paragraph1" = "Aktiver Notifikationer i Indstillinger."; "registration.push_access_denied.settings_button.title" = "Gå til Indstillinger"; diff --git a/wire-ios/Wire-iOS/Resources/de.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/de.lproj/Localizable.strings index 030201fb15a..b13ddffac08 100644 --- a/wire-ios/Wire-iOS/Resources/de.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/de.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Mehr erfahren"; "peoplepicker.no_matching_results.action.manage_services" = "Dienste verwalten"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "Kein Ergebnis"; "peoplepicker.no_matching_results.message.users" = "Finden Sie Personen in Wire anhand ihrer Namen oder @Benutzernamen"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Finden Sie Personen in Wire anhand ihrer Namen oder @Benutzernamen\n\nFinden Sie Personen einer anderen Domain mit @Benutzername@Domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Alle sind hier."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "Diese Einladung ist 2 Wochen gültig. Senden Sie eine neue, wenn diese abläuft."; "peoplepicker.send_invitation.dialog.ok" = "OK"; -"peoplepicker.invite_more_people" = "Weitere Personen einladen"; "peoplepicker.invite_team_members" = "Lade weitere Mitglieder ein"; "peoplepicker.quick-action.open-conversation" = "Öffnen"; "peoplepicker.quick-action.admin-services" = "Dienste verwalten"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Land"; -"registration.share_contacts.hero.title" = "Kontakte auf Wire finden"; -"registration.share_contacts.hero.paragraph" = "Teilen Sie Ihre Kontakte, damit wir Sie mit anderen verbinden können. Wir anonymisieren alle Informationen und geben sie nicht an andere weiter."; -"registration.share_contacts.find_friends_button.title" = "Kontakte teilen"; -"registration.share_contacts.skip_button.title" = "Nicht jetzt"; - -"registration.address_book_access_denied.hero.title" = "Wire hat keinen Zugriff auf Ihre Kontakte."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire hilft Ihnen, Ihre Freunde zu finden, wenn Sie Ihre Kontakte teilen."; -"registration.address_book_access_denied.hero.paragraph2" = "Um Zugriff zu erlauben, bitte auf \"Kontakte\" in den Einstellungen tippen."; -"registration.address_book_access_denied.settings_button.title" = "Einstellungen"; -"registration.address_book_access_denied.maybe_later_button.title" = "Vielleicht später"; - "registration.push_access_denied.hero.title" = "Verpassen Sie keinen Anrufe oder Nachrichten."; "registration.push_access_denied.hero.paragraph1" = "Aktivieren Sie Benachrichtigungen in den Einstellungen."; "registration.push_access_denied.settings_button.title" = "Einstellungen öffnen"; diff --git a/wire-ios/Wire-iOS/Resources/el.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/el.lproj/Localizable.strings index 48cbfc213c4..03ad6fdffbb 100644 --- a/wire-ios/Wire-iOS/Resources/el.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/el.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Μάθετε περισσότερα"; "peoplepicker.no_matching_results.action.manage_services" = "Manage Services"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "Χωρίς Αποτέλεσμα."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Everyone’s here."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "It can be used for 2 weeks. Send a new one if it expires."; "peoplepicker.send_invitation.dialog.ok" = "Εντάξει"; -"peoplepicker.invite_more_people" = "Invite more people"; "peoplepicker.invite_team_members" = "Invite people to join the team"; "peoplepicker.quick-action.open-conversation" = "Άνοιγμα"; "peoplepicker.quick-action.admin-services" = "Manage Services"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Χώρα"; -"registration.share_contacts.hero.title" = "Find people on Wire"; -"registration.share_contacts.hero.paragraph" = "Share your contacts so we can connect you with others. We anonymize all information and do not share it with anyone else."; -"registration.share_contacts.find_friends_button.title" = "Share contacts"; -"registration.share_contacts.skip_button.title" = "Not now"; - -"registration.address_book_access_denied.hero.title" = "Wire does not have access to your contacts."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire helps find your friends if you share your contacts."; -"registration.address_book_access_denied.hero.paragraph2" = "To enable access tap Settings and turn on Contacts."; -"registration.address_book_access_denied.settings_button.title" = "Ρυθμίσεις"; -"registration.address_book_access_denied.maybe_later_button.title" = "Maybe later"; - "registration.push_access_denied.hero.title" = "Never miss a call or a message."; "registration.push_access_denied.hero.paragraph1" = "Enable Notifications in Settings."; "registration.push_access_denied.settings_button.title" = "Go to Settings"; diff --git a/wire-ios/Wire-iOS/Resources/es.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/es.lproj/Localizable.strings index eb9d07ccbe7..0e040b5848b 100644 --- a/wire-ios/Wire-iOS/Resources/es.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/es.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Más información"; "peoplepicker.no_matching_results.action.manage_services" = "Gestionar los servicios"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "No hay resultados."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Todos están aquí."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "Puede aceptarse hasta pasadas 2 semanas. Envía una nueva si ésta caduca."; "peoplepicker.send_invitation.dialog.ok" = "OK"; -"peoplepicker.invite_more_people" = "Invitar a más contactos"; "peoplepicker.invite_team_members" = "Invitar personas para unirse al equipo"; "peoplepicker.quick-action.open-conversation" = "Abrir"; "peoplepicker.quick-action.admin-services" = "Gestionar los servicios"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "País"; -"registration.share_contacts.hero.title" = "Encontrar contactos en Wire"; -"registration.share_contacts.hero.paragraph" = "Compartir tus contactos permite a Wire a conectarte con otros usuarios. Toda la información es anónima y no la compartimos con nadie."; -"registration.share_contacts.find_friends_button.title" = "Compartir contactos"; -"registration.share_contacts.skip_button.title" = "Ahora no"; - -"registration.address_book_access_denied.hero.title" = "Wire no tiene acceso a tus contactos."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire encuentra usuarios de Wire que conoces si compartes tus contactos."; -"registration.address_book_access_denied.hero.paragraph2" = "Para habilitar el acceso, activa el acceso a los contactos en Ajustes."; -"registration.address_book_access_denied.settings_button.title" = "Ajustes"; -"registration.address_book_access_denied.maybe_later_button.title" = "Tal vez después"; - "registration.push_access_denied.hero.title" = "No pierdas nunca una llamada o mensaje."; "registration.push_access_denied.hero.paragraph1" = "Activa las notificaciones en Ajustes."; "registration.push_access_denied.settings_button.title" = "Ve a Ajustes"; diff --git a/wire-ios/Wire-iOS/Resources/et.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/et.lproj/Localizable.strings index 684e55b0c54..b84aa258dae 100644 --- a/wire-ios/Wire-iOS/Resources/et.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/et.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Loe lähemalt"; "peoplepicker.no_matching_results.action.manage_services" = "Halda teenuseid"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "Tulemusi ei leitud."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Kõik on siin."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "See kehtib 2 nädalat. Saada kehtivuse lõppedes uus."; "peoplepicker.send_invitation.dialog.ok" = "OK"; -"peoplepicker.invite_more_people" = "Kutsu rohkem inimesi"; "peoplepicker.invite_team_members" = "Kutsu inimesi meeskonnaga liituma"; "peoplepicker.quick-action.open-conversation" = "Ava"; "peoplepicker.quick-action.admin-services" = "Halda teenuseid"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Riik"; -"registration.share_contacts.hero.title" = "Otsi inimesi kes kasutavad Wire’t"; -"registration.share_contacts.hero.paragraph" = "Jaga oma kontakte, et saaksime sind teistega ühendada. Me muudame kogu info anonüümseks ja ei jaga seda kellegi teisega."; -"registration.share_contacts.find_friends_button.title" = "Jaga kontakte"; -"registration.share_contacts.skip_button.title" = "Mitte praegu"; - -"registration.address_book_access_denied.hero.title" = "Wire’l puudub ligipääs sinu kontaktidele."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire leiab su sõbrad, kui jagad oma kontakte."; -"registration.address_book_access_denied.hero.paragraph2" = "Ligipääsu lubamiseks vajuta Seaded ja lülita sisse Kontaktid."; -"registration.address_book_access_denied.settings_button.title" = "Seaded"; -"registration.address_book_access_denied.maybe_later_button.title" = "Võibolla hiljem"; - "registration.push_access_denied.hero.title" = "Ükski kõne ega sõnum ei jää märkamata."; "registration.push_access_denied.hero.paragraph1" = "Lülita sisse teavitused seadetest."; "registration.push_access_denied.settings_button.title" = "Ava Seaded"; diff --git a/wire-ios/Wire-iOS/Resources/eu.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/eu.lproj/Localizable.strings index 4ad5c9a92d9..5b0d902d1dd 100644 --- a/wire-ios/Wire-iOS/Resources/eu.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/eu.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Learn more"; "peoplepicker.no_matching_results.action.manage_services" = "Manage Services"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "No results."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Everyone’s here."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "It can be used for 2 weeks. Send a new one if it expires."; "peoplepicker.send_invitation.dialog.ok" = "ADOS"; -"peoplepicker.invite_more_people" = "Invite more people"; "peoplepicker.invite_team_members" = "Invite people to join the team"; "peoplepicker.quick-action.open-conversation" = "Open"; "peoplepicker.quick-action.admin-services" = "Manage Services"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Country"; -"registration.share_contacts.hero.title" = "Find people on Wire"; -"registration.share_contacts.hero.paragraph" = "Share your contacts so we can connect you with others. We anonymize all information and do not share it with anyone else."; -"registration.share_contacts.find_friends_button.title" = "Share contacts"; -"registration.share_contacts.skip_button.title" = "Not now"; - -"registration.address_book_access_denied.hero.title" = "Wire does not have access to your contacts."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire helps find your friends if you share your contacts."; -"registration.address_book_access_denied.hero.paragraph2" = "To enable access tap Settings and turn on Contacts."; -"registration.address_book_access_denied.settings_button.title" = "Ezarpenak"; -"registration.address_book_access_denied.maybe_later_button.title" = "Maybe later"; - "registration.push_access_denied.hero.title" = "Never miss a call or a message."; "registration.push_access_denied.hero.paragraph1" = "Enable Notifications in Settings."; "registration.push_access_denied.settings_button.title" = "Go to Settings"; diff --git a/wire-ios/Wire-iOS/Resources/fa.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/fa.lproj/Localizable.strings index e9cc999c4f7..d16fd2448af 100644 --- a/wire-ios/Wire-iOS/Resources/fa.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/fa.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "بیشتر بدانید"; "peoplepicker.no_matching_results.action.manage_services" = "مدیریت سرویس ها"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "نتیجه‌ای یافت نشد."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Everyone’s here."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "It can be used for 2 weeks. Send a new one if it expires."; "peoplepicker.send_invitation.dialog.ok" = "تایید"; -"peoplepicker.invite_more_people" = "Invite more people"; "peoplepicker.invite_team_members" = "دعوت افراد تا وارد این تیم شوند"; "peoplepicker.quick-action.open-conversation" = "باز کردن"; "peoplepicker.quick-action.admin-services" = "مدیریت سرویس ها"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "کشور"; -"registration.share_contacts.hero.title" = "Find people on Wire"; -"registration.share_contacts.hero.paragraph" = "Share your contacts so we can connect you with others. We anonymize all information and do not share it with anyone else."; -"registration.share_contacts.find_friends_button.title" = "به‌اشتراک گذاشتن دوستان"; -"registration.share_contacts.skip_button.title" = "اکنون نه"; - -"registration.address_book_access_denied.hero.title" = "Wire does not have access to your contacts."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire helps find your friends if you share your contacts."; -"registration.address_book_access_denied.hero.paragraph2" = "To enable access tap Settings and turn on Contacts."; -"registration.address_book_access_denied.settings_button.title" = "تنظیمات"; -"registration.address_book_access_denied.maybe_later_button.title" = "Maybe later"; - "registration.push_access_denied.hero.title" = "Never miss a call or a message."; "registration.push_access_denied.hero.paragraph1" = "Enable Notifications in Settings."; "registration.push_access_denied.settings_button.title" = "Go to Settings"; diff --git a/wire-ios/Wire-iOS/Resources/fi.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/fi.lproj/Localizable.strings index 0aecf8dc134..3c3059be6fe 100644 --- a/wire-ios/Wire-iOS/Resources/fi.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/fi.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Lue lisää"; "peoplepicker.no_matching_results.action.manage_services" = "Manage Services"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "Ei tuloksia."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Everyone’s here."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "Sitä voidaan käyttää 2 viikon ajan. Lähetä uusi jos se vanhenee."; "peoplepicker.send_invitation.dialog.ok" = "OK"; -"peoplepicker.invite_more_people" = "Kutsu lisää ihmisiä"; "peoplepicker.invite_team_members" = "Invite people to join the team"; "peoplepicker.quick-action.open-conversation" = "Avaa"; "peoplepicker.quick-action.admin-services" = "Manage Services"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Maa"; -"registration.share_contacts.hero.title" = "Etsi Wiren käyttäjiä"; -"registration.share_contacts.hero.paragraph" = "Jaa yhteystietosi, jotta voimme yhdistää sinut muiden kanssa. Anonymisoimme kaiken tiedon ja emmekä jaa sitä kenellekkään muulle."; -"registration.share_contacts.find_friends_button.title" = "Jaa yhteystietoja"; -"registration.share_contacts.skip_button.title" = "Ei nyt"; - -"registration.address_book_access_denied.hero.title" = "Wirellä ei ole käyttöoikeutta kontakteihisi."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire auttaa löytämään ystäviäsi jos jaat yhteystietosi."; -"registration.address_book_access_denied.hero.paragraph2" = "Salli pääsy napauttamalla Asetuksia ja pistä Yhteystiedot päälle."; -"registration.address_book_access_denied.settings_button.title" = "Asetukset"; -"registration.address_book_access_denied.maybe_later_button.title" = "Ehkä myöhemmin"; - "registration.push_access_denied.hero.title" = "Älä koskaan jää vaille puhelua tai viestiä."; "registration.push_access_denied.hero.paragraph1" = "Ota Ilmoitukset käyttöön Asetuksissa."; "registration.push_access_denied.settings_button.title" = "Mene Asetuksiin"; diff --git a/wire-ios/Wire-iOS/Resources/fr.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/fr.lproj/Localizable.strings index 64f1fcf5526..59fc0416cc9 100644 --- a/wire-ios/Wire-iOS/Resources/fr.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/fr.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "En savoir plus"; "peoplepicker.no_matching_results.action.manage_services" = "Gérer les Services"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "Aucun résultat."; "peoplepicker.no_matching_results.message.users" = "Trouver des contacts sur Wire par nom ou par @identifiant"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Trouvez des contacts sur Wire par nom ou par @identifiant\n\nTrouvez des contacts sur un autre domaine par @identifiant@nomdedomaine"; "peoplepicker.no_matching_results.message.users_all_added" = "Tout le monde est là."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "Elle peut être utilisée pendant 2 semaines. Envoyez-en une nouvelle si elle expire."; "peoplepicker.send_invitation.dialog.ok" = "OK"; -"peoplepicker.invite_more_people" = "Invitez d'autres contacts"; "peoplepicker.invite_team_members" = "Invitez des contacts à rejoindre votre équipe"; "peoplepicker.quick-action.open-conversation" = "Ouvrir"; "peoplepicker.quick-action.admin-services" = "Gérer les Services"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Pays"; -"registration.share_contacts.hero.title" = "Trouver des contacts sur Wire"; -"registration.share_contacts.hero.paragraph" = "Partager vos contacts nous permet de vous connecter à d'autres personnes. Nous anonymisons toutes les informations et ne les partageons avec personne d'autre."; -"registration.share_contacts.find_friends_button.title" = "Partagez vos contacts"; -"registration.share_contacts.skip_button.title" = "Pas maintenant"; - -"registration.address_book_access_denied.hero.title" = "Wire n'a pas accès a vos contacts."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire vous aide à trouver vos amis si vous partagez vos contacts."; -"registration.address_book_access_denied.hero.paragraph2" = "Pour autoriser l'accès, cliquez sur Paramètres et activez les contacts."; -"registration.address_book_access_denied.settings_button.title" = "Paramètres"; -"registration.address_book_access_denied.maybe_later_button.title" = "Peut-être plus tard"; - "registration.push_access_denied.hero.title" = "Ne manquez jamais un appel ou un message."; "registration.push_access_denied.hero.paragraph1" = "Activez les notifications dans les paramètres."; "registration.push_access_denied.settings_button.title" = "Allez dans les paramètres"; diff --git a/wire-ios/Wire-iOS/Resources/he.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/he.lproj/Localizable.strings index 246b0f6eb68..50af26a0585 100644 --- a/wire-ios/Wire-iOS/Resources/he.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/he.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Learn more"; "peoplepicker.no_matching_results.action.manage_services" = "Manage Services"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "No results."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Everyone’s here."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "It can be used for 2 weeks. Send a new one if it expires."; "peoplepicker.send_invitation.dialog.ok" = "אוקיי"; -"peoplepicker.invite_more_people" = "Invite more people"; "peoplepicker.invite_team_members" = "Invite people to join the team"; "peoplepicker.quick-action.open-conversation" = "Open"; "peoplepicker.quick-action.admin-services" = "Manage Services"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Country"; -"registration.share_contacts.hero.title" = "Find people on Wire"; -"registration.share_contacts.hero.paragraph" = "Share your contacts so we can connect you with others. We anonymize all information and do not share it with anyone else."; -"registration.share_contacts.find_friends_button.title" = "Share contacts"; -"registration.share_contacts.skip_button.title" = "Not now"; - -"registration.address_book_access_denied.hero.title" = "Wire does not have access to your contacts."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire helps find your friends if you share your contacts."; -"registration.address_book_access_denied.hero.paragraph2" = "To enable access tap Settings and turn on Contacts."; -"registration.address_book_access_denied.settings_button.title" = "Settings"; -"registration.address_book_access_denied.maybe_later_button.title" = "Maybe later"; - "registration.push_access_denied.hero.title" = "Never miss a call or a message."; "registration.push_access_denied.hero.paragraph1" = "Enable Notifications in Settings."; "registration.push_access_denied.settings_button.title" = "Go to Settings"; diff --git a/wire-ios/Wire-iOS/Resources/hr.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/hr.lproj/Localizable.strings index 8521651d181..1f4a803cd4c 100644 --- a/wire-ios/Wire-iOS/Resources/hr.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/hr.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Saznaj više"; "peoplepicker.no_matching_results.action.manage_services" = "Upravljanje uslugama"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "0 rezultata."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Svi su ovdje."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "Ovo se može upotrebljavati dva tjedna. Pošalji nov zahtjev ako ovaj istekne."; "peoplepicker.send_invitation.dialog.ok" = "U redu"; -"peoplepicker.invite_more_people" = "Pozovi više ljudi"; "peoplepicker.invite_team_members" = "Pozovite ljude da se pridruže timu"; "peoplepicker.quick-action.open-conversation" = "Otvori"; "peoplepicker.quick-action.admin-services" = "Upravljanje uslugama"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Država"; -"registration.share_contacts.hero.title" = "Pronađite poznanike na Wireu"; -"registration.share_contacts.hero.paragraph" = "Dozvoli da Wire pristupi tvojim kontaktima kako bi te povezao s drugima. Sve informacije koje primimo se anonimiziraju i ne dijele s drugima."; -"registration.share_contacts.find_friends_button.title" = "Podijeli kontakte"; -"registration.share_contacts.skip_button.title" = "Ne sada"; - -"registration.address_book_access_denied.hero.title" = "Wire nema pristup tvojim kontaktima."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire će ti pomoći u pronalaženju prijatelja ako podijeliš svoje kontakte."; -"registration.address_book_access_denied.hero.paragraph2" = "Za omogućavanje pristupa, dodirnite Postavke i uključite Kontakti."; -"registration.address_book_access_denied.settings_button.title" = "Postavke"; -"registration.address_book_access_denied.maybe_later_button.title" = "Možda kasnije"; - "registration.push_access_denied.hero.title" = "Nikad ne propustite poziv ili poruku."; "registration.push_access_denied.hero.paragraph1" = "Omogućite obavijesti u postavkama."; "registration.push_access_denied.settings_button.title" = "Idite na postavke"; diff --git a/wire-ios/Wire-iOS/Resources/hu.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/hu.lproj/Localizable.strings index bacc150d925..5b3641c3d89 100644 --- a/wire-ios/Wire-iOS/Resources/hu.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/hu.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "További információ"; "peoplepicker.no_matching_results.action.manage_services" = "Szolgáltatások kezelése"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "Nincs találat."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Mindenki itt van."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "2 hétig használható. Küld újat, ha lejárt."; "peoplepicker.send_invitation.dialog.ok" = "OK"; -"peoplepicker.invite_more_people" = "Több partner meghívása"; "peoplepicker.invite_team_members" = "Hívj meg másokat a csapatba"; "peoplepicker.quick-action.open-conversation" = "Megnyitás"; "peoplepicker.quick-action.admin-services" = "Szolgáltatások kezelése"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Ország"; -"registration.share_contacts.hero.title" = "Keress ismerősöket a Wire-ön"; -"registration.share_contacts.hero.paragraph" = "A névjegyeid importálásával könnyebben kapcsolatba léphetsz másokkal. Minden információt anonimizálunk, és semmit nem osszuk meg senki mással."; -"registration.share_contacts.find_friends_button.title" = "Névjegyek megosztása"; -"registration.share_contacts.skip_button.title" = "Most nem"; - -"registration.address_book_access_denied.hero.title" = "A Wire nem fér hozzá a névjegyeidhez."; -"registration.address_book_access_denied.hero.paragraph1" = "Segítünk megtalálni ismerőseidet, ha megosztod névjegyeidet a Wire-rel."; -"registration.address_book_access_denied.hero.paragraph2" = "A hozzáférés engedélyezéséhez koppints a Beállításokra és kapcsold be a Névjegyzéket."; -"registration.address_book_access_denied.settings_button.title" = "Beállítások"; -"registration.address_book_access_denied.maybe_later_button.title" = "Talán később"; - "registration.push_access_denied.hero.title" = "Ne maradj le egy hívásról vagy üzenetről se."; "registration.push_access_denied.hero.paragraph1" = "Engedélyezd az Értesítéseket a Beállításokban."; "registration.push_access_denied.settings_button.title" = "Beállítások megnyitása"; diff --git a/wire-ios/Wire-iOS/Resources/id.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/id.lproj/Localizable.strings index c2e21ab5dd3..31db1307578 100644 --- a/wire-ios/Wire-iOS/Resources/id.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/id.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Pelajari lebih lanjut"; "peoplepicker.no_matching_results.action.manage_services" = "Manage Services"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "Tidak ada hasil."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Everyone’s here."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "Ini bisa digunakan selama 2 minggu. Kirim yang baru jika kadaluarsa."; "peoplepicker.send_invitation.dialog.ok" = "OK"; -"peoplepicker.invite_more_people" = "Undang lebih banyak orang"; "peoplepicker.invite_team_members" = "Invite people to join the team"; "peoplepicker.quick-action.open-conversation" = "Buka"; "peoplepicker.quick-action.admin-services" = "Manage Services"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Negara"; -"registration.share_contacts.hero.title" = "Temukan orang di Wire"; -"registration.share_contacts.hero.paragraph" = "Bagikan kontak Anda sehingga kami dapat menghubungkan Anda dengan orang lain. Kami menganonimkan semua informasi dan tidak membagikannya dengan orang lain."; -"registration.share_contacts.find_friends_button.title" = "Bagikan kontak"; -"registration.share_contacts.skip_button.title" = "Tidak sekarang"; - -"registration.address_book_access_denied.hero.title" = "Kawat tidak memiliki akses ke kontak Anda."; -"registration.address_book_access_denied.hero.paragraph1" = "Kawat membantu menemukan teman Anda jika Anda berbagi kontak Anda."; -"registration.address_book_access_denied.hero.paragraph2" = "Untuk mengaktifkan akses ketuk Settings dan aktifkan Contacts."; -"registration.address_book_access_denied.settings_button.title" = "Pengaturan"; -"registration.address_book_access_denied.maybe_later_button.title" = "Mungkin nanti"; - "registration.push_access_denied.hero.title" = "Jangan pernah melewatkan panggilan atau pesan."; "registration.push_access_denied.hero.paragraph1" = "Aktifkan Notifikasi di Setelan."; "registration.push_access_denied.settings_button.title" = "Pergi ke pengaturan"; diff --git a/wire-ios/Wire-iOS/Resources/is.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/is.lproj/Localizable.strings index 2d1d1e7a7fc..3b4729a99f2 100644 --- a/wire-ios/Wire-iOS/Resources/is.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/is.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Learn more"; "peoplepicker.no_matching_results.action.manage_services" = "Manage Services"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "Engar niðurstöður."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Everyone’s here."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "It can be used for 2 weeks. Send a new one if it expires."; "peoplepicker.send_invitation.dialog.ok" = "Í lagi"; -"peoplepicker.invite_more_people" = "Invite more people"; "peoplepicker.invite_team_members" = "Invite people to join the team"; "peoplepicker.quick-action.open-conversation" = "Opna"; "peoplepicker.quick-action.admin-services" = "Manage Services"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Land"; -"registration.share_contacts.hero.title" = "Find people on Wire"; -"registration.share_contacts.hero.paragraph" = "Share your contacts so we can connect you with others. We anonymize all information and do not share it with anyone else."; -"registration.share_contacts.find_friends_button.title" = "Share contacts"; -"registration.share_contacts.skip_button.title" = "Ekki núna"; - -"registration.address_book_access_denied.hero.title" = "Wire does not have access to your contacts."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire helps find your friends if you share your contacts."; -"registration.address_book_access_denied.hero.paragraph2" = "To enable access tap Settings and turn on Contacts."; -"registration.address_book_access_denied.settings_button.title" = "Stillingar"; -"registration.address_book_access_denied.maybe_later_button.title" = "Kannski seinna"; - "registration.push_access_denied.hero.title" = "Never miss a call or a message."; "registration.push_access_denied.hero.paragraph1" = "Enable Notifications in Settings."; "registration.push_access_denied.settings_button.title" = "Go to Settings"; diff --git a/wire-ios/Wire-iOS/Resources/it.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/it.lproj/Localizable.strings index f5ca877dee8..e76118995e1 100644 --- a/wire-ios/Wire-iOS/Resources/it.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/it.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Ulteriori informazioni"; "peoplepicker.no_matching_results.action.manage_services" = "Gestisci servizi"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "Nessun risultato."; "peoplepicker.no_matching_results.message.users" = "Trova persone in Wire per nome o @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Sono tutti qui."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "Può essere usato per 2 settimane. Inviane un altro quando scade."; "peoplepicker.send_invitation.dialog.ok" = "OK"; -"peoplepicker.invite_more_people" = "Invita più persone"; "peoplepicker.invite_team_members" = "Invita altre persone ad unirsi al team"; "peoplepicker.quick-action.open-conversation" = "Apri"; "peoplepicker.quick-action.admin-services" = "Gestisci servizi"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Paese"; -"registration.share_contacts.hero.title" = "Trova persone su Wire"; -"registration.share_contacts.hero.paragraph" = "Condividi i tuoi contatti, così possiamo connetterti con altre persone. Rendiamo anonimi tutti i tuoi dati e non li condividiamo con nessuno."; -"registration.share_contacts.find_friends_button.title" = "Condividi contatti"; -"registration.share_contacts.skip_button.title" = "Non ora"; - -"registration.address_book_access_denied.hero.title" = "Wire non ha accesso ai tuoi contatti."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire ti aiuta a trovare i tuoi amici se Condividi i tuoi contatti."; -"registration.address_book_access_denied.hero.paragraph2" = "Per abilitare vai su Impostazioni e attiva i contatti."; -"registration.address_book_access_denied.settings_button.title" = "Impostazioni"; -"registration.address_book_access_denied.maybe_later_button.title" = "Forse dopo"; - "registration.push_access_denied.hero.title" = "Non perdere mai una chiamata o un messaggio."; "registration.push_access_denied.hero.paragraph1" = "Attiva le notifiche nelle impostazioni."; "registration.push_access_denied.settings_button.title" = "Vai nelle Impostazioni"; diff --git a/wire-ios/Wire-iOS/Resources/ja.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/ja.lproj/Localizable.strings index 94a8eca44b8..b19c924905a 100644 --- a/wire-ios/Wire-iOS/Resources/ja.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/ja.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "もっと知る"; "peoplepicker.no_matching_results.action.manage_services" = "サービスを管理"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "結果はありません"; "peoplepicker.no_matching_results.message.users" = "Wireで名前または@usernameで人を見つけます"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "全員がいます。"; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "2週間使用できます。\n期限が切れた時は新しいものを送ります"; "peoplepicker.send_invitation.dialog.ok" = "OK"; -"peoplepicker.invite_more_people" = "さらに招待する"; "peoplepicker.invite_team_members" = "チームに招待する"; "peoplepicker.quick-action.open-conversation" = "開く"; "peoplepicker.quick-action.admin-services" = "サービスを管理"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "国"; -"registration.share_contacts.hero.title" = "Wireで友人を見つける"; -"registration.share_contacts.hero.paragraph" = "他のユーザーとつながるために、Wireがあなたの連絡先にアクセスすることを許可してください。私たちはすべての情報を匿名化し、他の誰ともあなたの連絡先に関する情報をシェアしません。"; -"registration.share_contacts.find_friends_button.title" = "連絡先を共有します"; -"registration.share_contacts.skip_button.title" = "いまは行わない"; - -"registration.address_book_access_denied.hero.title" = "Wireはあなたの連絡先へのアクセスしていません。"; -"registration.address_book_access_denied.hero.paragraph1" = "連絡先をシェアした場合、Wireで友人を探すことが容易になります。"; -"registration.address_book_access_denied.hero.paragraph2" = "設定から連絡先を有効にすることで連絡先にアクセスできるようになります。"; -"registration.address_book_access_denied.settings_button.title" = "設定"; -"registration.address_book_access_denied.maybe_later_button.title" = "後で"; - "registration.push_access_denied.hero.title" = "電話やメッセージを見逃さない"; "registration.push_access_denied.hero.paragraph1" = "設定で通知を有効にする"; "registration.push_access_denied.settings_button.title" = "設定に移動する"; diff --git a/wire-ios/Wire-iOS/Resources/ka.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/ka.lproj/Localizable.strings index 6de587dbbc6..e1d1697b81b 100644 --- a/wire-ios/Wire-iOS/Resources/ka.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/ka.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Learn more"; "peoplepicker.no_matching_results.action.manage_services" = "Manage Services"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "No results."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Everyone’s here."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "It can be used for 2 weeks. Send a new one if it expires."; "peoplepicker.send_invitation.dialog.ok" = "OK"; -"peoplepicker.invite_more_people" = "Invite more people"; "peoplepicker.invite_team_members" = "Invite people to join the team"; "peoplepicker.quick-action.open-conversation" = "Open"; "peoplepicker.quick-action.admin-services" = "Manage Services"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Country"; -"registration.share_contacts.hero.title" = "Find people on Wire"; -"registration.share_contacts.hero.paragraph" = "Share your contacts so we can connect you with others. We anonymize all information and do not share it with anyone else."; -"registration.share_contacts.find_friends_button.title" = "Share contacts"; -"registration.share_contacts.skip_button.title" = "Not now"; - -"registration.address_book_access_denied.hero.title" = "Wire does not have access to your contacts."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire helps find your friends if you share your contacts."; -"registration.address_book_access_denied.hero.paragraph2" = "To enable access tap Settings and turn on Contacts."; -"registration.address_book_access_denied.settings_button.title" = "Settings"; -"registration.address_book_access_denied.maybe_later_button.title" = "Maybe later"; - "registration.push_access_denied.hero.title" = "Never miss a call or a message."; "registration.push_access_denied.hero.paragraph1" = "Enable Notifications in Settings."; "registration.push_access_denied.settings_button.title" = "Go to Settings"; diff --git a/wire-ios/Wire-iOS/Resources/ko.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/ko.lproj/Localizable.strings index 4e95e0823ee..d63f670c121 100644 --- a/wire-ios/Wire-iOS/Resources/ko.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/ko.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Learn more"; "peoplepicker.no_matching_results.action.manage_services" = "서비스 관리하기"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "결과가 없습니다."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "모든 사용자가 참가했습니다."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "초대장은 2주동안 유효합니다. 기간이 지난 후에는 새로운 초대장을 보내세요."; "peoplepicker.send_invitation.dialog.ok" = "OK"; -"peoplepicker.invite_more_people" = "더 많은 사람들을 초대합니다"; "peoplepicker.invite_team_members" = "사람들을 팀에 초대하세요."; "peoplepicker.quick-action.open-conversation" = "대화 열기"; "peoplepicker.quick-action.admin-services" = "서비스 관리하기"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Country"; -"registration.share_contacts.hero.title" = "Find people on Wire"; -"registration.share_contacts.hero.paragraph" = "Share your contacts so we can connect you with others. We anonymize all information and do not share it with anyone else."; -"registration.share_contacts.find_friends_button.title" = "연락처 공유하기"; -"registration.share_contacts.skip_button.title" = "나중에"; - -"registration.address_book_access_denied.hero.title" = "Wire does not have access to your contacts."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire helps find your friends if you share your contacts."; -"registration.address_book_access_denied.hero.paragraph2" = "To enable access tap Settings and turn on Contacts."; -"registration.address_book_access_denied.settings_button.title" = "설정"; -"registration.address_book_access_denied.maybe_later_button.title" = "Maybe later"; - "registration.push_access_denied.hero.title" = "Never miss a call or a message."; "registration.push_access_denied.hero.paragraph1" = "Enable Notifications in Settings."; "registration.push_access_denied.settings_button.title" = "Go to Settings"; diff --git a/wire-ios/Wire-iOS/Resources/lt.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/lt.lproj/Localizable.strings index e88ed0d7562..b3f19bcad69 100644 --- a/wire-ios/Wire-iOS/Resources/lt.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/lt.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Sužinoti daugiau"; "peoplepicker.no_matching_results.action.manage_services" = "Valdyti tarnybas"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "Rezultatų nėra."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Visi jau čia."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "Pakvietimą galima naudoti 2 savaites. Išsiųskite naują jei galiojimas baigėsi."; "peoplepicker.send_invitation.dialog.ok" = "GERAI"; -"peoplepicker.invite_more_people" = "Pakviesti daugiau žmonių"; "peoplepicker.invite_team_members" = "Kvieskite žmonių prisijungti prie komandos"; "peoplepicker.quick-action.open-conversation" = "Atverti"; "peoplepicker.quick-action.admin-services" = "Valdyti paslaugas"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Šalis"; -"registration.share_contacts.hero.title" = "Ieškoti žmonių, naudojančių „Wire“"; -"registration.share_contacts.hero.paragraph" = "Dalinkitės savo kontaktais, kad galėtumėme jus sujungti su kitais. Visą informaciją mes nuasmeniname ir su niekuo nesidaliname."; -"registration.share_contacts.find_friends_button.title" = "Dalintis kontaktais"; -"registration.share_contacts.skip_button.title" = "Vėliau"; - -"registration.address_book_access_denied.hero.title" = "„Wire“ neturi teisės prisijungti prie jūsų kontaktų."; -"registration.address_book_access_denied.hero.paragraph1" = "„Wire“ padės rasti draugus jei pasidalinsite kontaktais."; -"registration.address_book_access_denied.hero.paragraph2" = "Norėdami leisti prisijungti, spustelėkite Nustatymai ir įjunkite Kontaktai."; -"registration.address_book_access_denied.settings_button.title" = "Nustatymai"; -"registration.address_book_access_denied.maybe_later_button.title" = "Gal vėliau"; - "registration.push_access_denied.hero.title" = "Niekada nepraleiskite skambučio ar žinutės."; "registration.push_access_denied.hero.paragraph1" = "Aktyvuokite Pranešimus Nustatymuose."; "registration.push_access_denied.settings_button.title" = "Eiti į Nustatymus"; diff --git a/wire-ios/Wire-iOS/Resources/lv.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/lv.lproj/Localizable.strings index b0de130db6b..d3ce3973e60 100644 --- a/wire-ios/Wire-iOS/Resources/lv.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/lv.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Uzzināt vairāk"; "peoplepicker.no_matching_results.action.manage_services" = "Manage Services"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "Nav rezultātu."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Everyone’s here."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "It can be used for 2 weeks. Send a new one if it expires."; "peoplepicker.send_invitation.dialog.ok" = "Labi"; -"peoplepicker.invite_more_people" = "Invite more people"; "peoplepicker.invite_team_members" = "Invite people to join the team"; "peoplepicker.quick-action.open-conversation" = "Atvērt"; "peoplepicker.quick-action.admin-services" = "Manage Services"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Country"; -"registration.share_contacts.hero.title" = "Find people on Wire"; -"registration.share_contacts.hero.paragraph" = "Share your contacts so we can connect you with others. We anonymize all information and do not share it with anyone else."; -"registration.share_contacts.find_friends_button.title" = "Share contacts"; -"registration.share_contacts.skip_button.title" = "Not now"; - -"registration.address_book_access_denied.hero.title" = "Wire does not have access to your contacts."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire helps find your friends if you share your contacts."; -"registration.address_book_access_denied.hero.paragraph2" = "To enable access tap Settings and turn on Contacts."; -"registration.address_book_access_denied.settings_button.title" = "Uzstādījumi"; -"registration.address_book_access_denied.maybe_later_button.title" = "Maybe later"; - "registration.push_access_denied.hero.title" = "Never miss a call or a message."; "registration.push_access_denied.hero.paragraph1" = "Enable Notifications in Settings."; "registration.push_access_denied.settings_button.title" = "Go to Settings"; diff --git a/wire-ios/Wire-iOS/Resources/ms.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/ms.lproj/Localizable.strings index 2961290b08d..405bb1c3a69 100644 --- a/wire-ios/Wire-iOS/Resources/ms.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/ms.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Learn more"; "peoplepicker.no_matching_results.action.manage_services" = "Manage Services"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "No results."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Everyone’s here."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "It can be used for 2 weeks. Send a new one if it expires."; "peoplepicker.send_invitation.dialog.ok" = "ok"; -"peoplepicker.invite_more_people" = "Invite more people"; "peoplepicker.invite_team_members" = "Invite people to join the team"; "peoplepicker.quick-action.open-conversation" = "Open"; "peoplepicker.quick-action.admin-services" = "Manage Services"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Country"; -"registration.share_contacts.hero.title" = "Find people on Wire"; -"registration.share_contacts.hero.paragraph" = "Share your contacts so we can connect you with others. We anonymize all information and do not share it with anyone else."; -"registration.share_contacts.find_friends_button.title" = "Share contacts"; -"registration.share_contacts.skip_button.title" = "Not now"; - -"registration.address_book_access_denied.hero.title" = "Wire does not have access to your contacts."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire helps find your friends if you share your contacts."; -"registration.address_book_access_denied.hero.paragraph2" = "To enable access tap Settings and turn on Contacts."; -"registration.address_book_access_denied.settings_button.title" = "tetapan"; -"registration.address_book_access_denied.maybe_later_button.title" = "Maybe later"; - "registration.push_access_denied.hero.title" = "Never miss a call or a message."; "registration.push_access_denied.hero.paragraph1" = "Enable Notifications in Settings."; "registration.push_access_denied.settings_button.title" = "Go to Settings"; diff --git a/wire-ios/Wire-iOS/Resources/my.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/my.lproj/Localizable.strings index 6de587dbbc6..e1d1697b81b 100644 --- a/wire-ios/Wire-iOS/Resources/my.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/my.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Learn more"; "peoplepicker.no_matching_results.action.manage_services" = "Manage Services"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "No results."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Everyone’s here."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "It can be used for 2 weeks. Send a new one if it expires."; "peoplepicker.send_invitation.dialog.ok" = "OK"; -"peoplepicker.invite_more_people" = "Invite more people"; "peoplepicker.invite_team_members" = "Invite people to join the team"; "peoplepicker.quick-action.open-conversation" = "Open"; "peoplepicker.quick-action.admin-services" = "Manage Services"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Country"; -"registration.share_contacts.hero.title" = "Find people on Wire"; -"registration.share_contacts.hero.paragraph" = "Share your contacts so we can connect you with others. We anonymize all information and do not share it with anyone else."; -"registration.share_contacts.find_friends_button.title" = "Share contacts"; -"registration.share_contacts.skip_button.title" = "Not now"; - -"registration.address_book_access_denied.hero.title" = "Wire does not have access to your contacts."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire helps find your friends if you share your contacts."; -"registration.address_book_access_denied.hero.paragraph2" = "To enable access tap Settings and turn on Contacts."; -"registration.address_book_access_denied.settings_button.title" = "Settings"; -"registration.address_book_access_denied.maybe_later_button.title" = "Maybe later"; - "registration.push_access_denied.hero.title" = "Never miss a call or a message."; "registration.push_access_denied.hero.paragraph1" = "Enable Notifications in Settings."; "registration.push_access_denied.settings_button.title" = "Go to Settings"; diff --git a/wire-ios/Wire-iOS/Resources/nl.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/nl.lproj/Localizable.strings index 44017e2f11f..535eb6c0f64 100644 --- a/wire-ios/Wire-iOS/Resources/nl.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/nl.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Leer meer"; "peoplepicker.no_matching_results.action.manage_services" = "Beheer diensten"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "Geen resultaten"; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Iedereen is hier."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "De uitnodiging kan 2 weken gebruikt worden. Stuur een nieuwe als hij verlopen is."; "peoplepicker.send_invitation.dialog.ok" = "OK"; -"peoplepicker.invite_more_people" = "Nodig meer mensen uit"; "peoplepicker.invite_team_members" = "Nodig andere mensen uit voor het team"; "peoplepicker.quick-action.open-conversation" = "Openen"; "peoplepicker.quick-action.admin-services" = "Beheer diensten"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Land"; -"registration.share_contacts.hero.title" = "Vind mensen op Wire"; -"registration.share_contacts.hero.paragraph" = "Geef Wire toegang tot je contacten om je te verbinden met andere mensen. We anonimiseren deze gegevens en delen ze met niemand anders."; -"registration.share_contacts.find_friends_button.title" = "Deel contacten"; -"registration.share_contacts.skip_button.title" = "Niet nu"; - -"registration.address_book_access_denied.hero.title" = "Wire heeft geen toegang tot je contacten."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire helpt je om je vrienden te vinden als je je contacten deelt."; -"registration.address_book_access_denied.hero.paragraph2" = "Om toegang te geven ga je naar de instellingen voor Wire en geef je toegang tot je contacten."; -"registration.address_book_access_denied.settings_button.title" = "Instellingen"; -"registration.address_book_access_denied.maybe_later_button.title" = "Misschien later"; - "registration.push_access_denied.hero.title" = "Geen gesprekken of berichten missen"; "registration.push_access_denied.hero.paragraph1" = "Zet notificaties aan in de instellingen voor Wire."; "registration.push_access_denied.settings_button.title" = "Ga naar Instellingen"; diff --git a/wire-ios/Wire-iOS/Resources/no.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/no.lproj/Localizable.strings index 912d9131e2c..bed4adf60aa 100644 --- a/wire-ios/Wire-iOS/Resources/no.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/no.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Lær mer"; "peoplepicker.no_matching_results.action.manage_services" = "Manage Services"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "Ingen treff."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Alle er her."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "It can be used for 2 weeks. Send a new one if it expires."; "peoplepicker.send_invitation.dialog.ok" = "OK"; -"peoplepicker.invite_more_people" = "Inviter andre"; "peoplepicker.invite_team_members" = "Invitere folk til bli med på teamet"; "peoplepicker.quick-action.open-conversation" = "Åpne"; "peoplepicker.quick-action.admin-services" = "Manage Services"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Land"; -"registration.share_contacts.hero.title" = "Find people on Wire"; -"registration.share_contacts.hero.paragraph" = "Share your contacts so we can connect you with others. We anonymize all information and do not share it with anyone else."; -"registration.share_contacts.find_friends_button.title" = "Del kontakter"; -"registration.share_contacts.skip_button.title" = "Ikke nå"; - -"registration.address_book_access_denied.hero.title" = "Wire does not have access to your contacts."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire helps find your friends if you share your contacts."; -"registration.address_book_access_denied.hero.paragraph2" = "To enable access tap Settings and turn on Contacts."; -"registration.address_book_access_denied.settings_button.title" = "Innstillinger"; -"registration.address_book_access_denied.maybe_later_button.title" = "Kanskje senere"; - "registration.push_access_denied.hero.title" = "Never miss a call or a message."; "registration.push_access_denied.hero.paragraph1" = "Enable Notifications in Settings."; "registration.push_access_denied.settings_button.title" = "Gå til innstillinger"; diff --git a/wire-ios/Wire-iOS/Resources/pl.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/pl.lproj/Localizable.strings index 9fc3403ea8b..819881b29d4 100644 --- a/wire-ios/Wire-iOS/Resources/pl.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/pl.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Dowiedz się więcej"; "peoplepicker.no_matching_results.action.manage_services" = "Zarządzaj usługami"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "Brak wyników."; "peoplepicker.no_matching_results.message.users" = "Znajdź osoby w Wire według imienia lub @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Znajdź osoby w Wire według imienia lub @username\n\nZnajdź osoby w innej domenie przez @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Wszyscy są tutaj."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "To może służyć do 2 tygodni. Wyślij nowe, jeśli wygaśnie."; "peoplepicker.send_invitation.dialog.ok" = "OK"; -"peoplepicker.invite_more_people" = "Zaproś więcej osób"; "peoplepicker.invite_team_members" = "Zaproś osoby do zespołu"; "peoplepicker.quick-action.open-conversation" = "Otwórz"; "peoplepicker.quick-action.admin-services" = "Zarządzaj usługami"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Państwo"; -"registration.share_contacts.hero.title" = "Znajdź osoby w Wire"; -"registration.share_contacts.hero.paragraph" = "Wykorzystujemy Twoje dane kontaktowe do łączenia Cię z innymi. Wszystkie informacje są anonimowe i nie dzielimy ich z nikim innym."; -"registration.share_contacts.find_friends_button.title" = "Udostępnij kontakty"; -"registration.share_contacts.skip_button.title" = "Nie teraz"; - -"registration.address_book_access_denied.hero.title" = "Wire nie ma dostępu do twoich kontaktów."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire poszuka twoich przyjaciół jeśli udostępnisz swoje kontakty"; -"registration.address_book_access_denied.hero.paragraph2" = "Aby włączyć dostęp dotknij ustawienia i włącz kontakty."; -"registration.address_book_access_denied.settings_button.title" = "Ustawienia"; -"registration.address_book_access_denied.maybe_later_button.title" = "Może później"; - "registration.push_access_denied.hero.title" = "Nigdy nie przegap połączenia lub wiadomości."; "registration.push_access_denied.hero.paragraph1" = "Włączyć powiadomienia w ustawieniach."; "registration.push_access_denied.settings_button.title" = "Przejdź do Ustawień"; diff --git a/wire-ios/Wire-iOS/Resources/pt-BR.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/pt-BR.lproj/Localizable.strings index 6cb62c10333..e7555d3784f 100644 --- a/wire-ios/Wire-iOS/Resources/pt-BR.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/pt-BR.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Saiba mais"; "peoplepicker.no_matching_results.action.manage_services" = "Gerenciar Serviços"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "Sem resultados."; "peoplepicker.no_matching_results.message.users" = "Encontre pessoas no Wire por nome ou @nomedeusuário"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Encontre pessoas no Wire por nome ou @nomedeusuario\n\nEncontre pessoas em outro domínio por @nomedeusuario@nomededominio"; "peoplepicker.no_matching_results.message.users_all_added" = "Todo mundo está aqui."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "Pode ser usado por duas semanas. Envie um novo caso expire."; "peoplepicker.send_invitation.dialog.ok" = "OK"; -"peoplepicker.invite_more_people" = "Convidar mais pessoas"; "peoplepicker.invite_team_members" = "Convide pessoas para entrar na equipe"; "peoplepicker.quick-action.open-conversation" = "Abrir"; "peoplepicker.quick-action.admin-services" = "Gerenciar serviços"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "País"; -"registration.share_contacts.hero.title" = "Encontrar pessoas no Wire"; -"registration.share_contacts.hero.paragraph" = "Compartilhe seus contatos, assim podemos conectar você com outras pessoas. Nós tornamos secretas todas as informações e não compartilhamos com mais ninguém."; -"registration.share_contacts.find_friends_button.title" = "Compartilhar Contatos"; -"registration.share_contacts.skip_button.title" = "Agora não"; - -"registration.address_book_access_denied.hero.title" = "O Wire não tem acesso aos seus contatos."; -"registration.address_book_access_denied.hero.paragraph1" = "O Wire ajuda você a encontrar seus amigos, se você compartilhar com seus contatos."; -"registration.address_book_access_denied.hero.paragraph2" = "Para habilitar os contatos toque em Ajustes e ative os Contatos."; -"registration.address_book_access_denied.settings_button.title" = "Ajustes"; -"registration.address_book_access_denied.maybe_later_button.title" = "Talvez mais tarde"; - "registration.push_access_denied.hero.title" = "Nunca perca uma chamada ou uma mensagem."; "registration.push_access_denied.hero.paragraph1" = "Habilite Notificações em Ajustes."; "registration.push_access_denied.settings_button.title" = "Vá para os ajustes"; diff --git a/wire-ios/Wire-iOS/Resources/pt.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/pt.lproj/Localizable.strings index 6247d8380fd..ac65cfe4af1 100644 --- a/wire-ios/Wire-iOS/Resources/pt.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/pt.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Saber mais"; "peoplepicker.no_matching_results.action.manage_services" = "Gerir Serviços"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "Sem resultados."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Everyone’s here."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "Pode ser usado durante 2 semanas. Envie um novo se expirar."; "peoplepicker.send_invitation.dialog.ok" = "Ok"; -"peoplepicker.invite_more_people" = "Convidar mais pessoas"; "peoplepicker.invite_team_members" = "Convidar pessoas para se juntarem à equipa"; "peoplepicker.quick-action.open-conversation" = "Abrir"; "peoplepicker.quick-action.admin-services" = "Gerir Serviços"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "País"; -"registration.share_contacts.hero.title" = "Find people on Wire"; -"registration.share_contacts.hero.paragraph" = "Share your contacts so we can connect you with others. We anonymize all information and do not share it with anyone else."; -"registration.share_contacts.find_friends_button.title" = "Partilhar contatos"; -"registration.share_contacts.skip_button.title" = "Not now"; - -"registration.address_book_access_denied.hero.title" = "Wire does not have access to your contacts."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire helps find your friends if you share your contacts."; -"registration.address_book_access_denied.hero.paragraph2" = "To enable access tap Settings and turn on Contacts."; -"registration.address_book_access_denied.settings_button.title" = "Definições"; -"registration.address_book_access_denied.maybe_later_button.title" = "Maybe later"; - "registration.push_access_denied.hero.title" = "Never miss a call or a message."; "registration.push_access_denied.hero.paragraph1" = "Enable Notifications in Settings."; "registration.push_access_denied.settings_button.title" = "Go to Settings"; diff --git a/wire-ios/Wire-iOS/Resources/ro.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/ro.lproj/Localizable.strings index 223aae3b0a6..0cc5daa71a5 100644 --- a/wire-ios/Wire-iOS/Resources/ro.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/ro.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Află mai multe"; "peoplepicker.no_matching_results.action.manage_services" = "Manage Services"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "Fără rezultate."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Everyone’s here."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "Poate fi folosit timp de 2 săptămâni. Trimite unul nou, în cazul în care expiră."; "peoplepicker.send_invitation.dialog.ok" = "OK"; -"peoplepicker.invite_more_people" = "Invită mai multe persoane"; "peoplepicker.invite_team_members" = "Invită oameni în echipă"; "peoplepicker.quick-action.open-conversation" = "Deschide"; "peoplepicker.quick-action.admin-services" = "Manage Services"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Țară"; -"registration.share_contacts.hero.title" = "Find people on Wire"; -"registration.share_contacts.hero.paragraph" = "Share your contacts so we can connect you with others. We anonymize all information and do not share it with anyone else."; -"registration.share_contacts.find_friends_button.title" = "Distribuie contacte"; -"registration.share_contacts.skip_button.title" = "Nu acum"; - -"registration.address_book_access_denied.hero.title" = "Wire does not have access to your contacts."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire helps find your friends if you share your contacts."; -"registration.address_book_access_denied.hero.paragraph2" = "To enable access tap Settings and turn on Contacts."; -"registration.address_book_access_denied.settings_button.title" = "Setări"; -"registration.address_book_access_denied.maybe_later_button.title" = "Maybe later"; - "registration.push_access_denied.hero.title" = "Never miss a call or a message."; "registration.push_access_denied.hero.paragraph1" = "Enable Notifications in Settings."; "registration.push_access_denied.settings_button.title" = "Go to Settings"; diff --git a/wire-ios/Wire-iOS/Resources/ru.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/ru.lproj/Localizable.strings index 6de515386ed..1559e862d81 100644 --- a/wire-ios/Wire-iOS/Resources/ru.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/ru.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Подробнее"; "peoplepicker.no_matching_results.action.manage_services" = "Управление сервисами"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "Ничего не найдено."; "peoplepicker.no_matching_results.message.users" = "Найти пользователей в Wire, используя имя или @псевдоним"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Найти пользователей в Wire, используя имя или @псевдоним\n\nНайти пользователей в другом домене, используя @псевдоним@домен"; "peoplepicker.no_matching_results.message.users_all_added" = "Все пользователи добавлены."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "Оно будет актуально в течение 2 недель. Вы можете отправить новое приглашение, если срок этого истечет."; "peoplepicker.send_invitation.dialog.ok" = "OK"; -"peoplepicker.invite_more_people" = "Пригласить больше пользователей"; "peoplepicker.invite_team_members" = "Пригласите пользователей в команду"; "peoplepicker.quick-action.open-conversation" = "Открыть"; "peoplepicker.quick-action.admin-services" = "Управление сервисами"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Страна"; -"registration.share_contacts.hero.title" = "Найти друзей в Wire"; -"registration.share_contacts.hero.paragraph" = "Поделитесь своими контактами, чтобы мы могли соединить вас с другими пользователями. Мы анонимизируем всю информацию и не делимся ею с кем-либо еще."; -"registration.share_contacts.find_friends_button.title" = "Обмен контактами"; -"registration.share_contacts.skip_button.title" = "Не сейчас"; - -"registration.address_book_access_denied.hero.title" = "У Wire нет доступа к вашим контактам."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire помогает найти друзей, если вы делитесь своими контактами."; -"registration.address_book_access_denied.hero.paragraph2" = "Чтобы включить доступ, зайдите в Настройки и разрешите доступ к Контактам."; -"registration.address_book_access_denied.settings_button.title" = "Настройки"; -"registration.address_book_access_denied.maybe_later_button.title" = "Может быть позже"; - "registration.push_access_denied.hero.title" = "Не пропустите ни одного звонка или сообщения."; "registration.push_access_denied.hero.paragraph1" = "Включить уведомления в настройках."; "registration.push_access_denied.settings_button.title" = "Перейти в настройки"; diff --git a/wire-ios/Wire-iOS/Resources/si.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/si.lproj/Localizable.strings index 8504abef4af..54ac821f37e 100644 --- a/wire-ios/Wire-iOS/Resources/si.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/si.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "තව දැනගන්න"; "peoplepicker.no_matching_results.action.manage_services" = "සේවා කළමනාකරණය"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "ප්‍රතිඵල නැත."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Everyone’s here."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "It can be used for 2 weeks. Send a new one if it expires."; "peoplepicker.send_invitation.dialog.ok" = "හරි"; -"peoplepicker.invite_more_people" = "ආරාධනා කරන්න"; "peoplepicker.invite_team_members" = "කණ්ඩායමට එක්වීමට ආරාධනා කරන්න"; "peoplepicker.quick-action.open-conversation" = "අරින්න"; "peoplepicker.quick-action.admin-services" = "සේවා කළමනාකරණය"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Country"; -"registration.share_contacts.hero.title" = "Find people on Wire"; -"registration.share_contacts.hero.paragraph" = "Share your contacts so we can connect you with others. We anonymize all information and do not share it with anyone else."; -"registration.share_contacts.find_friends_button.title" = "සබඳතා බෙදාගන්න"; -"registration.share_contacts.skip_button.title" = "Not now"; - -"registration.address_book_access_denied.hero.title" = "Wire does not have access to your contacts."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire helps find your friends if you share your contacts."; -"registration.address_book_access_denied.hero.paragraph2" = "To enable access tap Settings and turn on Contacts."; -"registration.address_book_access_denied.settings_button.title" = "Settings"; -"registration.address_book_access_denied.maybe_later_button.title" = "Maybe later"; - "registration.push_access_denied.hero.title" = "Never miss a call or a message."; "registration.push_access_denied.hero.paragraph1" = "Enable Notifications in Settings."; "registration.push_access_denied.settings_button.title" = "Go to Settings"; diff --git a/wire-ios/Wire-iOS/Resources/sk.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/sk.lproj/Localizable.strings index 8614302ef8b..3bfa2dc1b35 100644 --- a/wire-ios/Wire-iOS/Resources/sk.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/sk.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Zistiť viac"; "peoplepicker.no_matching_results.action.manage_services" = "Správa služieb"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "Žiadne výsledky."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Všetci sú tu."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "Môže byť použitá 2 týždne. Odošlite novú, ak jej platnosť vyprší."; "peoplepicker.send_invitation.dialog.ok" = "OK"; -"peoplepicker.invite_more_people" = "Pozvať viac ľudí"; "peoplepicker.invite_team_members" = "Pozvať ľudí do tímu"; "peoplepicker.quick-action.open-conversation" = "Otvoriť"; "peoplepicker.quick-action.admin-services" = "Správa služieb"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Krajina"; -"registration.share_contacts.hero.title" = "Find people on Wire"; -"registration.share_contacts.hero.paragraph" = "Share your contacts so we can connect you with others. We anonymize all information and do not share it with anyone else."; -"registration.share_contacts.find_friends_button.title" = "Zdieľať kontakty"; -"registration.share_contacts.skip_button.title" = "Teraz nie"; - -"registration.address_book_access_denied.hero.title" = "Wire does not have access to your contacts."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire helps find your friends if you share your contacts."; -"registration.address_book_access_denied.hero.paragraph2" = "To enable access tap Settings and turn on Contacts."; -"registration.address_book_access_denied.settings_button.title" = "Nastavenia"; -"registration.address_book_access_denied.maybe_later_button.title" = "Maybe later"; - "registration.push_access_denied.hero.title" = "Never miss a call or a message."; "registration.push_access_denied.hero.paragraph1" = "Enable Notifications in Settings."; "registration.push_access_denied.settings_button.title" = "Go to Settings"; diff --git a/wire-ios/Wire-iOS/Resources/sl.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/sl.lproj/Localizable.strings index 750b1183734..1e706b7c25c 100644 --- a/wire-ios/Wire-iOS/Resources/sl.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/sl.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Nauči se več"; "peoplepicker.no_matching_results.action.manage_services" = "Manage Services"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "Ni rezultatov."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Everyone’s here."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "Lahko se uporabi v roku 2 tednov. Pošlji novo, ko se ta izteče."; "peoplepicker.send_invitation.dialog.ok" = "V redu"; -"peoplepicker.invite_more_people" = "Povabi več oseb"; "peoplepicker.invite_team_members" = "Invite people to join the team"; "peoplepicker.quick-action.open-conversation" = "Odpri"; "peoplepicker.quick-action.admin-services" = "Manage Services"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Država"; -"registration.share_contacts.hero.title" = "Najdi osebe na Wire"; -"registration.share_contacts.hero.paragraph" = "Delite vaše stike, da vas lahko povežemo z drugimi. Vse informacije anonimiziramo in ne delimo z drugimi."; -"registration.share_contacts.find_friends_button.title" = "Deli stike"; -"registration.share_contacts.skip_button.title" = "Ne zdaj"; - -"registration.address_book_access_denied.hero.title" = "Wire nima dostopa do vaših stikov."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire vam pomaga najti vaše prijatelje, če delite vaše stike."; -"registration.address_book_access_denied.hero.paragraph2" = "Za dostop tapnite Nastavitve in vklopite Stiki."; -"registration.address_book_access_denied.settings_button.title" = "Nastavitve"; -"registration.address_book_access_denied.maybe_later_button.title" = "Morda kasneje"; - "registration.push_access_denied.hero.title" = "Nikoli ne zamudi klica ali sporočila."; "registration.push_access_denied.hero.paragraph1" = "Omogoči obvestila v nastavitvah."; "registration.push_access_denied.settings_button.title" = "Pojdi v nastavitve"; diff --git a/wire-ios/Wire-iOS/Resources/sr-Latn.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/sr-Latn.lproj/Localizable.strings index 80901e6ca8d..6bb905ef10c 100644 --- a/wire-ios/Wire-iOS/Resources/sr-Latn.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/sr-Latn.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Learn more"; "peoplepicker.no_matching_results.action.manage_services" = "Manage Services"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "No results."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Everyone’s here."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "It can be used for 2 weeks. Send a new one if it expires."; "peoplepicker.send_invitation.dialog.ok" = "U redu"; -"peoplepicker.invite_more_people" = "Invite more people"; "peoplepicker.invite_team_members" = "Invite people to join the team"; "peoplepicker.quick-action.open-conversation" = "Open"; "peoplepicker.quick-action.admin-services" = "Manage Services"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Country"; -"registration.share_contacts.hero.title" = "Find people on Wire"; -"registration.share_contacts.hero.paragraph" = "Share your contacts so we can connect you with others. We anonymize all information and do not share it with anyone else."; -"registration.share_contacts.find_friends_button.title" = "Share contacts"; -"registration.share_contacts.skip_button.title" = "Not now"; - -"registration.address_book_access_denied.hero.title" = "Wire does not have access to your contacts."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire helps find your friends if you share your contacts."; -"registration.address_book_access_denied.hero.paragraph2" = "To enable access tap Settings and turn on Contacts."; -"registration.address_book_access_denied.settings_button.title" = "Postavke"; -"registration.address_book_access_denied.maybe_later_button.title" = "Maybe later"; - "registration.push_access_denied.hero.title" = "Never miss a call or a message."; "registration.push_access_denied.hero.paragraph1" = "Enable Notifications in Settings."; "registration.push_access_denied.settings_button.title" = "Go to Settings"; diff --git a/wire-ios/Wire-iOS/Resources/sr.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/sr.lproj/Localizable.strings index 582896c1059..c0f817f7fea 100644 --- a/wire-ios/Wire-iOS/Resources/sr.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/sr.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Сазнајте више"; "peoplepicker.no_matching_results.action.manage_services" = "Управљање услугама"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "Нема резултата."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Everyone’s here."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "Важи две недеље. Пошаљите нову ако ова истекне."; "peoplepicker.send_invitation.dialog.ok" = "У реду"; -"peoplepicker.invite_more_people" = "Позовите још људи"; "peoplepicker.invite_team_members" = "Позовите људе да се придруже тиму"; "peoplepicker.quick-action.open-conversation" = "Отвори"; "peoplepicker.quick-action.admin-services" = "Управљање услугама"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Земља"; -"registration.share_contacts.hero.title" = "Нађите људе на Вајеру"; -"registration.share_contacts.hero.paragraph" = "Share your contacts so we can connect you with others. We anonymize all information and do not share it with anyone else."; -"registration.share_contacts.find_friends_button.title" = "Дели контакте"; -"registration.share_contacts.skip_button.title" = "Не сада"; - -"registration.address_book_access_denied.hero.title" = "Wire does not have access to your contacts."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire helps find your friends if you share your contacts."; -"registration.address_book_access_denied.hero.paragraph2" = "To enable access tap Settings and turn on Contacts."; -"registration.address_book_access_denied.settings_button.title" = "Поставке"; -"registration.address_book_access_denied.maybe_later_button.title" = "Можда касније"; - "registration.push_access_denied.hero.title" = "Never miss a call or a message."; "registration.push_access_denied.hero.paragraph1" = "Enable Notifications in Settings."; "registration.push_access_denied.settings_button.title" = "Go to Settings"; diff --git a/wire-ios/Wire-iOS/Resources/sv.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/sv.lproj/Localizable.strings index 928fef7f6f6..b15eb555f69 100644 --- a/wire-ios/Wire-iOS/Resources/sv.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/sv.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Läs mer"; "peoplepicker.no_matching_results.action.manage_services" = "Hantera Tjänster"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "Inga resultat."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Alla är här."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "Det kan användas i 2 veckor. Skicka en ny om det löper ut."; "peoplepicker.send_invitation.dialog.ok" = "OK"; -"peoplepicker.invite_more_people" = "Bjud in fler personer"; "peoplepicker.invite_team_members" = "Bjud in personer att gå med i teamet"; "peoplepicker.quick-action.open-conversation" = "Öppna"; "peoplepicker.quick-action.admin-services" = "Hantera Tjänster"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Land"; -"registration.share_contacts.hero.title" = "Hitta personer på Wire"; -"registration.share_contacts.hero.paragraph" = "Tillåt Wire åtkomst till dina kontakter för att ansluta dig med andra. Vi anonymiserar all information och delar inte den med någon annan."; -"registration.share_contacts.find_friends_button.title" = "Dela kontakter"; -"registration.share_contacts.skip_button.title" = "Inte nu"; - -"registration.address_book_access_denied.hero.title" = "Wire har inte åtkomst till dina kontakter."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire hjälper dig att hitta dina vänner om du delar dina kontakter."; -"registration.address_book_access_denied.hero.paragraph2" = "För att aktivera, tryck på Inställningar och aktivera kontakter."; -"registration.address_book_access_denied.settings_button.title" = "Inställningar"; -"registration.address_book_access_denied.maybe_later_button.title" = "Kanske senare"; - "registration.push_access_denied.hero.title" = "Missa aldrig ett samtal eller ett meddelande."; "registration.push_access_denied.hero.paragraph1" = "Aktivera notiser i inställningar."; "registration.push_access_denied.settings_button.title" = "Gå till inställningar"; diff --git a/wire-ios/Wire-iOS/Resources/th.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/th.lproj/Localizable.strings index 6de587dbbc6..e1d1697b81b 100644 --- a/wire-ios/Wire-iOS/Resources/th.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/th.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Learn more"; "peoplepicker.no_matching_results.action.manage_services" = "Manage Services"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "No results."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Everyone’s here."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "It can be used for 2 weeks. Send a new one if it expires."; "peoplepicker.send_invitation.dialog.ok" = "OK"; -"peoplepicker.invite_more_people" = "Invite more people"; "peoplepicker.invite_team_members" = "Invite people to join the team"; "peoplepicker.quick-action.open-conversation" = "Open"; "peoplepicker.quick-action.admin-services" = "Manage Services"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Country"; -"registration.share_contacts.hero.title" = "Find people on Wire"; -"registration.share_contacts.hero.paragraph" = "Share your contacts so we can connect you with others. We anonymize all information and do not share it with anyone else."; -"registration.share_contacts.find_friends_button.title" = "Share contacts"; -"registration.share_contacts.skip_button.title" = "Not now"; - -"registration.address_book_access_denied.hero.title" = "Wire does not have access to your contacts."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire helps find your friends if you share your contacts."; -"registration.address_book_access_denied.hero.paragraph2" = "To enable access tap Settings and turn on Contacts."; -"registration.address_book_access_denied.settings_button.title" = "Settings"; -"registration.address_book_access_denied.maybe_later_button.title" = "Maybe later"; - "registration.push_access_denied.hero.title" = "Never miss a call or a message."; "registration.push_access_denied.hero.paragraph1" = "Enable Notifications in Settings."; "registration.push_access_denied.settings_button.title" = "Go to Settings"; diff --git a/wire-ios/Wire-iOS/Resources/tr.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/tr.lproj/Localizable.strings index a02deeb57e0..5c93b7919a7 100644 --- a/wire-ios/Wire-iOS/Resources/tr.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/tr.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Daha fazla bilgi"; "peoplepicker.no_matching_results.action.manage_services" = "Hizmetleri yönet"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "Sonuç yok."; "peoplepicker.no_matching_results.message.users" = "Wire'daki insanları isim veya @kullanıcıadı'na göre bulun"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Herkes burada."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "2 hafta için kullanılabilir. Süresi dolduğunda yenisini gönderebilirsiniz."; "peoplepicker.send_invitation.dialog.ok" = "TAMAM"; -"peoplepicker.invite_more_people" = "Daha fazla kişi davet et"; "peoplepicker.invite_team_members" = "İnsanları takıma katılmaya davet edin"; "peoplepicker.quick-action.open-conversation" = "Aç"; "peoplepicker.quick-action.admin-services" = "Hizmetleri yönet"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Ülke"; -"registration.share_contacts.hero.title" = "Wire'da yeni insanlar keşfedin"; -"registration.share_contacts.hero.paragraph" = "Kişilerinizi paylaşın ki sizi başkalarına bağlayabilelim. Tüm bilgilerinizi gizler ve kimseyle paylaşmayız."; -"registration.share_contacts.find_friends_button.title" = "Kişileri paylaş"; -"registration.share_contacts.skip_button.title" = "Şimdi değil"; - -"registration.address_book_access_denied.hero.title" = "Wire'ın kişilerinize erişimi yoktur."; -"registration.address_book_access_denied.hero.paragraph1" = "Eğer kişilerinizi paylaşırsanız Wire arkadaşlarınızı bulmanıza yardım eder."; -"registration.address_book_access_denied.hero.paragraph2" = "Erişim sağlamak için Ayarlara girip Kişileri açın."; -"registration.address_book_access_denied.settings_button.title" = "Ayarlar"; -"registration.address_book_access_denied.maybe_later_button.title" = "Belki sonra"; - "registration.push_access_denied.hero.title" = "Asla bir arama veya mesaj kaçırmayın."; "registration.push_access_denied.hero.paragraph1" = "Ayarlardan Bildirimleri Etkinleştir."; "registration.push_access_denied.settings_button.title" = "Ayarlara git"; diff --git a/wire-ios/Wire-iOS/Resources/uk.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/uk.lproj/Localizable.strings index 0fa7210f649..234c86ea659 100644 --- a/wire-ios/Wire-iOS/Resources/uk.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/uk.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Дізнатися більше"; "peoplepicker.no_matching_results.action.manage_services" = "Керування сервісами"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "Нікого не знайдено."; "peoplepicker.no_matching_results.message.users" = "Знайти людей в Wire по імені або @ніку"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Знаходьте людей в Wire по імені або @ніку\n\nЗнаходьте людей з іншого домену,\nвикористовуючи формат @нік@ім'я_домену"; "peoplepicker.no_matching_results.message.users_all_added" = "Всі вже тут."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "Воно дійсне протягом 2 тижнів. Надішліть нове запрошення, якщо термін дії цього закінчиться."; "peoplepicker.send_invitation.dialog.ok" = "OK"; -"peoplepicker.invite_more_people" = "Запросити більше людей"; "peoplepicker.invite_team_members" = "Запросіть колег приєднатися до команди"; "peoplepicker.quick-action.open-conversation" = "Вiдкрити"; "peoplepicker.quick-action.admin-services" = "Керування сервісами"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Країна"; -"registration.share_contacts.hero.title" = "Пошук людей в Wire"; -"registration.share_contacts.hero.paragraph" = "Поділіться своїми контактами, щоб ми могли знайти людей, яких ви знаєте. Ми анонімізуємо всю інформацію та не передаємо її третім особам."; -"registration.share_contacts.find_friends_button.title" = "Поділитись контактами"; -"registration.share_contacts.skip_button.title" = "Не зараз"; - -"registration.address_book_access_denied.hero.title" = "Wire не має доступу до ваших контактів."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire допоможе вам знайти ваших друзів, якщо ви поділитесь контактами."; -"registration.address_book_access_denied.hero.paragraph2" = "Щоб дозволити доступ перейдіть в Налаштування та торкніться до переключателя біля пункту Контакти."; -"registration.address_book_access_denied.settings_button.title" = "Параметри"; -"registration.address_book_access_denied.maybe_later_button.title" = "Можливо, пізніше"; - "registration.push_access_denied.hero.title" = "Не пропустіть жодного дзвінка або повідомлення."; "registration.push_access_denied.hero.paragraph1" = "Увімкніть сповіщення в налаштуваннях."; "registration.push_access_denied.settings_button.title" = "Перейти до налаштувань"; diff --git a/wire-ios/Wire-iOS/Resources/ur.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/ur.lproj/Localizable.strings index 6de587dbbc6..e1d1697b81b 100644 --- a/wire-ios/Wire-iOS/Resources/ur.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/ur.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Learn more"; "peoplepicker.no_matching_results.action.manage_services" = "Manage Services"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "No results."; "peoplepicker.no_matching_results.message.users" = "Find people in Wire by name or @username"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Find people in Wire by name or @username\n\nFind people on another domain by @username@domainname"; "peoplepicker.no_matching_results.message.users_all_added" = "Everyone’s here."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "It can be used for 2 weeks. Send a new one if it expires."; "peoplepicker.send_invitation.dialog.ok" = "OK"; -"peoplepicker.invite_more_people" = "Invite more people"; "peoplepicker.invite_team_members" = "Invite people to join the team"; "peoplepicker.quick-action.open-conversation" = "Open"; "peoplepicker.quick-action.admin-services" = "Manage Services"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Country"; -"registration.share_contacts.hero.title" = "Find people on Wire"; -"registration.share_contacts.hero.paragraph" = "Share your contacts so we can connect you with others. We anonymize all information and do not share it with anyone else."; -"registration.share_contacts.find_friends_button.title" = "Share contacts"; -"registration.share_contacts.skip_button.title" = "Not now"; - -"registration.address_book_access_denied.hero.title" = "Wire does not have access to your contacts."; -"registration.address_book_access_denied.hero.paragraph1" = "Wire helps find your friends if you share your contacts."; -"registration.address_book_access_denied.hero.paragraph2" = "To enable access tap Settings and turn on Contacts."; -"registration.address_book_access_denied.settings_button.title" = "Settings"; -"registration.address_book_access_denied.maybe_later_button.title" = "Maybe later"; - "registration.push_access_denied.hero.title" = "Never miss a call or a message."; "registration.push_access_denied.hero.paragraph1" = "Enable Notifications in Settings."; "registration.push_access_denied.settings_button.title" = "Go to Settings"; diff --git a/wire-ios/Wire-iOS/Resources/vi.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/vi.lproj/Localizable.strings index 1b7e3d38681..e14503f7e43 100644 --- a/wire-ios/Wire-iOS/Resources/vi.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/vi.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "Tìm hiểu thêm"; "peoplepicker.no_matching_results.action.manage_services" = "Quản lý Dịch vụ"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "Không có kết quả."; "peoplepicker.no_matching_results.message.users" = "Tìm kiếm mọi người trong Wire bằng tên hoặc @tên người dùng"; "peoplepicker.no_matching_results.message.usersAndFederation" = "Tìm kiếm mọi người trong Wire bằng tên hoặc @tên người dùng\n\nTìm kiếm mọi người bằng tên miền khác như @tên_người_dùng@tên_miền"; "peoplepicker.no_matching_results.message.users_all_added" = "Mọi người đã ở đây."; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "Nó có thể được dùng trong 2 tuần. Gửi một cái mới nếu đã quá hạn."; "peoplepicker.send_invitation.dialog.ok" = "OK"; -"peoplepicker.invite_more_people" = "Mời nhiều người hơn"; "peoplepicker.invite_team_members" = "Mời mọi người vào nhóm"; "peoplepicker.quick-action.open-conversation" = "Mở"; "peoplepicker.quick-action.admin-services" = "Quản lý Dịch vụ"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "Quốc gia"; -"registration.share_contacts.hero.title" = "Tìm mọi người trên Wire"; -"registration.share_contacts.hero.paragraph" = "Chia sẽ danh bạ của bạn nên chúng tôi có thể kết nối bạn với người khác. Chúng tôi giữ bí mật tất cả thông tin và không chia sẽ nó với ai khác."; -"registration.share_contacts.find_friends_button.title" = "Chia sẽ danh bạ"; -"registration.share_contacts.skip_button.title" = "Không phải lúc này"; - -"registration.address_book_access_denied.hero.title" = "Wire không truy cập danh bạ của bạn."; -"registration.address_book_access_denied.hero.paragraph1" = "Wirw giúp tìm bạn bè của bạn nếu bạn chia sẽ danh bạ của bạn."; -"registration.address_book_access_denied.hero.paragraph2" = "Để kích hoạt truy cập Thiết lập và mở Danh bạ."; -"registration.address_book_access_denied.settings_button.title" = "Cài đặt"; -"registration.address_book_access_denied.maybe_later_button.title" = "Có lẽ để sau"; - "registration.push_access_denied.hero.title" = "Không bao giờ lỡ cuộc gọi hoặc tin nhắn."; "registration.push_access_denied.hero.paragraph1" = "Bật Thông báo trong Thiết lập."; "registration.push_access_denied.settings_button.title" = "Đi đến Thiết lập"; diff --git a/wire-ios/Wire-iOS/Resources/zh-Hans.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/zh-Hans.lproj/Localizable.strings index 2d9f11fb339..add288746f1 100644 --- a/wire-ios/Wire-iOS/Resources/zh-Hans.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/zh-Hans.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "更多信息"; "peoplepicker.no_matching_results.action.manage_services" = "管理服务"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "没有结果。"; "peoplepicker.no_matching_results.message.users" = "通过名字或 @username 在Wire查找用户"; "peoplepicker.no_matching_results.message.usersAndFederation" = "用 @username@domainname 在 Wire 查找用户\n\n通过@username@domainname 在另一个域查找人员"; "peoplepicker.no_matching_results.message.users_all_added" = "所有用户已加入群聊"; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "邀请两周内有效。如果过期,请发送新的邀请。"; "peoplepicker.send_invitation.dialog.ok" = "好"; -"peoplepicker.invite_more_people" = "邀请更多人"; "peoplepicker.invite_team_members" = "邀请好友使用Wire"; "peoplepicker.quick-action.open-conversation" = "开启"; "peoplepicker.quick-action.admin-services" = "管理服务"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "国家"; -"registration.share_contacts.hero.title" = "在Wire上搜寻联络人"; -"registration.share_contacts.hero.paragraph" = "分享您的通讯录来寻找其他好友。我们将您的信息匿名处理并且不会泄漏给任何第三方。"; -"registration.share_contacts.find_friends_button.title" = "共享联络人"; -"registration.share_contacts.skip_button.title" = "先跳过"; - -"registration.address_book_access_denied.hero.title" = "Wire没有您的通讯录使用权限。"; -"registration.address_book_access_denied.hero.paragraph1" = "在您分享通讯录后,Wire将帮助您找到其他的好友。"; -"registration.address_book_access_denied.hero.paragraph2" = "请到手机「设置」来开启通讯录使用权限。"; -"registration.address_book_access_denied.settings_button.title" = "设置"; -"registration.address_book_access_denied.maybe_later_button.title" = "稍后再说"; - "registration.push_access_denied.hero.title" = "别错过来电或信息。"; "registration.push_access_denied.hero.paragraph1" = "在手机「设置」中开启接收通知消息的权限。"; "registration.push_access_denied.settings_button.title" = "打开设置"; diff --git a/wire-ios/Wire-iOS/Resources/zh-Hant.lproj/Localizable.strings b/wire-ios/Wire-iOS/Resources/zh-Hant.lproj/Localizable.strings index 59263c93eb9..5ec80a7507a 100644 --- a/wire-ios/Wire-iOS/Resources/zh-Hant.lproj/Localizable.strings +++ b/wire-ios/Wire-iOS/Resources/zh-Hant.lproj/Localizable.strings @@ -86,7 +86,6 @@ "peoplepicker.no_matching_results.action.learn_more" = "瞭解詳情"; "peoplepicker.no_matching_results.action.manage_services" = "管理服務"; -"peoplepicker.no_matching_results_after_address_book_upload_title" = "沒有符合結果。"; "peoplepicker.no_matching_results.message.users" = "依照使用者名稱或@別名在Wire尋找"; "peoplepicker.no_matching_results.message.usersAndFederation" = "依照使用者名稱或@別名在Wire尋找\n依照使用者名稱或@別名@網域在其它網域尋找"; "peoplepicker.no_matching_results.message.users_all_added" = "大家都已加入"; @@ -98,7 +97,6 @@ "peoplepicker.send_invitation.dialog.message" = "連結兩週內有效。如逾期請重新發送。"; "peoplepicker.send_invitation.dialog.ok" = "確認"; -"peoplepicker.invite_more_people" = "邀請更多人"; "peoplepicker.invite_team_members" = "邀請其他人加入團隊"; "peoplepicker.quick-action.open-conversation" = "開啟"; "peoplepicker.quick-action.admin-services" = "管理服務"; @@ -1590,17 +1588,6 @@ "registration.country_select.title" = "國家"; -"registration.share_contacts.hero.title" = "在Wire上找尋其他人"; -"registration.share_contacts.hero.paragraph" = "分享您的通訊錄來找尋其他連絡人。我們將您的資料匿名處理並且不與任何人分享。"; -"registration.share_contacts.find_friends_button.title" = "分享通訊錄"; -"registration.share_contacts.skip_button.title" = "現在略過"; - -"registration.address_book_access_denied.hero.title" = "Wire沒有您的通訊錄的使用權限。"; -"registration.address_book_access_denied.hero.paragraph1" = "如果您分享通訊錄,我們將幫助您找到其他的連絡人。"; -"registration.address_book_access_denied.hero.paragraph2" = "請到手機「設定」來開啟聯絡資訊使用權限。"; -"registration.address_book_access_denied.settings_button.title" = "設定"; -"registration.address_book_access_denied.maybe_later_button.title" = "現在略過"; - "registration.push_access_denied.hero.title" = "別錯過來電或訊息。"; "registration.push_access_denied.hero.paragraph1" = "在手機「設定」允許通知。"; "registration.push_access_denied.settings_button.title" = "開啟設定";