diff --git a/README.md b/README.md index f6630ebbfd..4cd7b2b787 100644 --- a/README.md +++ b/README.md @@ -234,6 +234,8 @@ You can use SimpleX with your own servers and still communicate with people usin Recent and important updates: +[Mar 14, 2024. SimpleX Chat v5.6 beta: adding quantum resistance to Signal double ratchet algorithm.](./blog/20240314-simplex-chat-v5-6-quantum-resistance-signal-double-ratchet-algorithm.md) + [Jan 24, 2024. SimpleX Chat: free infrastructure from Linode, v5.5 released with private notes, group history and a simpler UX to connect.](./blog/20240124-simplex-chat-infrastructure-costs-v5-5-simplex-ux-private-notes-group-history.md) [Nov 25, 2023. SimpleX Chat v5.4 released: link mobile and desktop apps via quantum resistant protocol, and much better groups](./blog/20231125-simplex-chat-v5-4-link-mobile-desktop-quantum-resistant-better-groups.md). diff --git a/apps/ios/Shared/Model/SimpleXAPI.swift b/apps/ios/Shared/Model/SimpleXAPI.swift index 7318a54e92..365f23c33e 100644 --- a/apps/ios/Shared/Model/SimpleXAPI.swift +++ b/apps/ios/Shared/Model/SimpleXAPI.swift @@ -1473,14 +1473,12 @@ class ChatReceiver { } func receiveMsgLoop() async { - // TODO use function that has timeout - if let msg = await chatRecvMsg() { - self._lastMsgTime = .now - await processReceivedMsg(msg) - } - if self.receiveMessages { + while self.receiveMessages { + if let msg = await chatRecvMsg() { + self._lastMsgTime = .now + await processReceivedMsg(msg) + } _ = try? await Task.sleep(nanoseconds: 7_500_000) - await receiveMsgLoop() } } diff --git a/apps/ios/Shared/Views/Chat/ChatItem/FramedItemView.swift b/apps/ios/Shared/Views/Chat/ChatItem/FramedItemView.swift index f7775a7cdd..3475e7a8b6 100644 --- a/apps/ios/Shared/Views/Chat/ChatItem/FramedItemView.swift +++ b/apps/ios/Shared/Views/Chat/ChatItem/FramedItemView.swift @@ -253,6 +253,7 @@ struct FramedItemView: View { ciQuotedMsgTextView(qi, lines: 3) } } + .fixedSize(horizontal: false, vertical: true) .padding(.top, 6) .padding(.horizontal, 12) } diff --git a/apps/ios/Shared/Views/Chat/ChatView.swift b/apps/ios/Shared/Views/Chat/ChatView.swift index 550a9a45b8..3ada57ef5d 100644 --- a/apps/ios/Shared/Views/Chat/ChatView.swift +++ b/apps/ios/Shared/Views/Chat/ChatView.swift @@ -646,7 +646,7 @@ struct ChatView: View { playbackState: $playbackState, playbackTime: $playbackTime ) - .uiKitContextMenu(menu: uiMenu, allowMenu: $allowMenu) + .uiKitContextMenu(maxWidth: maxWidth, menu: uiMenu, allowMenu: $allowMenu) .accessibilityLabel("") if ci.content.msgContent != nil && (ci.meta.itemDeleted == nil || revealed) && ci.reactions.count > 0 { chatItemReactions(ci) diff --git a/apps/ios/Shared/Views/Helpers/ContextMenu.swift b/apps/ios/Shared/Views/Helpers/ContextMenu.swift index 287aba5262..3b82d6eb95 100644 --- a/apps/ios/Shared/Views/Helpers/ContextMenu.swift +++ b/apps/ios/Shared/Views/Helpers/ContextMenu.swift @@ -11,26 +11,31 @@ import UIKit import SwiftUI extension View { - func uiKitContextMenu(menu: Binding, allowMenu: Binding) -> some View { - self.overlay { - if allowMenu.wrappedValue { - self.overlay(Color(uiColor: .systemBackground)).overlay(InteractionView(content: self, menu: menu)) - } + func uiKitContextMenu(maxWidth: CGFloat, menu: Binding, allowMenu: Binding) -> some View { + Group { + if allowMenu.wrappedValue { + InteractionView(content: self, maxWidth: maxWidth, menu: menu) + .fixedSize(horizontal: true, vertical: false) + } else { + self } + } } } -private struct InteractionConfig { - let content: Content - let menu: UIMenu +private class HostingViewHolder: UIView { + var contentSize: CGSize = CGSizeMake(0, 0) + override var intrinsicContentSize: CGSize { get { contentSize } } } -private struct InteractionView: UIViewRepresentable { +struct InteractionView: UIViewRepresentable { let content: Content + var maxWidth: CGFloat @Binding var menu: UIMenu func makeUIView(context: Context) -> UIView { - let view = UIView() + let view = HostingViewHolder() + view.contentSize = CGSizeMake(maxWidth, .infinity) view.backgroundColor = .clear let hostView = UIHostingController(rootView: content) hostView.view.translatesAutoresizingMaskIntoConstraints = false @@ -44,12 +49,16 @@ private struct InteractionView: UIViewRepresentable { ] view.addSubview(hostView.view) view.addConstraints(constraints) + view.layer.cornerRadius = 18 + hostView.view.layer.cornerRadius = 18 let menuInteraction = UIContextMenuInteraction(delegate: context.coordinator) view.addInteraction(menuInteraction) return view } - func updateUIView(_ uiView: UIView, context: Context) {} + func updateUIView(_ uiView: UIView, context: Context) { + (uiView as! HostingViewHolder).contentSize = uiView.subviews[0].sizeThatFits(CGSizeMake(maxWidth, .infinity)) + } func makeCoordinator() -> Coordinator { Coordinator(self) diff --git a/apps/ios/Shared/Views/Onboarding/WhatsNewView.swift b/apps/ios/Shared/Views/Onboarding/WhatsNewView.swift index ece10e46dd..73ea5720c6 100644 --- a/apps/ios/Shared/Views/Onboarding/WhatsNewView.swift +++ b/apps/ios/Shared/Views/Onboarding/WhatsNewView.swift @@ -344,6 +344,37 @@ private let versionDescriptions: [VersionDescription] = [ description: "Thanks to the users – [contribute via Weblate](https://github.com/simplex-chat/simplex-chat/tree/stable#help-translating-simplex-chat)!" ), ] + ), + VersionDescription( + version: "v5.6", + post: URL(string: "https://simplex.chat/blog/20240323-simplex-network-privacy-non-profit-v5-6-quantum-resistant-e2e-encryption-simple-migration.html"), + features: [ + FeatureDescription( + icon: "key", + title: "Quantum resistant encryption", + description: "Enable in direct chats (BETA)!" + ), + FeatureDescription( + icon: "tray.and.arrow.up", + title: "App data migration", + description: "Migrate to another device via QR code." + ), + FeatureDescription( + icon: "phone", + title: "Picture-in-picture calls", + description: "Use the app while in the call." + ), + FeatureDescription( + icon: "hand.raised", + title: "Safer groups", + description: "Admins can block a member for all." + ), + FeatureDescription( + icon: "character", + title: "Hungarian interface", + description: "Thanks to the users – [contribute via Weblate](https://github.com/simplex-chat/simplex-chat/tree/stable#help-translating-simplex-chat)!" + ), + ] ) ] diff --git a/apps/ios/SimpleX Localizations/bg.xcloc/Localized Contents/bg.xliff b/apps/ios/SimpleX Localizations/bg.xcloc/Localized Contents/bg.xliff index 85e4ebb985..f04880ee91 100644 --- a/apps/ios/SimpleX Localizations/bg.xcloc/Localized Contents/bg.xliff +++ b/apps/ios/SimpleX Localizations/bg.xcloc/Localized Contents/bg.xliff @@ -107,6 +107,10 @@ %@ свързан No comment provided by engineer. + + %@ downloaded + No comment provided by engineer. + %@ is connected! %@ е свързан! @@ -127,6 +131,10 @@ %@ сървъри No comment provided by engineer. + + %@ uploaded + No comment provided by engineer. + %@ wants to connect! %@ иска да се свърже! @@ -219,6 +227,7 @@ %lld messages blocked by admin + %lld съобщения, блокирани от администратора No comment provided by engineer. @@ -341,6 +350,10 @@ **Най-поверително**: не използвайте сървъра за известия SimpleX Chat, периодично проверявайте съобщенията във фонов режим (зависи от това колко често използвате приложението). No comment provided by engineer. + + **Please note**: using the same database on two devices will break the decryption of messages from your connections, as a security protection. + No comment provided by engineer. + **Please note**: you will NOT be able to recover or change passphrase if you lose it. **Моля, обърнете внимание**: НЯМА да можете да възстановите или промените паролата, ако я загубите. @@ -356,6 +369,10 @@ **Внимание**: Незабавните push известия изискват парола, запазена в Keychain. No comment provided by engineer. + + **Warning**: the archive will be removed. + No comment provided by engineer. + **e2e encrypted** audio call **e2e криптиран**аудио разговор @@ -612,6 +629,10 @@ Промяната на адреса ще бъде прекъсната. Ще се използва старият адрес за получаване. No comment provided by engineer. + + Admins can block a member for all. + No comment provided by engineer. + Admins can create the links to join groups. Админите могат да създадат линкове за присъединяване към групи. @@ -644,6 +665,7 @@ All messages will be deleted - this cannot be undone! + Всички съобщения ще бъдат изтрити - това не може да бъде отменено! No comment provided by engineer. @@ -666,6 +688,10 @@ Всички ваши контакти ще останат свързани. Актуализацията на профила ще бъде изпратена до вашите контакти. No comment provided by engineer. + + All your contacts, conversations and files will be securely encrypted and uploaded in chunks to configured XFTP relays. + No comment provided by engineer. + Allow Позволи @@ -791,6 +817,10 @@ Компилация на приложението: %@ No comment provided by engineer. + + App data migration + No comment provided by engineer. + App encrypts new local files (except videos). Приложението криптира нови локални файлове (с изключение на видеоклипове). @@ -826,6 +856,18 @@ Изглед No comment provided by engineer. + + Apply + No comment provided by engineer. + + + Archive and upload + No comment provided by engineer. + + + Archiving database + No comment provided by engineer. + Attach Прикачи @@ -923,6 +965,7 @@ Block for all + Блокирай за всички No comment provided by engineer. @@ -937,6 +980,7 @@ Block member for all? + Блокиране на член за всички? No comment provided by engineer. @@ -946,6 +990,7 @@ Blocked by admin + Блокиран от админ No comment provided by engineer. @@ -1013,6 +1058,10 @@ Отказ No comment provided by engineer. + + Cancel migration + No comment provided by engineer. + Cannot access keychain to save database password Няма достъп до Keychain за запазване на паролата за базата данни @@ -1114,6 +1163,10 @@ Чатът е спрян. Ако вече сте използвали тази база данни на друго устройство, трябва да я прехвърлите обратно, преди да стартирате чата отново. No comment provided by engineer. + + Chat migrated! + No comment provided by engineer. + Chat preferences Чат настройки @@ -1134,6 +1187,10 @@ Китайски и Испански интерфейс No comment provided by engineer. + + Choose _Migrate from another device_ on the new device and scan QR code. + No comment provided by engineer. + Choose file Избери файл @@ -1161,6 +1218,7 @@ Clear private notes? + Изчистване на лични бележки? No comment provided by engineer. @@ -1203,6 +1261,10 @@ Потвърди актуализаациите на базата данни No comment provided by engineer. + + Confirm network settings + No comment provided by engineer. + Confirm new passphrase… Потвърди новата парола… @@ -1213,6 +1275,14 @@ Потвърди парола No comment provided by engineer. + + Confirm that you remember database passphrase to migrate it. + No comment provided by engineer. + + + Confirm upload + No comment provided by engineer. + Connect Свързване @@ -1459,10 +1529,12 @@ This is your own one-time link! Created at + Създаден на No comment provided by engineer. Created at: %@ + Създаден на: %@ copied message info @@ -1470,6 +1542,10 @@ This is your own one-time link! Създаден на %@ No comment provided by engineer. + + Creating archive link + No comment provided by engineer. + Creating link… Линкът се създава… @@ -1690,6 +1766,10 @@ This cannot be undone! Изтрий базата данни No comment provided by engineer. + + Delete database from this device + No comment provided by engineer. + Delete file Изтрий файл @@ -1942,7 +2022,7 @@ This cannot be undone! Discover via local network - Открий през локалната мрежа + Откриване през локалната мрежа No comment provided by engineer. @@ -1980,11 +2060,23 @@ This cannot be undone! Понижи версията и отвори чата No comment provided by engineer. + + Download failed + No comment provided by engineer. + Download file Свали файл server test step + + Downloading archive + No comment provided by engineer. + + + Downloading link details + No comment provided by engineer. + Duplicate display name! Дублирано име! @@ -2040,6 +2132,10 @@ This cannot be undone! Активиране за всички No comment provided by engineer. + + Enable in direct chats (BETA)! + No comment provided by engineer. + Enable instant notifications? Активирай незабавни известия? @@ -2155,6 +2251,10 @@ This cannot be undone! Въведи име на групата… No comment provided by engineer. + + Enter passphrase + No comment provided by engineer. + Enter passphrase… Въведи парола… @@ -2215,6 +2315,10 @@ This cannot be undone! Грешка при добавяне на член(ове) No comment provided by engineer. + + Error allowing contact PQ encryption + No comment provided by engineer. + Error changing address Грешка при промяна на адреса @@ -2252,6 +2356,7 @@ This cannot be undone! Error creating message + Грешка при създаване на съобщение No comment provided by engineer. @@ -2304,6 +2409,10 @@ This cannot be undone! Грешка при изтриване на потребителския профил No comment provided by engineer. + + Error downloading the archive + No comment provided by engineer. + Error enabling delivery receipts! Грешка при активирането на потвърждениeто за доставка! @@ -2379,6 +2488,10 @@ This cannot be undone! Грешка при запазване на парола в Кeychain No comment provided by engineer. + + Error saving settings + when migrating + Error saving user password Грешка при запазване на потребителска парола @@ -2449,6 +2562,14 @@ This cannot be undone! Грешка при актуализиране на поверителността на потребителя No comment provided by engineer. + + Error uploading the archive + No comment provided by engineer. + + + Error verifying passphrase: + No comment provided by engineer. + Error: Грешка: @@ -2499,6 +2620,10 @@ This cannot be undone! Експортиран архив на базата данни. No comment provided by engineer. + + Exported file doesn't exist + No comment provided by engineer. + Exporting database archive… Експортиране на архив на базата данни… @@ -2569,6 +2694,14 @@ This cannot be undone! Филтрирайте непрочетените и любимите чатове. No comment provided by engineer. + + Finalize migration + No comment provided by engineer. + + + Finalize migration on another device. + No comment provided by engineer. + Finally, we have them! 🚀 Най-накрая ги имаме! 🚀 @@ -2859,6 +2992,10 @@ This cannot be undone! Как да използвате вашите сървъри No comment provided by engineer. + + Hungarian interface + No comment provided by engineer. + ICE servers (one per line) ICE сървъри (по един на ред) @@ -2924,8 +3061,17 @@ This cannot be undone! Импортиране на база данни No comment provided by engineer. + + Import failed + No comment provided by engineer. + + + Importing archive + No comment provided by engineer. + Improved message delivery + Подобрена доставка на съобщения No comment provided by engineer. @@ -2938,6 +3084,10 @@ This cannot be undone! Подобрена конфигурация на сървъра No comment provided by engineer. + + In order to continue, chat should be stopped. + No comment provided by engineer. + In reply to В отговор на @@ -3050,6 +3200,10 @@ This cannot be undone! Невалиден линк No comment provided by engineer. + + Invalid migration confirmation + No comment provided by engineer. + Invalid name! Невалидно име! @@ -3153,6 +3307,7 @@ This cannot be undone! Join group conversations + Присъединяване към групи No comment provided by engineer. @@ -3417,6 +3572,10 @@ This is your link for group %@! Текст на съобщението No comment provided by engineer. + + Message too large + No comment provided by engineer. + Messages Съобщения @@ -3432,11 +3591,47 @@ This is your link for group %@! Съобщенията от %@ ще бъдат показани! No comment provided by engineer. + + Messages, files and calls are protected by **end-to-end encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Messages, files and calls are protected by **quantum resistant e2e encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Migrate device + No comment provided by engineer. + + + Migrate from another device + No comment provided by engineer. + + + Migrate here + No comment provided by engineer. + + + Migrate to another device + No comment provided by engineer. + + + Migrate to another device via QR code. + No comment provided by engineer. + + + Migrating + No comment provided by engineer. + Migrating database archive… Архивът на базата данни се мигрира… No comment provided by engineer. + + Migration complete + No comment provided by engineer. + Migration error: Грешка при мигриране: @@ -3796,6 +3991,10 @@ This is your link for group %@! Отвори група No comment provided by engineer. + + Open migration to another device + authentication reason + Open user profiles Отвори потребителските профили @@ -3811,11 +4010,19 @@ This is your link for group %@! Приложението се отваря… No comment provided by engineer. + + Or paste archive link + No comment provided by engineer. + Or scan QR code Или сканирай QR код No comment provided by engineer. + + Or securely share this file link + No comment provided by engineer. + Or show this code Или покажи този код @@ -3863,6 +4070,7 @@ This is your link for group %@! Past member %@ + Бивш член %@ past/unknown group member @@ -3877,6 +4085,7 @@ This is your link for group %@! Paste link to connect! + Поставете линк, за да се свържете! No comment provided by engineer. @@ -3899,6 +4108,10 @@ This is your link for group %@! Постоянна грешка при декриптиране message decrypt error item + + Picture-in-picture calls + No comment provided by engineer. + Please ask your contact to enable sending voice messages. Моля, попитайте вашия контакт, за да активирате изпращане на гласови съобщения. @@ -3919,6 +4132,10 @@ This is your link for group %@! Моля, проверете вашите настройки и тези вашия за контакт. No comment provided by engineer. + + Please confirm that network settings are correct for this device. + No comment provided by engineer. + Please contact developers. Error: %@ @@ -3976,6 +4193,10 @@ Error: %@ Въжможно е пръстовият отпечатък на сертификата в адреса на сървъра да е неправилен server test error + + Post-quantum E2EE + No comment provided by engineer. + Preserve the last message draft, with attachments. Запазете последната чернова на съобщението с прикачени файлове. @@ -4013,6 +4234,7 @@ Error: %@ Private notes + Лични бележки name of notes to self @@ -4110,6 +4332,14 @@ Error: %@ Push известия No comment provided by engineer. + + Push server + No comment provided by engineer. + + + Quantum resistant encryption + No comment provided by engineer. + Rate the app Оценете приложението @@ -4197,6 +4427,7 @@ Error: %@ Recent history and improved [directory bot](simplex:/contact#/?v=1-4&smp=smp%3A%2F%2Fu2dS9sG8nMNURyZwqASV4yROM28Er0luVTx5X1CsMrU%3D%40smp4.simplex.im%2FeXSPwqTkKyDO3px4fLf1wx3MvPdjdLW3%23%2F%3Fv%3D1-2%26dh%3DMCowBQYDK2VuAyEAaiv6MkMH44L2TcYrt_CsX3ZvM11WgbMEUn0hkIKTOho%253D%26srv%3Do5vmywmrnaxalvz6wi3zicyftgio6psuvyniis6gco6bp6ekl4cqj4id.onion). + Скорошна история и подобрен [bot за директория за групи](simplex:/contact#/?v=1-4&smp=smp%3A%2F%2Fu2dS9sG8nMNURyZwqASV4yROM28Er0luVTx5X1CsMrU%3D%40smp4.simplex.im%2FeXSPwqTkKyDO3px4fLf1wx3MvPd jdLW3%23%2F%3Fv%3D1-2% 26dh%3DMCowBQYDK2VuAyEAaiv6MkMH44L2TcYrt_CsX3ZvM11WgbMEUn0hkIKTOho%253D%26srv%3Do5vmywmrnaxalvz6wi3zicyftgio6psuvyniis6gco6bp6ekl4cqj4id.onion). No comment provided by engineer. @@ -4294,11 +4525,23 @@ Error: %@ Изпрати отново заявката за свързване? No comment provided by engineer. + + Repeat download + No comment provided by engineer. + + + Repeat import + No comment provided by engineer. + Repeat join request? Изпрати отново заявката за присъединяване? No comment provided by engineer. + + Repeat upload + No comment provided by engineer. + Reply Отговори @@ -4399,6 +4642,10 @@ Error: %@ SMP сървъри No comment provided by engineer. + + Safer groups + No comment provided by engineer. + Save Запази @@ -4486,6 +4733,7 @@ Error: %@ Saved message + Запазено съобщение message info title @@ -4520,6 +4768,7 @@ Error: %@ Search bar accepts invitation links. + Лентата за търсене приема линк за връзка. No comment provided by engineer. @@ -4762,6 +5011,10 @@ Error: %@ Задай kод за достъп No comment provided by engineer. + + Set passphrase + No comment provided by engineer. + Set passphrase to export Задай парола за експортиране @@ -4817,6 +5070,10 @@ Error: %@ Сподели с контактите No comment provided by engineer. + + Show QR code + No comment provided by engineer. + Show calls in phone history Показване на обажданията в хронологията на телефона @@ -4957,6 +5214,10 @@ Error: %@ Спри SimpleX authentication reason + + Stop chat + No comment provided by engineer. + Stop chat to enable database actions Спрете чата, за да активирате действията с базата данни @@ -4997,6 +5258,10 @@ Error: %@ Спри споделянето на адреса? No comment provided by engineer. + + Stopping chat + No comment provided by engineer. + Submit Изпрати @@ -5244,6 +5509,14 @@ It can happen because of some bug or when the connection is compromised.Това действие не може да бъде отменено - вашият профил, контакти, съобщения и файлове ще бъдат безвъзвратно загубени. No comment provided by engineer. + + This chat is protected by end-to-end encryption. + E2EE info chat item + + + This chat is protected by quantum resistant end-to-end encryption. + E2EE info chat item + This device name Името на това устройство @@ -5358,6 +5631,7 @@ You will be prompted to complete authentication before this feature is enabled.< Turkish interface + Турски интерфейс No comment provided by engineer. @@ -5382,6 +5656,7 @@ You will be prompted to complete authentication before this feature is enabled.< Unblock for all + Отблокирай за всички No comment provided by engineer. @@ -5391,6 +5666,7 @@ You will be prompted to complete authentication before this feature is enabled.< Unblock member for all? + Отблокиране на член за всички? No comment provided by engineer. @@ -5535,11 +5811,19 @@ To connect, please ask your contact to create another connection link and check Актуализирай и отвори чата No comment provided by engineer. + + Upload failed + No comment provided by engineer. + Upload file Качи файл server test step + + Uploading archive + No comment provided by engineer. + Use .onion hosts Използвай .onion хостове @@ -5590,6 +5874,10 @@ To connect, please ask your contact to create another connection link and check Използвай сървър No comment provided by engineer. + + Use the app while in the call. + No comment provided by engineer. + User profile Потребителски профил @@ -5607,27 +5895,35 @@ To connect, please ask your contact to create another connection link and check Verify code with desktop - Потвръди кода с настолното устройство + Потвърди кода с настолното устройство No comment provided by engineer. Verify connection - Потвръди връзките + Потвърди връзка No comment provided by engineer. Verify connection security - Потвръди сигурността на връзката + Потвърди сигурността на връзката No comment provided by engineer. Verify connections - Потвръди връзките + Потвърждение за свързване + No comment provided by engineer. + + + Verify database passphrase + No comment provided by engineer. + + + Verify passphrase No comment provided by engineer. Verify security code - Потвръди кода за сигурност + Потвърди кода за сигурност No comment provided by engineer. @@ -5715,6 +6011,10 @@ To connect, please ask your contact to create another connection link and check Изчаква се получаването на видеото No comment provided by engineer. + + Warning: starting chat on multiple devices is not supported and will cause message delivery failures + No comment provided by engineer. + Warning: you may lose some data! Предупреждение: Може да загубите някои данни! @@ -5735,6 +6035,10 @@ To connect, please ask your contact to create another connection link and check Съобщение при посрещане No comment provided by engineer. + + Welcome message is too long + No comment provided by engineer. + What's new Какво е новото @@ -5757,6 +6061,7 @@ To connect, please ask your contact to create another connection link and check With encrypted files and media. + С криптирани файлове и медия. No comment provided by engineer. @@ -5766,6 +6071,7 @@ To connect, please ask your contact to create another connection link and check With reduced battery usage. + С намален разход на батерията. No comment provided by engineer. @@ -5788,6 +6094,10 @@ To connect, please ask your contact to create another connection link and check Вие No comment provided by engineer. + + You **must not** use the same database on two devices. + No comment provided by engineer. + You accepted connection Вие приехте връзката @@ -5875,6 +6185,10 @@ Repeat join request? Можете да ги активирате по-късно през настройките за "Поверителност и сигурност" на приложението. No comment provided by engineer. + + You can give another try. + No comment provided by engineer. + You can hide or mute a user profile - swipe it to the right. Можете да скриете или заглушите известията за потребителски профил - плъзнете надясно. @@ -6269,15 +6583,17 @@ SimpleX сървърите не могат да видят вашия профи blocked блокиран - No comment provided by engineer. + marked deleted chat item preview text blocked %@ + блокиран %@ rcv group event chat item blocked by admin - blocked chat item + блокиран от админ + marked deleted chat item preview text bold @@ -6306,7 +6622,7 @@ SimpleX сървърите не могат да видят вашия профи changed address for you - променен е адреса за вас + адреса за изпращане е променен chat item text @@ -6401,6 +6717,7 @@ SimpleX сървърите не могат да видят вашия профи contact %1$@ changed to %2$@ + името на контакта %1$@ е променено на %2$@ profile update event chat item @@ -6675,6 +6992,7 @@ SimpleX сървърите не могат да видят вашия профи member %1$@ changed to %2$@ + името на члена %1$@ е променено на %2$@ profile update event chat item @@ -6705,7 +7023,7 @@ SimpleX сървърите не могат да видят вашия профи moderated by %@ модерирано от %@ - No comment provided by engineer. + marked deleted chat item preview text months @@ -6774,6 +7092,10 @@ SimpleX сървърите не могат да видят вашия профи peer-to-peer No comment provided by engineer. + + quantum resistant e2e encryption + chat item text + received answer… получен отговор… @@ -6801,10 +7123,12 @@ SimpleX сървърите не могат да видят вашия профи removed contact address + премахнат адрес за контакт profile update event chat item removed profile picture + премахната профилна снимка profile update event chat item @@ -6839,12 +7163,18 @@ SimpleX сървърите не могат да видят вашия профи set new contact address + зададен нов адрес за контакт profile update event chat item set new profile picture + зададена нова профилна снимка profile update event chat item + + standard end-to-end encryption + chat item text + starting… стартиране… @@ -6862,6 +7192,7 @@ SimpleX сървърите не могат да видят вашия профи unblocked %@ + отблокиран %@ rcv group event chat item @@ -6871,6 +7202,7 @@ SimpleX сървърите не могат да видят вашия профи unknown status + неизвестен статус No comment provided by engineer. @@ -6880,6 +7212,7 @@ SimpleX сървърите не могат да видят вашия профи updated profile + актуализиран профил profile update event chat item @@ -6954,16 +7287,17 @@ SimpleX сървърите не могат да видят вашия профи you blocked %@ + вие блокирахте %@ snd group event chat item you changed address - променихте адреса + адреса за получаване е променен chat item text you changed address for %@ - променихте адреса за %@ + променихте адреса получаване за %@ chat item text @@ -6998,6 +7332,7 @@ SimpleX сървърите не могат да видят вашия профи you unblocked %@ + вие отблокирахте %@ snd group event chat item diff --git a/apps/ios/SimpleX Localizations/cs.xcloc/Localized Contents/cs.xliff b/apps/ios/SimpleX Localizations/cs.xcloc/Localized Contents/cs.xliff index a376c86ad1..cf6e0e1fcd 100644 --- a/apps/ios/SimpleX Localizations/cs.xcloc/Localized Contents/cs.xliff +++ b/apps/ios/SimpleX Localizations/cs.xcloc/Localized Contents/cs.xliff @@ -107,6 +107,10 @@ %@ připojen No comment provided by engineer. + + %@ downloaded + No comment provided by engineer. + %@ is connected! %@ je připojen! @@ -127,6 +131,10 @@ %@ servery No comment provided by engineer. + + %@ uploaded + No comment provided by engineer. + %@ wants to connect! %@ se chce připojit! @@ -332,6 +340,10 @@ **Nejsoukromější**: nepoužívejte server oznámení SimpleX Chat, pravidelně kontrolujte zprávy na pozadí (závisí na tom, jak často aplikaci používáte). No comment provided by engineer. + + **Please note**: using the same database on two devices will break the decryption of messages from your connections, as a security protection. + No comment provided by engineer. + **Please note**: you will NOT be able to recover or change passphrase if you lose it. **Upozornění**: Pokud heslo ztratíte, NEBUDETE jej moci obnovit ani změnit. @@ -347,6 +359,10 @@ **Upozornění**: Okamžitě doručovaná oznámení vyžadují přístupové heslo uložené v Klíčence. No comment provided by engineer. + + **Warning**: the archive will be removed. + No comment provided by engineer. + **e2e encrypted** audio call **e2e šifrovaný** audio hovor @@ -598,6 +614,10 @@ Změna adresy bude přerušena. Budou použity staré přijímací adresy. No comment provided by engineer. + + Admins can block a member for all. + No comment provided by engineer. + Admins can create the links to join groups. Správci mohou vytvářet odkazy pro připojení ke skupinám. @@ -651,6 +671,10 @@ Všechny vaše kontakty zůstanou připojeny. Aktualizace profilu bude odeslána vašim kontaktům. No comment provided by engineer. + + All your contacts, conversations and files will be securely encrypted and uploaded in chunks to configured XFTP relays. + No comment provided by engineer. + Allow Povolit @@ -774,6 +798,10 @@ Sestavení aplikace: %@ No comment provided by engineer. + + App data migration + No comment provided by engineer. + App encrypts new local files (except videos). Aplikace šifruje nové místní soubory (s výjimkou videí). @@ -809,6 +837,18 @@ Vzhled No comment provided by engineer. + + Apply + No comment provided by engineer. + + + Archive and upload + No comment provided by engineer. + + + Archiving database + No comment provided by engineer. + Attach Připojit @@ -989,6 +1029,10 @@ Zrušit No comment provided by engineer. + + Cancel migration + No comment provided by engineer. + Cannot access keychain to save database password Nelze získat přístup ke klíčence pro uložení hesla databáze @@ -1089,6 +1133,10 @@ Chat is stopped. If you already used this database on another device, you should transfer it back before starting chat. No comment provided by engineer. + + Chat migrated! + No comment provided by engineer. + Chat preferences Předvolby chatu @@ -1109,6 +1157,10 @@ Čínské a Španělské rozhranní No comment provided by engineer. + + Choose _Migrate from another device_ on the new device and scan QR code. + No comment provided by engineer. + Choose file Vybrat soubor @@ -1178,6 +1230,10 @@ Potvrdit aktualizaci databáze No comment provided by engineer. + + Confirm network settings + No comment provided by engineer. + Confirm new passphrase… Potvrdit novou heslovou frázi… @@ -1188,6 +1244,14 @@ Potvrdit heslo No comment provided by engineer. + + Confirm that you remember database passphrase to migrate it. + No comment provided by engineer. + + + Confirm upload + No comment provided by engineer. + Connect Připojit @@ -1428,6 +1492,10 @@ This is your own one-time link! Vytvořeno na %@ No comment provided by engineer. + + Creating archive link + No comment provided by engineer. + Creating link… No comment provided by engineer. @@ -1643,6 +1711,10 @@ This cannot be undone! Odstranění databáze No comment provided by engineer. + + Delete database from this device + No comment provided by engineer. + Delete file Smazat soubor @@ -1927,11 +1999,23 @@ This cannot be undone! Snížit a otevřít chat No comment provided by engineer. + + Download failed + No comment provided by engineer. + Download file Stáhnout soubor server test step + + Downloading archive + No comment provided by engineer. + + + Downloading link details + No comment provided by engineer. + Duplicate display name! Duplicitní zobrazované jméno! @@ -1986,6 +2070,10 @@ This cannot be undone! Povolit pro všechny No comment provided by engineer. + + Enable in direct chats (BETA)! + No comment provided by engineer. + Enable instant notifications? Povolit okamžitá oznámení? @@ -2097,6 +2185,10 @@ This cannot be undone! Enter group name… No comment provided by engineer. + + Enter passphrase + No comment provided by engineer. + Enter passphrase… Zadejte přístupovou frázi… @@ -2155,6 +2247,10 @@ This cannot be undone! Chyba přidávání člena(ů) No comment provided by engineer. + + Error allowing contact PQ encryption + No comment provided by engineer. + Error changing address Chuba změny adresy @@ -2244,6 +2340,10 @@ This cannot be undone! Chyba mazání uživatelského profilu No comment provided by engineer. + + Error downloading the archive + No comment provided by engineer. + Error enabling delivery receipts! Chyba povolení potvrzení o doručení! @@ -2318,6 +2418,10 @@ This cannot be undone! Při ukládání přístupové fráze do klíčenky došlo k chybě No comment provided by engineer. + + Error saving settings + when migrating + Error saving user password Chyba ukládání hesla uživatele @@ -2387,6 +2491,14 @@ This cannot be undone! Chyba aktualizace soukromí uživatele No comment provided by engineer. + + Error uploading the archive + No comment provided by engineer. + + + Error verifying passphrase: + No comment provided by engineer. + Error: Chyba: @@ -2436,6 +2548,10 @@ This cannot be undone! Exportovaný archiv databáze. No comment provided by engineer. + + Exported file doesn't exist + No comment provided by engineer. + Exporting database archive… Exportuji archiv databáze… @@ -2505,6 +2621,14 @@ This cannot be undone! Filtrovat nepřečtené a oblíbené chaty. No comment provided by engineer. + + Finalize migration + No comment provided by engineer. + + + Finalize migration on another device. + No comment provided by engineer. + Finally, we have them! 🚀 Konečně je máme! 🚀 @@ -2790,6 +2914,10 @@ This cannot be undone! Jak používat servery No comment provided by engineer. + + Hungarian interface + No comment provided by engineer. + ICE servers (one per line) Servery ICE (jeden na řádek) @@ -2855,6 +2983,14 @@ This cannot be undone! Import databáze No comment provided by engineer. + + Import failed + No comment provided by engineer. + + + Importing archive + No comment provided by engineer. + Improved message delivery No comment provided by engineer. @@ -2869,6 +3005,10 @@ This cannot be undone! Vylepšená konfigurace serveru No comment provided by engineer. + + In order to continue, chat should be stopped. + No comment provided by engineer. + In reply to V odpovědi na @@ -2976,6 +3116,10 @@ This cannot be undone! Invalid link No comment provided by engineer. + + Invalid migration confirmation + No comment provided by engineer. + Invalid name! No comment provided by engineer. @@ -3331,6 +3475,10 @@ This is your link for group %@! Text zprávy No comment provided by engineer. + + Message too large + No comment provided by engineer. + Messages Zprávy @@ -3345,11 +3493,47 @@ This is your link for group %@! Messages from %@ will be shown! No comment provided by engineer. + + Messages, files and calls are protected by **end-to-end encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Messages, files and calls are protected by **quantum resistant e2e encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Migrate device + No comment provided by engineer. + + + Migrate from another device + No comment provided by engineer. + + + Migrate here + No comment provided by engineer. + + + Migrate to another device + No comment provided by engineer. + + + Migrate to another device via QR code. + No comment provided by engineer. + + + Migrating + No comment provided by engineer. + Migrating database archive… Přenášení archivu databáze… No comment provided by engineer. + + Migration complete + No comment provided by engineer. + Migration error: Chyba přenášení: @@ -3705,6 +3889,10 @@ This is your link for group %@! Open group No comment provided by engineer. + + Open migration to another device + authentication reason + Open user profiles Otevřít uživatelské profily @@ -3719,10 +3907,18 @@ This is your link for group %@! Opening app… No comment provided by engineer. + + Or paste archive link + No comment provided by engineer. + Or scan QR code No comment provided by engineer. + + Or securely share this file link + No comment provided by engineer. + Or show this code No comment provided by engineer. @@ -3803,6 +3999,10 @@ This is your link for group %@! Chyba dešifrování message decrypt error item + + Picture-in-picture calls + No comment provided by engineer. + Please ask your contact to enable sending voice messages. Prosím, požádejte kontaktní osobu, aby umožnila odesílání hlasových zpráv. @@ -3823,6 +4023,10 @@ This is your link for group %@! Zkontrolujte prosím nastavení své i svého kontaktu. No comment provided by engineer. + + Please confirm that network settings are correct for this device. + No comment provided by engineer. + Please contact developers. Error: %@ @@ -3878,6 +4082,10 @@ Error: %@ Je možné, že otisk certifikátu v adrese serveru je nesprávný server test error + + Post-quantum E2EE + No comment provided by engineer. + Preserve the last message draft, with attachments. Zachování posledního návrhu zprávy s přílohami. @@ -4010,6 +4218,14 @@ Error: %@ Nabízená oznámení No comment provided by engineer. + + Push server + No comment provided by engineer. + + + Quantum resistant encryption + No comment provided by engineer. + Rate the app Ohodnoťte aplikaci @@ -4192,10 +4408,22 @@ Error: %@ Repeat connection request? No comment provided by engineer. + + Repeat download + No comment provided by engineer. + + + Repeat import + No comment provided by engineer. + Repeat join request? No comment provided by engineer. + + Repeat upload + No comment provided by engineer. + Reply Odpověď @@ -4295,6 +4523,10 @@ Error: %@ SMP servery No comment provided by engineer. + + Safer groups + No comment provided by engineer. + Save Uložit @@ -4654,6 +4886,10 @@ Error: %@ Nastavit heslo No comment provided by engineer. + + Set passphrase + No comment provided by engineer. + Set passphrase to export Nastavení přístupové fráze pro export @@ -4708,6 +4944,10 @@ Error: %@ Sdílet s kontakty No comment provided by engineer. + + Show QR code + No comment provided by engineer. + Show calls in phone history Ukaž hovory v historii telefonu @@ -4847,6 +5087,10 @@ Error: %@ Zastavit SimpleX authentication reason + + Stop chat + No comment provided by engineer. + Stop chat to enable database actions Zastavte chat pro povolení akcí databáze @@ -4887,6 +5131,10 @@ Error: %@ Přestat sdílet adresu? No comment provided by engineer. + + Stopping chat + No comment provided by engineer. + Submit Odeslat @@ -5129,6 +5377,14 @@ Může se to stát kvůli nějaké chybě, nebo pokud je spojení kompromitován Tuto akci nelze vzít zpět - váš profil, kontakty, zprávy a soubory budou nenávratně ztraceny. No comment provided by engineer. + + This chat is protected by end-to-end encryption. + E2EE info chat item + + + This chat is protected by quantum resistant end-to-end encryption. + E2EE info chat item + This device name No comment provided by engineer. @@ -5409,11 +5665,19 @@ Chcete-li se připojit, požádejte svůj kontakt o vytvoření dalšího odkazu Zvýšit a otevřít chat No comment provided by engineer. + + Upload failed + No comment provided by engineer. + Upload file Nahrát soubor server test step + + Uploading archive + No comment provided by engineer. + Use .onion hosts Použít hostitele .onion @@ -5462,6 +5726,10 @@ Chcete-li se připojit, požádejte svůj kontakt o vytvoření dalšího odkazu Použít server No comment provided by engineer. + + Use the app while in the call. + No comment provided by engineer. + User profile Profil uživatele @@ -5494,6 +5762,14 @@ Chcete-li se připojit, požádejte svůj kontakt o vytvoření dalšího odkazu Verify connections No comment provided by engineer. + + Verify database passphrase + No comment provided by engineer. + + + Verify passphrase + No comment provided by engineer. + Verify security code Ověření bezpečnostního kódu @@ -5581,6 +5857,10 @@ Chcete-li se připojit, požádejte svůj kontakt o vytvoření dalšího odkazu Čekám na video No comment provided by engineer. + + Warning: starting chat on multiple devices is not supported and will cause message delivery failures + No comment provided by engineer. + Warning: you may lose some data! Upozornění: můžete ztratit nějaká data! @@ -5601,6 +5881,10 @@ Chcete-li se připojit, požádejte svůj kontakt o vytvoření dalšího odkazu Uvítací zpráva No comment provided by engineer. + + Welcome message is too long + No comment provided by engineer. + What's new Co je nového @@ -5654,6 +5938,10 @@ Chcete-li se připojit, požádejte svůj kontakt o vytvoření dalšího odkazu Vy No comment provided by engineer. + + You **must not** use the same database on two devices. + No comment provided by engineer. + You accepted connection Přijali jste spojení @@ -5733,6 +6021,10 @@ Repeat join request? Můžete je povolit později v nastavení Soukromí & Bezpečnosti aplikace No comment provided by engineer. + + You can give another try. + No comment provided by engineer. + You can hide or mute a user profile - swipe it to the right. Profil uživatele můžete skrýt nebo ztlumit - přejeďte prstem doprava. @@ -6116,7 +6408,7 @@ Servery SimpleX nevidí váš profil. blocked - No comment provided by engineer. + marked deleted chat item preview text blocked %@ @@ -6124,7 +6416,7 @@ Servery SimpleX nevidí váš profil. blocked by admin - blocked chat item + marked deleted chat item preview text bold @@ -6550,7 +6842,7 @@ Servery SimpleX nevidí váš profil. moderated by %@ moderovaný %@ - No comment provided by engineer. + marked deleted chat item preview text months @@ -6619,6 +6911,10 @@ Servery SimpleX nevidí váš profil. peer-to-peer No comment provided by engineer. + + quantum resistant e2e encryption + chat item text + received answer… obdržel odpověď… @@ -6690,6 +6986,10 @@ Servery SimpleX nevidí váš profil. set new profile picture profile update event chat item + + standard end-to-end encryption + chat item text + starting… začíná… diff --git a/apps/ios/SimpleX Localizations/de.xcloc/Localized Contents/de.xliff b/apps/ios/SimpleX Localizations/de.xcloc/Localized Contents/de.xliff index d0f217a0e1..6788b5e8e6 100644 --- a/apps/ios/SimpleX Localizations/de.xcloc/Localized Contents/de.xliff +++ b/apps/ios/SimpleX Localizations/de.xcloc/Localized Contents/de.xliff @@ -107,6 +107,10 @@ %@ wurde mit Ihnen verbunden No comment provided by engineer. + + %@ downloaded + No comment provided by engineer. + %@ is connected! %@ ist mit Ihnen verbunden! @@ -127,6 +131,10 @@ %@-Server No comment provided by engineer. + + %@ uploaded + No comment provided by engineer. + %@ wants to connect! %@ will sich mit Ihnen verbinden! @@ -342,6 +350,10 @@ **Beste Privatsphäre**: Es wird kein SimpleX-Chat-Benachrichtigungs-Server genutzt, Nachrichten werden in periodischen Abständen im Hintergrund geprüft (dies hängt davon ab, wie häufig Sie die App nutzen). No comment provided by engineer. + + **Please note**: using the same database on two devices will break the decryption of messages from your connections, as a security protection. + No comment provided by engineer. + **Please note**: you will NOT be able to recover or change passphrase if you lose it. **Bitte beachten Sie**: Das Passwort kann NICHT wiederhergestellt oder geändert werden, wenn Sie es vergessen haben oder verlieren. @@ -357,6 +369,10 @@ **Warnung**: Sofortige Push-Benachrichtigungen erfordern die Eingabe eines Passworts, welches in Ihrem Schlüsselbund gespeichert ist. No comment provided by engineer. + + **Warning**: the archive will be removed. + No comment provided by engineer. + **e2e encrypted** audio call **E2E-verschlüsselter** Audioanruf @@ -613,6 +629,10 @@ Der Wechsel der Empfängeradresse wird abgebrochen. Die bisherige Adresse wird weiter verwendet. No comment provided by engineer. + + Admins can block a member for all. + No comment provided by engineer. + Admins can create the links to join groups. Administratoren können Links für den Beitritt zu Gruppen erzeugen. @@ -668,6 +688,10 @@ Alle Ihre Kontakte bleiben verbunden. Es wird eine Profilaktualisierung an Ihre Kontakte gesendet. No comment provided by engineer. + + All your contacts, conversations and files will be securely encrypted and uploaded in chunks to configured XFTP relays. + No comment provided by engineer. + Allow Erlauben @@ -793,6 +817,10 @@ App Build: %@ No comment provided by engineer. + + App data migration + No comment provided by engineer. + App encrypts new local files (except videos). Neue lokale Dateien (außer Video-Dateien) werden von der App verschlüsselt. @@ -828,6 +856,18 @@ Erscheinungsbild No comment provided by engineer. + + Apply + No comment provided by engineer. + + + Archive and upload + No comment provided by engineer. + + + Archiving database + No comment provided by engineer. + Attach Anhängen @@ -1018,6 +1058,10 @@ Abbrechen No comment provided by engineer. + + Cancel migration + No comment provided by engineer. + Cannot access keychain to save database password Die App kann nicht auf den Schlüsselbund zugreifen, um das Datenbank-Passwort zu speichern @@ -1119,6 +1163,10 @@ Der Chat ist angehalten. Wenn Sie diese Datenbank bereits auf einem anderen Gerät genutzt haben, sollten Sie diese vor dem Starten des Chats wieder zurückspielen. No comment provided by engineer. + + Chat migrated! + No comment provided by engineer. + Chat preferences Chat-Präferenzen @@ -1139,6 +1187,10 @@ Chinesische und spanische Bedienoberfläche No comment provided by engineer. + + Choose _Migrate from another device_ on the new device and scan QR code. + No comment provided by engineer. + Choose file Datei auswählen @@ -1209,6 +1261,10 @@ Datenbank-Aktualisierungen bestätigen No comment provided by engineer. + + Confirm network settings + No comment provided by engineer. + Confirm new passphrase… Neues Passwort bestätigen… @@ -1219,6 +1275,14 @@ Passwort bestätigen No comment provided by engineer. + + Confirm that you remember database passphrase to migrate it. + No comment provided by engineer. + + + Confirm upload + No comment provided by engineer. + Connect Verbinden @@ -1478,6 +1542,10 @@ Das ist Ihr eigener Einmal-Link! Erstellt am %@ No comment provided by engineer. + + Creating archive link + No comment provided by engineer. + Creating link… Link wird erstellt… @@ -1698,6 +1766,10 @@ Das kann nicht rückgängig gemacht werden! Datenbank löschen No comment provided by engineer. + + Delete database from this device + No comment provided by engineer. + Delete file Datei löschen @@ -1988,11 +2060,23 @@ Das kann nicht rückgängig gemacht werden! Datenbank herabstufen und den Chat öffnen No comment provided by engineer. + + Download failed + No comment provided by engineer. + Download file Datei herunterladen server test step + + Downloading archive + No comment provided by engineer. + + + Downloading link details + No comment provided by engineer. + Duplicate display name! Doppelter Anzeigename! @@ -2048,6 +2132,10 @@ Das kann nicht rückgängig gemacht werden! Für Alle aktivieren No comment provided by engineer. + + Enable in direct chats (BETA)! + No comment provided by engineer. + Enable instant notifications? Sofortige Benachrichtigungen aktivieren? @@ -2163,6 +2251,10 @@ Das kann nicht rückgängig gemacht werden! Geben Sie den Gruppennamen ein… No comment provided by engineer. + + Enter passphrase + No comment provided by engineer. + Enter passphrase… Passwort eingeben… @@ -2223,6 +2315,10 @@ Das kann nicht rückgängig gemacht werden! Fehler beim Hinzufügen von Mitgliedern No comment provided by engineer. + + Error allowing contact PQ encryption + No comment provided by engineer. + Error changing address Fehler beim Wechseln der Empfängeradresse @@ -2313,6 +2409,10 @@ Das kann nicht rückgängig gemacht werden! Fehler beim Löschen des Benutzerprofils No comment provided by engineer. + + Error downloading the archive + No comment provided by engineer. + Error enabling delivery receipts! Fehler beim Aktivieren von Empfangsbestätigungen! @@ -2388,6 +2488,10 @@ Das kann nicht rückgängig gemacht werden! Fehler beim Speichern des Passworts in den Schlüsselbund No comment provided by engineer. + + Error saving settings + when migrating + Error saving user password Fehler beim Speichern des Benutzer-Passworts @@ -2458,6 +2562,14 @@ Das kann nicht rückgängig gemacht werden! Fehler beim Aktualisieren der Benutzer-Privatsphäre No comment provided by engineer. + + Error uploading the archive + No comment provided by engineer. + + + Error verifying passphrase: + No comment provided by engineer. + Error: Fehler: @@ -2508,6 +2620,10 @@ Das kann nicht rückgängig gemacht werden! Exportiertes Datenbankarchiv. No comment provided by engineer. + + Exported file doesn't exist + No comment provided by engineer. + Exporting database archive… Exportieren des Datenbank-Archivs… @@ -2578,6 +2694,14 @@ Das kann nicht rückgängig gemacht werden! Nach ungelesenen und favorisierten Chats filtern. No comment provided by engineer. + + Finalize migration + No comment provided by engineer. + + + Finalize migration on another device. + No comment provided by engineer. + Finally, we have them! 🚀 Endlich haben wir sie! 🚀 @@ -2868,6 +2992,10 @@ Das kann nicht rückgängig gemacht werden! Wie Sie Ihre Server nutzen No comment provided by engineer. + + Hungarian interface + No comment provided by engineer. + ICE servers (one per line) ICE-Server (einer pro Zeile) @@ -2933,6 +3061,14 @@ Das kann nicht rückgängig gemacht werden! Datenbank importieren No comment provided by engineer. + + Import failed + No comment provided by engineer. + + + Importing archive + No comment provided by engineer. + Improved message delivery Verbesserte Zustellung von Nachrichten @@ -2948,6 +3084,10 @@ Das kann nicht rückgängig gemacht werden! Verbesserte Serverkonfiguration No comment provided by engineer. + + In order to continue, chat should be stopped. + No comment provided by engineer. + In reply to Als Antwort auf @@ -3060,6 +3200,10 @@ Das kann nicht rückgängig gemacht werden! Ungültiger Link No comment provided by engineer. + + Invalid migration confirmation + No comment provided by engineer. + Invalid name! Ungültiger Name! @@ -3428,6 +3572,10 @@ Das ist Ihr Link für die Gruppe %@! Nachrichtentext No comment provided by engineer. + + Message too large + No comment provided by engineer. + Messages Nachrichten @@ -3443,11 +3591,47 @@ Das ist Ihr Link für die Gruppe %@! Die Nachrichten von %@ werden angezeigt! No comment provided by engineer. + + Messages, files and calls are protected by **end-to-end encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Messages, files and calls are protected by **quantum resistant e2e encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Migrate device + No comment provided by engineer. + + + Migrate from another device + No comment provided by engineer. + + + Migrate here + No comment provided by engineer. + + + Migrate to another device + No comment provided by engineer. + + + Migrate to another device via QR code. + No comment provided by engineer. + + + Migrating + No comment provided by engineer. + Migrating database archive… Datenbank-Archiv wird migriert… No comment provided by engineer. + + Migration complete + No comment provided by engineer. + Migration error: Fehler bei der Migration: @@ -3807,6 +3991,10 @@ Das ist Ihr Link für die Gruppe %@! Gruppe öffnen No comment provided by engineer. + + Open migration to another device + authentication reason + Open user profiles Benutzerprofile öffnen @@ -3822,11 +4010,19 @@ Das ist Ihr Link für die Gruppe %@! App wird geöffnet… No comment provided by engineer. + + Or paste archive link + No comment provided by engineer. + Or scan QR code Oder den QR-Code scannen No comment provided by engineer. + + Or securely share this file link + No comment provided by engineer. + Or show this code Oder diesen QR-Code anzeigen @@ -3912,6 +4108,10 @@ Das ist Ihr Link für die Gruppe %@! Entschlüsselungsfehler message decrypt error item + + Picture-in-picture calls + No comment provided by engineer. + Please ask your contact to enable sending voice messages. Bitten Sie Ihren Kontakt darum, das Senden von Sprachnachrichten zu aktivieren. @@ -3932,6 +4132,10 @@ Das ist Ihr Link für die Gruppe %@! Bitte überprüfen sie sowohl Ihre, als auch die Präferenzen Ihres Kontakts. No comment provided by engineer. + + Please confirm that network settings are correct for this device. + No comment provided by engineer. + Please contact developers. Error: %@ @@ -3989,6 +4193,10 @@ Fehler: %@ Der Fingerabdruck des Zertifikats in der Serveradresse ist wahrscheinlich ungültig server test error + + Post-quantum E2EE + No comment provided by engineer. + Preserve the last message draft, with attachments. Den letzten Nachrichtenentwurf, auch mit seinen Anhängen, aufbewahren. @@ -4124,6 +4332,14 @@ Fehler: %@ Push-Benachrichtigungen No comment provided by engineer. + + Push server + No comment provided by engineer. + + + Quantum resistant encryption + No comment provided by engineer. + Rate the app Bewerten Sie die App @@ -4309,11 +4525,23 @@ Fehler: %@ Verbindungsanfrage wiederholen? No comment provided by engineer. + + Repeat download + No comment provided by engineer. + + + Repeat import + No comment provided by engineer. + Repeat join request? Verbindungsanfrage wiederholen? No comment provided by engineer. + + Repeat upload + No comment provided by engineer. + Reply Antwort @@ -4414,6 +4642,10 @@ Fehler: %@ SMP-Server No comment provided by engineer. + + Safer groups + No comment provided by engineer. + Save Speichern @@ -4536,7 +4768,7 @@ Fehler: %@ Search bar accepts invitation links. - Von der Suchleiste werden Einladungslinks akzeptiert. + In der Suchleiste werden nun auch Einladungslinks akzeptiert. No comment provided by engineer. @@ -4779,6 +5011,10 @@ Fehler: %@ Zugangscode einstellen No comment provided by engineer. + + Set passphrase + No comment provided by engineer. + Set passphrase to export Passwort für den Export festlegen @@ -4834,6 +5070,10 @@ Fehler: %@ Mit Kontakten teilen No comment provided by engineer. + + Show QR code + No comment provided by engineer. + Show calls in phone history Anrufliste anzeigen @@ -4974,6 +5214,10 @@ Fehler: %@ Stoppen Sie SimpleX authentication reason + + Stop chat + No comment provided by engineer. + Stop chat to enable database actions Chat beenden, um Datenbankaktionen zu erlauben @@ -5014,6 +5258,10 @@ Fehler: %@ Das Teilen der Adresse beenden? No comment provided by engineer. + + Stopping chat + No comment provided by engineer. + Submit Bestätigen @@ -5261,6 +5509,14 @@ Dies kann passieren, wenn es einen Fehler gegeben hat oder die Verbindung kompro Diese Aktion kann nicht rückgängig gemacht werden! Ihr Profil und Ihre Kontakte, Nachrichten und Dateien gehen unwiderruflich verloren. No comment provided by engineer. + + This chat is protected by end-to-end encryption. + E2EE info chat item + + + This chat is protected by quantum resistant end-to-end encryption. + E2EE info chat item + This device name Dieser Gerätename @@ -5555,11 +5811,19 @@ Bitten Sie Ihren Kontakt darum einen weiteren Verbindungs-Link zu erzeugen, um s Aktualisieren und den Chat öffnen No comment provided by engineer. + + Upload failed + No comment provided by engineer. + Upload file Datei hochladen server test step + + Uploading archive + No comment provided by engineer. + Use .onion hosts Verwende .onion-Hosts @@ -5610,6 +5874,10 @@ Bitten Sie Ihren Kontakt darum einen weiteren Verbindungs-Link zu erzeugen, um s Server nutzen No comment provided by engineer. + + Use the app while in the call. + No comment provided by engineer. + User profile Benutzerprofil @@ -5645,6 +5913,14 @@ Bitten Sie Ihren Kontakt darum einen weiteren Verbindungs-Link zu erzeugen, um s Verbindungen überprüfen No comment provided by engineer. + + Verify database passphrase + No comment provided by engineer. + + + Verify passphrase + No comment provided by engineer. + Verify security code Sicherheitscode überprüfen @@ -5735,6 +6011,10 @@ Bitten Sie Ihren Kontakt darum einen weiteren Verbindungs-Link zu erzeugen, um s Auf das Video warten No comment provided by engineer. + + Warning: starting chat on multiple devices is not supported and will cause message delivery failures + No comment provided by engineer. + Warning: you may lose some data! Warnung: Sie könnten einige Daten verlieren! @@ -5755,6 +6035,10 @@ Bitten Sie Ihren Kontakt darum einen weiteren Verbindungs-Link zu erzeugen, um s Begrüßungsmeldung No comment provided by engineer. + + Welcome message is too long + No comment provided by engineer. + What's new Was ist neu @@ -5810,6 +6094,10 @@ Bitten Sie Ihren Kontakt darum einen weiteren Verbindungs-Link zu erzeugen, um s Profil No comment provided by engineer. + + You **must not** use the same database on two devices. + No comment provided by engineer. + You accepted connection Sie haben die Verbindung akzeptiert @@ -5897,6 +6185,10 @@ Verbindungsanfrage wiederholen? Sie können diese später in den Datenschutz & Sicherheits-Einstellungen der App aktivieren. No comment provided by engineer. + + You can give another try. + No comment provided by engineer. + You can hide or mute a user profile - swipe it to the right. Sie können ein Benutzerprofil verbergen oder stummschalten - wischen Sie es nach rechts. @@ -6291,7 +6583,7 @@ SimpleX-Server können Ihr Profil nicht einsehen. blocked Blockiert - No comment provided by engineer. + marked deleted chat item preview text blocked %@ @@ -6301,7 +6593,7 @@ SimpleX-Server können Ihr Profil nicht einsehen. blocked by admin wurde vom Administrator blockiert - blocked chat item + marked deleted chat item preview text bold @@ -6425,7 +6717,7 @@ SimpleX-Server können Ihr Profil nicht einsehen. contact %1$@ changed to %2$@ - Der Kontaktname %1$@ wurde auf %2$@ geändert + Der Kontaktname wurde von %1$@ auf %2$@ geändert profile update event chat item @@ -6700,7 +6992,7 @@ SimpleX-Server können Ihr Profil nicht einsehen. member %1$@ changed to %2$@ - Der Mitgliedsname %1$@ wurde auf %2$@ geändert + Der Mitgliedsname von %1$@ wurde auf %2$@ geändert profile update event chat item @@ -6731,7 +7023,7 @@ SimpleX-Server können Ihr Profil nicht einsehen. moderated by %@ Von %@ moderiert - No comment provided by engineer. + marked deleted chat item preview text months @@ -6800,6 +7092,10 @@ SimpleX-Server können Ihr Profil nicht einsehen. Peer-to-Peer No comment provided by engineer. + + quantum resistant e2e encryption + chat item text + received answer… Antwort erhalten… @@ -6827,12 +7123,12 @@ SimpleX-Server können Ihr Profil nicht einsehen. removed contact address - Kontaktadresse wurde entfernt + Die Kontaktadresse wurde entfernt profile update event chat item removed profile picture - Profil-Bild wurde entfernt + Das Profil-Bild wurde entfernt profile update event chat item @@ -6867,14 +7163,18 @@ SimpleX-Server können Ihr Profil nicht einsehen. set new contact address - Neue Kontaktadresse wurde festgelegt + Es wurde eine neue Kontaktadresse festgelegt profile update event chat item set new profile picture - Neues Profil-Bild wurde festgelegt + Es wurde ein neues Profil-Bild festgelegt profile update event chat item + + standard end-to-end encryption + chat item text + starting… Verbindung wird gestartet… diff --git a/apps/ios/SimpleX Localizations/en.xcloc/Localized Contents/en.xliff b/apps/ios/SimpleX Localizations/en.xcloc/Localized Contents/en.xliff index b2b9cbce59..39ee4e2a9b 100644 --- a/apps/ios/SimpleX Localizations/en.xcloc/Localized Contents/en.xliff +++ b/apps/ios/SimpleX Localizations/en.xcloc/Localized Contents/en.xliff @@ -107,6 +107,11 @@ %@ connected No comment provided by engineer. + + %@ downloaded + %@ downloaded + No comment provided by engineer. + %@ is connected! %@ is connected! @@ -127,6 +132,11 @@ %@ servers No comment provided by engineer. + + %@ uploaded + %@ uploaded + No comment provided by engineer. + %@ wants to connect! %@ wants to connect! @@ -342,6 +352,11 @@ **Most private**: do not use SimpleX Chat notifications server, check messages periodically in the background (depends on how often you use the app). No comment provided by engineer. + + **Please note**: using the same database on two devices will break the decryption of messages from your connections, as a security protection. + **Please note**: using the same database on two devices will break the decryption of messages from your connections, as a security protection. + No comment provided by engineer. + **Please note**: you will NOT be able to recover or change passphrase if you lose it. **Please note**: you will NOT be able to recover or change passphrase if you lose it. @@ -357,6 +372,11 @@ **Warning**: Instant push notifications require passphrase saved in Keychain. No comment provided by engineer. + + **Warning**: the archive will be removed. + **Warning**: the archive will be removed. + No comment provided by engineer. + **e2e encrypted** audio call **e2e encrypted** audio call @@ -613,6 +633,11 @@ Address change will be aborted. Old receiving address will be used. No comment provided by engineer. + + Admins can block a member for all. + Admins can block a member for all. + No comment provided by engineer. + Admins can create the links to join groups. Admins can create the links to join groups. @@ -668,6 +693,11 @@ All your contacts will remain connected. Profile update will be sent to your contacts. No comment provided by engineer. + + All your contacts, conversations and files will be securely encrypted and uploaded in chunks to configured XFTP relays. + All your contacts, conversations and files will be securely encrypted and uploaded in chunks to configured XFTP relays. + No comment provided by engineer. + Allow Allow @@ -793,6 +823,11 @@ App build: %@ No comment provided by engineer. + + App data migration + App data migration + No comment provided by engineer. + App encrypts new local files (except videos). App encrypts new local files (except videos). @@ -828,6 +863,21 @@ Appearance No comment provided by engineer. + + Apply + Apply + No comment provided by engineer. + + + Archive and upload + Archive and upload + No comment provided by engineer. + + + Archiving database + Archiving database + No comment provided by engineer. + Attach Attach @@ -1018,6 +1068,11 @@ Cancel No comment provided by engineer. + + Cancel migration + Cancel migration + No comment provided by engineer. + Cannot access keychain to save database password Cannot access keychain to save database password @@ -1119,6 +1174,11 @@ Chat is stopped. If you already used this database on another device, you should transfer it back before starting chat. No comment provided by engineer. + + Chat migrated! + Chat migrated! + No comment provided by engineer. + Chat preferences Chat preferences @@ -1139,6 +1199,11 @@ Chinese and Spanish interface No comment provided by engineer. + + Choose _Migrate from another device_ on the new device and scan QR code. + Choose _Migrate from another device_ on the new device and scan QR code. + No comment provided by engineer. + Choose file Choose file @@ -1209,6 +1274,11 @@ Confirm database upgrades No comment provided by engineer. + + Confirm network settings + Confirm network settings + No comment provided by engineer. + Confirm new passphrase… Confirm new passphrase… @@ -1219,6 +1289,16 @@ Confirm password No comment provided by engineer. + + Confirm that you remember database passphrase to migrate it. + Confirm that you remember database passphrase to migrate it. + No comment provided by engineer. + + + Confirm upload + Confirm upload + No comment provided by engineer. + Connect Connect @@ -1478,6 +1558,11 @@ This is your own one-time link! Created on %@ No comment provided by engineer. + + Creating archive link + Creating archive link + No comment provided by engineer. + Creating link… Creating link… @@ -1698,6 +1783,11 @@ This cannot be undone! Delete database No comment provided by engineer. + + Delete database from this device + Delete database from this device + No comment provided by engineer. + Delete file Delete file @@ -1988,11 +2078,26 @@ This cannot be undone! Downgrade and open chat No comment provided by engineer. + + Download failed + Download failed + No comment provided by engineer. + Download file Download file server test step + + Downloading archive + Downloading archive + No comment provided by engineer. + + + Downloading link details + Downloading link details + No comment provided by engineer. + Duplicate display name! Duplicate display name! @@ -2048,6 +2153,11 @@ This cannot be undone! Enable for all No comment provided by engineer. + + Enable in direct chats (BETA)! + Enable in direct chats (BETA)! + No comment provided by engineer. + Enable instant notifications? Enable instant notifications? @@ -2163,6 +2273,11 @@ This cannot be undone! Enter group name… No comment provided by engineer. + + Enter passphrase + Enter passphrase + No comment provided by engineer. + Enter passphrase… Enter passphrase… @@ -2223,6 +2338,11 @@ This cannot be undone! Error adding member(s) No comment provided by engineer. + + Error allowing contact PQ encryption + Error allowing contact PQ encryption + No comment provided by engineer. + Error changing address Error changing address @@ -2313,6 +2433,11 @@ This cannot be undone! Error deleting user profile No comment provided by engineer. + + Error downloading the archive + Error downloading the archive + No comment provided by engineer. + Error enabling delivery receipts! Error enabling delivery receipts! @@ -2388,6 +2513,11 @@ This cannot be undone! Error saving passphrase to keychain No comment provided by engineer. + + Error saving settings + Error saving settings + when migrating + Error saving user password Error saving user password @@ -2458,6 +2588,16 @@ This cannot be undone! Error updating user privacy No comment provided by engineer. + + Error uploading the archive + Error uploading the archive + No comment provided by engineer. + + + Error verifying passphrase: + Error verifying passphrase: + No comment provided by engineer. + Error: Error: @@ -2508,6 +2648,11 @@ This cannot be undone! Exported database archive. No comment provided by engineer. + + Exported file doesn't exist + Exported file doesn't exist + No comment provided by engineer. + Exporting database archive… Exporting database archive… @@ -2578,6 +2723,16 @@ This cannot be undone! Filter unread and favorite chats. No comment provided by engineer. + + Finalize migration + Finalize migration + No comment provided by engineer. + + + Finalize migration on another device. + Finalize migration on another device. + No comment provided by engineer. + Finally, we have them! 🚀 Finally, we have them! 🚀 @@ -2868,6 +3023,11 @@ This cannot be undone! How to use your servers No comment provided by engineer. + + Hungarian interface + Hungarian interface + No comment provided by engineer. + ICE servers (one per line) ICE servers (one per line) @@ -2933,6 +3093,16 @@ This cannot be undone! Import database No comment provided by engineer. + + Import failed + Import failed + No comment provided by engineer. + + + Importing archive + Importing archive + No comment provided by engineer. + Improved message delivery Improved message delivery @@ -2948,6 +3118,11 @@ This cannot be undone! Improved server configuration No comment provided by engineer. + + In order to continue, chat should be stopped. + In order to continue, chat should be stopped. + No comment provided by engineer. + In reply to In reply to @@ -3060,6 +3235,11 @@ This cannot be undone! Invalid link No comment provided by engineer. + + Invalid migration confirmation + Invalid migration confirmation + No comment provided by engineer. + Invalid name! Invalid name! @@ -3428,6 +3608,11 @@ This is your link for group %@! Message text No comment provided by engineer. + + Message too large + Message too large + No comment provided by engineer. + Messages Messages @@ -3443,11 +3628,56 @@ This is your link for group %@! Messages from %@ will be shown! No comment provided by engineer. + + Messages, files and calls are protected by **end-to-end encryption** with perfect forward secrecy, repudiation and break-in recovery. + Messages, files and calls are protected by **end-to-end encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Messages, files and calls are protected by **quantum resistant e2e encryption** with perfect forward secrecy, repudiation and break-in recovery. + Messages, files and calls are protected by **quantum resistant e2e encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Migrate device + Migrate device + No comment provided by engineer. + + + Migrate from another device + Migrate from another device + No comment provided by engineer. + + + Migrate here + Migrate here + No comment provided by engineer. + + + Migrate to another device + Migrate to another device + No comment provided by engineer. + + + Migrate to another device via QR code. + Migrate to another device via QR code. + No comment provided by engineer. + + + Migrating + Migrating + No comment provided by engineer. + Migrating database archive… Migrating database archive… No comment provided by engineer. + + Migration complete + Migration complete + No comment provided by engineer. + Migration error: Migration error: @@ -3807,6 +4037,11 @@ This is your link for group %@! Open group No comment provided by engineer. + + Open migration to another device + Open migration to another device + authentication reason + Open user profiles Open user profiles @@ -3822,11 +4057,21 @@ This is your link for group %@! Opening app… No comment provided by engineer. + + Or paste archive link + Or paste archive link + No comment provided by engineer. + Or scan QR code Or scan QR code No comment provided by engineer. + + Or securely share this file link + Or securely share this file link + No comment provided by engineer. + Or show this code Or show this code @@ -3912,6 +4157,11 @@ This is your link for group %@! Permanent decryption error message decrypt error item + + Picture-in-picture calls + Picture-in-picture calls + No comment provided by engineer. + Please ask your contact to enable sending voice messages. Please ask your contact to enable sending voice messages. @@ -3932,6 +4182,11 @@ This is your link for group %@! Please check yours and your contact preferences. No comment provided by engineer. + + Please confirm that network settings are correct for this device. + Please confirm that network settings are correct for this device. + No comment provided by engineer. + Please contact developers. Error: %@ @@ -3989,6 +4244,11 @@ Error: %@ Possibly, certificate fingerprint in server address is incorrect server test error + + Post-quantum E2EE + Post-quantum E2EE + No comment provided by engineer. + Preserve the last message draft, with attachments. Preserve the last message draft, with attachments. @@ -4124,6 +4384,16 @@ Error: %@ Push notifications No comment provided by engineer. + + Push server + Push server + No comment provided by engineer. + + + Quantum resistant encryption + Quantum resistant encryption + No comment provided by engineer. + Rate the app Rate the app @@ -4309,11 +4579,26 @@ Error: %@ Repeat connection request? No comment provided by engineer. + + Repeat download + Repeat download + No comment provided by engineer. + + + Repeat import + Repeat import + No comment provided by engineer. + Repeat join request? Repeat join request? No comment provided by engineer. + + Repeat upload + Repeat upload + No comment provided by engineer. + Reply Reply @@ -4414,6 +4699,11 @@ Error: %@ SMP servers No comment provided by engineer. + + Safer groups + Safer groups + No comment provided by engineer. + Save Save @@ -4779,6 +5069,11 @@ Error: %@ Set passcode No comment provided by engineer. + + Set passphrase + Set passphrase + No comment provided by engineer. + Set passphrase to export Set passphrase to export @@ -4834,6 +5129,11 @@ Error: %@ Share with contacts No comment provided by engineer. + + Show QR code + Show QR code + No comment provided by engineer. + Show calls in phone history Show calls in phone history @@ -4974,6 +5274,11 @@ Error: %@ Stop SimpleX authentication reason + + Stop chat + Stop chat + No comment provided by engineer. + Stop chat to enable database actions Stop chat to enable database actions @@ -5014,6 +5319,11 @@ Error: %@ Stop sharing address? No comment provided by engineer. + + Stopping chat + Stopping chat + No comment provided by engineer. + Submit Submit @@ -5261,6 +5571,16 @@ It can happen because of some bug or when the connection is compromised.This action cannot be undone - your profile, contacts, messages and files will be irreversibly lost. No comment provided by engineer. + + This chat is protected by end-to-end encryption. + This chat is protected by end-to-end encryption. + E2EE info chat item + + + This chat is protected by quantum resistant end-to-end encryption. + This chat is protected by quantum resistant end-to-end encryption. + E2EE info chat item + This device name This device name @@ -5555,11 +5875,21 @@ To connect, please ask your contact to create another connection link and check Upgrade and open chat No comment provided by engineer. + + Upload failed + Upload failed + No comment provided by engineer. + Upload file Upload file server test step + + Uploading archive + Uploading archive + No comment provided by engineer. + Use .onion hosts Use .onion hosts @@ -5610,6 +5940,11 @@ To connect, please ask your contact to create another connection link and check Use server No comment provided by engineer. + + Use the app while in the call. + Use the app while in the call. + No comment provided by engineer. + User profile User profile @@ -5645,6 +5980,16 @@ To connect, please ask your contact to create another connection link and check Verify connections No comment provided by engineer. + + Verify database passphrase + Verify database passphrase + No comment provided by engineer. + + + Verify passphrase + Verify passphrase + No comment provided by engineer. + Verify security code Verify security code @@ -5735,6 +6080,11 @@ To connect, please ask your contact to create another connection link and check Waiting for video No comment provided by engineer. + + Warning: starting chat on multiple devices is not supported and will cause message delivery failures + Warning: starting chat on multiple devices is not supported and will cause message delivery failures + No comment provided by engineer. + Warning: you may lose some data! Warning: you may lose some data! @@ -5755,6 +6105,11 @@ To connect, please ask your contact to create another connection link and check Welcome message No comment provided by engineer. + + Welcome message is too long + Welcome message is too long + No comment provided by engineer. + What's new What's new @@ -5810,6 +6165,11 @@ To connect, please ask your contact to create another connection link and check You No comment provided by engineer. + + You **must not** use the same database on two devices. + You **must not** use the same database on two devices. + No comment provided by engineer. + You accepted connection You accepted connection @@ -5897,6 +6257,11 @@ Repeat join request? You can enable them later via app Privacy & Security settings. No comment provided by engineer. + + You can give another try. + You can give another try. + No comment provided by engineer. + You can hide or mute a user profile - swipe it to the right. You can hide or mute a user profile - swipe it to the right. @@ -6291,7 +6656,7 @@ SimpleX servers cannot see your profile. blocked blocked - No comment provided by engineer. + marked deleted chat item preview text blocked %@ @@ -6301,7 +6666,7 @@ SimpleX servers cannot see your profile. blocked by admin blocked by admin - blocked chat item + marked deleted chat item preview text bold @@ -6731,7 +7096,7 @@ SimpleX servers cannot see your profile. moderated by %@ moderated by %@ - No comment provided by engineer. + marked deleted chat item preview text months @@ -6800,6 +7165,11 @@ SimpleX servers cannot see your profile. peer-to-peer No comment provided by engineer. + + quantum resistant e2e encryption + quantum resistant e2e encryption + chat item text + received answer… received answer… @@ -6875,6 +7245,11 @@ SimpleX servers cannot see your profile. set new profile picture profile update event chat item + + standard end-to-end encryption + standard end-to-end encryption + chat item text + starting… starting… diff --git a/apps/ios/SimpleX Localizations/es.xcloc/Localized Contents/es.xliff b/apps/ios/SimpleX Localizations/es.xcloc/Localized Contents/es.xliff index bed077aa46..9cc9583e2e 100644 --- a/apps/ios/SimpleX Localizations/es.xcloc/Localized Contents/es.xliff +++ b/apps/ios/SimpleX Localizations/es.xcloc/Localized Contents/es.xliff @@ -107,6 +107,10 @@ %@ conectado No comment provided by engineer. + + %@ downloaded + No comment provided by engineer. + %@ is connected! %@ ¡está conectado! @@ -127,6 +131,10 @@ Servidores %@ No comment provided by engineer. + + %@ uploaded + No comment provided by engineer. + %@ wants to connect! ¡ %@ quiere contactar! @@ -219,6 +227,7 @@ %lld messages blocked by admin + %lld mensajes bloqueados por el administrador No comment provided by engineer. @@ -341,6 +350,10 @@ **Más privado**: no se usa el servidor de notificaciones de SimpleX Chat, los mensajes se comprueban periódicamente en segundo plano (dependiendo de la frecuencia con la que utilices la aplicación). No comment provided by engineer. + + **Please note**: using the same database on two devices will break the decryption of messages from your connections, as a security protection. + No comment provided by engineer. + **Please note**: you will NOT be able to recover or change passphrase if you lose it. **Atención**: NO podrás recuperar o cambiar la contraseña si la pierdes. @@ -356,6 +369,10 @@ **Advertencia**: Las notificaciones automáticas instantáneas requieren una contraseña guardada en Keychain. No comment provided by engineer. + + **Warning**: the archive will be removed. + No comment provided by engineer. + **e2e encrypted** audio call Llamada con **cifrado de extremo a extremo ** @@ -612,6 +629,10 @@ El cambio de dirección se cancelará. Se usará la antigua dirección de recepción. No comment provided by engineer. + + Admins can block a member for all. + No comment provided by engineer. + Admins can create the links to join groups. Los administradores pueden crear enlaces para unirse a grupos. @@ -644,6 +665,7 @@ All messages will be deleted - this cannot be undone! + Todos los mensajes serán borrados. ¡No podrá deshacerse! No comment provided by engineer. @@ -666,6 +688,10 @@ Todos tus contactos permanecerán conectados. La actualización del perfil se enviará a tus contactos. No comment provided by engineer. + + All your contacts, conversations and files will be securely encrypted and uploaded in chunks to configured XFTP relays. + No comment provided by engineer. + Allow Se permite @@ -791,6 +817,10 @@ Compilación app: %@ No comment provided by engineer. + + App data migration + No comment provided by engineer. + App encrypts new local files (except videos). Cifrado de los nuevos archivos locales (excepto vídeos). @@ -826,6 +856,18 @@ Apariencia No comment provided by engineer. + + Apply + No comment provided by engineer. + + + Archive and upload + No comment provided by engineer. + + + Archiving database + No comment provided by engineer. + Attach Adjuntar @@ -923,6 +965,7 @@ Block for all + Bloquear para todos No comment provided by engineer. @@ -937,6 +980,7 @@ Block member for all? + ¿Bloqear miembro para todos? No comment provided by engineer. @@ -946,6 +990,7 @@ Blocked by admin + Bloqueado por el administrador No comment provided by engineer. @@ -1013,6 +1058,10 @@ Cancelar No comment provided by engineer. + + Cancel migration + No comment provided by engineer. + Cannot access keychain to save database password Keychain inaccesible para guardar la contraseña de la base de datos @@ -1114,6 +1163,10 @@ Chat está detenido. Si estás usando esta base de datos en otro dispositivo, deberías transferirla de vuelta antes de iniciarlo. No comment provided by engineer. + + Chat migrated! + No comment provided by engineer. + Chat preferences Preferencias de Chat @@ -1134,6 +1187,10 @@ Interfaz en chino y español No comment provided by engineer. + + Choose _Migrate from another device_ on the new device and scan QR code. + No comment provided by engineer. + Choose file Elije archivo @@ -1161,6 +1218,7 @@ Clear private notes? + ¿Borrar notas privadas? No comment provided by engineer. @@ -1203,6 +1261,10 @@ Confirmar actualizaciones de la bases de datos No comment provided by engineer. + + Confirm network settings + No comment provided by engineer. + Confirm new passphrase… Confirme nueva contraseña… @@ -1213,6 +1275,14 @@ Confirmar contraseña No comment provided by engineer. + + Confirm that you remember database passphrase to migrate it. + No comment provided by engineer. + + + Confirm upload + No comment provided by engineer. + Connect Conectar @@ -1459,10 +1529,12 @@ This is your own one-time link! Created at + Creado No comment provided by engineer. Created at: %@ + Creado: %@ copied message info @@ -1470,6 +1542,10 @@ This is your own one-time link! Creado en %@ No comment provided by engineer. + + Creating archive link + No comment provided by engineer. + Creating link… Creando enlace… @@ -1690,6 +1766,10 @@ This cannot be undone! Eliminar base de datos No comment provided by engineer. + + Delete database from this device + No comment provided by engineer. + Delete file Eliminar archivo @@ -1957,6 +2037,7 @@ This cannot be undone! Do not send history to new members. + No enviar historial a miembros nuevos. No comment provided by engineer. @@ -1979,11 +2060,23 @@ This cannot be undone! Degradar y abrir Chat No comment provided by engineer. + + Download failed + No comment provided by engineer. + Download file Descargar archivo server test step + + Downloading archive + No comment provided by engineer. + + + Downloading link details + No comment provided by engineer. + Duplicate display name! ¡Nombre mostrado duplicado! @@ -2039,6 +2132,10 @@ This cannot be undone! Activar para todos No comment provided by engineer. + + Enable in direct chats (BETA)! + No comment provided by engineer. + Enable instant notifications? ¿Activar notificación instantánea? @@ -2154,6 +2251,10 @@ This cannot be undone! Nombre del grupo… No comment provided by engineer. + + Enter passphrase + No comment provided by engineer. + Enter passphrase… Introduce la contraseña… @@ -2214,6 +2315,10 @@ This cannot be undone! Error al añadir miembro(s) No comment provided by engineer. + + Error allowing contact PQ encryption + No comment provided by engineer. + Error changing address Error al cambiar servidor @@ -2251,6 +2356,7 @@ This cannot be undone! Error creating message + Error al crear mensaje No comment provided by engineer. @@ -2303,6 +2409,10 @@ This cannot be undone! Error al eliminar perfil No comment provided by engineer. + + Error downloading the archive + No comment provided by engineer. + Error enabling delivery receipts! ¡Error al activar confirmaciones de entrega! @@ -2378,6 +2488,10 @@ This cannot be undone! Error al guardar contraseña en Keychain No comment provided by engineer. + + Error saving settings + when migrating + Error saving user password Error al guardar contraseña de usuario @@ -2448,6 +2562,14 @@ This cannot be undone! Error al actualizar privacidad de usuario No comment provided by engineer. + + Error uploading the archive + No comment provided by engineer. + + + Error verifying passphrase: + No comment provided by engineer. + Error: Error: @@ -2498,6 +2620,10 @@ This cannot be undone! Archivo de base de datos exportado. No comment provided by engineer. + + Exported file doesn't exist + No comment provided by engineer. + Exporting database archive… Exportando base de datos… @@ -2568,6 +2694,14 @@ This cannot be undone! Filtra chats no leídos y favoritos. No comment provided by engineer. + + Finalize migration + No comment provided by engineer. + + + Finalize migration on another device. + No comment provided by engineer. + Finally, we have them! 🚀 ¡Por fin los tenemos! 🚀 @@ -2830,6 +2964,7 @@ This cannot be undone! History is not sent to new members. + El historial no se envía a miembros nuevos. No comment provided by engineer. @@ -2857,6 +2992,10 @@ This cannot be undone! Cómo usar los servidores No comment provided by engineer. + + Hungarian interface + No comment provided by engineer. + ICE servers (one per line) Servidores ICE (uno por línea) @@ -2922,8 +3061,17 @@ This cannot be undone! Importar base de datos No comment provided by engineer. + + Import failed + No comment provided by engineer. + + + Importing archive + No comment provided by engineer. + Improved message delivery + Entrega de mensajes mejorada No comment provided by engineer. @@ -2936,6 +3084,10 @@ This cannot be undone! Configuración del servidor mejorada No comment provided by engineer. + + In order to continue, chat should be stopped. + No comment provided by engineer. + In reply to En respuesta a @@ -3040,6 +3192,7 @@ This cannot be undone! Invalid display name! + ¡Nombre mostrado no válido! No comment provided by engineer. @@ -3047,6 +3200,10 @@ This cannot be undone! Enlace no válido No comment provided by engineer. + + Invalid migration confirmation + No comment provided by engineer. + Invalid name! ¡Nombre no válido! @@ -3150,6 +3307,7 @@ This cannot be undone! Join group conversations + Unirse a la conversación del grupo No comment provided by engineer. @@ -3414,6 +3572,10 @@ This is your link for group %@! Contacto y texto No comment provided by engineer. + + Message too large + No comment provided by engineer. + Messages Mensajes @@ -3429,11 +3591,47 @@ This is your link for group %@! ¡Los mensajes de %@ serán mostrados! No comment provided by engineer. + + Messages, files and calls are protected by **end-to-end encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Messages, files and calls are protected by **quantum resistant e2e encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Migrate device + No comment provided by engineer. + + + Migrate from another device + No comment provided by engineer. + + + Migrate here + No comment provided by engineer. + + + Migrate to another device + No comment provided by engineer. + + + Migrate to another device via QR code. + No comment provided by engineer. + + + Migrating + No comment provided by engineer. + Migrating database archive… Migrando base de datos… No comment provided by engineer. + + Migration complete + No comment provided by engineer. + Migration error: Error de migración: @@ -3793,6 +3991,10 @@ This is your link for group %@! Grupo abierto No comment provided by engineer. + + Open migration to another device + authentication reason + Open user profiles Abrir perfil de usuario @@ -3808,11 +4010,19 @@ This is your link for group %@! Iniciando aplicación… No comment provided by engineer. + + Or paste archive link + No comment provided by engineer. + Or scan QR code O escanear código QR No comment provided by engineer. + + Or securely share this file link + No comment provided by engineer. + Or show this code O mostrar este código @@ -3860,6 +4070,7 @@ This is your link for group %@! Past member %@ + Miembro pasado %@ past/unknown group member @@ -3874,6 +4085,7 @@ This is your link for group %@! Paste link to connect! + Pegar enlace para conectar! No comment provided by engineer. @@ -3896,6 +4108,10 @@ This is your link for group %@! Error permanente descifrado message decrypt error item + + Picture-in-picture calls + No comment provided by engineer. + Please ask your contact to enable sending voice messages. Solicita que tu contacto habilite el envío de mensajes de voz. @@ -3916,6 +4132,10 @@ This is your link for group %@! Comprueba tus preferencias y las de tu contacto. No comment provided by engineer. + + Please confirm that network settings are correct for this device. + No comment provided by engineer. + Please contact developers. Error: %@ @@ -3973,6 +4193,10 @@ Error: %@ Posiblemente la huella digital del certificado en la dirección del servidor es incorrecta server test error + + Post-quantum E2EE + No comment provided by engineer. + Preserve the last message draft, with attachments. Conserva el último borrador del mensaje con los datos adjuntos. @@ -4010,6 +4234,7 @@ Error: %@ Private notes + Notas privadas name of notes to self @@ -4107,6 +4332,14 @@ Error: %@ Notificaciones automáticas No comment provided by engineer. + + Push server + No comment provided by engineer. + + + Quantum resistant encryption + No comment provided by engineer. + Rate the app Valora la aplicación @@ -4194,6 +4427,7 @@ Error: %@ Recent history and improved [directory bot](simplex:/contact#/?v=1-4&smp=smp%3A%2F%2Fu2dS9sG8nMNURyZwqASV4yROM28Er0luVTx5X1CsMrU%3D%40smp4.simplex.im%2FeXSPwqTkKyDO3px4fLf1wx3MvPdjdLW3%23%2F%3Fv%3D1-2%26dh%3DMCowBQYDK2VuAyEAaiv6MkMH44L2TcYrt_CsX3ZvM11WgbMEUn0hkIKTOho%253D%26srv%3Do5vmywmrnaxalvz6wi3zicyftgio6psuvyniis6gco6bp6ekl4cqj4id.onion). + Historial reciente y [bot del directorio](simplex:/contact#/?v=1-4&smp=smp%3A%2F%2Fu2dS9sG8nMNURyZwqASV4yROM28Er0luVTx5X1CsMrU%3D%40smp4.simplex.im%2FeXSPwqTkKyDO3px4fLf1wx3MvPdjdLW3%23%2F%3Fv%3D1-2%26dh%3DMCowBQYDK2VuAyEAaiv6MkMH44L2TcYrt_CsX3ZvM11WgbMEUn0hkIKTOho%253D%26srv%3Do5vmywmrnaxalvz6wi3zicyftgio6psuvyniis6gco6bp6ekl4cqj4id.onion) mejorados. No comment provided by engineer. @@ -4291,11 +4525,23 @@ Error: %@ ¿Repetir solicitud de conexión? No comment provided by engineer. + + Repeat download + No comment provided by engineer. + + + Repeat import + No comment provided by engineer. + Repeat join request? ¿Repetir solicitud de admisión? No comment provided by engineer. + + Repeat upload + No comment provided by engineer. + Reply Responder @@ -4396,6 +4642,10 @@ Error: %@ Servidores SMP No comment provided by engineer. + + Safer groups + No comment provided by engineer. + Save Guardar @@ -4483,6 +4733,7 @@ Error: %@ Saved message + Mensaje guardado message info title @@ -4517,6 +4768,7 @@ Error: %@ Search bar accepts invitation links. + La barra de búsqueda acepta enlaces de invitación. No comment provided by engineer. @@ -4631,6 +4883,7 @@ Error: %@ Send up to 100 last messages to new members. + Enviar hasta 100 últimos mensajes a los miembros nuevos. No comment provided by engineer. @@ -4758,6 +5011,10 @@ Error: %@ Código autodestrucción No comment provided by engineer. + + Set passphrase + No comment provided by engineer. + Set passphrase to export Escribe la contraseña para exportar @@ -4813,6 +5070,10 @@ Error: %@ Compartir con contactos No comment provided by engineer. + + Show QR code + No comment provided by engineer. + Show calls in phone history Mostrar llamadas en el historial del teléfono @@ -4953,6 +5214,10 @@ Error: %@ Detener SimpleX authentication reason + + Stop chat + No comment provided by engineer. + Stop chat to enable database actions Detén SimpleX para habilitar las acciones sobre la base de datos @@ -4993,6 +5258,10 @@ Error: %@ ¿Dejar de compartir la dirección? No comment provided by engineer. + + Stopping chat + No comment provided by engineer. + Submit Enviar @@ -5227,19 +5496,27 @@ Puede ocurrir por algún bug o cuando la conexión está comprometida. This action cannot be undone - all received and sent files and media will be deleted. Low resolution pictures will remain. - Esta acción no se puede deshacer. Se eliminarán todos los archivos y multimedia recibidos y enviados. Las imágenes de baja resolución permanecerán. + Esta acción es irreversible. Se eliminarán todos los archivos y multimedia recibidos y enviados. Las imágenes de baja resolución permanecerán. No comment provided by engineer. This action cannot be undone - the messages sent and received earlier than selected will be deleted. It may take several minutes. - Esta acción no se puede deshacer. Se eliminarán los mensajes enviados y recibidos anteriores a la selección. Puede tardar varios minutos. + Esta acción es irreversible. Se eliminarán los mensajes enviados y recibidos anteriores a la selección. Puede tardar varios minutos. No comment provided by engineer. This action cannot be undone - your profile, contacts, messages and files will be irreversibly lost. - Esta acción no se puede deshacer. Tu perfil, contactos, mensajes y archivos se perderán irreversiblemente. + Esta acción es irreversible. Tu perfil, contactos, mensajes y archivos se perderán irreversiblemente. No comment provided by engineer. + + This chat is protected by end-to-end encryption. + E2EE info chat item + + + This chat is protected by quantum resistant end-to-end encryption. + E2EE info chat item + This device name Nombre del dispositivo @@ -5247,6 +5524,7 @@ Puede ocurrir por algún bug o cuando la conexión está comprometida. This display name is invalid. Please choose another name. + Éste nombre mostrado no es válido. Por favor, elije otro nombre. No comment provided by engineer. @@ -5353,6 +5631,7 @@ Se te pedirá que completes la autenticación antes de activar esta función. Turkish interface + Interfaz en turco No comment provided by engineer. @@ -5377,6 +5656,7 @@ Se te pedirá que completes la autenticación antes de activar esta función. Unblock for all + Desbloquear para todos No comment provided by engineer. @@ -5386,6 +5666,7 @@ Se te pedirá que completes la autenticación antes de activar esta función. Unblock member for all? + ¿Desbloquear miembro para todos? No comment provided by engineer. @@ -5488,6 +5769,7 @@ Para conectarte, pide a tu contacto que cree otro enlace de conexión y comprueb Up to 100 last messages are sent to new members. + Hasta 100 últimos mensajes son enviados a los miembros nuevos. No comment provided by engineer. @@ -5530,11 +5812,19 @@ Para conectarte, pide a tu contacto que cree otro enlace de conexión y comprueb Actualizar y abrir Chat No comment provided by engineer. + + Upload failed + No comment provided by engineer. + Upload file Subir archivo server test step + + Uploading archive + No comment provided by engineer. + Use .onion hosts Usar hosts .onion @@ -5585,6 +5875,10 @@ Para conectarte, pide a tu contacto que cree otro enlace de conexión y comprueb Usar servidor No comment provided by engineer. + + Use the app while in the call. + No comment provided by engineer. + User profile Perfil de usuario @@ -5620,6 +5914,14 @@ Para conectarte, pide a tu contacto que cree otro enlace de conexión y comprueb Verificar conexiones No comment provided by engineer. + + Verify database passphrase + No comment provided by engineer. + + + Verify passphrase + No comment provided by engineer. + Verify security code Comprobar código de seguridad @@ -5662,6 +5964,7 @@ Para conectarte, pide a tu contacto que cree otro enlace de conexión y comprueb Visible history + Historial visible chat feature @@ -5709,6 +6012,10 @@ Para conectarte, pide a tu contacto que cree otro enlace de conexión y comprueb Esperando el vídeo No comment provided by engineer. + + Warning: starting chat on multiple devices is not supported and will cause message delivery failures + No comment provided by engineer. + Warning: you may lose some data! Atención: ¡puedes perder algunos datos! @@ -5729,6 +6036,10 @@ Para conectarte, pide a tu contacto que cree otro enlace de conexión y comprueb Mensaje de bienvenida No comment provided by engineer. + + Welcome message is too long + No comment provided by engineer. + What's new Novedades @@ -5751,6 +6062,7 @@ Para conectarte, pide a tu contacto que cree otro enlace de conexión y comprueb With encrypted files and media. + Con cifrado de archivos y multimedia. No comment provided by engineer. @@ -5760,6 +6072,7 @@ Para conectarte, pide a tu contacto que cree otro enlace de conexión y comprueb With reduced battery usage. + Con uso reducido de batería. No comment provided by engineer. @@ -5782,6 +6095,10 @@ Para conectarte, pide a tu contacto que cree otro enlace de conexión y comprueb No comment provided by engineer. + + You **must not** use the same database on two devices. + No comment provided by engineer. + You accepted connection Has aceptado la conexión @@ -5869,6 +6186,10 @@ Repeat join request? Puedes activarlos más tarde en la configuración de Privacidad y Seguridad. No comment provided by engineer. + + You can give another try. + No comment provided by engineer. + You can hide or mute a user profile - swipe it to the right. Puedes ocultar o silenciar un perfil deslizándolo a la derecha. @@ -6263,15 +6584,17 @@ Los servidores de SimpleX no pueden ver tu perfil. blocked bloqueado - No comment provided by engineer. + marked deleted chat item preview text blocked %@ + %@ bloqueado rcv group event chat item blocked by admin - blocked chat item + bloqueado por el administrador + marked deleted chat item preview text bold @@ -6395,6 +6718,7 @@ Los servidores de SimpleX no pueden ver tu perfil. contact %1$@ changed to %2$@ + el contacto %1$@ ha cambiado a %2$@ profile update event chat item @@ -6669,6 +6993,7 @@ Los servidores de SimpleX no pueden ver tu perfil. member %1$@ changed to %2$@ + el miembro %1$@ ha cambiado a %2$@ profile update event chat item @@ -6699,7 +7024,7 @@ Los servidores de SimpleX no pueden ver tu perfil. moderated by %@ moderado por %@ - No comment provided by engineer. + marked deleted chat item preview text months @@ -6768,6 +7093,10 @@ Los servidores de SimpleX no pueden ver tu perfil. p2p No comment provided by engineer. + + quantum resistant e2e encryption + chat item text + received answer… respuesta recibida… @@ -6795,10 +7124,12 @@ Los servidores de SimpleX no pueden ver tu perfil. removed contact address + dirección de contacto eliminada profile update event chat item removed profile picture + imagen de perfil eliminada profile update event chat item @@ -6833,12 +7164,18 @@ Los servidores de SimpleX no pueden ver tu perfil. set new contact address + nueva dirección de contacto profile update event chat item set new profile picture + nueva imagen de perfil profile update event chat item + + standard end-to-end encryption + chat item text + starting… inicializando… @@ -6856,6 +7193,7 @@ Los servidores de SimpleX no pueden ver tu perfil. unblocked %@ + %@ desbloqueado rcv group event chat item @@ -6865,6 +7203,7 @@ Los servidores de SimpleX no pueden ver tu perfil. unknown status + estado desconocido No comment provided by engineer. @@ -6874,6 +7213,7 @@ Los servidores de SimpleX no pueden ver tu perfil. updated profile + perfil actualizado profile update event chat item @@ -6948,6 +7288,7 @@ Los servidores de SimpleX no pueden ver tu perfil. you blocked %@ + has bloqueado a %@ snd group event chat item @@ -6992,6 +7333,7 @@ Los servidores de SimpleX no pueden ver tu perfil. you unblocked %@ + has desbloqueado a %@ snd group event chat item diff --git a/apps/ios/SimpleX Localizations/fi.xcloc/Localized Contents/fi.xliff b/apps/ios/SimpleX Localizations/fi.xcloc/Localized Contents/fi.xliff index 91dd46fd09..3e971985ef 100644 --- a/apps/ios/SimpleX Localizations/fi.xcloc/Localized Contents/fi.xliff +++ b/apps/ios/SimpleX Localizations/fi.xcloc/Localized Contents/fi.xliff @@ -105,6 +105,10 @@ %@ connected No comment provided by engineer. + + %@ downloaded + No comment provided by engineer. + %@ is connected! %@ on yhdistetty! @@ -125,6 +129,10 @@ %@ palvelimet No comment provided by engineer. + + %@ uploaded + No comment provided by engineer. + %@ wants to connect! %@ haluaa muodostaa yhteyden! @@ -330,6 +338,10 @@ **Yksityisin**: älä käytä SimpleX Chat -ilmoituspalvelinta, tarkista viestit ajoittain taustalla (riippuu siitä, kuinka usein käytät sovellusta). No comment provided by engineer. + + **Please note**: using the same database on two devices will break the decryption of messages from your connections, as a security protection. + No comment provided by engineer. + **Please note**: you will NOT be able to recover or change passphrase if you lose it. **Huomaa**: et voi palauttaa tai muuttaa tunnuslausetta, jos kadotat sen. @@ -345,6 +357,10 @@ **Varoitus**: Välittömät push-ilmoitukset vaativat tunnuslauseen, joka on tallennettu Keychainiin. No comment provided by engineer. + + **Warning**: the archive will be removed. + No comment provided by engineer. + **e2e encrypted** audio call **e2e-salattu** äänipuhelu @@ -593,6 +609,10 @@ Osoitteenmuutos keskeytetään. Käytetään vanhaa vastaanotto-osoitetta. No comment provided by engineer. + + Admins can block a member for all. + No comment provided by engineer. + Admins can create the links to join groups. Ylläpitäjät voivat luoda linkkejä ryhmiin liittymiseen. @@ -646,6 +666,10 @@ Kaikki kontaktisi pysyvät yhteydessä. Profiilipäivitys lähetetään kontakteillesi. No comment provided by engineer. + + All your contacts, conversations and files will be securely encrypted and uploaded in chunks to configured XFTP relays. + No comment provided by engineer. + Allow Salli @@ -769,6 +793,10 @@ Sovellusversio: %@ No comment provided by engineer. + + App data migration + No comment provided by engineer. + App encrypts new local files (except videos). No comment provided by engineer. @@ -803,6 +831,18 @@ Ulkonäkö No comment provided by engineer. + + Apply + No comment provided by engineer. + + + Archive and upload + No comment provided by engineer. + + + Archiving database + No comment provided by engineer. + Attach Liitä @@ -982,6 +1022,10 @@ Peruuta No comment provided by engineer. + + Cancel migration + No comment provided by engineer. + Cannot access keychain to save database password Ei pääsyä avainnippuun tietokannan salasanan tallentamiseksi @@ -1082,6 +1126,10 @@ Chat is stopped. If you already used this database on another device, you should transfer it back before starting chat. No comment provided by engineer. + + Chat migrated! + No comment provided by engineer. + Chat preferences Chat-asetukset @@ -1102,6 +1150,10 @@ Kiinalainen ja espanjalainen käyttöliittymä No comment provided by engineer. + + Choose _Migrate from another device_ on the new device and scan QR code. + No comment provided by engineer. + Choose file Valitse tiedosto @@ -1171,6 +1223,10 @@ Vahvista tietokannan päivitykset No comment provided by engineer. + + Confirm network settings + No comment provided by engineer. + Confirm new passphrase… Vahvista uusi tunnuslause… @@ -1181,6 +1237,14 @@ Vahvista salasana No comment provided by engineer. + + Confirm that you remember database passphrase to migrate it. + No comment provided by engineer. + + + Confirm upload + No comment provided by engineer. + Connect Yhdistä @@ -1421,6 +1485,10 @@ This is your own one-time link! Luotu %@ No comment provided by engineer. + + Creating archive link + No comment provided by engineer. + Creating link… No comment provided by engineer. @@ -1636,6 +1704,10 @@ This cannot be undone! Poista tietokanta No comment provided by engineer. + + Delete database from this device + No comment provided by engineer. + Delete file Poista tiedosto @@ -1920,11 +1992,23 @@ This cannot be undone! Alenna ja avaa keskustelu No comment provided by engineer. + + Download failed + No comment provided by engineer. + Download file Lataa tiedosto server test step + + Downloading archive + No comment provided by engineer. + + + Downloading link details + No comment provided by engineer. + Duplicate display name! Päällekkäinen näyttönimi! @@ -1979,6 +2063,10 @@ This cannot be undone! Salli kaikille No comment provided by engineer. + + Enable in direct chats (BETA)! + No comment provided by engineer. + Enable instant notifications? Salli välittömät ilmoitukset? @@ -2089,6 +2177,10 @@ This cannot be undone! Enter group name… No comment provided by engineer. + + Enter passphrase + No comment provided by engineer. + Enter passphrase… Syötä tunnuslause… @@ -2147,6 +2239,10 @@ This cannot be undone! Virhe lisättäessä jäseniä No comment provided by engineer. + + Error allowing contact PQ encryption + No comment provided by engineer. + Error changing address Virhe osoitteenvaihdossa @@ -2235,6 +2331,10 @@ This cannot be undone! Virhe käyttäjäprofiilin poistamisessa No comment provided by engineer. + + Error downloading the archive + No comment provided by engineer. + Error enabling delivery receipts! Virhe toimituskuittauksien sallimisessa! @@ -2309,6 +2409,10 @@ This cannot be undone! Virhe tunnuslauseen tallentamisessa avainnippuun No comment provided by engineer. + + Error saving settings + when migrating + Error saving user password Virhe käyttäjän salasanan tallentamisessa @@ -2377,6 +2481,14 @@ This cannot be undone! Virhe päivitettäessä käyttäjän tietosuojaa No comment provided by engineer. + + Error uploading the archive + No comment provided by engineer. + + + Error verifying passphrase: + No comment provided by engineer. + Error: Virhe: @@ -2426,6 +2538,10 @@ This cannot be undone! Viety tietokanta-arkisto. No comment provided by engineer. + + Exported file doesn't exist + No comment provided by engineer. + Exporting database archive… Tietokanta-arkiston vienti… @@ -2495,6 +2611,14 @@ This cannot be undone! Suodata lukemattomia- ja suosikkikeskusteluja. No comment provided by engineer. + + Finalize migration + No comment provided by engineer. + + + Finalize migration on another device. + No comment provided by engineer. + Finally, we have them! 🚀 Vihdoinkin meillä! 🚀 @@ -2780,6 +2904,10 @@ This cannot be undone! Miten käytät palvelimiasi No comment provided by engineer. + + Hungarian interface + No comment provided by engineer. + ICE servers (one per line) ICE-palvelimet (yksi per rivi) @@ -2845,6 +2973,14 @@ This cannot be undone! Tuo tietokanta No comment provided by engineer. + + Import failed + No comment provided by engineer. + + + Importing archive + No comment provided by engineer. + Improved message delivery No comment provided by engineer. @@ -2859,6 +2995,10 @@ This cannot be undone! Parannettu palvelimen kokoonpano No comment provided by engineer. + + In order to continue, chat should be stopped. + No comment provided by engineer. + In reply to Vastauksena @@ -2966,6 +3106,10 @@ This cannot be undone! Invalid link No comment provided by engineer. + + Invalid migration confirmation + No comment provided by engineer. + Invalid name! No comment provided by engineer. @@ -3321,6 +3465,10 @@ This is your link for group %@! Viestin teksti No comment provided by engineer. + + Message too large + No comment provided by engineer. + Messages Viestit @@ -3335,11 +3483,47 @@ This is your link for group %@! Messages from %@ will be shown! No comment provided by engineer. + + Messages, files and calls are protected by **end-to-end encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Messages, files and calls are protected by **quantum resistant e2e encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Migrate device + No comment provided by engineer. + + + Migrate from another device + No comment provided by engineer. + + + Migrate here + No comment provided by engineer. + + + Migrate to another device + No comment provided by engineer. + + + Migrate to another device via QR code. + No comment provided by engineer. + + + Migrating + No comment provided by engineer. + Migrating database archive… Siirretään tietokannan arkistoa… No comment provided by engineer. + + Migration complete + No comment provided by engineer. + Migration error: Siirtovirhe: @@ -3693,6 +3877,10 @@ This is your link for group %@! Open group No comment provided by engineer. + + Open migration to another device + authentication reason + Open user profiles Avaa käyttäjäprofiilit @@ -3707,10 +3895,18 @@ This is your link for group %@! Opening app… No comment provided by engineer. + + Or paste archive link + No comment provided by engineer. + Or scan QR code No comment provided by engineer. + + Or securely share this file link + No comment provided by engineer. + Or show this code No comment provided by engineer. @@ -3791,6 +3987,10 @@ This is your link for group %@! Pysyvä salauksen purkuvirhe message decrypt error item + + Picture-in-picture calls + No comment provided by engineer. + Please ask your contact to enable sending voice messages. Pyydä kontaktiasi sallimaan ääniviestien lähettäminen. @@ -3811,6 +4011,10 @@ This is your link for group %@! Tarkista omasi ja kontaktin asetukset. No comment provided by engineer. + + Please confirm that network settings are correct for this device. + No comment provided by engineer. + Please contact developers. Error: %@ @@ -3866,6 +4070,10 @@ Error: %@ Palvelimen osoitteen varmenteen sormenjälki on mahdollisesti virheellinen server test error + + Post-quantum E2EE + No comment provided by engineer. + Preserve the last message draft, with attachments. Säilytä viimeinen viestiluonnos liitteineen. @@ -3998,6 +4206,14 @@ Error: %@ Push-ilmoitukset No comment provided by engineer. + + Push server + No comment provided by engineer. + + + Quantum resistant encryption + No comment provided by engineer. + Rate the app Arvioi sovellus @@ -4180,10 +4396,22 @@ Error: %@ Repeat connection request? No comment provided by engineer. + + Repeat download + No comment provided by engineer. + + + Repeat import + No comment provided by engineer. + Repeat join request? No comment provided by engineer. + + Repeat upload + No comment provided by engineer. + Reply Vastaa @@ -4283,6 +4511,10 @@ Error: %@ SMP-palvelimet No comment provided by engineer. + + Safer groups + No comment provided by engineer. + Save Tallenna @@ -4641,6 +4873,10 @@ Error: %@ Aseta pääsykoodi No comment provided by engineer. + + Set passphrase + No comment provided by engineer. + Set passphrase to export Aseta tunnuslause vientiä varten @@ -4695,6 +4931,10 @@ Error: %@ Jaa kontaktien kanssa No comment provided by engineer. + + Show QR code + No comment provided by engineer. + Show calls in phone history Näytä puhelut puhelinhistoriassa @@ -4833,6 +5073,10 @@ Error: %@ Lopeta SimpleX authentication reason + + Stop chat + No comment provided by engineer. + Stop chat to enable database actions Pysäytä keskustelu tietokantatoimien mahdollistamiseksi @@ -4873,6 +5117,10 @@ Error: %@ Lopeta osoitteen jakaminen? No comment provided by engineer. + + Stopping chat + No comment provided by engineer. + Submit Lähetä @@ -5115,6 +5363,14 @@ Tämä voi johtua jostain virheestä tai siitä, että yhteys on vaarantunut.Tätä toimintoa ei voi kumota - profiilisi, kontaktisi, viestisi ja tiedostosi poistuvat peruuttamattomasti. No comment provided by engineer. + + This chat is protected by end-to-end encryption. + E2EE info chat item + + + This chat is protected by quantum resistant end-to-end encryption. + E2EE info chat item + This device name No comment provided by engineer. @@ -5394,11 +5650,19 @@ Jos haluat muodostaa yhteyden, pyydä kontaktiasi luomaan toinen yhteyslinkki ja Päivitä ja avaa keskustelu No comment provided by engineer. + + Upload failed + No comment provided by engineer. + Upload file Lataa tiedosto server test step + + Uploading archive + No comment provided by engineer. + Use .onion hosts Käytä .onion-isäntiä @@ -5447,6 +5711,10 @@ Jos haluat muodostaa yhteyden, pyydä kontaktiasi luomaan toinen yhteyslinkki ja Käytä palvelinta No comment provided by engineer. + + Use the app while in the call. + No comment provided by engineer. + User profile Käyttäjäprofiili @@ -5479,6 +5747,14 @@ Jos haluat muodostaa yhteyden, pyydä kontaktiasi luomaan toinen yhteyslinkki ja Verify connections No comment provided by engineer. + + Verify database passphrase + No comment provided by engineer. + + + Verify passphrase + No comment provided by engineer. + Verify security code Tarkista turvakoodi @@ -5566,6 +5842,10 @@ Jos haluat muodostaa yhteyden, pyydä kontaktiasi luomaan toinen yhteyslinkki ja Odottaa videota No comment provided by engineer. + + Warning: starting chat on multiple devices is not supported and will cause message delivery failures + No comment provided by engineer. + Warning: you may lose some data! Varoitus: saatat menettää joitain tietoja! @@ -5586,6 +5866,10 @@ Jos haluat muodostaa yhteyden, pyydä kontaktiasi luomaan toinen yhteyslinkki ja Tervetuloviesti No comment provided by engineer. + + Welcome message is too long + No comment provided by engineer. + What's new Uusimmat @@ -5639,6 +5923,10 @@ Jos haluat muodostaa yhteyden, pyydä kontaktiasi luomaan toinen yhteyslinkki ja Sinä No comment provided by engineer. + + You **must not** use the same database on two devices. + No comment provided by engineer. + You accepted connection Hyväksyit yhteyden @@ -5718,6 +6006,10 @@ Repeat join request? Voit ottaa ne käyttöön myöhemmin sovelluksen Yksityisyys & Turvallisuus -asetuksista. No comment provided by engineer. + + You can give another try. + No comment provided by engineer. + You can hide or mute a user profile - swipe it to the right. Voit piilottaa tai mykistää käyttäjäprofiilin pyyhkäisemällä sitä oikealle. @@ -6101,7 +6393,7 @@ SimpleX-palvelimet eivät näe profiiliasi. blocked - No comment provided by engineer. + marked deleted chat item preview text blocked %@ @@ -6109,7 +6401,7 @@ SimpleX-palvelimet eivät näe profiiliasi. blocked by admin - blocked chat item + marked deleted chat item preview text bold @@ -6535,7 +6827,7 @@ SimpleX-palvelimet eivät näe profiiliasi. moderated by %@ %@ moderoi - No comment provided by engineer. + marked deleted chat item preview text months @@ -6604,6 +6896,10 @@ SimpleX-palvelimet eivät näe profiiliasi. vertais No comment provided by engineer. + + quantum resistant e2e encryption + chat item text + received answer… vastaus saatu… @@ -6674,6 +6970,10 @@ SimpleX-palvelimet eivät näe profiiliasi. set new profile picture profile update event chat item + + standard end-to-end encryption + chat item text + starting… alkaa… diff --git a/apps/ios/SimpleX Localizations/fr.xcloc/Localized Contents/fr.xliff b/apps/ios/SimpleX Localizations/fr.xcloc/Localized Contents/fr.xliff index 12c10dd0c8..70fb3145f9 100644 --- a/apps/ios/SimpleX Localizations/fr.xcloc/Localized Contents/fr.xliff +++ b/apps/ios/SimpleX Localizations/fr.xcloc/Localized Contents/fr.xliff @@ -107,6 +107,10 @@ %@ connecté(e) No comment provided by engineer. + + %@ downloaded + No comment provided by engineer. + %@ is connected! %@ est connecté·e ! @@ -127,6 +131,10 @@ Serveurs %@ No comment provided by engineer. + + %@ uploaded + No comment provided by engineer. + %@ wants to connect! %@ veut se connecter ! @@ -219,6 +227,7 @@ %lld messages blocked by admin + %lld messages bloqués par l'administrateur No comment provided by engineer. @@ -341,6 +350,10 @@ **Confidentiel** : ne pas utiliser le serveur de notifications SimpleX, vérification de nouveaux messages periodiquement en arrière plan (dépend de l'utilisation de l'app). No comment provided by engineer. + + **Please note**: using the same database on two devices will break the decryption of messages from your connections, as a security protection. + No comment provided by engineer. + **Please note**: you will NOT be able to recover or change passphrase if you lose it. **Veuillez noter** : vous NE pourrez PAS récupérer ou modifier votre phrase secrète si vous la perdez. @@ -356,6 +369,10 @@ **Avertissement** : les notifications push instantanées nécessitent une phrase secrète enregistrée dans la keychain. No comment provided by engineer. + + **Warning**: the archive will be removed. + No comment provided by engineer. + **e2e encrypted** audio call appel audio **chiffré de bout en bout** @@ -612,6 +629,10 @@ Le changement d'adresse sera annulé. L'ancienne adresse de réception sera utilisée. No comment provided by engineer. + + Admins can block a member for all. + No comment provided by engineer. + Admins can create the links to join groups. Les admins peuvent créer les liens qui permettent de rejoindre les groupes. @@ -667,6 +688,10 @@ Tous vos contacts resteront connectés. La mise à jour du profil sera envoyée à vos contacts. No comment provided by engineer. + + All your contacts, conversations and files will be securely encrypted and uploaded in chunks to configured XFTP relays. + No comment provided by engineer. + Allow Autoriser @@ -792,6 +817,10 @@ Build de l'app : %@ No comment provided by engineer. + + App data migration + No comment provided by engineer. + App encrypts new local files (except videos). L'application chiffre les nouveaux fichiers locaux (sauf les vidéos). @@ -827,6 +856,18 @@ Apparence No comment provided by engineer. + + Apply + No comment provided by engineer. + + + Archive and upload + No comment provided by engineer. + + + Archiving database + No comment provided by engineer. + Attach Attacher @@ -924,6 +965,7 @@ Block for all + Bloqué pour tous No comment provided by engineer. @@ -938,6 +980,7 @@ Block member for all? + Bloquer le membre pour tous ? No comment provided by engineer. @@ -947,6 +990,7 @@ Blocked by admin + Bloqué par l'administrateur No comment provided by engineer. @@ -1014,6 +1058,10 @@ Annuler No comment provided by engineer. + + Cancel migration + No comment provided by engineer. + Cannot access keychain to save database password Impossible d'accéder à la keychain pour enregistrer le mot de passe de la base de données @@ -1115,6 +1163,10 @@ Le chat est arrêté. Si vous avez déjà utilisé cette base de données sur un autre appareil, vous devez la transférer à nouveau avant de démarrer le chat. No comment provided by engineer. + + Chat migrated! + No comment provided by engineer. + Chat preferences Préférences de chat @@ -1135,6 +1187,10 @@ Interface en chinois et en espagnol No comment provided by engineer. + + Choose _Migrate from another device_ on the new device and scan QR code. + No comment provided by engineer. + Choose file Choisir le fichier @@ -1205,6 +1261,10 @@ Confirmer la mise à niveau de la base de données No comment provided by engineer. + + Confirm network settings + No comment provided by engineer. + Confirm new passphrase… Confirmer la nouvelle phrase secrète… @@ -1215,6 +1275,14 @@ Confirmer le mot de passe No comment provided by engineer. + + Confirm that you remember database passphrase to migrate it. + No comment provided by engineer. + + + Confirm upload + No comment provided by engineer. + Connect Se connecter @@ -1411,7 +1479,7 @@ Il s'agit de votre propre lien unique ! Create an address to let people connect with you. - Créez une adresse pour permettre aux gens de vous contacter. + Vous pouvez créer une adresse pour permettre aux autres utilisateurs de vous contacter. No comment provided by engineer. @@ -1474,6 +1542,10 @@ Il s'agit de votre propre lien unique ! Créé le %@ No comment provided by engineer. + + Creating archive link + No comment provided by engineer. + Creating link… Création d'un lien… @@ -1694,6 +1766,10 @@ Cette opération ne peut être annulée ! Supprimer la base de données No comment provided by engineer. + + Delete database from this device + No comment provided by engineer. + Delete file Supprimer le fichier @@ -1984,11 +2060,23 @@ Cette opération ne peut être annulée ! Rétrograder et ouvrir le chat No comment provided by engineer. + + Download failed + No comment provided by engineer. + Download file Télécharger le fichier server test step + + Downloading archive + No comment provided by engineer. + + + Downloading link details + No comment provided by engineer. + Duplicate display name! Nom d'affichage en double ! @@ -2044,6 +2132,10 @@ Cette opération ne peut être annulée ! Activer pour tous No comment provided by engineer. + + Enable in direct chats (BETA)! + No comment provided by engineer. + Enable instant notifications? Activer les notifications instantanées ? @@ -2159,6 +2251,10 @@ Cette opération ne peut être annulée ! Entrer un nom de groupe… No comment provided by engineer. + + Enter passphrase + No comment provided by engineer. + Enter passphrase… Entrez la phrase secrète… @@ -2219,6 +2315,10 @@ Cette opération ne peut être annulée ! Erreur lors de l'ajout de membre·s No comment provided by engineer. + + Error allowing contact PQ encryption + No comment provided by engineer. + Error changing address Erreur de changement d'adresse @@ -2309,6 +2409,10 @@ Cette opération ne peut être annulée ! Erreur lors de la suppression du profil utilisateur No comment provided by engineer. + + Error downloading the archive + No comment provided by engineer. + Error enabling delivery receipts! Erreur lors de l'activation des accusés de réception ! @@ -2384,6 +2488,10 @@ Cette opération ne peut être annulée ! Erreur lors de l'enregistrement de la phrase de passe dans la keychain No comment provided by engineer. + + Error saving settings + when migrating + Error saving user password Erreur d'enregistrement du mot de passe de l'utilisateur @@ -2454,6 +2562,14 @@ Cette opération ne peut être annulée ! Erreur de mise à jour de la confidentialité de l'utilisateur No comment provided by engineer. + + Error uploading the archive + No comment provided by engineer. + + + Error verifying passphrase: + No comment provided by engineer. + Error: Erreur : @@ -2486,7 +2602,7 @@ Cette opération ne peut être annulée ! Expand - Développer + Étendre chat item action @@ -2504,6 +2620,10 @@ Cette opération ne peut être annulée ! Archive de la base de données exportée. No comment provided by engineer. + + Exported file doesn't exist + No comment provided by engineer. + Exporting database archive… Exportation de l'archive de la base de données… @@ -2574,6 +2694,14 @@ Cette opération ne peut être annulée ! Filtrer les messages non lus et favoris. No comment provided by engineer. + + Finalize migration + No comment provided by engineer. + + + Finalize migration on another device. + No comment provided by engineer. + Finally, we have them! 🚀 Enfin, les voilà ! 🚀 @@ -2864,6 +2992,10 @@ Cette opération ne peut être annulée ! Comment utiliser vos serveurs No comment provided by engineer. + + Hungarian interface + No comment provided by engineer. + ICE servers (one per line) Serveurs ICE (un par ligne) @@ -2929,6 +3061,14 @@ Cette opération ne peut être annulée ! Importer la base de données No comment provided by engineer. + + Import failed + No comment provided by engineer. + + + Importing archive + No comment provided by engineer. + Improved message delivery Amélioration de la transmission des messages @@ -2944,6 +3084,10 @@ Cette opération ne peut être annulée ! Configuration de serveur améliorée No comment provided by engineer. + + In order to continue, chat should be stopped. + No comment provided by engineer. + In reply to En réponse à @@ -3056,6 +3200,10 @@ Cette opération ne peut être annulée ! Lien invalide No comment provided by engineer. + + Invalid migration confirmation + No comment provided by engineer. + Invalid name! Nom invalide ! @@ -3424,6 +3572,10 @@ Voici votre lien pour le groupe %@ ! Texte du message No comment provided by engineer. + + Message too large + No comment provided by engineer. + Messages Messages @@ -3439,11 +3591,47 @@ Voici votre lien pour le groupe %@ ! Les messages de %@ seront affichés ! No comment provided by engineer. + + Messages, files and calls are protected by **end-to-end encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Messages, files and calls are protected by **quantum resistant e2e encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Migrate device + No comment provided by engineer. + + + Migrate from another device + No comment provided by engineer. + + + Migrate here + No comment provided by engineer. + + + Migrate to another device + No comment provided by engineer. + + + Migrate to another device via QR code. + No comment provided by engineer. + + + Migrating + No comment provided by engineer. + Migrating database archive… Migration de l'archive de la base de données… No comment provided by engineer. + + Migration complete + No comment provided by engineer. + Migration error: Erreur de migration : @@ -3803,6 +3991,10 @@ Voici votre lien pour le groupe %@ ! Ouvrir le groupe No comment provided by engineer. + + Open migration to another device + authentication reason + Open user profiles Ouvrir les profils d'utilisateurs @@ -3818,11 +4010,19 @@ Voici votre lien pour le groupe %@ ! Ouverture de l'app… No comment provided by engineer. + + Or paste archive link + No comment provided by engineer. + Or scan QR code Ou scanner le code QR No comment provided by engineer. + + Or securely share this file link + No comment provided by engineer. + Or show this code Ou présenter ce code @@ -3908,6 +4108,10 @@ Voici votre lien pour le groupe %@ ! Erreur de déchiffrement message decrypt error item + + Picture-in-picture calls + No comment provided by engineer. + Please ask your contact to enable sending voice messages. Veuillez demander à votre contact de permettre l'envoi de messages vocaux. @@ -3928,6 +4132,10 @@ Voici votre lien pour le groupe %@ ! Veuillez vérifier vos préférences ainsi que celles de votre contact. No comment provided by engineer. + + Please confirm that network settings are correct for this device. + No comment provided by engineer. + Please contact developers. Error: %@ @@ -3985,6 +4193,10 @@ Erreur : %@ Il est possible que l'empreinte du certificat dans l'adresse du serveur soit incorrecte server test error + + Post-quantum E2EE + No comment provided by engineer. + Preserve the last message draft, with attachments. Conserver le brouillon du dernier message, avec les pièces jointes. @@ -4120,6 +4332,14 @@ Erreur : %@ Notifications push No comment provided by engineer. + + Push server + No comment provided by engineer. + + + Quantum resistant encryption + No comment provided by engineer. + Rate the app Évaluer l'app @@ -4305,11 +4525,23 @@ Erreur : %@ Répéter la demande de connexion ? No comment provided by engineer. + + Repeat download + No comment provided by engineer. + + + Repeat import + No comment provided by engineer. + Repeat join request? Répéter la requête d'adhésion ? No comment provided by engineer. + + Repeat upload + No comment provided by engineer. + Reply Répondre @@ -4410,6 +4642,10 @@ Erreur : %@ Serveurs SMP No comment provided by engineer. + + Safer groups + No comment provided by engineer. + Save Enregistrer @@ -4775,6 +5011,10 @@ Erreur : %@ Définir le code d'accès No comment provided by engineer. + + Set passphrase + No comment provided by engineer. + Set passphrase to export Définir la phrase secrète pour l'export @@ -4830,6 +5070,10 @@ Erreur : %@ Partager avec vos contacts No comment provided by engineer. + + Show QR code + No comment provided by engineer. + Show calls in phone history Afficher les appels dans l'historique du téléphone @@ -4847,7 +5091,7 @@ Erreur : %@ Show preview - Montrer l'aperçu + Afficher l'aperçu No comment provided by engineer. @@ -4970,6 +5214,10 @@ Erreur : %@ Arrêter SimpleX authentication reason + + Stop chat + No comment provided by engineer. + Stop chat to enable database actions Arrêter le chat pour permettre des actions sur la base de données @@ -5010,6 +5258,10 @@ Erreur : %@ Cesser le partage d'adresse ? No comment provided by engineer. + + Stopping chat + No comment provided by engineer. + Submit Soumettre @@ -5257,6 +5509,14 @@ Cela peut se produire en raison d'un bug ou lorsque la connexion est compromise. Cette action ne peut être annulée - votre profil, vos contacts, vos messages et vos fichiers seront irréversiblement perdus. No comment provided by engineer. + + This chat is protected by end-to-end encryption. + E2EE info chat item + + + This chat is protected by quantum resistant end-to-end encryption. + E2EE info chat item + This device name Nom de cet appareil @@ -5396,6 +5656,7 @@ Vous serez invité à confirmer l'authentification avant que cette fonction ne s Unblock for all + Débloquer pour tous No comment provided by engineer. @@ -5405,6 +5666,7 @@ Vous serez invité à confirmer l'authentification avant que cette fonction ne s Unblock member for all? + Débloquer le membre pour tous ? No comment provided by engineer. @@ -5549,11 +5811,19 @@ Pour vous connecter, veuillez demander à votre contact de créer un autre lien Mettre à niveau et ouvrir le chat No comment provided by engineer. + + Upload failed + No comment provided by engineer. + Upload file Transférer le fichier server test step + + Uploading archive + No comment provided by engineer. + Use .onion hosts Utiliser les hôtes .onions @@ -5604,6 +5874,10 @@ Pour vous connecter, veuillez demander à votre contact de créer un autre lien Utiliser ce serveur No comment provided by engineer. + + Use the app while in the call. + No comment provided by engineer. + User profile Profil d'utilisateur @@ -5616,7 +5890,7 @@ Pour vous connecter, veuillez demander à votre contact de créer un autre lien Using SimpleX Chat servers. - Utilisation des serveurs SimpleX Chat. + Vous utilisez les serveurs SimpleX. No comment provided by engineer. @@ -5639,6 +5913,14 @@ Pour vous connecter, veuillez demander à votre contact de créer un autre lien Vérifier les connexions No comment provided by engineer. + + Verify database passphrase + No comment provided by engineer. + + + Verify passphrase + No comment provided by engineer. + Verify security code Vérifier le code de sécurité @@ -5729,6 +6011,10 @@ Pour vous connecter, veuillez demander à votre contact de créer un autre lien En attente de la vidéo No comment provided by engineer. + + Warning: starting chat on multiple devices is not supported and will cause message delivery failures + No comment provided by engineer. + Warning: you may lose some data! Attention : vous risquez de perdre des données ! @@ -5749,6 +6035,10 @@ Pour vous connecter, veuillez demander à votre contact de créer un autre lien Message de bienvenue No comment provided by engineer. + + Welcome message is too long + No comment provided by engineer. + What's new Quoi de neuf ? @@ -5761,7 +6051,7 @@ Pour vous connecter, veuillez demander à votre contact de créer un autre lien When people request to connect, you can accept or reject it. - Lorsque des personnes demandent à se connecter, vous pouvez les accepter ou les refuser. + Vous pouvez accepter ou refuser les demandes de contacts. No comment provided by engineer. @@ -5804,6 +6094,10 @@ Pour vous connecter, veuillez demander à votre contact de créer un autre lien Vous No comment provided by engineer. + + You **must not** use the same database on two devices. + No comment provided by engineer. + You accepted connection Vous avez accepté la connexion @@ -5891,6 +6185,10 @@ Répéter la demande d'adhésion ? Vous pouvez les activer ultérieurement via les paramètres de Confidentialité et Sécurité de l'application. No comment provided by engineer. + + You can give another try. + No comment provided by engineer. + You can hide or mute a user profile - swipe it to the right. Vous pouvez masquer ou mettre en sourdine un profil d'utilisateur - faites-le glisser vers la droite. @@ -5923,7 +6221,7 @@ Répéter la demande d'adhésion ? You can share your address as a link or QR code - anybody can connect to you. - Vous pouvez partager votre adresse sous forme de lien ou de code QR - n'importe qui pourra se connecter à vous. + Vous pouvez partager votre adresse sous la forme d'un lien ou d'un code QR - tout le monde peut l'utiliser pour vous contacter. No comment provided by engineer. @@ -6244,12 +6542,12 @@ Les serveurs SimpleX ne peuvent pas voir votre profil. agreeing encryption for %@… - accord sur le chiffrement pour %@… + négociation du chiffrement avec %@… chat item text agreeing encryption… - accord sur le chiffrement… + négociation du chiffrement… chat item text @@ -6285,15 +6583,17 @@ Les serveurs SimpleX ne peuvent pas voir votre profil. blocked blocké - No comment provided by engineer. + marked deleted chat item preview text blocked %@ + %@ bloqué rcv group event chat item blocked by admin - blocked chat item + bloqué par l'administrateur + marked deleted chat item preview text bold @@ -6322,7 +6622,7 @@ Les serveurs SimpleX ne peuvent pas voir votre profil. changed address for you - adresse modifiée pour vous + changement de l'adresse du contact chat item text @@ -6723,7 +7023,7 @@ Les serveurs SimpleX ne peuvent pas voir votre profil. moderated by %@ modéré par %@ - No comment provided by engineer. + marked deleted chat item preview text months @@ -6792,6 +7092,10 @@ Les serveurs SimpleX ne peuvent pas voir votre profil. pair-à-pair No comment provided by engineer. + + quantum resistant e2e encryption + chat item text + received answer… réponse reçu… @@ -6859,14 +7163,18 @@ Les serveurs SimpleX ne peuvent pas voir votre profil. set new contact address - définir une nouvelle adresse de contact + a changé d'adresse de contact profile update event chat item set new profile picture - définir une nouvelle image de profil + a changé d'image de profil profile update event chat item + + standard end-to-end encryption + chat item text + starting… lancement… @@ -6884,6 +7192,7 @@ Les serveurs SimpleX ne peuvent pas voir votre profil. unblocked %@ + %@ débloqué rcv group event chat item @@ -6978,6 +7287,7 @@ Les serveurs SimpleX ne peuvent pas voir votre profil. you blocked %@ + vous avez bloqué %@ snd group event chat item @@ -7022,6 +7332,7 @@ Les serveurs SimpleX ne peuvent pas voir votre profil. you unblocked %@ + vous avez débloqué %@ snd group event chat item diff --git a/apps/ios/SimpleX Localizations/hu.xcloc/Localized Contents/Shared/Assets.xcassets/AccentColor.colorset/Contents.json b/apps/ios/SimpleX Localizations/hu.xcloc/Localized Contents/Shared/Assets.xcassets/AccentColor.colorset/Contents.json new file mode 100644 index 0000000000..84d4c2f1c9 --- /dev/null +++ b/apps/ios/SimpleX Localizations/hu.xcloc/Localized Contents/Shared/Assets.xcassets/AccentColor.colorset/Contents.json @@ -0,0 +1,15 @@ +{ + "colors" : [ + { + "idiom" : "universal", + "locale" : "hu" + } + ], + "properties" : { + "localizable" : true + }, + "info" : { + "version" : 1, + "author" : "xcode" + } +} \ No newline at end of file diff --git a/apps/ios/SimpleX Localizations/hu.xcloc/Localized Contents/Shared/Assets.xcassets/Contents.json b/apps/ios/SimpleX Localizations/hu.xcloc/Localized Contents/Shared/Assets.xcassets/Contents.json new file mode 100644 index 0000000000..73c00596a7 --- /dev/null +++ b/apps/ios/SimpleX Localizations/hu.xcloc/Localized Contents/Shared/Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/apps/ios/SimpleX Localizations/hu.xcloc/Localized Contents/hu.xliff b/apps/ios/SimpleX Localizations/hu.xcloc/Localized Contents/hu.xliff new file mode 100644 index 0000000000..546bdf23d3 --- /dev/null +++ b/apps/ios/SimpleX Localizations/hu.xcloc/Localized Contents/hu.xliff @@ -0,0 +1,7409 @@ + + + +
+ +
+ + + + + + + No comment provided by engineer. + + + + + No comment provided by engineer. + + + + + No comment provided by engineer. + + + + + No comment provided by engineer. + + + ( + ( + No comment provided by engineer. + + + (can be copied) + (másolható) + No comment provided by engineer. + + + !1 colored! + !1 színezett! + No comment provided by engineer. + + + # %@ + # %@ + copied message info title, # <title> + + + ## History + ## Előzmények + copied message info + + + ## In reply to + ## Válaszul erre + copied message info + + + #secret# + #titkos# + No comment provided by engineer. + + + %@ + %@ + No comment provided by engineer. + + + %@ %@ + %@ %@ + No comment provided by engineer. + + + %@ (current) + %@ (jelenlegi) + No comment provided by engineer. + + + %@ (current): + %@ (jelenlegi): + copied message info + + + %@ / %@ + %@ / %@ + No comment provided by engineer. + + + %@ and %@ + %@ és %@ + No comment provided by engineer. + + + %@ and %@ connected + %@ és %@ csatlakozott + No comment provided by engineer. + + + %1$@ at %2$@: + %1$@ %2$@-kor: + copied message info, <sender> at <time> + + + %@ connected + %@ csatlakozott + No comment provided by engineer. + + + %@ downloaded + No comment provided by engineer. + + + %@ is connected! + %@ csatlakozott! + notification title + + + %@ is not verified + %@ nem ellenőrzött + No comment provided by engineer. + + + %@ is verified + %@ ellenőrizve + No comment provided by engineer. + + + %@ servers + %@ kiszolgáló + No comment provided by engineer. + + + %@ uploaded + No comment provided by engineer. + + + %@ wants to connect! + %@ csatlakozni szeretne! + notification title + + + %@, %@ and %lld members + %@, %@ és további %lld tag + No comment provided by engineer. + + + %@, %@ and %lld other members connected + %@, %@ és további %lld tag csatlakozott + No comment provided by engineer. + + + %@: + %@: + copied message info + + + %d days + %d nap + time interval + + + %d hours + %d óra + time interval + + + %d min + %d perc + time interval + + + %d months + %d hónap + time interval + + + %d sec + %d mp + time interval + + + %d skipped message(s) + %d kihagyott üzenet + integrity error chat item + + + %d weeks + %d hét + time interval + + + %lld + %lld + No comment provided by engineer. + + + %lld %@ + %lld %@ + No comment provided by engineer. + + + %lld contact(s) selected + %lld ismerős kiválasztva + No comment provided by engineer. + + + %lld file(s) with total size of %@ + %lld fájl, amely(ek)nek teljes mérete: %@ + No comment provided by engineer. + + + %lld group events + %lld csoportesemény + No comment provided by engineer. + + + %lld members + %lld tag + No comment provided by engineer. + + + %lld messages blocked + %lld üzenet blokkolva + No comment provided by engineer. + + + %lld messages blocked by admin + %lld üzenet blokkolva az admin által + No comment provided by engineer. + + + %lld messages marked deleted + %lld törlésre megjelölt üzenet + No comment provided by engineer. + + + %lld messages moderated by %@ + %@ %lld üzenetet moderált + No comment provided by engineer. + + + %lld minutes + %lld perc + No comment provided by engineer. + + + %lld new interface languages + %lld új nyelvi csomag + No comment provided by engineer. + + + %lld second(s) + %lld másodperc + No comment provided by engineer. + + + %lld seconds + %lld másodperc + No comment provided by engineer. + + + %lldd + %lldd + No comment provided by engineer. + + + %lldh + %lldh + No comment provided by engineer. + + + %lldk + %lldk + No comment provided by engineer. + + + %lldm + %lldm + No comment provided by engineer. + + + %lldmth + %lldmth + No comment provided by engineer. + + + %llds + %llds + No comment provided by engineer. + + + %lldw + %lldw + No comment provided by engineer. + + + %u messages failed to decrypt. + %u üzenet visszafejtése sikertelen. + No comment provided by engineer. + + + %u messages skipped. + %u kihagyott üzenet. + No comment provided by engineer. + + + ( + ( + No comment provided by engineer. + + + (new) + (új) + No comment provided by engineer. + + + (this device v%@) + (ez az eszköz v%@) + No comment provided by engineer. + + + ) + ) + No comment provided by engineer. + + + **Add contact**: to create a new invitation link, or connect via a link you received. + **Ismerős hozzáadása**: új meghívó hivatkozás létrehozásához, vagy egy kapott hivatkozáson keresztül történő csatlakozáshoz. + No comment provided by engineer. + + + **Add new contact**: to create your one-time QR Code or link for your contact. + **Új ismerős hozzáadása**: egyszer használatos QR-kód vagy hivatkozás létrehozása a kapcsolattartóhoz. + No comment provided by engineer. + + + **Create group**: to create a new group. + **Csoport létrehozása**: új csoport létrehozásához. + No comment provided by engineer. + + + **More private**: check new messages every 20 minutes. Device token is shared with SimpleX Chat server, but not how many contacts or messages you have. + **Privátabb**: 20 percenként ellenőrzi az új üzeneteket. Az eszköztoken megosztásra kerül a SimpleX Chat kiszolgálóval, de az nem, hogy hány ismerőse vagy üzenete van. + No comment provided by engineer. + + + **Most private**: do not use SimpleX Chat notifications server, check messages periodically in the background (depends on how often you use the app). + **Legprivátabb**: ne használja a SimpleX Chat értesítési szervert, rendszeresen ellenőrizze az üzeneteket a háttérben (attól függően, hogy milyen gyakran használja az alkalmazást). + No comment provided by engineer. + + + **Please note**: using the same database on two devices will break the decryption of messages from your connections, as a security protection. + No comment provided by engineer. + + + **Please note**: you will NOT be able to recover or change passphrase if you lose it. + **Figyelem**: NEM tudja visszaállítani vagy megváltoztatni jelmondatát, ha elveszíti azt. + No comment provided by engineer. + + + **Recommended**: device token and notifications are sent to SimpleX Chat notification server, but not the message content, size or who it is from. + **Javasolt**: az eszköztoken és az értesítések elküldésre kerülnek a SimpleX Chat értesítési szerverre, kivéve az üzenet tartalma, mérete vagy az, hogy kitől származik. + No comment provided by engineer. + + + **Warning**: Instant push notifications require passphrase saved in Keychain. + **Figyelmeztetés**: Az azonnali push-értesítésekhez a kulcstárolóban tárolt jelmondat megadása szükséges. + No comment provided by engineer. + + + **Warning**: the archive will be removed. + No comment provided by engineer. + + + **e2e encrypted** audio call + **e2e titkosított** hanghívás + No comment provided by engineer. + + + **e2e encrypted** video call + **e2e titkosított** videóhívás + No comment provided by engineer. + + + \*bold* + \*félkövér* + No comment provided by engineer. + + + , + , + No comment provided by engineer. + + + - connect to [directory service](simplex:/contact#/?v=1-4&smp=smp%3A%2F%2Fu2dS9sG8nMNURyZwqASV4yROM28Er0luVTx5X1CsMrU%3D%40smp4.simplex.im%2FeXSPwqTkKyDO3px4fLf1wx3MvPdjdLW3%23%2F%3Fv%3D1-2%26dh%3DMCowBQYDK2VuAyEAaiv6MkMH44L2TcYrt_CsX3ZvM11WgbMEUn0hkIKTOho%253D%26srv%3Do5vmywmrnaxalvz6wi3zicyftgio6psuvyniis6gco6bp6ekl4cqj4id.onion) (BETA)! +- delivery receipts (up to 20 members). +- faster and more stable. + - kapcsolódás a [könyvtár szolgáltatáshoz] (simplex:/contact#/?v=1-4&smp=smp%3A%2F%2Fu2dS9sG8nMNURyZwqASV4yROM28Er0luVTx5X1CsMrU%3D%40smp4.simplex.im%2Ld3%3DWpxkKFeXSPv3pwp %2F%3Fv%3D1-2%26dh %3DMCowBQYDK2VuAyEAaiv6MkMH44L2TcYrt_CsX3ZvM11WgbMEUn0hkIKTOho%253D%26srv%3Do5vmywmrnaxalvz6wi3zicyftgio6psuvyniis6glco6bqjETA)4Beklco6bqj) +- kézbesítési jelentések (legfeljebb 20 tag). +- gyorsabb és stabilabb. + No comment provided by engineer. + + + - more stable message delivery. +- a bit better groups. +- and more! + - stabilabb üzenetkézbesítés. +- valamivel jobb csoportok. +- és még sok más! + No comment provided by engineer. + + + - optionally notify deleted contacts. +- profile names with spaces. +- and more! + - opcionális értesítés a törölt kapcsolatokról. +- profilnevek szóközökkel. +- és még sok más! + No comment provided by engineer. + + + - voice messages up to 5 minutes. +- custom time to disappear. +- editing history. + - hangüzenetek legfeljebb 5 perces időtartamig. +- egyedi eltűnési időhatár megadása. +- előzmények szerkesztése. + No comment provided by engineer. + + + . + . + No comment provided by engineer. + + + 0 sec + 0 mp + time to disappear + + + 0s + 0s + No comment provided by engineer. + + + 1 day + 1 nap + time interval + + + 1 hour + 1 óra + time interval + + + 1 minute + 1 perc + No comment provided by engineer. + + + 1 month + 1 hónap + time interval + + + 1 week + 1 hét + time interval + + + 5 minutes + 5 perc + No comment provided by engineer. + + + 6 + 6 + No comment provided by engineer. + + + 30 seconds + 30 másodperc + No comment provided by engineer. + + + : + : + No comment provided by engineer. + + + <p>Hi!</p> +<p><a href="%@">Connect to me via SimpleX Chat</a></p> + <p>Üdvözlöm!</p> +<p><a href="%@">Csatlakozzon hozzám a SimpleX Chaten</a></p> + email text + + + A few more things + Még néhány dolog + No comment provided by engineer. + + + A new contact + Egy új ismerős + notification title + + + A new random profile will be shared. + Egy új, véletlenszerű profil kerül megosztásra. + No comment provided by engineer. + + + A separate TCP connection will be used **for each chat profile you have in the app**. + A rendszer külön TCP-kapcsolatot fog használni **az alkalmazásban található minden csevegési profilhoz**. + No comment provided by engineer. + + + A separate TCP connection will be used **for each contact and group member**. +**Please note**: if you have many connections, your battery and traffic consumption can be substantially higher and some connections may fail. + A rendszer külön TCP-kapcsolatot fog használni **minden ismerőshöz és csoporttaghoz**. +**Figyelem**: sok kapcsolódás esetén, az akkumulátor- és adatforgalom fogyasztás jelentősen megnőhet, és egyes kapcsolatok meghiúsulhatnak. + No comment provided by engineer. + + + Abort + Megszakítás + No comment provided by engineer. + + + Abort changing address + Címváltoztatás megszakítása + No comment provided by engineer. + + + Abort changing address? + Címváltoztatás megszakítása?? + No comment provided by engineer. + + + About SimpleX + A SimpleX névjegye + No comment provided by engineer. + + + About SimpleX Chat + A SimpleX Chat névjegye + No comment provided by engineer. + + + About SimpleX address + A SimpleX azonosítóról + No comment provided by engineer. + + + Accent color + Kiemelő szín + No comment provided by engineer. + + + Accept + Elfogadás + accept contact request via notification + accept incoming call via notification + + + Accept connection request? + Kapcsolatfelvétel elfogadása? + No comment provided by engineer. + + + Accept contact request from %@? + Elfogadja %@ kapcsolat kérését? + notification body + + + Accept incognito + Fogadás inkognítóban + accept contact request via notification + + + Add address to your profile, so that your contacts can share it with other people. Profile update will be sent to your contacts. + Azonosító hozzáadása a profilhoz, hogy az ismerősök megoszthassák másokkal. A profilfrissítés elküldésre kerül ismerősők számára. + No comment provided by engineer. + + + Add contact + Ismerős hozzáadása + No comment provided by engineer. + + + Add preset servers + Előre beállított kiszolgálók hozzáadása + No comment provided by engineer. + + + Add profile + Profil hozzáadása + No comment provided by engineer. + + + Add servers by scanning QR codes. + Kiszolgáló hozzáadása QR-kód beolvasásával. + No comment provided by engineer. + + + Add server… + Kiszolgáló hozzáadása… + No comment provided by engineer. + + + Add to another device + Hozzáadás egy másik eszközhöz + No comment provided by engineer. + + + Add welcome message + Üdvözlő üzenet hozzáadása + No comment provided by engineer. + + + Address + Cím + No comment provided by engineer. + + + Address change will be aborted. Old receiving address will be used. + A cím módosítása megszakad. A régi fogadási cím kerül felhasználásra. + No comment provided by engineer. + + + Admins can block a member for all. + No comment provided by engineer. + + + Admins can create the links to join groups. + Az adminok hivatkozásokat hozhatnak létre a csoportokhoz való csatlakozáshoz. + No comment provided by engineer. + + + Advanced network settings + Speciális hálózati beállítások + No comment provided by engineer. + + + All app data is deleted. + Minden alkalmazásadat törölve. + No comment provided by engineer. + + + All chats and messages will be deleted - this cannot be undone! + Minden csevegés és üzenet törlésre kerül - ez nem vonható vissza! + No comment provided by engineer. + + + All data is erased when it is entered. + A jelkód megadása után minden adat törlésre kerül. + No comment provided by engineer. + + + All group members will remain connected. + Minden csoporttag csatlakoztatva marad. + No comment provided by engineer. + + + All messages will be deleted - this cannot be undone! + Minden üzenet törlésre kerül – ez nem vonható vissza! + No comment provided by engineer. + + + All messages will be deleted - this cannot be undone! The messages will be deleted ONLY for you. + Minden üzenet törlésre kerül - ezt nem vonható vissza! Az üzenetek CSAK az ön számára törlődnek. + No comment provided by engineer. + + + All new messages from %@ will be hidden! + Minden új üzenet elrejtésre kerül tőle: %@! + No comment provided by engineer. + + + All your contacts will remain connected. + Minden ismerős csatlakoztatva marad. + No comment provided by engineer. + + + All your contacts will remain connected. Profile update will be sent to your contacts. + Ismerőseivel kapcsolatban marad. A profil változtatások frissítésre kerülnek az ismerősöknél. + No comment provided by engineer. + + + All your contacts, conversations and files will be securely encrypted and uploaded in chunks to configured XFTP relays. + No comment provided by engineer. + + + Allow + Engedélyezés + No comment provided by engineer. + + + Allow calls only if your contact allows them. + Hívások engedélyezése kizárólag abban az esetben, ha ismerőse is engedélyezi. + No comment provided by engineer. + + + Allow disappearing messages only if your contact allows it to you. + Eltűnő üzenetek engedélyezése kizárólag abban az esetben, ha ismerőse is engedélyezi az ön számára. + No comment provided by engineer. + + + Allow irreversible message deletion only if your contact allows it to you. (24 hours) + Üzenet végleges törlésének engedélyezése kizárólag abban az esetben, ha ismerőse is engedélyezi. (24 óra) + No comment provided by engineer. + + + Allow message reactions only if your contact allows them. + Üzenetreakciók engedélyezése kizárólag abban az esetben, ha ismerőse is engedélyezi. + No comment provided by engineer. + + + Allow message reactions. + Üzenetreakciók engedélyezése. + No comment provided by engineer. + + + Allow sending direct messages to members. + Közvetlen üzenetek küldésének engedélyezése tagok részére. + No comment provided by engineer. + + + Allow sending disappearing messages. + Eltűnő üzenetek küldésének engedélyezése. + No comment provided by engineer. + + + Allow to irreversibly delete sent messages. (24 hours) + Elküldött üzenetek visszafordíthatatlan törlésének engedélyezése. (24 óra) + No comment provided by engineer. + + + Allow to send files and media. + Fájlok és médiatartalom küldésének engedélyezése. + No comment provided by engineer. + + + Allow to send voice messages. + Hangüzenetek küldésének engedélyezése. + No comment provided by engineer. + + + Allow voice messages only if your contact allows them. + Hangüzenetek küldésének engedélyezése kizárólag abban az esetben, ha ismerőse is engedélyezi. + No comment provided by engineer. + + + Allow voice messages? + Hangüzenetek engedélyezése? + No comment provided by engineer. + + + Allow your contacts adding message reactions. + Ismerősök általi üzenetreakciók hozzáadásának engedélyezése. + No comment provided by engineer. + + + Allow your contacts to call you. + Hívások engedélyezése ismerősök számára. + No comment provided by engineer. + + + Allow your contacts to irreversibly delete sent messages. (24 hours) + Elküldött üzenetek visszafordíthatatlan törlésének engedélyezése ismerősök számára. (24 óra) + No comment provided by engineer. + + + Allow your contacts to send disappearing messages. + Eltűnő üzenetek engedélyezése ismerősök számára. + No comment provided by engineer. + + + Allow your contacts to send voice messages. + Hangüzenetek küldésének engedélyezése ismerősök számára. + No comment provided by engineer. + + + Already connected? + Csatlakoztatva? + No comment provided by engineer. + + + Already connecting! + Kapcsolódás folyamatban! + No comment provided by engineer. + + + Already joining the group! + Csatlakozás folyamatban! + No comment provided by engineer. + + + Always use relay + Mindig használjon átjátszó kiszolgálót + No comment provided by engineer. + + + An empty chat profile with the provided name is created, and the app opens as usual. + Egy üres csevegési profil jön létre a megadott névvel, és az alkalmazás a szokásos módon megnyílik. + No comment provided by engineer. + + + Answer call + Hívás fogadása + No comment provided by engineer. + + + App build: %@ + Az alkalmazás build száma: %@ + No comment provided by engineer. + + + App data migration + No comment provided by engineer. + + + App encrypts new local files (except videos). + Az alkalmazás titkosítja a helyi fájlokat (a videók kivételével). + No comment provided by engineer. + + + App icon + Alkalmazás ikon + No comment provided by engineer. + + + App passcode + Alkalmazás jelkód + No comment provided by engineer. + + + App passcode is replaced with self-destruct passcode. + Az alkalmazás jelkód helyettesítésre kerül egy önmegsemmisítő jelkóddal. + No comment provided by engineer. + + + App version + Alkalmazás verzió + No comment provided by engineer. + + + App version: v%@ + Alkalmazás verzió: v%@ + No comment provided by engineer. + + + Appearance + Megjelenés + No comment provided by engineer. + + + Apply + No comment provided by engineer. + + + Archive and upload + No comment provided by engineer. + + + Archiving database + No comment provided by engineer. + + + Attach + Csatolás + No comment provided by engineer. + + + Audio & video calls + Hang- és videóhívások + No comment provided by engineer. + + + Audio and video calls + Hang- és videóhívások + No comment provided by engineer. + + + Audio/video calls + Hang-/videóhívások + chat feature + + + Audio/video calls are prohibited. + A hang- és videóhívások le vannak tiltva. + No comment provided by engineer. + + + Authentication cancelled + Hitelesítés megszakítva + PIN entry + + + Authentication failed + Hitelesítés sikertelen + No comment provided by engineer. + + + Authentication is required before the call is connected, but you may miss calls. + A hívás csatlakoztatása előtt hitelesítésre van szükség, de előfordulhat, hogy nem tud hívásokat fogadni. + No comment provided by engineer. + + + Authentication unavailable + Hitelesítés elérhetetlen + No comment provided by engineer. + + + Auto-accept + Automatikus elfogadás + No comment provided by engineer. + + + Auto-accept contact requests + Ismerős jelölések automatikus elfogadása + No comment provided by engineer. + + + Auto-accept images + Fotók automatikus elfogadása + No comment provided by engineer. + + + Back + Vissza + No comment provided by engineer. + + + Bad desktop address + Hibás számítógép azonosító + No comment provided by engineer. + + + Bad message ID + Téves üzenet ID + No comment provided by engineer. + + + Bad message hash + Téves üzenet hash + No comment provided by engineer. + + + Better groups + Javított csoportok + No comment provided by engineer. + + + Better messages + Jobb üzenetek + No comment provided by engineer. + + + Block + Blokkolás + No comment provided by engineer. + + + Block for all + Mindenki számára letiltva + No comment provided by engineer. + + + Block group members + Csoporttagok blokkolása + No comment provided by engineer. + + + Block member + Tag blokkolása + No comment provided by engineer. + + + Block member for all? + Tag letiltása mindenki számára? + No comment provided by engineer. + + + Block member? + Tag blokkolása? + No comment provided by engineer. + + + Blocked by admin + Letiltva az admin által + No comment provided by engineer. + + + Both you and your contact can add message reactions. + Mindkét fél is hozzáadhat üzenetreakciókat. + No comment provided by engineer. + + + Both you and your contact can irreversibly delete sent messages. (24 hours) + Mindkét fél visszafordíthatatlanul törölheti az elküldött üzeneteket. (24 óra) + No comment provided by engineer. + + + Both you and your contact can make calls. + Mindkét fél tud hívásokat indítani. + No comment provided by engineer. + + + Both you and your contact can send disappearing messages. + Mindkét fél küldhet eltűnő üzeneteket. + No comment provided by engineer. + + + Both you and your contact can send voice messages. + Mindkét fél küldhet hangüzeneteket. + No comment provided by engineer. + + + Bulgarian, Finnish, Thai and Ukrainian - thanks to the users and [Weblate](https://github.com/simplex-chat/simplex-chat/tree/stable#help-translating-simplex-chat)! + Bolgár, finn, thai és ukrán – köszönet a felhasználóknak és a [Weblate-nek](https://github.com/simplex-chat/simplex-chat/tree/stable#help-translating-simplex-chat)! + No comment provided by engineer. + + + By chat profile (default) or [by connection](https://simplex.chat/blog/20230204-simplex-chat-v4-5-user-chat-profiles.html#transport-isolation) (BETA). + Csevegési profil (alapértelmezett) vagy [kapcsolat alapján] (https://simplex.chat/blog/20230204-simplex-chat-v4-5-user-chat-profiles.html#transport-isolation) (BÉTA). + No comment provided by engineer. + + + Call already ended! + A hívás már befejeződött! + No comment provided by engineer. + + + Calls + Hívások + No comment provided by engineer. + + + Camera not available + A fényképező nem elérhető + No comment provided by engineer. + + + Can't invite contact! + Ismerősök meghívása le van tiltva! + No comment provided by engineer. + + + Can't invite contacts! + Ismerősök meghívása nem lehetséges! + No comment provided by engineer. + + + Cancel + Megszakítás + No comment provided by engineer. + + + Cancel migration + No comment provided by engineer. + + + Cannot access keychain to save database password + Nem lehet hozzáférni a kulcstartóhoz az adatbázis jelszavának mentéséhez + No comment provided by engineer. + + + Cannot receive file + Nem lehet fogadni a fájlt + No comment provided by engineer. + + + Change + Változtatás + No comment provided by engineer. + + + Change database passphrase? + Adatbázis jelmondat megváltoztatása? + No comment provided by engineer. + + + Change lock mode + Zárolási mód megváltoztatása + authentication reason + + + Change member role? + Tag szerepkörének megváltoztatása? + No comment provided by engineer. + + + Change passcode + Jelkód megváltoztatása + authentication reason + + + Change receiving address + A fogadó cím megváltoztatása + No comment provided by engineer. + + + Change receiving address? + Megváltoztatja a fogadó címet? + No comment provided by engineer. + + + Change role + Szerepkör megváltoztatása + No comment provided by engineer. + + + Change self-destruct mode + Önmegsemmisítő mód megváltoztatása + authentication reason + + + Change self-destruct passcode + Önmegsemmisító jelkód megváltoztatása + authentication reason + set passcode view + + + Chat archive + Csevegési archívum + No comment provided by engineer. + + + Chat console + Csevegési konzol + No comment provided by engineer. + + + Chat database + Csevegési adatbázis + No comment provided by engineer. + + + Chat database deleted + Csevegési adatbázis törölve + No comment provided by engineer. + + + Chat database imported + Csevegési adatbázis importálva + No comment provided by engineer. + + + Chat is running + A csevegés fut + No comment provided by engineer. + + + Chat is stopped + A csevegés leállt + No comment provided by engineer. + + + Chat is stopped. If you already used this database on another device, you should transfer it back before starting chat. + A csevegés leállt. Ha már használta ezt az adatbázist egy másik eszközön, úgy visszaállítás szükséges a csevegés megkezdése előtt. + No comment provided by engineer. + + + Chat migrated! + No comment provided by engineer. + + + Chat preferences + Csevegési beállítások + No comment provided by engineer. + + + Chats + Csevegések + No comment provided by engineer. + + + Check server address and try again. + Kiszolgáló címének ellenőrzése és újrapróbálkozás. + No comment provided by engineer. + + + Chinese and Spanish interface + Kínai és spanyol kezelőfelület + No comment provided by engineer. + + + Choose _Migrate from another device_ on the new device and scan QR code. + No comment provided by engineer. + + + Choose file + Fájl kiválasztása + No comment provided by engineer. + + + Choose from library + Választás a könyvtárból + No comment provided by engineer. + + + Clear + Kiürítés + No comment provided by engineer. + + + Clear conversation + Beszélgetés kiürítése + No comment provided by engineer. + + + Clear conversation? + Beszélgetés kiürítése? + No comment provided by engineer. + + + Clear private notes? + Privát jegyzetek törlése? + No comment provided by engineer. + + + Clear verification + Hitelesítés törlése + No comment provided by engineer. + + + Colors + Színek + No comment provided by engineer. + + + Compare file + Fájl összehasonlítás + server test step + + + Compare security codes with your contacts. + Biztonsági kódok összehasonlítása az ismerősökkel. + No comment provided by engineer. + + + Configure ICE servers + ICE kiszolgálók beállítása + No comment provided by engineer. + + + Confirm + Megerősítés + No comment provided by engineer. + + + Confirm Passcode + Jelkód megerősítése + No comment provided by engineer. + + + Confirm database upgrades + Adatbázis frissítés megerősítése + No comment provided by engineer. + + + Confirm network settings + No comment provided by engineer. + + + Confirm new passphrase… + Új jelmondat megerősítése… + No comment provided by engineer. + + + Confirm password + Jelszó megerősítése + No comment provided by engineer. + + + Confirm that you remember database passphrase to migrate it. + No comment provided by engineer. + + + Confirm upload + No comment provided by engineer. + + + Connect + Kapcsolódás + server test step + + + Connect automatically + Kapcsolódás automatikusan + No comment provided by engineer. + + + Connect incognito + Inkognítóban csatlakozva + No comment provided by engineer. + + + Connect to desktop + Kapcsolódás számítógéphez + No comment provided by engineer. + + + Connect to yourself? + Kapcsolódás saját magához? + No comment provided by engineer. + + + Connect to yourself? +This is your own SimpleX address! + Kapcsolódás saját magához? +Ez a SimpleX azonosítója! + No comment provided by engineer. + + + Connect to yourself? +This is your own one-time link! + Kapcsolódás saját magához? +Ez az egyszer használatos hivatkozása! + No comment provided by engineer. + + + Connect via contact address + Kapcsolódás ismerős azonosítója által + No comment provided by engineer. + + + Connect via link + Kapcsolódás egy hivatkozáson keresztül + No comment provided by engineer. + + + Connect via one-time link + Kapcsolódás egyszer használatos hivatkozáson keresztül + No comment provided by engineer. + + + Connect with %@ + Kapcsolódás ezzel: %@ + No comment provided by engineer. + + + Connected desktop + Csatlakoztatott számítógép + No comment provided by engineer. + + + Connected to desktop + Csatlakozva a számítógéphez + No comment provided by engineer. + + + Connecting to server… + Kapcsolódás a kiszolgálóhoz… + No comment provided by engineer. + + + Connecting to server… (error: %@) + Kapcsolódás a kiszolgálóhoz... (hiba: %@) + No comment provided by engineer. + + + Connecting to desktop + Kapcsolódás a számítógéphez + No comment provided by engineer. + + + Connection + Kapcsolat + No comment provided by engineer. + + + Connection error + Kapcsolódási hiba + No comment provided by engineer. + + + Connection error (AUTH) + Kapcsolódási hiba (AUTH) + No comment provided by engineer. + + + Connection request sent! + Kapcsolódási kérés elküldve! + No comment provided by engineer. + + + Connection terminated + Kapcsolat megszakítva + No comment provided by engineer. + + + Connection timeout + Kapcsolat időtúllépés + No comment provided by engineer. + + + Contact allows + Ismerős engedélyezi + No comment provided by engineer. + + + Contact already exists + Létező ismerős + No comment provided by engineer. + + + Contact hidden: + Ismerős elrejtve: + notification + + + Contact is connected + Ismerős csatlakozott + notification + + + Contact is not connected yet! + Az ismerős még nem csatlakozott! + No comment provided by engineer. + + + Contact name + Ismerős neve + No comment provided by engineer. + + + Contact preferences + Ismerős beállításai + No comment provided by engineer. + + + Contacts + Ismerősök + No comment provided by engineer. + + + Contacts can mark messages for deletion; you will be able to view them. + Az ismerősök törlésre jelölhetnek üzeneteket ; megtekintheti őket. + No comment provided by engineer. + + + Continue + Folytatás + No comment provided by engineer. + + + Copy + Másolás + chat item action + + + Core version: v%@ + Alapverziószám: v%@ + No comment provided by engineer. + + + Correct name to %@? + Név javítása erre: %@? + No comment provided by engineer. + + + Create + Létrehozás + No comment provided by engineer. + + + Create SimpleX address + SimpleX azonosító létrehozása + No comment provided by engineer. + + + Create a group using a random profile. + Csoport létrehozása véletlenszerűen létrehozott profillal. + No comment provided by engineer. + + + Create an address to let people connect with you. + Azonosító létrehozása, hogy az emberek kapcsolatba léphessenek önnel. + No comment provided by engineer. + + + Create file + Fájl létrehozása + server test step + + + Create group + Csoport létrehozása + No comment provided by engineer. + + + Create group link + Csoportos hivatkozás létrehozása + No comment provided by engineer. + + + Create link + Hivatkozás létrehozása + No comment provided by engineer. + + + Create new profile in [desktop app](https://simplex.chat/downloads/). 💻 + Új profil létrehozása az [asztali kliensben](https://simplex.chat/downloads/). 💻 + No comment provided by engineer. + + + Create profile + Profil létrehozása + No comment provided by engineer. + + + Create queue + Várólista létrehozása + server test step + + + Create secret group + Titkos csoport létrehozása + No comment provided by engineer. + + + Create your profile + Saját profil létrehozása + No comment provided by engineer. + + + Created at + Létrehozva ekkor + No comment provided by engineer. + + + Created at: %@ + Létrehozva ekkor: %@ + copied message info + + + Created on %@ + Létrehozva %@ + No comment provided by engineer. + + + Creating archive link + No comment provided by engineer. + + + Creating link… + Hivatkozás létrehozása… + No comment provided by engineer. + + + Current Passcode + Jelenlegi jelkód + No comment provided by engineer. + + + Current passphrase… + Jelenlegi jelmondat… + No comment provided by engineer. + + + Currently maximum supported file size is %@. + Jelenleg a maximális támogatott fájlméret %@. + No comment provided by engineer. + + + Custom time + Személyreszabott idő + No comment provided by engineer. + + + Dark + Sötét + No comment provided by engineer. + + + Database ID + Adatbázis ID + No comment provided by engineer. + + + Database ID: %d + Adatbázis azonosító: %d + copied message info + + + Database IDs and Transport isolation option. + Adatbázis azonosítók és átviteli izolációs beállítások. + No comment provided by engineer. + + + Database downgrade + Visszatérés a korábbi adatbázis verzióra + No comment provided by engineer. + + + Database encrypted! + Adatbázis titkosítva! + No comment provided by engineer. + + + Database encryption passphrase will be updated and stored in the keychain. + + Az adatbázis titkosítási jelmondata frissül és tárolódik a kulcstárolóban. + + No comment provided by engineer. + + + Database encryption passphrase will be updated. + + Adatbázis titkosítási jelmondat frissítve lesz. + + No comment provided by engineer. + + + Database error + Adatbázis hiba + No comment provided by engineer. + + + Database is encrypted using a random passphrase, you can change it. + Az adatbázis egy véletlenszerű jelmondattal van titkosítva, megváltoztatható. + No comment provided by engineer. + + + Database is encrypted using a random passphrase. Please change it before exporting. + Az adatbázis egy véletlenszerű jelmondattal van titkosítva. Exportálás előtti módosítás szükséges. + No comment provided by engineer. + + + Database passphrase + Adatbázis jelmondat + No comment provided by engineer. + + + Database passphrase & export + Adatbázis jelmondat és exportálás + No comment provided by engineer. + + + Database passphrase is different from saved in the keychain. + Az adatbázis jelmondata eltér a kulcstárlóban mentettől. + No comment provided by engineer. + + + Database passphrase is required to open chat. + Adatbázis jelmondat szükséges a csevegés megnyitásához. + No comment provided by engineer. + + + Database upgrade + Adatbázis fejlesztése + No comment provided by engineer. + + + Database will be encrypted and the passphrase stored in the keychain. + + Az adatbázis titkosítva lesz, a jelmondat pedig a kulcstárolóban lesz tárolva. + + No comment provided by engineer. + + + Database will be encrypted. + + Az adatbázis titkosításra kerül. + + No comment provided by engineer. + + + Database will be migrated when the app restarts + Az adatbázis az alkalmazás újraindításakor migrálásra kerül + No comment provided by engineer. + + + Decentralized + Decentralizált + No comment provided by engineer. + + + Decryption error + Titkosítás visszafejtési hiba + message decrypt error item + + + Delete + Törlés + chat item action + + + Delete %lld messages? + Töröl %lld üzenetet? + No comment provided by engineer. + + + Delete Contact + Ismerős törlése + No comment provided by engineer. + + + Delete address + Azonosító törlése + No comment provided by engineer. + + + Delete address? + Azonosító törlése? + No comment provided by engineer. + + + Delete after + Törlés miután + No comment provided by engineer. + + + Delete all files + Minden fájl törlése + No comment provided by engineer. + + + Delete and notify contact + Törlés és ismerős értesítése + No comment provided by engineer. + + + Delete archive + Archívum törlése + No comment provided by engineer. + + + Delete chat archive? + Csevegési archívum törlése? + No comment provided by engineer. + + + Delete chat profile + Csevegési profil törlése + No comment provided by engineer. + + + Delete chat profile? + Csevegési profil törlése? + No comment provided by engineer. + + + Delete connection + Kapcsolat törlése + No comment provided by engineer. + + + Delete contact + Ismerős törlése + No comment provided by engineer. + + + Delete contact? +This cannot be undone! + Ismerős törlése? +Ezt nem vonható vissza! + No comment provided by engineer. + + + Delete database + Adatbázis törlése + No comment provided by engineer. + + + Delete database from this device + No comment provided by engineer. + + + Delete file + Fájl törlése + server test step + + + Delete files and media? + Fájlok és a médiatartalmak törlése? + No comment provided by engineer. + + + Delete files for all chat profiles + Fájlok törlése minden csevegési profilból + No comment provided by engineer. + + + Delete for everyone + Törlés mindenkinél + chat feature + + + Delete for me + Törlés nálam + No comment provided by engineer. + + + Delete group + Csoport törlése + No comment provided by engineer. + + + Delete group? + Csoport törlése? + No comment provided by engineer. + + + Delete invitation + Meghívó törlése + No comment provided by engineer. + + + Delete link + Hivatkozás törlése + No comment provided by engineer. + + + Delete link? + Hivatkozás törlése? + No comment provided by engineer. + + + Delete member message? + Csoporttag üzenet törlése? + No comment provided by engineer. + + + Delete message? + Üzenet törlése? + No comment provided by engineer. + + + Delete messages + Üzenetek törlése + No comment provided by engineer. + + + Delete messages after + Üzenetek törlése miután + No comment provided by engineer. + + + Delete old database + Régi adatbázis törlése + No comment provided by engineer. + + + Delete old database? + Régi adatbázis törlése? + No comment provided by engineer. + + + Delete pending connection + Függőben lévő kapcsolat törlése + No comment provided by engineer. + + + Delete pending connection? + Függő kapcsolatfelvételi kérések törlése? + No comment provided by engineer. + + + Delete profile + Profil törlése + No comment provided by engineer. + + + Delete queue + Várólista törlése + server test step + + + Delete user profile? + Felhasználói profil törlése? + No comment provided by engineer. + + + Deleted at + Törölve ekkor + No comment provided by engineer. + + + Deleted at: %@ + Törölve ekkor: %@ + copied message info + + + Delivery + Kézbesítés + No comment provided by engineer. + + + Delivery receipts are disabled! + Kézbesítési igazolások kikapcsolva! + No comment provided by engineer. + + + Delivery receipts! + Kézbesítési igazolások! + No comment provided by engineer. + + + Description + Leírás + No comment provided by engineer. + + + Desktop address + Számítógép azonosítója + No comment provided by engineer. + + + Desktop app version %@ is not compatible with this app. + Az asztali kliens verziója %@ nem kompatibilis ezzel az alkalmazással. + No comment provided by engineer. + + + Desktop devices + Számítógépek + No comment provided by engineer. + + + Develop + Fejlesztés + No comment provided by engineer. + + + Developer tools + Fejlesztői eszközök + No comment provided by engineer. + + + Device + Eszköz + No comment provided by engineer. + + + Device authentication is disabled. Turning off SimpleX Lock. + Eszközhitelesítés kikapcsolva. SimpleX zárolás kikapcsolása. + No comment provided by engineer. + + + Device authentication is not enabled. You can turn on SimpleX Lock via Settings, once you enable device authentication. + Eszközhitelesítés nem engedélyezett.A SimpleX zárolás bekapcsolható a Beállításokon keresztül, miután az eszköz hitelesítés engedélyezésre került. + No comment provided by engineer. + + + Different names, avatars and transport isolation. + Különböző nevek, avatarok és átviteli izoláció. + No comment provided by engineer. + + + Direct messages + Közvetlen üzenetek + chat feature + + + Direct messages between members are prohibited in this group. + Ebben a csoportban tiltott a tagok közötti közvetlen üzenetek küldése. + No comment provided by engineer. + + + Disable (keep overrides) + Letiltás (felülírások megtartásával) + No comment provided by engineer. + + + Disable SimpleX Lock + SimpleX zárolás kikapcsolása + authentication reason + + + Disable for all + Letiltás mindenki számára + No comment provided by engineer. + + + Disappearing message + Eltűnő üzenet + No comment provided by engineer. + + + Disappearing messages + Eltűnő üzenetek + chat feature + + + Disappearing messages are prohibited in this chat. + Az eltűnő üzenetek le vannak tiltva ebben a csevegésben. + No comment provided by engineer. + + + Disappearing messages are prohibited in this group. + Az eltűnő üzenetek küldése le van tiltva ebben a csoportban. + No comment provided by engineer. + + + Disappears at + Eltűnik ekkor + No comment provided by engineer. + + + Disappears at: %@ + Eltűnik ekkor: %@ + copied message info + + + Disconnect + Kapcsolat bontása + server test step + + + Disconnect desktop? + Számítógép leválasztása? + No comment provided by engineer. + + + Discover and join groups + Helyi csoportok felfedezése és csatlakozás + No comment provided by engineer. + + + Discover via local network + Felfedezés helyi hálózaton keresztül + No comment provided by engineer. + + + Do NOT use SimpleX for emergency calls. + NE használja a SimpleX-et segélyhívásokhoz. + No comment provided by engineer. + + + Do it later + Későbbre halaszt + No comment provided by engineer. + + + Do not send history to new members. + Ne küldjön előzményeket új tagok részére. + No comment provided by engineer. + + + Don't create address + Ne hozzon létre azonosítót + No comment provided by engineer. + + + Don't enable + Ne engedélyezze + No comment provided by engineer. + + + Don't show again + Ne mutasd újra + No comment provided by engineer. + + + Downgrade and open chat + Visszatérés a korábbi verzióra és a csevegés megnyitása + No comment provided by engineer. + + + Download failed + No comment provided by engineer. + + + Download file + Fájl letöltése + server test step + + + Downloading archive + No comment provided by engineer. + + + Downloading link details + No comment provided by engineer. + + + Duplicate display name! + Duplikált megjelenítési név! + No comment provided by engineer. + + + Duration + Időtartam + No comment provided by engineer. + + + Edit + Szerkesztés + chat item action + + + Edit group profile + A csoport profiljának szerkesztése + No comment provided by engineer. + + + Enable + Engedélyezés + No comment provided by engineer. + + + Enable (keep overrides) + Engedélyezés (felülírások megtartásával) + No comment provided by engineer. + + + Enable SimpleX Lock + SimpleX zárolás engedélyezése + authentication reason + + + Enable TCP keep-alive + TCP életben tartásának engedélyezése + No comment provided by engineer. + + + Enable automatic message deletion? + Automatikus üzenet törlés engedélyezése? + No comment provided by engineer. + + + Enable camera access + Kamera hozzáférés engedélyezése + No comment provided by engineer. + + + Enable for all + Engedélyezés mindenki részére + No comment provided by engineer. + + + Enable in direct chats (BETA)! + No comment provided by engineer. + + + Enable instant notifications? + Azonnali értesítések engedélyezése? + No comment provided by engineer. + + + Enable lock + Zárolás engedélyezése + No comment provided by engineer. + + + Enable notifications + Értesítések engedélyezése + No comment provided by engineer. + + + Enable periodic notifications? + Időszakos értesítések engedélyezése? + No comment provided by engineer. + + + Enable self-destruct + Önmegsemmisítés engedélyezése + No comment provided by engineer. + + + Enable self-destruct passcode + Önmegsemmisítő jelkód engedélyezése + set passcode view + + + Encrypt + Titkosít + No comment provided by engineer. + + + Encrypt database? + Adatbázis titkosítása? + No comment provided by engineer. + + + Encrypt local files + Helyi fájlok titkosítása + No comment provided by engineer. + + + Encrypt stored files & media + Tárolt fájlok és médiatartalmak titkosítása + No comment provided by engineer. + + + Encrypted database + Titkosított adatbázis + No comment provided by engineer. + + + Encrypted message or another event + Titkosított üzenet vagy más esemény + notification + + + Encrypted message: app is stopped + Titkosított üzenet: az alkalmazás leállt + notification + + + Encrypted message: database error + Titkosított üzenet: adatbázis hiba + notification + + + Encrypted message: database migration error + Titkosított üzenet: adatbázis-migrációs hiba + notification + + + Encrypted message: keychain error + Titkosított üzenet: kulcstároló hiba + notification + + + Encrypted message: no passphrase + Titkosított üzenet: nincs jelmondat + notification + + + Encrypted message: unexpected error + Titkosított üzenet: váratlan hiba + notification + + + Encryption re-negotiation error + Titkosítás újraegyeztetési hiba + message decrypt error item + + + Encryption re-negotiation failed. + Titkosítás újraegyeztetése sikertelen. + No comment provided by engineer. + + + Enter Passcode + Jelkód megadása + No comment provided by engineer. + + + Enter correct passphrase. + Helyes jelmondat bevitele. + No comment provided by engineer. + + + Enter group name… + Csoportnév megadása… + No comment provided by engineer. + + + Enter passphrase + No comment provided by engineer. + + + Enter passphrase… + Jelmondat megadása… + No comment provided by engineer. + + + Enter password above to show! + Jelszó megadása a megjelenítéshez! + No comment provided by engineer. + + + Enter server manually + Kiszolgáló megadása kézzel + No comment provided by engineer. + + + Enter this device name… + Eszköznév megadása… + No comment provided by engineer. + + + Enter welcome message… + Üdvözlő üzenetet megadása… + placeholder + + + Enter welcome message… (optional) + Üdvözlő üzenetet megadása… (opcionális) + placeholder + + + Enter your name… + Adja meg nevét… + No comment provided by engineer. + + + Error + Hiba + No comment provided by engineer. + + + Error aborting address change + Hiba az azonosító megváltoztatásának megszakításakor + No comment provided by engineer. + + + Error accepting contact request + Hiba történt a kapcsolatfelvételi kérelem elfogadásakor + No comment provided by engineer. + + + Error accessing database file + Hiba az adatbázisfájl elérésekor + No comment provided by engineer. + + + Error adding member(s) + Hiba a tag(-ok) hozzáadásakor + No comment provided by engineer. + + + Error allowing contact PQ encryption + No comment provided by engineer. + + + Error changing address + Hiba az azonosító megváltoztatásakor + No comment provided by engineer. + + + Error changing role + Hiba a szerepkör megváltoztatásakor + No comment provided by engineer. + + + Error changing setting + Hiba a beállítás megváltoztatásakor + No comment provided by engineer. + + + Error creating address + Hiba az azonosító létrehozásakor + No comment provided by engineer. + + + Error creating group + Hiba a csoport létrehozásakor + No comment provided by engineer. + + + Error creating group link + Hiba a csoport hivatkozásának létrehozásakor + No comment provided by engineer. + + + Error creating member contact + Hiba az ismerőssel történő kapcsolat létrehozásában + No comment provided by engineer. + + + Error creating message + Hiba az üzenet létrehozásakor + No comment provided by engineer. + + + Error creating profile! + Hiba a profil létrehozásakor! + No comment provided by engineer. + + + Error decrypting file + Hiba a fájl visszafejtésekor + No comment provided by engineer. + + + Error deleting chat database + Hiba a csevegési adatbázis törlésekor + No comment provided by engineer. + + + Error deleting chat! + Hiba a csevegés törlésekor! + No comment provided by engineer. + + + Error deleting connection + Hiba a kapcsolat törlésekor + No comment provided by engineer. + + + Error deleting contact + Hiba az ismerős törlésekor + No comment provided by engineer. + + + Error deleting database + Hiba az adatbázis törlésekor + No comment provided by engineer. + + + Error deleting old database + Hiba a régi adatbázis törlésekor + No comment provided by engineer. + + + Error deleting token + Hiba a token törlésekor + No comment provided by engineer. + + + Error deleting user profile + Hiba a felhasználói profil törlésekor + No comment provided by engineer. + + + Error downloading the archive + No comment provided by engineer. + + + Error enabling delivery receipts! + Hiba a kézbesítési jelentések engedélyezésekor! + No comment provided by engineer. + + + Error enabling notifications + Hiba az értesítések engedélyezésekor + No comment provided by engineer. + + + Error encrypting database + Hiba az adatbázis titkosításakor + No comment provided by engineer. + + + Error exporting chat database + Hiba a csevegési adatbázis exportálásakor + No comment provided by engineer. + + + Error importing chat database + Hiba a csevegési adatbázis importálásakor + No comment provided by engineer. + + + Error joining group + Hiba a csoporthoz való csatlakozáskor + No comment provided by engineer. + + + Error loading %@ servers + Hiba a %@ kiszolgálók betöltésekor + No comment provided by engineer. + + + Error opening chat + Hiba a csevegés megnyitásakor + No comment provided by engineer. + + + Error receiving file + Hiba a fájl fogadásakor + No comment provided by engineer. + + + Error removing member + Hiba a tag eltávolításakor + No comment provided by engineer. + + + Error saving %@ servers + Hiba történt a %@ kiszolgálók mentése közben + No comment provided by engineer. + + + Error saving ICE servers + Hiba az ICE kiszolgálók mentésekor + No comment provided by engineer. + + + Error saving group profile + Hiba a csoport profil mentésekor + No comment provided by engineer. + + + Error saving passcode + Hiba a jelkód mentése közben + No comment provided by engineer. + + + Error saving passphrase to keychain + Hiba a jelmondat kulcstárolóba történő mentésekor + No comment provided by engineer. + + + Error saving settings + when migrating + + + Error saving user password + Hiba a felhasználó jelszavának mentésekor + No comment provided by engineer. + + + Error scanning code: %@ + Hiba a kód beolvasása közben: %@ + No comment provided by engineer. + + + Error sending email + Hiba az e-mail küldésekor + No comment provided by engineer. + + + Error sending member contact invitation + Hiba történt a tag kapcsolatfelvételi meghívójának elküldésekor + No comment provided by engineer. + + + Error sending message + Hiba az üzenet küldésekor + No comment provided by engineer. + + + Error setting delivery receipts! + Hiba történt a kézbesítési igazolások beállításakor! + No comment provided by engineer. + + + Error starting chat + Hiba a csevegés elindításakor + No comment provided by engineer. + + + Error stopping chat + Hiba a csevegés megállításakor + No comment provided by engineer. + + + Error switching profile! + Hiba a profil váltásakor! + No comment provided by engineer. + + + Error synchronizing connection + Hiba a kapcsolat szinkronizálása során + No comment provided by engineer. + + + Error updating group link + Hiba a csoport hivatkozás frissítésekor + No comment provided by engineer. + + + Error updating message + Hiba az üzenet frissítésekor + No comment provided by engineer. + + + Error updating settings + Hiba történt a beállítások frissítésekor + No comment provided by engineer. + + + Error updating user privacy + Hiba a felhasználói beállítások frissítésekor + No comment provided by engineer. + + + Error uploading the archive + No comment provided by engineer. + + + Error verifying passphrase: + No comment provided by engineer. + + + Error: + Hiba: + No comment provided by engineer. + + + Error: %@ + Hiba: %@ + No comment provided by engineer. + + + Error: URL is invalid + Hiba: az URL érvénytelen + No comment provided by engineer. + + + Error: no database file + Hiba: nincs adatbázis fájl + No comment provided by engineer. + + + Even when disabled in the conversation. + Akkor is, ha le van tiltva a beszélgetésben. + No comment provided by engineer. + + + Exit without saving + Kilépés mentés nélkül + No comment provided by engineer. + + + Expand + Kibontás + chat item action + + + Export database + Adatbázis exportálása + No comment provided by engineer. + + + Export error: + Exportálási hiba: + No comment provided by engineer. + + + Exported database archive. + Exportált adatbázis-archívum. + No comment provided by engineer. + + + Exported file doesn't exist + No comment provided by engineer. + + + Exporting database archive… + Adatbázis archívum exportálása… + No comment provided by engineer. + + + Failed to remove passphrase + Nem sikerült eltávolítani a jelmondatot + No comment provided by engineer. + + + Fast and no wait until the sender is online! + Gyors és nem kell várni, amíg a feladó online lesz! + No comment provided by engineer. + + + Faster joining and more reliable messages. + Gyorsabb csatlakozás és megbízhatóbb üzenet kézbesítés. + No comment provided by engineer. + + + Favorite + Kedvenc + No comment provided by engineer. + + + File will be deleted from servers. + A fájl törölve lesz a kiszolgálóról. + No comment provided by engineer. + + + File will be received when your contact completes uploading it. + A fájl akkor érkezik meg, amikor ismerőse befejezte annak feltöltést. + No comment provided by engineer. + + + File will be received when your contact is online, please wait or check later! + A fájl akkor érkezik meg, amint ismerőse online lesz, várjon, vagy ellenőrizze később! + No comment provided by engineer. + + + File: %@ + Fájl: %@ + No comment provided by engineer. + + + Files & media + Fájlok és média + No comment provided by engineer. + + + Files and media + Fájlok és médiatartalom + chat feature + + + Files and media are prohibited in this group. + A fájlok- és a médiatartalom küldése le van tiltva ebben a csoportban. + No comment provided by engineer. + + + Files and media prohibited! + A fájlok- és a médiatartalom küldése le van tiltva! + No comment provided by engineer. + + + Filter unread and favorite chats. + Olvasatlan és kedvenc csevegésekre való szűrés. + No comment provided by engineer. + + + Finalize migration + No comment provided by engineer. + + + Finalize migration on another device. + No comment provided by engineer. + + + Finally, we have them! 🚀 + Végre, megvannak! 🚀 + No comment provided by engineer. + + + Find chats faster + Csevegési üzenetek gyorsabb megtalálása + No comment provided by engineer. + + + Fix + Javítás + No comment provided by engineer. + + + Fix connection + Kapcsolat javítása + No comment provided by engineer. + + + Fix connection? + Kapcsolat javítása? + No comment provided by engineer. + + + Fix encryption after restoring backups. + Titkosítás javítása az adatmentések helyreállítása után. + No comment provided by engineer. + + + Fix not supported by contact + Ismerős általi javítás nem támogatott + No comment provided by engineer. + + + Fix not supported by group member + Csoporttag általi javítás nem támogatott + No comment provided by engineer. + + + For console + Konzolhoz + No comment provided by engineer. + + + Found desktop + Megtalált számítógép + No comment provided by engineer. + + + French interface + Francia kezelőfelület + No comment provided by engineer. + + + Full link + Teljes hivatkozás + No comment provided by engineer. + + + Full name (optional) + Teljes név (opcionális) + No comment provided by engineer. + + + Full name: + Teljes név: + No comment provided by engineer. + + + Fully decentralized – visible only to members. + Teljesen decentralizált - kizárólag tagok számára látható. + No comment provided by engineer. + + + Fully re-implemented - work in background! + Teljesen újra implementálva - háttérben történő működés! + No comment provided by engineer. + + + Further reduced battery usage + Tovább csökkentett akkumulátor használat + No comment provided by engineer. + + + GIFs and stickers + GIF-ek és matricák + No comment provided by engineer. + + + Group + Csoport + No comment provided by engineer. + + + Group already exists + A csoport már létezik + No comment provided by engineer. + + + Group already exists! + A csoport már létezik! + No comment provided by engineer. + + + Group display name + A csoport megjelenített neve + No comment provided by engineer. + + + Group full name (optional) + Csoport teljes neve (opcionális) + No comment provided by engineer. + + + Group image + Csoportkép + No comment provided by engineer. + + + Group invitation + Csoportos meghívó + No comment provided by engineer. + + + Group invitation expired + A csoport meghívó lejárt + No comment provided by engineer. + + + Group invitation is no longer valid, it was removed by sender. + A csoport meghívó már nem érvényes, el lett távolítva a küldője által. + No comment provided by engineer. + + + Group link + Csoport hivatkozás + No comment provided by engineer. + + + Group links + Csoport hivatkozások + No comment provided by engineer. + + + Group members can add message reactions. + Csoporttagok üzenetreakciókat adhatnak hozzá. + No comment provided by engineer. + + + Group members can irreversibly delete sent messages. (24 hours) + Csoporttagok visszafordíthatatlanul törölhetik az elküldött üzeneteket. (24 óra) + No comment provided by engineer. + + + Group members can send direct messages. + Csoporttagok küldhetnek közvetlen üzeneteket. + No comment provided by engineer. + + + Group members can send disappearing messages. + Csoporttagok küldhetnek eltűnő üzeneteket. + No comment provided by engineer. + + + Group members can send files and media. + Csoporttagok küldhetnek fájlokat és médiatartalmakat. + No comment provided by engineer. + + + Group members can send voice messages. + Csoporttagok küldhetnek hangüzeneteket. + No comment provided by engineer. + + + Group message: + Csoport üzenet: + notification + + + Group moderation + Csoport moderáció + No comment provided by engineer. + + + Group preferences + Csoport beállítások + No comment provided by engineer. + + + Group profile + Csoport profil + No comment provided by engineer. + + + Group profile is stored on members' devices, not on the servers. + A csoport profilja a tagok eszközein tárolódik, nem a kiszolgálókon. + No comment provided by engineer. + + + Group welcome message + Csoport üdvözlő üzenete + No comment provided by engineer. + + + Group will be deleted for all members - this cannot be undone! + Csoport törlésre kerül minden tag számára - ez nem vonható vissza! + No comment provided by engineer. + + + Group will be deleted for you - this cannot be undone! + A csoport törlésre kerül az ön részére - ez nem vonható vissza! + No comment provided by engineer. + + + Help + Segítség + No comment provided by engineer. + + + Hidden + Rejtett + No comment provided by engineer. + + + Hidden chat profiles + Rejtett csevegési profilok + No comment provided by engineer. + + + Hidden profile password + Rejtett profil jelszó + No comment provided by engineer. + + + Hide + Elrejt + chat item action + + + Hide app screen in the recent apps. + Alkalmazás képernyőjének elrejtése a gyakran használt alkalmazások között. + No comment provided by engineer. + + + Hide profile + Profil elrejtése + No comment provided by engineer. + + + Hide: + Elrejt: + No comment provided by engineer. + + + History + Előzmények + No comment provided by engineer. + + + History is not sent to new members. + Az előzmények nem kerülnek elküldésre új tagok részére. + No comment provided by engineer. + + + How SimpleX works + Hogyan működik a SimpleX + No comment provided by engineer. + + + How it works + Hogyan működik + No comment provided by engineer. + + + How to + Hogyan + No comment provided by engineer. + + + How to use it + Hogyan használja + No comment provided by engineer. + + + How to use your servers + Kiszolgálók használata + No comment provided by engineer. + + + Hungarian interface + No comment provided by engineer. + + + ICE servers (one per line) + ICE-kiszolgálók (soronként egy) + No comment provided by engineer. + + + If you can't meet in person, show QR code in a video call, or share the link. + Ha nem tud személyesen találkozni, mutassa meg a QR-kódot egy videohívás során, vagy ossza meg a hivatkozást. + No comment provided by engineer. + + + If you enter this passcode when opening the app, all app data will be irreversibly removed! + Ha az alkalmazás megnyitásakor megadja ezt a jelkódot, az összes alkalmazásadat visszafordíthatatlanul törlődik! + No comment provided by engineer. + + + If you enter your self-destruct passcode while opening the app: + Ha az alkalmazás megnyitásakor az önmegsemmisítő jelkódot megadásra kerül: + No comment provided by engineer. + + + If you need to use the chat now tap **Do it later** below (you will be offered to migrate the database when you restart the app). + Ha most kell használnia a csevegést, koppintson a ** Csináld később** elemre (az alkalmazás újraindításakor felajánlásra kerül az adatbázis áttelepítése). + No comment provided by engineer. + + + Ignore + Figyelmen kívül hagyás + No comment provided by engineer. + + + Image will be received when your contact completes uploading it. + A kép akkor érkezik meg, amikor ismerőse befejezte annak feltöltését. + No comment provided by engineer. + + + Image will be received when your contact is online, please wait or check later! + A kép akkor érkezik meg, amikor ismerős elérhető lesz, várjon vagy ellenőrizze később! + No comment provided by engineer. + + + Immediately + Azonnal + No comment provided by engineer. + + + Immune to spam and abuse + Spam és visszaélések elleni védelem + No comment provided by engineer. + + + Import + Importálás + No comment provided by engineer. + + + Import chat database? + Csevegési adatbázis importálása? + No comment provided by engineer. + + + Import database + Adatbázis importálása + No comment provided by engineer. + + + Import failed + No comment provided by engineer. + + + Importing archive + No comment provided by engineer. + + + Improved message delivery + Továbbfejlesztett üzenetküldés + No comment provided by engineer. + + + Improved privacy and security + Fejlesztett adatvédelem és biztonság + No comment provided by engineer. + + + Improved server configuration + Javított kiszolgáló konfiguráció + No comment provided by engineer. + + + In order to continue, chat should be stopped. + No comment provided by engineer. + + + In reply to + Válasz neki + No comment provided by engineer. + + + Incognito + Inkognitó + No comment provided by engineer. + + + Incognito groups + Inkognitó csoportok + No comment provided by engineer. + + + Incognito mode + Inkognitó mód + No comment provided by engineer. + + + Incognito mode protects your privacy by using a new random profile for each contact. + Az inkognitómód védi személyes adatait azáltal, hogy minden ismerőshöz új véletlenszerű profilt használ. + No comment provided by engineer. + + + Incoming audio call + Bejövő hanghívás + notification + + + Incoming call + Bejövő hívás + notification + + + Incoming video call + Bejövő videóhívás + notification + + + Incompatible database version + Nem kompatibilis adatbázis verzió + No comment provided by engineer. + + + Incompatible version + Nem kompatibilis verzió + No comment provided by engineer. + + + Incorrect passcode + Téves jelkód + PIN entry + + + Incorrect security code! + Helytelen biztonsági kód! + No comment provided by engineer. + + + Info + Információ + chat item action + + + Initial role + Kezdeti szerepkör + No comment provided by engineer. + + + Install [SimpleX Chat for terminal](https://github.com/simplex-chat/simplex-chat) + A [SimpleX Chat terminálhoz] telepítése (https://github.com/simplex-chat/simplex-chat) + No comment provided by engineer. + + + Instant push notifications will be hidden! + + Az azonnali push értesítések elrejtésre kerülnek! + + No comment provided by engineer. + + + Instantly + Azonnal + No comment provided by engineer. + + + Interface + Felület + No comment provided by engineer. + + + Invalid QR code + Érvénytelen QR-kód + No comment provided by engineer. + + + Invalid connection link + Érvénytelen kapcsolati hivatkozás + No comment provided by engineer. + + + Invalid display name! + Érvénytelen megjelenítendő felhaszálónév! + No comment provided by engineer. + + + Invalid link + Érvénytelen hivatkozás + No comment provided by engineer. + + + Invalid migration confirmation + No comment provided by engineer. + + + Invalid name! + Érvénytelen név! + No comment provided by engineer. + + + Invalid response + Érvénytelen válasz + No comment provided by engineer. + + + Invalid server address! + Érvénytelen kiszolgálócím! + No comment provided by engineer. + + + Invalid status + Érvénytelen állapot + item status text + + + Invitation expired! + A meghívó lejárt! + No comment provided by engineer. + + + Invite friends + Barátok meghívása + No comment provided by engineer. + + + Invite members + Tagok meghívása + No comment provided by engineer. + + + Invite to group + Meghívás a csoportba + No comment provided by engineer. + + + Irreversible message deletion + Visszafordíthatatlan üzenettörlés + No comment provided by engineer. + + + Irreversible message deletion is prohibited in this chat. + Ebben a csevegésben az üzenetek visszafordíthatatlan törlése le van tiltva. + No comment provided by engineer. + + + Irreversible message deletion is prohibited in this group. + Ebben a csoportban az üzenetek visszafordíthatatlan törlése le van tiltva. + No comment provided by engineer. + + + It allows having many anonymous connections without any shared data between them in a single chat profile. + Lehetővé teszi, hogy egyetlen csevegőprofilon belül több anonim kapcsolat legyen, anélkül, hogy megosztott adatok lennének közöttük. + No comment provided by engineer. + + + It can happen when you or your connection used the old database backup. + Ez akkor fordulhat elő, ha ön vagy a kapcsolata régi adatbázis biztonsági mentést használt. + No comment provided by engineer. + + + It can happen when: +1. The messages expired in the sending client after 2 days or on the server after 30 days. +2. Message decryption failed, because you or your contact used old database backup. +3. The connection was compromised. + Ez akkor fordulhat elő, ha: +1. Az üzenetek 2 nap után, vagy a kiszolgálón 30 nap után lejártak. +2. Az üzenet visszafejtése sikertelen volt, mert vagy az ismerőse régebbi adatbázis biztonsági mentést használt. +3. A kapcsolat sérült. + No comment provided by engineer. + + + It seems like you are already connected via this link. If it is not the case, there was an error (%@). + Úgy tűnik, már csatlakozott ezen a hivatkozáson keresztül. Ha ez nem így van, akkor hiba történt (%@). + No comment provided by engineer. + + + Italian interface + Olasz kezelőfelület + No comment provided by engineer. + + + Japanese interface + Japán kezelőfelület + No comment provided by engineer. + + + Join + Csatlakozás + No comment provided by engineer. + + + Join group + Csatlakozás csoporthoz + No comment provided by engineer. + + + Join group conversations + Csatlakozás csoportos beszélgetésekhez + No comment provided by engineer. + + + Join group? + Csatlakozik a csoporthoz? + No comment provided by engineer. + + + Join incognito + Csatlakozás inkognitóban + No comment provided by engineer. + + + Join with current profile + Csatlakozás a jelenlegi profillal + No comment provided by engineer. + + + Join your group? +This is your link for group %@! + Csatlakozik a csoportjához? +Ez az ön hivatkozása a(z) %@ csoporthoz! + No comment provided by engineer. + + + Joining group + Csatlakozás a csoporthoz + No comment provided by engineer. + + + Keep + Megtart + No comment provided by engineer. + + + Keep the app open to use it from desktop + A számítógépről való használathoz tartsd nyitva az alkalmazást + No comment provided by engineer. + + + Keep unused invitation? + Fel nem használt meghívó megtartása? + No comment provided by engineer. + + + Keep your connections + Kapcsolatok megtartása + No comment provided by engineer. + + + KeyChain error + Kulcstároló hiba + No comment provided by engineer. + + + Keychain error + Kulcstároló hiba + No comment provided by engineer. + + + LIVE + ÉLŐ + No comment provided by engineer. + + + Large file! + Nagy fájl! + No comment provided by engineer. + + + Learn more + Tudjon meg többet + No comment provided by engineer. + + + Leave + Elhagy + No comment provided by engineer. + + + Leave group + Csoport elhagyása + No comment provided by engineer. + + + Leave group? + Csoport elhagyása? + No comment provided by engineer. + + + Let's talk in SimpleX Chat + Beszélgessünk a SimpleX Chat-ben + email subject + + + Light + Világos + No comment provided by engineer. + + + Limitations + Korlátozások + No comment provided by engineer. + + + Link mobile and desktop apps! 🔗 + Társítsa össze a mobil és az asztali alkalmazásokat! 🔗 + No comment provided by engineer. + + + Linked desktop options + Összekapcsolt számítógép beállítások + No comment provided by engineer. + + + Linked desktops + Összekapcsolt számítógépek + No comment provided by engineer. + + + Live message! + Élő üzenet! + No comment provided by engineer. + + + Live messages + Élő üzenetek + No comment provided by engineer. + + + Local + Helyi + No comment provided by engineer. + + + Local name + Helyi név + No comment provided by engineer. + + + Local profile data only + Csak helyi profiladatok + No comment provided by engineer. + + + Lock after + Zárolás miután + No comment provided by engineer. + + + Lock mode + Zárolási mód + No comment provided by engineer. + + + Make a private connection + Privát kapcsolat létrehozása + No comment provided by engineer. + + + Make one message disappear + Egy üzenet eltüntetése + No comment provided by engineer. + + + Make profile private! + Tegye priváttá profilját! + No comment provided by engineer. + + + Make sure %@ server addresses are in correct format, line separated and are not duplicated (%@). + Győződjön meg arról, hogy a %@ szervercímek megfelelő formátumúak, sorszeparáltak és nem duplikáltak (%@). + No comment provided by engineer. + + + Make sure WebRTC ICE server addresses are in correct format, line separated and are not duplicated. + Győződjön meg arról, hogy a WebRTC ICE-kiszolgáló címei megfelelő formátumúak, sorszeparáltak és nem duplikáltak. + No comment provided by engineer. + + + Many people asked: *if SimpleX has no user identifiers, how can it deliver messages?* + Sokan kérdezték: *ha a SimpleX-nek nincsenek felhasználói azonosítói, akkor hogyan tud üzeneteket kézbesíteni?* + No comment provided by engineer. + + + Mark deleted for everyone + Jelölje meg mindenki számára töröltként + No comment provided by engineer. + + + Mark read + Megjelölés olvasottként + No comment provided by engineer. + + + Mark verified + Ellenőrzöttként jelölve + No comment provided by engineer. + + + Markdown in messages + Markdown az üzenetekben + No comment provided by engineer. + + + Max 30 seconds, received instantly. + Max. 30 másodperc, azonnal érkezett. + No comment provided by engineer. + + + Member + Tag + No comment provided by engineer. + + + Member role will be changed to "%@". All group members will be notified. + A tag szerepköre meg fog változni erre: "%@". A csoport minden tagja értesítést kap róla. + No comment provided by engineer. + + + Member role will be changed to "%@". The member will receive a new invitation. + A tag szerepköre meg fog változni erre: "%@". A tag új meghívást fog kapni. + No comment provided by engineer. + + + Member will be removed from group - this cannot be undone! + A tag eltávolítása a csoportból - ez nem vonható vissza! + No comment provided by engineer. + + + Message delivery error + Üzenetkézbesítési hiba + item status text + + + Message delivery receipts! + Üzenetkézbesítési bizonylatok! + No comment provided by engineer. + + + Message draft + Üzenetvázlat + No comment provided by engineer. + + + Message reactions + Üzenetreakciók + chat feature + + + Message reactions are prohibited in this chat. + Az üzenetreakciók ebben a csevegésben le vannak tiltva. + No comment provided by engineer. + + + Message reactions are prohibited in this group. + Ebben a csoportban az üzenetreakciók le vannak tiltva. + No comment provided by engineer. + + + Message text + Üzenet szövege + No comment provided by engineer. + + + Message too large + No comment provided by engineer. + + + Messages + Üzenetek + No comment provided by engineer. + + + Messages & files + Üzenetek és fájlok + No comment provided by engineer. + + + Messages from %@ will be shown! + A(z) %@ által írt üzenetek megjelennek! + No comment provided by engineer. + + + Messages, files and calls are protected by **end-to-end encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Messages, files and calls are protected by **quantum resistant e2e encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Migrate device + No comment provided by engineer. + + + Migrate from another device + No comment provided by engineer. + + + Migrate here + No comment provided by engineer. + + + Migrate to another device + No comment provided by engineer. + + + Migrate to another device via QR code. + No comment provided by engineer. + + + Migrating + No comment provided by engineer. + + + Migrating database archive… + Adatbázis archívum migrálása… + No comment provided by engineer. + + + Migration complete + No comment provided by engineer. + + + Migration error: + Migrációs hiba: + No comment provided by engineer. + + + Migration failed. Tap **Skip** below to continue using the current database. Please report the issue to the app developers via chat or email [chat@simplex.chat](mailto:chat@simplex.chat). + Sikertelen migráció. Koppintson a **Kihagyás** lehetőségre az aktuális adatbázis használatának folytatásához. Kérjük, jelentse a problémát az alkalmazás fejlesztőinek csevegésben vagy e-mailben [chat@simplex.chat](mailto:chat@simplex.chat). + No comment provided by engineer. + + + Migration is completed + A migráció befejeződött + No comment provided by engineer. + + + Migrations: %@ + Migrációk: %@ + No comment provided by engineer. + + + Moderate + Moderálás + chat item action + + + Moderated at + Moderálva ekkor + No comment provided by engineer. + + + Moderated at: %@ + Moderálva ekkor: %@ + copied message info + + + More improvements are coming soon! + Hamarosan további fejlesztések érkeznek! + No comment provided by engineer. + + + Most likely this connection is deleted. + Valószínűleg ez a kapcsolat törlésre került. + item status description + + + Most likely this contact has deleted the connection with you. + Valószínűleg ez az ismerős törölte önnel a kapcsolatot. + No comment provided by engineer. + + + Multiple chat profiles + Több csevegőprofil + No comment provided by engineer. + + + Mute + Elnémítás + No comment provided by engineer. + + + Muted when inactive! + Némítás, ha inaktív! + No comment provided by engineer. + + + Name + Név + No comment provided by engineer. + + + Network & servers + Hálózat és kiszolgálók + No comment provided by engineer. + + + Network settings + Hálózati beállítások + No comment provided by engineer. + + + Network status + Hálózat állapota + No comment provided by engineer. + + + New Passcode + Új jelkód + No comment provided by engineer. + + + New chat + Új beszélgetés + No comment provided by engineer. + + + New contact request + Új kapcsolattartási kérelem + notification + + + New contact: + Új kapcsolat: + notification + + + New database archive + Új adatbázis-archívum + No comment provided by engineer. + + + New desktop app! + Új asztali alkalmazás! + No comment provided by engineer. + + + New display name + Új megjelenítési név + No comment provided by engineer. + + + New in %@ + Újdonságok a(z) %@ verzióban + No comment provided by engineer. + + + New member role + Új tag szerepköre + No comment provided by engineer. + + + New message + Új üzenet + notification + + + New passphrase… + Új jelmondat… + No comment provided by engineer. + + + No + Nem + No comment provided by engineer. + + + No app password + Nincs alkalmazás jelszó + Authentication unavailable + + + No contacts selected + Nem kerültek ismerősök kiválasztásra + No comment provided by engineer. + + + No contacts to add + Nincs hozzáadandó ismerős + No comment provided by engineer. + + + No delivery information + Nincs kézbesítési információ + No comment provided by engineer. + + + No device token! + Nincs eszköztoken! + No comment provided by engineer. + + + No filtered chats + Nincsenek szűrt csevegések + No comment provided by engineer. + + + Group not found! + Csoport nem található! + No comment provided by engineer. + + + No history + Nincsenek előzmények + No comment provided by engineer. + + + No permission to record voice message + Nincs engedély a hangüzenet rögzítésére + No comment provided by engineer. + + + No received or sent files + Nincsenek fogadott vagy küldött fájlok + No comment provided by engineer. + + + Not compatible! + Nem kompatibilis! + No comment provided by engineer. + + + Notifications + Értesítések + No comment provided by engineer. + + + Notifications are disabled! + Az értesítések le vannak tiltva! + No comment provided by engineer. + + + Now admins can: +- delete members' messages. +- disable members ("observer" role) + Most már az adminok is: +- törölhetik a tagok üzeneteit. +- letilthatnak tagokat ("megfigyelő" szerepkör) + No comment provided by engineer. + + + OK + Rendben + No comment provided by engineer. + + + Off + Ki + No comment provided by engineer. + + + Ok + Rendben + No comment provided by engineer. + + + Old database + Régi adatbázis + No comment provided by engineer. + + + Old database archive + Régi adatbázis archívum + No comment provided by engineer. + + + One-time invitation link + Egyszer használatos meghívó hivatkozás + No comment provided by engineer. + + + Onion hosts will be required for connection. Requires enabling VPN. + A csatlakozáshoz Onion host-okra lesz szükség. VPN engedélyezése szükséges. + No comment provided by engineer. + + + Onion hosts will be used when available. Requires enabling VPN. + Onion host-ok használata, ha azok rendelkezésre állnak. VPN engedélyezése szükséges. + No comment provided by engineer. + + + Onion hosts will not be used. + Onion host-ok nem lesznek használva. + No comment provided by engineer. + + + Only client devices store user profiles, contacts, groups, and messages sent with **2-layer end-to-end encryption**. + Csak a klienseszközök tárolják a felhasználói profilokat, névjegyeket, csoportokat és a **2 rétegű végponttól-végpontig titkosítással** küldött üzeneteket. + No comment provided by engineer. + + + Only group owners can change group preferences. + Csak a csoporttulajdonosok módosíthatják a csoportbeállításokat. + No comment provided by engineer. + + + Only group owners can enable files and media. + Csak a csoporttulajdonosok engedélyezhetik a fájlok- és a médiatartalmak küldését. + No comment provided by engineer. + + + Only group owners can enable voice messages. + Csak a csoporttulajdonosok engedélyezhetik a hangüzenetek küldését. + No comment provided by engineer. + + + Only you can add message reactions. + Csak ön adhat hozzá üzenetreakciókat. + No comment provided by engineer. + + + Only you can irreversibly delete messages (your contact can mark them for deletion). (24 hours) + Visszafordíthatatlanul csak ön törölhet üzeneteket (ismerőse csak törlésre jelölheti őket ). (24 óra) + No comment provided by engineer. + + + Only you can make calls. + Csak ön tud hívásokat indítani. + No comment provided by engineer. + + + Only you can send disappearing messages. + Csak ön tud eltűnő üzeneteket küldeni. + No comment provided by engineer. + + + Only you can send voice messages. + Csak ön tud hangüzeneteket küldeni. + No comment provided by engineer. + + + Only your contact can add message reactions. + Csak az ismerős tud üzeneteakciókat adni. + No comment provided by engineer. + + + Only your contact can irreversibly delete messages (you can mark them for deletion). (24 hours) + Csak az ismerős tud visszafordíthatatlanul törölni üzeneteket (megjelölheti őket törlésre). (24 óra) + No comment provided by engineer. + + + Only your contact can make calls. + Csak az ismerős tud hívást indítani. + No comment provided by engineer. + + + Only your contact can send disappearing messages. + Csak az ismerős tud eltűnő üzeneteket küldeni. + No comment provided by engineer. + + + Only your contact can send voice messages. + Csak az ismerős tud hangüzeneteket küldeni. + No comment provided by engineer. + + + Open + Megnyitás + No comment provided by engineer. + + + Open Settings + Beállítások megnyitása + No comment provided by engineer. + + + Open chat + Csevegés megnyitása + No comment provided by engineer. + + + Open chat console + Csevegés konzol megnyitása + authentication reason + + + Open group + Csoport megnyitása + No comment provided by engineer. + + + Open migration to another device + authentication reason + + + Open user profiles + Felhasználói profilok megnyitása + authentication reason + + + Open-source protocol and code – anybody can run the servers. + Nyílt forráskódú protokoll és forráskód – bárki üzemeltethet kiszolgálókat. + No comment provided by engineer. + + + Opening app… + Az alkalmazás megnyitása… + No comment provided by engineer. + + + Or paste archive link + No comment provided by engineer. + + + Or scan QR code + Vagy QR-kód beolvasása + No comment provided by engineer. + + + Or securely share this file link + No comment provided by engineer. + + + Or show this code + Vagy mutassa meg ezt a kódot + No comment provided by engineer. + + + PING count + PING számláló + No comment provided by engineer. + + + PING interval + PING időköze + No comment provided by engineer. + + + Passcode + Jelkód + No comment provided by engineer. + + + Passcode changed! + A jelkód megváltozott! + No comment provided by engineer. + + + Passcode entry + Jelkód bevitele + No comment provided by engineer. + + + Passcode not changed! + A jelkód nem változott! + No comment provided by engineer. + + + Passcode set! + A jelkód beállítva! + No comment provided by engineer. + + + Password to show + Jelszó mutatása + No comment provided by engineer. + + + Past member %@ + Korábbi csoport tag %@ + past/unknown group member + + + Paste desktop address + Számítógép azonosítójának beillesztése + No comment provided by engineer. + + + Paste image + Kép beillesztése + No comment provided by engineer. + + + Paste link to connect! + Hivatkozás beillesztése a csatlakozáshoz! + No comment provided by engineer. + + + Paste the link you received + Fogadott hivatkozás beillesztése + No comment provided by engineer. + + + People can connect to you only via the links you share. + Az emberek csak az ön által megosztott hivatkozáson keresztül kapcsolódhatnak. + No comment provided by engineer. + + + Periodically + Rendszeresen + No comment provided by engineer. + + + Permanent decryption error + Végleges visszafejtési hiba + message decrypt error item + + + Picture-in-picture calls + No comment provided by engineer. + + + Please ask your contact to enable sending voice messages. + Ismerős felkérése, hogy engedélyezze a hangüzenetek küldését. + No comment provided by engineer. + + + Please check that you used the correct link or ask your contact to send you another one. + Ellenőrizze, hogy a megfelelő hivatkozást használta-e, vagy kérje meg ismerősét, hogy küldjön egy másikat. + No comment provided by engineer. + + + Please check your network connection with %@ and try again. + Kérjük, ellenőrizze hálózati kapcsolatát a(z) %@ segítségével, és próbálja újra. + No comment provided by engineer. + + + Please check yours and your contact preferences. + Ellenőrizze az ön és ismerőse beállításait. + No comment provided by engineer. + + + Please confirm that network settings are correct for this device. + No comment provided by engineer. + + + Please contact developers. +Error: %@ + Lépjen kapcsolatba a fejlesztőkkel. +Hiba: %@ + No comment provided by engineer. + + + Please contact group admin. + Lépjen kapcsolatba a csoport adminnal. + No comment provided by engineer. + + + Please enter correct current passphrase. + Adja meg a helyes aktuális jelmondatát. + No comment provided by engineer. + + + Please enter the previous password after restoring database backup. This action can not be undone. + Előző jelszó megadása az adatbázis biztonsági mentésének visszaállítása után. Ez a művelet nem visszavonható. + No comment provided by engineer. + + + Please remember or store it securely - there is no way to recover a lost passcode! + Jegyezze fel vagy tárolja el biztonságosan - az elveszett jelkódot nem lehet visszaállítani! + No comment provided by engineer. + + + Please report it to the developers. + Jelentse a fejlesztőknek. + No comment provided by engineer. + + + Please restart the app and migrate the database to enable push notifications. + Indítsa újra az alkalmazást az adatbázis-migrációhoz szükséges push értesítések engedélyezéséhez. + No comment provided by engineer. + + + Please store passphrase securely, you will NOT be able to access chat if you lose it. + Tárolja el biztonságosan jelmondát, mert ha elveszti azt, akkor NEM férhet hozzá a csevegéshez. + No comment provided by engineer. + + + Please store passphrase securely, you will NOT be able to change it if you lose it. + Tárolja el biztonságosan jelmondatát, mert ha elveszíti azt, NEM tudja megváltoztatni. + No comment provided by engineer. + + + Polish interface + Lengyel kezelőfelület + No comment provided by engineer. + + + Possibly, certificate fingerprint in server address is incorrect + Lehetséges, hogy a kiszolgáló címében szereplő tanúsítvány-ujjlenyomat helytelen + server test error + + + Post-quantum E2EE + No comment provided by engineer. + + + Preserve the last message draft, with attachments. + Az utolsó üzenet tervezetének megőrzése a mellékletekkel együtt. + No comment provided by engineer. + + + Preset server + Előre beállított kiszolgáló + No comment provided by engineer. + + + Preset server address + Előre beállított kiszolgáló címe + No comment provided by engineer. + + + Preview + Előnézet + No comment provided by engineer. + + + Privacy & security + Adatvédelem és biztonság + No comment provided by engineer. + + + Privacy redefined + Adatvédelem újraértelmezve + No comment provided by engineer. + + + Private filenames + Privát fájl nevek + No comment provided by engineer. + + + Private notes + Privát jegyzetek + name of notes to self + + + Profile and server connections + Profil és kiszolgálókapcsolatok + No comment provided by engineer. + + + Profile image + Profilkép + No comment provided by engineer. + + + Profile name + Profilnév + No comment provided by engineer. + + + Profile name: + Profil neve: + No comment provided by engineer. + + + Profile password + Profiljelszó + No comment provided by engineer. + + + Profile update will be sent to your contacts. + A profilfrissítés elküldésre került az ismerősök számára. + No comment provided by engineer. + + + Prohibit audio/video calls. + Hang- és videóhívások tiltása. + No comment provided by engineer. + + + Prohibit irreversible message deletion. + Az üzenetek véglegesen való törlése le van tiltva. + No comment provided by engineer. + + + Prohibit message reactions. + Üzenetreakciók tiltása. + No comment provided by engineer. + + + Prohibit messages reactions. + Az üzenetreakciók tiltása. + No comment provided by engineer. + + + Prohibit sending direct messages to members. + Közvetlen üzenetek küldésének letiltása tagok részére. + No comment provided by engineer. + + + Prohibit sending disappearing messages. + Eltűnő üzenetek küldésének letiltása. + No comment provided by engineer. + + + Prohibit sending files and media. + Fájlok- és a médiatartalom küldés letiltása. + No comment provided by engineer. + + + Prohibit sending voice messages. + Hangüzenetek küldésének letiltása. + No comment provided by engineer. + + + Protect app screen + App képernyőjének védelme + No comment provided by engineer. + + + Protect your chat profiles with a password! + Csevegési profiljok védelme jelszóval! + No comment provided by engineer. + + + Protocol timeout + Protokoll időtúllépés + No comment provided by engineer. + + + Protocol timeout per KB + Protokoll időkorlát KB-onként + No comment provided by engineer. + + + Push notifications + Push értesítések + No comment provided by engineer. + + + Push server + No comment provided by engineer. + + + Quantum resistant encryption + No comment provided by engineer. + + + Rate the app + Értékelje az alkalmazást + No comment provided by engineer. + + + React… + Reagálj… + chat item menu + + + Read + Olvasd el + No comment provided by engineer. + + + Read more + Tudjon meg többet + No comment provided by engineer. + + + Read more in [User Guide](https://simplex.chat/docs/guide/app-settings.html#your-simplex-contact-address). + További információ a [Felhasználói útmutatóban](https://simplex.chat/docs/guide/app-settings.html#your-simplex-contact-address). + No comment provided by engineer. + + + Read more in [User Guide](https://simplex.chat/docs/guide/chat-profiles.html#incognito-mode). + További információ a [Felhasználói útmutatóban](https://simplex.chat/docs/guide/chat-profiles.html#incognito-mode). + No comment provided by engineer. + + + Read more in [User Guide](https://simplex.chat/docs/guide/readme.html#connect-to-friends). + További információ a [Felhasználói útmutatóban](https://simplex.chat/docs/guide/readme.html#connect-to-friends). + No comment provided by engineer. + + + Read more in our GitHub repository. + További információ a GitHub tárolónkban. + No comment provided by engineer. + + + Read more in our [GitHub repository](https://github.com/simplex-chat/simplex-chat#readme). + További információ a [GitHub tárolóban](https://github.com/simplex-chat/simplex-chat#readme). + No comment provided by engineer. + + + Receipts are disabled + Üzenet kézbesítési jelentés letiltva + No comment provided by engineer. + + + Received at + Fogadva ekkor + No comment provided by engineer. + + + Received at: %@ + Fogadva ekkor: %@ + copied message info + + + Received file event + Fogadott fájl esemény + notification + + + Received message + Fogadott üzenet + message info title + + + Receiving address will be changed to a different server. Address change will complete after sender comes online. + A fogadó cím egy másik kiszolgálóra változik. A címváltoztatás a feladó online állapotba kerülése után fejeződik be. + No comment provided by engineer. + + + Receiving file will be stopped. + A fájl fogadása leállt. + No comment provided by engineer. + + + Receiving via + Fogadás a + No comment provided by engineer. + + + Recent history and improved [directory bot](simplex:/contact#/?v=1-4&smp=smp%3A%2F%2Fu2dS9sG8nMNURyZwqASV4yROM28Er0luVTx5X1CsMrU%3D%40smp4.simplex.im%2FeXSPwqTkKyDO3px4fLf1wx3MvPdjdLW3%23%2F%3Fv%3D1-2%26dh%3DMCowBQYDK2VuAyEAaiv6MkMH44L2TcYrt_CsX3ZvM11WgbMEUn0hkIKTOho%253D%26srv%3Do5vmywmrnaxalvz6wi3zicyftgio6psuvyniis6gco6bp6ekl4cqj4id.onion). + Legutóbbi előzmények és továbbfejlesztett [könyvtárbot] (simplex:/contact#/?v=1-4&smp=smp%3A%2F%2Fu2dS9sG8nMNURyZwqASV4yROM28Er0luVTx5X1CsMrU%3D%40smp4.simplex.im%2TxW3dfMfxy 3%23%2F%3Fv%3D1-2% 26dh%3DMCowBQYDK2VuAyEAaiv6MkMH44L2TcYrt_CsX3ZvM11WgbMEUn0hkIKTOho%253D%26srv%3Do5vmywmrnaxalvz6wi3zicyftgio6psuvyniis6gloncbqjek4gloncbqjek. + No comment provided by engineer. + + + Recipients see updates as you type them. + A címzettek a beírás közben látják a frissítéseket. + No comment provided by engineer. + + + Reconnect all connected servers to force message delivery. It uses additional traffic. + Az összes csatlakoztatott kiszolgáló újrakapcsolása az üzenetek kézbesítésének kikényszerítéséhez. Ez további forgalmat használ. + No comment provided by engineer. + + + Reconnect servers? + Kiszolgálók újracsatlakoztatása? + No comment provided by engineer. + + + Record updated at + A bejegyzés frissítve + No comment provided by engineer. + + + Record updated at: %@ + A bejegyzés frissítve: %@ + copied message info + + + Reduced battery usage + Csökkentett akkumulátorhasználat + No comment provided by engineer. + + + Reject + Elutasítás + reject incoming call via notification + + + Reject (sender NOT notified) + Elutasítás (a feladó NEM kap értesítést) + No comment provided by engineer. + + + Reject contact request + Kapcsolatfelvételi kérelem elutasítása + No comment provided by engineer. + + + Relay server is only used if necessary. Another party can observe your IP address. + Az átjátszó kiszolgáló csak szükség esetén kerül használatra. Egy másik fél megfigyelheti az IP-címét. + No comment provided by engineer. + + + Relay server protects your IP address, but it can observe the duration of the call. + Az átjátszó kiszolgáló megvédi IP-címét, de megfigyelheti a hívás időtartamát. + No comment provided by engineer. + + + Remove + Eltávolítás + No comment provided by engineer. + + + Remove member + Tag eltávolítása + No comment provided by engineer. + + + Remove member? + Tag eltávolítása? + No comment provided by engineer. + + + Remove passphrase from keychain? + Jelmondat eltávolítása a kulcstárolóból? + No comment provided by engineer. + + + Renegotiate + Újraegyzetetés + No comment provided by engineer. + + + Renegotiate encryption + Titkosítás újraegyeztetése + No comment provided by engineer. + + + Renegotiate encryption? + Titkosítás újraegyeztetése? + No comment provided by engineer. + + + Repeat connection request? + Kapcsolódási kérés megismétlése? + No comment provided by engineer. + + + Repeat download + No comment provided by engineer. + + + Repeat import + No comment provided by engineer. + + + Repeat join request? + Csatlakozási kérés megismétlése? + No comment provided by engineer. + + + Repeat upload + No comment provided by engineer. + + + Reply + Válasz + chat item action + + + Required + Megkövetelt + No comment provided by engineer. + + + Reset + Alaphelyzetbe állítás + No comment provided by engineer. + + + Reset colors + Színek alaphelyzetbe állítása + No comment provided by engineer. + + + Reset to defaults + Alaphelyzetbe állítás + No comment provided by engineer. + + + Restart the app to create a new chat profile + Új csevegési profil létrehozásához indítsa újra az alkalmazást + No comment provided by engineer. + + + Restart the app to use imported chat database + Az importált csevegési adatbázis használatához indítsa újra az alkalmazást + No comment provided by engineer. + + + Restore + Visszaállítás + No comment provided by engineer. + + + Restore database backup + Adatbázismentés visszaállítása + No comment provided by engineer. + + + Restore database backup? + Adatbázismentés visszaállítása? + No comment provided by engineer. + + + Restore database error + Hiba az adatbázis visszaállításakor + No comment provided by engineer. + + + Retry + Újrapróbálkozás + No comment provided by engineer. + + + Reveal + Felfedés + chat item action + + + Revert + Visszaállít + No comment provided by engineer. + + + Revoke + Visszavonás + No comment provided by engineer. + + + Revoke file + Fájl visszavonása + cancel file action + + + Revoke file? + Fájl visszavonása? + No comment provided by engineer. + + + Role + Szerepkör + No comment provided by engineer. + + + Run chat + Csevegési szolgáltatás indítása + No comment provided by engineer. + + + SMP servers + Üzenetküldő (SMP) kiszolgálók + No comment provided by engineer. + + + Safer groups + No comment provided by engineer. + + + Save + Mentés + chat item action + + + Save (and notify contacts) + Mentés (és az ismerősök értesítése) + No comment provided by engineer. + + + Save and notify contact + Mentés és ismerős értesítése + No comment provided by engineer. + + + Save and notify group members + Mentés és a csoporttagok értesítése + No comment provided by engineer. + + + Save and update group profile + Mentés és a csoport profil frissítése + No comment provided by engineer. + + + Save archive + Archívum mentése + No comment provided by engineer. + + + Save auto-accept settings + Automatikus elfogadási beállítások mentése + No comment provided by engineer. + + + Save group profile + Csoport profil elmentése + No comment provided by engineer. + + + Save passphrase and open chat + Jelmondat elmentése és csevegés megnyitása + No comment provided by engineer. + + + Save passphrase in Keychain + Jelmondat mentése a kulcstárban + No comment provided by engineer. + + + Save preferences? + Beállítások mentése? + No comment provided by engineer. + + + Save profile password + Felhasználói fiók jelszavának mentése + No comment provided by engineer. + + + Save servers + Kiszolgálók mentése + No comment provided by engineer. + + + Save servers? + Kiszolgálók mentése? + No comment provided by engineer. + + + Save settings? + Beállítások mentése? + No comment provided by engineer. + + + Save welcome message? + Üdvözlőszöveg mentése? + No comment provided by engineer. + + + Saved WebRTC ICE servers will be removed + A mentett WebRTC ICE kiszolgálók eltávolításra kerülnek + No comment provided by engineer. + + + Saved message + Mentett üzenet + message info title + + + Scan QR code + QR-kód beolvasása + No comment provided by engineer. + + + Scan QR code from desktop + QR-kód beolvasása számítógépről + No comment provided by engineer. + + + Scan code + Kód beolvasása + No comment provided by engineer. + + + Scan security code from your contact's app. + Biztonsági kód beolvasása ismerős általi alkalmazásból. + No comment provided by engineer. + + + Scan server QR code + A kiszolgáló QR-kódjának beolvasása + No comment provided by engineer. + + + Search + Keresés + No comment provided by engineer. + + + Search bar accepts invitation links. + A keresősáv fogadja a meghívó hivatkozásokat. + No comment provided by engineer. + + + Search or paste SimpleX link + Keresés, vagy SimpleX hivatkozás beillesztése + No comment provided by engineer. + + + Secure queue + Biztonságos várólista + server test step + + + Security assessment + Biztonsági kiértékelés + No comment provided by engineer. + + + Security code + Biztonsági kód + No comment provided by engineer. + + + Select + Választás + No comment provided by engineer. + + + Self-destruct + Önmegsemmisítés + No comment provided by engineer. + + + Self-destruct passcode + Önmegsemmisítési jelkód + No comment provided by engineer. + + + Self-destruct passcode changed! + Az önmegsemmisítési jelkód megváltozott! + No comment provided by engineer. + + + Self-destruct passcode enabled! + Az önmegsemmisítési jelkód engedélyezve! + No comment provided by engineer. + + + Send + Küldés + No comment provided by engineer. + + + Send a live message - it will update for the recipient(s) as you type it + Élő üzenet küldése - a címzett(ek) számára frissül, ahogy beírja + No comment provided by engineer. + + + Send delivery receipts to + A kézbesítési jelentéseket a következő címre kell küldeni + No comment provided by engineer. + + + Send direct message + Közvetlen üzenet küldése + No comment provided by engineer. + + + Send direct message to connect + A kapcsolódáshoz közvetlen üzenet küldése + No comment provided by engineer. + + + Send disappearing message + Eltűnő üzenet küldése + No comment provided by engineer. + + + Send link previews + Hivatkozás előnézetek küldése + No comment provided by engineer. + + + Send live message + Élő üzenet küldése + No comment provided by engineer. + + + Send notifications + Értesítések küldése + No comment provided by engineer. + + + Send notifications: + Értesítések küldése: + No comment provided by engineer. + + + Send questions and ideas + Ötletek és kérdések beküldése + No comment provided by engineer. + + + Send receipts + Üzenet kézbesítési jelentések + No comment provided by engineer. + + + Send them from gallery or custom keyboards. + Küldje el őket galériából vagy egyedi billentyűzetekről. + No comment provided by engineer. + + + Send up to 100 last messages to new members. + Utolsó 100 üzenet küldése új tagoknak. + No comment provided by engineer. + + + Sender cancelled file transfer. + A küldő megszakította a fájl átvitelt. + No comment provided by engineer. + + + Sender may have deleted the connection request. + A küldő törölhette a kapcsolódási kérelmet. + No comment provided by engineer. + + + Sending delivery receipts will be enabled for all contacts in all visible chat profiles. + A kézbesítési jelentések küldése engedélyezésre kerül az összes látható csevegési profilban lévő minden ismerős számára. + No comment provided by engineer. + + + Sending delivery receipts will be enabled for all contacts. + A kézbesítési jelentés küldése minden ismerős számára engedélyezésre kerül. + No comment provided by engineer. + + + Sending file will be stopped. + A fájl küldése leállt. + No comment provided by engineer. + + + Sending receipts is disabled for %lld contacts + A kézbesítési jelentések küldése le van tiltva %lld ismerősnél + No comment provided by engineer. + + + Sending receipts is disabled for %lld groups + A kézbesítési jelentések küldése le van tiltva %lld csoportban + No comment provided by engineer. + + + Sending receipts is enabled for %lld contacts + A kézbesítési jelentések küldése engedélyezve van %lld ismerős számára + No comment provided by engineer. + + + Sending receipts is enabled for %lld groups + A kézbesítési jelentések küldése engedélyezve van %lld csoportban + No comment provided by engineer. + + + Sending via + Küldés ezen keresztül + No comment provided by engineer. + + + Sent at + Elküldve ekkor + No comment provided by engineer. + + + Sent at: %@ + Elküldve ekkor: %@ + copied message info + + + Sent file event + Elküldött fájl esemény + notification + + + Sent message + Elküldött üzenet + message info title + + + Sent messages will be deleted after set time. + Az elküldött üzenetek törlésre kerülnek a beállított idő után. + No comment provided by engineer. + + + Server requires authorization to create queues, check password + A kiszolgálónak engedélyre van szüksége a várólisták létrehozásához, ellenőrizze jelszavát + server test error + + + Server requires authorization to upload, check password + A kiszolgálónak engedélyre van szüksége a várólisták feltöltéséhez, ellenőrizze jelszavát + server test error + + + Server test failed! + A kiszolgáló tesztje sikertelen! + No comment provided by engineer. + + + Servers + Kiszolgálók + No comment provided by engineer. + + + Session code + Munkamenet kód + No comment provided by engineer. + + + Set 1 day + Beállítva 1 nap + No comment provided by engineer. + + + Set contact name… + Ismerős nevének beállítása… + No comment provided by engineer. + + + Set group preferences + Csoportbeállítások megadása + No comment provided by engineer. + + + Set it instead of system authentication. + Rendszerhitelesítés helyetti beállítás. + No comment provided by engineer. + + + Set passcode + Jelkód beállítása + No comment provided by engineer. + + + Set passphrase + No comment provided by engineer. + + + Set passphrase to export + Jelmondat beállítása az exportáláshoz + No comment provided by engineer. + + + Set the message shown to new members! + Megjelenő üzenetet beállítása új tagok részére! + No comment provided by engineer. + + + Set timeouts for proxy/VPN + Időtúllépések beállítása a proxy/VPN számára + No comment provided by engineer. + + + Settings + Beállítások + No comment provided by engineer. + + + Share + Megosztás + chat item action + + + Share 1-time link + Egyszer használatos hivatkozás megosztása + No comment provided by engineer. + + + Share address + Azonosító megosztása + No comment provided by engineer. + + + Share address with contacts? + Megosztja az azonosítót az ismerősökkel? + No comment provided by engineer. + + + Share link + Hivatkozás megosztása + No comment provided by engineer. + + + Share this 1-time invite link + Egyszer használatos meghívó hivatkozás megosztása + No comment provided by engineer. + + + Share with contacts + Megosztás ismerősökkel + No comment provided by engineer. + + + Show QR code + No comment provided by engineer. + + + Show calls in phone history + Hívások megjelenítése a híváslistában + No comment provided by engineer. + + + Show developer options + Fejlesztői beállítások mutatása + No comment provided by engineer. + + + Show last messages + Utolsó üzenetek megjelenítése + No comment provided by engineer. + + + Show preview + Előnézet megjelenítése + No comment provided by engineer. + + + Show: + Mutat: + No comment provided by engineer. + + + SimpleX Address + SimpleX azonosító + No comment provided by engineer. + + + SimpleX Chat security was audited by Trail of Bits. + A SimpleX Chat biztonsága a Trail of Bits által lett auditálva. + No comment provided by engineer. + + + SimpleX Lock + SimpleX zárolás + No comment provided by engineer. + + + SimpleX Lock mode + SimpleX zárolási mód + No comment provided by engineer. + + + SimpleX Lock not enabled! + SimpleX zárolás nincs engedélyezve! + No comment provided by engineer. + + + SimpleX Lock turned on + SimpleX zárolás bekapcsolva + No comment provided by engineer. + + + SimpleX address + SimpleX azonosító + No comment provided by engineer. + + + SimpleX contact address + SimpleX ismerős azonosítója + simplex link type + + + SimpleX encrypted message or connection event + SimpleX titkosított üzenet vagy kapcsolati esemény + notification + + + SimpleX group link + SimpleX csoport hivatkozás + simplex link type + + + SimpleX links + SimpleX hivatkozások + No comment provided by engineer. + + + SimpleX one-time invitation + SimpleX egyszer használatos meghívó + simplex link type + + + Simplified incognito mode + Egyszerűsített inkognító mód + No comment provided by engineer. + + + Skip + Kihagyás + No comment provided by engineer. + + + Skipped messages + Kihagyott üzenetek + No comment provided by engineer. + + + Small groups (max 20) + Kis csoportok (max. 20 tag) + No comment provided by engineer. + + + Some non-fatal errors occurred during import - you may see Chat console for more details. + Néhány nem végzetes hiba történt az importálás során – további részletekért a csevegési konzolban olvashat. + No comment provided by engineer. + + + Somebody + Valaki + notification title + + + Start chat + Csevegés indítása + No comment provided by engineer. + + + Start chat? + Csevegés indítása? + No comment provided by engineer. + + + Start migration + Migráció indítása + No comment provided by engineer. + + + Stop + Megállítás + No comment provided by engineer. + + + Stop SimpleX + A SimpleX megállítása + authentication reason + + + Stop chat + No comment provided by engineer. + + + Stop chat to enable database actions + Csevegés leállítása az adatbázis-műveletek engedélyezéséhez + No comment provided by engineer. + + + Stop chat to export, import or delete chat database. You will not be able to receive and send messages while the chat is stopped. + A csevegés leállítása a csevegőadatbázis exportálásához, importálásához vagy törléséhez. A csevegés leállítása alatt nem tud üzeneteket fogadni és küldeni. + No comment provided by engineer. + + + Stop chat? + Csevegési szolgáltatás megállítása? + No comment provided by engineer. + + + Stop file + Fájl megállítása + cancel file action + + + Stop receiving file? + Fájl fogadás megszakítása? + No comment provided by engineer. + + + Stop sending file? + Fájl küldés megszakítása? + No comment provided by engineer. + + + Stop sharing + Megosztás leállítása + No comment provided by engineer. + + + Stop sharing address? + Címmegosztás megállítása? + No comment provided by engineer. + + + Stopping chat + No comment provided by engineer. + + + Submit + Elküldés + No comment provided by engineer. + + + Support SimpleX Chat + Támogassa a SimpleX Chatet + No comment provided by engineer. + + + System + Rendszer + No comment provided by engineer. + + + System authentication + Rendszerhitelesítés + No comment provided by engineer. + + + TCP connection timeout + TCP kapcsolat időtúllépés + No comment provided by engineer. + + + TCP_KEEPCNT + TCP_KEEPCNT + No comment provided by engineer. + + + TCP_KEEPIDLE + TCP_KEEPIDLE + No comment provided by engineer. + + + TCP_KEEPINTVL + TCP_KEEPINTVL + No comment provided by engineer. + + + Take picture + Fotó készítése + No comment provided by engineer. + + + Tap button + Koppintson a gombra + No comment provided by engineer. + + + Tap to Connect + Koppintson a csatlakozáshoz + No comment provided by engineer. + + + Tap to activate profile. + A profil aktiválásához koppintson az ikonra. + No comment provided by engineer. + + + Tap to join + Koppintson a csatlakozáshoz + No comment provided by engineer. + + + Tap to join incognito + Koppintson az inkognitómódhoz való csatlakozáshoz + No comment provided by engineer. + + + Tap to paste link + Koppintson a hivatkozás beillesztéséhez + No comment provided by engineer. + + + Tap to scan + Koppintson a beolvasáshoz + No comment provided by engineer. + + + Tap to start a new chat + Koppintson az új csevegés indításához + No comment provided by engineer. + + + Test failed at step %@. + A teszt sikertelen volt a(z) %@ lépésnél. + server test failure + + + Test server + Kiszolgáló tesztelése + No comment provided by engineer. + + + Test servers + Kiszolgálók tesztelése + No comment provided by engineer. + + + Tests failed! + Sikertelen tesztek! + No comment provided by engineer. + + + Thank you for installing SimpleX Chat! + Köszönjük, hogy telepítette a SimpleX Chatet! + No comment provided by engineer. + + + Thanks to the users – [contribute via Weblate](https://github.com/simplex-chat/simplex-chat/tree/stable#help-translating-simplex-chat)! + Köszönet a felhasználóknak – [hozzájárulás a Weblate-en keresztül](https://github.com/simplex-chat/simplex-chat/tree/stable#help-translating-simplex-chat)! + No comment provided by engineer. + + + Thanks to the users – contribute via Weblate! + Köszönet a felhasználóknak - hozzájárulás a Weblaten! + No comment provided by engineer. + + + The 1st platform without any user identifiers – private by design. + Az első csevegési rendszer bármiféle felhasználó azonosító nélkül - privátra lett tervezre. + No comment provided by engineer. + + + The ID of the next message is incorrect (less or equal to the previous). +It can happen because of some bug or when the connection is compromised. + A következő üzenet azonosítója hibás (kisebb vagy egyenlő az előzővel). +Ez valamilyen hiba, vagy sérült kapcsolat esetén fordulhat elő. + No comment provided by engineer. + + + The app can notify you when you receive messages or contact requests - please open settings to enable. + Az alkalmazás értesíteni fogja, amikor üzeneteket vagy kapcsolatfelvételi kéréseket kap – beállítások megnyitása az engedélyezéshez. + No comment provided by engineer. + + + The attempt to change database passphrase was not completed. + Az adatbázis jelmondatának megváltoztatására tett kísérlet nem fejeződött be. + No comment provided by engineer. + + + The code you scanned is not a SimpleX link QR code. + A beolvasott kód nem egy SimpleX hivatkozás QR-kód. + No comment provided by engineer. + + + The connection you accepted will be cancelled! + Az ön által elfogadott kapcsolat megszakad! + No comment provided by engineer. + + + The contact you shared this link with will NOT be able to connect! + Ismerőse NEM fog tudni csatlakozni, akivel megosztotta ezt a hivatkozást! + No comment provided by engineer. + + + The created archive is available via app Settings / Database / Old database archive. + A létrehozott archívum a Beállítások / Adatbázis / Régi adatbázis-archívum menüpontban érhető el. + No comment provided by engineer. + + + The encryption is working and the new encryption agreement is not required. It may result in connection errors! + A titkosítás működik, és új titkosítási egyezményre nincs szükség. Ez kapcsolati hibákat eredményezhet! + No comment provided by engineer. + + + The hash of the previous message is different. + Az előző üzenet hash-e más. + No comment provided by engineer. + + + The message will be deleted for all members. + Az üzenet minden tag számára törlésre kerül. + No comment provided by engineer. + + + The message will be marked as moderated for all members. + Az üzenet minden tag számára moderáltként lesz megjelölve. + No comment provided by engineer. + + + The next generation of private messaging + A privát üzenetküldés következő generációja + No comment provided by engineer. + + + The old database was not removed during the migration, it can be deleted. + A régi adatbázis nem került eltávolításra a migráció során, így törölhető. + No comment provided by engineer. + + + The profile is only shared with your contacts. + Profilja csak az ismerősök számára kerül megosztásra. + No comment provided by engineer. + + + The second tick we missed! ✅ + A második jelölés, amit kihagytunk! ✅ + No comment provided by engineer. + + + The sender will NOT be notified + A feladó NEM fog értesítést kapni + No comment provided by engineer. + + + The servers for new connections of your current chat profile **%@**. + Jelenlegi profil új ismerőseinek kiszolgálói **%@**. + No comment provided by engineer. + + + The text you pasted is not a SimpleX link. + A beillesztett szöveg nem egy SimpleX hivatkozás. + No comment provided by engineer. + + + Theme + Téma + No comment provided by engineer. + + + These settings are for your current profile **%@**. + Ezek a beállítások a jelenlegi **%@** profiljára vonatkoznak. + No comment provided by engineer. + + + They can be overridden in contact and group settings. + Ezek felülbírálhatóak az ismerős- és csoportbeállításokban. + No comment provided by engineer. + + + This action cannot be undone - all received and sent files and media will be deleted. Low resolution pictures will remain. + Ez a művelet nem vonható vissza - az összes fogadott és küldött fájl a médiatartalommal együtt törlésre kerülnek. Az alacsony felbontású fotók viszont megmaradnak. + No comment provided by engineer. + + + This action cannot be undone - the messages sent and received earlier than selected will be deleted. It may take several minutes. + Ez a művelet nem vonható vissza - a kiválasztottnál korábban küldött és fogadott üzenetek törlésre kerülnek. Ez több percet is igénybe vehet. + No comment provided by engineer. + + + This action cannot be undone - your profile, contacts, messages and files will be irreversibly lost. + Ez a művelet nem vonható vissza - profilok, ismerősök, üzenetek és fájlok visszafordíthatatlanul törlésre kerülnek. + No comment provided by engineer. + + + This chat is protected by end-to-end encryption. + E2EE info chat item + + + This chat is protected by quantum resistant end-to-end encryption. + E2EE info chat item + + + This device name + Ennek az eszköznek a neve + No comment provided by engineer. + + + This display name is invalid. Please choose another name. + Ez a megjelenített felhasználónév érvénytelen. Válasszon egy másik nevet. + No comment provided by engineer. + + + This group has over %lld members, delivery receipts are not sent. + Ennek a csoportnak több mint %lld tagja van, a kézbesítési jelentések nem kerülnek elküldésre. + No comment provided by engineer. + + + This group no longer exists. + Ez a csoport már nem létezik. + No comment provided by engineer. + + + This is your own SimpleX address! + Ez a SimpleX azonosítója! + No comment provided by engineer. + + + This is your own one-time link! + Ez az egyszer használatos hivatkozása! + No comment provided by engineer. + + + This setting applies to messages in your current chat profile **%@**. + Ez a beállítás a jelenlegi **%@** profiljában lévő üzenetekre érvényes. + No comment provided by engineer. + + + To ask any questions and to receive updates: + Bármilyen kérdés feltevéséhez és a frissítésekért: + No comment provided by engineer. + + + To connect, your contact can scan QR code or use the link in the app. + A csatlakozáshoz az ismerős beolvashatja a QR-kódot, vagy használhatja az alkalmazásban található hivatkozást. + No comment provided by engineer. + + + To hide unwanted messages. + Kéretlen üzenetek elrejtése. + No comment provided by engineer. + + + To make a new connection + Új kapcsolat létrehozásához + No comment provided by engineer. + + + To protect privacy, instead of user IDs used by all other platforms, SimpleX has identifiers for message queues, separate for each of your contacts. + Az adatvédelem érdekében, a más csevegési platformokon megszokott felhasználói azonosítók helyett, a SimpleX üzenetsorokhoz rendel azonosítókat, minden egyes ismerőshöz egy különbözőt. + No comment provided by engineer. + + + To protect timezone, image/voice files use UTC. + Az időzóna védelme érdekében a kép-/hangfájlok UTC-t használnak. + No comment provided by engineer. + + + To protect your information, turn on SimpleX Lock. +You will be prompted to complete authentication before this feature is enabled. + Az adatavédelem érdekében kapcsolja be a SimpleX zárolás funkciót. +A funkció engedélyezése előtt a rendszer felszólítja a hitelesítés befejezésére. + No comment provided by engineer. + + + To record voice message please grant permission to use Microphone. + Hangüzenet rögzítéséhez adjon engedélyt a mikrofon használathoz. + No comment provided by engineer. + + + To reveal your hidden profile, enter a full password into a search field in **Your chat profiles** page. + Rejtett profilja feltárásához írja be a teljes jelszót a keresőmezőbe a **Csevegési profiljai** oldalon. + No comment provided by engineer. + + + To support instant push notifications the chat database has to be migrated. + Az azonnali push értesítések támogatásához a csevegési adatbázis migrálása szükséges. + No comment provided by engineer. + + + To verify end-to-end encryption with your contact compare (or scan) the code on your devices. + A végpontok közötti titkosítás ellenőrzéséhez ismerősével hasonlítsa össze (vagy szkennelje be) az eszközén lévő kódot. + No comment provided by engineer. + + + Toggle incognito when connecting. + Inkognító mód csatlakozáskor. + No comment provided by engineer. + + + Transport isolation + Kapcsolat izolációs mód + No comment provided by engineer. + + + Trying to connect to the server used to receive messages from this contact (error: %@). + Csatlakozási kísérlet a kapcsolat üzeneteinek fogadására használt kiszolgálóhoz (hiba: %@). + No comment provided by engineer. + + + Trying to connect to the server used to receive messages from this contact. + Csatlakozási kísérlet a kapcsolat üzeneteinek fogadására használt kiszolgálóhoz ettől az ismerőstől. + No comment provided by engineer. + + + Turkish interface + Török kezelőfelület + No comment provided by engineer. + + + Turn off + Kikapcsolás + No comment provided by engineer. + + + Turn on + Bekapcsolás + No comment provided by engineer. + + + Unable to record voice message + Hangüzenet rögzítése nem lehetséges + No comment provided by engineer. + + + Unblock + Feloldás + No comment provided by engineer. + + + Unblock for all + Letiltás feloldása mindenki számára + No comment provided by engineer. + + + Unblock member + Tag feloldása + No comment provided by engineer. + + + Unblock member for all? + Mindenki számára feloldja a tag letiltását? + No comment provided by engineer. + + + Unblock member? + Tag feloldása? + No comment provided by engineer. + + + Unexpected error: %@ + Váratlan hiba: %@ + item status description + + + Unexpected migration state + Váratlan migrációs állapot + No comment provided by engineer. + + + Unfav. + Nem kedvelt. + No comment provided by engineer. + + + Unhide + Felfedés + No comment provided by engineer. + + + Unhide chat profile + Csevegési profil felfedése + No comment provided by engineer. + + + Unhide profile + Profil felfedése + No comment provided by engineer. + + + Unit + Egység + No comment provided by engineer. + + + Unknown caller + Ismeretlen hívó + callkit banner + + + Unknown database error: %@ + Ismeretlen adatbázishiba: %@ + No comment provided by engineer. + + + Unknown error + Ismeretlen hiba + No comment provided by engineer. + + + Unless you use iOS call interface, enable Do Not Disturb mode to avoid interruptions. + Hacsak nem az iOS hívási felületét használja, engedélyezze a Ne zavarjanak módot a megszakítások elkerülése érdekében. + No comment provided by engineer. + + + Unless your contact deleted the connection or this link was already used, it might be a bug - please report it. +To connect, please ask your contact to create another connection link and check that you have a stable network connection. + Hacsak az ismerős nem törölte a kapcsolatot, vagy ez a hivatkozás már használatban volt, hiba lehet – kérjük, jelentse. +A csatlakozáshoz kérje meg ismerősét, hogy hozzon létre egy másik kapcsolati hivatkozást, és ellenőrizze, hogy a hálózati kapcsolat stabil-e. + No comment provided by engineer. + + + Unlink + Szétkapcsolás + No comment provided by engineer. + + + Unlink desktop? + Számítógép szétkapcsolása? + No comment provided by engineer. + + + Unlock + Feloldás + No comment provided by engineer. + + + Unlock app + Alkalmazás feloldása + authentication reason + + + Unmute + Némítás feloldása + No comment provided by engineer. + + + Unread + Olvasatlan + No comment provided by engineer. + + + Up to 100 last messages are sent to new members. + Legfeljebb az utolsó 100 üzenet kerül elküldésre az új tagoknak. + No comment provided by engineer. + + + Update + Frissítés + No comment provided by engineer. + + + Update .onion hosts setting? + Tor .onion host beállítások frissítése? + No comment provided by engineer. + + + Update database passphrase + Adatbázis jelmondat megváltoztatása + No comment provided by engineer. + + + Update network settings? + Hálózati beállítások megváltoztatása? + No comment provided by engineer. + + + Update transport isolation mode? + Kapcsolat izolációs mód frissítése? + No comment provided by engineer. + + + Updating settings will re-connect the client to all servers. + A beállítások frissítése a szerverekhez újra kapcsolódással jár. + No comment provided by engineer. + + + Updating this setting will re-connect the client to all servers. + A beállítás frissítésével a kliens újracsatlakozik az összes kiszolgálóhoz. + No comment provided by engineer. + + + Upgrade and open chat + A csevegés frissítése és megnyitása + No comment provided by engineer. + + + Upload failed + No comment provided by engineer. + + + Upload file + Fájl feltöltése + server test step + + + Uploading archive + No comment provided by engineer. + + + Use .onion hosts + Tor .onion hostok használata + No comment provided by engineer. + + + Use SimpleX Chat servers? + SimpleX Chat kiszolgálók használata? + No comment provided by engineer. + + + Use chat + Csevegés használata + No comment provided by engineer. + + + Use current profile + Jelenlegi profil használata + No comment provided by engineer. + + + Use for new connections + Alkalmazás új kapcsolatokhoz + No comment provided by engineer. + + + Use from desktop + Használat számítógépről + No comment provided by engineer. + + + Use iOS call interface + Az iOS hívófelület használata + No comment provided by engineer. + + + Use new incognito profile + Az új inkognító profil használata + No comment provided by engineer. + + + Use only local notifications? + Csak helyi értesítések használata? + No comment provided by engineer. + + + Use server + Kiszolgáló használata + No comment provided by engineer. + + + Use the app while in the call. + No comment provided by engineer. + + + User profile + Felhasználói profil + No comment provided by engineer. + + + Using .onion hosts requires compatible VPN provider. + A .onion hosztok használatához kompatibilis VPN szolgáltatóra van szükség. + No comment provided by engineer. + + + Using SimpleX Chat servers. + SimpleX Chat kiszolgálók használatban. + No comment provided by engineer. + + + Verify code with desktop + Kód ellenőrzése a számítógépen + No comment provided by engineer. + + + Verify connection + Kapcsolat ellenőrzése + No comment provided by engineer. + + + Verify connection security + Kapcsolat biztonságának ellenőrzése + No comment provided by engineer. + + + Verify connections + Kapcsolatok ellenőrzése + No comment provided by engineer. + + + Verify database passphrase + No comment provided by engineer. + + + Verify passphrase + No comment provided by engineer. + + + Verify security code + Biztonsági kód ellenőrzése + No comment provided by engineer. + + + Via browser + Böngészőn keresztül + No comment provided by engineer. + + + Via secure quantum resistant protocol. + Biztonságos kvantum ellenálló protokoll által. + No comment provided by engineer. + + + Video call + Videóhívás + No comment provided by engineer. + + + Video will be received when your contact completes uploading it. + A videó akkor érkezik meg, amikor az ismerőse befejezte annak feltöltését. + No comment provided by engineer. + + + Video will be received when your contact is online, please wait or check later! + A videó akkor érkezik meg, amikor az ismerős elérhető, várjon, vagy ellenőrizze később! + No comment provided by engineer. + + + Videos and files up to 1gb + Videók és fájlok 1Gb méretig + No comment provided by engineer. + + + View security code + Biztonsági kód megtekintése + No comment provided by engineer. + + + Visible history + Látható előzmények + chat feature + + + Voice messages + Hangüzenetek + chat feature + + + Voice messages are prohibited in this chat. + A hangüzenetek le vannak tiltva ebben a csevegésben. + No comment provided by engineer. + + + Voice messages are prohibited in this group. + A hangüzenetek küldése le van tiltva ebben a csoportban. + No comment provided by engineer. + + + Voice messages prohibited! + A hangüzenetek le vannak tilva! + No comment provided by engineer. + + + Voice message… + Hangüzenet… + No comment provided by engineer. + + + Waiting for desktop... + Várakozás az asztali kliensre... + No comment provided by engineer. + + + Waiting for file + Fájlra várakozás + No comment provided by engineer. + + + Waiting for image + Képre várakozás + No comment provided by engineer. + + + Waiting for video + Videóra várakozás + No comment provided by engineer. + + + Warning: starting chat on multiple devices is not supported and will cause message delivery failures + No comment provided by engineer. + + + Warning: you may lose some data! + Figyelmeztetés: néhány adat elveszhet! + No comment provided by engineer. + + + WebRTC ICE servers + WebRTC ICE kiszolgálók + No comment provided by engineer. + + + Welcome %@! + Üdvözöllek %@! + No comment provided by engineer. + + + Welcome message + Üdvözlő üzenet + No comment provided by engineer. + + + Welcome message is too long + No comment provided by engineer. + + + What's new + Milyen újdonságok vannak + No comment provided by engineer. + + + When available + Amikor elérhető + No comment provided by engineer. + + + When people request to connect, you can accept or reject it. + Csatlakozási kérelmek esetében, elfogadhatja vagy elutasíthatja azokat. + No comment provided by engineer. + + + When you share an incognito profile with somebody, this profile will be used for the groups they invite you to. + Inkognitóprofil megosztása esetén a rendszer azt a profilt fogja használni azokhoz a csoportokhoz, amelyekbe meghívást kapott. + No comment provided by engineer. + + + With encrypted files and media. + Titkosított fájlokkal és médiatartalommal. + No comment provided by engineer. + + + With optional welcome message. + Opcionális üdvözlő üzenettel. + No comment provided by engineer. + + + With reduced battery usage. + Csökkentett akkumulátorhasználattal. + No comment provided by engineer. + + + Wrong database passphrase + Téves adatbázis jelmondat + No comment provided by engineer. + + + Wrong passphrase! + Téves jelmondat! + No comment provided by engineer. + + + XFTP servers + XFTP kiszolgálók + No comment provided by engineer. + + + You + Ön + No comment provided by engineer. + + + You **must not** use the same database on two devices. + No comment provided by engineer. + + + You accepted connection + Kapcsolódás elfogadva + No comment provided by engineer. + + + You allow + Engedélyezte + No comment provided by engineer. + + + You already have a chat profile with the same display name. Please choose another name. + Már van egy csevegési profil ugyanezzel a megjelenített névvel. Válasszon egy másik nevet. + No comment provided by engineer. + + + You are already connected to %@. + Már csatlakozva van ehhez: %@. + No comment provided by engineer. + + + You are already connecting to %@. + Már folyamatban van a csatlakozás ehhez: %@. + No comment provided by engineer. + + + You are already connecting via this one-time link! + Már csatlakozik ezen az egyszer használatos hivatkozáson keresztül! + No comment provided by engineer. + + + You are already in group %@. + Már a %@ csoportban van. + No comment provided by engineer. + + + You are already joining the group %@. + Már folyamatban van a csatlakozás a csoporthoz %@. + No comment provided by engineer. + + + You are already joining the group via this link! + Már csatlakozott a csoporthoz ezen a hivatkozáson keresztül! + No comment provided by engineer. + + + You are already joining the group via this link. + Ezen a hivatkozáson keresztül már csatlakozik a csoporthoz. + No comment provided by engineer. + + + You are already joining the group! +Repeat join request? + Csatlakozás folyamatban! +Csatlakozási kérés megismétlése? + No comment provided by engineer. + + + You are connected to the server used to receive messages from this contact. + Kiszolgálóhoz történő csatlakozás, mely az adott ismerőstől érkező üzenetek fogadására szolgál. + No comment provided by engineer. + + + You are invited to group + Meghívást kapott a csoportba + No comment provided by engineer. + + + You can accept calls from lock screen, without device and app authentication. + Hívásokat fogadhat a lezárási képernyőről, eszköz- és alkalmazáshitelesítés nélkül. + No comment provided by engineer. + + + You can create it later + Létrehozás később + No comment provided by engineer. + + + You can enable later via Settings + Később engedélyezheti a Beállításokban + No comment provided by engineer. + + + You can enable them later via app Privacy & Security settings. + Később engedélyezheti őket az alkalmazás Adatvédelem és biztonság menüpontban. + No comment provided by engineer. + + + You can give another try. + No comment provided by engineer. + + + You can hide or mute a user profile - swipe it to the right. + Elrejthet vagy némíthat egy felhasználói profilt – csúsztasson jobbra. + No comment provided by engineer. + + + You can make it visible to your SimpleX contacts via Settings. + Láthatóvá teheti SimpleX ismerősök számára a Beállításokban. + No comment provided by engineer. + + + You can now send messages to %@ + Mostantól küldhet üzeneteket %@ számára + notification body + + + You can set lock screen notification preview via settings. + A beállításokon keresztül beállíthatja a lezárási képernyő értesítési előnézetét. + No comment provided by engineer. + + + You can share a link or a QR code - anybody will be able to join the group. You won't lose members of the group if you later delete it. + Megoszthat egy hivatkozást vagy QR-kódot - így bárki csatlakozhat a csoporthoz. Ha a csoport később törlésre kerül, akkor nem fogja elveszíteni annak tagjait. + No comment provided by engineer. + + + You can share this address with your contacts to let them connect with **%@**. + Megoszthatja ezt a hivatkozást ismerőseivel, hogy kapcsolatba léphessenek önnel a **%@** nevű profilján keresztül. + No comment provided by engineer. + + + You can share your address as a link or QR code - anybody can connect to you. + Megoszthatja azonosítóját hivatkozásként vagy QR-kódként – így bárki csatlakozhat önhöz. + No comment provided by engineer. + + + You can start chat via app Settings / Database or by restarting the app + A csevegést az alkalmazás Beállítások / Adatbázis menü segítségével vagy az alkalmazás újraindításával indíthatja el + No comment provided by engineer. + + + You can turn on SimpleX Lock via Settings. + A SimpleX zárolás a Beállításokon keresztül kapcsolható be. + No comment provided by engineer. + + + You can use markdown to format messages: + Üzenetek formázása a szövegbe szúrt speciális karakterekkel: + No comment provided by engineer. + + + You can view invitation link again in connection details. + A meghívó hivatkozást újra megtekintheti a kapcsolat részleteinél. + No comment provided by engineer. + + + You can't send messages! + Nem lehet üzeneteket küldeni! + No comment provided by engineer. + + + You control through which server(s) **to receive** the messages, your contacts – the servers you use to message them. + Ön szabályozhatja, hogy mely kiszogál(ók)ón keresztül **kapja** az üzeneteket, az ismerősöket - az üzenetküldéshez használt szervereken. + No comment provided by engineer. + + + You could not be verified; please try again. + Nem lehetett ellenőrizni; próbálja meg újra. + No comment provided by engineer. + + + You have already requested connection via this address! + Már kért egy csatlakozást ezen az azonosítón keresztül! + No comment provided by engineer. + + + You have already requested connection! +Repeat connection request? + Már kérelmezte a csatlakozást! +Kapcsolódási kérés megismétlése? + No comment provided by engineer. + + + You have no chats + Nincsenek csevegési üzenetek + No comment provided by engineer. + + + You have to enter passphrase every time the app starts - it is not stored on the device. + A jelmondatot minden alkalommal meg kell adnia, amikor az alkalmazás elindul - nem az eszközön kerül tárolásra. + No comment provided by engineer. + + + You invited a contact + Meghívott egy ismerőst + No comment provided by engineer. + + + You joined this group + Csatlakozott ehhez a csoporthoz + No comment provided by engineer. + + + You joined this group. Connecting to inviting group member. + Csatlakozott ehhez a csoporthoz. Kapcsolódás a meghívó csoporttaghoz. + No comment provided by engineer. + + + You must use the most recent version of your chat database on one device ONLY, otherwise you may stop receiving the messages from some contacts. + A csevegési adatbázis legfrissebb verzióját CSAK egy eszközön kell használnia, ellenkező esetben előfordulhat, hogy az üzeneteket nem fogja megkapni valamennyi ismerőstől. + No comment provided by engineer. + + + You need to allow your contact to send voice messages to be able to send them. + Hangüzeneteket küldéséhez engedélyeznie kell azok küldését az ismerősök számára. + No comment provided by engineer. + + + You rejected group invitation + Csoport meghívó elutasítva + No comment provided by engineer. + + + You sent group invitation + Csoport meghívó elküldve + No comment provided by engineer. + + + You will be connected to group when the group host's device is online, please wait or check later! + Akkor tud csatlakozni a csoporthoz, amikor a csoport tulajdonosának eszköze online lesz, várjon, vagy ellenőrizze később! + No comment provided by engineer. + + + You will be connected when group link host's device is online, please wait or check later! + Akkor lesz csatlakoztatva, amikor a csoportos hivatkozás tulajdonosának eszköze online lesz, várjon, vagy ellenőrizze később! + No comment provided by engineer. + + + You will be connected when your connection request is accepted, please wait or check later! + Akkor lesz csatlakoztatva, ha a csatlakozási kérelme elfogadásra került, várjon, vagy ellenőrizze később! + No comment provided by engineer. + + + You will be connected when your contact's device is online, please wait or check later! + Akkor csatlakozik, amikor az ismerős eszköze online lesz, várjon, vagy ellenőrizze később! + No comment provided by engineer. + + + You will be required to authenticate when you start or resume the app after 30 seconds in background. + Az alkalmazás indításakor, vagy 30 másodpercnyi háttérben töltött idő után az alkalmazáshoz visszatérve hitelesítés szükséges. + No comment provided by engineer. + + + You will connect to all group members. + Csatlakozni fog a csoport összes tagjához. + No comment provided by engineer. + + + You will still receive calls and notifications from muted profiles when they are active. + Továbbra is kap hívásokat és értesítéseket a némított profiloktól, ha azok aktívak. + No comment provided by engineer. + + + You will stop receiving messages from this group. Chat history will be preserved. + Ettől a csoporttól nem fog értesítéseket kapni. A csevegési előzmények megmaradnak. + No comment provided by engineer. + + + You won't lose your contacts if you later delete your address. + Nem veszíti el ismerőseit, ha később törli az azonosítóját. + No comment provided by engineer. + + + You're trying to invite contact with whom you've shared an incognito profile to the group in which you're using your main profile + Egy olyan ismerőst próbál meghívni, akivel inkognító profilt osztott meg abban a csoportban, amelyben saját fő profilja van használatban + No comment provided by engineer. + + + You're using an incognito profile for this group - to prevent sharing your main profile inviting contacts is not allowed + Inkognító profilt használ ehhez a csoporthoz - fő profilja megosztásának elkerülése érdekében meghívók küldése tiltott + No comment provided by engineer. + + + Your %@ servers + %@ nevű profiljához tartozó kiszolgálók + No comment provided by engineer. + + + Your ICE servers + ICE kiszolgálók + No comment provided by engineer. + + + Your SMP servers + SMP kiszolgálók + No comment provided by engineer. + + + Your SimpleX address + SimpleX azonosítója + No comment provided by engineer. + + + Your XFTP servers + XFTP kiszolgálók + No comment provided by engineer. + + + Your calls + Hívások + No comment provided by engineer. + + + Your chat database + Csevegési adatbázisa + No comment provided by engineer. + + + Your chat database is not encrypted - set passphrase to encrypt it. + Csevegési adatbázisa nincs titkosítva – adjon meg egy jelmondatot a titkosításhoz. + No comment provided by engineer. + + + Your chat profiles + Csevegési profiljai + No comment provided by engineer. + + + Your contact needs to be online for the connection to complete. +You can cancel this connection and remove the contact (and try later with a new link). + Az ismerősnek online kell lennie ahhoz, hogy a kapcsolat létrejöjjön. +Megszakíthatja ezt a kapcsolatfelvételt és törölheti az ismerőst (ezt később ismét megpróbálhatja egy új hivatkozással). + No comment provided by engineer. + + + Your contact sent a file that is larger than currently supported maximum size (%@). + Ismerőse olyan fájlt küldött, amely meghaladja a jelenleg támogatott maximális méretet (%@). + No comment provided by engineer. + + + Your contacts can allow full message deletion. + Ismerősök engedélyezhetik a teljes üzenet törlést. + No comment provided by engineer. + + + Your contacts will remain connected. + Az ismerősök továbbra is csatlakoztatva maradnak. + No comment provided by engineer. + + + Your current chat database will be DELETED and REPLACED with the imported one. + A jelenlegi csevegési adatbázis TÖRLŐDNI FOG, és a HELYÉRE az importált adatbázis kerül. + No comment provided by engineer. + + + Your current profile + Jelenlegi profil + No comment provided by engineer. + + + Your preferences + Beállítások + No comment provided by engineer. + + + Your privacy + Adatvédelem + No comment provided by engineer. + + + Your profile + Profil + No comment provided by engineer. + + + Your profile **%@** will be shared. + **%@** nevű profilja megosztásra kerül. + No comment provided by engineer. + + + Your profile is stored on your device and shared only with your contacts. +SimpleX servers cannot see your profile. + Profilja az eszközön van tárolva, és csak az ismerősökkel kerül megosztásra. +A SimpleX kiszolgálók nem látjhatják profilját. + No comment provided by engineer. + + + Your profile, contacts and delivered messages are stored on your device. + Profilja, ismerősök és az elküldött üzenetek az eszközön kerülnek tárolásra. + No comment provided by engineer. + + + Your random profile + Véletlenszerű profil + No comment provided by engineer. + + + Your server + Saját kiszolgáló + No comment provided by engineer. + + + Your server address + Saját kiszolgáló cím + No comment provided by engineer. + + + Your settings + Beállítások + No comment provided by engineer. + + + [Contribute](https://github.com/simplex-chat/simplex-chat#contribute) + [Hozzájárulás](https://github.com/simplex-chat/simplex-chat#contribute) + No comment provided by engineer. + + + [Send us email](mailto:chat@simplex.chat) + [Küldjön nekünk e-mailt](mailto:chat@simplex.chat) + No comment provided by engineer. + + + [Star on GitHub](https://github.com/simplex-chat/simplex-chat) + [Csillag a GitHubon](https://github.com/simplex-chat/simplex-chat) + No comment provided by engineer. + + + \_italic_ + \_dőlt_ + No comment provided by engineer. + + + \`a + b` + a + b + No comment provided by engineer. + + + above, then choose: + fent, majd válassza ki: + No comment provided by engineer. + + + accepted call + elfogadott hívás + call status + + + admin + admin + member role + + + agreeing encryption for %@… + titkosítás jóváhagyása %@ számára… + chat item text + + + agreeing encryption… + titkosítás elfogadása… + chat item text + + + always + mindig + pref value + + + and %lld other events + és %lld egyéb esemény + No comment provided by engineer. + + + audio call (not e2e encrypted) + hanghívás (nem e2e titkosított) + No comment provided by engineer. + + + author + szerző + member role + + + bad message ID + téves üzenet ID + integrity error chat item + + + bad message hash + téves üzenet hash + integrity error chat item + + + blocked + blokkolva + marked deleted chat item preview text + + + blocked %@ + %@ letiltva + rcv group event chat item + + + blocked by admin + letiltva az admin által + marked deleted chat item preview text + + + bold + félkövér + No comment provided by engineer. + + + call error + hiba a hívásban + call status + + + call in progress + hívás folyamatban + call status + + + calling… + hívás… + call status + + + cancelled %@ + %@ törölve + feature offered item + + + changed address for you + Cím megváltoztatva + chat item text + + + changed role of %1$@ to %2$@ + %1$@ szerepköre megváltozott erre: %2$@ + rcv group event chat item + + + changed your role to %@ + megváltoztatta a szerepkörét erre: %@ + rcv group event chat item + + + changing address for %@… + cím módosítása %@ számára… + chat item text + + + changing address… + azonosító megváltoztatása… + chat item text + + + colored + színes + No comment provided by engineer. + + + complete + befejezett + No comment provided by engineer. + + + connect to SimpleX Chat developers. + Csatlakozás a SimpleX Chat fejlesztőkhöz. + No comment provided by engineer. + + + connected + kapcsolódva + No comment provided by engineer. + + + connected directly + közvetlenül kapcsolódva + rcv group event chat item + + + connecting + kapcsolódás + No comment provided by engineer. + + + connecting (accepted) + kapcsolódás (elfogadva) + No comment provided by engineer. + + + connecting (announced) + kapcsolódás (bejelentve) + No comment provided by engineer. + + + connecting (introduced) + kapcsolódás (bejelentve) + No comment provided by engineer. + + + connecting (introduction invitation) + csatlakozás (bemutatkozás meghívás) + No comment provided by engineer. + + + connecting call… + hívás kapcsolódik… + call status + + + connecting… + kapcsolódás… + chat list item title + + + connection established + Kapcsolat létrehozva + chat list item title (it should not be shown + + + connection:%@ + kapcsolat: %@ + connection information + + + contact %1$@ changed to %2$@ + %1$@ ismerősének neve megváltozott erre: %2$@ + profile update event chat item + + + contact has e2e encryption + az ismerősnél az e2e titkosítás elérhető + No comment provided by engineer. + + + contact has no e2e encryption + az ismerősnél az e2e titkosítás nem elérhető + No comment provided by engineer. + + + creator + szerző + No comment provided by engineer. + + + custom + egyedi + dropdown time picker choice + + + database version is newer than the app, but no down migration for: %@ + az adatbázis verziója újabb, mint az alkalmazásé, de nincs visszafelé migráció: %@ + No comment provided by engineer. + + + days + nap + time unit + + + default (%@) + alapértelmezett (%@) + pref value + + + default (no) + alapértelmezett (nem) + No comment provided by engineer. + + + default (yes) + alapértelmezett (igen) + No comment provided by engineer. + + + deleted + törölve + deleted chat item + + + deleted contact + törölt ismerős + rcv direct event chat item + + + deleted group + törölt csoport + rcv group event chat item + + + different migration in the app/database: %@ / %@ + különböző migrációk az alkalmazásban/adatbázisban: %@ / %@ + No comment provided by engineer. + + + direct + közvetlen + connection level description + + + disabled + letiltva + No comment provided by engineer. + + + duplicate message + duplikálódott üzenet + integrity error chat item + + + e2e encrypted + e2e titkosított + No comment provided by engineer. + + + enabled + engedélyezve + enabled status + + + enabled for contact + engedélyezve ismerős részére + enabled status + + + enabled for you + engedélyezve az ön számára + enabled status + + + encryption agreed + titkosítás egyeztetve + chat item text + + + encryption agreed for %@ + titkosítás elfogadva %@ számára + chat item text + + + encryption ok + titkosítás rendben + chat item text + + + encryption ok for %@ + titkosítás rendben vele: %@ + chat item text + + + encryption re-negotiation allowed + titkosítás újraegyeztetés engedélyezve + chat item text + + + encryption re-negotiation allowed for %@ + titkosítás újraegyeztetés engedélyezve vele: %@ + chat item text + + + encryption re-negotiation required + titkosítás újraegyeztetés szükséges + chat item text + + + encryption re-negotiation required for %@ + titkosítás újraegyeztetés szükséges %@ számára + chat item text + + + ended + befejeződött + No comment provided by engineer. + + + ended call %@ + %@ hívása befejeződött + call status + + + error + hiba + No comment provided by engineer. + + + event happened + esemény történt + No comment provided by engineer. + + + group deleted + a csoport törölve + No comment provided by engineer. + + + group profile updated + csoport profil frissítve + snd group event chat item + + + hours + óra + time unit + + + iOS Keychain is used to securely store passphrase - it allows receiving push notifications. + Az iOS kulcstár a jelmondat biztonságos tárolására szolgál - lehetővé teszi a push-értesítések fogadását. + No comment provided by engineer. + + + iOS Keychain will be used to securely store passphrase after you restart the app or change passphrase - it will allow receiving push notifications. + Az iOS kulcstár az alkalmazás újraindítása, vagy a jelmondat módosítása után a jelmondat biztonságos tárolására szolgál - lehetővé teszi a push-értesítések fogadását. + No comment provided by engineer. + + + incognito via contact address link + inkognitó a kapcsolattartási hivatkozáson keresztül + chat list item description + + + incognito via group link + inkognitó a csoportos hivatkozáson keresztül + chat list item description + + + incognito via one-time link + inkognitó egyszer használatos hivatkozáson keresztül + chat list item description + + + indirect (%d) + közvetett (%d) + connection level description + + + invalid chat + érvénytelen csevegés + invalid chat data + + + invalid chat data + érvénytelen csevegés adat + No comment provided by engineer. + + + invalid data + érvénytelen adat + invalid chat item + + + invitation to group %@ + meghívás a(z) %@ csoportba + group name + + + invited + meghívott + No comment provided by engineer. + + + invited %@ + %@ meghívott + rcv group event chat item + + + invited to connect + meghívott, hogy csatlakozzon + chat list item title + + + invited via your group link + meghívott a csoport hivatkozásán keresztül + rcv group event chat item + + + italic + dőlt + No comment provided by engineer. + + + join as %@ + csatlakozás mint %@ + No comment provided by engineer. + + + left + elhagyta + rcv group event chat item + + + marked deleted + töröltnek jelölve + marked deleted chat item preview text + + + member + tag + member role + + + member %1$@ changed to %2$@ + %1$@ tag megváltoztatta a nevét erre: %2$@ + profile update event chat item + + + connected + kapcsolódva + rcv group event chat item + + + message received + üzenet érkezett + notification + + + minutes + perc + time unit + + + missed call + nem fogadott hívás + call status + + + moderated + moderált + moderated chat item + + + moderated by %@ + %@ által moderálva + marked deleted chat item preview text + + + months + hónap + time unit + + + never + soha + No comment provided by engineer. + + + new message + új üzenet + notification + + + no + nem + pref value + + + no e2e encryption + nincs e2e titkosítás + No comment provided by engineer. + + + no text + nincs szöveg + copied message info in history + + + observer + megfigyelő + member role + + + off + ki + enabled status + group pref value + time to disappear + + + offered %@ + %@ ajánlotta + feature offered item + + + offered %1$@: %2$@ + ajánlotta %1$@: %2$@-kor + feature offered item + + + on + be + group pref value + + + owner + tulajdonos + member role + + + peer-to-peer + ponttól-pontig + No comment provided by engineer. + + + quantum resistant e2e encryption + chat item text + + + received answer… + fogadott válasz… + No comment provided by engineer. + + + received confirmation… + visszaigazolás fogadása… + No comment provided by engineer. + + + rejected call + elutasított hívás + call status + + + removed + eltávolítva + No comment provided by engineer. + + + removed %@ + %@ eltávolítva + rcv group event chat item + + + removed contact address + törölt csatlakozási cím + profile update event chat item + + + removed profile picture + törölt profilkép + profile update event chat item + + + removed you + eltávolítottak + rcv group event chat item + + + sec + mp + network option + + + seconds + másodperc + time unit + + + secret + titok + No comment provided by engineer. + + + security code changed + biztonsági kód megváltozott + chat item text + + + send direct message + közvetlen üzenet küldése + No comment provided by engineer. + + + set new contact address + új kapcsolattartási cím beállítása + profile update event chat item + + + set new profile picture + új profilkép beállítása + profile update event chat item + + + standard end-to-end encryption + chat item text + + + starting… + indítás… + No comment provided by engineer. + + + strike + áthúzott + No comment provided by engineer. + + + this contact + ez az ismerős + notification title + + + unblocked %@ + %@ feloldva + rcv group event chat item + + + unknown + ismeretlen + connection info + + + unknown status + ismeretlen státusz + No comment provided by engineer. + + + updated group profile + módosított csoport profil + rcv group event chat item + + + updated profile + frissített profil + profile update event chat item + + + v%@ + v%@ + No comment provided by engineer. + + + v%@ (%@) + v%@ (%@) + No comment provided by engineer. + + + via contact address link + ismerős azonosítójának hivatkozásán keresztül + chat list item description + + + via group link + csoport hivatkozáson keresztül + chat list item description + + + via one-time link + egyszer használatos hivatkozáson keresztül + chat list item description + + + via relay + átjátszón keresztül + No comment provided by engineer. + + + video call (not e2e encrypted) + videóhívás (nem e2e titkosított) + No comment provided by engineer. + + + waiting for answer… + várakozás válaszra… + No comment provided by engineer. + + + waiting for confirmation… + várakozás a visszaigazolásra… + No comment provided by engineer. + + + wants to connect to you! + kapcsolatba akar lépni önnel! + No comment provided by engineer. + + + weeks + hét + time unit + + + yes + igen + pref value + + + you are invited to group + meghívást kapott a csoportba + No comment provided by engineer. + + + you are observer + megfigyelő szerep + No comment provided by engineer. + + + you blocked %@ + blokkolta őt: %@ + snd group event chat item + + + you changed address + azonosítója megváltoztatva + chat item text + + + you changed address for %@ + %@ azonosítója megváltoztatva + chat item text + + + you changed role for yourself to %@ + saját szerepkör megváltoztatva erre: %@ + snd group event chat item + + + you changed role of %1$@ to %2$@ + megváltoztatta %1$@ szerepkörét erre: %@ + snd group event chat item + + + you left + elhagyta + snd group event chat item + + + you removed %@ + eltávolította őt: %@ + snd group event chat item + + + you shared one-time link + egyszer használatos hivatkozást osztott meg + chat list item description + + + you shared one-time link incognito + egyszer használatos hivatkozást osztott meg inkognitóban + chat list item description + + + you unblocked %@ + feloldotta %@ blokkolását + snd group event chat item + + + you: + ön: + No comment provided by engineer. + + + \~strike~ + \~áthúzott~ + No comment provided by engineer. + + +
+ +
+ +
+ + + SimpleX + SimpleX + Bundle name + + + SimpleX needs camera access to scan QR codes to connect to other users and for video calls. + A SimpleX-nek kamera-hozzáférésre van szüksége a QR-kódok beolvasásához, hogy csatlakozhasson más felhasználókhoz és videohívásokhoz. + Privacy - Camera Usage Description + + + SimpleX uses Face ID for local authentication + A SimpleX Face ID-t használ a helyi hitelesítéshez + Privacy - Face ID Usage Description + + + SimpleX uses local network access to allow using user chat profile via desktop app on the same network. + A SimpleX helyi hálózati hozzáférést használ, hogy lehetővé tegye a felhasználói csevegőprofil használatát számítógépen keresztül ugyanazon a hálózaton. + Privacy - Local Network Usage Description + + + SimpleX needs microphone access for audio and video calls, and to record voice messages. + A SimpleX-nek mikrofon-hozzáférésre van szüksége hang- és videohívásokhoz, valamint hangüzenetek rögzítéséhez. + Privacy - Microphone Usage Description + + + SimpleX needs access to Photo Library for saving captured and received media + A SimpleX-nek hozzáférésre van szüksége a Galériához a rögzített és fogadott média mentéséhez + Privacy - Photo Library Additions Usage Description + + +
+ +
+ +
+ + + SimpleX NSE + SimpleX NSE + Bundle display name + + + SimpleX NSE + SimpleX NSE + Bundle name + + + Copyright © 2022 SimpleX Chat. All rights reserved. + Copyright © 2022 SimpleX Chat. Minden jog fenntartva. + Copyright (human-readable) + + +
+
diff --git a/apps/ios/SimpleX Localizations/hu.xcloc/Source Contents/Shared/Assets.xcassets/AccentColor.colorset/Contents.json b/apps/ios/SimpleX Localizations/hu.xcloc/Source Contents/Shared/Assets.xcassets/AccentColor.colorset/Contents.json new file mode 100644 index 0000000000..aaa7f79bc8 --- /dev/null +++ b/apps/ios/SimpleX Localizations/hu.xcloc/Source Contents/Shared/Assets.xcassets/AccentColor.colorset/Contents.json @@ -0,0 +1,23 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0.000", + "alpha" : "1.000", + "blue" : "1.000", + "green" : "0.533" + } + }, + "idiom" : "universal" + } + ], + "properties" : { + "localizable" : true + }, + "info" : { + "version" : 1, + "author" : "xcode" + } +} \ No newline at end of file diff --git a/apps/ios/SimpleX Localizations/hu.xcloc/Source Contents/Shared/Assets.xcassets/Contents.json b/apps/ios/SimpleX Localizations/hu.xcloc/Source Contents/Shared/Assets.xcassets/Contents.json new file mode 100644 index 0000000000..73c00596a7 --- /dev/null +++ b/apps/ios/SimpleX Localizations/hu.xcloc/Source Contents/Shared/Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/apps/ios/SimpleX Localizations/hu.xcloc/Source Contents/SimpleX NSE/en.lproj/InfoPlist.strings b/apps/ios/SimpleX Localizations/hu.xcloc/Source Contents/SimpleX NSE/en.lproj/InfoPlist.strings new file mode 100644 index 0000000000..124ddbcc33 --- /dev/null +++ b/apps/ios/SimpleX Localizations/hu.xcloc/Source Contents/SimpleX NSE/en.lproj/InfoPlist.strings @@ -0,0 +1,6 @@ +/* Bundle display name */ +"CFBundleDisplayName" = "SimpleX NSE"; +/* Bundle name */ +"CFBundleName" = "SimpleX NSE"; +/* Copyright (human-readable) */ +"NSHumanReadableCopyright" = "Copyright © 2022 SimpleX Chat. All rights reserved."; diff --git a/apps/ios/SimpleX Localizations/hu.xcloc/Source Contents/en.lproj/Localizable.strings b/apps/ios/SimpleX Localizations/hu.xcloc/Source Contents/en.lproj/Localizable.strings new file mode 100644 index 0000000000..cf485752ea --- /dev/null +++ b/apps/ios/SimpleX Localizations/hu.xcloc/Source Contents/en.lproj/Localizable.strings @@ -0,0 +1,30 @@ +/* No comment provided by engineer. */ +"_italic_" = "\\_italic_"; + +/* No comment provided by engineer. */ +"**Add new contact**: to create your one-time QR Code for your contact." = "**Add new contact**: to create your one-time QR Code or link for your contact."; + +/* No comment provided by engineer. */ +"*bold*" = "\\*bold*"; + +/* No comment provided by engineer. */ +"`a + b`" = "\\`a + b`"; + +/* No comment provided by engineer. */ +"~strike~" = "\\~strike~"; + +/* call status */ +"connecting call" = "connecting call…"; + +/* No comment provided by engineer. */ +"Connecting server…" = "Connecting to server…"; + +/* No comment provided by engineer. */ +"Connecting server… (error: %@)" = "Connecting to server… (error: %@)"; + +/* rcv group event chat item */ +"member connected" = "connected"; + +/* No comment provided by engineer. */ +"No group!" = "Group not found!"; + diff --git a/apps/ios/SimpleX Localizations/hu.xcloc/Source Contents/en.lproj/SimpleX--iOS--InfoPlist.strings b/apps/ios/SimpleX Localizations/hu.xcloc/Source Contents/en.lproj/SimpleX--iOS--InfoPlist.strings new file mode 100644 index 0000000000..d34eb67fc7 --- /dev/null +++ b/apps/ios/SimpleX Localizations/hu.xcloc/Source Contents/en.lproj/SimpleX--iOS--InfoPlist.strings @@ -0,0 +1,12 @@ +/* Bundle name */ +"CFBundleName" = "SimpleX"; +/* Privacy - Camera Usage Description */ +"NSCameraUsageDescription" = "SimpleX needs camera access to scan QR codes to connect to other users and for video calls."; +/* Privacy - Face ID Usage Description */ +"NSFaceIDUsageDescription" = "SimpleX uses Face ID for local authentication"; +/* Privacy - Local Network Usage Description */ +"NSLocalNetworkUsageDescription" = "SimpleX uses local network access to allow using user chat profile via desktop app on the same network."; +/* Privacy - Microphone Usage Description */ +"NSMicrophoneUsageDescription" = "SimpleX needs microphone access for audio and video calls, and to record voice messages."; +/* Privacy - Photo Library Additions Usage Description */ +"NSPhotoLibraryAddUsageDescription" = "SimpleX needs access to Photo Library for saving captured and received media"; diff --git a/apps/ios/SimpleX Localizations/hu.xcloc/contents.json b/apps/ios/SimpleX Localizations/hu.xcloc/contents.json new file mode 100644 index 0000000000..bc788c3c10 --- /dev/null +++ b/apps/ios/SimpleX Localizations/hu.xcloc/contents.json @@ -0,0 +1,12 @@ +{ + "developmentRegion" : "en", + "project" : "SimpleX.xcodeproj", + "targetLocale" : "hu", + "toolInfo" : { + "toolBuildNumber" : "15A240d", + "toolID" : "com.apple.dt.xcode", + "toolName" : "Xcode", + "toolVersion" : "15.0" + }, + "version" : "1.0" +} \ No newline at end of file diff --git a/apps/ios/SimpleX Localizations/it.xcloc/Localized Contents/it.xliff b/apps/ios/SimpleX Localizations/it.xcloc/Localized Contents/it.xliff index eff9291b3a..30467415cf 100644 --- a/apps/ios/SimpleX Localizations/it.xcloc/Localized Contents/it.xliff +++ b/apps/ios/SimpleX Localizations/it.xcloc/Localized Contents/it.xliff @@ -107,6 +107,10 @@ %@ si è connesso/a No comment provided by engineer.
+ + %@ downloaded + No comment provided by engineer. + %@ is connected! %@ è connesso/a! @@ -127,6 +131,10 @@ Server %@ No comment provided by engineer. + + %@ uploaded + No comment provided by engineer. + %@ wants to connect! %@ si vuole connettere! @@ -342,6 +350,10 @@ **Il più privato**: non usare il server di notifica di SimpleX Chat, controlla i messaggi periodicamente in secondo piano (dipende da quanto spesso usi l'app). No comment provided by engineer. + + **Please note**: using the same database on two devices will break the decryption of messages from your connections, as a security protection. + No comment provided by engineer. + **Please note**: you will NOT be able to recover or change passphrase if you lose it. **Nota bene**: NON potrai recuperare o cambiare la password se la perdi. @@ -357,6 +369,10 @@ **Attenzione**: le notifiche push istantanee richiedono una password salvata nel portachiavi. No comment provided by engineer. + + **Warning**: the archive will be removed. + No comment provided by engineer. + **e2e encrypted** audio call Chiamata **crittografata e2e** @@ -613,6 +629,10 @@ Il cambio di indirizzo verrà interrotto. Verrà usato il vecchio indirizzo di ricezione. No comment provided by engineer. + + Admins can block a member for all. + No comment provided by engineer. + Admins can create the links to join groups. Gli amministratori possono creare i link per entrare nei gruppi. @@ -668,6 +688,10 @@ Tutti i tuoi contatti resteranno connessi. L'aggiornamento del profilo verrà inviato ai tuoi contatti. No comment provided by engineer. + + All your contacts, conversations and files will be securely encrypted and uploaded in chunks to configured XFTP relays. + No comment provided by engineer. + Allow Consenti @@ -793,6 +817,10 @@ Build dell'app: %@ No comment provided by engineer. + + App data migration + No comment provided by engineer. + App encrypts new local files (except videos). L'app cripta i nuovi file locali (eccetto i video). @@ -828,6 +856,18 @@ Aspetto No comment provided by engineer. + + Apply + No comment provided by engineer. + + + Archive and upload + No comment provided by engineer. + + + Archiving database + No comment provided by engineer. + Attach Allega @@ -1018,6 +1058,10 @@ Annulla No comment provided by engineer. + + Cancel migration + No comment provided by engineer. + Cannot access keychain to save database password Impossibile accedere al portachiavi per salvare la password del database @@ -1119,6 +1163,10 @@ La chat è ferma. Se hai già usato questo database su un altro dispositivo, dovresti trasferirlo prima di avviare la chat. No comment provided by engineer. + + Chat migrated! + No comment provided by engineer. + Chat preferences Preferenze della chat @@ -1139,6 +1187,10 @@ Interfaccia cinese e spagnola No comment provided by engineer. + + Choose _Migrate from another device_ on the new device and scan QR code. + No comment provided by engineer. + Choose file Scegli file @@ -1209,6 +1261,10 @@ Conferma aggiornamenti database No comment provided by engineer. + + Confirm network settings + No comment provided by engineer. + Confirm new passphrase… Conferma nuova password… @@ -1219,6 +1275,14 @@ Conferma password No comment provided by engineer. + + Confirm that you remember database passphrase to migrate it. + No comment provided by engineer. + + + Confirm upload + No comment provided by engineer. + Connect Connetti @@ -1478,6 +1542,10 @@ Questo è il tuo link una tantum! Creato il %@ No comment provided by engineer. + + Creating archive link + No comment provided by engineer. + Creating link… Creazione link… @@ -1698,6 +1766,10 @@ Non è reversibile! Elimina database No comment provided by engineer. + + Delete database from this device + No comment provided by engineer. + Delete file Elimina file @@ -1988,11 +2060,23 @@ Non è reversibile! Esegui downgrade e apri chat No comment provided by engineer. + + Download failed + No comment provided by engineer. + Download file Scarica file server test step + + Downloading archive + No comment provided by engineer. + + + Downloading link details + No comment provided by engineer. + Duplicate display name! Nome da mostrare doppio! @@ -2048,6 +2132,10 @@ Non è reversibile! Attiva per tutti No comment provided by engineer. + + Enable in direct chats (BETA)! + No comment provided by engineer. + Enable instant notifications? Attivare le notifiche istantanee? @@ -2163,6 +2251,10 @@ Non è reversibile! Inserisci il nome del gruppo… No comment provided by engineer. + + Enter passphrase + No comment provided by engineer. + Enter passphrase… Inserisci la password… @@ -2223,6 +2315,10 @@ Non è reversibile! Errore di aggiunta membro/i No comment provided by engineer. + + Error allowing contact PQ encryption + No comment provided by engineer. + Error changing address Errore nella modifica dell'indirizzo @@ -2313,6 +2409,10 @@ Non è reversibile! Errore nell'eliminazione del profilo utente No comment provided by engineer. + + Error downloading the archive + No comment provided by engineer. + Error enabling delivery receipts! Errore nell'attivazione delle ricevute di consegna! @@ -2388,6 +2488,10 @@ Non è reversibile! Errore nel salvataggio della password nel portachiavi No comment provided by engineer. + + Error saving settings + when migrating + Error saving user password Errore nel salvataggio della password utente @@ -2458,6 +2562,14 @@ Non è reversibile! Errore nell'aggiornamento della privacy dell'utente No comment provided by engineer. + + Error uploading the archive + No comment provided by engineer. + + + Error verifying passphrase: + No comment provided by engineer. + Error: Errore: @@ -2508,6 +2620,10 @@ Non è reversibile! Archivio database esportato. No comment provided by engineer. + + Exported file doesn't exist + No comment provided by engineer. + Exporting database archive… Esportazione archivio database… @@ -2578,6 +2694,14 @@ Non è reversibile! Filtra le chat non lette e preferite. No comment provided by engineer. + + Finalize migration + No comment provided by engineer. + + + Finalize migration on another device. + No comment provided by engineer. + Finally, we have them! 🚀 Finalmente le abbiamo! 🚀 @@ -2868,6 +2992,10 @@ Non è reversibile! Come usare i tuoi server No comment provided by engineer. + + Hungarian interface + No comment provided by engineer. + ICE servers (one per line) Server ICE (uno per riga) @@ -2933,6 +3061,14 @@ Non è reversibile! Importa database No comment provided by engineer. + + Import failed + No comment provided by engineer. + + + Importing archive + No comment provided by engineer. + Improved message delivery Consegna dei messaggi migliorata @@ -2948,6 +3084,10 @@ Non è reversibile! Configurazione del server migliorata No comment provided by engineer. + + In order to continue, chat should be stopped. + No comment provided by engineer. + In reply to In risposta a @@ -3060,6 +3200,10 @@ Non è reversibile! Link non valido No comment provided by engineer. + + Invalid migration confirmation + No comment provided by engineer. + Invalid name! Nome non valido! @@ -3428,6 +3572,10 @@ Questo è il tuo link per il gruppo %@! Testo del messaggio No comment provided by engineer. + + Message too large + No comment provided by engineer. + Messages Messaggi @@ -3443,11 +3591,47 @@ Questo è il tuo link per il gruppo %@! I messaggi da %@ verranno mostrati! No comment provided by engineer. + + Messages, files and calls are protected by **end-to-end encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Messages, files and calls are protected by **quantum resistant e2e encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Migrate device + No comment provided by engineer. + + + Migrate from another device + No comment provided by engineer. + + + Migrate here + No comment provided by engineer. + + + Migrate to another device + No comment provided by engineer. + + + Migrate to another device via QR code. + No comment provided by engineer. + + + Migrating + No comment provided by engineer. + Migrating database archive… Migrazione archivio del database… No comment provided by engineer. + + Migration complete + No comment provided by engineer. + Migration error: Errore di migrazione: @@ -3807,6 +3991,10 @@ Questo è il tuo link per il gruppo %@! Apri gruppo No comment provided by engineer. + + Open migration to another device + authentication reason + Open user profiles Apri i profili utente @@ -3822,11 +4010,19 @@ Questo è il tuo link per il gruppo %@! Apertura dell'app… No comment provided by engineer. + + Or paste archive link + No comment provided by engineer. + Or scan QR code O scansiona il codice QR No comment provided by engineer. + + Or securely share this file link + No comment provided by engineer. + Or show this code O mostra questo codice @@ -3912,6 +4108,10 @@ Questo è il tuo link per il gruppo %@! Errore di decifrazione message decrypt error item + + Picture-in-picture calls + No comment provided by engineer. + Please ask your contact to enable sending voice messages. Chiedi al tuo contatto di attivare l'invio dei messaggi vocali. @@ -3932,6 +4132,10 @@ Questo è il tuo link per il gruppo %@! Controlla le preferenze tue e del tuo contatto. No comment provided by engineer. + + Please confirm that network settings are correct for this device. + No comment provided by engineer. + Please contact developers. Error: %@ @@ -3989,6 +4193,10 @@ Errore: %@ Probabilmente l'impronta del certificato nell'indirizzo del server è sbagliata server test error + + Post-quantum E2EE + No comment provided by engineer. + Preserve the last message draft, with attachments. Conserva la bozza dell'ultimo messaggio, con gli allegati. @@ -4124,6 +4332,14 @@ Errore: %@ Notifiche push No comment provided by engineer. + + Push server + No comment provided by engineer. + + + Quantum resistant encryption + No comment provided by engineer. + Rate the app Valuta l'app @@ -4309,11 +4525,23 @@ Errore: %@ Ripetere la richiesta di connessione? No comment provided by engineer. + + Repeat download + No comment provided by engineer. + + + Repeat import + No comment provided by engineer. + Repeat join request? Ripetere la richiesta di ingresso? No comment provided by engineer. + + Repeat upload + No comment provided by engineer. + Reply Rispondi @@ -4414,6 +4642,10 @@ Errore: %@ Server SMP No comment provided by engineer. + + Safer groups + No comment provided by engineer. + Save Salva @@ -4779,6 +5011,10 @@ Errore: %@ Imposta codice No comment provided by engineer. + + Set passphrase + No comment provided by engineer. + Set passphrase to export Imposta la password per esportare @@ -4834,6 +5070,10 @@ Errore: %@ Condividi con i contatti No comment provided by engineer. + + Show QR code + No comment provided by engineer. + Show calls in phone history Mostra le chiamate nella cronologia del telefono @@ -4974,6 +5214,10 @@ Errore: %@ Ferma SimpleX authentication reason + + Stop chat + No comment provided by engineer. + Stop chat to enable database actions Ferma la chat per attivare le azioni del database @@ -5014,6 +5258,10 @@ Errore: %@ Smettere di condividere l'indirizzo? No comment provided by engineer. + + Stopping chat + No comment provided by engineer. + Submit Invia @@ -5261,6 +5509,14 @@ Può accadere a causa di qualche bug o quando la connessione è compromessa.Questa azione non può essere annullata: il tuo profilo, i contatti, i messaggi e i file andranno persi in modo irreversibile. No comment provided by engineer. + + This chat is protected by end-to-end encryption. + E2EE info chat item + + + This chat is protected by quantum resistant end-to-end encryption. + E2EE info chat item + This device name Il nome di questo dispositivo @@ -5555,11 +5811,19 @@ Per connetterti, chiedi al tuo contatto di creare un altro link di connessione e Aggiorna e apri chat No comment provided by engineer. + + Upload failed + No comment provided by engineer. + Upload file Invia file server test step + + Uploading archive + No comment provided by engineer. + Use .onion hosts Usa gli host .onion @@ -5610,6 +5874,10 @@ Per connetterti, chiedi al tuo contatto di creare un altro link di connessione e Usa il server No comment provided by engineer. + + Use the app while in the call. + No comment provided by engineer. + User profile Profilo utente @@ -5645,6 +5913,14 @@ Per connetterti, chiedi al tuo contatto di creare un altro link di connessione e Verifica le connessioni No comment provided by engineer. + + Verify database passphrase + No comment provided by engineer. + + + Verify passphrase + No comment provided by engineer. + Verify security code Verifica codice di sicurezza @@ -5735,6 +6011,10 @@ Per connetterti, chiedi al tuo contatto di creare un altro link di connessione e In attesa del video No comment provided by engineer. + + Warning: starting chat on multiple devices is not supported and will cause message delivery failures + No comment provided by engineer. + Warning: you may lose some data! Attenzione: potresti perdere alcuni dati! @@ -5755,6 +6035,10 @@ Per connetterti, chiedi al tuo contatto di creare un altro link di connessione e Messaggio di benvenuto No comment provided by engineer. + + Welcome message is too long + No comment provided by engineer. + What's new Novità @@ -5810,6 +6094,10 @@ Per connetterti, chiedi al tuo contatto di creare un altro link di connessione e Tu No comment provided by engineer. + + You **must not** use the same database on two devices. + No comment provided by engineer. + You accepted connection Hai accettato la connessione @@ -5897,6 +6185,10 @@ Ripetere la richiesta di ingresso? Puoi attivarle più tardi nelle impostazioni di privacy e sicurezza dell'app. No comment provided by engineer. + + You can give another try. + No comment provided by engineer. + You can hide or mute a user profile - swipe it to the right. Puoi nascondere o silenziare un profilo utente - scorrilo verso destra. @@ -6173,7 +6465,7 @@ Puoi annullare questa connessione e rimuovere il contatto (e riprovare più tard Your profile **%@** will be shared. - Il tuo profilo **%@** verrà condiviso. + Verrà condiviso il tuo profilo **%@**. No comment provided by engineer. @@ -6291,7 +6583,7 @@ I server di SimpleX non possono vedere il tuo profilo. blocked bloccato - No comment provided by engineer. + marked deleted chat item preview text blocked %@ @@ -6301,7 +6593,7 @@ I server di SimpleX non possono vedere il tuo profilo. blocked by admin bloccato dall'amministratore - blocked chat item + marked deleted chat item preview text bold @@ -6731,7 +7023,7 @@ I server di SimpleX non possono vedere il tuo profilo. moderated by %@ moderato da %@ - No comment provided by engineer. + marked deleted chat item preview text months @@ -6800,6 +7092,10 @@ I server di SimpleX non possono vedere il tuo profilo. peer-to-peer No comment provided by engineer. + + quantum resistant e2e encryption + chat item text + received answer… risposta ricevuta… @@ -6875,6 +7171,10 @@ I server di SimpleX non possono vedere il tuo profilo. impostata nuova immagine del profilo profile update event chat item + + standard end-to-end encryption + chat item text + starting… avvio… diff --git a/apps/ios/SimpleX Localizations/ja.xcloc/Localized Contents/ja.xliff b/apps/ios/SimpleX Localizations/ja.xcloc/Localized Contents/ja.xliff index c9f93b458e..e10c39bbc3 100644 --- a/apps/ios/SimpleX Localizations/ja.xcloc/Localized Contents/ja.xliff +++ b/apps/ios/SimpleX Localizations/ja.xcloc/Localized Contents/ja.xliff @@ -89,6 +89,7 @@ %@ and %@ + %@ と %@ No comment provided by engineer. @@ -106,6 +107,10 @@ %@ 接続中 No comment provided by engineer. + + %@ downloaded + No comment provided by engineer. + %@ is connected! %@ 接続中! @@ -126,6 +131,10 @@ %@ サーバー No comment provided by engineer. + + %@ uploaded + No comment provided by engineer. + %@ wants to connect! %@ が接続を希望しています! @@ -333,6 +342,10 @@ **最もプライベート**: SimpleX Chat 通知サーバーを使用せず、バックグラウンドで定期的にメッセージをチェックします (アプリの使用頻度によって異なります)。 No comment provided by engineer. + + **Please note**: using the same database on two devices will break the decryption of messages from your connections, as a security protection. + No comment provided by engineer. + **Please note**: you will NOT be able to recover or change passphrase if you lose it. **注意**: パスフレーズを紛失すると、パスフレーズを復元または変更できなくなります。 @@ -348,6 +361,10 @@ **警告**: 即時の プッシュ通知には、キーチェーンに保存されたパスフレーズが必要です。 No comment provided by engineer. + + **Warning**: the archive will be removed. + No comment provided by engineer. + **e2e encrypted** audio call **e2e 暗号化**音声通話 @@ -596,6 +613,10 @@ アドレス変更は中止されます。古い受信アドレスが使用されます。 No comment provided by engineer. + + Admins can block a member for all. + No comment provided by engineer. + Admins can create the links to join groups. 管理者はグループの参加リンクを生成できます。 @@ -649,6 +670,10 @@ すべての連絡先は維持されます。連絡先に更新されたプロフィールを送信します。 No comment provided by engineer. + + All your contacts, conversations and files will be securely encrypted and uploaded in chunks to configured XFTP relays. + No comment provided by engineer. + Allow 許可 @@ -772,6 +797,10 @@ アプリのビルド: %@ No comment provided by engineer. + + App data migration + No comment provided by engineer. + App encrypts new local files (except videos). アプリは新しいローカルファイル(ビデオを除く)を暗号化します。 @@ -807,6 +836,18 @@ 見た目 No comment provided by engineer. + + Apply + No comment provided by engineer. + + + Archive and upload + No comment provided by engineer. + + + Archiving database + No comment provided by engineer. + Attach 添付する @@ -987,6 +1028,10 @@ 中止 No comment provided by engineer. + + Cancel migration + No comment provided by engineer. + Cannot access keychain to save database password データベースのパスワードを保存するためのキーチェーンにアクセスできません @@ -1087,6 +1132,10 @@ Chat is stopped. If you already used this database on another device, you should transfer it back before starting chat. No comment provided by engineer. + + Chat migrated! + No comment provided by engineer. + Chat preferences チャット設定 @@ -1107,6 +1156,10 @@ 中国語とスペイン語UI No comment provided by engineer. + + Choose _Migrate from another device_ on the new device and scan QR code. + No comment provided by engineer. + Choose file ファイルを選択 @@ -1176,6 +1229,10 @@ データベースのアップグレードを確認 No comment provided by engineer. + + Confirm network settings + No comment provided by engineer. + Confirm new passphrase… 新しいパスフレーズを確認… @@ -1186,6 +1243,14 @@ パスワードを確認 No comment provided by engineer. + + Confirm that you remember database passphrase to migrate it. + No comment provided by engineer. + + + Confirm upload + No comment provided by engineer. + Connect 接続 @@ -1426,6 +1491,10 @@ This is your own one-time link! %@ によって作成されました No comment provided by engineer. + + Creating archive link + No comment provided by engineer. + Creating link… No comment provided by engineer. @@ -1641,6 +1710,10 @@ This cannot be undone! データベースを削除 No comment provided by engineer. + + Delete database from this device + No comment provided by engineer. + Delete file ファイルの削除 @@ -1925,11 +1998,23 @@ This cannot be undone! ダウングレードしてチャットを開く No comment provided by engineer. + + Download failed + No comment provided by engineer. + Download file ファイルをダウンロード server test step + + Downloading archive + No comment provided by engineer. + + + Downloading link details + No comment provided by engineer. + Duplicate display name! 表示の名前が重複してます! @@ -1984,6 +2069,10 @@ This cannot be undone! すべて有効 No comment provided by engineer. + + Enable in direct chats (BETA)! + No comment provided by engineer. + Enable instant notifications? 即時通知を有効にしますか? @@ -2095,6 +2184,10 @@ This cannot be undone! Enter group name… No comment provided by engineer. + + Enter passphrase + No comment provided by engineer. + Enter passphrase… 暗証フレーズを入力… @@ -2153,6 +2246,10 @@ This cannot be undone! メンバー追加にエラー発生 No comment provided by engineer. + + Error allowing contact PQ encryption + No comment provided by engineer. + Error changing address アドレス変更にエラー発生 @@ -2242,6 +2339,10 @@ This cannot be undone! ユーザのプロフィール削除にエラー発生 No comment provided by engineer. + + Error downloading the archive + No comment provided by engineer. + Error enabling delivery receipts! No comment provided by engineer. @@ -2315,6 +2416,10 @@ This cannot be undone! キーチェーンにパスフレーズを保存にエラー発生 No comment provided by engineer. + + Error saving settings + when migrating + Error saving user password ユーザーパスワード保存エラー @@ -2383,6 +2488,14 @@ This cannot be undone! ユーザープライバシーの更新のエラー No comment provided by engineer. + + Error uploading the archive + No comment provided by engineer. + + + Error verifying passphrase: + No comment provided by engineer. + Error: エラー : @@ -2432,6 +2545,10 @@ This cannot be undone! データベースのアーカイブをエクスポートします。 No comment provided by engineer. + + Exported file doesn't exist + No comment provided by engineer. + Exporting database archive… データベース アーカイブをエクスポートしています… @@ -2501,6 +2618,14 @@ This cannot be undone! 未読とお気に入りをフィルターします。 No comment provided by engineer. + + Finalize migration + No comment provided by engineer. + + + Finalize migration on another device. + No comment provided by engineer. + Finally, we have them! 🚀 ついに、私たちはそれらを手に入れました! 🚀 @@ -2786,6 +2911,10 @@ This cannot be undone! 自分のサーバの使い方 No comment provided by engineer. + + Hungarian interface + No comment provided by engineer. + ICE servers (one per line) ICEサーバ (1行に1サーバ) @@ -2851,6 +2980,14 @@ This cannot be undone! データベースを読み込む No comment provided by engineer. + + Import failed + No comment provided by engineer. + + + Importing archive + No comment provided by engineer. + Improved message delivery No comment provided by engineer. @@ -2865,6 +3002,10 @@ This cannot be undone! サーバ設定の向上 No comment provided by engineer. + + In order to continue, chat should be stopped. + No comment provided by engineer. + In reply to 返信先 @@ -2972,6 +3113,10 @@ This cannot be undone! Invalid link No comment provided by engineer. + + Invalid migration confirmation + No comment provided by engineer. + Invalid name! No comment provided by engineer. @@ -3326,6 +3471,10 @@ This is your link for group %@! メッセージ内容 No comment provided by engineer. + + Message too large + No comment provided by engineer. + Messages メッセージ @@ -3340,11 +3489,47 @@ This is your link for group %@! Messages from %@ will be shown! No comment provided by engineer. + + Messages, files and calls are protected by **end-to-end encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Messages, files and calls are protected by **quantum resistant e2e encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Migrate device + No comment provided by engineer. + + + Migrate from another device + No comment provided by engineer. + + + Migrate here + No comment provided by engineer. + + + Migrate to another device + No comment provided by engineer. + + + Migrate to another device via QR code. + No comment provided by engineer. + + + Migrating + No comment provided by engineer. + Migrating database archive… データベースのアーカイブを移行しています… No comment provided by engineer. + + Migration complete + No comment provided by engineer. + Migration error: 移行エラー: @@ -3700,6 +3885,10 @@ This is your link for group %@! Open group No comment provided by engineer. + + Open migration to another device + authentication reason + Open user profiles ユーザープロフィールを開く @@ -3714,10 +3903,18 @@ This is your link for group %@! Opening app… No comment provided by engineer. + + Or paste archive link + No comment provided by engineer. + Or scan QR code No comment provided by engineer. + + Or securely share this file link + No comment provided by engineer. + Or show this code No comment provided by engineer. @@ -3798,6 +3995,10 @@ This is your link for group %@! 永続的な復号化エラー message decrypt error item + + Picture-in-picture calls + No comment provided by engineer. + Please ask your contact to enable sending voice messages. 音声メッセージを有効にするように連絡相手に要求してください。 @@ -3818,6 +4019,10 @@ This is your link for group %@! あなたと連絡先の設定を確認してください。 No comment provided by engineer. + + Please confirm that network settings are correct for this device. + No comment provided by engineer. + Please contact developers. Error: %@ @@ -3873,6 +4078,10 @@ Error: %@ サーバアドレスの証明証IDが正しくないかもしれません server test error + + Post-quantum E2EE + No comment provided by engineer. + Preserve the last message draft, with attachments. 添付を含めて、下書きを保存する。 @@ -4005,6 +4214,14 @@ Error: %@ プッシュ通知 No comment provided by engineer. + + Push server + No comment provided by engineer. + + + Quantum resistant encryption + No comment provided by engineer. + Rate the app アプリを評価 @@ -4186,10 +4403,22 @@ Error: %@ Repeat connection request? No comment provided by engineer. + + Repeat download + No comment provided by engineer. + + + Repeat import + No comment provided by engineer. + Repeat join request? No comment provided by engineer. + + Repeat upload + No comment provided by engineer. + Reply 返信 @@ -4289,6 +4518,10 @@ Error: %@ SMPサーバ No comment provided by engineer. + + Safer groups + No comment provided by engineer. + Save 保存 @@ -4640,6 +4873,10 @@ Error: %@ パスコードを設定する No comment provided by engineer. + + Set passphrase + No comment provided by engineer. + Set passphrase to export 暗証フレーズを設定してからエクスポート @@ -4694,6 +4931,10 @@ Error: %@ 連絡先と共有する No comment provided by engineer. + + Show QR code + No comment provided by engineer. + Show calls in phone history 通話履歴を表示 @@ -4833,6 +5074,10 @@ Error: %@ SimpleX を停止 authentication reason + + Stop chat + No comment provided by engineer. + Stop chat to enable database actions チャットを停止してデータベースアクションを有効にします @@ -4873,6 +5118,10 @@ Error: %@ アドレスの共有を停止しますか? No comment provided by engineer. + + Stopping chat + No comment provided by engineer. + Submit 送信 @@ -5115,6 +5364,14 @@ It can happen because of some bug or when the connection is compromised.あなたのプロフィール、連絡先、メッセージ、ファイルが完全削除されます (※元に戻せません※)。 No comment provided by engineer. + + This chat is protected by end-to-end encryption. + E2EE info chat item + + + This chat is protected by quantum resistant end-to-end encryption. + E2EE info chat item + This device name No comment provided by engineer. @@ -5393,11 +5650,19 @@ To connect, please ask your contact to create another connection link and check アップグレードしてチャットを開く No comment provided by engineer. + + Upload failed + No comment provided by engineer. + Upload file ファイルをアップロードする server test step + + Uploading archive + No comment provided by engineer. + Use .onion hosts .onionホストを使う @@ -5446,6 +5711,10 @@ To connect, please ask your contact to create another connection link and check サーバを使う No comment provided by engineer. + + Use the app while in the call. + No comment provided by engineer. + User profile ユーザープロフィール @@ -5478,6 +5747,14 @@ To connect, please ask your contact to create another connection link and check Verify connections No comment provided by engineer. + + Verify database passphrase + No comment provided by engineer. + + + Verify passphrase + No comment provided by engineer. + Verify security code セキュリティコードを確認 @@ -5565,6 +5842,10 @@ To connect, please ask your contact to create another connection link and check ビデオ待機中 No comment provided by engineer. + + Warning: starting chat on multiple devices is not supported and will cause message delivery failures + No comment provided by engineer. + Warning: you may lose some data! 警告: 一部のデータが失われる可能性があります! @@ -5585,6 +5866,10 @@ To connect, please ask your contact to create another connection link and check ウェルカムメッセージ No comment provided by engineer. + + Welcome message is too long + No comment provided by engineer. + What's new 新着情報 @@ -5638,6 +5923,10 @@ To connect, please ask your contact to create another connection link and check あなた No comment provided by engineer. + + You **must not** use the same database on two devices. + No comment provided by engineer. + You accepted connection 接続を承認しました @@ -5717,6 +6006,10 @@ Repeat join request? あとでアプリのプライバシーとセキュリティの設定から有効にすることができます。 No comment provided by engineer. + + You can give another try. + No comment provided by engineer. + You can hide or mute a user profile - swipe it to the right. ユーザープロファイルを右にスワイプすると、非表示またはミュートにすることができます。 @@ -6100,7 +6393,7 @@ SimpleX サーバーはあなたのプロファイルを参照できません。 blocked - No comment provided by engineer. + marked deleted chat item preview text blocked %@ @@ -6108,7 +6401,7 @@ SimpleX サーバーはあなたのプロファイルを参照できません。 blocked by admin - blocked chat item + marked deleted chat item preview text bold @@ -6534,7 +6827,7 @@ SimpleX サーバーはあなたのプロファイルを参照できません。 moderated by %@ %@ によってモデレートされた - No comment provided by engineer. + marked deleted chat item preview text months @@ -6603,6 +6896,10 @@ SimpleX サーバーはあなたのプロファイルを参照できません。 P2P No comment provided by engineer. + + quantum resistant e2e encryption + chat item text + received answer… 回答を受け取りました… @@ -6673,6 +6970,10 @@ SimpleX サーバーはあなたのプロファイルを参照できません。 set new profile picture profile update event chat item + + standard end-to-end encryption + chat item text + starting… 接続中… diff --git a/apps/ios/SimpleX Localizations/nl.xcloc/Localized Contents/nl.xliff b/apps/ios/SimpleX Localizations/nl.xcloc/Localized Contents/nl.xliff index 7afd35264d..105552ec84 100644 --- a/apps/ios/SimpleX Localizations/nl.xcloc/Localized Contents/nl.xliff +++ b/apps/ios/SimpleX Localizations/nl.xcloc/Localized Contents/nl.xliff @@ -107,6 +107,10 @@ %@ verbonden No comment provided by engineer. + + %@ downloaded + No comment provided by engineer. + %@ is connected! %@ is verbonden! @@ -127,6 +131,10 @@ %@ servers No comment provided by engineer. + + %@ uploaded + No comment provided by engineer. + %@ wants to connect! %@ wil verbinding maken! @@ -342,6 +350,10 @@ **Meest privé**: gebruik geen SimpleX Chat-notificatie server, controleer berichten regelmatig op de achtergrond (afhankelijk van hoe vaak u de app gebruikt). No comment provided by engineer. + + **Please note**: using the same database on two devices will break the decryption of messages from your connections, as a security protection. + No comment provided by engineer. + **Please note**: you will NOT be able to recover or change passphrase if you lose it. **Let op**: u kunt het wachtwoord NIET herstellen of wijzigen als u het kwijtraakt. @@ -357,6 +369,10 @@ **Waarschuwing**: voor directe push meldingen is een wachtwoord vereist dat is opgeslagen in de Keychain. No comment provided by engineer. + + **Warning**: the archive will be removed. + No comment provided by engineer. + **e2e encrypted** audio call **e2e versleuteld** audio gesprek @@ -613,6 +629,10 @@ Adres wijziging wordt afgebroken. Het oude ontvangstadres wordt gebruikt. No comment provided by engineer. + + Admins can block a member for all. + No comment provided by engineer. + Admins can create the links to join groups. Beheerders kunnen de uitnodiging links naar groepen aanmaken. @@ -668,6 +688,10 @@ Al uw contacten blijven verbonden. Profiel update wordt naar uw contacten verzonden. No comment provided by engineer. + + All your contacts, conversations and files will be securely encrypted and uploaded in chunks to configured XFTP relays. + No comment provided by engineer. + Allow Toestaan @@ -793,6 +817,10 @@ App build: %@ No comment provided by engineer. + + App data migration + No comment provided by engineer. + App encrypts new local files (except videos). App versleutelt nieuwe lokale bestanden (behalve video's). @@ -828,6 +856,18 @@ Uiterlijk No comment provided by engineer. + + Apply + No comment provided by engineer. + + + Archive and upload + No comment provided by engineer. + + + Archiving database + No comment provided by engineer. + Attach Bijvoegen @@ -1018,6 +1058,10 @@ Annuleren No comment provided by engineer. + + Cancel migration + No comment provided by engineer. + Cannot access keychain to save database password Geen toegang tot de keychain om database wachtwoord op te slaan @@ -1119,6 +1163,10 @@ Chat is gestopt. Als je deze database al op een ander apparaat hebt gebruikt, moet je deze terugzetten voordat je met chatten begint. No comment provided by engineer. + + Chat migrated! + No comment provided by engineer. + Chat preferences Gesprek voorkeuren @@ -1139,6 +1187,10 @@ Chinese en Spaanse interface No comment provided by engineer. + + Choose _Migrate from another device_ on the new device and scan QR code. + No comment provided by engineer. + Choose file Kies bestand @@ -1209,6 +1261,10 @@ Bevestig database upgrades No comment provided by engineer. + + Confirm network settings + No comment provided by engineer. + Confirm new passphrase… Bevestig nieuw wachtwoord… @@ -1219,6 +1275,14 @@ Bevestig wachtwoord No comment provided by engineer. + + Confirm that you remember database passphrase to migrate it. + No comment provided by engineer. + + + Confirm upload + No comment provided by engineer. + Connect Verbind @@ -1478,6 +1542,10 @@ Dit is uw eigen eenmalige link! Gemaakt op %@ No comment provided by engineer. + + Creating archive link + No comment provided by engineer. + Creating link… Link maken… @@ -1698,6 +1766,10 @@ Dit kan niet ongedaan gemaakt worden! Database verwijderen No comment provided by engineer. + + Delete database from this device + No comment provided by engineer. + Delete file Verwijder bestand @@ -1988,11 +2060,23 @@ Dit kan niet ongedaan gemaakt worden! Downgraden en chat openen No comment provided by engineer. + + Download failed + No comment provided by engineer. + Download file Download bestand server test step + + Downloading archive + No comment provided by engineer. + + + Downloading link details + No comment provided by engineer. + Duplicate display name! Dubbele weergavenaam! @@ -2048,6 +2132,10 @@ Dit kan niet ongedaan gemaakt worden! Inschakelen voor iedereen No comment provided by engineer. + + Enable in direct chats (BETA)! + No comment provided by engineer. + Enable instant notifications? Onmiddellijke meldingen inschakelen? @@ -2163,6 +2251,10 @@ Dit kan niet ongedaan gemaakt worden! Groep naam invoeren… No comment provided by engineer. + + Enter passphrase + No comment provided by engineer. + Enter passphrase… Voer wachtwoord in… @@ -2223,6 +2315,10 @@ Dit kan niet ongedaan gemaakt worden! Fout bij het toevoegen van leden No comment provided by engineer. + + Error allowing contact PQ encryption + No comment provided by engineer. + Error changing address Fout bij wijzigen van adres @@ -2313,6 +2409,10 @@ Dit kan niet ongedaan gemaakt worden! Fout bij het verwijderen van gebruikers profiel No comment provided by engineer. + + Error downloading the archive + No comment provided by engineer. + Error enabling delivery receipts! Fout bij het inschakelen van ontvangst bevestiging! @@ -2388,6 +2488,10 @@ Dit kan niet ongedaan gemaakt worden! Fout bij opslaan van wachtwoord in de keychain No comment provided by engineer. + + Error saving settings + when migrating + Error saving user password Fout bij opslaan gebruikers wachtwoord @@ -2458,6 +2562,14 @@ Dit kan niet ongedaan gemaakt worden! Fout bij updaten van gebruikers privacy No comment provided by engineer. + + Error uploading the archive + No comment provided by engineer. + + + Error verifying passphrase: + No comment provided by engineer. + Error: Fout: @@ -2508,6 +2620,10 @@ Dit kan niet ongedaan gemaakt worden! Geëxporteerd database archief. No comment provided by engineer. + + Exported file doesn't exist + No comment provided by engineer. + Exporting database archive… Database archief exporteren… @@ -2578,6 +2694,14 @@ Dit kan niet ongedaan gemaakt worden! Filter ongelezen en favoriete chats. No comment provided by engineer. + + Finalize migration + No comment provided by engineer. + + + Finalize migration on another device. + No comment provided by engineer. + Finally, we have them! 🚀 Eindelijk, we hebben ze! 🚀 @@ -2868,6 +2992,10 @@ Dit kan niet ongedaan gemaakt worden! Hoe u uw servers gebruikt No comment provided by engineer. + + Hungarian interface + No comment provided by engineer. + ICE servers (one per line) ICE servers (één per lijn) @@ -2933,6 +3061,14 @@ Dit kan niet ongedaan gemaakt worden! Database importeren No comment provided by engineer. + + Import failed + No comment provided by engineer. + + + Importing archive + No comment provided by engineer. + Improved message delivery Verbeterde berichtbezorging @@ -2948,6 +3084,10 @@ Dit kan niet ongedaan gemaakt worden! Verbeterde serverconfiguratie No comment provided by engineer. + + In order to continue, chat should be stopped. + No comment provided by engineer. + In reply to In antwoord op @@ -3060,6 +3200,10 @@ Dit kan niet ongedaan gemaakt worden! Ongeldige link No comment provided by engineer. + + Invalid migration confirmation + No comment provided by engineer. + Invalid name! Ongeldige naam! @@ -3428,6 +3572,10 @@ Dit is jouw link voor groep %@! Bericht tekst No comment provided by engineer. + + Message too large + No comment provided by engineer. + Messages Berichten @@ -3443,11 +3591,47 @@ Dit is jouw link voor groep %@! Berichten van %@ worden getoond! No comment provided by engineer. + + Messages, files and calls are protected by **end-to-end encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Messages, files and calls are protected by **quantum resistant e2e encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Migrate device + No comment provided by engineer. + + + Migrate from another device + No comment provided by engineer. + + + Migrate here + No comment provided by engineer. + + + Migrate to another device + No comment provided by engineer. + + + Migrate to another device via QR code. + No comment provided by engineer. + + + Migrating + No comment provided by engineer. + Migrating database archive… Database archief migreren… No comment provided by engineer. + + Migration complete + No comment provided by engineer. + Migration error: Migratiefout: @@ -3807,6 +3991,10 @@ Dit is jouw link voor groep %@! Open groep No comment provided by engineer. + + Open migration to another device + authentication reason + Open user profiles Gebruikers profielen openen @@ -3822,11 +4010,19 @@ Dit is jouw link voor groep %@! App openen… No comment provided by engineer. + + Or paste archive link + No comment provided by engineer. + Or scan QR code Of scan de QR-code No comment provided by engineer. + + Or securely share this file link + No comment provided by engineer. + Or show this code Of laat deze code zien @@ -3912,6 +4108,10 @@ Dit is jouw link voor groep %@! Decodering fout message decrypt error item + + Picture-in-picture calls + No comment provided by engineer. + Please ask your contact to enable sending voice messages. Vraag uw contact om het verzenden van spraak berichten in te schakelen. @@ -3932,6 +4132,10 @@ Dit is jouw link voor groep %@! Controleer de uwe en uw contact voorkeuren. No comment provided by engineer. + + Please confirm that network settings are correct for this device. + No comment provided by engineer. + Please contact developers. Error: %@ @@ -3989,6 +4193,10 @@ Fout: %@ Mogelijk is de certificaat vingerafdruk in het server adres onjuist server test error + + Post-quantum E2EE + No comment provided by engineer. + Preserve the last message draft, with attachments. Bewaar het laatste berichtconcept, met bijlagen. @@ -4124,6 +4332,14 @@ Fout: %@ Push meldingen No comment provided by engineer. + + Push server + No comment provided by engineer. + + + Quantum resistant encryption + No comment provided by engineer. + Rate the app Beoordeel de app @@ -4309,11 +4525,23 @@ Fout: %@ Verbindingsverzoek herhalen? No comment provided by engineer. + + Repeat download + No comment provided by engineer. + + + Repeat import + No comment provided by engineer. + Repeat join request? Deelnameverzoek herhalen? No comment provided by engineer. + + Repeat upload + No comment provided by engineer. + Reply Antwoord @@ -4414,6 +4642,10 @@ Fout: %@ SMP servers No comment provided by engineer. + + Safer groups + No comment provided by engineer. + Save Opslaan @@ -4541,7 +4773,7 @@ Fout: %@ Search or paste SimpleX link - Zoek of plak een SimpleX link + Zoeken of plak een SimpleX link No comment provided by engineer. @@ -4779,6 +5011,10 @@ Fout: %@ Toegangscode instellen No comment provided by engineer. + + Set passphrase + No comment provided by engineer. + Set passphrase to export Wachtwoord instellen om te exporteren @@ -4834,6 +5070,10 @@ Fout: %@ Delen met contacten No comment provided by engineer. + + Show QR code + No comment provided by engineer. + Show calls in phone history Toon oproepen in de telefoongeschiedenis @@ -4974,6 +5214,10 @@ Fout: %@ Stop SimpleX authentication reason + + Stop chat + No comment provided by engineer. + Stop chat to enable database actions Stop de chat om database acties mogelijk te maken @@ -5014,6 +5258,10 @@ Fout: %@ Stop met het delen van adres? No comment provided by engineer. + + Stopping chat + No comment provided by engineer. + Submit Indienen @@ -5261,6 +5509,14 @@ Het kan gebeuren vanwege een bug of wanneer de verbinding is aangetast. Deze actie kan niet ongedaan worden gemaakt. Uw profiel, contacten, berichten en bestanden gaan onomkeerbaar verloren. No comment provided by engineer. + + This chat is protected by end-to-end encryption. + E2EE info chat item + + + This chat is protected by quantum resistant end-to-end encryption. + E2EE info chat item + This device name Deze apparaatnaam @@ -5555,11 +5811,19 @@ Om verbinding te maken, vraagt u uw contact om een andere verbinding link te mak Upgrade en open chat No comment provided by engineer. + + Upload failed + No comment provided by engineer. + Upload file Upload bestand server test step + + Uploading archive + No comment provided by engineer. + Use .onion hosts Gebruik .onion-hosts @@ -5610,6 +5874,10 @@ Om verbinding te maken, vraagt u uw contact om een andere verbinding link te mak Gebruik server No comment provided by engineer. + + Use the app while in the call. + No comment provided by engineer. + User profile Gebruikers profiel @@ -5645,6 +5913,14 @@ Om verbinding te maken, vraagt u uw contact om een andere verbinding link te mak Controleer verbindingen No comment provided by engineer. + + Verify database passphrase + No comment provided by engineer. + + + Verify passphrase + No comment provided by engineer. + Verify security code Controleer de beveiligingscode @@ -5735,6 +6011,10 @@ Om verbinding te maken, vraagt u uw contact om een andere verbinding link te mak Wachten op video No comment provided by engineer. + + Warning: starting chat on multiple devices is not supported and will cause message delivery failures + No comment provided by engineer. + Warning: you may lose some data! Waarschuwing: u kunt sommige gegevens verliezen! @@ -5755,6 +6035,10 @@ Om verbinding te maken, vraagt u uw contact om een andere verbinding link te mak Welkomst bericht No comment provided by engineer. + + Welcome message is too long + No comment provided by engineer. + What's new Wat is er nieuw @@ -5810,6 +6094,10 @@ Om verbinding te maken, vraagt u uw contact om een andere verbinding link te mak Jij No comment provided by engineer. + + You **must not** use the same database on two devices. + No comment provided by engineer. + You accepted connection Je hebt de verbinding geaccepteerd @@ -5897,6 +6185,10 @@ Deelnameverzoek herhalen? U kunt ze later inschakelen via de privacy- en beveiligingsinstellingen van de app. No comment provided by engineer. + + You can give another try. + No comment provided by engineer. + You can hide or mute a user profile - swipe it to the right. U kunt een gebruikers profiel verbergen of dempen - veeg het naar rechts. @@ -6291,7 +6583,7 @@ SimpleX servers kunnen uw profiel niet zien. blocked geblokkeerd - No comment provided by engineer. + marked deleted chat item preview text blocked %@ @@ -6301,7 +6593,7 @@ SimpleX servers kunnen uw profiel niet zien. blocked by admin geblokkeerd door beheerder - blocked chat item + marked deleted chat item preview text bold @@ -6615,7 +6907,7 @@ SimpleX servers kunnen uw profiel niet zien. incognito via contact address link - incognito via contactadres link + incognito via contact adres link chat list item description @@ -6685,7 +6977,7 @@ SimpleX servers kunnen uw profiel niet zien. left - verlaten + is vertrokken rcv group event chat item @@ -6731,7 +7023,7 @@ SimpleX servers kunnen uw profiel niet zien. moderated by %@ gemodereerd door %@ - No comment provided by engineer. + marked deleted chat item preview text months @@ -6800,6 +7092,10 @@ SimpleX servers kunnen uw profiel niet zien. peer-to-peer No comment provided by engineer. + + quantum resistant e2e encryption + chat item text + received answer… antwoord gekregen… @@ -6875,6 +7171,10 @@ SimpleX servers kunnen uw profiel niet zien. nieuwe profielfoto instellen profile update event chat item + + standard end-to-end encryption + chat item text + starting… beginnen… @@ -6927,7 +7227,7 @@ SimpleX servers kunnen uw profiel niet zien. via contact address link - via contactadres link + via contact adres link chat list item description diff --git a/apps/ios/SimpleX Localizations/pl.xcloc/Localized Contents/pl.xliff b/apps/ios/SimpleX Localizations/pl.xcloc/Localized Contents/pl.xliff index 94e3e8901a..24e9d5dda2 100644 --- a/apps/ios/SimpleX Localizations/pl.xcloc/Localized Contents/pl.xliff +++ b/apps/ios/SimpleX Localizations/pl.xcloc/Localized Contents/pl.xliff @@ -107,6 +107,10 @@ %@ połączony No comment provided by engineer. + + %@ downloaded + No comment provided by engineer. + %@ is connected! %@ jest połączony! @@ -127,6 +131,10 @@ %@ serwery No comment provided by engineer. + + %@ uploaded + No comment provided by engineer. + %@ wants to connect! %@ chce się połączyć! @@ -342,6 +350,10 @@ **Najbardziej prywatny**: nie korzystaj z serwera powiadomień SimpleX Chat, sprawdzaj wiadomości okresowo w tle (zależy jak często korzystasz z aplikacji). No comment provided by engineer. + + **Please note**: using the same database on two devices will break the decryption of messages from your connections, as a security protection. + No comment provided by engineer. + **Please note**: you will NOT be able to recover or change passphrase if you lose it. **Uwaga**: NIE będziesz w stanie odzyskać lub zmienić hasła, jeśli je stracisz. @@ -357,6 +369,10 @@ **Uwaga**: Natychmiastowe powiadomienia push wymagają hasła zapisanego w Keychain. No comment provided by engineer. + + **Warning**: the archive will be removed. + No comment provided by engineer. + **e2e encrypted** audio call **szyfrowane e2e** połączenie audio @@ -613,6 +629,10 @@ Zmiana adresu zostanie przerwana. Użyty zostanie stary adres odbiorczy. No comment provided by engineer. + + Admins can block a member for all. + No comment provided by engineer. + Admins can create the links to join groups. Administratorzy mogą tworzyć linki do dołączania do grup. @@ -668,6 +688,10 @@ Wszystkie Twoje kontakty pozostaną połączone. Aktualizacja profilu zostanie wysłana do Twoich kontaktów. No comment provided by engineer. + + All your contacts, conversations and files will be securely encrypted and uploaded in chunks to configured XFTP relays. + No comment provided by engineer. + Allow Pozwól @@ -793,6 +817,10 @@ Kompilacja aplikacji: %@ No comment provided by engineer. + + App data migration + No comment provided by engineer. + App encrypts new local files (except videos). Aplikacja szyfruje nowe lokalne pliki (bez filmów). @@ -828,6 +856,18 @@ Wygląd No comment provided by engineer. + + Apply + No comment provided by engineer. + + + Archive and upload + No comment provided by engineer. + + + Archiving database + No comment provided by engineer. + Attach Dołącz @@ -1018,6 +1058,10 @@ Anuluj No comment provided by engineer. + + Cancel migration + No comment provided by engineer. + Cannot access keychain to save database password Nie można uzyskać dostępu do pęku kluczy, aby zapisać hasło do bazy danych @@ -1119,6 +1163,10 @@ Czat został zatrzymany. Jeśli korzystałeś już z tej bazy danych na innym urządzeniu, powinieneś przenieść ją z powrotem przed rozpoczęciem czatu. No comment provided by engineer. + + Chat migrated! + No comment provided by engineer. + Chat preferences Preferencje czatu @@ -1139,6 +1187,10 @@ Chiński i hiszpański interfejs No comment provided by engineer. + + Choose _Migrate from another device_ on the new device and scan QR code. + No comment provided by engineer. + Choose file Wybierz plik @@ -1209,6 +1261,10 @@ Potwierdź aktualizacje bazy danych No comment provided by engineer. + + Confirm network settings + No comment provided by engineer. + Confirm new passphrase… Potwierdź nowe hasło… @@ -1219,6 +1275,14 @@ Potwierdź hasło No comment provided by engineer. + + Confirm that you remember database passphrase to migrate it. + No comment provided by engineer. + + + Confirm upload + No comment provided by engineer. + Connect Połącz @@ -1478,6 +1542,10 @@ To jest twój jednorazowy link! Utworzony w dniu %@ No comment provided by engineer. + + Creating archive link + No comment provided by engineer. + Creating link… Tworzenie linku… @@ -1698,6 +1766,10 @@ To nie może być cofnięte! Usuń bazę danych No comment provided by engineer. + + Delete database from this device + No comment provided by engineer. + Delete file Usuń plik @@ -1988,11 +2060,23 @@ To nie może być cofnięte! Obniż wersję i otwórz czat No comment provided by engineer. + + Download failed + No comment provided by engineer. + Download file Pobierz plik server test step + + Downloading archive + No comment provided by engineer. + + + Downloading link details + No comment provided by engineer. + Duplicate display name! Zduplikowana wyświetlana nazwa! @@ -2048,6 +2132,10 @@ To nie może być cofnięte! Włącz dla wszystkich No comment provided by engineer. + + Enable in direct chats (BETA)! + No comment provided by engineer. + Enable instant notifications? Włączyć natychmiastowe powiadomienia? @@ -2163,6 +2251,10 @@ To nie może być cofnięte! Wpisz nazwę grupy… No comment provided by engineer. + + Enter passphrase + No comment provided by engineer. + Enter passphrase… Wprowadź hasło… @@ -2223,6 +2315,10 @@ To nie może być cofnięte! Błąd dodawania członka(ów) No comment provided by engineer. + + Error allowing contact PQ encryption + No comment provided by engineer. + Error changing address Błąd zmiany adresu @@ -2313,6 +2409,10 @@ To nie może być cofnięte! Błąd usuwania profilu użytkownika No comment provided by engineer. + + Error downloading the archive + No comment provided by engineer. + Error enabling delivery receipts! Błąd włączania potwierdzeń dostawy! @@ -2388,6 +2488,10 @@ To nie może być cofnięte! Błąd zapisu hasła do pęku kluczy No comment provided by engineer. + + Error saving settings + when migrating + Error saving user password Błąd zapisu hasła użytkownika @@ -2458,6 +2562,14 @@ To nie może być cofnięte! Błąd aktualizacji prywatności użytkownika No comment provided by engineer. + + Error uploading the archive + No comment provided by engineer. + + + Error verifying passphrase: + No comment provided by engineer. + Error: Błąd: @@ -2508,6 +2620,10 @@ To nie może być cofnięte! Wyeksportowane archiwum bazy danych. No comment provided by engineer. + + Exported file doesn't exist + No comment provided by engineer. + Exporting database archive… Eksportowanie archiwum bazy danych… @@ -2578,6 +2694,14 @@ To nie może być cofnięte! Filtruj nieprzeczytane i ulubione czaty. No comment provided by engineer. + + Finalize migration + No comment provided by engineer. + + + Finalize migration on another device. + No comment provided by engineer. + Finally, we have them! 🚀 W końcu je mamy! 🚀 @@ -2868,6 +2992,10 @@ To nie może być cofnięte! Jak korzystać z Twoich serwerów No comment provided by engineer. + + Hungarian interface + No comment provided by engineer. + ICE servers (one per line) Serwery ICE (po jednym na linię) @@ -2933,6 +3061,14 @@ To nie może być cofnięte! Importuj bazę danych No comment provided by engineer. + + Import failed + No comment provided by engineer. + + + Importing archive + No comment provided by engineer. + Improved message delivery Ulepszona dostawa wiadomości @@ -2948,6 +3084,10 @@ To nie może być cofnięte! Ulepszona konfiguracja serwera No comment provided by engineer. + + In order to continue, chat should be stopped. + No comment provided by engineer. + In reply to W odpowiedzi na @@ -3060,6 +3200,10 @@ To nie może być cofnięte! Nieprawidłowy link No comment provided by engineer. + + Invalid migration confirmation + No comment provided by engineer. + Invalid name! Nieprawidłowa nazwa! @@ -3428,6 +3572,10 @@ To jest twój link do grupy %@! Tekst wiadomości No comment provided by engineer. + + Message too large + No comment provided by engineer. + Messages Wiadomości @@ -3443,11 +3591,47 @@ To jest twój link do grupy %@! Wiadomości od %@ zostaną pokazane! No comment provided by engineer. + + Messages, files and calls are protected by **end-to-end encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Messages, files and calls are protected by **quantum resistant e2e encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Migrate device + No comment provided by engineer. + + + Migrate from another device + No comment provided by engineer. + + + Migrate here + No comment provided by engineer. + + + Migrate to another device + No comment provided by engineer. + + + Migrate to another device via QR code. + No comment provided by engineer. + + + Migrating + No comment provided by engineer. + Migrating database archive… Migrowanie archiwum bazy danych… No comment provided by engineer. + + Migration complete + No comment provided by engineer. + Migration error: Błąd migracji: @@ -3807,6 +3991,10 @@ To jest twój link do grupy %@! Grupa otwarta No comment provided by engineer. + + Open migration to another device + authentication reason + Open user profiles Otwórz profile użytkownika @@ -3822,11 +4010,19 @@ To jest twój link do grupy %@! Otwieranie aplikacji… No comment provided by engineer. + + Or paste archive link + No comment provided by engineer. + Or scan QR code Lub zeskanuj kod QR No comment provided by engineer. + + Or securely share this file link + No comment provided by engineer. + Or show this code Lub pokaż ten kod @@ -3912,6 +4108,10 @@ To jest twój link do grupy %@! Stały błąd odszyfrowania message decrypt error item + + Picture-in-picture calls + No comment provided by engineer. + Please ask your contact to enable sending voice messages. Poproś Twój kontakt o włączenie wysyłania wiadomości głosowych. @@ -3932,6 +4132,10 @@ To jest twój link do grupy %@! Proszę sprawdzić preferencje Twoje i Twojego kontaktu. No comment provided by engineer. + + Please confirm that network settings are correct for this device. + No comment provided by engineer. + Please contact developers. Error: %@ @@ -3989,6 +4193,10 @@ Błąd: %@ Możliwe, że odcisk palca certyfikatu w adresie serwera jest nieprawidłowy server test error + + Post-quantum E2EE + No comment provided by engineer. + Preserve the last message draft, with attachments. Zachowaj ostatnią wersję roboczą wiadomości wraz z załącznikami. @@ -4124,6 +4332,14 @@ Błąd: %@ Powiadomienia push No comment provided by engineer. + + Push server + No comment provided by engineer. + + + Quantum resistant encryption + No comment provided by engineer. + Rate the app Oceń aplikację @@ -4309,11 +4525,23 @@ Błąd: %@ Powtórzyć prośbę połączenia? No comment provided by engineer. + + Repeat download + No comment provided by engineer. + + + Repeat import + No comment provided by engineer. + Repeat join request? Powtórzyć prośbę dołączenia? No comment provided by engineer. + + Repeat upload + No comment provided by engineer. + Reply Odpowiedz @@ -4414,6 +4642,10 @@ Błąd: %@ Serwery SMP No comment provided by engineer. + + Safer groups + No comment provided by engineer. + Save Zapisz @@ -4779,6 +5011,10 @@ Błąd: %@ Ustaw pin No comment provided by engineer. + + Set passphrase + No comment provided by engineer. + Set passphrase to export Ustaw hasło do eksportu @@ -4834,6 +5070,10 @@ Błąd: %@ Udostępnij kontaktom No comment provided by engineer. + + Show QR code + No comment provided by engineer. + Show calls in phone history Pokaż połączenia w historii telefonu @@ -4974,6 +5214,10 @@ Błąd: %@ Zatrzymaj SimpleX authentication reason + + Stop chat + No comment provided by engineer. + Stop chat to enable database actions Zatrzymaj czat, aby umożliwić działania na bazie danych @@ -5014,6 +5258,10 @@ Błąd: %@ Przestać udostępniać adres? No comment provided by engineer. + + Stopping chat + No comment provided by engineer. + Submit Zatwierdź @@ -5261,6 +5509,14 @@ Może się to zdarzyć z powodu jakiegoś błędu lub gdy połączenie jest skom Tego działania nie można cofnąć - Twój profil, kontakty, wiadomości i pliki zostaną nieodwracalnie utracone. No comment provided by engineer. + + This chat is protected by end-to-end encryption. + E2EE info chat item + + + This chat is protected by quantum resistant end-to-end encryption. + E2EE info chat item + This device name Nazwa tego urządzenia @@ -5555,11 +5811,19 @@ Aby się połączyć, poproś Twój kontakt o utworzenie kolejnego linku połąc Zaktualizuj i otwórz czat No comment provided by engineer. + + Upload failed + No comment provided by engineer. + Upload file Prześlij plik server test step + + Uploading archive + No comment provided by engineer. + Use .onion hosts Użyj hostów .onion @@ -5610,6 +5874,10 @@ Aby się połączyć, poproś Twój kontakt o utworzenie kolejnego linku połąc Użyj serwera No comment provided by engineer. + + Use the app while in the call. + No comment provided by engineer. + User profile Profil użytkownika @@ -5645,6 +5913,14 @@ Aby się połączyć, poproś Twój kontakt o utworzenie kolejnego linku połąc Zweryfikuj połączenia No comment provided by engineer. + + Verify database passphrase + No comment provided by engineer. + + + Verify passphrase + No comment provided by engineer. + Verify security code Weryfikuj kod bezpieczeństwa @@ -5735,6 +6011,10 @@ Aby się połączyć, poproś Twój kontakt o utworzenie kolejnego linku połąc Oczekiwanie na film No comment provided by engineer. + + Warning: starting chat on multiple devices is not supported and will cause message delivery failures + No comment provided by engineer. + Warning: you may lose some data! Uwaga: możesz stracić niektóre dane! @@ -5755,6 +6035,10 @@ Aby się połączyć, poproś Twój kontakt o utworzenie kolejnego linku połąc Wiadomość powitalna No comment provided by engineer. + + Welcome message is too long + No comment provided by engineer. + What's new Co nowego @@ -5810,6 +6094,10 @@ Aby się połączyć, poproś Twój kontakt o utworzenie kolejnego linku połąc Ty No comment provided by engineer. + + You **must not** use the same database on two devices. + No comment provided by engineer. + You accepted connection Zaakceptowałeś połączenie @@ -5897,6 +6185,10 @@ Powtórzyć prośbę dołączenia? Możesz je włączyć później w ustawieniach Prywatności i Bezpieczeństwa aplikacji. No comment provided by engineer. + + You can give another try. + No comment provided by engineer. + You can hide or mute a user profile - swipe it to the right. Możesz ukryć lub wyciszyć profil użytkownika - przesuń palcem w prawo. @@ -6291,7 +6583,7 @@ Serwery SimpleX nie mogą zobaczyć Twojego profilu. blocked zablokowany - No comment provided by engineer. + marked deleted chat item preview text blocked %@ @@ -6301,7 +6593,7 @@ Serwery SimpleX nie mogą zobaczyć Twojego profilu. blocked by admin zablokowany przez admina - blocked chat item + marked deleted chat item preview text bold @@ -6731,7 +7023,7 @@ Serwery SimpleX nie mogą zobaczyć Twojego profilu. moderated by %@ moderowany przez %@ - No comment provided by engineer. + marked deleted chat item preview text months @@ -6800,6 +7092,10 @@ Serwery SimpleX nie mogą zobaczyć Twojego profilu. peer-to-peer No comment provided by engineer. + + quantum resistant e2e encryption + chat item text + received answer… otrzymano odpowiedź… @@ -6875,6 +7171,10 @@ Serwery SimpleX nie mogą zobaczyć Twojego profilu. ustaw nowe zdjęcie profilu profile update event chat item + + standard end-to-end encryption + chat item text + starting… uruchamianie… diff --git a/apps/ios/SimpleX Localizations/pt-BR.xcloc/Localized Contents/pt-BR.xliff b/apps/ios/SimpleX Localizations/pt-BR.xcloc/Localized Contents/pt-BR.xliff index 540a4eada4..b4fa69449f 100644 --- a/apps/ios/SimpleX Localizations/pt-BR.xcloc/Localized Contents/pt-BR.xliff +++ b/apps/ios/SimpleX Localizations/pt-BR.xcloc/Localized Contents/pt-BR.xliff @@ -69,7 +69,7 @@ %@ is not verified - %@ não foi verificado + %@ não foi verificado(a) No comment provided by engineer. @@ -84,12 +84,12 @@ %d days - %d dia(s) + %d dias message ttl %d hours - %d hora(s) + %d horas message ttl @@ -99,7 +99,7 @@ %d months - %d mês(es) + %d meses message ttl @@ -109,7 +109,7 @@ %d skipped message(s) - %d mensagem(ns) ignorada(s) + %d mensagem(ns) omitida(s) integrity error chat item @@ -5189,6 +5189,51 @@ Isso pode acontecer por causa de algum bug ou quando a conexão está comprometi Desaparecerá: %@ copied message info + + # %@ + # %@ + copied message info title, # <title> + + + ## History + ## Histórico + copied message info + + + ## In reply to + ## Em resposta a + copied message info + + + %@ connected + %@ conectado(a) + No comment provided by engineer. + + + %@, %@ and %lld members + %@, %@ e %lld membros + No comment provided by engineer. + + + %@ and %@ connected + %@ e %@ conectados + No comment provided by engineer. + + + %@, %@ and %lld other members connected + %@, %@ e %lld e outros membros se conectaram + No comment provided by engineer. + + + %@ and %@ + %@ e %@ + No comment provided by engineer. + + + %1$@ at %2$@: + %1$@ em %2$@: + copied message info, <sender> at <time> + diff --git a/apps/ios/SimpleX Localizations/ru.xcloc/Localized Contents/ru.xliff b/apps/ios/SimpleX Localizations/ru.xcloc/Localized Contents/ru.xliff index b0d1a0cd24..2b0bf95f45 100644 --- a/apps/ios/SimpleX Localizations/ru.xcloc/Localized Contents/ru.xliff +++ b/apps/ios/SimpleX Localizations/ru.xcloc/Localized Contents/ru.xliff @@ -107,6 +107,10 @@ %@ соединен(а) No comment provided by engineer. + + %@ downloaded + No comment provided by engineer. + %@ is connected! Установлено соединение с %@! @@ -127,6 +131,10 @@ %@ серверы No comment provided by engineer. + + %@ uploaded + No comment provided by engineer. + %@ wants to connect! %@ хочет соединиться! @@ -342,6 +350,10 @@ **Самый конфиденциальный**: не использовать сервер уведомлений SimpleX Chat, проверять сообщения периодически в фоновом режиме (зависит от того насколько часто Вы используете приложение). No comment provided by engineer. + + **Please note**: using the same database on two devices will break the decryption of messages from your connections, as a security protection. + No comment provided by engineer. + **Please note**: you will NOT be able to recover or change passphrase if you lose it. **Внимание**: Вы не сможете восстановить или поменять пароль, если Вы его потеряете. @@ -357,6 +369,10 @@ **Внимание**: для работы мгновенных уведомлений пароль должен быть сохранен в Keychain. No comment provided by engineer. + + **Warning**: the archive will be removed. + No comment provided by engineer. + **e2e encrypted** audio call **e2e зашифрованный** аудиозвонок @@ -613,6 +629,10 @@ Изменение адреса будет прекращено. Будет использоваться старый адрес. No comment provided by engineer. + + Admins can block a member for all. + No comment provided by engineer. + Admins can create the links to join groups. Админы могут создать ссылки для вступления в группу. @@ -668,6 +688,10 @@ Все Ваши контакты сохранятся. Обновленный профиль будет отправлен Вашим контактам. No comment provided by engineer. + + All your contacts, conversations and files will be securely encrypted and uploaded in chunks to configured XFTP relays. + No comment provided by engineer. + Allow Разрешить @@ -793,6 +817,10 @@ Сборка приложения: %@ No comment provided by engineer. + + App data migration + No comment provided by engineer. + App encrypts new local files (except videos). Приложение шифрует новые локальные файлы (кроме видео). @@ -828,6 +856,18 @@ Интерфейс No comment provided by engineer. + + Apply + No comment provided by engineer. + + + Archive and upload + No comment provided by engineer. + + + Archiving database + No comment provided by engineer. + Attach Прикрепить @@ -1018,6 +1058,10 @@ Отменить No comment provided by engineer. + + Cancel migration + No comment provided by engineer. + Cannot access keychain to save database password Ошибка доступа к Keychain при сохранении пароля @@ -1119,6 +1163,10 @@ Чат остановлен. Если вы уже использовали эту базу данных на другом устройстве, перенесите ее обратно до запуска чата. No comment provided by engineer. + + Chat migrated! + No comment provided by engineer. + Chat preferences Предпочтения @@ -1139,6 +1187,10 @@ Китайский и Испанский интерфейс No comment provided by engineer. + + Choose _Migrate from another device_ on the new device and scan QR code. + No comment provided by engineer. + Choose file Выбрать файл @@ -1209,6 +1261,10 @@ Подтвердить обновление базы данных No comment provided by engineer. + + Confirm network settings + No comment provided by engineer. + Confirm new passphrase… Подтвердите новый пароль… @@ -1219,6 +1275,14 @@ Подтвердить пароль No comment provided by engineer. + + Confirm that you remember database passphrase to migrate it. + No comment provided by engineer. + + + Confirm upload + No comment provided by engineer. + Connect Соединиться @@ -1478,6 +1542,10 @@ This is your own one-time link! Дата создания %@ No comment provided by engineer. + + Creating archive link + No comment provided by engineer. + Creating link… Создаётся ссылка… @@ -1698,6 +1766,10 @@ This cannot be undone! Удалить данные чата No comment provided by engineer. + + Delete database from this device + No comment provided by engineer. + Delete file Удалить файл @@ -1988,11 +2060,23 @@ This cannot be undone! Откатить версию и открыть чат No comment provided by engineer. + + Download failed + No comment provided by engineer. + Download file Загрузка файла server test step + + Downloading archive + No comment provided by engineer. + + + Downloading link details + No comment provided by engineer. + Duplicate display name! Имя профиля уже используется! @@ -2048,6 +2132,10 @@ This cannot be undone! Включить для всех No comment provided by engineer. + + Enable in direct chats (BETA)! + No comment provided by engineer. + Enable instant notifications? Включить мгновенные уведомления? @@ -2163,6 +2251,10 @@ This cannot be undone! Введите имя группы… No comment provided by engineer. + + Enter passphrase + No comment provided by engineer. + Enter passphrase… Введите пароль… @@ -2223,6 +2315,10 @@ This cannot be undone! Ошибка при добавлении членов группы No comment provided by engineer. + + Error allowing contact PQ encryption + No comment provided by engineer. + Error changing address Ошибка при изменении адреса @@ -2313,6 +2409,10 @@ This cannot be undone! Ошибка удаления профиля пользователя No comment provided by engineer. + + Error downloading the archive + No comment provided by engineer. + Error enabling delivery receipts! Ошибка при включении отчётов о доставке! @@ -2388,6 +2488,10 @@ This cannot be undone! Ошибка сохранения пароля в Keychain No comment provided by engineer. + + Error saving settings + when migrating + Error saving user password Ошибка при сохранении пароля пользователя @@ -2458,6 +2562,14 @@ This cannot be undone! Ошибка при обновлении конфиденциальности No comment provided by engineer. + + Error uploading the archive + No comment provided by engineer. + + + Error verifying passphrase: + No comment provided by engineer. + Error: Ошибка: @@ -2508,6 +2620,10 @@ This cannot be undone! Архив чата экспортирован. No comment provided by engineer. + + Exported file doesn't exist + No comment provided by engineer. + Exporting database archive… Архив чата экспортируется… @@ -2578,6 +2694,14 @@ This cannot be undone! Фильтровать непрочитанные и избранные чаты. No comment provided by engineer. + + Finalize migration + No comment provided by engineer. + + + Finalize migration on another device. + No comment provided by engineer. + Finally, we have them! 🚀 Наконец-то, мы их добавили! 🚀 @@ -2868,6 +2992,10 @@ This cannot be undone! Как использовать серверы No comment provided by engineer. + + Hungarian interface + No comment provided by engineer. + ICE servers (one per line) ICE серверы (один на строке) @@ -2933,6 +3061,14 @@ This cannot be undone! Импорт архива чата No comment provided by engineer. + + Import failed + No comment provided by engineer. + + + Importing archive + No comment provided by engineer. + Improved message delivery Улучшенная доставка сообщений @@ -2948,6 +3084,10 @@ This cannot be undone! Улучшенная конфигурация серверов No comment provided by engineer. + + In order to continue, chat should be stopped. + No comment provided by engineer. + In reply to В ответ на @@ -3060,6 +3200,10 @@ This cannot be undone! Ошибка ссылки No comment provided by engineer. + + Invalid migration confirmation + No comment provided by engineer. + Invalid name! Неверное имя! @@ -3428,6 +3572,10 @@ This is your link for group %@! Текст сообщения No comment provided by engineer. + + Message too large + No comment provided by engineer. + Messages Сообщения @@ -3443,11 +3591,47 @@ This is your link for group %@! Сообщения от %@ будут показаны! No comment provided by engineer. + + Messages, files and calls are protected by **end-to-end encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Messages, files and calls are protected by **quantum resistant e2e encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Migrate device + No comment provided by engineer. + + + Migrate from another device + No comment provided by engineer. + + + Migrate here + No comment provided by engineer. + + + Migrate to another device + No comment provided by engineer. + + + Migrate to another device via QR code. + No comment provided by engineer. + + + Migrating + No comment provided by engineer. + Migrating database archive… Данные чата перемещаются… No comment provided by engineer. + + Migration complete + No comment provided by engineer. + Migration error: Ошибка при перемещении данных: @@ -3807,6 +3991,10 @@ This is your link for group %@! Открыть группу No comment provided by engineer. + + Open migration to another device + authentication reason + Open user profiles Открыть профили пользователя @@ -3822,11 +4010,19 @@ This is your link for group %@! Приложение отрывается… No comment provided by engineer. + + Or paste archive link + No comment provided by engineer. + Or scan QR code Или отсканируйте QR код No comment provided by engineer. + + Or securely share this file link + No comment provided by engineer. + Or show this code Или покажите этот код @@ -3912,6 +4108,10 @@ This is your link for group %@! Ошибка расшифровки message decrypt error item + + Picture-in-picture calls + No comment provided by engineer. + Please ask your contact to enable sending voice messages. Попросите у Вашего контакта разрешить отправку голосовых сообщений. @@ -3932,6 +4132,10 @@ This is your link for group %@! Проверьте предпочтения Вашего контакта. No comment provided by engineer. + + Please confirm that network settings are correct for this device. + No comment provided by engineer. + Please contact developers. Error: %@ @@ -3989,6 +4193,10 @@ Error: %@ Возможно, хэш сертификата в адресе сервера неверный server test error + + Post-quantum E2EE + No comment provided by engineer. + Preserve the last message draft, with attachments. Сохранить последний черновик, вместе с вложениями. @@ -4124,6 +4332,14 @@ Error: %@ Доставка уведомлений No comment provided by engineer. + + Push server + No comment provided by engineer. + + + Quantum resistant encryption + No comment provided by engineer. + Rate the app Оценить приложение @@ -4309,11 +4525,23 @@ Error: %@ Повторить запрос на соединение? No comment provided by engineer. + + Repeat download + No comment provided by engineer. + + + Repeat import + No comment provided by engineer. + Repeat join request? Повторить запрос на вступление? No comment provided by engineer. + + Repeat upload + No comment provided by engineer. + Reply Ответить @@ -4414,6 +4642,10 @@ Error: %@ SMP серверы No comment provided by engineer. + + Safer groups + No comment provided by engineer. + Save Сохранить @@ -4779,6 +5011,10 @@ Error: %@ Установить код доступа No comment provided by engineer. + + Set passphrase + No comment provided by engineer. + Set passphrase to export Установите пароль @@ -4834,6 +5070,10 @@ Error: %@ Поделиться с контактами No comment provided by engineer. + + Show QR code + No comment provided by engineer. + Show calls in phone history Показать звонки в истории телефона @@ -4974,6 +5214,10 @@ Error: %@ Остановить SimpleX authentication reason + + Stop chat + No comment provided by engineer. + Stop chat to enable database actions Остановите чат, чтобы разблокировать операции с архивом чата @@ -5014,6 +5258,10 @@ Error: %@ Прекратить делиться адресом? No comment provided by engineer. + + Stopping chat + No comment provided by engineer. + Submit Продолжить @@ -5261,6 +5509,14 @@ It can happen because of some bug or when the connection is compromised.Это действие нельзя отменить — Ваш профиль, контакты, сообщения и файлы будут безвозвратно утеряны. No comment provided by engineer. + + This chat is protected by end-to-end encryption. + E2EE info chat item + + + This chat is protected by quantum resistant end-to-end encryption. + E2EE info chat item + This device name Имя этого устройства @@ -5555,11 +5811,19 @@ To connect, please ask your contact to create another connection link and check Обновить и открыть чат No comment provided by engineer. + + Upload failed + No comment provided by engineer. + Upload file Загрузка файла server test step + + Uploading archive + No comment provided by engineer. + Use .onion hosts Использовать .onion хосты @@ -5610,6 +5874,10 @@ To connect, please ask your contact to create another connection link and check Использовать сервер No comment provided by engineer. + + Use the app while in the call. + No comment provided by engineer. + User profile Профиль чата @@ -5645,6 +5913,14 @@ To connect, please ask your contact to create another connection link and check Проверять соединения No comment provided by engineer. + + Verify database passphrase + No comment provided by engineer. + + + Verify passphrase + No comment provided by engineer. + Verify security code Подтвердить код безопасности @@ -5735,6 +6011,10 @@ To connect, please ask your contact to create another connection link and check Ожидание видео No comment provided by engineer. + + Warning: starting chat on multiple devices is not supported and will cause message delivery failures + No comment provided by engineer. + Warning: you may lose some data! Предупреждение: Вы можете потерять какие то данные! @@ -5755,6 +6035,10 @@ To connect, please ask your contact to create another connection link and check Приветственное сообщение No comment provided by engineer. + + Welcome message is too long + No comment provided by engineer. + What's new Новые функции @@ -5810,6 +6094,10 @@ To connect, please ask your contact to create another connection link and check Вы No comment provided by engineer. + + You **must not** use the same database on two devices. + No comment provided by engineer. + You accepted connection Вы приняли приглашение соединиться @@ -5897,6 +6185,10 @@ Repeat join request? Вы можете включить их позже в настройках Конфиденциальности. No comment provided by engineer. + + You can give another try. + No comment provided by engineer. + You can hide or mute a user profile - swipe it to the right. Вы можете скрыть профиль или выключить уведомления - потяните его вправо. @@ -6291,7 +6583,7 @@ SimpleX серверы не могут получить доступ к Ваше blocked заблокировано - No comment provided by engineer. + marked deleted chat item preview text blocked %@ @@ -6301,7 +6593,7 @@ SimpleX серверы не могут получить доступ к Ваше blocked by admin заблокировано администратором - blocked chat item + marked deleted chat item preview text bold @@ -6731,7 +7023,7 @@ SimpleX серверы не могут получить доступ к Ваше moderated by %@ удалено %@ - No comment provided by engineer. + marked deleted chat item preview text months @@ -6800,6 +7092,10 @@ SimpleX серверы не могут получить доступ к Ваше peer-to-peer No comment provided by engineer. + + quantum resistant e2e encryption + chat item text + received answer… получен ответ… @@ -6875,6 +7171,10 @@ SimpleX серверы не могут получить доступ к Ваше установлена новая картинка профиля profile update event chat item + + standard end-to-end encryption + chat item text + starting… инициализация… diff --git a/apps/ios/SimpleX Localizations/th.xcloc/Localized Contents/th.xliff b/apps/ios/SimpleX Localizations/th.xcloc/Localized Contents/th.xliff index 5e0659e935..e1b0e4d3e4 100644 --- a/apps/ios/SimpleX Localizations/th.xcloc/Localized Contents/th.xliff +++ b/apps/ios/SimpleX Localizations/th.xcloc/Localized Contents/th.xliff @@ -101,6 +101,10 @@ %@ connected No comment provided by engineer. + + %@ downloaded + No comment provided by engineer. + %@ is connected! %@ เชื่อมต่อสำเร็จ! @@ -121,6 +125,10 @@ %@ เซิร์ฟเวอร์ No comment provided by engineer. + + %@ uploaded + No comment provided by engineer. + %@ wants to connect! %@ อยากเชื่อมต่อ! @@ -324,6 +332,10 @@ **ส่วนตัวที่สุด**: ไม่ใช้เซิร์ฟเวอร์การแจ้งเตือนของ SimpleX Chat ตรวจสอบข้อความเป็นระยะในพื้นหลัง (ขึ้นอยู่กับความถี่ที่คุณใช้แอป) No comment provided by engineer. + + **Please note**: using the same database on two devices will break the decryption of messages from your connections, as a security protection. + No comment provided by engineer. + **Please note**: you will NOT be able to recover or change passphrase if you lose it. **โปรดทราบ**: คุณจะไม่สามารถกู้คืนหรือเปลี่ยนรหัสผ่านได้หากคุณทำรหัสผ่านหาย @@ -339,6 +351,10 @@ **คำเตือน**: การแจ้งเตือนแบบพุชทันทีจำเป็นต้องบันทึกรหัสผ่านไว้ใน Keychain No comment provided by engineer. + + **Warning**: the archive will be removed. + No comment provided by engineer. + **e2e encrypted** audio call การโทรเสียงแบบ **encrypted จากต้นจนจบ** @@ -585,6 +601,10 @@ การเปลี่ยนแปลงที่อยู่จะถูกยกเลิก จะใช้ที่อยู่เก่าของผู้รับ No comment provided by engineer. + + Admins can block a member for all. + No comment provided by engineer. + Admins can create the links to join groups. ผู้ดูแลระบบสามารถสร้างลิงก์เพื่อเข้าร่วมกลุ่มต่างๆได้ @@ -638,6 +658,10 @@ ผู้ติดต่อทั้งหมดของคุณจะยังคงเชื่อมต่ออยู่. ผู้ติดต่อทั้งหมดของคุณจะยังคงเชื่อมต่ออยู่ การอัปเดตโปรไฟล์จะถูกส่งไปยังผู้ติดต่อของคุณ. No comment provided by engineer. + + All your contacts, conversations and files will be securely encrypted and uploaded in chunks to configured XFTP relays. + No comment provided by engineer. + Allow อนุญาต @@ -761,6 +785,10 @@ รุ่นแอป: %@ No comment provided by engineer. + + App data migration + No comment provided by engineer. + App encrypts new local files (except videos). No comment provided by engineer. @@ -795,6 +823,18 @@ รูปร่างลักษณะ No comment provided by engineer. + + Apply + No comment provided by engineer. + + + Archive and upload + No comment provided by engineer. + + + Archiving database + No comment provided by engineer. + Attach แนบ @@ -974,6 +1014,10 @@ ยกเลิก No comment provided by engineer. + + Cancel migration + No comment provided by engineer. + Cannot access keychain to save database password ไม่สามารถเข้าถึง keychain เพื่อบันทึกรหัสผ่านฐานข้อมูล @@ -1074,6 +1118,10 @@ Chat is stopped. If you already used this database on another device, you should transfer it back before starting chat. No comment provided by engineer. + + Chat migrated! + No comment provided by engineer. + Chat preferences ค่ากําหนดในการแชท @@ -1094,6 +1142,10 @@ อินเทอร์เฟซภาษาจีนและสเปน No comment provided by engineer. + + Choose _Migrate from another device_ on the new device and scan QR code. + No comment provided by engineer. + Choose file เลือกไฟล์ @@ -1163,6 +1215,10 @@ ยืนยันการอัพเกรดฐานข้อมูล No comment provided by engineer. + + Confirm network settings + No comment provided by engineer. + Confirm new passphrase… ยืนยันรหัสผ่านใหม่… @@ -1173,6 +1229,14 @@ ยืนยันรหัสผ่าน No comment provided by engineer. + + Confirm that you remember database passphrase to migrate it. + No comment provided by engineer. + + + Confirm upload + No comment provided by engineer. + Connect เชื่อมต่อ @@ -1410,6 +1474,10 @@ This is your own one-time link! สร้างเมื่อ %@ No comment provided by engineer. + + Creating archive link + No comment provided by engineer. + Creating link… No comment provided by engineer. @@ -1625,6 +1693,10 @@ This cannot be undone! ลบฐานข้อมูล No comment provided by engineer. + + Delete database from this device + No comment provided by engineer. + Delete file ลบไฟล์ @@ -1907,11 +1979,23 @@ This cannot be undone! ปรับลดรุ่นและเปิดแชท No comment provided by engineer. + + Download failed + No comment provided by engineer. + Download file ดาวน์โหลดไฟล์ server test step + + Downloading archive + No comment provided by engineer. + + + Downloading link details + No comment provided by engineer. + Duplicate display name! ชื่อที่แสดงซ้ำ! @@ -1966,6 +2050,10 @@ This cannot be undone! เปิดใช้งานสําหรับทุกคน No comment provided by engineer. + + Enable in direct chats (BETA)! + No comment provided by engineer. + Enable instant notifications? เปิดใช้งานการแจ้งเตือนทันที? @@ -2075,6 +2163,10 @@ This cannot be undone! Enter group name… No comment provided by engineer. + + Enter passphrase + No comment provided by engineer. + Enter passphrase… ใส่รหัสผ่าน @@ -2133,6 +2225,10 @@ This cannot be undone! เกิดข้อผิดพลาดในการเพิ่มสมาชิก No comment provided by engineer. + + Error allowing contact PQ encryption + No comment provided by engineer. + Error changing address เกิดข้อผิดพลาดในการเปลี่ยนที่อยู่ @@ -2220,6 +2316,10 @@ This cannot be undone! เกิดข้อผิดพลาดในการลบโปรไฟล์ผู้ใช้ No comment provided by engineer. + + Error downloading the archive + No comment provided by engineer. + Error enabling delivery receipts! เกิดข้อผิดพลาดในการเปิดใช้ใบเสร็จการจัดส่ง! @@ -2294,6 +2394,10 @@ This cannot be undone! เกิดข้อผิดพลาดในการบันทึกรหัสผ่านไปยัง keychain No comment provided by engineer. + + Error saving settings + when migrating + Error saving user password เกิดข้อผิดพลาดในการบันทึกรหัสผ่านผู้ใช้ @@ -2362,6 +2466,14 @@ This cannot be undone! เกิดข้อผิดพลาดในการอัปเดตข้อมูลส่วนตัวของผู้ใช้ No comment provided by engineer. + + Error uploading the archive + No comment provided by engineer. + + + Error verifying passphrase: + No comment provided by engineer. + Error: ผิดพลาด: @@ -2411,6 +2523,10 @@ This cannot be undone! ที่เก็บถาวรฐานข้อมูลที่ส่งออก No comment provided by engineer. + + Exported file doesn't exist + No comment provided by engineer. + Exporting database archive… กำลังส่งออกที่เก็บถาวรฐานข้อมูล… @@ -2480,6 +2596,14 @@ This cannot be undone! กรองแชทที่ยังไม่อ่านและแชทโปรด No comment provided by engineer. + + Finalize migration + No comment provided by engineer. + + + Finalize migration on another device. + No comment provided by engineer. + Finally, we have them! 🚀 ในที่สุดเราก็มีแล้ว! 🚀 @@ -2765,6 +2889,10 @@ This cannot be undone! วิธีใช้เซิร์ฟเวอร์ของคุณ No comment provided by engineer. + + Hungarian interface + No comment provided by engineer. + ICE servers (one per line) เซิร์ฟเวอร์ ICE (หนึ่งเครื่องต่อสาย) @@ -2830,6 +2958,14 @@ This cannot be undone! นำเข้าฐานข้อมูล No comment provided by engineer. + + Import failed + No comment provided by engineer. + + + Importing archive + No comment provided by engineer. + Improved message delivery No comment provided by engineer. @@ -2844,6 +2980,10 @@ This cannot be undone! ปรับปรุงการกําหนดค่าเซิร์ฟเวอร์แล้ว No comment provided by engineer. + + In order to continue, chat should be stopped. + No comment provided by engineer. + In reply to ในการตอบกลับถึง @@ -2950,6 +3090,10 @@ This cannot be undone! Invalid link No comment provided by engineer. + + Invalid migration confirmation + No comment provided by engineer. + Invalid name! No comment provided by engineer. @@ -3304,6 +3448,10 @@ This is your link for group %@! ข้อความ No comment provided by engineer. + + Message too large + No comment provided by engineer. + Messages ข้อความ @@ -3318,11 +3466,47 @@ This is your link for group %@! Messages from %@ will be shown! No comment provided by engineer. + + Messages, files and calls are protected by **end-to-end encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Messages, files and calls are protected by **quantum resistant e2e encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Migrate device + No comment provided by engineer. + + + Migrate from another device + No comment provided by engineer. + + + Migrate here + No comment provided by engineer. + + + Migrate to another device + No comment provided by engineer. + + + Migrate to another device via QR code. + No comment provided by engineer. + + + Migrating + No comment provided by engineer. + Migrating database archive… กำลังย้ายข้อมูลที่เก็บถาวรของฐานข้อมูล… No comment provided by engineer. + + Migration complete + No comment provided by engineer. + Migration error: ข้อผิดพลาดในการย้ายข้อมูล: @@ -3674,6 +3858,10 @@ This is your link for group %@! Open group No comment provided by engineer. + + Open migration to another device + authentication reason + Open user profiles เปิดโปรไฟล์ผู้ใช้ @@ -3688,10 +3876,18 @@ This is your link for group %@! Opening app… No comment provided by engineer. + + Or paste archive link + No comment provided by engineer. + Or scan QR code No comment provided by engineer. + + Or securely share this file link + No comment provided by engineer. + Or show this code No comment provided by engineer. @@ -3772,6 +3968,10 @@ This is your link for group %@! ข้อผิดพลาดในการถอดรหัสอย่างถาวร message decrypt error item + + Picture-in-picture calls + No comment provided by engineer. + Please ask your contact to enable sending voice messages. โปรดขอให้ผู้ติดต่อของคุณเปิดใช้งานการส่งข้อความเสียง @@ -3792,6 +3992,10 @@ This is your link for group %@! โปรดตรวจสอบความต้องการของคุณและการตั้งค่าผู้ติดต่อ No comment provided by engineer. + + Please confirm that network settings are correct for this device. + No comment provided by engineer. + Please contact developers. Error: %@ @@ -3847,6 +4051,10 @@ Error: %@ อาจเป็นไปได้ว่าลายนิ้วมือของ certificate ในที่อยู่เซิร์ฟเวอร์ไม่ถูกต้อง server test error + + Post-quantum E2EE + No comment provided by engineer. + Preserve the last message draft, with attachments. เก็บข้อความที่ร่างไว้ล่าสุดพร้อมไฟล์แนบ @@ -3979,6 +4187,14 @@ Error: %@ การแจ้งเตือนแบบทันที No comment provided by engineer. + + Push server + No comment provided by engineer. + + + Quantum resistant encryption + No comment provided by engineer. + Rate the app ให้คะแนนแอป @@ -4159,10 +4375,22 @@ Error: %@ Repeat connection request? No comment provided by engineer. + + Repeat download + No comment provided by engineer. + + + Repeat import + No comment provided by engineer. + Repeat join request? No comment provided by engineer. + + Repeat upload + No comment provided by engineer. + Reply ตอบ @@ -4262,6 +4490,10 @@ Error: %@ เซิร์ฟเวอร์ SMP No comment provided by engineer. + + Safer groups + No comment provided by engineer. + Save บันทึก @@ -4618,6 +4850,10 @@ Error: %@ ตั้งรหัสผ่าน No comment provided by engineer. + + Set passphrase + No comment provided by engineer. + Set passphrase to export ตั้งรหัสผ่านเพื่อส่งออก @@ -4672,6 +4908,10 @@ Error: %@ แชร์กับผู้ติดต่อ No comment provided by engineer. + + Show QR code + No comment provided by engineer. + Show calls in phone history แสดงการโทรในประวัติการโทร @@ -4808,6 +5048,10 @@ Error: %@ หยุด SimpleX authentication reason + + Stop chat + No comment provided by engineer. + Stop chat to enable database actions หยุดการแชทเพื่อเปิดใช้งานการดำเนินการกับฐานข้อมูล @@ -4848,6 +5092,10 @@ Error: %@ หยุดแชร์ที่อยู่ไหม? No comment provided by engineer. + + Stopping chat + No comment provided by engineer. + Submit ส่ง @@ -5090,6 +5338,14 @@ It can happen because of some bug or when the connection is compromised.การดำเนินการนี้ไม่สามารถยกเลิกได้ - โปรไฟล์ ผู้ติดต่อ ข้อความ และไฟล์ของคุณจะสูญหายไปอย่างถาวร No comment provided by engineer. + + This chat is protected by end-to-end encryption. + E2EE info chat item + + + This chat is protected by quantum resistant end-to-end encryption. + E2EE info chat item + This device name No comment provided by engineer. @@ -5368,11 +5624,19 @@ To connect, please ask your contact to create another connection link and check อัปเกรดและเปิดการแชท No comment provided by engineer. + + Upload failed + No comment provided by engineer. + Upload file อัปโหลดไฟล์ server test step + + Uploading archive + No comment provided by engineer. + Use .onion hosts ใช้โฮสต์ .onion @@ -5419,6 +5683,10 @@ To connect, please ask your contact to create another connection link and check ใช้เซิร์ฟเวอร์ No comment provided by engineer. + + Use the app while in the call. + No comment provided by engineer. + User profile โปรไฟล์ผู้ใช้ @@ -5451,6 +5719,14 @@ To connect, please ask your contact to create another connection link and check Verify connections No comment provided by engineer. + + Verify database passphrase + No comment provided by engineer. + + + Verify passphrase + No comment provided by engineer. + Verify security code ตรวจสอบรหัสความปลอดภัย @@ -5538,6 +5814,10 @@ To connect, please ask your contact to create another connection link and check กําลังรอวิดีโอ No comment provided by engineer. + + Warning: starting chat on multiple devices is not supported and will cause message delivery failures + No comment provided by engineer. + Warning: you may lose some data! คำเตือน: คุณอาจสูญเสียข้อมูลบางส่วน! @@ -5558,6 +5838,10 @@ To connect, please ask your contact to create another connection link and check ข้อความต้อนรับ No comment provided by engineer. + + Welcome message is too long + No comment provided by engineer. + What's new มีอะไรใหม่ @@ -5611,6 +5895,10 @@ To connect, please ask your contact to create another connection link and check คุณ No comment provided by engineer. + + You **must not** use the same database on two devices. + No comment provided by engineer. + You accepted connection คุณยอมรับการเชื่อมต่อ @@ -5690,6 +5978,10 @@ Repeat join request? คุณสามารถเปิดใช้งานได้ในภายหลังผ่านการตั้งค่าความเป็นส่วนตัวและความปลอดภัยของแอป No comment provided by engineer. + + You can give another try. + No comment provided by engineer. + You can hide or mute a user profile - swipe it to the right. คุณสามารถซ่อนหรือปิดเสียงโปรไฟล์ผู้ใช้ - ปัดไปทางขวา @@ -6071,7 +6363,7 @@ SimpleX servers cannot see your profile. blocked - No comment provided by engineer. + marked deleted chat item preview text blocked %@ @@ -6079,7 +6371,7 @@ SimpleX servers cannot see your profile. blocked by admin - blocked chat item + marked deleted chat item preview text bold @@ -6503,7 +6795,7 @@ SimpleX servers cannot see your profile. moderated by %@ กลั่นกรองโดย %@ - No comment provided by engineer. + marked deleted chat item preview text months @@ -6572,6 +6864,10 @@ SimpleX servers cannot see your profile. เพื่อนต่อเพื่อน No comment provided by engineer. + + quantum resistant e2e encryption + chat item text + received answer… ได้รับคำตอบ… @@ -6642,6 +6938,10 @@ SimpleX servers cannot see your profile. set new profile picture profile update event chat item + + standard end-to-end encryption + chat item text + starting… กำลังเริ่มต้น… diff --git a/apps/ios/SimpleX Localizations/tr.xcloc/Localized Contents/tr.xliff b/apps/ios/SimpleX Localizations/tr.xcloc/Localized Contents/tr.xliff index 09bc39f141..d5264200c3 100644 --- a/apps/ios/SimpleX Localizations/tr.xcloc/Localized Contents/tr.xliff +++ b/apps/ios/SimpleX Localizations/tr.xcloc/Localized Contents/tr.xliff @@ -107,6 +107,10 @@ %@ bağlandı No comment provided by engineer. + + %@ downloaded + No comment provided by engineer. + %@ is connected! %@ bağlandı! @@ -127,6 +131,10 @@ %@ sunucuları No comment provided by engineer. + + %@ uploaded + No comment provided by engineer. + %@ wants to connect! %@ bağlanmak istiyor! @@ -214,21 +222,22 @@ %lld messages blocked - %lld mesajlar engellendi + %lld mesaj engellendi No comment provided by engineer. %lld messages blocked by admin + %lld mesaj yönetici tarafından engellendi No comment provided by engineer. %lld messages marked deleted - %lld mesajlar silinmiş olarak işaretlendi + %lld mesaj silinmiş olarak işaretlendi No comment provided by engineer. %lld messages moderated by %@ - %lld mesajları %@ tarafından yönetildi + %lld mesaj %@ tarafından yönetildi No comment provided by engineer. @@ -341,6 +350,10 @@ **En gizli**: SimpleX Chat bildirim sunucusunu kullanma, arkaplanda mesajları periyodik olarak kontrol edin (uygulamayı ne sıklıkta kullandığınıza bağlıdır). No comment provided by engineer. + + **Please note**: using the same database on two devices will break the decryption of messages from your connections, as a security protection. + No comment provided by engineer. + **Please note**: you will NOT be able to recover or change passphrase if you lose it. **Lütfen aklınızda bulunsun**: eğer parolanızı kaybederseniz parolanızı değiştirme veya geri kurtarma ihtimaliniz YOKTUR. @@ -356,6 +369,10 @@ **Dikkat**: Anında iletilen bildirimlere Anahtar Zinciri'nde kaydedilmiş parola gereklidir. No comment provided by engineer. + + **Warning**: the archive will be removed. + No comment provided by engineer. + **e2e encrypted** audio call **uçtan uca şifrelenmiş** sesli arama @@ -612,6 +629,10 @@ Adres değişikliği iptal edilecek. Eski alıcı adresi kullanılacaktır. No comment provided by engineer. + + Admins can block a member for all. + No comment provided by engineer. + Admins can create the links to join groups. Yöneticiler gruplara katılmak için bağlantılar oluşturabilir. @@ -619,7 +640,7 @@ Advanced network settings - GGelişmiş ağ ayarları + Gelişmiş ağ ayarları No comment provided by engineer. @@ -644,6 +665,7 @@ All messages will be deleted - this cannot be undone! + Tüm mesajlar silinecektir - bu geri alınamaz! No comment provided by engineer. @@ -666,6 +688,10 @@ Tüm kişileriniz bağlı kalacaktır. Profil güncellemesi kişilerinize gönderilecektir. No comment provided by engineer. + + All your contacts, conversations and files will be securely encrypted and uploaded in chunks to configured XFTP relays. + No comment provided by engineer. + Allow İzin ver @@ -683,6 +709,7 @@ Allow irreversible message deletion only if your contact allows it to you. (24 hours) + Konuştuğun kişi, kalıcı olarak silinebilen mesajlara izin veriyorsa sen de ver. (24 saat içinde) No comment provided by engineer. @@ -707,6 +734,7 @@ Allow to irreversibly delete sent messages. (24 hours) + Gönderilen mesajların kalıcı olarak silinmesine izin ver. (24 saat içinde) No comment provided by engineer. @@ -741,6 +769,7 @@ Allow your contacts to irreversibly delete sent messages. (24 hours) + Kişilerinin gönderilen mesajları kalıcı olarak silmesine izin ver. (24 saat içinde) No comment provided by engineer. @@ -788,6 +817,10 @@ Uygulama sürümü: %@ No comment provided by engineer. + + App data migration + No comment provided by engineer. + App encrypts new local files (except videos). Uygulama yerel dosyaları şifreler (videolar dışında). @@ -823,6 +856,18 @@ Görünüş No comment provided by engineer. + + Apply + No comment provided by engineer. + + + Archive and upload + No comment provided by engineer. + + + Archiving database + No comment provided by engineer. + Attach Ekle @@ -920,6 +965,7 @@ Block for all + Herkes için engelle No comment provided by engineer. @@ -934,6 +980,7 @@ Block member for all? + Üye herkes için engellensin mi? No comment provided by engineer. @@ -943,6 +990,7 @@ Blocked by admin + Yönetici tarafından engellendi No comment provided by engineer. @@ -952,6 +1000,7 @@ Both you and your contact can irreversibly delete sent messages. (24 hours) + Konuştuğun kişi ve sen mesajları kalıcı olarak silebilirsiniz. (24 saat içinde) No comment provided by engineer. @@ -1009,6 +1058,10 @@ İptal et No comment provided by engineer. + + Cancel migration + No comment provided by engineer. + Cannot access keychain to save database password Veritabanı şifresini kaydetmek için Anahtar Zinciri'ne erişilemiyor @@ -1110,6 +1163,10 @@ Sohbet durduruldu. Bu veritabanını zaten başka bir cihazda kullandıysanız, sohbete başlamadan önce onu geri aktarmalısınız. No comment provided by engineer. + + Chat migrated! + No comment provided by engineer. + Chat preferences Sohbet tercihleri @@ -1130,6 +1187,10 @@ Çince ve İspanyolca arayüz No comment provided by engineer. + + Choose _Migrate from another device_ on the new device and scan QR code. + No comment provided by engineer. + Choose file Dosya seç @@ -1157,6 +1218,7 @@ Clear private notes? + Gizli notlar temizlensin mi? No comment provided by engineer. @@ -1199,6 +1261,10 @@ Veritabanı geliştirmelerini onayla No comment provided by engineer. + + Confirm network settings + No comment provided by engineer. + Confirm new passphrase… Yeni parolayı onayla… @@ -1209,6 +1275,14 @@ Şifreyi onayla No comment provided by engineer. + + Confirm that you remember database passphrase to migrate it. + No comment provided by engineer. + + + Confirm upload + No comment provided by engineer. + Connect Bağlan @@ -1455,10 +1529,12 @@ Bu senin kendi tek kullanımlık bağlantın! Created at + Şurada oluşturuldu No comment provided by engineer. Created at: %@ + Şurada oluşturuldu: %@ copied message info @@ -1466,6 +1542,10 @@ Bu senin kendi tek kullanımlık bağlantın! %@ de oluşturuldu No comment provided by engineer. + + Creating archive link + No comment provided by engineer. + Creating link… Link oluşturuluyor… @@ -1611,7 +1691,7 @@ Bu senin kendi tek kullanımlık bağlantın! Delete %lld messages? - %lld mesajları silinsin mi? + %lld mesaj silinsin mi? No comment provided by engineer. @@ -1686,6 +1766,10 @@ Bu geri alınamaz! Veritabanını sil No comment provided by engineer. + + Delete database from this device + No comment provided by engineer. + Delete file Dosyayı sil @@ -1953,6 +2037,7 @@ Bu geri alınamaz! Do not send history to new members. + Yeni üyelere geçmişi gönderme. No comment provided by engineer. @@ -1975,11 +2060,23 @@ Bu geri alınamaz! Sürüm düşür ve sohbeti aç No comment provided by engineer. + + Download failed + No comment provided by engineer. + Download file Dosya indir server test step + + Downloading archive + No comment provided by engineer. + + + Downloading link details + No comment provided by engineer. + Duplicate display name! Yinelenen görünen ad! @@ -2035,6 +2132,10 @@ Bu geri alınamaz! Herkes için etkinleştir No comment provided by engineer. + + Enable in direct chats (BETA)! + No comment provided by engineer. + Enable instant notifications? Anlık bildirimler etkinleştirilsin mi? @@ -2150,6 +2251,10 @@ Bu geri alınamaz! Grup adı gir… No comment provided by engineer. + + Enter passphrase + No comment provided by engineer. + Enter passphrase… Parola gir… @@ -2210,6 +2315,10 @@ Bu geri alınamaz! Üye(ler) eklenirken hata oluştu No comment provided by engineer. + + Error allowing contact PQ encryption + No comment provided by engineer. + Error changing address Adres değiştirilirken hata oluştu @@ -2247,6 +2356,7 @@ Bu geri alınamaz! Error creating message + Mesaj oluşturulurken hata No comment provided by engineer. @@ -2299,6 +2409,10 @@ Bu geri alınamaz! Kullanıcı profili silinirken hata oluştu No comment provided by engineer. + + Error downloading the archive + No comment provided by engineer. + Error enabling delivery receipts! Görüldü bilgisi etkinleştirilirken hata oluştu! @@ -2374,6 +2488,10 @@ Bu geri alınamaz! Parolayı Anahtar Zincirine kaydederken hata oluştu No comment provided by engineer. + + Error saving settings + when migrating + Error saving user password Kullanıcı şifresi kaydedilirken hata oluştu @@ -2444,6 +2562,14 @@ Bu geri alınamaz! Kullanıcı gizliliği güncellenirken hata oluştu No comment provided by engineer. + + Error uploading the archive + No comment provided by engineer. + + + Error verifying passphrase: + No comment provided by engineer. + Error: Hata: @@ -2494,6 +2620,10 @@ Bu geri alınamaz! Dışarı çıkarılmış veritabanı arşivi. No comment provided by engineer. + + Exported file doesn't exist + No comment provided by engineer. + Exporting database archive… Dışarı çıkarılmış veritabanı arşivi… @@ -2564,6 +2694,14 @@ Bu geri alınamaz! Favori ve okunmamış sohbetleri filtrele. No comment provided by engineer. + + Finalize migration + No comment provided by engineer. + + + Finalize migration on another device. + No comment provided by engineer. + Finally, we have them! 🚀 Sonunda, onlara sahibiz! 🚀 @@ -2716,6 +2854,7 @@ Bu geri alınamaz! Group members can irreversibly delete sent messages. (24 hours) + Grup üyeleri, gönderilen mesajları kalıcı olarak silebilir. (24 saat içinde) No comment provided by engineer. @@ -2825,6 +2964,7 @@ Bu geri alınamaz! History is not sent to new members. + Yeni üyelere geçmiş gönderilmedi. No comment provided by engineer. @@ -2852,6 +2992,10 @@ Bu geri alınamaz! Sunucularını nasıl kullanabilirsin No comment provided by engineer. + + Hungarian interface + No comment provided by engineer. + ICE servers (one per line) ICE sunucuları (her satıra bir tane) @@ -2917,8 +3061,17 @@ Bu geri alınamaz! Veritabanını içe aktar No comment provided by engineer. + + Import failed + No comment provided by engineer. + + + Importing archive + No comment provided by engineer. + Improved message delivery + İyileştirilmiş mesaj iletimi No comment provided by engineer. @@ -2931,6 +3084,10 @@ Bu geri alınamaz! Geliştirilmiş sunucu yapılandırması No comment provided by engineer. + + In order to continue, chat should be stopped. + No comment provided by engineer. + In reply to Cevap olarak @@ -3035,6 +3192,7 @@ Bu geri alınamaz! Invalid display name! + Geçersiz görünen ad! No comment provided by engineer. @@ -3042,6 +3200,10 @@ Bu geri alınamaz! Geçersiz bağlantı No comment provided by engineer. + + Invalid migration confirmation + No comment provided by engineer. + Invalid name! Geçersiz isim! @@ -3145,6 +3307,7 @@ Bu geri alınamaz! Join group conversations + Grup sohbetlerine katıl No comment provided by engineer. @@ -3409,6 +3572,10 @@ Bu senin grup için bağlantın %@! Mesaj yazısı No comment provided by engineer. + + Message too large + No comment provided by engineer. + Messages Mesajlar @@ -3424,11 +3591,47 @@ Bu senin grup için bağlantın %@! %@ den gelen mesajlar gösterilecektir! No comment provided by engineer. + + Messages, files and calls are protected by **end-to-end encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Messages, files and calls are protected by **quantum resistant e2e encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Migrate device + No comment provided by engineer. + + + Migrate from another device + No comment provided by engineer. + + + Migrate here + No comment provided by engineer. + + + Migrate to another device + No comment provided by engineer. + + + Migrate to another device via QR code. + No comment provided by engineer. + + + Migrating + No comment provided by engineer. + Migrating database archive… Veritabanı arşivine geçiliyor… No comment provided by engineer. + + Migration complete + No comment provided by engineer. + Migration error: Geçiş hatası: @@ -3720,6 +3923,7 @@ Bu senin grup için bağlantın %@! Only you can irreversibly delete messages (your contact can mark them for deletion). (24 hours) + Mesajları yalnızca siz geri döndürülemez şekilde silebilirsiniz (kişiniz bunları silinmek üzere işaretleyebilir). (24 saat içinde) No comment provided by engineer. @@ -3744,6 +3948,7 @@ Bu senin grup için bağlantın %@! Only your contact can irreversibly delete messages (you can mark them for deletion). (24 hours) + Yalnızca kişiniz mesajları geri alınamaz şekilde silebilir (silinmeleri için işaretleyebilirsiniz). (24 saat içinde) No comment provided by engineer. @@ -3786,6 +3991,10 @@ Bu senin grup için bağlantın %@! Grubu aç No comment provided by engineer. + + Open migration to another device + authentication reason + Open user profiles Kullanıcı profillerini aç @@ -3801,11 +4010,19 @@ Bu senin grup için bağlantın %@! Uygulama açılıyor… No comment provided by engineer. + + Or paste archive link + No comment provided by engineer. + Or scan QR code Veya QR kodu okut No comment provided by engineer. + + Or securely share this file link + No comment provided by engineer. + Or show this code Veya bu kodu göster @@ -3853,6 +4070,7 @@ Bu senin grup için bağlantın %@! Past member %@ + Geçmiş üye %@ past/unknown group member @@ -3867,6 +4085,7 @@ Bu senin grup için bağlantın %@! Paste link to connect! + Bağlanmak için bağlantıyı yapıştır! No comment provided by engineer. @@ -3889,6 +4108,10 @@ Bu senin grup için bağlantın %@! Kalıcı şifre çözümü hatası message decrypt error item + + Picture-in-picture calls + No comment provided by engineer. + Please ask your contact to enable sending voice messages. Lütfen konuştuğunuz kişiden sesli mesaj göndermeyi etkinleştirmesini isteyin. @@ -3909,6 +4132,10 @@ Bu senin grup için bağlantın %@! Lütfen sizinkini ve iletişim tercihlerinizi kontrol edin. No comment provided by engineer. + + Please confirm that network settings are correct for this device. + No comment provided by engineer. + Please contact developers. Error: %@ @@ -3966,6 +4193,10 @@ Hata: %@ Muhtemelen, sunucu adresindeki parmakizi sertifikası doğru değil server test error + + Post-quantum E2EE + No comment provided by engineer. + Preserve the last message draft, with attachments. Son mesaj taslağını ekleriyle birlikte koru. @@ -4003,6 +4234,7 @@ Hata: %@ Private notes + Gizli notlar name of notes to self @@ -4100,6 +4332,14 @@ Hata: %@ Anında bildirimler No comment provided by engineer. + + Push server + No comment provided by engineer. + + + Quantum resistant encryption + No comment provided by engineer. + Rate the app Uygulamayı değerlendir @@ -4187,6 +4427,7 @@ Hata: %@ Recent history and improved [directory bot](simplex:/contact#/?v=1-4&smp=smp%3A%2F%2Fu2dS9sG8nMNURyZwqASV4yROM28Er0luVTx5X1CsMrU%3D%40smp4.simplex.im%2FeXSPwqTkKyDO3px4fLf1wx3MvPdjdLW3%23%2F%3Fv%3D1-2%26dh%3DMCowBQYDK2VuAyEAaiv6MkMH44L2TcYrt_CsX3ZvM11WgbMEUn0hkIKTOho%253D%26srv%3Do5vmywmrnaxalvz6wi3zicyftgio6psuvyniis6gco6bp6ekl4cqj4id.onion). + Yakın geçmiş ve geliştirilmiş [dizin botu](simplex:/contact#/?v=1-4&smp=smp%3A%2F%2Fu2dS9sG8nMNURyZwqASV4yROM28Er0luVTx5X1CsMrU%3D%40smp4.simplex. im%2FeXSPwqTkKyDO3px4fLf1wx3MvPdjdLW3%23%2F%3Fv%3D1-2%26dh%3DMCowBQYDK2VuAyEAaiv6MkMH44L2TcYrt_CsX3ZvM11WgbMEUn0hkIKTOho%253D%26srv%3Do5vmywmrnaxalvz6wi3zicyftgio6psuvyniis6gco6bp6ekl4cqj4id.onion). No comment provided by engineer. @@ -4284,11 +4525,23 @@ Hata: %@ Bağlantı isteği tekrarlansın mı? No comment provided by engineer. + + Repeat download + No comment provided by engineer. + + + Repeat import + No comment provided by engineer. + Repeat join request? Katılma isteği tekrarlansın mı? No comment provided by engineer. + + Repeat upload + No comment provided by engineer. + Reply Yanıtla @@ -4389,6 +4642,10 @@ Hata: %@ SMP sunucuları No comment provided by engineer. + + Safer groups + No comment provided by engineer. + Save Kaydet @@ -4476,6 +4733,7 @@ Hata: %@ Saved message + Kaydedilmiş mesaj message info title @@ -4510,6 +4768,7 @@ Hata: %@ Search bar accepts invitation links. + Arama çubuğu davet bağlantılarını kabul eder. No comment provided by engineer. @@ -4624,6 +4883,7 @@ Hata: %@ Send up to 100 last messages to new members. + Yeni üyelere 100 adete kadar son mesajları gönderin. No comment provided by engineer. @@ -4751,6 +5011,10 @@ Hata: %@ Şifre ayarla No comment provided by engineer. + + Set passphrase + No comment provided by engineer. + Set passphrase to export Dışa aktarmak için parola ayarla @@ -4806,6 +5070,10 @@ Hata: %@ Kişilerle paylaş No comment provided by engineer. + + Show QR code + No comment provided by engineer. + Show calls in phone history Telefon geçmişinde aramaları göster @@ -4946,6 +5214,10 @@ Hata: %@ SimpleX'i durdur authentication reason + + Stop chat + No comment provided by engineer. + Stop chat to enable database actions Veritabanı eylemlerini etkinleştirmek için sohbeti durdur @@ -4986,6 +5258,10 @@ Hata: %@ Adresi paylaşmak durdurulsun mu? No comment provided by engineer. + + Stopping chat + No comment provided by engineer. + Submit Gönder @@ -5233,6 +5509,14 @@ Bazı hatalar nedeniyle veya bağlantı tehlikeye girdiğinde meydana gelebilir. Bu işlem geri alınamaz - profiliniz, kişileriniz, mesajlarınız ve dosyalarınız geri döndürülemez şekilde kaybolacaktır. No comment provided by engineer. + + This chat is protected by end-to-end encryption. + E2EE info chat item + + + This chat is protected by quantum resistant end-to-end encryption. + E2EE info chat item + This device name Bu cihazın ismi @@ -5240,6 +5524,8 @@ Bazı hatalar nedeniyle veya bağlantı tehlikeye girdiğinde meydana gelebilir. This display name is invalid. Please choose another name. + Görünen ad geçerli değil. + Lütfen başka bir ad seç. No comment provided by engineer. @@ -5346,6 +5632,7 @@ Bu özellik etkinleştirilmeden önce kimlik doğrulamayı tamamlamanız istenec Turkish interface + Türkçe arayüz No comment provided by engineer. @@ -5370,6 +5657,7 @@ Bu özellik etkinleştirilmeden önce kimlik doğrulamayı tamamlamanız istenec Unblock for all + Herkes için engeli kaldır No comment provided by engineer. @@ -5379,6 +5667,7 @@ Bu özellik etkinleştirilmeden önce kimlik doğrulamayı tamamlamanız istenec Unblock member for all? + Üyenin engeli herkes için kaldırılsın mı? No comment provided by engineer. @@ -5480,6 +5769,7 @@ Bağlanmak için lütfen kişinizden başka bir bağlantı oluşturmasını iste Up to 100 last messages are sent to new members. + Yeni üyelere 100e kadar en son mesajlar gönderildi. No comment provided by engineer. @@ -5522,11 +5812,19 @@ Bağlanmak için lütfen kişinizden başka bir bağlantı oluşturmasını iste Yükselt ve sohbeti aç No comment provided by engineer. + + Upload failed + No comment provided by engineer. + Upload file Dosya yükle server test step + + Uploading archive + No comment provided by engineer. + Use .onion hosts .onion ana bilgisayarlarını kullan @@ -5577,6 +5875,10 @@ Bağlanmak için lütfen kişinizden başka bir bağlantı oluşturmasını iste Sunucu kullan No comment provided by engineer. + + Use the app while in the call. + No comment provided by engineer. + User profile Kullanıcı profili @@ -5612,6 +5914,14 @@ Bağlanmak için lütfen kişinizden başka bir bağlantı oluşturmasını iste Bağlantıları doğrula No comment provided by engineer. + + Verify database passphrase + No comment provided by engineer. + + + Verify passphrase + No comment provided by engineer. + Verify security code Güvenlik kodunu doğrula @@ -5654,6 +5964,7 @@ Bağlanmak için lütfen kişinizden başka bir bağlantı oluşturmasını iste Visible history + Görünür geçmiş chat feature @@ -5701,6 +6012,10 @@ Bağlanmak için lütfen kişinizden başka bir bağlantı oluşturmasını iste Video bekleniyor No comment provided by engineer. + + Warning: starting chat on multiple devices is not supported and will cause message delivery failures + No comment provided by engineer. + Warning: you may lose some data! Uyarı: Bazı verileri kaybedebilirsin! @@ -5721,6 +6036,10 @@ Bağlanmak için lütfen kişinizden başka bir bağlantı oluşturmasını iste Karşılama mesajı No comment provided by engineer. + + Welcome message is too long + No comment provided by engineer. + What's new Neler yeni @@ -5743,6 +6062,7 @@ Bağlanmak için lütfen kişinizden başka bir bağlantı oluşturmasını iste With encrypted files and media. + Şifrelenmiş dosyalar ve medya ile birlikte. No comment provided by engineer. @@ -5752,6 +6072,7 @@ Bağlanmak için lütfen kişinizden başka bir bağlantı oluşturmasını iste With reduced battery usage. + Azaltılmış pil kullanımı ile birlikte. No comment provided by engineer. @@ -5774,6 +6095,10 @@ Bağlanmak için lütfen kişinizden başka bir bağlantı oluşturmasını iste Sen No comment provided by engineer. + + You **must not** use the same database on two devices. + No comment provided by engineer. + You accepted connection Bağlantıyı onayladın @@ -5861,6 +6186,10 @@ Katılma isteği tekrarlansın mı? Daha sonra uygulamanın Gizlilik ve Güvenlik ayarlarından etkinleştirebilirsiniz. No comment provided by engineer. + + You can give another try. + No comment provided by engineer. + You can hide or mute a user profile - swipe it to the right. Bir kullanıcı profilini gizleyebilir veya sessize alabilirsiniz - sağa kaydırın. @@ -6255,15 +6584,17 @@ SimpleX sunucuları profilinizi göremez. blocked engellendi - No comment provided by engineer. + marked deleted chat item preview text blocked %@ + engellendi %@ rcv group event chat item blocked by admin - blocked chat item + yönetici tarafından engellendi + marked deleted chat item preview text bold @@ -6387,6 +6718,7 @@ SimpleX sunucuları profilinizi göremez. contact %1$@ changed to %2$@ + %1$@ kişisi %2$@ olarak değişti profile update event chat item @@ -6546,7 +6878,7 @@ SimpleX sunucuları profilinizi göremez. event happened - etkinliği yaşandı + etkinlik yaşandı No comment provided by engineer. @@ -6621,7 +6953,7 @@ SimpleX sunucuları profilinizi göremez. invited %@ - %@ a davet edildi + %@ davet edildi rcv group event chat item @@ -6661,6 +6993,7 @@ SimpleX sunucuları profilinizi göremez. member %1$@ changed to %2$@ + kişi %1$@ , %2$@ olarak değişti profile update event chat item @@ -6691,7 +7024,7 @@ SimpleX sunucuları profilinizi göremez. moderated by %@ %@ tarafından yönetilmekte - No comment provided by engineer. + marked deleted chat item preview text months @@ -6760,6 +7093,10 @@ SimpleX sunucuları profilinizi göremez. eşler arası No comment provided by engineer. + + quantum resistant e2e encryption + chat item text + received answer… alınan cevap… @@ -6787,10 +7124,12 @@ SimpleX sunucuları profilinizi göremez. removed contact address + kişi adresi silindi profile update event chat item removed profile picture + profil fotoğrafı silindi profile update event chat item @@ -6825,12 +7164,18 @@ SimpleX sunucuları profilinizi göremez. set new contact address + yeni kişi adresi ayarla profile update event chat item set new profile picture + yeni profil fotoğrafı ayarla profile update event chat item + + standard end-to-end encryption + chat item text + starting… başlatılıyor… @@ -6838,7 +7183,7 @@ SimpleX sunucuları profilinizi göremez. strike - grev + çizik No comment provided by engineer. @@ -6848,6 +7193,7 @@ SimpleX sunucuları profilinizi göremez. unblocked %@ + engeli kaldırıldı %@ rcv group event chat item @@ -6857,6 +7203,7 @@ SimpleX sunucuları profilinizi göremez. unknown status + bilinmeyen durum No comment provided by engineer. @@ -6866,6 +7213,7 @@ SimpleX sunucuları profilinizi göremez. updated profile + güncellenmiş profil profile update event chat item @@ -6940,6 +7288,7 @@ SimpleX sunucuları profilinizi göremez. you blocked %@ + engelledin %@ snd group event chat item @@ -6984,6 +7333,7 @@ SimpleX sunucuları profilinizi göremez. you unblocked %@ + engelini kaldırdın %@ snd group event chat item @@ -6993,7 +7343,7 @@ SimpleX sunucuları profilinizi göremez. \~strike~ - \~strike~ + \~çizik~ No comment provided by engineer. diff --git a/apps/ios/SimpleX Localizations/uk.xcloc/Localized Contents/uk.xliff b/apps/ios/SimpleX Localizations/uk.xcloc/Localized Contents/uk.xliff index 566f97e546..19b46bfc45 100644 --- a/apps/ios/SimpleX Localizations/uk.xcloc/Localized Contents/uk.xliff +++ b/apps/ios/SimpleX Localizations/uk.xcloc/Localized Contents/uk.xliff @@ -107,6 +107,10 @@ %@ підключено No comment provided by engineer. + + %@ downloaded + No comment provided by engineer. + %@ is connected! %@ підключено! @@ -127,6 +131,10 @@ %@ сервери No comment provided by engineer. + + %@ uploaded + No comment provided by engineer. + %@ wants to connect! %@ хоче підключитися! @@ -219,6 +227,7 @@ %lld messages blocked by admin + %lld повідомлень заблоковано адміністратором No comment provided by engineer. @@ -318,6 +327,7 @@ **Add contact**: to create a new invitation link, or connect via a link you received. + **Додати контакт**: створити нове посилання-запрошення або підключитися за отриманим посиланням. No comment provided by engineer. @@ -327,6 +337,7 @@ **Create group**: to create a new group. + **Створити групу**: створити нову групу. No comment provided by engineer. @@ -339,6 +350,10 @@ **Найбільш приватний**: не використовуйте сервер сповіщень SimpleX Chat, періодично перевіряйте повідомлення у фоновому режимі (залежить від того, як часто ви користуєтесь додатком). No comment provided by engineer. + + **Please note**: using the same database on two devices will break the decryption of messages from your connections, as a security protection. + No comment provided by engineer. + **Please note**: you will NOT be able to recover or change passphrase if you lose it. **Зверніть увагу: ви НЕ зможете відновити або змінити пароль, якщо втратите його. @@ -354,6 +369,10 @@ **Попередження**: Для отримання миттєвих пуш-сповіщень потрібна парольна фраза, збережена у брелоку. No comment provided by engineer. + + **Warning**: the archive will be removed. + No comment provided by engineer. + **e2e encrypted** audio call **e2e encrypted** аудіодзвінок @@ -567,6 +586,7 @@ Add contact + Додати контакт No comment provided by engineer. @@ -609,6 +629,10 @@ Зміна адреси буде скасована. Буде використано стару адресу отримання. No comment provided by engineer. + + Admins can block a member for all. + No comment provided by engineer. + Admins can create the links to join groups. Адміни можуть створювати посилання для приєднання до груп. @@ -641,6 +665,7 @@ All messages will be deleted - this cannot be undone! + Усі повідомлення будуть видалені - цю дію не можна скасувати! No comment provided by engineer. @@ -663,6 +688,10 @@ Всі ваші контакти залишаться на зв'язку. Повідомлення про оновлення профілю буде надіслано вашим контактам. No comment provided by engineer. + + All your contacts, conversations and files will be securely encrypted and uploaded in chunks to configured XFTP relays. + No comment provided by engineer. + Allow Дозволити @@ -788,6 +817,10 @@ Збірка програми: %@ No comment provided by engineer. + + App data migration + No comment provided by engineer. + App encrypts new local files (except videos). Додаток шифрує нові локальні файли (крім відео). @@ -823,6 +856,18 @@ Зовнішній вигляд No comment provided by engineer. + + Apply + No comment provided by engineer. + + + Archive and upload + No comment provided by engineer. + + + Archiving database + No comment provided by engineer. + Attach Прикріпити @@ -920,6 +965,7 @@ Block for all + Заблокувати для всіх No comment provided by engineer. @@ -934,6 +980,7 @@ Block member for all? + Заблокувати учасника для всіх? No comment provided by engineer. @@ -943,6 +990,7 @@ Blocked by admin + Заблокований адміністратором No comment provided by engineer. @@ -992,6 +1040,7 @@ Camera not available + Камера недоступна No comment provided by engineer. @@ -1009,6 +1058,10 @@ Скасувати No comment provided by engineer. + + Cancel migration + No comment provided by engineer. + Cannot access keychain to save database password Не вдається отримати доступ до зв'язки ключів для збереження пароля до бази даних @@ -1107,6 +1160,11 @@ Chat is stopped. If you already used this database on another device, you should transfer it back before starting chat. + Чат зупинено. Якщо ви вже використовували цю базу даних на іншому пристрої, перенесіть її назад перед запуском чату. + No comment provided by engineer. + + + Chat migrated! No comment provided by engineer. @@ -1129,6 +1187,10 @@ Інтерфейс китайською та іспанською мовами No comment provided by engineer. + + Choose _Migrate from another device_ on the new device and scan QR code. + No comment provided by engineer. + Choose file Виберіть файл @@ -1198,6 +1260,10 @@ Підтвердити оновлення бази даних No comment provided by engineer. + + Confirm network settings + No comment provided by engineer. + Confirm new passphrase… Підтвердіть нову парольну фразу… @@ -1208,6 +1274,14 @@ Підтвердити пароль No comment provided by engineer. + + Confirm that you remember database passphrase to migrate it. + No comment provided by engineer. + + + Confirm upload + No comment provided by engineer. + Connect Підключіться @@ -1457,6 +1531,10 @@ This is your own one-time link! Створено %@ No comment provided by engineer. + + Creating archive link + No comment provided by engineer. + Creating link… No comment provided by engineer. @@ -1672,6 +1750,10 @@ This cannot be undone! Видалити базу даних No comment provided by engineer. + + Delete database from this device + No comment provided by engineer. + Delete file Видалити файл @@ -1955,11 +2037,23 @@ This cannot be undone! Пониження та відкритий чат No comment provided by engineer. + + Download failed + No comment provided by engineer. + Download file Завантажити файл server test step + + Downloading archive + No comment provided by engineer. + + + Downloading link details + No comment provided by engineer. + Duplicate display name! Дублююче ім'я користувача! @@ -2014,6 +2108,10 @@ This cannot be undone! Увімкнути для всіх No comment provided by engineer. + + Enable in direct chats (BETA)! + No comment provided by engineer. + Enable instant notifications? Увімкнути миттєві сповіщення? @@ -2123,6 +2221,10 @@ This cannot be undone! Enter group name… No comment provided by engineer. + + Enter passphrase + No comment provided by engineer. + Enter passphrase… Введіть пароль… @@ -2181,6 +2283,10 @@ This cannot be undone! Помилка додавання користувача(ів) No comment provided by engineer. + + Error allowing contact PQ encryption + No comment provided by engineer. + Error changing address Помилка зміни адреси @@ -2268,6 +2374,10 @@ This cannot be undone! Помилка видалення профілю користувача No comment provided by engineer. + + Error downloading the archive + No comment provided by engineer. + Error enabling delivery receipts! Помилка активації підтвердження доставлення! @@ -2342,6 +2452,10 @@ This cannot be undone! Помилка збереження пароля на keychain No comment provided by engineer. + + Error saving settings + when migrating + Error saving user password Помилка збереження пароля користувача @@ -2410,6 +2524,14 @@ This cannot be undone! Помилка оновлення конфіденційності користувача No comment provided by engineer. + + Error uploading the archive + No comment provided by engineer. + + + Error verifying passphrase: + No comment provided by engineer. + Error: Помилка: @@ -2459,6 +2581,10 @@ This cannot be undone! Експортований архів бази даних. No comment provided by engineer. + + Exported file doesn't exist + No comment provided by engineer. + Exporting database archive… Експорт архіву бази даних… @@ -2528,6 +2654,14 @@ This cannot be undone! Фільтруйте непрочитані та улюблені чати. No comment provided by engineer. + + Finalize migration + No comment provided by engineer. + + + Finalize migration on another device. + No comment provided by engineer. + Finally, we have them! 🚀 Нарешті, вони у нас є! 🚀 @@ -2813,6 +2947,10 @@ This cannot be undone! Як користуватися вашими серверами No comment provided by engineer. + + Hungarian interface + No comment provided by engineer. + ICE servers (one per line) Сервери ICE (по одному на лінію) @@ -2878,6 +3016,14 @@ This cannot be undone! Імпорт бази даних No comment provided by engineer. + + Import failed + No comment provided by engineer. + + + Importing archive + No comment provided by engineer. + Improved message delivery No comment provided by engineer. @@ -2892,6 +3038,10 @@ This cannot be undone! Покращена конфігурація сервера No comment provided by engineer. + + In order to continue, chat should be stopped. + No comment provided by engineer. + In reply to У відповідь на @@ -2999,6 +3149,10 @@ This cannot be undone! Invalid link No comment provided by engineer. + + Invalid migration confirmation + No comment provided by engineer. + Invalid name! No comment provided by engineer. @@ -3354,6 +3508,10 @@ This is your link for group %@! Текст повідомлення No comment provided by engineer. + + Message too large + No comment provided by engineer. + Messages Повідомлення @@ -3368,11 +3526,47 @@ This is your link for group %@! Messages from %@ will be shown! No comment provided by engineer. + + Messages, files and calls are protected by **end-to-end encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Messages, files and calls are protected by **quantum resistant e2e encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Migrate device + No comment provided by engineer. + + + Migrate from another device + No comment provided by engineer. + + + Migrate here + No comment provided by engineer. + + + Migrate to another device + No comment provided by engineer. + + + Migrate to another device via QR code. + No comment provided by engineer. + + + Migrating + No comment provided by engineer. + Migrating database archive… Перенесення архіву бази даних… No comment provided by engineer. + + Migration complete + No comment provided by engineer. + Migration error: Помилка міграції: @@ -3726,6 +3920,10 @@ This is your link for group %@! Open group No comment provided by engineer. + + Open migration to another device + authentication reason + Open user profiles Відкрити профілі користувачів @@ -3740,10 +3938,18 @@ This is your link for group %@! Opening app… No comment provided by engineer. + + Or paste archive link + No comment provided by engineer. + Or scan QR code No comment provided by engineer. + + Or securely share this file link + No comment provided by engineer. + Or show this code No comment provided by engineer. @@ -3824,6 +4030,10 @@ This is your link for group %@! Постійна помилка розшифрування message decrypt error item + + Picture-in-picture calls + No comment provided by engineer. + Please ask your contact to enable sending voice messages. Будь ласка, попросіть вашого контакту увімкнути відправку голосових повідомлень. @@ -3844,6 +4054,10 @@ This is your link for group %@! Будь ласка, перевірте свої та контактні налаштування. No comment provided by engineer. + + Please confirm that network settings are correct for this device. + No comment provided by engineer. + Please contact developers. Error: %@ @@ -3899,6 +4113,10 @@ Error: %@ Можливо, в адресі сервера неправильно вказано відбиток сертифіката server test error + + Post-quantum E2EE + No comment provided by engineer. + Preserve the last message draft, with attachments. Зберегти чернетку останнього повідомлення з вкладеннями. @@ -4031,6 +4249,14 @@ Error: %@ Push-повідомлення No comment provided by engineer. + + Push server + No comment provided by engineer. + + + Quantum resistant encryption + No comment provided by engineer. + Rate the app Оцініть додаток @@ -4213,10 +4439,22 @@ Error: %@ Repeat connection request? No comment provided by engineer. + + Repeat download + No comment provided by engineer. + + + Repeat import + No comment provided by engineer. + Repeat join request? No comment provided by engineer. + + Repeat upload + No comment provided by engineer. + Reply Відповісти @@ -4316,6 +4554,10 @@ Error: %@ Сервери SMP No comment provided by engineer. + + Safer groups + No comment provided by engineer. + Save Зберегти @@ -4674,6 +4916,10 @@ Error: %@ Встановити пароль No comment provided by engineer. + + Set passphrase + No comment provided by engineer. + Set passphrase to export Встановити ключову фразу для експорту @@ -4728,6 +4974,10 @@ Error: %@ Поділіться з контактами No comment provided by engineer. + + Show QR code + No comment provided by engineer. + Show calls in phone history Показувати дзвінки в історії дзвінків @@ -4866,6 +5116,10 @@ Error: %@ Зупинити SimpleX authentication reason + + Stop chat + No comment provided by engineer. + Stop chat to enable database actions Зупиніть чат, щоб увімкнути дії з базою даних @@ -4906,6 +5160,10 @@ Error: %@ Припинити ділитися адресою? No comment provided by engineer. + + Stopping chat + No comment provided by engineer. + Submit Надіслати @@ -5148,6 +5406,14 @@ It can happen because of some bug or when the connection is compromised.Цю дію неможливо скасувати - ваш профіль, контакти, повідомлення та файли будуть безповоротно втрачені. No comment provided by engineer. + + This chat is protected by end-to-end encryption. + E2EE info chat item + + + This chat is protected by quantum resistant end-to-end encryption. + E2EE info chat item + This device name No comment provided by engineer. @@ -5427,11 +5693,19 @@ To connect, please ask your contact to create another connection link and check Оновлення та відкритий чат No comment provided by engineer. + + Upload failed + No comment provided by engineer. + Upload file Завантажити файл server test step + + Uploading archive + No comment provided by engineer. + Use .onion hosts Використовуйте хости .onion @@ -5480,6 +5754,10 @@ To connect, please ask your contact to create another connection link and check Використовувати сервер No comment provided by engineer. + + Use the app while in the call. + No comment provided by engineer. + User profile Профіль користувача @@ -5512,6 +5790,14 @@ To connect, please ask your contact to create another connection link and check Verify connections No comment provided by engineer. + + Verify database passphrase + No comment provided by engineer. + + + Verify passphrase + No comment provided by engineer. + Verify security code Підтвердіть код безпеки @@ -5599,6 +5885,10 @@ To connect, please ask your contact to create another connection link and check Чекаємо на відео No comment provided by engineer. + + Warning: starting chat on multiple devices is not supported and will cause message delivery failures + No comment provided by engineer. + Warning: you may lose some data! Попередження: ви можете втратити деякі дані! @@ -5619,6 +5909,10 @@ To connect, please ask your contact to create another connection link and check Вітальне повідомлення No comment provided by engineer. + + Welcome message is too long + No comment provided by engineer. + What's new Що нового @@ -5672,6 +5966,10 @@ To connect, please ask your contact to create another connection link and check Ти No comment provided by engineer. + + You **must not** use the same database on two devices. + No comment provided by engineer. + You accepted connection Ви прийняли підключення @@ -5751,6 +6049,10 @@ Repeat join request? Ви можете увімкнути їх пізніше в налаштуваннях конфіденційності та безпеки програми. No comment provided by engineer. + + You can give another try. + No comment provided by engineer. + You can hide or mute a user profile - swipe it to the right. Ви можете приховати або вимкнути звук профілю користувача - проведіть по ньому вправо. @@ -6134,7 +6436,7 @@ SimpleX servers cannot see your profile. blocked - No comment provided by engineer. + marked deleted chat item preview text blocked %@ @@ -6142,7 +6444,7 @@ SimpleX servers cannot see your profile. blocked by admin - blocked chat item + marked deleted chat item preview text bold @@ -6568,7 +6870,7 @@ SimpleX servers cannot see your profile. moderated by %@ модерується %@ - No comment provided by engineer. + marked deleted chat item preview text months @@ -6637,6 +6939,10 @@ SimpleX servers cannot see your profile. одноранговий No comment provided by engineer. + + quantum resistant e2e encryption + chat item text + received answer… отримали відповідь… @@ -6707,6 +7013,10 @@ SimpleX servers cannot see your profile. set new profile picture profile update event chat item + + standard end-to-end encryption + chat item text + starting… починаючи… diff --git a/apps/ios/SimpleX Localizations/zh-Hans.xcloc/Localized Contents/zh-Hans.xliff b/apps/ios/SimpleX Localizations/zh-Hans.xcloc/Localized Contents/zh-Hans.xliff index 6209cfb41f..3bf27bff9c 100644 --- a/apps/ios/SimpleX Localizations/zh-Hans.xcloc/Localized Contents/zh-Hans.xliff +++ b/apps/ios/SimpleX Localizations/zh-Hans.xcloc/Localized Contents/zh-Hans.xliff @@ -89,6 +89,7 @@ %@ and %@ + %@ 和 %@ No comment provided by engineer. @@ -103,6 +104,11 @@ %@ connected + %@ 已连接 + No comment provided by engineer. + + + %@ downloaded No comment provided by engineer. @@ -125,6 +131,10 @@ %@ 服务器 No comment provided by engineer. + + %@ uploaded + No comment provided by engineer. + %@ wants to connect! %@ 要连接! @@ -132,6 +142,7 @@ %@, %@ and %lld members + %@, %@ 和 %lld 成员 No comment provided by engineer. @@ -201,6 +212,7 @@ %lld group events + %lld 群组事件 No comment provided by engineer. @@ -210,6 +222,7 @@ %lld messages blocked + %lld 条消息已屏蔽 No comment provided by engineer. @@ -330,6 +343,10 @@ **最私密**:不使用 SimpleX Chat 通知服务器,在后台定期检查消息(取决于您多经常使用应用程序)。 No comment provided by engineer. + + **Please note**: using the same database on two devices will break the decryption of messages from your connections, as a security protection. + No comment provided by engineer. + **Please note**: you will NOT be able to recover or change passphrase if you lose it. **请注意**:如果您丢失密码,您将无法恢复或者更改密码。 @@ -345,6 +362,10 @@ **警告**:及时推送通知需要保存在钥匙串的密码。 No comment provided by engineer. + + **Warning**: the archive will be removed. + No comment provided by engineer. + **e2e encrypted** audio call **端到端加密** 语音通话 @@ -387,6 +408,9 @@ - optionally notify deleted contacts. - profile names with spaces. - and more! + - 可选择通知已删除的联系人。 +- 带空格的个人资料名称。 +- 以及更多! No comment provided by engineer. @@ -554,6 +578,7 @@ Add contact + 添加联系人 No comment provided by engineer. @@ -596,6 +621,10 @@ 将中止地址更改。将使用旧接收地址。 No comment provided by engineer. + + Admins can block a member for all. + No comment provided by engineer. + Admins can create the links to join groups. 管理员可以创建链接以加入群组。 @@ -628,6 +657,7 @@ All messages will be deleted - this cannot be undone! + 所有消息都将被删除 - 这无法被撤销! No comment provided by engineer. @@ -649,6 +679,10 @@ 您的所有联系人将保持连接。个人资料更新将发送给您的联系人。 No comment provided by engineer. + + All your contacts, conversations and files will be securely encrypted and uploaded in chunks to configured XFTP relays. + No comment provided by engineer. + Allow 允许 @@ -746,10 +780,12 @@ Already connecting! + 已经在连接了! No comment provided by engineer. Already joining the group! + 已经加入了该群组! No comment provided by engineer. @@ -772,6 +808,10 @@ 应用程序构建:%@ No comment provided by engineer. + + App data migration + No comment provided by engineer. + App encrypts new local files (except videos). 应用程序为新的本地文件(视频除外)加密。 @@ -807,6 +847,18 @@ 外观 No comment provided by engineer. + + Apply + No comment provided by engineer. + + + Archive and upload + No comment provided by engineer. + + + Archiving database + No comment provided by engineer. + Attach 附件 @@ -874,6 +926,7 @@ Bad desktop address + 糟糕的桌面地址 No comment provided by engineer. @@ -888,6 +941,7 @@ Better groups + 更佳的群组 No comment provided by engineer. @@ -897,30 +951,37 @@ Block + 封禁 No comment provided by engineer. Block for all + 为所有人封禁 No comment provided by engineer. Block group members + 屏蔽群组成员 No comment provided by engineer. Block member + 封禁成员 No comment provided by engineer. Block member for all? + 为所有其他成员封禁该成员? No comment provided by engineer. Block member? + 封禁成员吗? No comment provided by engineer. Blocked by admin + 由管理员封禁 No comment provided by engineer. @@ -970,6 +1031,7 @@ Camera not available + 相机不可用 No comment provided by engineer. @@ -987,6 +1049,10 @@ 取消 No comment provided by engineer. + + Cancel migration + No comment provided by engineer. + Cannot access keychain to save database password 无法访问钥匙串以保存数据库密码 @@ -1085,6 +1151,11 @@ Chat is stopped. If you already used this database on another device, you should transfer it back before starting chat. + 聊天已停止。如果你已经在另一台设备商使用过此数据库,你应该在启动聊天前将数据库传输回来。 + No comment provided by engineer. + + + Chat migrated! No comment provided by engineer. @@ -1107,6 +1178,10 @@ 中文和西班牙文界面 No comment provided by engineer. + + Choose _Migrate from another device_ on the new device and scan QR code. + No comment provided by engineer. + Choose file 选择文件 @@ -1134,6 +1209,7 @@ Clear private notes? + 清除私密笔记? No comment provided by engineer. @@ -1176,6 +1252,10 @@ 确认数据库升级 No comment provided by engineer. + + Confirm network settings + No comment provided by engineer. + Confirm new passphrase… 确认新密码…… @@ -1186,6 +1266,14 @@ 确认密码 No comment provided by engineer. + + Confirm that you remember database passphrase to migrate it. + No comment provided by engineer. + + + Confirm upload + No comment provided by engineer. + Connect 连接 @@ -1193,6 +1281,7 @@ Connect automatically + 自动连接 No comment provided by engineer. @@ -1202,10 +1291,12 @@ Connect to desktop + 连接到桌面 No comment provided by engineer. Connect to yourself? + 连接到你自己? No comment provided by engineer. @@ -1238,10 +1329,12 @@ This is your own one-time link! Connected desktop + 已连接的桌面 No comment provided by engineer. Connected to desktop + 已连接到桌面 No comment provided by engineer. @@ -1256,6 +1349,7 @@ This is your own one-time link! Connecting to desktop + 正连接到桌面 No comment provided by engineer. @@ -1280,6 +1374,7 @@ This is your own one-time link! Connection terminated + 连接被终止 No comment provided by engineer. @@ -1363,6 +1458,7 @@ This is your own one-time link! Create a group using a random profile. + 使用随机身份创建群组 No comment provided by engineer. @@ -1377,6 +1473,7 @@ This is your own one-time link! Create group + 建群 No comment provided by engineer. @@ -1396,6 +1493,7 @@ This is your own one-time link! Create profile + 创建个人资料 No comment provided by engineer. @@ -1415,6 +1513,7 @@ This is your own one-time link! Created at + 创建于 No comment provided by engineer. @@ -1426,8 +1525,13 @@ This is your own one-time link! 创建于 %@ No comment provided by engineer. + + Creating archive link + No comment provided by engineer. + Creating link… + 创建链接中… No comment provided by engineer. @@ -1599,6 +1703,7 @@ This is your own one-time link! Delete and notify contact + 删除并通知联系人 No comment provided by engineer. @@ -1641,6 +1746,10 @@ This cannot be undone! 删除数据库 No comment provided by engineer. + + Delete database from this device + No comment provided by engineer. + Delete file 删除文件 @@ -1778,6 +1887,7 @@ This cannot be undone! Desktop address + 桌面地址 No comment provided by engineer. @@ -1786,6 +1896,7 @@ This cannot be undone! Desktop devices + 桌面设备 No comment provided by engineer. @@ -1880,6 +1991,7 @@ This cannot be undone! Disconnect desktop? + 断开桌面连接? No comment provided by engineer. @@ -1889,6 +2001,7 @@ This cannot be undone! Discover via local network + 通过本地网络发现 No comment provided by engineer. @@ -1903,6 +2016,7 @@ This cannot be undone! Do not send history to new members. + 不给新成员发送历史消息。 No comment provided by engineer. @@ -1925,11 +2039,23 @@ This cannot be undone! 降级并打开聊天 No comment provided by engineer. + + Download failed + No comment provided by engineer. + Download file 下载文件 server test step + + Downloading archive + No comment provided by engineer. + + + Downloading link details + No comment provided by engineer. + Duplicate display name! 重复的显示名! @@ -1977,6 +2103,7 @@ This cannot be undone! Enable camera access + 启用相机访问 No comment provided by engineer. @@ -1984,6 +2111,10 @@ This cannot be undone! 全部启用 No comment provided by engineer. + + Enable in direct chats (BETA)! + No comment provided by engineer. + Enable instant notifications? 启用即时通知? @@ -2075,10 +2206,12 @@ This cannot be undone! Encryption re-negotiation error + 加密重协商错误 message decrypt error item Encryption re-negotiation failed. + 加密重协商失败了。 No comment provided by engineer. @@ -2095,6 +2228,10 @@ This cannot be undone! Enter group name… No comment provided by engineer. + + Enter passphrase + No comment provided by engineer. + Enter passphrase… 输入密码…… @@ -2112,6 +2249,7 @@ This cannot be undone! Enter this device name… + 输入此设备名… No comment provided by engineer. @@ -2153,6 +2291,10 @@ This cannot be undone! 添加成员错误 No comment provided by engineer. + + Error allowing contact PQ encryption + No comment provided by engineer. + Error changing address 更改地址错误 @@ -2190,6 +2332,7 @@ This cannot be undone! Error creating message + 创建消息出错 No comment provided by engineer. @@ -2242,6 +2385,10 @@ This cannot be undone! 删除用户资料错误 No comment provided by engineer. + + Error downloading the archive + No comment provided by engineer. + Error enabling delivery receipts! 启用送达回执出错! @@ -2316,6 +2463,10 @@ This cannot be undone! 保存密码到钥匙串错误 No comment provided by engineer. + + Error saving settings + when migrating + Error saving user password 保存用户密码时出错 @@ -2385,6 +2536,14 @@ This cannot be undone! 更新用户隐私时出错 No comment provided by engineer. + + Error uploading the archive + No comment provided by engineer. + + + Error verifying passphrase: + No comment provided by engineer. + Error: 错误: @@ -2417,6 +2576,7 @@ This cannot be undone! Expand + 展开 chat item action @@ -2434,6 +2594,10 @@ This cannot be undone! 导出数据库归档。 No comment provided by engineer. + + Exported file doesn't exist + No comment provided by engineer. + Exporting database archive… 导出数据库档案中… @@ -2451,6 +2615,7 @@ This cannot be undone! Faster joining and more reliable messages. + 加入速度更快、信息更可靠。 No comment provided by engineer. @@ -2503,6 +2668,14 @@ This cannot be undone! 过滤未读和收藏的聊天记录。 No comment provided by engineer. + + Finalize migration + No comment provided by engineer. + + + Finalize migration on another device. + No comment provided by engineer. + Finally, we have them! 🚀 终于我们有它们了! 🚀 @@ -2550,6 +2723,7 @@ This cannot be undone! Found desktop + 找到了桌面 No comment provided by engineer. @@ -2574,6 +2748,7 @@ This cannot be undone! Fully decentralized – visible only to members. + 完全去中心化 - 仅对成员可见。 No comment provided by engineer. @@ -2602,6 +2777,7 @@ This cannot be undone! Group already exists! + 群已存在! No comment provided by engineer. @@ -2761,6 +2937,7 @@ This cannot be undone! History is not sent to new members. + 未发送历史消息给新成员。 No comment provided by engineer. @@ -2788,6 +2965,10 @@ This cannot be undone! 如何使用您的服务器 No comment provided by engineer. + + Hungarian interface + No comment provided by engineer. + ICE servers (one per line) ICE 服务器(每行一个) @@ -2853,8 +3034,17 @@ This cannot be undone! 导入数据库 No comment provided by engineer. + + Import failed + No comment provided by engineer. + + + Importing archive + No comment provided by engineer. + Improved message delivery + 改进了消息传递 No comment provided by engineer. @@ -2867,6 +3057,10 @@ This cannot be undone! 改进的服务器配置 No comment provided by engineer. + + In order to continue, chat should be stopped. + No comment provided by engineer. + In reply to 答复 @@ -2879,6 +3073,7 @@ This cannot be undone! Incognito groups + 匿名群组 No comment provided by engineer. @@ -2913,6 +3108,7 @@ This cannot be undone! Incompatible version + 不兼容的版本 No comment provided by engineer. @@ -2959,6 +3155,7 @@ This cannot be undone! Invalid QR code + 无效的二维码 No comment provided by engineer. @@ -2968,14 +3165,20 @@ This cannot be undone! Invalid display name! + 无效的显示名! No comment provided by engineer. Invalid link No comment provided by engineer. + + Invalid migration confirmation + No comment provided by engineer. + Invalid name! + 无效名称! No comment provided by engineer. @@ -3075,10 +3278,12 @@ This cannot be undone! Join group conversations + 加入群对话 No comment provided by engineer. Join group? + 加入群组? No comment provided by engineer. @@ -3102,6 +3307,7 @@ This is your link for group %@! Keep + 保留 No comment provided by engineer. @@ -3110,6 +3316,7 @@ This is your link for group %@! Keep unused invitation? + 保留未使用的邀请吗? No comment provided by engineer. @@ -3174,14 +3381,17 @@ This is your link for group %@! Link mobile and desktop apps! 🔗 + 连接移动端和桌面端应用程序!🔗 No comment provided by engineer. Linked desktop options + 已链接桌面选项 No comment provided by engineer. Linked desktops + 已链接桌面 No comment provided by engineer. @@ -3329,6 +3539,10 @@ This is your link for group %@! 消息正文 No comment provided by engineer. + + Message too large + No comment provided by engineer. + Messages 消息 @@ -3343,11 +3557,47 @@ This is your link for group %@! Messages from %@ will be shown! No comment provided by engineer. + + Messages, files and calls are protected by **end-to-end encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Messages, files and calls are protected by **quantum resistant e2e encryption** with perfect forward secrecy, repudiation and break-in recovery. + No comment provided by engineer. + + + Migrate device + No comment provided by engineer. + + + Migrate from another device + No comment provided by engineer. + + + Migrate here + No comment provided by engineer. + + + Migrate to another device + No comment provided by engineer. + + + Migrate to another device via QR code. + No comment provided by engineer. + + + Migrating + No comment provided by engineer. + Migrating database archive… 迁移数据库档案中… No comment provided by engineer. + + Migration complete + No comment provided by engineer. + Migration error: 迁移错误: @@ -3440,6 +3690,7 @@ This is your link for group %@! New chat + 新聊天 No comment provided by engineer. @@ -3544,6 +3795,7 @@ This is your link for group %@! Not compatible! + 不兼容! No comment provided by engineer. @@ -3567,6 +3819,7 @@ This is your link for group %@! OK + 好的 No comment provided by engineer. @@ -3701,8 +3954,13 @@ This is your link for group %@! Open group + 打开群 No comment provided by engineer. + + Open migration to another device + authentication reason + Open user profiles 打开用户个人资料 @@ -3717,12 +3975,22 @@ This is your link for group %@! Opening app… No comment provided by engineer. + + Or paste archive link + No comment provided by engineer. + Or scan QR code + 或者扫描二维码 + No comment provided by engineer. + + + Or securely share this file link No comment provided by engineer. Or show this code + 或者显示此码 No comment provided by engineer. @@ -3771,6 +4039,7 @@ This is your link for group %@! Paste desktop address + 粘贴桌面地址 No comment provided by engineer. @@ -3780,10 +4049,12 @@ This is your link for group %@! Paste link to connect! + 粘贴链接以连接! No comment provided by engineer. Paste the link you received + 粘贴您收到的链接 No comment provided by engineer. @@ -3801,6 +4072,10 @@ This is your link for group %@! 解密错误 message decrypt error item + + Picture-in-picture calls + No comment provided by engineer. + Please ask your contact to enable sending voice messages. 请让您的联系人启用发送语音消息。 @@ -3821,6 +4096,10 @@ This is your link for group %@! 请检查您和您的联系人偏好设置。 No comment provided by engineer. + + Please confirm that network settings are correct for this device. + No comment provided by engineer. + Please contact developers. Error: %@ @@ -3876,6 +4155,10 @@ Error: %@ 服务器地址中的证书指纹可能不正确 server test error + + Post-quantum E2EE + No comment provided by engineer. + Preserve the last message draft, with attachments. 保留最后的消息草稿及其附件。 @@ -3913,6 +4196,7 @@ Error: %@ Private notes + 私密笔记 name of notes to self @@ -3931,6 +4215,7 @@ Error: %@ Profile name: + 显示名: No comment provided by engineer. @@ -4008,6 +4293,14 @@ Error: %@ 推送通知 No comment provided by engineer. + + Push server + No comment provided by engineer. + + + Quantum resistant encryption + No comment provided by engineer. + Rate the app 评价此应用程序 @@ -4035,6 +4328,7 @@ Error: %@ Read more in [User Guide](https://simplex.chat/docs/guide/chat-profiles.html#incognito-mode). + 阅读更多[User Guide](https://simplex.chat/docs/guide/chat-profiles.html#incognito-mode)。 No comment provided by engineer. @@ -4188,10 +4482,24 @@ Error: %@ Repeat connection request? + 重复连接请求吗? + No comment provided by engineer. + + + Repeat download + No comment provided by engineer. + + + Repeat import No comment provided by engineer. Repeat join request? + 重复加入请求吗? + No comment provided by engineer. + + + Repeat upload No comment provided by engineer. @@ -4251,6 +4559,7 @@ Error: %@ Retry + 重试 No comment provided by engineer. @@ -4293,6 +4602,10 @@ Error: %@ SMP 服务器 No comment provided by engineer. + + Safer groups + No comment provided by engineer. + Save 保存 @@ -4380,6 +4693,7 @@ Error: %@ Saved message + 已保存的消息 message info title @@ -4389,6 +4703,7 @@ Error: %@ Scan QR code from desktop + 从桌面扫描二维码 No comment provided by engineer. @@ -4413,10 +4728,12 @@ Error: %@ Search bar accepts invitation links. + 搜索栏接受邀请链接。 No comment provided by engineer. Search or paste SimpleX link + 搜索或粘贴 SimpleX 链接 No comment provided by engineer. @@ -4526,6 +4843,7 @@ Error: %@ Send up to 100 last messages to new members. + 给新成员发送最多 100 条历史消息。 No comment provided by engineer. @@ -4625,6 +4943,7 @@ Error: %@ Session code + 会话码 No comment provided by engineer. @@ -4652,6 +4971,10 @@ Error: %@ 设置密码 No comment provided by engineer. + + Set passphrase + No comment provided by engineer. + Set passphrase to export 设置密码来导出 @@ -4699,6 +5022,7 @@ Error: %@ Share this 1-time invite link + 分享此一次性邀请链接 No comment provided by engineer. @@ -4706,6 +5030,10 @@ Error: %@ 与联系人分享 No comment provided by engineer. + + Show QR code + No comment provided by engineer. + Show calls in phone history 在电话历史记录中显示通话 @@ -4828,6 +5156,7 @@ Error: %@ Start chat? + 启动聊天吗? No comment provided by engineer. @@ -4845,6 +5174,10 @@ Error: %@ 停止 SimpleX authentication reason + + Stop chat + No comment provided by engineer. + Stop chat to enable database actions 停止聊天以启用数据库操作 @@ -4885,6 +5218,10 @@ Error: %@ 停止分享地址? No comment provided by engineer. + + Stopping chat + No comment provided by engineer. + Submit 提交 @@ -4937,6 +5274,7 @@ Error: %@ Tap to Connect + 轻按连接 No comment provided by engineer. @@ -4956,10 +5294,12 @@ Error: %@ Tap to paste link + 轻按粘贴链接 No comment provided by engineer. Tap to scan + 轻按扫描 No comment provided by engineer. @@ -5026,6 +5366,7 @@ It can happen because of some bug or when the connection is compromised. The code you scanned is not a SimpleX link QR code. + 您扫描的码不是 SimpleX 链接的二维码。 No comment provided by engineer. @@ -5095,6 +5436,7 @@ It can happen because of some bug or when the connection is compromised. The text you pasted is not a SimpleX link. + 您粘贴的文本不是 SimpleX 链接。 No comment provided by engineer. @@ -5127,12 +5469,22 @@ It can happen because of some bug or when the connection is compromised.此操作无法撤消——您的个人资料、联系人、消息和文件将不可撤回地丢失。 No comment provided by engineer. + + This chat is protected by end-to-end encryption. + E2EE info chat item + + + This chat is protected by quantum resistant end-to-end encryption. + E2EE info chat item + This device name + 此设备名称 No comment provided by engineer. This display name is invalid. Please choose another name. + 显示名无效。请另选一个名称。 No comment provided by engineer. @@ -5147,10 +5499,12 @@ It can happen because of some bug or when the connection is compromised. This is your own SimpleX address! + 这是你自己的 SimpleX 地址! No comment provided by engineer. This is your own one-time link! + 这是你自己的一次性链接! No comment provided by engineer. @@ -5170,6 +5524,7 @@ It can happen because of some bug or when the connection is compromised. To hide unwanted messages. + 隐藏不需要的信息。 No comment provided by engineer. @@ -5255,22 +5610,27 @@ You will be prompted to complete authentication before this feature is enabled.< Unblock + 解封 No comment provided by engineer. Unblock for all + 为所有人解封 No comment provided by engineer. Unblock member + 解封成员 No comment provided by engineer. Unblock member for all? + 为所有其他成员解封该成员? No comment provided by engineer. Unblock member? + 解封成员吗? No comment provided by engineer. @@ -5337,10 +5697,12 @@ To connect, please ask your contact to create another connection link and check Unlink + 取消链接 No comment provided by engineer. Unlink desktop? + 取消链接桌面端? No comment provided by engineer. @@ -5365,6 +5727,7 @@ To connect, please ask your contact to create another connection link and check Up to 100 last messages are sent to new members. + 给新成员发送了最多 100 条历史消息。 No comment provided by engineer. @@ -5407,11 +5770,19 @@ To connect, please ask your contact to create another connection link and check 升级并打开聊天 No comment provided by engineer. + + Upload failed + No comment provided by engineer. + Upload file 上传文件 server test step + + Uploading archive + No comment provided by engineer. + Use .onion hosts 使用 .onion 主机 @@ -5439,6 +5810,7 @@ To connect, please ask your contact to create another connection link and check Use from desktop + 从桌面端使用 No comment provided by engineer. @@ -5460,6 +5832,10 @@ To connect, please ask your contact to create another connection link and check 使用服务器 No comment provided by engineer. + + Use the app while in the call. + No comment provided by engineer. + User profile 用户资料 @@ -5477,10 +5853,12 @@ To connect, please ask your contact to create another connection link and check Verify code with desktop + 用桌面端验证代码 No comment provided by engineer. Verify connection + 验证连接 No comment provided by engineer. @@ -5490,6 +5868,15 @@ To connect, please ask your contact to create another connection link and check Verify connections + 验证连接 + No comment provided by engineer. + + + Verify database passphrase + No comment provided by engineer. + + + Verify passphrase No comment provided by engineer. @@ -5504,6 +5891,7 @@ To connect, please ask your contact to create another connection link and check Via secure quantum resistant protocol. + 通过安全的、抗量子计算机破解的协议。 No comment provided by engineer. @@ -5533,6 +5921,7 @@ To connect, please ask your contact to create another connection link and check Visible history + 可见的历史 chat feature @@ -5579,6 +5968,10 @@ To connect, please ask your contact to create another connection link and check 等待视频中 No comment provided by engineer. + + Warning: starting chat on multiple devices is not supported and will cause message delivery failures + No comment provided by engineer. + Warning: you may lose some data! 警告:您可能会丢失部分数据! @@ -5599,6 +5992,10 @@ To connect, please ask your contact to create another connection link and check 欢迎消息 No comment provided by engineer. + + Welcome message is too long + No comment provided by engineer. + What's new 更新内容 @@ -5621,6 +6018,7 @@ To connect, please ask your contact to create another connection link and check With encrypted files and media. + 加密的文件和媒体。 No comment provided by engineer. @@ -5630,6 +6028,7 @@ To connect, please ask your contact to create another connection link and check With reduced battery usage. + 降低了电量使用。 No comment provided by engineer. @@ -5652,6 +6051,10 @@ To connect, please ask your contact to create another connection link and check No comment provided by engineer. + + You **must not** use the same database on two devices. + No comment provided by engineer. + You accepted connection 您已接受连接 @@ -5678,6 +6081,7 @@ To connect, please ask your contact to create another connection link and check You are already connecting via this one-time link! + 你已经在通过这个一次性链接进行连接! No comment provided by engineer. @@ -5694,6 +6098,7 @@ To connect, please ask your contact to create another connection link and check You are already joining the group via this link. + 你已经在通过此链接加入该群。 No comment provided by engineer. @@ -5731,6 +6136,10 @@ Repeat join request? 您可以稍后通过应用程序的 "隐私与安全 "设置启用它们。 No comment provided by engineer. + + You can give another try. + No comment provided by engineer. + You can hide or mute a user profile - swipe it to the right. 您可以隐藏或静音用户个人资料——只需向右滑动。 @@ -5738,6 +6147,7 @@ Repeat join request? You can make it visible to your SimpleX contacts via Settings. + 你可以通过设置让它对你的 SimpleX 联系人可见。 No comment provided by engineer. @@ -5782,6 +6192,7 @@ Repeat join request? You can view invitation link again in connection details. + 您可以在连接详情中再次查看邀请链接。 No comment provided by engineer. @@ -5801,6 +6212,7 @@ Repeat join request? You have already requested connection via this address! + 你已经请求通过此地址进行连接! No comment provided by engineer. @@ -5879,6 +6291,7 @@ Repeat connection request? You will connect to all group members. + 你将连接到所有群成员。 No comment provided by engineer. @@ -6100,6 +6513,7 @@ SimpleX 服务器无法看到您的资料。 author + 作者 member role @@ -6114,15 +6528,18 @@ SimpleX 服务器无法看到您的资料。 blocked - No comment provided by engineer. + 已封禁 + marked deleted chat item preview text blocked %@ + 已封禁 %@ rcv group event chat item blocked by admin - blocked chat item + 由管理员封禁 + marked deleted chat item preview text bold @@ -6300,6 +6717,7 @@ SimpleX 服务器无法看到您的资料。 deleted contact + 已删除联系人 rcv direct event chat item @@ -6549,7 +6967,7 @@ SimpleX 服务器无法看到您的资料。 moderated by %@ 由 %@ 审核 - No comment provided by engineer. + marked deleted chat item preview text months @@ -6618,6 +7036,10 @@ SimpleX 服务器无法看到您的资料。 点对点 No comment provided by engineer. + + quantum resistant e2e encryption + chat item text + received answer… 已收到回复…… @@ -6645,10 +7067,12 @@ SimpleX 服务器无法看到您的资料。 removed contact address + 删除了联系地址 profile update event chat item removed profile picture + 删除了资料图片 profile update event chat item @@ -6683,12 +7107,18 @@ SimpleX 服务器无法看到您的资料。 set new contact address + 设置新的联系地址 profile update event chat item set new profile picture + 设置新的资料图片 profile update event chat item + + standard end-to-end encryption + chat item text + starting… 启动中…… @@ -6715,6 +7145,7 @@ SimpleX 服务器无法看到您的资料。 unknown status + 未知状态 No comment provided by engineer. @@ -6724,6 +7155,7 @@ SimpleX 服务器无法看到您的资料。 updated profile + 更新了资料 profile update event chat item diff --git a/apps/ios/SimpleX NSE/hu.lproj/InfoPlist.strings b/apps/ios/SimpleX NSE/hu.lproj/InfoPlist.strings new file mode 100644 index 0000000000..1a7b57b088 --- /dev/null +++ b/apps/ios/SimpleX NSE/hu.lproj/InfoPlist.strings @@ -0,0 +1,9 @@ +/* Bundle display name */ +"CFBundleDisplayName" = "SimpleX NSE"; + +/* Bundle name */ +"CFBundleName" = "SimpleX NSE"; + +/* Copyright (human-readable) */ +"NSHumanReadableCopyright" = "Copyright © 2022 SimpleX Chat. Minden jog fenntartva."; + diff --git a/apps/ios/SimpleX.xcodeproj/project.pbxproj b/apps/ios/SimpleX.xcodeproj/project.pbxproj index bc4de790a9..14d3ca8d95 100644 --- a/apps/ios/SimpleX.xcodeproj/project.pbxproj +++ b/apps/ios/SimpleX.xcodeproj/project.pbxproj @@ -57,11 +57,11 @@ 5C65F343297D45E100B67AF3 /* VersionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C65F341297D3F3600B67AF3 /* VersionView.swift */; }; 5C6BA667289BD954009B8ECC /* DismissSheets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C6BA666289BD954009B8ECC /* DismissSheets.swift */; }; 5C7031162953C97F00150A12 /* CIFeaturePreferenceView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C7031152953C97F00150A12 /* CIFeaturePreferenceView.swift */; }; - 5C746DA42B9F09AD0049D734 /* libffi.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5C746D9F2B9F09AD0049D734 /* libffi.a */; }; - 5C746DA52B9F09AD0049D734 /* libgmpxx.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5C746DA02B9F09AD0049D734 /* libgmpxx.a */; }; - 5C746DA62B9F09AD0049D734 /* libHSsimplex-chat-5.6.0.0-5ERcEUaz80vDh3tyJ6GR42.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5C746DA12B9F09AD0049D734 /* libHSsimplex-chat-5.6.0.0-5ERcEUaz80vDh3tyJ6GR42.a */; }; - 5C746DA72B9F09AD0049D734 /* libHSsimplex-chat-5.6.0.0-5ERcEUaz80vDh3tyJ6GR42-ghc9.6.3.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5C746DA22B9F09AD0049D734 /* libHSsimplex-chat-5.6.0.0-5ERcEUaz80vDh3tyJ6GR42-ghc9.6.3.a */; }; - 5C746DA82B9F09AD0049D734 /* libgmp.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5C746DA32B9F09AD0049D734 /* libgmp.a */; }; + 5C746DB82BA0DA920049D734 /* libffi.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5C746DB32BA0DA920049D734 /* libffi.a */; }; + 5C746DB92BA0DA920049D734 /* libgmpxx.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5C746DB42BA0DA920049D734 /* libgmpxx.a */; }; + 5C746DBA2BA0DA920049D734 /* libHSsimplex-chat-5.6.0.2-CrEKCx0J5BfIirfPSOWUVo.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5C746DB52BA0DA920049D734 /* libHSsimplex-chat-5.6.0.2-CrEKCx0J5BfIirfPSOWUVo.a */; }; + 5C746DBB2BA0DA920049D734 /* libgmp.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5C746DB62BA0DA920049D734 /* libgmp.a */; }; + 5C746DBC2BA0DA920049D734 /* libHSsimplex-chat-5.6.0.2-CrEKCx0J5BfIirfPSOWUVo-ghc9.6.3.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5C746DB72BA0DA920049D734 /* libHSsimplex-chat-5.6.0.2-CrEKCx0J5BfIirfPSOWUVo-ghc9.6.3.a */; }; 5C7505A227B65FDB00BE3227 /* CIMetaView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C7505A127B65FDB00BE3227 /* CIMetaView.swift */; }; 5C7505A527B679EE00BE3227 /* NavLinkPlain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C7505A427B679EE00BE3227 /* NavLinkPlain.swift */; }; 5C7505A827B6D34800BE3227 /* ChatInfoToolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C7505A727B6D34800BE3227 /* ChatInfoToolbar.swift */; }; @@ -293,6 +293,9 @@ 5C35CFC727B2782E00FB6C6D /* BGManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BGManager.swift; sourceTree = ""; }; 5C35CFCA27B2E91D00FB6C6D /* NtfManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NtfManager.swift; sourceTree = ""; }; 5C36027227F47AD5009F19D9 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 5C371E4E2BA9AAA200100AD3 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Localizable.strings; sourceTree = ""; }; + 5C371E4F2BA9AB6400100AD3 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = "hu.lproj/SimpleX--iOS--InfoPlist.strings"; sourceTree = ""; }; + 5C371E502BA9AB6400100AD3 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/InfoPlist.strings; sourceTree = ""; }; 5C3A88CD27DF50170060F1C2 /* DetermineWidth.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DetermineWidth.swift; sourceTree = ""; }; 5C3A88D027DF57800060F1C2 /* FramedItemView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FramedItemView.swift; sourceTree = ""; }; 5C3CCFCB2AE6BD3100C3F0C3 /* ConnectDesktopView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ConnectDesktopView.swift; sourceTree = ""; }; @@ -329,11 +332,11 @@ 5C6D183229E93FBA00D430B3 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = "pl.lproj/SimpleX--iOS--InfoPlist.strings"; sourceTree = ""; }; 5C6D183329E93FBA00D430B3 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/InfoPlist.strings; sourceTree = ""; }; 5C7031152953C97F00150A12 /* CIFeaturePreferenceView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CIFeaturePreferenceView.swift; sourceTree = ""; }; - 5C746D9F2B9F09AD0049D734 /* libffi.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libffi.a; sourceTree = ""; }; - 5C746DA02B9F09AD0049D734 /* libgmpxx.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libgmpxx.a; sourceTree = ""; }; - 5C746DA12B9F09AD0049D734 /* libHSsimplex-chat-5.6.0.0-5ERcEUaz80vDh3tyJ6GR42.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = "libHSsimplex-chat-5.6.0.0-5ERcEUaz80vDh3tyJ6GR42.a"; sourceTree = ""; }; - 5C746DA22B9F09AD0049D734 /* libHSsimplex-chat-5.6.0.0-5ERcEUaz80vDh3tyJ6GR42-ghc9.6.3.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = "libHSsimplex-chat-5.6.0.0-5ERcEUaz80vDh3tyJ6GR42-ghc9.6.3.a"; sourceTree = ""; }; - 5C746DA32B9F09AD0049D734 /* libgmp.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libgmp.a; sourceTree = ""; }; + 5C746DB32BA0DA920049D734 /* libffi.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libffi.a; sourceTree = ""; }; + 5C746DB42BA0DA920049D734 /* libgmpxx.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libgmpxx.a; sourceTree = ""; }; + 5C746DB52BA0DA920049D734 /* libHSsimplex-chat-5.6.0.2-CrEKCx0J5BfIirfPSOWUVo.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = "libHSsimplex-chat-5.6.0.2-CrEKCx0J5BfIirfPSOWUVo.a"; sourceTree = ""; }; + 5C746DB62BA0DA920049D734 /* libgmp.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libgmp.a; sourceTree = ""; }; + 5C746DB72BA0DA920049D734 /* libHSsimplex-chat-5.6.0.2-CrEKCx0J5BfIirfPSOWUVo-ghc9.6.3.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = "libHSsimplex-chat-5.6.0.2-CrEKCx0J5BfIirfPSOWUVo-ghc9.6.3.a"; sourceTree = ""; }; 5C7505A127B65FDB00BE3227 /* CIMetaView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CIMetaView.swift; sourceTree = ""; }; 5C7505A427B679EE00BE3227 /* NavLinkPlain.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NavLinkPlain.swift; sourceTree = ""; }; 5C7505A727B6D34800BE3227 /* ChatInfoToolbar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChatInfoToolbar.swift; sourceTree = ""; }; @@ -530,13 +533,13 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 5C746DA52B9F09AD0049D734 /* libgmpxx.a in Frameworks */, - 5C746DA82B9F09AD0049D734 /* libgmp.a in Frameworks */, + 5C746DB92BA0DA920049D734 /* libgmpxx.a in Frameworks */, + 5C746DBA2BA0DA920049D734 /* libHSsimplex-chat-5.6.0.2-CrEKCx0J5BfIirfPSOWUVo.a in Frameworks */, 5CE2BA93284534B000EC33A6 /* libiconv.tbd in Frameworks */, - 5C746DA72B9F09AD0049D734 /* libHSsimplex-chat-5.6.0.0-5ERcEUaz80vDh3tyJ6GR42-ghc9.6.3.a in Frameworks */, - 5C746DA42B9F09AD0049D734 /* libffi.a in Frameworks */, + 5C746DB82BA0DA920049D734 /* libffi.a in Frameworks */, + 5C746DBC2BA0DA920049D734 /* libHSsimplex-chat-5.6.0.2-CrEKCx0J5BfIirfPSOWUVo-ghc9.6.3.a in Frameworks */, + 5C746DBB2BA0DA920049D734 /* libgmp.a in Frameworks */, 5CE2BA94284534BB00EC33A6 /* libz.tbd in Frameworks */, - 5C746DA62B9F09AD0049D734 /* libHSsimplex-chat-5.6.0.0-5ERcEUaz80vDh3tyJ6GR42.a in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -599,11 +602,11 @@ 5C764E5C279C70B7000C6508 /* Libraries */ = { isa = PBXGroup; children = ( - 5C746D9F2B9F09AD0049D734 /* libffi.a */, - 5C746DA32B9F09AD0049D734 /* libgmp.a */, - 5C746DA02B9F09AD0049D734 /* libgmpxx.a */, - 5C746DA22B9F09AD0049D734 /* libHSsimplex-chat-5.6.0.0-5ERcEUaz80vDh3tyJ6GR42-ghc9.6.3.a */, - 5C746DA12B9F09AD0049D734 /* libHSsimplex-chat-5.6.0.0-5ERcEUaz80vDh3tyJ6GR42.a */, + 5C746DB32BA0DA920049D734 /* libffi.a */, + 5C746DB62BA0DA920049D734 /* libgmp.a */, + 5C746DB42BA0DA920049D734 /* libgmpxx.a */, + 5C746DB72BA0DA920049D734 /* libHSsimplex-chat-5.6.0.2-CrEKCx0J5BfIirfPSOWUVo-ghc9.6.3.a */, + 5C746DB52BA0DA920049D734 /* libHSsimplex-chat-5.6.0.2-CrEKCx0J5BfIirfPSOWUVo.a */, ); path = Libraries; sourceTree = ""; @@ -1070,6 +1073,7 @@ uk, bg, tr, + hu, ); mainGroup = 5CA059BD279559F40002BEB4; packageReferences = ( @@ -1361,6 +1365,7 @@ 5C636F672AAB3D2400751C84 /* uk */, 5C5B67932ABAF56000DA9412 /* bg */, 5C245F3E2B501F13001CC39F /* tr */, + 5C371E502BA9AB6400100AD3 /* hu */, ); name = InfoPlist.strings; sourceTree = ""; @@ -1384,6 +1389,7 @@ 5CE6C7B42AAB1527007F345C /* uk */, 5C5B67912ABAF4B500DA9412 /* bg */, 5C245F3C2B501E98001CC39F /* tr */, + 5C371E4E2BA9AAA200100AD3 /* hu */, ); name = Localizable.strings; sourceTree = ""; @@ -1406,6 +1412,7 @@ 5C636F662AAB3D2400751C84 /* uk */, 5C5B67922ABAF56000DA9412 /* bg */, 5C245F3D2B501F13001CC39F /* tr */, + 5C371E4F2BA9AB6400100AD3 /* hu */, ); name = "SimpleX--iOS--InfoPlist.strings"; sourceTree = ""; @@ -1539,7 +1546,7 @@ CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = "SimpleX (iOS).entitlements"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 201; + CURRENT_PROJECT_VERSION = 202; DEVELOPMENT_TEAM = 5NN7GUYB6T; ENABLE_BITCODE = NO; ENABLE_PREVIEWS = YES; @@ -1561,7 +1568,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 5.5.6; + MARKETING_VERSION = 5.6; PRODUCT_BUNDLE_IDENTIFIER = chat.simplex.app; PRODUCT_NAME = SimpleX; SDKROOT = iphoneos; @@ -1582,7 +1589,7 @@ CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = "SimpleX (iOS).entitlements"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 201; + CURRENT_PROJECT_VERSION = 202; DEVELOPMENT_TEAM = 5NN7GUYB6T; ENABLE_BITCODE = NO; ENABLE_PREVIEWS = YES; @@ -1604,7 +1611,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 5.5.6; + MARKETING_VERSION = 5.6; PRODUCT_BUNDLE_IDENTIFIER = chat.simplex.app; PRODUCT_NAME = SimpleX; SDKROOT = iphoneos; @@ -1663,7 +1670,7 @@ CODE_SIGN_ENTITLEMENTS = "SimpleX NSE/SimpleX NSE.entitlements"; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 201; + CURRENT_PROJECT_VERSION = 202; DEVELOPMENT_TEAM = 5NN7GUYB6T; ENABLE_BITCODE = NO; GENERATE_INFOPLIST_FILE = YES; @@ -1676,7 +1683,7 @@ "@executable_path/Frameworks", "@executable_path/../../Frameworks", ); - MARKETING_VERSION = 5.5.6; + MARKETING_VERSION = 5.6; PRODUCT_BUNDLE_IDENTIFIER = "chat.simplex.app.SimpleX-NSE"; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; @@ -1695,7 +1702,7 @@ CODE_SIGN_ENTITLEMENTS = "SimpleX NSE/SimpleX NSE.entitlements"; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 201; + CURRENT_PROJECT_VERSION = 202; DEVELOPMENT_TEAM = 5NN7GUYB6T; ENABLE_BITCODE = NO; GENERATE_INFOPLIST_FILE = YES; @@ -1708,7 +1715,7 @@ "@executable_path/Frameworks", "@executable_path/../../Frameworks", ); - MARKETING_VERSION = 5.5.6; + MARKETING_VERSION = 5.6; PRODUCT_BUNDLE_IDENTIFIER = "chat.simplex.app.SimpleX-NSE"; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; @@ -1727,7 +1734,7 @@ APPLICATION_EXTENSION_API_ONLY = YES; CLANG_ENABLE_MODULES = YES; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 201; + CURRENT_PROJECT_VERSION = 202; DEFINES_MODULE = YES; DEVELOPMENT_TEAM = 5NN7GUYB6T; DYLIB_COMPATIBILITY_VERSION = 1; @@ -1751,7 +1758,7 @@ "$(inherited)", "$(PROJECT_DIR)/Libraries/sim", ); - MARKETING_VERSION = 5.5.6; + MARKETING_VERSION = 5.6; PRODUCT_BUNDLE_IDENTIFIER = chat.simplex.SimpleXChat; PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = iphoneos; @@ -1773,7 +1780,7 @@ APPLICATION_EXTENSION_API_ONLY = YES; CLANG_ENABLE_MODULES = YES; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 201; + CURRENT_PROJECT_VERSION = 202; DEFINES_MODULE = YES; DEVELOPMENT_TEAM = 5NN7GUYB6T; DYLIB_COMPATIBILITY_VERSION = 1; @@ -1797,7 +1804,7 @@ "$(inherited)", "$(PROJECT_DIR)/Libraries/sim", ); - MARKETING_VERSION = 5.5.6; + MARKETING_VERSION = 5.6; PRODUCT_BUNDLE_IDENTIFIER = chat.simplex.SimpleXChat; PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = iphoneos; diff --git a/apps/ios/SimpleXChat/API.swift b/apps/ios/SimpleXChat/API.swift index 3c9f77d791..cdd1008c13 100644 --- a/apps/ios/SimpleXChat/API.swift +++ b/apps/ios/SimpleXChat/API.swift @@ -213,13 +213,11 @@ public func chatResponse(_ s: String) -> ChatResponse { } } else if type == "chatCmdError" { if let jError = jResp["chatCmdError"] as? NSDictionary { - let user: UserRef? = try? decodeObject(jError["user_"] as Any) - return .chatCmdError(user_: user, chatError: .invalidJSON(json: prettyJSON(jError) ?? "")) + return .chatCmdError(user_: decodeUser_(jError), chatError: .invalidJSON(json: prettyJSON(jError) ?? "")) } } else if type == "chatError" { if let jError = jResp["chatError"] as? NSDictionary { - let user: UserRef? = try? decodeObject(jError["user_"] as Any) - return .chatError(user_: user, chatError: .invalidJSON(json: prettyJSON(jError) ?? "")) + return .chatError(user_: decodeUser_(jError), chatError: .invalidJSON(json: prettyJSON(jError) ?? "")) } } } @@ -228,6 +226,14 @@ public func chatResponse(_ s: String) -> ChatResponse { return ChatResponse.response(type: type ?? "invalid", json: json ?? s) } +private func decodeUser_(_ jDict: NSDictionary) -> UserRef? { + if let user_ = jDict["user_"] { + try? decodeObject(user_ as Any) + } else { + nil + } +} + func parseChatData(_ jChat: Any) throws -> ChatData { let jChatDict = jChat as! NSDictionary let chatInfo: ChatInfo = try decodeObject(jChatDict["chatInfo"]!) diff --git a/apps/ios/SimpleXChat/hs_init.c b/apps/ios/SimpleXChat/hs_init.c index 83056fccfe..adacd57310 100644 --- a/apps/ios/SimpleXChat/hs_init.c +++ b/apps/ios/SimpleXChat/hs_init.c @@ -15,7 +15,7 @@ void haskell_init(void) { char *argv[] = { "simplex", "+RTS", // requires `hs_init_with_rtsopts` - "-A16m", // chunk size for new allocations + "-A64m", // chunk size for new allocations "-H64m", // initial heap size "-xn", // non-moving GC 0 diff --git a/apps/ios/bg.lproj/Localizable.strings b/apps/ios/bg.lproj/Localizable.strings index 4d0ee65e46..580c20d65a 100644 --- a/apps/ios/bg.lproj/Localizable.strings +++ b/apps/ios/bg.lproj/Localizable.strings @@ -202,6 +202,9 @@ /* No comment provided by engineer. */ "%lld messages blocked" = "%lld блокирани съобщения"; +/* No comment provided by engineer. */ +"%lld messages blocked by admin" = "%lld съобщения, блокирани от администратора"; + /* No comment provided by engineer. */ "%lld messages marked deleted" = "%lld съобщения, маркирани като изтрити"; @@ -398,6 +401,9 @@ /* No comment provided by engineer. */ "All group members will remain connected." = "Всички членове на групата ще останат свързани."; +/* No comment provided by engineer. */ +"All messages will be deleted - this cannot be undone!" = "Всички съобщения ще бъдат изтрити - това не може да бъде отменено!"; + /* No comment provided by engineer. */ "All messages will be deleted - this cannot be undone! The messages will be deleted ONLY for you." = "Всички съобщения ще бъдат изтрити - това не може да бъде отменено! Съобщенията ще бъдат изтрити САМО за вас."; @@ -581,6 +587,9 @@ /* No comment provided by engineer. */ "Block" = "Блокирай"; +/* No comment provided by engineer. */ +"Block for all" = "Блокирай за всички"; + /* No comment provided by engineer. */ "Block group members" = "Блокиране на членове на групата"; @@ -588,11 +597,23 @@ "Block member" = "Блокирай член"; /* No comment provided by engineer. */ -"Block member?" = "Блокирай члена?"; +"Block member for all?" = "Блокиране на член за всички?"; /* No comment provided by engineer. */ +"Block member?" = "Блокирай члена?"; + +/* marked deleted chat item preview text */ "blocked" = "блокиран"; +/* rcv group event chat item */ +"blocked %@" = "блокиран %@"; + +/* marked deleted chat item preview text */ +"blocked by admin" = "блокиран от админ"; + +/* No comment provided by engineer. */ +"Blocked by admin" = "Блокиран от админ"; + /* No comment provided by engineer. */ "bold" = "удебелен"; @@ -685,7 +706,7 @@ "Change self-destruct passcode" = "Промени кода за достъп за самоунищожение"; /* chat item text */ -"changed address for you" = "променен е адреса за вас"; +"changed address for you" = "адреса за изпращане е променен"; /* rcv group event chat item */ "changed role of %@ to %@" = "променена роля от %1$@ на %2$@"; @@ -750,6 +771,9 @@ /* No comment provided by engineer. */ "Clear conversation?" = "Изчисти разговора?"; +/* No comment provided by engineer. */ +"Clear private notes?" = "Изчистване на лични бележки?"; + /* No comment provided by engineer. */ "Clear verification" = "Изчисти проверката"; @@ -888,6 +912,9 @@ /* connection information */ "connection:%@" = "връзка:%@"; +/* profile update event chat item */ +"contact %@ changed to %@" = "името на контакта %1$@ е променено на %2$@"; + /* No comment provided by engineer. */ "Contact allows" = "Контактът позволява"; @@ -972,6 +999,12 @@ /* No comment provided by engineer. */ "Create your profile" = "Създай своя профил"; +/* No comment provided by engineer. */ +"Created at" = "Създаден на"; + +/* copied message info */ +"Created at: %@" = "Създаден на: %@"; + /* No comment provided by engineer. */ "Created on %@" = "Създаден на %@"; @@ -1291,7 +1324,7 @@ "Discover and join groups" = "Открийте и се присъединете към групи"; /* No comment provided by engineer. */ -"Discover via local network" = "Открий през локалната мрежа"; +"Discover via local network" = "Откриване през локалната мрежа"; /* No comment provided by engineer. */ "Do it later" = "Отложи"; @@ -1524,6 +1557,9 @@ /* No comment provided by engineer. */ "Error creating member contact" = "Грешка при създаване на контакт с член"; +/* No comment provided by engineer. */ +"Error creating message" = "Грешка при създаване на съобщение"; + /* No comment provided by engineer. */ "Error creating profile!" = "Грешка при създаване на профил!"; @@ -1938,6 +1974,9 @@ /* No comment provided by engineer. */ "Import database" = "Импортиране на база данни"; +/* No comment provided by engineer. */ +"Improved message delivery" = "Подобрена доставка на съобщения"; + /* No comment provided by engineer. */ "Improved privacy and security" = "Подобрена поверителност и сигурност"; @@ -2115,6 +2154,9 @@ /* No comment provided by engineer. */ "Join group" = "Влез в групата"; +/* No comment provided by engineer. */ +"Join group conversations" = "Присъединяване към групи"; + /* No comment provided by engineer. */ "Join group?" = "Влез в групата?"; @@ -2250,6 +2292,9 @@ /* No comment provided by engineer. */ "Member" = "Член"; +/* profile update event chat item */ +"member %@ changed to %@" = "името на члена %1$@ е променено на %2$@"; + /* rcv group event chat item */ "member connected" = "свързан"; @@ -2328,7 +2373,7 @@ /* copied message info */ "Moderated at: %@" = "Модерирано в: %@"; -/* No comment provided by engineer. */ +/* marked deleted chat item preview text */ "moderated by %@" = "модерирано от %@"; /* time unit */ @@ -2594,12 +2639,18 @@ /* No comment provided by engineer. */ "Password to show" = "Парола за показване"; +/* past/unknown group member */ +"Past member %@" = "Бивш член %@"; + /* No comment provided by engineer. */ "Paste desktop address" = "Постави адрес на настолно устройство"; /* No comment provided by engineer. */ "Paste image" = "Постави изображение"; +/* No comment provided by engineer. */ +"Paste link to connect!" = "Поставете линк, за да се свържете!"; + /* No comment provided by engineer. */ "Paste the link you received" = "Постави получения линк"; @@ -2687,6 +2738,9 @@ /* No comment provided by engineer. */ "Private filenames" = "Поверителни имена на файлове"; +/* name of notes to self */ +"Private notes" = "Лични бележки"; + /* No comment provided by engineer. */ "Profile and server connections" = "Профилни и сървърни връзки"; @@ -2801,6 +2855,9 @@ /* No comment provided by engineer. */ "Receiving via" = "Получаване чрез"; +/* No comment provided by engineer. */ +"Recent history and improved [directory bot](simplex:/contact#/?v=1-4&smp=smp%3A%2F%2Fu2dS9sG8nMNURyZwqASV4yROM28Er0luVTx5X1CsMrU%3D%40smp4.simplex.im%2FeXSPwqTkKyDO3px4fLf1wx3MvPdjdLW3%23%2F%3Fv%3D1-2%26dh%3DMCowBQYDK2VuAyEAaiv6MkMH44L2TcYrt_CsX3ZvM11WgbMEUn0hkIKTOho%253D%26srv%3Do5vmywmrnaxalvz6wi3zicyftgio6psuvyniis6gco6bp6ekl4cqj4id.onion)." = "Скорошна история и подобрен [bot за директория за групи](simplex:/contact#/?v=1-4&smp=smp%3A%2F%2Fu2dS9sG8nMNURyZwqASV4yROM28Er0luVTx5X1CsMrU%3D%40smp4.simplex.im%2FeXSPwqTkKyDO3px4fLf1wx3MvPd jdLW3%23%2F%3Fv%3D1-2% 26dh%3DMCowBQYDK2VuAyEAaiv6MkMH44L2TcYrt_CsX3ZvM11WgbMEUn0hkIKTOho%253D%26srv%3Do5vmywmrnaxalvz6wi3zicyftgio6psuvyniis6gco6bp6ekl4cqj4id.onion)."; + /* No comment provided by engineer. */ "Recipients see updates as you type them." = "Получателите виждат актуализации, докато ги въвеждате."; @@ -2855,6 +2912,12 @@ /* rcv group event chat item */ "removed %@" = "отстранен %@"; +/* profile update event chat item */ +"removed contact address" = "премахнат адрес за контакт"; + +/* profile update event chat item */ +"removed profile picture" = "премахната профилна снимка"; + /* rcv group event chat item */ "removed you" = "ви острани"; @@ -2978,6 +3041,9 @@ /* No comment provided by engineer. */ "Save welcome message?" = "Запази съобщението при посрещане?"; +/* message info title */ +"Saved message" = "Запазено съобщение"; + /* No comment provided by engineer. */ "Saved WebRTC ICE servers will be removed" = "Запазените WebRTC ICE сървъри ще бъдат премахнати"; @@ -2999,6 +3065,9 @@ /* No comment provided by engineer. */ "Search" = "Търсене"; +/* No comment provided by engineer. */ +"Search bar accepts invitation links." = "Лентата за търсене приема линк за връзка."; + /* No comment provided by engineer. */ "Search or paste SimpleX link" = "Търсене или поставяне на SimpleX линк"; @@ -3155,6 +3224,12 @@ /* No comment provided by engineer. */ "Set it instead of system authentication." = "Задайте го вместо системната идентификация."; +/* profile update event chat item */ +"set new contact address" = "зададен нов адрес за контакт"; + +/* profile update event chat item */ +"set new profile picture" = "зададена нова профилна снимка"; + /* No comment provided by engineer. */ "Set passcode" = "Задай kод за достъп"; @@ -3524,6 +3599,9 @@ /* No comment provided by engineer. */ "Trying to connect to the server used to receive messages from this contact." = "Опит за свързване със сървъра, използван за получаване на съобщения от този контакт."; +/* No comment provided by engineer. */ +"Turkish interface" = "Турски интерфейс"; + /* No comment provided by engineer. */ "Turn off" = "Изключи"; @@ -3536,12 +3614,21 @@ /* No comment provided by engineer. */ "Unblock" = "Отблокирай"; +/* No comment provided by engineer. */ +"Unblock for all" = "Отблокирай за всички"; + /* No comment provided by engineer. */ "Unblock member" = "Отблокирай член"; +/* No comment provided by engineer. */ +"Unblock member for all?" = "Отблокиране на член за всички?"; + /* No comment provided by engineer. */ "Unblock member?" = "Отблокирай член?"; +/* rcv group event chat item */ +"unblocked %@" = "отблокиран %@"; + /* item status description */ "Unexpected error: %@" = "Неочаквана грешка: %@"; @@ -3575,6 +3662,9 @@ /* No comment provided by engineer. */ "Unknown error" = "Непозната грешка"; +/* No comment provided by engineer. */ +"unknown status" = "неизвестен статус"; + /* No comment provided by engineer. */ "Unless you use iOS call interface, enable Do Not Disturb mode to avoid interruptions." = "Освен ако не използвате интерфейса за повикване на iOS, активирайте режима \"Не безпокой\", за да избегнете прекъсвания."; @@ -3620,6 +3710,9 @@ /* rcv group event chat item */ "updated group profile" = "актуализиран профил на групата"; +/* profile update event chat item */ +"updated profile" = "актуализиран профил"; + /* No comment provided by engineer. */ "Updating settings will re-connect the client to all servers." = "Актуализирането на настройките ще свърже отново клиента към всички сървъри."; @@ -3678,19 +3771,19 @@ "v%@ (%@)" = "v%@ (%@)"; /* No comment provided by engineer. */ -"Verify code with desktop" = "Потвръди кода с настолното устройство"; +"Verify code with desktop" = "Потвърди кода с настолното устройство"; /* No comment provided by engineer. */ -"Verify connection" = "Потвръди връзките"; +"Verify connection" = "Потвърди връзка"; /* No comment provided by engineer. */ -"Verify connection security" = "Потвръди сигурността на връзката"; +"Verify connection security" = "Потвърди сигурността на връзката"; /* No comment provided by engineer. */ -"Verify connections" = "Потвръди връзките"; +"Verify connections" = "Потвърждение за свързване"; /* No comment provided by engineer. */ -"Verify security code" = "Потвръди кода за сигурност"; +"Verify security code" = "Потвърди кода за сигурност"; /* No comment provided by engineer. */ "Via browser" = "Чрез браузър"; @@ -3794,9 +3887,15 @@ /* No comment provided by engineer. */ "When you share an incognito profile with somebody, this profile will be used for the groups they invite you to." = "Когато споделяте инкогнито профил с някого, този профил ще се използва за групите, в които той ви кани."; +/* No comment provided by engineer. */ +"With encrypted files and media." = "С криптирани файлове и медия."; + /* No comment provided by engineer. */ "With optional welcome message." = "С незадължително съобщение при посрещане."; +/* No comment provided by engineer. */ +"With reduced battery usage." = "С намален разход на батерията."; + /* No comment provided by engineer. */ "Wrong database passphrase" = "Грешна парола за базата данни"; @@ -3857,6 +3956,9 @@ /* No comment provided by engineer. */ "you are observer" = "вие сте наблюдател"; +/* snd group event chat item */ +"you blocked %@" = "вие блокирахте %@"; + /* No comment provided by engineer. */ "You can accept calls from lock screen, without device and app authentication." = "Можете да приемате обаждания от заключен екран, без идентификация на устройство и приложението."; @@ -3906,10 +4008,10 @@ "You can't send messages!" = "Не може да изпращате съобщения!"; /* chat item text */ -"you changed address" = "променихте адреса"; +"you changed address" = "адреса за получаване е променен"; /* chat item text */ -"you changed address for %@" = "променихте адреса за %@"; +"you changed address for %@" = "променихте адреса получаване за %@"; /* snd group event chat item */ "you changed role for yourself to %@" = "променихте ролята си на %@"; @@ -3968,6 +4070,9 @@ /* chat list item description */ "you shared one-time link incognito" = "споделихте еднократен инкогнито линк за връзка"; +/* snd group event chat item */ +"you unblocked %@" = "вие отблокирахте %@"; + /* No comment provided by engineer. */ "You will be connected to group when the group host's device is online, please wait or check later!" = "Ще бъдете свързани с групата, когато устройството на домакина на групата е онлайн, моля, изчакайте или проверете по-късно!"; diff --git a/apps/ios/cs.lproj/Localizable.strings b/apps/ios/cs.lproj/Localizable.strings index 9d8bd1e4a9..a777a33613 100644 --- a/apps/ios/cs.lproj/Localizable.strings +++ b/apps/ios/cs.lproj/Localizable.strings @@ -2070,7 +2070,7 @@ /* copied message info */ "Moderated at: %@" = "Upraveno v: %@"; -/* No comment provided by engineer. */ +/* marked deleted chat item preview text */ "moderated by %@" = "moderovaný %@"; /* time unit */ diff --git a/apps/ios/de.lproj/Localizable.strings b/apps/ios/de.lproj/Localizable.strings index 3bc7690c8d..6eb9067684 100644 --- a/apps/ios/de.lproj/Localizable.strings +++ b/apps/ios/de.lproj/Localizable.strings @@ -602,13 +602,13 @@ /* No comment provided by engineer. */ "Block member?" = "Mitglied blockieren?"; -/* No comment provided by engineer. */ +/* marked deleted chat item preview text */ "blocked" = "Blockiert"; /* rcv group event chat item */ "blocked %@" = "%@ wurde blockiert"; -/* blocked chat item */ +/* marked deleted chat item preview text */ "blocked by admin" = "wurde vom Administrator blockiert"; /* No comment provided by engineer. */ @@ -913,7 +913,7 @@ "connection:%@" = "Verbindung:%@"; /* profile update event chat item */ -"contact %@ changed to %@" = "Der Kontaktname %1$@ wurde auf %2$@ geändert"; +"contact %@ changed to %@" = "Der Kontaktname wurde von %1$@ auf %2$@ geändert"; /* No comment provided by engineer. */ "Contact allows" = "Der Kontakt erlaubt"; @@ -2293,7 +2293,7 @@ "Member" = "Mitglied"; /* profile update event chat item */ -"member %@ changed to %@" = "Der Mitgliedsname %1$@ wurde auf %2$@ geändert"; +"member %@ changed to %@" = "Der Mitgliedsname von %1$@ wurde auf %2$@ geändert"; /* rcv group event chat item */ "member connected" = "ist der Gruppe beigetreten"; @@ -2373,7 +2373,7 @@ /* copied message info */ "Moderated at: %@" = "Moderiert um: %@"; -/* No comment provided by engineer. */ +/* marked deleted chat item preview text */ "moderated by %@" = "Von %@ moderiert"; /* time unit */ @@ -2913,10 +2913,10 @@ "removed %@" = "hat %@ aus der Gruppe entfernt"; /* profile update event chat item */ -"removed contact address" = "Kontaktadresse wurde entfernt"; +"removed contact address" = "Die Kontaktadresse wurde entfernt"; /* profile update event chat item */ -"removed profile picture" = "Profil-Bild wurde entfernt"; +"removed profile picture" = "Das Profil-Bild wurde entfernt"; /* rcv group event chat item */ "removed you" = "hat Sie aus der Gruppe entfernt"; @@ -3066,7 +3066,7 @@ "Search" = "Suche"; /* No comment provided by engineer. */ -"Search bar accepts invitation links." = "Von der Suchleiste werden Einladungslinks akzeptiert."; +"Search bar accepts invitation links." = "In der Suchleiste werden nun auch Einladungslinks akzeptiert."; /* No comment provided by engineer. */ "Search or paste SimpleX link" = "Suchen oder fügen Sie den SimpleX-Link ein"; @@ -3225,10 +3225,10 @@ "Set it instead of system authentication." = "Anstelle der System-Authentifizierung festlegen."; /* profile update event chat item */ -"set new contact address" = "Neue Kontaktadresse wurde festgelegt"; +"set new contact address" = "Es wurde eine neue Kontaktadresse festgelegt"; /* profile update event chat item */ -"set new profile picture" = "Neues Profil-Bild wurde festgelegt"; +"set new profile picture" = "Es wurde ein neues Profil-Bild festgelegt"; /* No comment provided by engineer. */ "Set passcode" = "Zugangscode einstellen"; diff --git a/apps/ios/es.lproj/Localizable.strings b/apps/ios/es.lproj/Localizable.strings index 25ca04f24d..ad252b0a88 100644 --- a/apps/ios/es.lproj/Localizable.strings +++ b/apps/ios/es.lproj/Localizable.strings @@ -202,6 +202,9 @@ /* No comment provided by engineer. */ "%lld messages blocked" = "%lld mensaje(s) bloqueado(s)"; +/* No comment provided by engineer. */ +"%lld messages blocked by admin" = "%lld mensajes bloqueados por el administrador"; + /* No comment provided by engineer. */ "%lld messages marked deleted" = "%lld mensaje(s) marcado(s) eliminado(s)"; @@ -398,6 +401,9 @@ /* No comment provided by engineer. */ "All group members will remain connected." = "Todos los miembros del grupo permanecerán conectados."; +/* No comment provided by engineer. */ +"All messages will be deleted - this cannot be undone!" = "Todos los mensajes serán borrados. ¡No podrá deshacerse!"; + /* No comment provided by engineer. */ "All messages will be deleted - this cannot be undone! The messages will be deleted ONLY for you." = "Se eliminarán todos los mensajes SOLO para tí. ¡No podrá deshacerse!"; @@ -581,6 +587,9 @@ /* No comment provided by engineer. */ "Block" = "Bloquear"; +/* No comment provided by engineer. */ +"Block for all" = "Bloquear para todos"; + /* No comment provided by engineer. */ "Block group members" = "Bloquear miembros del grupo"; @@ -588,11 +597,23 @@ "Block member" = "Bloquear miembro"; /* No comment provided by engineer. */ -"Block member?" = "¿Bloquear miembro?"; +"Block member for all?" = "¿Bloqear miembro para todos?"; /* No comment provided by engineer. */ +"Block member?" = "¿Bloquear miembro?"; + +/* marked deleted chat item preview text */ "blocked" = "bloqueado"; +/* rcv group event chat item */ +"blocked %@" = "%@ bloqueado"; + +/* marked deleted chat item preview text */ +"blocked by admin" = "bloqueado por el administrador"; + +/* No comment provided by engineer. */ +"Blocked by admin" = "Bloqueado por el administrador"; + /* No comment provided by engineer. */ "bold" = "negrita"; @@ -750,6 +771,9 @@ /* No comment provided by engineer. */ "Clear conversation?" = "¿Vaciar conversación?"; +/* No comment provided by engineer. */ +"Clear private notes?" = "¿Borrar notas privadas?"; + /* No comment provided by engineer. */ "Clear verification" = "Eliminar verificación"; @@ -888,6 +912,9 @@ /* connection information */ "connection:%@" = "conexión: % @"; +/* profile update event chat item */ +"contact %@ changed to %@" = "el contacto %1$@ ha cambiado a %2$@"; + /* No comment provided by engineer. */ "Contact allows" = "El contacto permite"; @@ -972,6 +999,12 @@ /* No comment provided by engineer. */ "Create your profile" = "Crea tu perfil"; +/* No comment provided by engineer. */ +"Created at" = "Creado"; + +/* copied message info */ +"Created at: %@" = "Creado: %@"; + /* No comment provided by engineer. */ "Created on %@" = "Creado en %@"; @@ -1296,6 +1329,9 @@ /* No comment provided by engineer. */ "Do it later" = "Hacer más tarde"; +/* No comment provided by engineer. */ +"Do not send history to new members." = "No enviar historial a miembros nuevos."; + /* No comment provided by engineer. */ "Do NOT use SimpleX for emergency calls." = "NO uses SimpleX para llamadas de emergencia."; @@ -1521,6 +1557,9 @@ /* No comment provided by engineer. */ "Error creating member contact" = "Error al establecer contacto con el miembro"; +/* No comment provided by engineer. */ +"Error creating message" = "Error al crear mensaje"; + /* No comment provided by engineer. */ "Error creating profile!" = "¡Error al crear perfil!"; @@ -1875,6 +1914,9 @@ /* No comment provided by engineer. */ "History" = "Historial"; +/* No comment provided by engineer. */ +"History is not sent to new members." = "El historial no se envía a miembros nuevos."; + /* time unit */ "hours" = "horas"; @@ -1932,6 +1974,9 @@ /* No comment provided by engineer. */ "Import database" = "Importar base de datos"; +/* No comment provided by engineer. */ +"Improved message delivery" = "Entrega de mensajes mejorada"; + /* No comment provided by engineer. */ "Improved privacy and security" = "Seguridad y privacidad mejoradas"; @@ -2016,6 +2061,9 @@ /* invalid chat item */ "invalid data" = "datos no válidos"; +/* No comment provided by engineer. */ +"Invalid display name!" = "¡Nombre mostrado no válido!"; + /* No comment provided by engineer. */ "Invalid link" = "Enlace no válido"; @@ -2106,6 +2154,9 @@ /* No comment provided by engineer. */ "Join group" = "Unirte al grupo"; +/* No comment provided by engineer. */ +"Join group conversations" = "Unirse a la conversación del grupo"; + /* No comment provided by engineer. */ "Join group?" = "¿Unirte al grupo?"; @@ -2241,6 +2292,9 @@ /* No comment provided by engineer. */ "Member" = "Miembro"; +/* profile update event chat item */ +"member %@ changed to %@" = "el miembro %1$@ ha cambiado a %2$@"; + /* rcv group event chat item */ "member connected" = "conectado"; @@ -2319,7 +2373,7 @@ /* copied message info */ "Moderated at: %@" = "Moderado: %@"; -/* No comment provided by engineer. */ +/* marked deleted chat item preview text */ "moderated by %@" = "moderado por %@"; /* time unit */ @@ -2585,12 +2639,18 @@ /* No comment provided by engineer. */ "Password to show" = "Contraseña para hacerlo visible"; +/* past/unknown group member */ +"Past member %@" = "Miembro pasado %@"; + /* No comment provided by engineer. */ "Paste desktop address" = "Pegar dirección de ordenador"; /* No comment provided by engineer. */ "Paste image" = "Pegar imagen"; +/* No comment provided by engineer. */ +"Paste link to connect!" = "Pegar enlace para conectar!"; + /* No comment provided by engineer. */ "Paste the link you received" = "Pegar el enlace recibido"; @@ -2678,6 +2738,9 @@ /* No comment provided by engineer. */ "Private filenames" = "Nombres de archivos privados"; +/* name of notes to self */ +"Private notes" = "Notas privadas"; + /* No comment provided by engineer. */ "Profile and server connections" = "Perfil y conexiones de servidor"; @@ -2792,6 +2855,9 @@ /* No comment provided by engineer. */ "Receiving via" = "Recibiendo vía"; +/* No comment provided by engineer. */ +"Recent history and improved [directory bot](simplex:/contact#/?v=1-4&smp=smp%3A%2F%2Fu2dS9sG8nMNURyZwqASV4yROM28Er0luVTx5X1CsMrU%3D%40smp4.simplex.im%2FeXSPwqTkKyDO3px4fLf1wx3MvPdjdLW3%23%2F%3Fv%3D1-2%26dh%3DMCowBQYDK2VuAyEAaiv6MkMH44L2TcYrt_CsX3ZvM11WgbMEUn0hkIKTOho%253D%26srv%3Do5vmywmrnaxalvz6wi3zicyftgio6psuvyniis6gco6bp6ekl4cqj4id.onion)." = "Historial reciente y [bot del directorio](simplex:/contact#/?v=1-4&smp=smp%3A%2F%2Fu2dS9sG8nMNURyZwqASV4yROM28Er0luVTx5X1CsMrU%3D%40smp4.simplex.im%2FeXSPwqTkKyDO3px4fLf1wx3MvPdjdLW3%23%2F%3Fv%3D1-2%26dh%3DMCowBQYDK2VuAyEAaiv6MkMH44L2TcYrt_CsX3ZvM11WgbMEUn0hkIKTOho%253D%26srv%3Do5vmywmrnaxalvz6wi3zicyftgio6psuvyniis6gco6bp6ekl4cqj4id.onion) mejorados."; + /* No comment provided by engineer. */ "Recipients see updates as you type them." = "Los destinatarios ven actualizarse mientras escribes."; @@ -2846,6 +2912,12 @@ /* rcv group event chat item */ "removed %@" = "ha expulsado a %@"; +/* profile update event chat item */ +"removed contact address" = "dirección de contacto eliminada"; + +/* profile update event chat item */ +"removed profile picture" = "imagen de perfil eliminada"; + /* rcv group event chat item */ "removed you" = "te ha expulsado"; @@ -2969,6 +3041,9 @@ /* No comment provided by engineer. */ "Save welcome message?" = "¿Guardar mensaje de bienvenida?"; +/* message info title */ +"Saved message" = "Mensaje guardado"; + /* No comment provided by engineer. */ "Saved WebRTC ICE servers will be removed" = "Los servidores WebRTC ICE guardados serán eliminados"; @@ -2990,6 +3065,9 @@ /* No comment provided by engineer. */ "Search" = "Buscar"; +/* No comment provided by engineer. */ +"Search bar accepts invitation links." = "La barra de búsqueda acepta enlaces de invitación."; + /* No comment provided by engineer. */ "Search or paste SimpleX link" = "Buscar o pegar enlace SimpleX"; @@ -3071,6 +3149,9 @@ /* No comment provided by engineer. */ "Send them from gallery or custom keyboards." = "Envíalos desde la galería o desde teclados personalizados."; +/* No comment provided by engineer. */ +"Send up to 100 last messages to new members." = "Enviar hasta 100 últimos mensajes a los miembros nuevos."; + /* No comment provided by engineer. */ "Sender cancelled file transfer." = "El remitente ha cancelado la transferencia de archivos."; @@ -3143,6 +3224,12 @@ /* No comment provided by engineer. */ "Set it instead of system authentication." = "Úsalo en lugar de la autenticación del sistema."; +/* profile update event chat item */ +"set new contact address" = "nueva dirección de contacto"; + +/* profile update event chat item */ +"set new profile picture" = "nueva imagen de perfil"; + /* No comment provided by engineer. */ "Set passcode" = "Código autodestrucción"; @@ -3435,13 +3522,13 @@ "They can be overridden in contact and group settings." = "Se pueden anular en la configuración de contactos."; /* No comment provided by engineer. */ -"This action cannot be undone - all received and sent files and media will be deleted. Low resolution pictures will remain." = "Esta acción no se puede deshacer. Se eliminarán todos los archivos y multimedia recibidos y enviados. Las imágenes de baja resolución permanecerán."; +"This action cannot be undone - all received and sent files and media will be deleted. Low resolution pictures will remain." = "Esta acción es irreversible. Se eliminarán todos los archivos y multimedia recibidos y enviados. Las imágenes de baja resolución permanecerán."; /* No comment provided by engineer. */ -"This action cannot be undone - the messages sent and received earlier than selected will be deleted. It may take several minutes." = "Esta acción no se puede deshacer. Se eliminarán los mensajes enviados y recibidos anteriores a la selección. Puede tardar varios minutos."; +"This action cannot be undone - the messages sent and received earlier than selected will be deleted. It may take several minutes." = "Esta acción es irreversible. Se eliminarán los mensajes enviados y recibidos anteriores a la selección. Puede tardar varios minutos."; /* No comment provided by engineer. */ -"This action cannot be undone - your profile, contacts, messages and files will be irreversibly lost." = "Esta acción no se puede deshacer. Tu perfil, contactos, mensajes y archivos se perderán irreversiblemente."; +"This action cannot be undone - your profile, contacts, messages and files will be irreversibly lost." = "Esta acción es irreversible. Tu perfil, contactos, mensajes y archivos se perderán irreversiblemente."; /* notification title */ "this contact" = "este contacto"; @@ -3449,6 +3536,9 @@ /* No comment provided by engineer. */ "This device name" = "Nombre del dispositivo"; +/* No comment provided by engineer. */ +"This display name is invalid. Please choose another name." = "Éste nombre mostrado no es válido. Por favor, elije otro nombre."; + /* No comment provided by engineer. */ "This group has over %lld members, delivery receipts are not sent." = "Este grupo tiene más de %lld miembros, no se enviarán confirmaciones de entrega."; @@ -3509,6 +3599,9 @@ /* No comment provided by engineer. */ "Trying to connect to the server used to receive messages from this contact." = "Intentando conectar con el servidor usado para recibir mensajes de este contacto."; +/* No comment provided by engineer. */ +"Turkish interface" = "Interfaz en turco"; + /* No comment provided by engineer. */ "Turn off" = "Desactivar"; @@ -3521,12 +3614,21 @@ /* No comment provided by engineer. */ "Unblock" = "Desbloquear"; +/* No comment provided by engineer. */ +"Unblock for all" = "Desbloquear para todos"; + /* No comment provided by engineer. */ "Unblock member" = "Desbloquear miembro"; +/* No comment provided by engineer. */ +"Unblock member for all?" = "¿Desbloquear miembro para todos?"; + /* No comment provided by engineer. */ "Unblock member?" = "¿Desbloquear miembro?"; +/* rcv group event chat item */ +"unblocked %@" = "%@ desbloqueado"; + /* item status description */ "Unexpected error: %@" = "Error inesperado: %@"; @@ -3560,6 +3662,9 @@ /* No comment provided by engineer. */ "Unknown error" = "Error desconocido"; +/* No comment provided by engineer. */ +"unknown status" = "estado desconocido"; + /* No comment provided by engineer. */ "Unless you use iOS call interface, enable Do Not Disturb mode to avoid interruptions." = "A menos que utilices la interfaz de llamadas de iOS, activa el modo No molestar para evitar interrupciones."; @@ -3584,6 +3689,9 @@ /* No comment provided by engineer. */ "Unread" = "No leído"; +/* No comment provided by engineer. */ +"Up to 100 last messages are sent to new members." = "Hasta 100 últimos mensajes son enviados a los miembros nuevos."; + /* No comment provided by engineer. */ "Update" = "Actualizar"; @@ -3602,6 +3710,9 @@ /* rcv group event chat item */ "updated group profile" = "ha actualizado el perfil del grupo"; +/* profile update event chat item */ +"updated profile" = "perfil actualizado"; + /* No comment provided by engineer. */ "Updating settings will re-connect the client to all servers." = "Al actualizar la configuración el cliente se reconectará a todos los servidores."; @@ -3710,6 +3821,9 @@ /* No comment provided by engineer. */ "View security code" = "Mostrar código de seguridad"; +/* chat feature */ +"Visible history" = "Historial visible"; + /* No comment provided by engineer. */ "Voice message…" = "Mensaje de voz…"; @@ -3773,9 +3887,15 @@ /* No comment provided by engineer. */ "When you share an incognito profile with somebody, this profile will be used for the groups they invite you to." = "Cuando compartes un perfil incógnito con alguien, este perfil también se usará para los grupos a los que te inviten."; +/* No comment provided by engineer. */ +"With encrypted files and media." = "Con cifrado de archivos y multimedia."; + /* No comment provided by engineer. */ "With optional welcome message." = "Con mensaje de bienvenida opcional."; +/* No comment provided by engineer. */ +"With reduced battery usage." = "Con uso reducido de batería."; + /* No comment provided by engineer. */ "Wrong database passphrase" = "Contraseña de base de datos incorrecta"; @@ -3836,6 +3956,9 @@ /* No comment provided by engineer. */ "you are observer" = "Tu rol es observador"; +/* snd group event chat item */ +"you blocked %@" = "has bloqueado a %@"; + /* No comment provided by engineer. */ "You can accept calls from lock screen, without device and app authentication." = "Puede aceptar llamadas desde la pantalla de bloqueo, sin autenticación de dispositivos y aplicaciones."; @@ -3947,6 +4070,9 @@ /* chat list item description */ "you shared one-time link incognito" = "has compartido enlace de un solo uso en modo incógnito"; +/* snd group event chat item */ +"you unblocked %@" = "has desbloqueado a %@"; + /* No comment provided by engineer. */ "You will be connected to group when the group host's device is online, please wait or check later!" = "Te conectarás al grupo cuando el dispositivo del anfitrión esté en línea, por favor espera o compruébalo más tarde."; diff --git a/apps/ios/fi.lproj/Localizable.strings b/apps/ios/fi.lproj/Localizable.strings index 2478658ace..ddd085141b 100644 --- a/apps/ios/fi.lproj/Localizable.strings +++ b/apps/ios/fi.lproj/Localizable.strings @@ -2046,7 +2046,7 @@ /* copied message info */ "Moderated at: %@" = "Moderoitu klo: %@"; -/* No comment provided by engineer. */ +/* marked deleted chat item preview text */ "moderated by %@" = "%@ moderoi"; /* time unit */ diff --git a/apps/ios/fr.lproj/Localizable.strings b/apps/ios/fr.lproj/Localizable.strings index fb202c4f2f..4417eb35a1 100644 --- a/apps/ios/fr.lproj/Localizable.strings +++ b/apps/ios/fr.lproj/Localizable.strings @@ -202,6 +202,9 @@ /* No comment provided by engineer. */ "%lld messages blocked" = "%lld messages bloqués"; +/* No comment provided by engineer. */ +"%lld messages blocked by admin" = "%lld messages bloqués par l'administrateur"; + /* No comment provided by engineer. */ "%lld messages marked deleted" = "%lld messages marqués comme supprimés"; @@ -381,10 +384,10 @@ "Advanced network settings" = "Paramètres réseau avancés"; /* chat item text */ -"agreeing encryption for %@…" = "accord sur le chiffrement pour %@…"; +"agreeing encryption for %@…" = "négociation du chiffrement avec %@…"; /* chat item text */ -"agreeing encryption…" = "accord sur le chiffrement…"; +"agreeing encryption…" = "négociation du chiffrement…"; /* No comment provided by engineer. */ "All app data is deleted." = "Toutes les données de l'application sont supprimées."; @@ -584,6 +587,9 @@ /* No comment provided by engineer. */ "Block" = "Bloquer"; +/* No comment provided by engineer. */ +"Block for all" = "Bloqué pour tous"; + /* No comment provided by engineer. */ "Block group members" = "Bloquer des membres d'un groupe"; @@ -591,11 +597,23 @@ "Block member" = "Bloquer ce membre"; /* No comment provided by engineer. */ -"Block member?" = "Bloquer ce membre ?"; +"Block member for all?" = "Bloquer le membre pour tous ?"; /* No comment provided by engineer. */ +"Block member?" = "Bloquer ce membre ?"; + +/* marked deleted chat item preview text */ "blocked" = "blocké"; +/* rcv group event chat item */ +"blocked %@" = "%@ bloqué"; + +/* marked deleted chat item preview text */ +"blocked by admin" = "bloqué par l'administrateur"; + +/* No comment provided by engineer. */ +"Blocked by admin" = "Bloqué par l'administrateur"; + /* No comment provided by engineer. */ "bold" = "gras"; @@ -688,7 +706,7 @@ "Change self-destruct passcode" = "Modifier le code d'autodestruction"; /* chat item text */ -"changed address for you" = "adresse modifiée pour vous"; +"changed address for you" = "changement de l'adresse du contact"; /* rcv group event chat item */ "changed role of %@ to %@" = "a modifié le rôle de %1$@ pour %2$@"; @@ -949,7 +967,7 @@ "Create a group using a random profile." = "Création de groupes via un profil aléatoire."; /* No comment provided by engineer. */ -"Create an address to let people connect with you." = "Créez une adresse pour permettre aux gens de vous contacter."; +"Create an address to let people connect with you." = "Vous pouvez créer une adresse pour permettre aux autres utilisateurs de vous contacter."; /* server test step */ "Create file" = "Créer un fichier"; @@ -1681,7 +1699,7 @@ "Exit without saving" = "Quitter sans enregistrer"; /* chat item action */ -"Expand" = "Développer"; +"Expand" = "Étendre"; /* No comment provided by engineer. */ "Export database" = "Exporter la base de données"; @@ -2355,7 +2373,7 @@ /* copied message info */ "Moderated at: %@" = "Modéré à : %@"; -/* No comment provided by engineer. */ +/* marked deleted chat item preview text */ "moderated by %@" = "modéré par %@"; /* time unit */ @@ -3207,10 +3225,10 @@ "Set it instead of system authentication." = "Il permet de remplacer l'authentification du système."; /* profile update event chat item */ -"set new contact address" = "définir une nouvelle adresse de contact"; +"set new contact address" = "a changé d'adresse de contact"; /* profile update event chat item */ -"set new profile picture" = "définir une nouvelle image de profil"; +"set new profile picture" = "a changé d'image de profil"; /* No comment provided by engineer. */ "Set passcode" = "Définir le code d'accès"; @@ -3258,7 +3276,7 @@ "Show last messages" = "Voir les derniers messages"; /* No comment provided by engineer. */ -"Show preview" = "Montrer l'aperçu"; +"Show preview" = "Afficher l'aperçu"; /* No comment provided by engineer. */ "Show:" = "Afficher :"; @@ -3596,12 +3614,21 @@ /* No comment provided by engineer. */ "Unblock" = "Débloquer"; +/* No comment provided by engineer. */ +"Unblock for all" = "Débloquer pour tous"; + /* No comment provided by engineer. */ "Unblock member" = "Débloquer ce membre"; +/* No comment provided by engineer. */ +"Unblock member for all?" = "Débloquer le membre pour tous ?"; + /* No comment provided by engineer. */ "Unblock member?" = "Débloquer ce membre ?"; +/* rcv group event chat item */ +"unblocked %@" = "%@ débloqué"; + /* item status description */ "Unexpected error: %@" = "Erreur inattendue : %@"; @@ -3735,7 +3762,7 @@ "Using .onion hosts requires compatible VPN provider." = "L'utilisation des hôtes .onion nécessite un fournisseur VPN compatible."; /* No comment provided by engineer. */ -"Using SimpleX Chat servers." = "Utilisation des serveurs SimpleX Chat."; +"Using SimpleX Chat servers." = "Vous utilisez les serveurs SimpleX."; /* No comment provided by engineer. */ "v%@" = "v%@"; @@ -3855,7 +3882,7 @@ "When available" = "Quand disponible"; /* No comment provided by engineer. */ -"When people request to connect, you can accept or reject it." = "Lorsque des personnes demandent à se connecter, vous pouvez les accepter ou les refuser."; +"When people request to connect, you can accept or reject it." = "Vous pouvez accepter ou refuser les demandes de contacts."; /* No comment provided by engineer. */ "When you share an incognito profile with somebody, this profile will be used for the groups they invite you to." = "Lorsque vous partagez un profil incognito avec quelqu'un, ce profil sera utilisé pour les groupes auxquels il vous invite."; @@ -3929,6 +3956,9 @@ /* No comment provided by engineer. */ "you are observer" = "vous êtes observateur"; +/* snd group event chat item */ +"you blocked %@" = "vous avez bloqué %@"; + /* No comment provided by engineer. */ "You can accept calls from lock screen, without device and app authentication." = "Vous pouvez accepter des appels à partir de l'écran de verrouillage, sans authentification de l'appareil ou de l'application."; @@ -3960,7 +3990,7 @@ "You can share this address with your contacts to let them connect with **%@**." = "Vous pouvez partager cette adresse avec vos contacts pour leur permettre de se connecter avec **%@**."; /* No comment provided by engineer. */ -"You can share your address as a link or QR code - anybody can connect to you." = "Vous pouvez partager votre adresse sous forme de lien ou de code QR - n'importe qui pourra se connecter à vous."; +"You can share your address as a link or QR code - anybody can connect to you." = "Vous pouvez partager votre adresse sous la forme d'un lien ou d'un code QR - tout le monde peut l'utiliser pour vous contacter."; /* No comment provided by engineer. */ "You can start chat via app Settings / Database or by restarting the app" = "Vous pouvez lancer le chat via Paramètres / Base de données ou en redémarrant l'app"; @@ -4040,6 +4070,9 @@ /* chat list item description */ "you shared one-time link incognito" = "vous avez partagé un lien unique en incognito"; +/* snd group event chat item */ +"you unblocked %@" = "vous avez débloqué %@"; + /* No comment provided by engineer. */ "You will be connected to group when the group host's device is online, please wait or check later!" = "Vous serez connecté·e au groupe lorsque l'appareil de l'hôte sera en ligne, veuillez attendre ou vérifier plus tard !"; diff --git a/apps/ios/hu.lproj/Localizable.strings b/apps/ios/hu.lproj/Localizable.strings new file mode 100644 index 0000000000..f9a470fbbc --- /dev/null +++ b/apps/ios/hu.lproj/Localizable.strings @@ -0,0 +1,4186 @@ +/* No comment provided by engineer. */ +"\n" = "\n"; + +/* No comment provided by engineer. */ +" " = " "; + +/* No comment provided by engineer. */ +" " = " "; + +/* No comment provided by engineer. */ +" " = " "; + +/* No comment provided by engineer. */ +" (" = " ("; + +/* No comment provided by engineer. */ +" (can be copied)" = " (másolható)"; + +/* No comment provided by engineer. */ +"_italic_" = "\\_dőlt_"; + +/* No comment provided by engineer. */ +"- connect to [directory service](simplex:/contact#/?v=1-4&smp=smp%3A%2F%2Fu2dS9sG8nMNURyZwqASV4yROM28Er0luVTx5X1CsMrU%3D%40smp4.simplex.im%2FeXSPwqTkKyDO3px4fLf1wx3MvPdjdLW3%23%2F%3Fv%3D1-2%26dh%3DMCowBQYDK2VuAyEAaiv6MkMH44L2TcYrt_CsX3ZvM11WgbMEUn0hkIKTOho%253D%26srv%3Do5vmywmrnaxalvz6wi3zicyftgio6psuvyniis6gco6bp6ekl4cqj4id.onion) (BETA)!\n- delivery receipts (up to 20 members).\n- faster and more stable." = "- kapcsolódás a [könyvtár szolgáltatáshoz] (simplex:/contact#/?v=1-4&smp=smp%3A%2F%2Fu2dS9sG8nMNURyZwqASV4yROM28Er0luVTx5X1CsMrU%3D%40smp4.simplex.im%2Ld3%3DWpxkKFeXSPv3pwp %2F%3Fv%3D1-2%26dh %3DMCowBQYDK2VuAyEAaiv6MkMH44L2TcYrt_CsX3ZvM11WgbMEUn0hkIKTOho%253D%26srv%3Do5vmywmrnaxalvz6wi3zicyftgio6psuvyniis6glco6bqjETA)4Beklco6bqj)\n- kézbesítési jelentések (legfeljebb 20 tag).\n- gyorsabb és stabilabb."; + +/* No comment provided by engineer. */ +"- more stable message delivery.\n- a bit better groups.\n- and more!" = "- stabilabb üzenetkézbesítés.\n- valamivel jobb csoportok.\n- és még sok más!"; + +/* No comment provided by engineer. */ +"- optionally notify deleted contacts.\n- profile names with spaces.\n- and more!" = "- opcionális értesítés a törölt kapcsolatokról.\n- profilnevek szóközökkel.\n- és még sok más!"; + +/* No comment provided by engineer. */ +"- voice messages up to 5 minutes.\n- custom time to disappear.\n- editing history." = "- hangüzenetek legfeljebb 5 perces időtartamig.\n- egyedi eltűnési időhatár megadása.\n- előzmények szerkesztése."; + +/* No comment provided by engineer. */ +", " = ", "; + +/* No comment provided by engineer. */ +": " = ": "; + +/* No comment provided by engineer. */ +"!1 colored!" = "!1 színezett!"; + +/* No comment provided by engineer. */ +"." = "."; + +/* No comment provided by engineer. */ +"(" = "("; + +/* No comment provided by engineer. */ +"(new)" = "(új)"; + +/* No comment provided by engineer. */ +"(this device v%@)" = "(ez az eszköz v%@)"; + +/* No comment provided by engineer. */ +")" = ")"; + +/* No comment provided by engineer. */ +"[Contribute](https://github.com/simplex-chat/simplex-chat#contribute)" = "[Hozzájárulás](https://github.com/simplex-chat/simplex-chat#contribute)"; + +/* No comment provided by engineer. */ +"[Send us email](mailto:chat@simplex.chat)" = "[Küldjön nekünk e-mailt](mailto:chat@simplex.chat)"; + +/* No comment provided by engineer. */ +"[Star on GitHub](https://github.com/simplex-chat/simplex-chat)" = "[Csillag a GitHubon](https://github.com/simplex-chat/simplex-chat)"; + +/* No comment provided by engineer. */ +"**Add contact**: to create a new invitation link, or connect via a link you received." = "**Ismerős hozzáadása**: új meghívó hivatkozás létrehozásához, vagy egy kapott hivatkozáson keresztül történő csatlakozáshoz."; + +/* No comment provided by engineer. */ +"**Add new contact**: to create your one-time QR Code for your contact." = "**Új ismerős hozzáadása**: egyszer használatos QR-kód vagy hivatkozás létrehozása a kapcsolattartóhoz."; + +/* No comment provided by engineer. */ +"**Create group**: to create a new group." = "**Csoport létrehozása**: új csoport létrehozásához."; + +/* No comment provided by engineer. */ +"**e2e encrypted** audio call" = "**e2e titkosított** hanghívás"; + +/* No comment provided by engineer. */ +"**e2e encrypted** video call" = "**e2e titkosított** videóhívás"; + +/* No comment provided by engineer. */ +"**More private**: check new messages every 20 minutes. Device token is shared with SimpleX Chat server, but not how many contacts or messages you have." = "**Privátabb**: 20 percenként ellenőrzi az új üzeneteket. Az eszköztoken megosztásra kerül a SimpleX Chat kiszolgálóval, de az nem, hogy hány ismerőse vagy üzenete van."; + +/* No comment provided by engineer. */ +"**Most private**: do not use SimpleX Chat notifications server, check messages periodically in the background (depends on how often you use the app)." = "**Legprivátabb**: ne használja a SimpleX Chat értesítési szervert, rendszeresen ellenőrizze az üzeneteket a háttérben (attól függően, hogy milyen gyakran használja az alkalmazást)."; + +/* No comment provided by engineer. */ +"**Please note**: you will NOT be able to recover or change passphrase if you lose it." = "**Figyelem**: NEM tudja visszaállítani vagy megváltoztatni jelmondatát, ha elveszíti azt."; + +/* No comment provided by engineer. */ +"**Recommended**: device token and notifications are sent to SimpleX Chat notification server, but not the message content, size or who it is from." = "**Javasolt**: az eszköztoken és az értesítések elküldésre kerülnek a SimpleX Chat értesítési szerverre, kivéve az üzenet tartalma, mérete vagy az, hogy kitől származik."; + +/* No comment provided by engineer. */ +"**Warning**: Instant push notifications require passphrase saved in Keychain." = "**Figyelmeztetés**: Az azonnali push-értesítésekhez a kulcstárolóban tárolt jelmondat megadása szükséges."; + +/* No comment provided by engineer. */ +"*bold*" = "\\*félkövér*"; + +/* copied message info title, # */ +"# %@" = "# %@"; + +/* copied message info */ +"## History" = "## Előzmények"; + +/* copied message info */ +"## In reply to" = "## Válaszul erre"; + +/* No comment provided by engineer. */ +"#secret#" = "#titkos#"; + +/* No comment provided by engineer. */ +"%@" = "%@"; + +/* No comment provided by engineer. */ +"%@ (current)" = "%@ (jelenlegi)"; + +/* copied message info */ +"%@ (current):" = "%@ (jelenlegi):"; + +/* No comment provided by engineer. */ +"%@ / %@" = "%@ / %@"; + +/* No comment provided by engineer. */ +"%@ %@" = "%@ %@"; + +/* No comment provided by engineer. */ +"%@ and %@" = "%@ és %@"; + +/* No comment provided by engineer. */ +"%@ and %@ connected" = "%@ és %@ csatlakozott"; + +/* copied message info, <sender> at <time> */ +"%@ at %@:" = "%1$@ %2$@-kor:"; + +/* No comment provided by engineer. */ +"%@ connected" = "%@ csatlakozott"; + +/* notification title */ +"%@ is connected!" = "%@ csatlakozott!"; + +/* No comment provided by engineer. */ +"%@ is not verified" = "%@ nem ellenőrzött"; + +/* No comment provided by engineer. */ +"%@ is verified" = "%@ ellenőrizve"; + +/* No comment provided by engineer. */ +"%@ servers" = "%@ kiszolgáló"; + +/* notification title */ +"%@ wants to connect!" = "%@ csatlakozni szeretne!"; + +/* No comment provided by engineer. */ +"%@, %@ and %lld members" = "%@, %@ és további %lld tag"; + +/* No comment provided by engineer. */ +"%@, %@ and %lld other members connected" = "%@, %@ és további %lld tag csatlakozott"; + +/* copied message info */ +"%@:" = "%@:"; + +/* time interval */ +"%d days" = "%d nap"; + +/* time interval */ +"%d hours" = "%d óra"; + +/* time interval */ +"%d min" = "%d perc"; + +/* time interval */ +"%d months" = "%d hónap"; + +/* time interval */ +"%d sec" = "%d mp"; + +/* integrity error chat item */ +"%d skipped message(s)" = "%d kihagyott üzenet"; + +/* time interval */ +"%d weeks" = "%d hét"; + +/* No comment provided by engineer. */ +"%lld" = "%lld"; + +/* No comment provided by engineer. */ +"%lld %@" = "%lld %@"; + +/* No comment provided by engineer. */ +"%lld contact(s) selected" = "%lld ismerős kiválasztva"; + +/* No comment provided by engineer. */ +"%lld file(s) with total size of %@" = "%lld fájl, amely(ek)nek teljes mérete: %@"; + +/* No comment provided by engineer. */ +"%lld group events" = "%lld csoportesemény"; + +/* No comment provided by engineer. */ +"%lld members" = "%lld tag"; + +/* No comment provided by engineer. */ +"%lld messages blocked" = "%lld üzenet blokkolva"; + +/* No comment provided by engineer. */ +"%lld messages blocked by admin" = "%lld üzenet blokkolva az admin által"; + +/* No comment provided by engineer. */ +"%lld messages marked deleted" = "%lld törlésre megjelölt üzenet"; + +/* No comment provided by engineer. */ +"%lld messages moderated by %@" = "%@ %lld üzenetet moderált"; + +/* No comment provided by engineer. */ +"%lld minutes" = "%lld perc"; + +/* No comment provided by engineer. */ +"%lld new interface languages" = "%lld új nyelvi csomag"; + +/* No comment provided by engineer. */ +"%lld second(s)" = "%lld másodperc"; + +/* No comment provided by engineer. */ +"%lld seconds" = "%lld másodperc"; + +/* No comment provided by engineer. */ +"%lldd" = "%lldd"; + +/* No comment provided by engineer. */ +"%lldh" = "%lldh"; + +/* No comment provided by engineer. */ +"%lldk" = "%lldk"; + +/* No comment provided by engineer. */ +"%lldm" = "%lldm"; + +/* No comment provided by engineer. */ +"%lldmth" = "%lldmth"; + +/* No comment provided by engineer. */ +"%llds" = "%llds"; + +/* No comment provided by engineer. */ +"%lldw" = "%lldw"; + +/* No comment provided by engineer. */ +"%u messages failed to decrypt." = "%u üzenet visszafejtése sikertelen."; + +/* No comment provided by engineer. */ +"%u messages skipped." = "%u kihagyott üzenet."; + +/* No comment provided by engineer. */ +"`a + b`" = "a + b"; + +/* email text */ +"<p>Hi!</p>\n<p><a href=\"%@\">Connect to me via SimpleX Chat</a></p>" = "<p>Üdvözlöm!</p>\n<p><a href=\"%@\">Csatlakozzon hozzám a SimpleX Chaten</a></p>"; + +/* No comment provided by engineer. */ +"~strike~" = "\\~áthúzott~"; + +/* time to disappear */ +"0 sec" = "0 mp"; + +/* No comment provided by engineer. */ +"0s" = "0s"; + +/* time interval */ +"1 day" = "1 nap"; + +/* time interval */ +"1 hour" = "1 óra"; + +/* No comment provided by engineer. */ +"1 minute" = "1 perc"; + +/* time interval */ +"1 month" = "1 hónap"; + +/* time interval */ +"1 week" = "1 hét"; + +/* No comment provided by engineer. */ +"5 minutes" = "5 perc"; + +/* No comment provided by engineer. */ +"6" = "6"; + +/* No comment provided by engineer. */ +"30 seconds" = "30 másodperc"; + +/* No comment provided by engineer. */ +"A few more things" = "Még néhány dolog"; + +/* notification title */ +"A new contact" = "Egy új ismerős"; + +/* No comment provided by engineer. */ +"A new random profile will be shared." = "Egy új, véletlenszerű profil kerül megosztásra."; + +/* No comment provided by engineer. */ +"A separate TCP connection will be used **for each chat profile you have in the app**." = "A rendszer külön TCP-kapcsolatot fog használni **az alkalmazásban található minden csevegési profilhoz**."; + +/* No comment provided by engineer. */ +"A separate TCP connection will be used **for each contact and group member**.\n**Please note**: if you have many connections, your battery and traffic consumption can be substantially higher and some connections may fail." = "A rendszer külön TCP-kapcsolatot fog használni **minden ismerőshöz és csoporttaghoz**.\n**Figyelem**: sok kapcsolódás esetén, az akkumulátor- és adatforgalom fogyasztás jelentősen megnőhet, és egyes kapcsolatok meghiúsulhatnak."; + +/* No comment provided by engineer. */ +"Abort" = "Megszakítás"; + +/* No comment provided by engineer. */ +"Abort changing address" = "Címváltoztatás megszakítása"; + +/* No comment provided by engineer. */ +"Abort changing address?" = "Címváltoztatás megszakítása??"; + +/* No comment provided by engineer. */ +"About SimpleX" = "A SimpleX névjegye"; + +/* No comment provided by engineer. */ +"About SimpleX address" = "A SimpleX azonosítóról"; + +/* No comment provided by engineer. */ +"About SimpleX Chat" = "A SimpleX Chat névjegye"; + +/* No comment provided by engineer. */ +"above, then choose:" = "fent, majd válassza ki:"; + +/* No comment provided by engineer. */ +"Accent color" = "Kiemelő szín"; + +/* accept contact request via notification + accept incoming call via notification */ +"Accept" = "Elfogadás"; + +/* No comment provided by engineer. */ +"Accept connection request?" = "Kapcsolatfelvétel elfogadása?"; + +/* notification body */ +"Accept contact request from %@?" = "Elfogadja %@ kapcsolat kérését?"; + +/* accept contact request via notification */ +"Accept incognito" = "Fogadás inkognítóban"; + +/* call status */ +"accepted call" = "elfogadott hívás"; + +/* No comment provided by engineer. */ +"Add address to your profile, so that your contacts can share it with other people. Profile update will be sent to your contacts." = "Azonosító hozzáadása a profilhoz, hogy az ismerősök megoszthassák másokkal. A profilfrissítés elküldésre kerül ismerősők számára."; + +/* No comment provided by engineer. */ +"Add contact" = "Ismerős hozzáadása"; + +/* No comment provided by engineer. */ +"Add preset servers" = "Előre beállított kiszolgálók hozzáadása"; + +/* No comment provided by engineer. */ +"Add profile" = "Profil hozzáadása"; + +/* No comment provided by engineer. */ +"Add server…" = "Kiszolgáló hozzáadása…"; + +/* No comment provided by engineer. */ +"Add servers by scanning QR codes." = "Kiszolgáló hozzáadása QR-kód beolvasásával."; + +/* No comment provided by engineer. */ +"Add to another device" = "Hozzáadás egy másik eszközhöz"; + +/* No comment provided by engineer. */ +"Add welcome message" = "Üdvözlő üzenet hozzáadása"; + +/* No comment provided by engineer. */ +"Address" = "Cím"; + +/* No comment provided by engineer. */ +"Address change will be aborted. Old receiving address will be used." = "A cím módosítása megszakad. A régi fogadási cím kerül felhasználásra."; + +/* member role */ +"admin" = "admin"; + +/* No comment provided by engineer. */ +"Admins can create the links to join groups." = "Az adminok hivatkozásokat hozhatnak létre a csoportokhoz való csatlakozáshoz."; + +/* No comment provided by engineer. */ +"Advanced network settings" = "Speciális hálózati beállítások"; + +/* chat item text */ +"agreeing encryption for %@…" = "titkosítás jóváhagyása %@ számára…"; + +/* chat item text */ +"agreeing encryption…" = "titkosítás elfogadása…"; + +/* No comment provided by engineer. */ +"All app data is deleted." = "Minden alkalmazásadat törölve."; + +/* No comment provided by engineer. */ +"All chats and messages will be deleted - this cannot be undone!" = "Minden csevegés és üzenet törlésre kerül - ez nem vonható vissza!"; + +/* No comment provided by engineer. */ +"All data is erased when it is entered." = "A jelkód megadása után minden adat törlésre kerül."; + +/* No comment provided by engineer. */ +"All group members will remain connected." = "Minden csoporttag csatlakoztatva marad."; + +/* No comment provided by engineer. */ +"All messages will be deleted - this cannot be undone!" = "Minden üzenet törlésre kerül – ez nem vonható vissza!"; + +/* No comment provided by engineer. */ +"All messages will be deleted - this cannot be undone! The messages will be deleted ONLY for you." = "Minden üzenet törlésre kerül - ezt nem vonható vissza! Az üzenetek CSAK az ön számára törlődnek."; + +/* No comment provided by engineer. */ +"All new messages from %@ will be hidden!" = "Minden új üzenet elrejtésre kerül tőle: %@!"; + +/* No comment provided by engineer. */ +"All your contacts will remain connected." = "Minden ismerős csatlakoztatva marad."; + +/* No comment provided by engineer. */ +"All your contacts will remain connected. Profile update will be sent to your contacts." = "Ismerőseivel kapcsolatban marad. A profil változtatások frissítésre kerülnek az ismerősöknél."; + +/* No comment provided by engineer. */ +"Allow" = "Engedélyezés"; + +/* No comment provided by engineer. */ +"Allow calls only if your contact allows them." = "Hívások engedélyezése kizárólag abban az esetben, ha ismerőse is engedélyezi."; + +/* No comment provided by engineer. */ +"Allow disappearing messages only if your contact allows it to you." = "Eltűnő üzenetek engedélyezése kizárólag abban az esetben, ha ismerőse is engedélyezi az ön számára."; + +/* No comment provided by engineer. */ +"Allow irreversible message deletion only if your contact allows it to you. (24 hours)" = "Üzenet végleges törlésének engedélyezése kizárólag abban az esetben, ha ismerőse is engedélyezi. (24 óra)"; + +/* No comment provided by engineer. */ +"Allow message reactions only if your contact allows them." = "Üzenetreakciók engedélyezése kizárólag abban az esetben, ha ismerőse is engedélyezi."; + +/* No comment provided by engineer. */ +"Allow message reactions." = "Üzenetreakciók engedélyezése."; + +/* No comment provided by engineer. */ +"Allow sending direct messages to members." = "Közvetlen üzenetek küldésének engedélyezése tagok részére."; + +/* No comment provided by engineer. */ +"Allow sending disappearing messages." = "Eltűnő üzenetek küldésének engedélyezése."; + +/* No comment provided by engineer. */ +"Allow to irreversibly delete sent messages. (24 hours)" = "Elküldött üzenetek visszafordíthatatlan törlésének engedélyezése. (24 óra)"; + +/* No comment provided by engineer. */ +"Allow to send files and media." = "Fájlok és médiatartalom küldésének engedélyezése."; + +/* No comment provided by engineer. */ +"Allow to send voice messages." = "Hangüzenetek küldésének engedélyezése."; + +/* No comment provided by engineer. */ +"Allow voice messages only if your contact allows them." = "Hangüzenetek küldésének engedélyezése kizárólag abban az esetben, ha ismerőse is engedélyezi."; + +/* No comment provided by engineer. */ +"Allow voice messages?" = "Hangüzenetek engedélyezése?"; + +/* No comment provided by engineer. */ +"Allow your contacts adding message reactions." = "Ismerősök általi üzenetreakciók hozzáadásának engedélyezése."; + +/* No comment provided by engineer. */ +"Allow your contacts to call you." = "Hívások engedélyezése ismerősök számára."; + +/* No comment provided by engineer. */ +"Allow your contacts to irreversibly delete sent messages. (24 hours)" = "Elküldött üzenetek visszafordíthatatlan törlésének engedélyezése ismerősök számára. (24 óra)"; + +/* No comment provided by engineer. */ +"Allow your contacts to send disappearing messages." = "Eltűnő üzenetek engedélyezése ismerősök számára."; + +/* No comment provided by engineer. */ +"Allow your contacts to send voice messages." = "Hangüzenetek küldésének engedélyezése ismerősök számára."; + +/* No comment provided by engineer. */ +"Already connected?" = "Csatlakoztatva?"; + +/* No comment provided by engineer. */ +"Already connecting!" = "Kapcsolódás folyamatban!"; + +/* No comment provided by engineer. */ +"Already joining the group!" = "Csatlakozás folyamatban!"; + +/* pref value */ +"always" = "mindig"; + +/* No comment provided by engineer. */ +"Always use relay" = "Mindig használjon átjátszó kiszolgálót"; + +/* No comment provided by engineer. */ +"An empty chat profile with the provided name is created, and the app opens as usual." = "Egy üres csevegési profil jön létre a megadott névvel, és az alkalmazás a szokásos módon megnyílik."; + +/* No comment provided by engineer. */ +"and %lld other events" = "és %lld egyéb esemény"; + +/* No comment provided by engineer. */ +"Answer call" = "Hívás fogadása"; + +/* No comment provided by engineer. */ +"App build: %@" = "Az alkalmazás build száma: %@"; + +/* No comment provided by engineer. */ +"App encrypts new local files (except videos)." = "Az alkalmazás titkosítja a helyi fájlokat (a videók kivételével)."; + +/* No comment provided by engineer. */ +"App icon" = "Alkalmazás ikon"; + +/* No comment provided by engineer. */ +"App passcode" = "Alkalmazás jelkód"; + +/* No comment provided by engineer. */ +"App passcode is replaced with self-destruct passcode." = "Az alkalmazás jelkód helyettesítésre kerül egy önmegsemmisítő jelkóddal."; + +/* No comment provided by engineer. */ +"App version" = "Alkalmazás verzió"; + +/* No comment provided by engineer. */ +"App version: v%@" = "Alkalmazás verzió: v%@"; + +/* No comment provided by engineer. */ +"Appearance" = "Megjelenés"; + +/* No comment provided by engineer. */ +"Attach" = "Csatolás"; + +/* No comment provided by engineer. */ +"Audio & video calls" = "Hang- és videóhívások"; + +/* No comment provided by engineer. */ +"Audio and video calls" = "Hang- és videóhívások"; + +/* No comment provided by engineer. */ +"audio call (not e2e encrypted)" = "hanghívás (nem e2e titkosított)"; + +/* chat feature */ +"Audio/video calls" = "Hang-/videóhívások"; + +/* No comment provided by engineer. */ +"Audio/video calls are prohibited." = "A hang- és videóhívások le vannak tiltva."; + +/* PIN entry */ +"Authentication cancelled" = "Hitelesítés megszakítva"; + +/* No comment provided by engineer. */ +"Authentication failed" = "Hitelesítés sikertelen"; + +/* No comment provided by engineer. */ +"Authentication is required before the call is connected, but you may miss calls." = "A hívás csatlakoztatása előtt hitelesítésre van szükség, de előfordulhat, hogy nem tud hívásokat fogadni."; + +/* No comment provided by engineer. */ +"Authentication unavailable" = "Hitelesítés elérhetetlen"; + +/* member role */ +"author" = "szerző"; + +/* No comment provided by engineer. */ +"Auto-accept" = "Automatikus elfogadás"; + +/* No comment provided by engineer. */ +"Auto-accept contact requests" = "Ismerős jelölések automatikus elfogadása"; + +/* No comment provided by engineer. */ +"Auto-accept images" = "Fotók automatikus elfogadása"; + +/* No comment provided by engineer. */ +"Back" = "Vissza"; + +/* No comment provided by engineer. */ +"Bad desktop address" = "Hibás számítógép azonosító"; + +/* integrity error chat item */ +"bad message hash" = "téves üzenet hash"; + +/* No comment provided by engineer. */ +"Bad message hash" = "Téves üzenet hash"; + +/* integrity error chat item */ +"bad message ID" = "téves üzenet ID"; + +/* No comment provided by engineer. */ +"Bad message ID" = "Téves üzenet ID"; + +/* No comment provided by engineer. */ +"Better groups" = "Javított csoportok"; + +/* No comment provided by engineer. */ +"Better messages" = "Jobb üzenetek"; + +/* No comment provided by engineer. */ +"Block" = "Blokkolás"; + +/* No comment provided by engineer. */ +"Block for all" = "Mindenki számára letiltva"; + +/* No comment provided by engineer. */ +"Block group members" = "Csoporttagok blokkolása"; + +/* No comment provided by engineer. */ +"Block member" = "Tag blokkolása"; + +/* No comment provided by engineer. */ +"Block member for all?" = "Tag letiltása mindenki számára?"; + +/* No comment provided by engineer. */ +"Block member?" = "Tag blokkolása?"; + +/* marked deleted chat item preview text */ +"blocked" = "blokkolva"; + +/* rcv group event chat item */ +"blocked %@" = "%@ letiltva"; + +/* marked deleted chat item preview text */ +"blocked by admin" = "letiltva az admin által"; + +/* No comment provided by engineer. */ +"Blocked by admin" = "Letiltva az admin által"; + +/* No comment provided by engineer. */ +"bold" = "félkövér"; + +/* No comment provided by engineer. */ +"Both you and your contact can add message reactions." = "Mindkét fél is hozzáadhat üzenetreakciókat."; + +/* No comment provided by engineer. */ +"Both you and your contact can irreversibly delete sent messages. (24 hours)" = "Mindkét fél visszafordíthatatlanul törölheti az elküldött üzeneteket. (24 óra)"; + +/* No comment provided by engineer. */ +"Both you and your contact can make calls." = "Mindkét fél tud hívásokat indítani."; + +/* No comment provided by engineer. */ +"Both you and your contact can send disappearing messages." = "Mindkét fél küldhet eltűnő üzeneteket."; + +/* No comment provided by engineer. */ +"Both you and your contact can send voice messages." = "Mindkét fél küldhet hangüzeneteket."; + +/* No comment provided by engineer. */ +"Bulgarian, Finnish, Thai and Ukrainian - thanks to the users and [Weblate](https://github.com/simplex-chat/simplex-chat/tree/stable#help-translating-simplex-chat)!" = "Bolgár, finn, thai és ukrán – köszönet a felhasználóknak és a [Weblate-nek](https://github.com/simplex-chat/simplex-chat/tree/stable#help-translating-simplex-chat)!"; + +/* No comment provided by engineer. */ +"By chat profile (default) or [by connection](https://simplex.chat/blog/20230204-simplex-chat-v4-5-user-chat-profiles.html#transport-isolation) (BETA)." = "Csevegési profil (alapértelmezett) vagy [kapcsolat alapján] (https://simplex.chat/blog/20230204-simplex-chat-v4-5-user-chat-profiles.html#transport-isolation) (BÉTA)."; + +/* No comment provided by engineer. */ +"Call already ended!" = "A hívás már befejeződött!"; + +/* call status */ +"call error" = "hiba a hívásban"; + +/* call status */ +"call in progress" = "hívás folyamatban"; + +/* call status */ +"calling…" = "hívás…"; + +/* No comment provided by engineer. */ +"Calls" = "Hívások"; + +/* No comment provided by engineer. */ +"Camera not available" = "A fényképező nem elérhető"; + +/* No comment provided by engineer. */ +"Can't invite contact!" = "Ismerősök meghívása le van tiltva!"; + +/* No comment provided by engineer. */ +"Can't invite contacts!" = "Ismerősök meghívása nem lehetséges!"; + +/* No comment provided by engineer. */ +"Cancel" = "Megszakítás"; + +/* feature offered item */ +"cancelled %@" = "%@ törölve"; + +/* No comment provided by engineer. */ +"Cannot access keychain to save database password" = "Nem lehet hozzáférni a kulcstartóhoz az adatbázis jelszavának mentéséhez"; + +/* No comment provided by engineer. */ +"Cannot receive file" = "Nem lehet fogadni a fájlt"; + +/* No comment provided by engineer. */ +"Change" = "Változtatás"; + +/* No comment provided by engineer. */ +"Change database passphrase?" = "Adatbázis jelmondat megváltoztatása?"; + +/* authentication reason */ +"Change lock mode" = "Zárolási mód megváltoztatása"; + +/* No comment provided by engineer. */ +"Change member role?" = "Tag szerepkörének megváltoztatása?"; + +/* authentication reason */ +"Change passcode" = "Jelkód megváltoztatása"; + +/* No comment provided by engineer. */ +"Change receiving address" = "A fogadó cím megváltoztatása"; + +/* No comment provided by engineer. */ +"Change receiving address?" = "Megváltoztatja a fogadó címet?"; + +/* No comment provided by engineer. */ +"Change role" = "Szerepkör megváltoztatása"; + +/* authentication reason */ +"Change self-destruct mode" = "Önmegsemmisítő mód megváltoztatása"; + +/* authentication reason + set passcode view */ +"Change self-destruct passcode" = "Önmegsemmisító jelkód megváltoztatása"; + +/* chat item text */ +"changed address for you" = "Cím megváltoztatva"; + +/* rcv group event chat item */ +"changed role of %@ to %@" = "%1$@ szerepköre megváltozott erre: %2$@"; + +/* rcv group event chat item */ +"changed your role to %@" = "megváltoztatta a szerepkörét erre: %@"; + +/* chat item text */ +"changing address for %@…" = "cím módosítása %@ számára…"; + +/* chat item text */ +"changing address…" = "azonosító megváltoztatása…"; + +/* No comment provided by engineer. */ +"Chat archive" = "Csevegési archívum"; + +/* No comment provided by engineer. */ +"Chat console" = "Csevegési konzol"; + +/* No comment provided by engineer. */ +"Chat database" = "Csevegési adatbázis"; + +/* No comment provided by engineer. */ +"Chat database deleted" = "Csevegési adatbázis törölve"; + +/* No comment provided by engineer. */ +"Chat database imported" = "Csevegési adatbázis importálva"; + +/* No comment provided by engineer. */ +"Chat is running" = "A csevegés fut"; + +/* No comment provided by engineer. */ +"Chat is stopped" = "A csevegés leállt"; + +/* No comment provided by engineer. */ +"Chat is stopped. If you already used this database on another device, you should transfer it back before starting chat." = "A csevegés leállt. Ha már használta ezt az adatbázist egy másik eszközön, úgy visszaállítás szükséges a csevegés megkezdése előtt."; + +/* No comment provided by engineer. */ +"Chat preferences" = "Csevegési beállítások"; + +/* No comment provided by engineer. */ +"Chats" = "Csevegések"; + +/* No comment provided by engineer. */ +"Check server address and try again." = "Kiszolgáló címének ellenőrzése és újrapróbálkozás."; + +/* No comment provided by engineer. */ +"Chinese and Spanish interface" = "Kínai és spanyol kezelőfelület"; + +/* No comment provided by engineer. */ +"Choose file" = "Fájl kiválasztása"; + +/* No comment provided by engineer. */ +"Choose from library" = "Választás a könyvtárból"; + +/* No comment provided by engineer. */ +"Clear" = "Kiürítés"; + +/* No comment provided by engineer. */ +"Clear conversation" = "Beszélgetés kiürítése"; + +/* No comment provided by engineer. */ +"Clear conversation?" = "Beszélgetés kiürítése?"; + +/* No comment provided by engineer. */ +"Clear private notes?" = "Privát jegyzetek törlése?"; + +/* No comment provided by engineer. */ +"Clear verification" = "Hitelesítés törlése"; + +/* No comment provided by engineer. */ +"colored" = "színes"; + +/* No comment provided by engineer. */ +"Colors" = "Színek"; + +/* server test step */ +"Compare file" = "Fájl összehasonlítás"; + +/* No comment provided by engineer. */ +"Compare security codes with your contacts." = "Biztonsági kódok összehasonlítása az ismerősökkel."; + +/* No comment provided by engineer. */ +"complete" = "befejezett"; + +/* No comment provided by engineer. */ +"Configure ICE servers" = "ICE kiszolgálók beállítása"; + +/* No comment provided by engineer. */ +"Confirm" = "Megerősítés"; + +/* No comment provided by engineer. */ +"Confirm database upgrades" = "Adatbázis frissítés megerősítése"; + +/* No comment provided by engineer. */ +"Confirm new passphrase…" = "Új jelmondat megerősítése…"; + +/* No comment provided by engineer. */ +"Confirm Passcode" = "Jelkód megerősítése"; + +/* No comment provided by engineer. */ +"Confirm password" = "Jelszó megerősítése"; + +/* server test step */ +"Connect" = "Kapcsolódás"; + +/* No comment provided by engineer. */ +"Connect automatically" = "Kapcsolódás automatikusan"; + +/* No comment provided by engineer. */ +"Connect incognito" = "Inkognítóban csatlakozva"; + +/* No comment provided by engineer. */ +"Connect to desktop" = "Kapcsolódás számítógéphez"; + +/* No comment provided by engineer. */ +"connect to SimpleX Chat developers." = "Csatlakozás a SimpleX Chat fejlesztőkhöz."; + +/* No comment provided by engineer. */ +"Connect to yourself?" = "Kapcsolódás saját magához?"; + +/* No comment provided by engineer. */ +"Connect to yourself?\nThis is your own one-time link!" = "Kapcsolódás saját magához?\nEz az egyszer használatos hivatkozása!"; + +/* No comment provided by engineer. */ +"Connect to yourself?\nThis is your own SimpleX address!" = "Kapcsolódás saját magához?\nEz a SimpleX azonosítója!"; + +/* No comment provided by engineer. */ +"Connect via contact address" = "Kapcsolódás ismerős azonosítója által"; + +/* No comment provided by engineer. */ +"Connect via link" = "Kapcsolódás egy hivatkozáson keresztül"; + +/* No comment provided by engineer. */ +"Connect via one-time link" = "Kapcsolódás egyszer használatos hivatkozáson keresztül"; + +/* No comment provided by engineer. */ +"Connect with %@" = "Kapcsolódás ezzel: %@"; + +/* No comment provided by engineer. */ +"connected" = "kapcsolódva"; + +/* No comment provided by engineer. */ +"Connected desktop" = "Csatlakoztatott számítógép"; + +/* rcv group event chat item */ +"connected directly" = "közvetlenül kapcsolódva"; + +/* No comment provided by engineer. */ +"Connected to desktop" = "Csatlakozva a számítógéphez"; + +/* No comment provided by engineer. */ +"connecting" = "kapcsolódás"; + +/* No comment provided by engineer. */ +"connecting (accepted)" = "kapcsolódás (elfogadva)"; + +/* No comment provided by engineer. */ +"connecting (announced)" = "kapcsolódás (bejelentve)"; + +/* No comment provided by engineer. */ +"connecting (introduced)" = "kapcsolódás (bejelentve)"; + +/* No comment provided by engineer. */ +"connecting (introduction invitation)" = "csatlakozás (bemutatkozás meghívás)"; + +/* call status */ +"connecting call" = "hívás kapcsolódik…"; + +/* No comment provided by engineer. */ +"Connecting server…" = "Kapcsolódás a kiszolgálóhoz…"; + +/* No comment provided by engineer. */ +"Connecting server… (error: %@)" = "Kapcsolódás a kiszolgálóhoz... (hiba: %@)"; + +/* No comment provided by engineer. */ +"Connecting to desktop" = "Kapcsolódás a számítógéphez"; + +/* chat list item title */ +"connecting…" = "kapcsolódás…"; + +/* No comment provided by engineer. */ +"Connection" = "Kapcsolat"; + +/* No comment provided by engineer. */ +"Connection error" = "Kapcsolódási hiba"; + +/* No comment provided by engineer. */ +"Connection error (AUTH)" = "Kapcsolódási hiba (AUTH)"; + +/* chat list item title (it should not be shown */ +"connection established" = "Kapcsolat létrehozva"; + +/* No comment provided by engineer. */ +"Connection request sent!" = "Kapcsolódási kérés elküldve!"; + +/* No comment provided by engineer. */ +"Connection terminated" = "Kapcsolat megszakítva"; + +/* No comment provided by engineer. */ +"Connection timeout" = "Kapcsolat időtúllépés"; + +/* connection information */ +"connection:%@" = "kapcsolat: %@"; + +/* profile update event chat item */ +"contact %@ changed to %@" = "%1$@ ismerősének neve megváltozott erre: %2$@"; + +/* No comment provided by engineer. */ +"Contact allows" = "Ismerős engedélyezi"; + +/* No comment provided by engineer. */ +"Contact already exists" = "Létező ismerős"; + +/* No comment provided by engineer. */ +"contact has e2e encryption" = "az ismerősnél az e2e titkosítás elérhető"; + +/* No comment provided by engineer. */ +"contact has no e2e encryption" = "az ismerősnél az e2e titkosítás nem elérhető"; + +/* notification */ +"Contact hidden:" = "Ismerős elrejtve:"; + +/* notification */ +"Contact is connected" = "Ismerős csatlakozott"; + +/* No comment provided by engineer. */ +"Contact is not connected yet!" = "Az ismerős még nem csatlakozott!"; + +/* No comment provided by engineer. */ +"Contact name" = "Ismerős neve"; + +/* No comment provided by engineer. */ +"Contact preferences" = "Ismerős beállításai"; + +/* No comment provided by engineer. */ +"Contacts" = "Ismerősök"; + +/* No comment provided by engineer. */ +"Contacts can mark messages for deletion; you will be able to view them." = "Az ismerősök törlésre jelölhetnek üzeneteket ; megtekintheti őket."; + +/* No comment provided by engineer. */ +"Continue" = "Folytatás"; + +/* chat item action */ +"Copy" = "Másolás"; + +/* No comment provided by engineer. */ +"Core version: v%@" = "Alapverziószám: v%@"; + +/* No comment provided by engineer. */ +"Correct name to %@?" = "Név javítása erre: %@?"; + +/* No comment provided by engineer. */ +"Create" = "Létrehozás"; + +/* No comment provided by engineer. */ +"Create a group using a random profile." = "Csoport létrehozása véletlenszerűen létrehozott profillal."; + +/* No comment provided by engineer. */ +"Create an address to let people connect with you." = "Azonosító létrehozása, hogy az emberek kapcsolatba léphessenek önnel."; + +/* server test step */ +"Create file" = "Fájl létrehozása"; + +/* No comment provided by engineer. */ +"Create group" = "Csoport létrehozása"; + +/* No comment provided by engineer. */ +"Create group link" = "Csoportos hivatkozás létrehozása"; + +/* No comment provided by engineer. */ +"Create link" = "Hivatkozás létrehozása"; + +/* No comment provided by engineer. */ +"Create new profile in [desktop app](https://simplex.chat/downloads/). 💻" = "Új profil létrehozása az [asztali kliensben](https://simplex.chat/downloads/). 💻"; + +/* No comment provided by engineer. */ +"Create profile" = "Profil létrehozása"; + +/* server test step */ +"Create queue" = "Várólista létrehozása"; + +/* No comment provided by engineer. */ +"Create secret group" = "Titkos csoport létrehozása"; + +/* No comment provided by engineer. */ +"Create SimpleX address" = "SimpleX azonosító létrehozása"; + +/* No comment provided by engineer. */ +"Create your profile" = "Saját profil létrehozása"; + +/* No comment provided by engineer. */ +"Created at" = "Létrehozva ekkor"; + +/* copied message info */ +"Created at: %@" = "Létrehozva ekkor: %@"; + +/* No comment provided by engineer. */ +"Created on %@" = "Létrehozva %@"; + +/* No comment provided by engineer. */ +"Creating link…" = "Hivatkozás létrehozása…"; + +/* No comment provided by engineer. */ +"creator" = "szerző"; + +/* No comment provided by engineer. */ +"Current Passcode" = "Jelenlegi jelkód"; + +/* No comment provided by engineer. */ +"Current passphrase…" = "Jelenlegi jelmondat…"; + +/* No comment provided by engineer. */ +"Currently maximum supported file size is %@." = "Jelenleg a maximális támogatott fájlméret %@."; + +/* dropdown time picker choice */ +"custom" = "egyedi"; + +/* No comment provided by engineer. */ +"Custom time" = "Személyreszabott idő"; + +/* No comment provided by engineer. */ +"Dark" = "Sötét"; + +/* No comment provided by engineer. */ +"Database downgrade" = "Visszatérés a korábbi adatbázis verzióra"; + +/* No comment provided by engineer. */ +"Database encrypted!" = "Adatbázis titkosítva!"; + +/* No comment provided by engineer. */ +"Database encryption passphrase will be updated and stored in the keychain.\n" = "Az adatbázis titkosítási jelmondata frissül és tárolódik a kulcstárolóban.\n"; + +/* No comment provided by engineer. */ +"Database encryption passphrase will be updated.\n" = "Adatbázis titkosítási jelmondat frissítve lesz.\n"; + +/* No comment provided by engineer. */ +"Database error" = "Adatbázis hiba"; + +/* No comment provided by engineer. */ +"Database ID" = "Adatbázis ID"; + +/* copied message info */ +"Database ID: %d" = "Adatbázis azonosító: %d"; + +/* No comment provided by engineer. */ +"Database IDs and Transport isolation option." = "Adatbázis azonosítók és átviteli izolációs beállítások."; + +/* No comment provided by engineer. */ +"Database is encrypted using a random passphrase, you can change it." = "Az adatbázis egy véletlenszerű jelmondattal van titkosítva, megváltoztatható."; + +/* No comment provided by engineer. */ +"Database is encrypted using a random passphrase. Please change it before exporting." = "Az adatbázis egy véletlenszerű jelmondattal van titkosítva. Exportálás előtti módosítás szükséges."; + +/* No comment provided by engineer. */ +"Database passphrase" = "Adatbázis jelmondat"; + +/* No comment provided by engineer. */ +"Database passphrase & export" = "Adatbázis jelmondat és exportálás"; + +/* No comment provided by engineer. */ +"Database passphrase is different from saved in the keychain." = "Az adatbázis jelmondata eltér a kulcstárlóban mentettől."; + +/* No comment provided by engineer. */ +"Database passphrase is required to open chat." = "Adatbázis jelmondat szükséges a csevegés megnyitásához."; + +/* No comment provided by engineer. */ +"Database upgrade" = "Adatbázis fejlesztése"; + +/* No comment provided by engineer. */ +"database version is newer than the app, but no down migration for: %@" = "az adatbázis verziója újabb, mint az alkalmazásé, de nincs visszafelé migráció: %@"; + +/* No comment provided by engineer. */ +"Database will be encrypted and the passphrase stored in the keychain.\n" = "Az adatbázis titkosítva lesz, a jelmondat pedig a kulcstárolóban lesz tárolva.\n"; + +/* No comment provided by engineer. */ +"Database will be encrypted.\n" = "Az adatbázis titkosításra kerül.\n"; + +/* No comment provided by engineer. */ +"Database will be migrated when the app restarts" = "Az adatbázis az alkalmazás újraindításakor migrálásra kerül"; + +/* time unit */ +"days" = "nap"; + +/* No comment provided by engineer. */ +"Decentralized" = "Decentralizált"; + +/* message decrypt error item */ +"Decryption error" = "Titkosítás visszafejtési hiba"; + +/* pref value */ +"default (%@)" = "alapértelmezett (%@)"; + +/* No comment provided by engineer. */ +"default (no)" = "alapértelmezett (nem)"; + +/* No comment provided by engineer. */ +"default (yes)" = "alapértelmezett (igen)"; + +/* chat item action */ +"Delete" = "Törlés"; + +/* No comment provided by engineer. */ +"Delete %lld messages?" = "Töröl %lld üzenetet?"; + +/* No comment provided by engineer. */ +"Delete address" = "Azonosító törlése"; + +/* No comment provided by engineer. */ +"Delete address?" = "Azonosító törlése?"; + +/* No comment provided by engineer. */ +"Delete after" = "Törlés miután"; + +/* No comment provided by engineer. */ +"Delete all files" = "Minden fájl törlése"; + +/* No comment provided by engineer. */ +"Delete and notify contact" = "Törlés és ismerős értesítése"; + +/* No comment provided by engineer. */ +"Delete archive" = "Archívum törlése"; + +/* No comment provided by engineer. */ +"Delete chat archive?" = "Csevegési archívum törlése?"; + +/* No comment provided by engineer. */ +"Delete chat profile" = "Csevegési profil törlése"; + +/* No comment provided by engineer. */ +"Delete chat profile?" = "Csevegési profil törlése?"; + +/* No comment provided by engineer. */ +"Delete connection" = "Kapcsolat törlése"; + +/* No comment provided by engineer. */ +"Delete contact" = "Ismerős törlése"; + +/* No comment provided by engineer. */ +"Delete Contact" = "Ismerős törlése"; + +/* No comment provided by engineer. */ +"Delete contact?\nThis cannot be undone!" = "Ismerős törlése?\nEzt nem vonható vissza!"; + +/* No comment provided by engineer. */ +"Delete database" = "Adatbázis törlése"; + +/* server test step */ +"Delete file" = "Fájl törlése"; + +/* No comment provided by engineer. */ +"Delete files and media?" = "Fájlok és a médiatartalmak törlése?"; + +/* No comment provided by engineer. */ +"Delete files for all chat profiles" = "Fájlok törlése minden csevegési profilból"; + +/* chat feature */ +"Delete for everyone" = "Törlés mindenkinél"; + +/* No comment provided by engineer. */ +"Delete for me" = "Törlés nálam"; + +/* No comment provided by engineer. */ +"Delete group" = "Csoport törlése"; + +/* No comment provided by engineer. */ +"Delete group?" = "Csoport törlése?"; + +/* No comment provided by engineer. */ +"Delete invitation" = "Meghívó törlése"; + +/* No comment provided by engineer. */ +"Delete link" = "Hivatkozás törlése"; + +/* No comment provided by engineer. */ +"Delete link?" = "Hivatkozás törlése?"; + +/* No comment provided by engineer. */ +"Delete member message?" = "Csoporttag üzenet törlése?"; + +/* No comment provided by engineer. */ +"Delete message?" = "Üzenet törlése?"; + +/* No comment provided by engineer. */ +"Delete messages" = "Üzenetek törlése"; + +/* No comment provided by engineer. */ +"Delete messages after" = "Üzenetek törlése miután"; + +/* No comment provided by engineer. */ +"Delete old database" = "Régi adatbázis törlése"; + +/* No comment provided by engineer. */ +"Delete old database?" = "Régi adatbázis törlése?"; + +/* No comment provided by engineer. */ +"Delete pending connection" = "Függőben lévő kapcsolat törlése"; + +/* No comment provided by engineer. */ +"Delete pending connection?" = "Függő kapcsolatfelvételi kérések törlése?"; + +/* No comment provided by engineer. */ +"Delete profile" = "Profil törlése"; + +/* server test step */ +"Delete queue" = "Várólista törlése"; + +/* No comment provided by engineer. */ +"Delete user profile?" = "Felhasználói profil törlése?"; + +/* deleted chat item */ +"deleted" = "törölve"; + +/* No comment provided by engineer. */ +"Deleted at" = "Törölve ekkor"; + +/* copied message info */ +"Deleted at: %@" = "Törölve ekkor: %@"; + +/* rcv direct event chat item */ +"deleted contact" = "törölt ismerős"; + +/* rcv group event chat item */ +"deleted group" = "törölt csoport"; + +/* No comment provided by engineer. */ +"Delivery" = "Kézbesítés"; + +/* No comment provided by engineer. */ +"Delivery receipts are disabled!" = "Kézbesítési igazolások kikapcsolva!"; + +/* No comment provided by engineer. */ +"Delivery receipts!" = "Kézbesítési igazolások!"; + +/* No comment provided by engineer. */ +"Description" = "Leírás"; + +/* No comment provided by engineer. */ +"Desktop address" = "Számítógép azonosítója"; + +/* No comment provided by engineer. */ +"Desktop app version %@ is not compatible with this app." = "Az asztali kliens verziója %@ nem kompatibilis ezzel az alkalmazással."; + +/* No comment provided by engineer. */ +"Desktop devices" = "Számítógépek"; + +/* No comment provided by engineer. */ +"Develop" = "Fejlesztés"; + +/* No comment provided by engineer. */ +"Developer tools" = "Fejlesztői eszközök"; + +/* No comment provided by engineer. */ +"Device" = "Eszköz"; + +/* No comment provided by engineer. */ +"Device authentication is disabled. Turning off SimpleX Lock." = "Eszközhitelesítés kikapcsolva. SimpleX zárolás kikapcsolása."; + +/* No comment provided by engineer. */ +"Device authentication is not enabled. You can turn on SimpleX Lock via Settings, once you enable device authentication." = "Eszközhitelesítés nem engedélyezett.A SimpleX zárolás bekapcsolható a Beállításokon keresztül, miután az eszköz hitelesítés engedélyezésre került."; + +/* No comment provided by engineer. */ +"different migration in the app/database: %@ / %@" = "különböző migrációk az alkalmazásban/adatbázisban: %@ / %@"; + +/* No comment provided by engineer. */ +"Different names, avatars and transport isolation." = "Különböző nevek, avatarok és átviteli izoláció."; + +/* connection level description */ +"direct" = "közvetlen"; + +/* chat feature */ +"Direct messages" = "Közvetlen üzenetek"; + +/* No comment provided by engineer. */ +"Direct messages between members are prohibited in this group." = "Ebben a csoportban tiltott a tagok közötti közvetlen üzenetek küldése."; + +/* No comment provided by engineer. */ +"Disable (keep overrides)" = "Letiltás (felülírások megtartásával)"; + +/* No comment provided by engineer. */ +"Disable for all" = "Letiltás mindenki számára"; + +/* authentication reason */ +"Disable SimpleX Lock" = "SimpleX zárolás kikapcsolása"; + +/* No comment provided by engineer. */ +"disabled" = "letiltva"; + +/* No comment provided by engineer. */ +"Disappearing message" = "Eltűnő üzenet"; + +/* chat feature */ +"Disappearing messages" = "Eltűnő üzenetek"; + +/* No comment provided by engineer. */ +"Disappearing messages are prohibited in this chat." = "Az eltűnő üzenetek le vannak tiltva ebben a csevegésben."; + +/* No comment provided by engineer. */ +"Disappearing messages are prohibited in this group." = "Az eltűnő üzenetek küldése le van tiltva ebben a csoportban."; + +/* No comment provided by engineer. */ +"Disappears at" = "Eltűnik ekkor"; + +/* copied message info */ +"Disappears at: %@" = "Eltűnik ekkor: %@"; + +/* server test step */ +"Disconnect" = "Kapcsolat bontása"; + +/* No comment provided by engineer. */ +"Disconnect desktop?" = "Számítógép leválasztása?"; + +/* No comment provided by engineer. */ +"Discover and join groups" = "Helyi csoportok felfedezése és csatlakozás"; + +/* No comment provided by engineer. */ +"Discover via local network" = "Felfedezés helyi hálózaton keresztül"; + +/* No comment provided by engineer. */ +"Do it later" = "Későbbre halaszt"; + +/* No comment provided by engineer. */ +"Do not send history to new members." = "Ne küldjön előzményeket új tagok részére."; + +/* No comment provided by engineer. */ +"Do NOT use SimpleX for emergency calls." = "NE használja a SimpleX-et segélyhívásokhoz."; + +/* No comment provided by engineer. */ +"Don't create address" = "Ne hozzon létre azonosítót"; + +/* No comment provided by engineer. */ +"Don't enable" = "Ne engedélyezze"; + +/* No comment provided by engineer. */ +"Don't show again" = "Ne mutasd újra"; + +/* No comment provided by engineer. */ +"Downgrade and open chat" = "Visszatérés a korábbi verzióra és a csevegés megnyitása"; + +/* server test step */ +"Download file" = "Fájl letöltése"; + +/* No comment provided by engineer. */ +"Duplicate display name!" = "Duplikált megjelenítési név!"; + +/* integrity error chat item */ +"duplicate message" = "duplikálódott üzenet"; + +/* No comment provided by engineer. */ +"Duration" = "Időtartam"; + +/* No comment provided by engineer. */ +"e2e encrypted" = "e2e titkosított"; + +/* chat item action */ +"Edit" = "Szerkesztés"; + +/* No comment provided by engineer. */ +"Edit group profile" = "A csoport profiljának szerkesztése"; + +/* No comment provided by engineer. */ +"Enable" = "Engedélyezés"; + +/* No comment provided by engineer. */ +"Enable (keep overrides)" = "Engedélyezés (felülírások megtartásával)"; + +/* No comment provided by engineer. */ +"Enable automatic message deletion?" = "Automatikus üzenet törlés engedélyezése?"; + +/* No comment provided by engineer. */ +"Enable camera access" = "Kamera hozzáférés engedélyezése"; + +/* No comment provided by engineer. */ +"Enable for all" = "Engedélyezés mindenki részére"; + +/* No comment provided by engineer. */ +"Enable instant notifications?" = "Azonnali értesítések engedélyezése?"; + +/* No comment provided by engineer. */ +"Enable lock" = "Zárolás engedélyezése"; + +/* No comment provided by engineer. */ +"Enable notifications" = "Értesítések engedélyezése"; + +/* No comment provided by engineer. */ +"Enable periodic notifications?" = "Időszakos értesítések engedélyezése?"; + +/* No comment provided by engineer. */ +"Enable self-destruct" = "Önmegsemmisítés engedélyezése"; + +/* set passcode view */ +"Enable self-destruct passcode" = "Önmegsemmisítő jelkód engedélyezése"; + +/* authentication reason */ +"Enable SimpleX Lock" = "SimpleX zárolás engedélyezése"; + +/* No comment provided by engineer. */ +"Enable TCP keep-alive" = "TCP életben tartásának engedélyezése"; + +/* enabled status */ +"enabled" = "engedélyezve"; + +/* enabled status */ +"enabled for contact" = "engedélyezve ismerős részére"; + +/* enabled status */ +"enabled for you" = "engedélyezve az ön számára"; + +/* No comment provided by engineer. */ +"Encrypt" = "Titkosít"; + +/* No comment provided by engineer. */ +"Encrypt database?" = "Adatbázis titkosítása?"; + +/* No comment provided by engineer. */ +"Encrypt local files" = "Helyi fájlok titkosítása"; + +/* No comment provided by engineer. */ +"Encrypt stored files & media" = "Tárolt fájlok és médiatartalmak titkosítása"; + +/* No comment provided by engineer. */ +"Encrypted database" = "Titkosított adatbázis"; + +/* notification */ +"Encrypted message or another event" = "Titkosított üzenet vagy más esemény"; + +/* notification */ +"Encrypted message: app is stopped" = "Titkosított üzenet: az alkalmazás leállt"; + +/* notification */ +"Encrypted message: database error" = "Titkosított üzenet: adatbázis hiba"; + +/* notification */ +"Encrypted message: database migration error" = "Titkosított üzenet: adatbázis-migrációs hiba"; + +/* notification */ +"Encrypted message: keychain error" = "Titkosított üzenet: kulcstároló hiba"; + +/* notification */ +"Encrypted message: no passphrase" = "Titkosított üzenet: nincs jelmondat"; + +/* notification */ +"Encrypted message: unexpected error" = "Titkosított üzenet: váratlan hiba"; + +/* chat item text */ +"encryption agreed" = "titkosítás egyeztetve"; + +/* chat item text */ +"encryption agreed for %@" = "titkosítás elfogadva %@ számára"; + +/* chat item text */ +"encryption ok" = "titkosítás rendben"; + +/* chat item text */ +"encryption ok for %@" = "titkosítás rendben vele: %@"; + +/* chat item text */ +"encryption re-negotiation allowed" = "titkosítás újraegyeztetés engedélyezve"; + +/* chat item text */ +"encryption re-negotiation allowed for %@" = "titkosítás újraegyeztetés engedélyezve vele: %@"; + +/* message decrypt error item */ +"Encryption re-negotiation error" = "Titkosítás újraegyeztetési hiba"; + +/* No comment provided by engineer. */ +"Encryption re-negotiation failed." = "Titkosítás újraegyeztetése sikertelen."; + +/* chat item text */ +"encryption re-negotiation required" = "titkosítás újraegyeztetés szükséges"; + +/* chat item text */ +"encryption re-negotiation required for %@" = "titkosítás újraegyeztetés szükséges %@ számára"; + +/* No comment provided by engineer. */ +"ended" = "befejeződött"; + +/* call status */ +"ended call %@" = "%@ hívása befejeződött"; + +/* No comment provided by engineer. */ +"Enter correct passphrase." = "Helyes jelmondat bevitele."; + +/* No comment provided by engineer. */ +"Enter group name…" = "Csoportnév megadása…"; + +/* No comment provided by engineer. */ +"Enter Passcode" = "Jelkód megadása"; + +/* No comment provided by engineer. */ +"Enter passphrase…" = "Jelmondat megadása…"; + +/* No comment provided by engineer. */ +"Enter password above to show!" = "Jelszó megadása a megjelenítéshez!"; + +/* No comment provided by engineer. */ +"Enter server manually" = "Kiszolgáló megadása kézzel"; + +/* No comment provided by engineer. */ +"Enter this device name…" = "Eszköznév megadása…"; + +/* placeholder */ +"Enter welcome message…" = "Üdvözlő üzenetet megadása…"; + +/* placeholder */ +"Enter welcome message… (optional)" = "Üdvözlő üzenetet megadása… (opcionális)"; + +/* No comment provided by engineer. */ +"Enter your name…" = "Adja meg nevét…"; + +/* No comment provided by engineer. */ +"error" = "hiba"; + +/* No comment provided by engineer. */ +"Error" = "Hiba"; + +/* No comment provided by engineer. */ +"Error aborting address change" = "Hiba az azonosító megváltoztatásának megszakításakor"; + +/* No comment provided by engineer. */ +"Error accepting contact request" = "Hiba történt a kapcsolatfelvételi kérelem elfogadásakor"; + +/* No comment provided by engineer. */ +"Error accessing database file" = "Hiba az adatbázisfájl elérésekor"; + +/* No comment provided by engineer. */ +"Error adding member(s)" = "Hiba a tag(-ok) hozzáadásakor"; + +/* No comment provided by engineer. */ +"Error changing address" = "Hiba az azonosító megváltoztatásakor"; + +/* No comment provided by engineer. */ +"Error changing role" = "Hiba a szerepkör megváltoztatásakor"; + +/* No comment provided by engineer. */ +"Error changing setting" = "Hiba a beállítás megváltoztatásakor"; + +/* No comment provided by engineer. */ +"Error creating address" = "Hiba az azonosító létrehozásakor"; + +/* No comment provided by engineer. */ +"Error creating group" = "Hiba a csoport létrehozásakor"; + +/* No comment provided by engineer. */ +"Error creating group link" = "Hiba a csoport hivatkozásának létrehozásakor"; + +/* No comment provided by engineer. */ +"Error creating member contact" = "Hiba az ismerőssel történő kapcsolat létrehozásában"; + +/* No comment provided by engineer. */ +"Error creating message" = "Hiba az üzenet létrehozásakor"; + +/* No comment provided by engineer. */ +"Error creating profile!" = "Hiba a profil létrehozásakor!"; + +/* No comment provided by engineer. */ +"Error decrypting file" = "Hiba a fájl visszafejtésekor"; + +/* No comment provided by engineer. */ +"Error deleting chat database" = "Hiba a csevegési adatbázis törlésekor"; + +/* No comment provided by engineer. */ +"Error deleting chat!" = "Hiba a csevegés törlésekor!"; + +/* No comment provided by engineer. */ +"Error deleting connection" = "Hiba a kapcsolat törlésekor"; + +/* No comment provided by engineer. */ +"Error deleting contact" = "Hiba az ismerős törlésekor"; + +/* No comment provided by engineer. */ +"Error deleting database" = "Hiba az adatbázis törlésekor"; + +/* No comment provided by engineer. */ +"Error deleting old database" = "Hiba a régi adatbázis törlésekor"; + +/* No comment provided by engineer. */ +"Error deleting token" = "Hiba a token törlésekor"; + +/* No comment provided by engineer. */ +"Error deleting user profile" = "Hiba a felhasználói profil törlésekor"; + +/* No comment provided by engineer. */ +"Error enabling delivery receipts!" = "Hiba a kézbesítési jelentések engedélyezésekor!"; + +/* No comment provided by engineer. */ +"Error enabling notifications" = "Hiba az értesítések engedélyezésekor"; + +/* No comment provided by engineer. */ +"Error encrypting database" = "Hiba az adatbázis titkosításakor"; + +/* No comment provided by engineer. */ +"Error exporting chat database" = "Hiba a csevegési adatbázis exportálásakor"; + +/* No comment provided by engineer. */ +"Error importing chat database" = "Hiba a csevegési adatbázis importálásakor"; + +/* No comment provided by engineer. */ +"Error joining group" = "Hiba a csoporthoz való csatlakozáskor"; + +/* No comment provided by engineer. */ +"Error loading %@ servers" = "Hiba a %@ kiszolgálók betöltésekor"; + +/* No comment provided by engineer. */ +"Error opening chat" = "Hiba a csevegés megnyitásakor"; + +/* No comment provided by engineer. */ +"Error receiving file" = "Hiba a fájl fogadásakor"; + +/* No comment provided by engineer. */ +"Error removing member" = "Hiba a tag eltávolításakor"; + +/* No comment provided by engineer. */ +"Error saving %@ servers" = "Hiba történt a %@ kiszolgálók mentése közben"; + +/* No comment provided by engineer. */ +"Error saving group profile" = "Hiba a csoport profil mentésekor"; + +/* No comment provided by engineer. */ +"Error saving ICE servers" = "Hiba az ICE kiszolgálók mentésekor"; + +/* No comment provided by engineer. */ +"Error saving passcode" = "Hiba a jelkód mentése közben"; + +/* No comment provided by engineer. */ +"Error saving passphrase to keychain" = "Hiba a jelmondat kulcstárolóba történő mentésekor"; + +/* No comment provided by engineer. */ +"Error saving user password" = "Hiba a felhasználó jelszavának mentésekor"; + +/* No comment provided by engineer. */ +"Error scanning code: %@" = "Hiba a kód beolvasása közben: %@"; + +/* No comment provided by engineer. */ +"Error sending email" = "Hiba az e-mail küldésekor"; + +/* No comment provided by engineer. */ +"Error sending member contact invitation" = "Hiba történt a tag kapcsolatfelvételi meghívójának elküldésekor"; + +/* No comment provided by engineer. */ +"Error sending message" = "Hiba az üzenet küldésekor"; + +/* No comment provided by engineer. */ +"Error setting delivery receipts!" = "Hiba történt a kézbesítési igazolások beállításakor!"; + +/* No comment provided by engineer. */ +"Error starting chat" = "Hiba a csevegés elindításakor"; + +/* No comment provided by engineer. */ +"Error stopping chat" = "Hiba a csevegés megállításakor"; + +/* No comment provided by engineer. */ +"Error switching profile!" = "Hiba a profil váltásakor!"; + +/* No comment provided by engineer. */ +"Error synchronizing connection" = "Hiba a kapcsolat szinkronizálása során"; + +/* No comment provided by engineer. */ +"Error updating group link" = "Hiba a csoport hivatkozás frissítésekor"; + +/* No comment provided by engineer. */ +"Error updating message" = "Hiba az üzenet frissítésekor"; + +/* No comment provided by engineer. */ +"Error updating settings" = "Hiba történt a beállítások frissítésekor"; + +/* No comment provided by engineer. */ +"Error updating user privacy" = "Hiba a felhasználói beállítások frissítésekor"; + +/* No comment provided by engineer. */ +"Error: " = "Hiba: "; + +/* No comment provided by engineer. */ +"Error: %@" = "Hiba: %@"; + +/* No comment provided by engineer. */ +"Error: no database file" = "Hiba: nincs adatbázis fájl"; + +/* No comment provided by engineer. */ +"Error: URL is invalid" = "Hiba: az URL érvénytelen"; + +/* No comment provided by engineer. */ +"Even when disabled in the conversation." = "Akkor is, ha le van tiltva a beszélgetésben."; + +/* No comment provided by engineer. */ +"event happened" = "esemény történt"; + +/* No comment provided by engineer. */ +"Exit without saving" = "Kilépés mentés nélkül"; + +/* chat item action */ +"Expand" = "Kibontás"; + +/* No comment provided by engineer. */ +"Export database" = "Adatbázis exportálása"; + +/* No comment provided by engineer. */ +"Export error:" = "Exportálási hiba:"; + +/* No comment provided by engineer. */ +"Exported database archive." = "Exportált adatbázis-archívum."; + +/* No comment provided by engineer. */ +"Exporting database archive…" = "Adatbázis archívum exportálása…"; + +/* No comment provided by engineer. */ +"Failed to remove passphrase" = "Nem sikerült eltávolítani a jelmondatot"; + +/* No comment provided by engineer. */ +"Fast and no wait until the sender is online!" = "Gyors és nem kell várni, amíg a feladó online lesz!"; + +/* No comment provided by engineer. */ +"Faster joining and more reliable messages." = "Gyorsabb csatlakozás és megbízhatóbb üzenet kézbesítés."; + +/* No comment provided by engineer. */ +"Favorite" = "Kedvenc"; + +/* No comment provided by engineer. */ +"File will be deleted from servers." = "A fájl törölve lesz a kiszolgálóról."; + +/* No comment provided by engineer. */ +"File will be received when your contact completes uploading it." = "A fájl akkor érkezik meg, amikor ismerőse befejezte annak feltöltést."; + +/* No comment provided by engineer. */ +"File will be received when your contact is online, please wait or check later!" = "A fájl akkor érkezik meg, amint ismerőse online lesz, várjon, vagy ellenőrizze később!"; + +/* No comment provided by engineer. */ +"File: %@" = "Fájl: %@"; + +/* No comment provided by engineer. */ +"Files & media" = "Fájlok és média"; + +/* chat feature */ +"Files and media" = "Fájlok és médiatartalom"; + +/* No comment provided by engineer. */ +"Files and media are prohibited in this group." = "A fájlok- és a médiatartalom küldése le van tiltva ebben a csoportban."; + +/* No comment provided by engineer. */ +"Files and media prohibited!" = "A fájlok- és a médiatartalom küldése le van tiltva!"; + +/* No comment provided by engineer. */ +"Filter unread and favorite chats." = "Olvasatlan és kedvenc csevegésekre való szűrés."; + +/* No comment provided by engineer. */ +"Finally, we have them! 🚀" = "Végre, megvannak! 🚀"; + +/* No comment provided by engineer. */ +"Find chats faster" = "Csevegési üzenetek gyorsabb megtalálása"; + +/* No comment provided by engineer. */ +"Fix" = "Javítás"; + +/* No comment provided by engineer. */ +"Fix connection" = "Kapcsolat javítása"; + +/* No comment provided by engineer. */ +"Fix connection?" = "Kapcsolat javítása?"; + +/* No comment provided by engineer. */ +"Fix encryption after restoring backups." = "Titkosítás javítása az adatmentések helyreállítása után."; + +/* No comment provided by engineer. */ +"Fix not supported by contact" = "Ismerős általi javítás nem támogatott"; + +/* No comment provided by engineer. */ +"Fix not supported by group member" = "Csoporttag általi javítás nem támogatott"; + +/* No comment provided by engineer. */ +"For console" = "Konzolhoz"; + +/* No comment provided by engineer. */ +"Found desktop" = "Megtalált számítógép"; + +/* No comment provided by engineer. */ +"French interface" = "Francia kezelőfelület"; + +/* No comment provided by engineer. */ +"Full link" = "Teljes hivatkozás"; + +/* No comment provided by engineer. */ +"Full name (optional)" = "Teljes név (opcionális)"; + +/* No comment provided by engineer. */ +"Full name:" = "Teljes név:"; + +/* No comment provided by engineer. */ +"Fully decentralized – visible only to members." = "Teljesen decentralizált - kizárólag tagok számára látható."; + +/* No comment provided by engineer. */ +"Fully re-implemented - work in background!" = "Teljesen újra implementálva - háttérben történő működés!"; + +/* No comment provided by engineer. */ +"Further reduced battery usage" = "Tovább csökkentett akkumulátor használat"; + +/* No comment provided by engineer. */ +"GIFs and stickers" = "GIF-ek és matricák"; + +/* No comment provided by engineer. */ +"Group" = "Csoport"; + +/* No comment provided by engineer. */ +"Group already exists" = "A csoport már létezik"; + +/* No comment provided by engineer. */ +"Group already exists!" = "A csoport már létezik!"; + +/* No comment provided by engineer. */ +"group deleted" = "a csoport törölve"; + +/* No comment provided by engineer. */ +"Group display name" = "A csoport megjelenített neve"; + +/* No comment provided by engineer. */ +"Group full name (optional)" = "Csoport teljes neve (opcionális)"; + +/* No comment provided by engineer. */ +"Group image" = "Csoportkép"; + +/* No comment provided by engineer. */ +"Group invitation" = "Csoportos meghívó"; + +/* No comment provided by engineer. */ +"Group invitation expired" = "A csoport meghívó lejárt"; + +/* No comment provided by engineer. */ +"Group invitation is no longer valid, it was removed by sender." = "A csoport meghívó már nem érvényes, el lett távolítva a küldője által."; + +/* No comment provided by engineer. */ +"Group link" = "Csoport hivatkozás"; + +/* No comment provided by engineer. */ +"Group links" = "Csoport hivatkozások"; + +/* No comment provided by engineer. */ +"Group members can add message reactions." = "Csoporttagok üzenetreakciókat adhatnak hozzá."; + +/* No comment provided by engineer. */ +"Group members can irreversibly delete sent messages. (24 hours)" = "Csoporttagok visszafordíthatatlanul törölhetik az elküldött üzeneteket. (24 óra)"; + +/* No comment provided by engineer. */ +"Group members can send direct messages." = "Csoporttagok küldhetnek közvetlen üzeneteket."; + +/* No comment provided by engineer. */ +"Group members can send disappearing messages." = "Csoporttagok küldhetnek eltűnő üzeneteket."; + +/* No comment provided by engineer. */ +"Group members can send files and media." = "Csoporttagok küldhetnek fájlokat és médiatartalmakat."; + +/* No comment provided by engineer. */ +"Group members can send voice messages." = "Csoporttagok küldhetnek hangüzeneteket."; + +/* notification */ +"Group message:" = "Csoport üzenet:"; + +/* No comment provided by engineer. */ +"Group moderation" = "Csoport moderáció"; + +/* No comment provided by engineer. */ +"Group preferences" = "Csoport beállítások"; + +/* No comment provided by engineer. */ +"Group profile" = "Csoport profil"; + +/* No comment provided by engineer. */ +"Group profile is stored on members' devices, not on the servers." = "A csoport profilja a tagok eszközein tárolódik, nem a kiszolgálókon."; + +/* snd group event chat item */ +"group profile updated" = "csoport profil frissítve"; + +/* No comment provided by engineer. */ +"Group welcome message" = "Csoport üdvözlő üzenete"; + +/* No comment provided by engineer. */ +"Group will be deleted for all members - this cannot be undone!" = "Csoport törlésre kerül minden tag számára - ez nem vonható vissza!"; + +/* No comment provided by engineer. */ +"Group will be deleted for you - this cannot be undone!" = "A csoport törlésre kerül az ön részére - ez nem vonható vissza!"; + +/* No comment provided by engineer. */ +"Help" = "Segítség"; + +/* No comment provided by engineer. */ +"Hidden" = "Rejtett"; + +/* No comment provided by engineer. */ +"Hidden chat profiles" = "Rejtett csevegési profilok"; + +/* No comment provided by engineer. */ +"Hidden profile password" = "Rejtett profil jelszó"; + +/* chat item action */ +"Hide" = "Elrejt"; + +/* No comment provided by engineer. */ +"Hide app screen in the recent apps." = "Alkalmazás képernyőjének elrejtése a gyakran használt alkalmazások között."; + +/* No comment provided by engineer. */ +"Hide profile" = "Profil elrejtése"; + +/* No comment provided by engineer. */ +"Hide:" = "Elrejt:"; + +/* No comment provided by engineer. */ +"History" = "Előzmények"; + +/* No comment provided by engineer. */ +"History is not sent to new members." = "Az előzmények nem kerülnek elküldésre új tagok részére."; + +/* time unit */ +"hours" = "óra"; + +/* No comment provided by engineer. */ +"How it works" = "Hogyan működik"; + +/* No comment provided by engineer. */ +"How SimpleX works" = "Hogyan működik a SimpleX"; + +/* No comment provided by engineer. */ +"How to" = "Hogyan"; + +/* No comment provided by engineer. */ +"How to use it" = "Hogyan használja"; + +/* No comment provided by engineer. */ +"How to use your servers" = "Kiszolgálók használata"; + +/* No comment provided by engineer. */ +"ICE servers (one per line)" = "ICE-kiszolgálók (soronként egy)"; + +/* No comment provided by engineer. */ +"If you can't meet in person, show QR code in a video call, or share the link." = "Ha nem tud személyesen találkozni, mutassa meg a QR-kódot egy videohívás során, vagy ossza meg a hivatkozást."; + +/* No comment provided by engineer. */ +"If you enter this passcode when opening the app, all app data will be irreversibly removed!" = "Ha az alkalmazás megnyitásakor megadja ezt a jelkódot, az összes alkalmazásadat visszafordíthatatlanul törlődik!"; + +/* No comment provided by engineer. */ +"If you enter your self-destruct passcode while opening the app:" = "Ha az alkalmazás megnyitásakor az önmegsemmisítő jelkódot megadásra kerül:"; + +/* No comment provided by engineer. */ +"If you need to use the chat now tap **Do it later** below (you will be offered to migrate the database when you restart the app)." = "Ha most kell használnia a csevegést, koppintson a ** Csináld később** elemre (az alkalmazás újraindításakor felajánlásra kerül az adatbázis áttelepítése)."; + +/* No comment provided by engineer. */ +"Ignore" = "Figyelmen kívül hagyás"; + +/* No comment provided by engineer. */ +"Image will be received when your contact completes uploading it." = "A kép akkor érkezik meg, amikor ismerőse befejezte annak feltöltését."; + +/* No comment provided by engineer. */ +"Image will be received when your contact is online, please wait or check later!" = "A kép akkor érkezik meg, amikor ismerős elérhető lesz, várjon vagy ellenőrizze később!"; + +/* No comment provided by engineer. */ +"Immediately" = "Azonnal"; + +/* No comment provided by engineer. */ +"Immune to spam and abuse" = "Spam és visszaélések elleni védelem"; + +/* No comment provided by engineer. */ +"Import" = "Importálás"; + +/* No comment provided by engineer. */ +"Import chat database?" = "Csevegési adatbázis importálása?"; + +/* No comment provided by engineer. */ +"Import database" = "Adatbázis importálása"; + +/* No comment provided by engineer. */ +"Improved message delivery" = "Továbbfejlesztett üzenetküldés"; + +/* No comment provided by engineer. */ +"Improved privacy and security" = "Fejlesztett adatvédelem és biztonság"; + +/* No comment provided by engineer. */ +"Improved server configuration" = "Javított kiszolgáló konfiguráció"; + +/* No comment provided by engineer. */ +"In reply to" = "Válasz neki"; + +/* No comment provided by engineer. */ +"Incognito" = "Inkognitó"; + +/* No comment provided by engineer. */ +"Incognito groups" = "Inkognitó csoportok"; + +/* No comment provided by engineer. */ +"Incognito mode" = "Inkognitó mód"; + +/* No comment provided by engineer. */ +"Incognito mode protects your privacy by using a new random profile for each contact." = "Az inkognitómód védi személyes adatait azáltal, hogy minden ismerőshöz új véletlenszerű profilt használ."; + +/* chat list item description */ +"incognito via contact address link" = "inkognitó a kapcsolattartási hivatkozáson keresztül"; + +/* chat list item description */ +"incognito via group link" = "inkognitó a csoportos hivatkozáson keresztül"; + +/* chat list item description */ +"incognito via one-time link" = "inkognitó egyszer használatos hivatkozáson keresztül"; + +/* notification */ +"Incoming audio call" = "Bejövő hanghívás"; + +/* notification */ +"Incoming call" = "Bejövő hívás"; + +/* notification */ +"Incoming video call" = "Bejövő videóhívás"; + +/* No comment provided by engineer. */ +"Incompatible database version" = "Nem kompatibilis adatbázis verzió"; + +/* No comment provided by engineer. */ +"Incompatible version" = "Nem kompatibilis verzió"; + +/* PIN entry */ +"Incorrect passcode" = "Téves jelkód"; + +/* No comment provided by engineer. */ +"Incorrect security code!" = "Helytelen biztonsági kód!"; + +/* connection level description */ +"indirect (%d)" = "közvetett (%d)"; + +/* chat item action */ +"Info" = "Információ"; + +/* No comment provided by engineer. */ +"Initial role" = "Kezdeti szerepkör"; + +/* No comment provided by engineer. */ +"Install [SimpleX Chat for terminal](https://github.com/simplex-chat/simplex-chat)" = "A [SimpleX Chat terminálhoz] telepítése (https://github.com/simplex-chat/simplex-chat)"; + +/* No comment provided by engineer. */ +"Instant push notifications will be hidden!\n" = "Az azonnali push értesítések elrejtésre kerülnek!\n"; + +/* No comment provided by engineer. */ +"Instantly" = "Azonnal"; + +/* No comment provided by engineer. */ +"Interface" = "Felület"; + +/* invalid chat data */ +"invalid chat" = "érvénytelen csevegés"; + +/* No comment provided by engineer. */ +"invalid chat data" = "érvénytelen csevegés adat"; + +/* No comment provided by engineer. */ +"Invalid connection link" = "Érvénytelen kapcsolati hivatkozás"; + +/* invalid chat item */ +"invalid data" = "érvénytelen adat"; + +/* No comment provided by engineer. */ +"Invalid display name!" = "Érvénytelen megjelenítendő felhaszálónév!"; + +/* No comment provided by engineer. */ +"Invalid link" = "Érvénytelen hivatkozás"; + +/* No comment provided by engineer. */ +"Invalid name!" = "Érvénytelen név!"; + +/* No comment provided by engineer. */ +"Invalid QR code" = "Érvénytelen QR-kód"; + +/* No comment provided by engineer. */ +"Invalid response" = "Érvénytelen válasz"; + +/* No comment provided by engineer. */ +"Invalid server address!" = "Érvénytelen kiszolgálócím!"; + +/* item status text */ +"Invalid status" = "Érvénytelen állapot"; + +/* No comment provided by engineer. */ +"Invitation expired!" = "A meghívó lejárt!"; + +/* group name */ +"invitation to group %@" = "meghívás a(z) %@ csoportba"; + +/* No comment provided by engineer. */ +"Invite friends" = "Barátok meghívása"; + +/* No comment provided by engineer. */ +"Invite members" = "Tagok meghívása"; + +/* No comment provided by engineer. */ +"Invite to group" = "Meghívás a csoportba"; + +/* No comment provided by engineer. */ +"invited" = "meghívott"; + +/* rcv group event chat item */ +"invited %@" = "%@ meghívott"; + +/* chat list item title */ +"invited to connect" = "meghívott, hogy csatlakozzon"; + +/* rcv group event chat item */ +"invited via your group link" = "meghívott a csoport hivatkozásán keresztül"; + +/* No comment provided by engineer. */ +"iOS Keychain is used to securely store passphrase - it allows receiving push notifications." = "Az iOS kulcstár a jelmondat biztonságos tárolására szolgál - lehetővé teszi a push-értesítések fogadását."; + +/* No comment provided by engineer. */ +"iOS Keychain will be used to securely store passphrase after you restart the app or change passphrase - it will allow receiving push notifications." = "Az iOS kulcstár az alkalmazás újraindítása, vagy a jelmondat módosítása után a jelmondat biztonságos tárolására szolgál - lehetővé teszi a push-értesítések fogadását."; + +/* No comment provided by engineer. */ +"Irreversible message deletion" = "Visszafordíthatatlan üzenettörlés"; + +/* No comment provided by engineer. */ +"Irreversible message deletion is prohibited in this chat." = "Ebben a csevegésben az üzenetek visszafordíthatatlan törlése le van tiltva."; + +/* No comment provided by engineer. */ +"Irreversible message deletion is prohibited in this group." = "Ebben a csoportban az üzenetek visszafordíthatatlan törlése le van tiltva."; + +/* No comment provided by engineer. */ +"It allows having many anonymous connections without any shared data between them in a single chat profile." = "Lehetővé teszi, hogy egyetlen csevegőprofilon belül több anonim kapcsolat legyen, anélkül, hogy megosztott adatok lennének közöttük."; + +/* No comment provided by engineer. */ +"It can happen when you or your connection used the old database backup." = "Ez akkor fordulhat elő, ha ön vagy a kapcsolata régi adatbázis biztonsági mentést használt."; + +/* No comment provided by engineer. */ +"It can happen when:\n1. The messages expired in the sending client after 2 days or on the server after 30 days.\n2. Message decryption failed, because you or your contact used old database backup.\n3. The connection was compromised." = "Ez akkor fordulhat elő, ha:\n1. Az üzenetek 2 nap után, vagy a kiszolgálón 30 nap után lejártak.\n2. Az üzenet visszafejtése sikertelen volt, mert vagy az ismerőse régebbi adatbázis biztonsági mentést használt.\n3. A kapcsolat sérült."; + +/* No comment provided by engineer. */ +"It seems like you are already connected via this link. If it is not the case, there was an error (%@)." = "Úgy tűnik, már csatlakozott ezen a hivatkozáson keresztül. Ha ez nem így van, akkor hiba történt (%@)."; + +/* No comment provided by engineer. */ +"Italian interface" = "Olasz kezelőfelület"; + +/* No comment provided by engineer. */ +"italic" = "dőlt"; + +/* No comment provided by engineer. */ +"Japanese interface" = "Japán kezelőfelület"; + +/* No comment provided by engineer. */ +"Join" = "Csatlakozás"; + +/* No comment provided by engineer. */ +"join as %@" = "csatlakozás mint %@"; + +/* No comment provided by engineer. */ +"Join group" = "Csatlakozás csoporthoz"; + +/* No comment provided by engineer. */ +"Join group conversations" = "Csatlakozás csoportos beszélgetésekhez"; + +/* No comment provided by engineer. */ +"Join group?" = "Csatlakozik a csoporthoz?"; + +/* No comment provided by engineer. */ +"Join incognito" = "Csatlakozás inkognitóban"; + +/* No comment provided by engineer. */ +"Join with current profile" = "Csatlakozás a jelenlegi profillal"; + +/* No comment provided by engineer. */ +"Join your group?\nThis is your link for group %@!" = "Csatlakozik a csoportjához?\nEz az ön hivatkozása a(z) %@ csoporthoz!"; + +/* No comment provided by engineer. */ +"Joining group" = "Csatlakozás a csoporthoz"; + +/* No comment provided by engineer. */ +"Keep" = "Megtart"; + +/* No comment provided by engineer. */ +"Keep the app open to use it from desktop" = "A számítógépről való használathoz tartsd nyitva az alkalmazást"; + +/* No comment provided by engineer. */ +"Keep unused invitation?" = "Fel nem használt meghívó megtartása?"; + +/* No comment provided by engineer. */ +"Keep your connections" = "Kapcsolatok megtartása"; + +/* No comment provided by engineer. */ +"Keychain error" = "Kulcstároló hiba"; + +/* No comment provided by engineer. */ +"KeyChain error" = "Kulcstároló hiba"; + +/* No comment provided by engineer. */ +"Large file!" = "Nagy fájl!"; + +/* No comment provided by engineer. */ +"Learn more" = "Tudjon meg többet"; + +/* No comment provided by engineer. */ +"Leave" = "Elhagy"; + +/* No comment provided by engineer. */ +"Leave group" = "Csoport elhagyása"; + +/* No comment provided by engineer. */ +"Leave group?" = "Csoport elhagyása?"; + +/* rcv group event chat item */ +"left" = "elhagyta"; + +/* email subject */ +"Let's talk in SimpleX Chat" = "Beszélgessünk a SimpleX Chat-ben"; + +/* No comment provided by engineer. */ +"Light" = "Világos"; + +/* No comment provided by engineer. */ +"Limitations" = "Korlátozások"; + +/* No comment provided by engineer. */ +"Link mobile and desktop apps! 🔗" = "Társítsa össze a mobil és az asztali alkalmazásokat! 🔗"; + +/* No comment provided by engineer. */ +"Linked desktop options" = "Összekapcsolt számítógép beállítások"; + +/* No comment provided by engineer. */ +"Linked desktops" = "Összekapcsolt számítógépek"; + +/* No comment provided by engineer. */ +"LIVE" = "ÉLŐ"; + +/* No comment provided by engineer. */ +"Live message!" = "Élő üzenet!"; + +/* No comment provided by engineer. */ +"Live messages" = "Élő üzenetek"; + +/* No comment provided by engineer. */ +"Local" = "Helyi"; + +/* No comment provided by engineer. */ +"Local name" = "Helyi név"; + +/* No comment provided by engineer. */ +"Local profile data only" = "Csak helyi profiladatok"; + +/* No comment provided by engineer. */ +"Lock after" = "Zárolás miután"; + +/* No comment provided by engineer. */ +"Lock mode" = "Zárolási mód"; + +/* No comment provided by engineer. */ +"Make a private connection" = "Privát kapcsolat létrehozása"; + +/* No comment provided by engineer. */ +"Make one message disappear" = "Egy üzenet eltüntetése"; + +/* No comment provided by engineer. */ +"Make profile private!" = "Tegye priváttá profilját!"; + +/* No comment provided by engineer. */ +"Make sure %@ server addresses are in correct format, line separated and are not duplicated (%@)." = "Győződjön meg arról, hogy a %@ szervercímek megfelelő formátumúak, sorszeparáltak és nem duplikáltak (%@)."; + +/* No comment provided by engineer. */ +"Make sure WebRTC ICE server addresses are in correct format, line separated and are not duplicated." = "Győződjön meg arról, hogy a WebRTC ICE-kiszolgáló címei megfelelő formátumúak, sorszeparáltak és nem duplikáltak."; + +/* No comment provided by engineer. */ +"Many people asked: *if SimpleX has no user identifiers, how can it deliver messages?*" = "Sokan kérdezték: *ha a SimpleX-nek nincsenek felhasználói azonosítói, akkor hogyan tud üzeneteket kézbesíteni?*"; + +/* No comment provided by engineer. */ +"Mark deleted for everyone" = "Jelölje meg mindenki számára töröltként"; + +/* No comment provided by engineer. */ +"Mark read" = "Megjelölés olvasottként"; + +/* No comment provided by engineer. */ +"Mark verified" = "Ellenőrzöttként jelölve"; + +/* No comment provided by engineer. */ +"Markdown in messages" = "Markdown az üzenetekben"; + +/* marked deleted chat item preview text */ +"marked deleted" = "töröltnek jelölve"; + +/* No comment provided by engineer. */ +"Max 30 seconds, received instantly." = "Max. 30 másodperc, azonnal érkezett."; + +/* member role */ +"member" = "tag"; + +/* No comment provided by engineer. */ +"Member" = "Tag"; + +/* profile update event chat item */ +"member %@ changed to %@" = "%1$@ tag megváltoztatta a nevét erre: %2$@"; + +/* rcv group event chat item */ +"member connected" = "kapcsolódva"; + +/* No comment provided by engineer. */ +"Member role will be changed to \"%@\". All group members will be notified." = "A tag szerepköre meg fog változni erre: \"%@\". A csoport minden tagja értesítést kap róla."; + +/* No comment provided by engineer. */ +"Member role will be changed to \"%@\". The member will receive a new invitation." = "A tag szerepköre meg fog változni erre: \"%@\". A tag új meghívást fog kapni."; + +/* No comment provided by engineer. */ +"Member will be removed from group - this cannot be undone!" = "A tag eltávolítása a csoportból - ez nem vonható vissza!"; + +/* item status text */ +"Message delivery error" = "Üzenetkézbesítési hiba"; + +/* No comment provided by engineer. */ +"Message delivery receipts!" = "Üzenetkézbesítési bizonylatok!"; + +/* No comment provided by engineer. */ +"Message draft" = "Üzenetvázlat"; + +/* chat feature */ +"Message reactions" = "Üzenetreakciók"; + +/* No comment provided by engineer. */ +"Message reactions are prohibited in this chat." = "Az üzenetreakciók ebben a csevegésben le vannak tiltva."; + +/* No comment provided by engineer. */ +"Message reactions are prohibited in this group." = "Ebben a csoportban az üzenetreakciók le vannak tiltva."; + +/* notification */ +"message received" = "üzenet érkezett"; + +/* No comment provided by engineer. */ +"Message text" = "Üzenet szövege"; + +/* No comment provided by engineer. */ +"Messages" = "Üzenetek"; + +/* No comment provided by engineer. */ +"Messages & files" = "Üzenetek és fájlok"; + +/* No comment provided by engineer. */ +"Messages from %@ will be shown!" = "A(z) %@ által írt üzenetek megjelennek!"; + +/* No comment provided by engineer. */ +"Migrating database archive…" = "Adatbázis archívum migrálása…"; + +/* No comment provided by engineer. */ +"Migration error:" = "Migrációs hiba:"; + +/* No comment provided by engineer. */ +"Migration failed. Tap **Skip** below to continue using the current database. Please report the issue to the app developers via chat or email [chat@simplex.chat](mailto:chat@simplex.chat)." = "Sikertelen migráció. Koppintson a **Kihagyás** lehetőségre az aktuális adatbázis használatának folytatásához. Kérjük, jelentse a problémát az alkalmazás fejlesztőinek csevegésben vagy e-mailben [chat@simplex.chat](mailto:chat@simplex.chat)."; + +/* No comment provided by engineer. */ +"Migration is completed" = "A migráció befejeződött"; + +/* No comment provided by engineer. */ +"Migrations: %@" = "Migrációk: %@"; + +/* time unit */ +"minutes" = "perc"; + +/* call status */ +"missed call" = "nem fogadott hívás"; + +/* chat item action */ +"Moderate" = "Moderálás"; + +/* moderated chat item */ +"moderated" = "moderált"; + +/* No comment provided by engineer. */ +"Moderated at" = "Moderálva ekkor"; + +/* copied message info */ +"Moderated at: %@" = "Moderálva ekkor: %@"; + +/* marked deleted chat item preview text */ +"moderated by %@" = "%@ által moderálva"; + +/* time unit */ +"months" = "hónap"; + +/* No comment provided by engineer. */ +"More improvements are coming soon!" = "Hamarosan további fejlesztések érkeznek!"; + +/* item status description */ +"Most likely this connection is deleted." = "Valószínűleg ez a kapcsolat törlésre került."; + +/* No comment provided by engineer. */ +"Most likely this contact has deleted the connection with you." = "Valószínűleg ez az ismerős törölte önnel a kapcsolatot."; + +/* No comment provided by engineer. */ +"Multiple chat profiles" = "Több csevegőprofil"; + +/* No comment provided by engineer. */ +"Mute" = "Elnémítás"; + +/* No comment provided by engineer. */ +"Muted when inactive!" = "Némítás, ha inaktív!"; + +/* No comment provided by engineer. */ +"Name" = "Név"; + +/* No comment provided by engineer. */ +"Network & servers" = "Hálózat és kiszolgálók"; + +/* No comment provided by engineer. */ +"Network settings" = "Hálózati beállítások"; + +/* No comment provided by engineer. */ +"Network status" = "Hálózat állapota"; + +/* No comment provided by engineer. */ +"never" = "soha"; + +/* No comment provided by engineer. */ +"New chat" = "Új beszélgetés"; + +/* notification */ +"New contact request" = "Új kapcsolattartási kérelem"; + +/* notification */ +"New contact:" = "Új kapcsolat:"; + +/* No comment provided by engineer. */ +"New database archive" = "Új adatbázis-archívum"; + +/* No comment provided by engineer. */ +"New desktop app!" = "Új asztali alkalmazás!"; + +/* No comment provided by engineer. */ +"New display name" = "Új megjelenítési név"; + +/* No comment provided by engineer. */ +"New in %@" = "Újdonságok a(z) %@ verzióban"; + +/* No comment provided by engineer. */ +"New member role" = "Új tag szerepköre"; + +/* notification */ +"new message" = "új üzenet"; + +/* notification */ +"New message" = "Új üzenet"; + +/* No comment provided by engineer. */ +"New Passcode" = "Új jelkód"; + +/* No comment provided by engineer. */ +"New passphrase…" = "Új jelmondat…"; + +/* pref value */ +"no" = "nem"; + +/* No comment provided by engineer. */ +"No" = "Nem"; + +/* Authentication unavailable */ +"No app password" = "Nincs alkalmazás jelszó"; + +/* No comment provided by engineer. */ +"No contacts selected" = "Nem kerültek ismerősök kiválasztásra"; + +/* No comment provided by engineer. */ +"No contacts to add" = "Nincs hozzáadandó ismerős"; + +/* No comment provided by engineer. */ +"No delivery information" = "Nincs kézbesítési információ"; + +/* No comment provided by engineer. */ +"No device token!" = "Nincs eszköztoken!"; + +/* No comment provided by engineer. */ +"no e2e encryption" = "nincs e2e titkosítás"; + +/* No comment provided by engineer. */ +"No filtered chats" = "Nincsenek szűrt csevegések"; + +/* No comment provided by engineer. */ +"No group!" = "Csoport nem található!"; + +/* No comment provided by engineer. */ +"No history" = "Nincsenek előzmények"; + +/* No comment provided by engineer. */ +"No permission to record voice message" = "Nincs engedély a hangüzenet rögzítésére"; + +/* No comment provided by engineer. */ +"No received or sent files" = "Nincsenek fogadott vagy küldött fájlok"; + +/* copied message info in history */ +"no text" = "nincs szöveg"; + +/* No comment provided by engineer. */ +"Not compatible!" = "Nem kompatibilis!"; + +/* No comment provided by engineer. */ +"Notifications" = "Értesítések"; + +/* No comment provided by engineer. */ +"Notifications are disabled!" = "Az értesítések le vannak tiltva!"; + +/* No comment provided by engineer. */ +"Now admins can:\n- delete members' messages.\n- disable members (\"observer\" role)" = "Most már az adminok is:\n- törölhetik a tagok üzeneteit.\n- letilthatnak tagokat (\"megfigyelő\" szerepkör)"; + +/* member role */ +"observer" = "megfigyelő"; + +/* enabled status + group pref value + time to disappear */ +"off" = "ki"; + +/* No comment provided by engineer. */ +"Off" = "Ki"; + +/* feature offered item */ +"offered %@" = "%@ ajánlotta"; + +/* feature offered item */ +"offered %@: %@" = "ajánlotta %1$@: %2$@-kor"; + +/* No comment provided by engineer. */ +"Ok" = "Rendben"; + +/* No comment provided by engineer. */ +"OK" = "Rendben"; + +/* No comment provided by engineer. */ +"Old database" = "Régi adatbázis"; + +/* No comment provided by engineer. */ +"Old database archive" = "Régi adatbázis archívum"; + +/* group pref value */ +"on" = "be"; + +/* No comment provided by engineer. */ +"One-time invitation link" = "Egyszer használatos meghívó hivatkozás"; + +/* No comment provided by engineer. */ +"Onion hosts will be required for connection. Requires enabling VPN." = "A csatlakozáshoz Onion host-okra lesz szükség. VPN engedélyezése szükséges."; + +/* No comment provided by engineer. */ +"Onion hosts will be used when available. Requires enabling VPN." = "Onion host-ok használata, ha azok rendelkezésre állnak. VPN engedélyezése szükséges."; + +/* No comment provided by engineer. */ +"Onion hosts will not be used." = "Onion host-ok nem lesznek használva."; + +/* No comment provided by engineer. */ +"Only client devices store user profiles, contacts, groups, and messages sent with **2-layer end-to-end encryption**." = "Csak a klienseszközök tárolják a felhasználói profilokat, névjegyeket, csoportokat és a **2 rétegű végponttól-végpontig titkosítással** küldött üzeneteket."; + +/* No comment provided by engineer. */ +"Only group owners can change group preferences." = "Csak a csoporttulajdonosok módosíthatják a csoportbeállításokat."; + +/* No comment provided by engineer. */ +"Only group owners can enable files and media." = "Csak a csoporttulajdonosok engedélyezhetik a fájlok- és a médiatartalmak küldését."; + +/* No comment provided by engineer. */ +"Only group owners can enable voice messages." = "Csak a csoporttulajdonosok engedélyezhetik a hangüzenetek küldését."; + +/* No comment provided by engineer. */ +"Only you can add message reactions." = "Csak ön adhat hozzá üzenetreakciókat."; + +/* No comment provided by engineer. */ +"Only you can irreversibly delete messages (your contact can mark them for deletion). (24 hours)" = "Visszafordíthatatlanul csak ön törölhet üzeneteket (ismerőse csak törlésre jelölheti őket ). (24 óra)"; + +/* No comment provided by engineer. */ +"Only you can make calls." = "Csak ön tud hívásokat indítani."; + +/* No comment provided by engineer. */ +"Only you can send disappearing messages." = "Csak ön tud eltűnő üzeneteket küldeni."; + +/* No comment provided by engineer. */ +"Only you can send voice messages." = "Csak ön tud hangüzeneteket küldeni."; + +/* No comment provided by engineer. */ +"Only your contact can add message reactions." = "Csak az ismerős tud üzeneteakciókat adni."; + +/* No comment provided by engineer. */ +"Only your contact can irreversibly delete messages (you can mark them for deletion). (24 hours)" = "Csak az ismerős tud visszafordíthatatlanul törölni üzeneteket (megjelölheti őket törlésre). (24 óra)"; + +/* No comment provided by engineer. */ +"Only your contact can make calls." = "Csak az ismerős tud hívást indítani."; + +/* No comment provided by engineer. */ +"Only your contact can send disappearing messages." = "Csak az ismerős tud eltűnő üzeneteket küldeni."; + +/* No comment provided by engineer. */ +"Only your contact can send voice messages." = "Csak az ismerős tud hangüzeneteket küldeni."; + +/* No comment provided by engineer. */ +"Open" = "Megnyitás"; + +/* No comment provided by engineer. */ +"Open chat" = "Csevegés megnyitása"; + +/* authentication reason */ +"Open chat console" = "Csevegés konzol megnyitása"; + +/* No comment provided by engineer. */ +"Open group" = "Csoport megnyitása"; + +/* No comment provided by engineer. */ +"Open Settings" = "Beállítások megnyitása"; + +/* authentication reason */ +"Open user profiles" = "Felhasználói profilok megnyitása"; + +/* No comment provided by engineer. */ +"Open-source protocol and code – anybody can run the servers." = "Nyílt forráskódú protokoll és forráskód – bárki üzemeltethet kiszolgálókat."; + +/* No comment provided by engineer. */ +"Opening app…" = "Az alkalmazás megnyitása…"; + +/* No comment provided by engineer. */ +"Or scan QR code" = "Vagy QR-kód beolvasása"; + +/* No comment provided by engineer. */ +"Or show this code" = "Vagy mutassa meg ezt a kódot"; + +/* member role */ +"owner" = "tulajdonos"; + +/* No comment provided by engineer. */ +"Passcode" = "Jelkód"; + +/* No comment provided by engineer. */ +"Passcode changed!" = "A jelkód megváltozott!"; + +/* No comment provided by engineer. */ +"Passcode entry" = "Jelkód bevitele"; + +/* No comment provided by engineer. */ +"Passcode not changed!" = "A jelkód nem változott!"; + +/* No comment provided by engineer. */ +"Passcode set!" = "A jelkód beállítva!"; + +/* No comment provided by engineer. */ +"Password to show" = "Jelszó mutatása"; + +/* past/unknown group member */ +"Past member %@" = "Korábbi csoport tag %@"; + +/* No comment provided by engineer. */ +"Paste desktop address" = "Számítógép azonosítójának beillesztése"; + +/* No comment provided by engineer. */ +"Paste image" = "Kép beillesztése"; + +/* No comment provided by engineer. */ +"Paste link to connect!" = "Hivatkozás beillesztése a csatlakozáshoz!"; + +/* No comment provided by engineer. */ +"Paste the link you received" = "Fogadott hivatkozás beillesztése"; + +/* No comment provided by engineer. */ +"peer-to-peer" = "ponttól-pontig"; + +/* No comment provided by engineer. */ +"People can connect to you only via the links you share." = "Az emberek csak az ön által megosztott hivatkozáson keresztül kapcsolódhatnak."; + +/* No comment provided by engineer. */ +"Periodically" = "Rendszeresen"; + +/* message decrypt error item */ +"Permanent decryption error" = "Végleges visszafejtési hiba"; + +/* No comment provided by engineer. */ +"PING count" = "PING számláló"; + +/* No comment provided by engineer. */ +"PING interval" = "PING időköze"; + +/* No comment provided by engineer. */ +"Please ask your contact to enable sending voice messages." = "Ismerős felkérése, hogy engedélyezze a hangüzenetek küldését."; + +/* No comment provided by engineer. */ +"Please check that you used the correct link or ask your contact to send you another one." = "Ellenőrizze, hogy a megfelelő hivatkozást használta-e, vagy kérje meg ismerősét, hogy küldjön egy másikat."; + +/* No comment provided by engineer. */ +"Please check your network connection with %@ and try again." = "Kérjük, ellenőrizze hálózati kapcsolatát a(z) %@ segítségével, és próbálja újra."; + +/* No comment provided by engineer. */ +"Please check yours and your contact preferences." = "Ellenőrizze az ön és ismerőse beállításait."; + +/* No comment provided by engineer. */ +"Please contact developers.\nError: %@" = "Lépjen kapcsolatba a fejlesztőkkel.\nHiba: %@"; + +/* No comment provided by engineer. */ +"Please contact group admin." = "Lépjen kapcsolatba a csoport adminnal."; + +/* No comment provided by engineer. */ +"Please enter correct current passphrase." = "Adja meg a helyes aktuális jelmondatát."; + +/* No comment provided by engineer. */ +"Please enter the previous password after restoring database backup. This action can not be undone." = "Előző jelszó megadása az adatbázis biztonsági mentésének visszaállítása után. Ez a művelet nem visszavonható."; + +/* No comment provided by engineer. */ +"Please remember or store it securely - there is no way to recover a lost passcode!" = "Jegyezze fel vagy tárolja el biztonságosan - az elveszett jelkódot nem lehet visszaállítani!"; + +/* No comment provided by engineer. */ +"Please report it to the developers." = "Jelentse a fejlesztőknek."; + +/* No comment provided by engineer. */ +"Please restart the app and migrate the database to enable push notifications." = "Indítsa újra az alkalmazást az adatbázis-migrációhoz szükséges push értesítések engedélyezéséhez."; + +/* No comment provided by engineer. */ +"Please store passphrase securely, you will NOT be able to access chat if you lose it." = "Tárolja el biztonságosan jelmondát, mert ha elveszti azt, akkor NEM férhet hozzá a csevegéshez."; + +/* No comment provided by engineer. */ +"Please store passphrase securely, you will NOT be able to change it if you lose it." = "Tárolja el biztonságosan jelmondatát, mert ha elveszíti azt, NEM tudja megváltoztatni."; + +/* No comment provided by engineer. */ +"Polish interface" = "Lengyel kezelőfelület"; + +/* server test error */ +"Possibly, certificate fingerprint in server address is incorrect" = "Lehetséges, hogy a kiszolgáló címében szereplő tanúsítvány-ujjlenyomat helytelen"; + +/* No comment provided by engineer. */ +"Preserve the last message draft, with attachments." = "Az utolsó üzenet tervezetének megőrzése a mellékletekkel együtt."; + +/* No comment provided by engineer. */ +"Preset server" = "Előre beállított kiszolgáló"; + +/* No comment provided by engineer. */ +"Preset server address" = "Előre beállított kiszolgáló címe"; + +/* No comment provided by engineer. */ +"Preview" = "Előnézet"; + +/* No comment provided by engineer. */ +"Privacy & security" = "Adatvédelem és biztonság"; + +/* No comment provided by engineer. */ +"Privacy redefined" = "Adatvédelem újraértelmezve"; + +/* No comment provided by engineer. */ +"Private filenames" = "Privát fájl nevek"; + +/* name of notes to self */ +"Private notes" = "Privát jegyzetek"; + +/* No comment provided by engineer. */ +"Profile and server connections" = "Profil és kiszolgálókapcsolatok"; + +/* No comment provided by engineer. */ +"Profile image" = "Profilkép"; + +/* No comment provided by engineer. */ +"Profile name" = "Profilnév"; + +/* No comment provided by engineer. */ +"Profile name:" = "Profil neve:"; + +/* No comment provided by engineer. */ +"Profile password" = "Profiljelszó"; + +/* No comment provided by engineer. */ +"Profile update will be sent to your contacts." = "A profilfrissítés elküldésre került az ismerősök számára."; + +/* No comment provided by engineer. */ +"Prohibit audio/video calls." = "Hang- és videóhívások tiltása."; + +/* No comment provided by engineer. */ +"Prohibit irreversible message deletion." = "Az üzenetek véglegesen való törlése le van tiltva."; + +/* No comment provided by engineer. */ +"Prohibit message reactions." = "Üzenetreakciók tiltása."; + +/* No comment provided by engineer. */ +"Prohibit messages reactions." = "Az üzenetreakciók tiltása."; + +/* No comment provided by engineer. */ +"Prohibit sending direct messages to members." = "Közvetlen üzenetek küldésének letiltása tagok részére."; + +/* No comment provided by engineer. */ +"Prohibit sending disappearing messages." = "Eltűnő üzenetek küldésének letiltása."; + +/* No comment provided by engineer. */ +"Prohibit sending files and media." = "Fájlok- és a médiatartalom küldés letiltása."; + +/* No comment provided by engineer. */ +"Prohibit sending voice messages." = "Hangüzenetek küldésének letiltása."; + +/* No comment provided by engineer. */ +"Protect app screen" = "App képernyőjének védelme"; + +/* No comment provided by engineer. */ +"Protect your chat profiles with a password!" = "Csevegési profiljok védelme jelszóval!"; + +/* No comment provided by engineer. */ +"Protocol timeout" = "Protokoll időtúllépés"; + +/* No comment provided by engineer. */ +"Protocol timeout per KB" = "Protokoll időkorlát KB-onként"; + +/* No comment provided by engineer. */ +"Push notifications" = "Push értesítések"; + +/* No comment provided by engineer. */ +"Rate the app" = "Értékelje az alkalmazást"; + +/* chat item menu */ +"React…" = "Reagálj…"; + +/* No comment provided by engineer. */ +"Read" = "Olvasd el"; + +/* No comment provided by engineer. */ +"Read more" = "Tudjon meg többet"; + +/* No comment provided by engineer. */ +"Read more in [User Guide](https://simplex.chat/docs/guide/app-settings.html#your-simplex-contact-address)." = "További információ a [Felhasználói útmutatóban](https://simplex.chat/docs/guide/app-settings.html#your-simplex-contact-address)."; + +/* No comment provided by engineer. */ +"Read more in [User Guide](https://simplex.chat/docs/guide/chat-profiles.html#incognito-mode)." = "További információ a [Felhasználói útmutatóban](https://simplex.chat/docs/guide/chat-profiles.html#incognito-mode)."; + +/* No comment provided by engineer. */ +"Read more in [User Guide](https://simplex.chat/docs/guide/readme.html#connect-to-friends)." = "További információ a [Felhasználói útmutatóban](https://simplex.chat/docs/guide/readme.html#connect-to-friends)."; + +/* No comment provided by engineer. */ +"Read more in our [GitHub repository](https://github.com/simplex-chat/simplex-chat#readme)." = "További információ a [GitHub tárolóban](https://github.com/simplex-chat/simplex-chat#readme)."; + +/* No comment provided by engineer. */ +"Read more in our GitHub repository." = "További információ a GitHub tárolónkban."; + +/* No comment provided by engineer. */ +"Receipts are disabled" = "Üzenet kézbesítési jelentés letiltva"; + +/* No comment provided by engineer. */ +"received answer…" = "fogadott válasz…"; + +/* No comment provided by engineer. */ +"Received at" = "Fogadva ekkor"; + +/* copied message info */ +"Received at: %@" = "Fogadva ekkor: %@"; + +/* No comment provided by engineer. */ +"received confirmation…" = "visszaigazolás fogadása…"; + +/* notification */ +"Received file event" = "Fogadott fájl esemény"; + +/* message info title */ +"Received message" = "Fogadott üzenet"; + +/* No comment provided by engineer. */ +"Receiving address will be changed to a different server. Address change will complete after sender comes online." = "A fogadó cím egy másik kiszolgálóra változik. A címváltoztatás a feladó online állapotba kerülése után fejeződik be."; + +/* No comment provided by engineer. */ +"Receiving file will be stopped." = "A fájl fogadása leállt."; + +/* No comment provided by engineer. */ +"Receiving via" = "Fogadás a"; + +/* No comment provided by engineer. */ +"Recent history and improved [directory bot](simplex:/contact#/?v=1-4&smp=smp%3A%2F%2Fu2dS9sG8nMNURyZwqASV4yROM28Er0luVTx5X1CsMrU%3D%40smp4.simplex.im%2FeXSPwqTkKyDO3px4fLf1wx3MvPdjdLW3%23%2F%3Fv%3D1-2%26dh%3DMCowBQYDK2VuAyEAaiv6MkMH44L2TcYrt_CsX3ZvM11WgbMEUn0hkIKTOho%253D%26srv%3Do5vmywmrnaxalvz6wi3zicyftgio6psuvyniis6gco6bp6ekl4cqj4id.onion)." = "Legutóbbi előzmények és továbbfejlesztett [könyvtárbot] (simplex:/contact#/?v=1-4&smp=smp%3A%2F%2Fu2dS9sG8nMNURyZwqASV4yROM28Er0luVTx5X1CsMrU%3D%40smp4.simplex.im%2TxW3dfMfxy 3%23%2F%3Fv%3D1-2% 26dh%3DMCowBQYDK2VuAyEAaiv6MkMH44L2TcYrt_CsX3ZvM11WgbMEUn0hkIKTOho%253D%26srv%3Do5vmywmrnaxalvz6wi3zicyftgio6psuvyniis6gloncbqjek4gloncbqjek."; + +/* No comment provided by engineer. */ +"Recipients see updates as you type them." = "A címzettek a beírás közben látják a frissítéseket."; + +/* No comment provided by engineer. */ +"Reconnect all connected servers to force message delivery. It uses additional traffic." = "Az összes csatlakoztatott kiszolgáló újrakapcsolása az üzenetek kézbesítésének kikényszerítéséhez. Ez további forgalmat használ."; + +/* No comment provided by engineer. */ +"Reconnect servers?" = "Kiszolgálók újracsatlakoztatása?"; + +/* No comment provided by engineer. */ +"Record updated at" = "A bejegyzés frissítve"; + +/* copied message info */ +"Record updated at: %@" = "A bejegyzés frissítve: %@"; + +/* No comment provided by engineer. */ +"Reduced battery usage" = "Csökkentett akkumulátorhasználat"; + +/* reject incoming call via notification */ +"Reject" = "Elutasítás"; + +/* No comment provided by engineer. */ +"Reject (sender NOT notified)" = "Elutasítás (a feladó NEM kap értesítést)"; + +/* No comment provided by engineer. */ +"Reject contact request" = "Kapcsolatfelvételi kérelem elutasítása"; + +/* call status */ +"rejected call" = "elutasított hívás"; + +/* No comment provided by engineer. */ +"Relay server is only used if necessary. Another party can observe your IP address." = "Az átjátszó kiszolgáló csak szükség esetén kerül használatra. Egy másik fél megfigyelheti az IP-címét."; + +/* No comment provided by engineer. */ +"Relay server protects your IP address, but it can observe the duration of the call." = "Az átjátszó kiszolgáló megvédi IP-címét, de megfigyelheti a hívás időtartamát."; + +/* No comment provided by engineer. */ +"Remove" = "Eltávolítás"; + +/* No comment provided by engineer. */ +"Remove member" = "Tag eltávolítása"; + +/* No comment provided by engineer. */ +"Remove member?" = "Tag eltávolítása?"; + +/* No comment provided by engineer. */ +"Remove passphrase from keychain?" = "Jelmondat eltávolítása a kulcstárolóból?"; + +/* No comment provided by engineer. */ +"removed" = "eltávolítva"; + +/* rcv group event chat item */ +"removed %@" = "%@ eltávolítva"; + +/* profile update event chat item */ +"removed contact address" = "törölt csatlakozási cím"; + +/* profile update event chat item */ +"removed profile picture" = "törölt profilkép"; + +/* rcv group event chat item */ +"removed you" = "eltávolítottak"; + +/* No comment provided by engineer. */ +"Renegotiate" = "Újraegyzetetés"; + +/* No comment provided by engineer. */ +"Renegotiate encryption" = "Titkosítás újraegyeztetése"; + +/* No comment provided by engineer. */ +"Renegotiate encryption?" = "Titkosítás újraegyeztetése?"; + +/* No comment provided by engineer. */ +"Repeat connection request?" = "Kapcsolódási kérés megismétlése?"; + +/* No comment provided by engineer. */ +"Repeat join request?" = "Csatlakozási kérés megismétlése?"; + +/* chat item action */ +"Reply" = "Válasz"; + +/* No comment provided by engineer. */ +"Required" = "Megkövetelt"; + +/* No comment provided by engineer. */ +"Reset" = "Alaphelyzetbe állítás"; + +/* No comment provided by engineer. */ +"Reset colors" = "Színek alaphelyzetbe állítása"; + +/* No comment provided by engineer. */ +"Reset to defaults" = "Alaphelyzetbe állítás"; + +/* No comment provided by engineer. */ +"Restart the app to create a new chat profile" = "Új csevegési profil létrehozásához indítsa újra az alkalmazást"; + +/* No comment provided by engineer. */ +"Restart the app to use imported chat database" = "Az importált csevegési adatbázis használatához indítsa újra az alkalmazást"; + +/* No comment provided by engineer. */ +"Restore" = "Visszaállítás"; + +/* No comment provided by engineer. */ +"Restore database backup" = "Adatbázismentés visszaállítása"; + +/* No comment provided by engineer. */ +"Restore database backup?" = "Adatbázismentés visszaállítása?"; + +/* No comment provided by engineer. */ +"Restore database error" = "Hiba az adatbázis visszaállításakor"; + +/* No comment provided by engineer. */ +"Retry" = "Újrapróbálkozás"; + +/* chat item action */ +"Reveal" = "Felfedés"; + +/* No comment provided by engineer. */ +"Revert" = "Visszaállít"; + +/* No comment provided by engineer. */ +"Revoke" = "Visszavonás"; + +/* cancel file action */ +"Revoke file" = "Fájl visszavonása"; + +/* No comment provided by engineer. */ +"Revoke file?" = "Fájl visszavonása?"; + +/* No comment provided by engineer. */ +"Role" = "Szerepkör"; + +/* No comment provided by engineer. */ +"Run chat" = "Csevegési szolgáltatás indítása"; + +/* chat item action */ +"Save" = "Mentés"; + +/* No comment provided by engineer. */ +"Save (and notify contacts)" = "Mentés (és az ismerősök értesítése)"; + +/* No comment provided by engineer. */ +"Save and notify contact" = "Mentés és ismerős értesítése"; + +/* No comment provided by engineer. */ +"Save and notify group members" = "Mentés és a csoporttagok értesítése"; + +/* No comment provided by engineer. */ +"Save and update group profile" = "Mentés és a csoport profil frissítése"; + +/* No comment provided by engineer. */ +"Save archive" = "Archívum mentése"; + +/* No comment provided by engineer. */ +"Save auto-accept settings" = "Automatikus elfogadási beállítások mentése"; + +/* No comment provided by engineer. */ +"Save group profile" = "Csoport profil elmentése"; + +/* No comment provided by engineer. */ +"Save passphrase and open chat" = "Jelmondat elmentése és csevegés megnyitása"; + +/* No comment provided by engineer. */ +"Save passphrase in Keychain" = "Jelmondat mentése a kulcstárban"; + +/* No comment provided by engineer. */ +"Save preferences?" = "Beállítások mentése?"; + +/* No comment provided by engineer. */ +"Save profile password" = "Felhasználói fiók jelszavának mentése"; + +/* No comment provided by engineer. */ +"Save servers" = "Kiszolgálók mentése"; + +/* No comment provided by engineer. */ +"Save servers?" = "Kiszolgálók mentése?"; + +/* No comment provided by engineer. */ +"Save settings?" = "Beállítások mentése?"; + +/* No comment provided by engineer. */ +"Save welcome message?" = "Üdvözlőszöveg mentése?"; + +/* message info title */ +"Saved message" = "Mentett üzenet"; + +/* No comment provided by engineer. */ +"Saved WebRTC ICE servers will be removed" = "A mentett WebRTC ICE kiszolgálók eltávolításra kerülnek"; + +/* No comment provided by engineer. */ +"Scan code" = "Kód beolvasása"; + +/* No comment provided by engineer. */ +"Scan QR code" = "QR-kód beolvasása"; + +/* No comment provided by engineer. */ +"Scan QR code from desktop" = "QR-kód beolvasása számítógépről"; + +/* No comment provided by engineer. */ +"Scan security code from your contact's app." = "Biztonsági kód beolvasása ismerős általi alkalmazásból."; + +/* No comment provided by engineer. */ +"Scan server QR code" = "A kiszolgáló QR-kódjának beolvasása"; + +/* No comment provided by engineer. */ +"Search" = "Keresés"; + +/* No comment provided by engineer. */ +"Search bar accepts invitation links." = "A keresősáv fogadja a meghívó hivatkozásokat."; + +/* No comment provided by engineer. */ +"Search or paste SimpleX link" = "Keresés, vagy SimpleX hivatkozás beillesztése"; + +/* network option */ +"sec" = "mp"; + +/* time unit */ +"seconds" = "másodperc"; + +/* No comment provided by engineer. */ +"secret" = "titok"; + +/* server test step */ +"Secure queue" = "Biztonságos várólista"; + +/* No comment provided by engineer. */ +"Security assessment" = "Biztonsági kiértékelés"; + +/* No comment provided by engineer. */ +"Security code" = "Biztonsági kód"; + +/* chat item text */ +"security code changed" = "biztonsági kód megváltozott"; + +/* No comment provided by engineer. */ +"Select" = "Választás"; + +/* No comment provided by engineer. */ +"Self-destruct" = "Önmegsemmisítés"; + +/* No comment provided by engineer. */ +"Self-destruct passcode" = "Önmegsemmisítési jelkód"; + +/* No comment provided by engineer. */ +"Self-destruct passcode changed!" = "Az önmegsemmisítési jelkód megváltozott!"; + +/* No comment provided by engineer. */ +"Self-destruct passcode enabled!" = "Az önmegsemmisítési jelkód engedélyezve!"; + +/* No comment provided by engineer. */ +"Send" = "Küldés"; + +/* No comment provided by engineer. */ +"Send a live message - it will update for the recipient(s) as you type it" = "Élő üzenet küldése - a címzett(ek) számára frissül, ahogy beírja"; + +/* No comment provided by engineer. */ +"Send delivery receipts to" = "A kézbesítési jelentéseket a következő címre kell küldeni"; + +/* No comment provided by engineer. */ +"send direct message" = "közvetlen üzenet küldése"; + +/* No comment provided by engineer. */ +"Send direct message" = "Közvetlen üzenet küldése"; + +/* No comment provided by engineer. */ +"Send direct message to connect" = "A kapcsolódáshoz közvetlen üzenet küldése"; + +/* No comment provided by engineer. */ +"Send disappearing message" = "Eltűnő üzenet küldése"; + +/* No comment provided by engineer. */ +"Send link previews" = "Hivatkozás előnézetek küldése"; + +/* No comment provided by engineer. */ +"Send live message" = "Élő üzenet küldése"; + +/* No comment provided by engineer. */ +"Send notifications" = "Értesítések küldése"; + +/* No comment provided by engineer. */ +"Send notifications:" = "Értesítések küldése:"; + +/* No comment provided by engineer. */ +"Send questions and ideas" = "Ötletek és kérdések beküldése"; + +/* No comment provided by engineer. */ +"Send receipts" = "Üzenet kézbesítési jelentések"; + +/* No comment provided by engineer. */ +"Send them from gallery or custom keyboards." = "Küldje el őket galériából vagy egyedi billentyűzetekről."; + +/* No comment provided by engineer. */ +"Send up to 100 last messages to new members." = "Utolsó 100 üzenet küldése új tagoknak."; + +/* No comment provided by engineer. */ +"Sender cancelled file transfer." = "A küldő megszakította a fájl átvitelt."; + +/* No comment provided by engineer. */ +"Sender may have deleted the connection request." = "A küldő törölhette a kapcsolódási kérelmet."; + +/* No comment provided by engineer. */ +"Sending delivery receipts will be enabled for all contacts in all visible chat profiles." = "A kézbesítési jelentések küldése engedélyezésre kerül az összes látható csevegési profilban lévő minden ismerős számára."; + +/* No comment provided by engineer. */ +"Sending delivery receipts will be enabled for all contacts." = "A kézbesítési jelentés küldése minden ismerős számára engedélyezésre kerül."; + +/* No comment provided by engineer. */ +"Sending file will be stopped." = "A fájl küldése leállt."; + +/* No comment provided by engineer. */ +"Sending receipts is disabled for %lld contacts" = "A kézbesítési jelentések küldése le van tiltva %lld ismerősnél"; + +/* No comment provided by engineer. */ +"Sending receipts is disabled for %lld groups" = "A kézbesítési jelentések küldése le van tiltva %lld csoportban"; + +/* No comment provided by engineer. */ +"Sending receipts is enabled for %lld contacts" = "A kézbesítési jelentések küldése engedélyezve van %lld ismerős számára"; + +/* No comment provided by engineer. */ +"Sending receipts is enabled for %lld groups" = "A kézbesítési jelentések küldése engedélyezve van %lld csoportban"; + +/* No comment provided by engineer. */ +"Sending via" = "Küldés ezen keresztül"; + +/* No comment provided by engineer. */ +"Sent at" = "Elküldve ekkor"; + +/* copied message info */ +"Sent at: %@" = "Elküldve ekkor: %@"; + +/* notification */ +"Sent file event" = "Elküldött fájl esemény"; + +/* message info title */ +"Sent message" = "Elküldött üzenet"; + +/* No comment provided by engineer. */ +"Sent messages will be deleted after set time." = "Az elküldött üzenetek törlésre kerülnek a beállított idő után."; + +/* server test error */ +"Server requires authorization to create queues, check password" = "A kiszolgálónak engedélyre van szüksége a várólisták létrehozásához, ellenőrizze jelszavát"; + +/* server test error */ +"Server requires authorization to upload, check password" = "A kiszolgálónak engedélyre van szüksége a várólisták feltöltéséhez, ellenőrizze jelszavát"; + +/* No comment provided by engineer. */ +"Server test failed!" = "A kiszolgáló tesztje sikertelen!"; + +/* No comment provided by engineer. */ +"Servers" = "Kiszolgálók"; + +/* No comment provided by engineer. */ +"Session code" = "Munkamenet kód"; + +/* No comment provided by engineer. */ +"Set 1 day" = "Beállítva 1 nap"; + +/* No comment provided by engineer. */ +"Set contact name…" = "Ismerős nevének beállítása…"; + +/* No comment provided by engineer. */ +"Set group preferences" = "Csoportbeállítások megadása"; + +/* No comment provided by engineer. */ +"Set it instead of system authentication." = "Rendszerhitelesítés helyetti beállítás."; + +/* profile update event chat item */ +"set new contact address" = "új kapcsolattartási cím beállítása"; + +/* profile update event chat item */ +"set new profile picture" = "új profilkép beállítása"; + +/* No comment provided by engineer. */ +"Set passcode" = "Jelkód beállítása"; + +/* No comment provided by engineer. */ +"Set passphrase to export" = "Jelmondat beállítása az exportáláshoz"; + +/* No comment provided by engineer. */ +"Set the message shown to new members!" = "Megjelenő üzenetet beállítása új tagok részére!"; + +/* No comment provided by engineer. */ +"Set timeouts for proxy/VPN" = "Időtúllépések beállítása a proxy/VPN számára"; + +/* No comment provided by engineer. */ +"Settings" = "Beállítások"; + +/* chat item action */ +"Share" = "Megosztás"; + +/* No comment provided by engineer. */ +"Share 1-time link" = "Egyszer használatos hivatkozás megosztása"; + +/* No comment provided by engineer. */ +"Share address" = "Azonosító megosztása"; + +/* No comment provided by engineer. */ +"Share address with contacts?" = "Megosztja az azonosítót az ismerősökkel?"; + +/* No comment provided by engineer. */ +"Share link" = "Hivatkozás megosztása"; + +/* No comment provided by engineer. */ +"Share this 1-time invite link" = "Egyszer használatos meghívó hivatkozás megosztása"; + +/* No comment provided by engineer. */ +"Share with contacts" = "Megosztás ismerősökkel"; + +/* No comment provided by engineer. */ +"Show calls in phone history" = "Hívások megjelenítése a híváslistában"; + +/* No comment provided by engineer. */ +"Show developer options" = "Fejlesztői beállítások mutatása"; + +/* No comment provided by engineer. */ +"Show last messages" = "Utolsó üzenetek megjelenítése"; + +/* No comment provided by engineer. */ +"Show preview" = "Előnézet megjelenítése"; + +/* No comment provided by engineer. */ +"Show:" = "Mutat:"; + +/* No comment provided by engineer. */ +"SimpleX address" = "SimpleX azonosító"; + +/* No comment provided by engineer. */ +"SimpleX Address" = "SimpleX azonosító"; + +/* No comment provided by engineer. */ +"SimpleX Chat security was audited by Trail of Bits." = "A SimpleX Chat biztonsága a Trail of Bits által lett auditálva."; + +/* simplex link type */ +"SimpleX contact address" = "SimpleX ismerős azonosítója"; + +/* notification */ +"SimpleX encrypted message or connection event" = "SimpleX titkosított üzenet vagy kapcsolati esemény"; + +/* simplex link type */ +"SimpleX group link" = "SimpleX csoport hivatkozás"; + +/* No comment provided by engineer. */ +"SimpleX links" = "SimpleX hivatkozások"; + +/* No comment provided by engineer. */ +"SimpleX Lock" = "SimpleX zárolás"; + +/* No comment provided by engineer. */ +"SimpleX Lock mode" = "SimpleX zárolási mód"; + +/* No comment provided by engineer. */ +"SimpleX Lock not enabled!" = "SimpleX zárolás nincs engedélyezve!"; + +/* No comment provided by engineer. */ +"SimpleX Lock turned on" = "SimpleX zárolás bekapcsolva"; + +/* simplex link type */ +"SimpleX one-time invitation" = "SimpleX egyszer használatos meghívó"; + +/* No comment provided by engineer. */ +"Simplified incognito mode" = "Egyszerűsített inkognító mód"; + +/* No comment provided by engineer. */ +"Skip" = "Kihagyás"; + +/* No comment provided by engineer. */ +"Skipped messages" = "Kihagyott üzenetek"; + +/* No comment provided by engineer. */ +"Small groups (max 20)" = "Kis csoportok (max. 20 tag)"; + +/* No comment provided by engineer. */ +"SMP servers" = "Üzenetküldő (SMP) kiszolgálók"; + +/* No comment provided by engineer. */ +"Some non-fatal errors occurred during import - you may see Chat console for more details." = "Néhány nem végzetes hiba történt az importálás során – további részletekért a csevegési konzolban olvashat."; + +/* notification title */ +"Somebody" = "Valaki"; + +/* No comment provided by engineer. */ +"Start chat" = "Csevegés indítása"; + +/* No comment provided by engineer. */ +"Start chat?" = "Csevegés indítása?"; + +/* No comment provided by engineer. */ +"Start migration" = "Migráció indítása"; + +/* No comment provided by engineer. */ +"starting…" = "indítás…"; + +/* No comment provided by engineer. */ +"Stop" = "Megállítás"; + +/* No comment provided by engineer. */ +"Stop chat to enable database actions" = "Csevegés leállítása az adatbázis-műveletek engedélyezéséhez"; + +/* No comment provided by engineer. */ +"Stop chat to export, import or delete chat database. You will not be able to receive and send messages while the chat is stopped." = "A csevegés leállítása a csevegőadatbázis exportálásához, importálásához vagy törléséhez. A csevegés leállítása alatt nem tud üzeneteket fogadni és küldeni."; + +/* No comment provided by engineer. */ +"Stop chat?" = "Csevegési szolgáltatás megállítása?"; + +/* cancel file action */ +"Stop file" = "Fájl megállítása"; + +/* No comment provided by engineer. */ +"Stop receiving file?" = "Fájl fogadás megszakítása?"; + +/* No comment provided by engineer. */ +"Stop sending file?" = "Fájl küldés megszakítása?"; + +/* No comment provided by engineer. */ +"Stop sharing" = "Megosztás leállítása"; + +/* No comment provided by engineer. */ +"Stop sharing address?" = "Címmegosztás megállítása?"; + +/* authentication reason */ +"Stop SimpleX" = "A SimpleX megállítása"; + +/* No comment provided by engineer. */ +"strike" = "áthúzott"; + +/* No comment provided by engineer. */ +"Submit" = "Elküldés"; + +/* No comment provided by engineer. */ +"Support SimpleX Chat" = "Támogassa a SimpleX Chatet"; + +/* No comment provided by engineer. */ +"System" = "Rendszer"; + +/* No comment provided by engineer. */ +"System authentication" = "Rendszerhitelesítés"; + +/* No comment provided by engineer. */ +"Take picture" = "Fotó készítése"; + +/* No comment provided by engineer. */ +"Tap button " = "Koppintson a gombra "; + +/* No comment provided by engineer. */ +"Tap to activate profile." = "A profil aktiválásához koppintson az ikonra."; + +/* No comment provided by engineer. */ +"Tap to Connect" = "Koppintson a csatlakozáshoz"; + +/* No comment provided by engineer. */ +"Tap to join" = "Koppintson a csatlakozáshoz"; + +/* No comment provided by engineer. */ +"Tap to join incognito" = "Koppintson az inkognitómódhoz való csatlakozáshoz"; + +/* No comment provided by engineer. */ +"Tap to paste link" = "Koppintson a hivatkozás beillesztéséhez"; + +/* No comment provided by engineer. */ +"Tap to scan" = "Koppintson a beolvasáshoz"; + +/* No comment provided by engineer. */ +"Tap to start a new chat" = "Koppintson az új csevegés indításához"; + +/* No comment provided by engineer. */ +"TCP connection timeout" = "TCP kapcsolat időtúllépés"; + +/* No comment provided by engineer. */ +"TCP_KEEPCNT" = "TCP_KEEPCNT"; + +/* No comment provided by engineer. */ +"TCP_KEEPIDLE" = "TCP_KEEPIDLE"; + +/* No comment provided by engineer. */ +"TCP_KEEPINTVL" = "TCP_KEEPINTVL"; + +/* server test failure */ +"Test failed at step %@." = "A teszt sikertelen volt a(z) %@ lépésnél."; + +/* No comment provided by engineer. */ +"Test server" = "Kiszolgáló tesztelése"; + +/* No comment provided by engineer. */ +"Test servers" = "Kiszolgálók tesztelése"; + +/* No comment provided by engineer. */ +"Tests failed!" = "Sikertelen tesztek!"; + +/* No comment provided by engineer. */ +"Thank you for installing SimpleX Chat!" = "Köszönjük, hogy telepítette a SimpleX Chatet!"; + +/* No comment provided by engineer. */ +"Thanks to the users – [contribute via Weblate](https://github.com/simplex-chat/simplex-chat/tree/stable#help-translating-simplex-chat)!" = "Köszönet a felhasználóknak – [hozzájárulás a Weblate-en keresztül](https://github.com/simplex-chat/simplex-chat/tree/stable#help-translating-simplex-chat)!"; + +/* No comment provided by engineer. */ +"Thanks to the users – contribute via Weblate!" = "Köszönet a felhasználóknak - hozzájárulás a Weblaten!"; + +/* No comment provided by engineer. */ +"The 1st platform without any user identifiers – private by design." = "Az első csevegési rendszer bármiféle felhasználó azonosító nélkül - privátra lett tervezre."; + +/* No comment provided by engineer. */ +"The app can notify you when you receive messages or contact requests - please open settings to enable." = "Az alkalmazás értesíteni fogja, amikor üzeneteket vagy kapcsolatfelvételi kéréseket kap – beállítások megnyitása az engedélyezéshez."; + +/* No comment provided by engineer. */ +"The attempt to change database passphrase was not completed." = "Az adatbázis jelmondatának megváltoztatására tett kísérlet nem fejeződött be."; + +/* No comment provided by engineer. */ +"The code you scanned is not a SimpleX link QR code." = "A beolvasott kód nem egy SimpleX hivatkozás QR-kód."; + +/* No comment provided by engineer. */ +"The connection you accepted will be cancelled!" = "Az ön által elfogadott kapcsolat megszakad!"; + +/* No comment provided by engineer. */ +"The contact you shared this link with will NOT be able to connect!" = "Ismerőse NEM fog tudni csatlakozni, akivel megosztotta ezt a hivatkozást!"; + +/* No comment provided by engineer. */ +"The created archive is available via app Settings / Database / Old database archive." = "A létrehozott archívum a Beállítások / Adatbázis / Régi adatbázis-archívum menüpontban érhető el."; + +/* No comment provided by engineer. */ +"The encryption is working and the new encryption agreement is not required. It may result in connection errors!" = "A titkosítás működik, és új titkosítási egyezményre nincs szükség. Ez kapcsolati hibákat eredményezhet!"; + +/* No comment provided by engineer. */ +"The hash of the previous message is different." = "Az előző üzenet hash-e más."; + +/* No comment provided by engineer. */ +"The ID of the next message is incorrect (less or equal to the previous).\nIt can happen because of some bug or when the connection is compromised." = "A következő üzenet azonosítója hibás (kisebb vagy egyenlő az előzővel).\nEz valamilyen hiba, vagy sérült kapcsolat esetén fordulhat elő."; + +/* No comment provided by engineer. */ +"The message will be deleted for all members." = "Az üzenet minden tag számára törlésre kerül."; + +/* No comment provided by engineer. */ +"The message will be marked as moderated for all members." = "Az üzenet minden tag számára moderáltként lesz megjelölve."; + +/* No comment provided by engineer. */ +"The next generation of private messaging" = "A privát üzenetküldés következő generációja"; + +/* No comment provided by engineer. */ +"The old database was not removed during the migration, it can be deleted." = "A régi adatbázis nem került eltávolításra a migráció során, így törölhető."; + +/* No comment provided by engineer. */ +"The profile is only shared with your contacts." = "Profilja csak az ismerősök számára kerül megosztásra."; + +/* No comment provided by engineer. */ +"The second tick we missed! ✅" = "A második jelölés, amit kihagytunk! ✅"; + +/* No comment provided by engineer. */ +"The sender will NOT be notified" = "A feladó NEM fog értesítést kapni"; + +/* No comment provided by engineer. */ +"The servers for new connections of your current chat profile **%@**." = "Jelenlegi profil új ismerőseinek kiszolgálói **%@**."; + +/* No comment provided by engineer. */ +"The text you pasted is not a SimpleX link." = "A beillesztett szöveg nem egy SimpleX hivatkozás."; + +/* No comment provided by engineer. */ +"Theme" = "Téma"; + +/* No comment provided by engineer. */ +"These settings are for your current profile **%@**." = "Ezek a beállítások a jelenlegi **%@** profiljára vonatkoznak."; + +/* No comment provided by engineer. */ +"They can be overridden in contact and group settings." = "Ezek felülbírálhatóak az ismerős- és csoportbeállításokban."; + +/* No comment provided by engineer. */ +"This action cannot be undone - all received and sent files and media will be deleted. Low resolution pictures will remain." = "Ez a művelet nem vonható vissza - az összes fogadott és küldött fájl a médiatartalommal együtt törlésre kerülnek. Az alacsony felbontású fotók viszont megmaradnak."; + +/* No comment provided by engineer. */ +"This action cannot be undone - the messages sent and received earlier than selected will be deleted. It may take several minutes." = "Ez a művelet nem vonható vissza - a kiválasztottnál korábban küldött és fogadott üzenetek törlésre kerülnek. Ez több percet is igénybe vehet."; + +/* No comment provided by engineer. */ +"This action cannot be undone - your profile, contacts, messages and files will be irreversibly lost." = "Ez a művelet nem vonható vissza - profilok, ismerősök, üzenetek és fájlok visszafordíthatatlanul törlésre kerülnek."; + +/* notification title */ +"this contact" = "ez az ismerős"; + +/* No comment provided by engineer. */ +"This device name" = "Ennek az eszköznek a neve"; + +/* No comment provided by engineer. */ +"This display name is invalid. Please choose another name." = "Ez a megjelenített felhasználónév érvénytelen. Válasszon egy másik nevet."; + +/* No comment provided by engineer. */ +"This group has over %lld members, delivery receipts are not sent." = "Ennek a csoportnak több mint %lld tagja van, a kézbesítési jelentések nem kerülnek elküldésre."; + +/* No comment provided by engineer. */ +"This group no longer exists." = "Ez a csoport már nem létezik."; + +/* No comment provided by engineer. */ +"This is your own one-time link!" = "Ez az egyszer használatos hivatkozása!"; + +/* No comment provided by engineer. */ +"This is your own SimpleX address!" = "Ez a SimpleX azonosítója!"; + +/* No comment provided by engineer. */ +"This setting applies to messages in your current chat profile **%@**." = "Ez a beállítás a jelenlegi **%@** profiljában lévő üzenetekre érvényes."; + +/* No comment provided by engineer. */ +"To ask any questions and to receive updates:" = "Bármilyen kérdés feltevéséhez és a frissítésekért:"; + +/* No comment provided by engineer. */ +"To connect, your contact can scan QR code or use the link in the app." = "A csatlakozáshoz az ismerős beolvashatja a QR-kódot, vagy használhatja az alkalmazásban található hivatkozást."; + +/* No comment provided by engineer. */ +"To hide unwanted messages." = "Kéretlen üzenetek elrejtése."; + +/* No comment provided by engineer. */ +"To make a new connection" = "Új kapcsolat létrehozásához"; + +/* No comment provided by engineer. */ +"To protect privacy, instead of user IDs used by all other platforms, SimpleX has identifiers for message queues, separate for each of your contacts." = "Az adatvédelem érdekében, a más csevegési platformokon megszokott felhasználói azonosítók helyett, a SimpleX üzenetsorokhoz rendel azonosítókat, minden egyes ismerőshöz egy különbözőt."; + +/* No comment provided by engineer. */ +"To protect timezone, image/voice files use UTC." = "Az időzóna védelme érdekében a kép-/hangfájlok UTC-t használnak."; + +/* No comment provided by engineer. */ +"To protect your information, turn on SimpleX Lock.\nYou will be prompted to complete authentication before this feature is enabled." = "Az adatavédelem érdekében kapcsolja be a SimpleX zárolás funkciót.\nA funkció engedélyezése előtt a rendszer felszólítja a hitelesítés befejezésére."; + +/* No comment provided by engineer. */ +"To record voice message please grant permission to use Microphone." = "Hangüzenet rögzítéséhez adjon engedélyt a mikrofon használathoz."; + +/* No comment provided by engineer. */ +"To reveal your hidden profile, enter a full password into a search field in **Your chat profiles** page." = "Rejtett profilja feltárásához írja be a teljes jelszót a keresőmezőbe a **Csevegési profiljai** oldalon."; + +/* No comment provided by engineer. */ +"To support instant push notifications the chat database has to be migrated." = "Az azonnali push értesítések támogatásához a csevegési adatbázis migrálása szükséges."; + +/* No comment provided by engineer. */ +"To verify end-to-end encryption with your contact compare (or scan) the code on your devices." = "A végpontok közötti titkosítás ellenőrzéséhez ismerősével hasonlítsa össze (vagy szkennelje be) az eszközén lévő kódot."; + +/* No comment provided by engineer. */ +"Toggle incognito when connecting." = "Inkognító mód csatlakozáskor."; + +/* No comment provided by engineer. */ +"Transport isolation" = "Kapcsolat izolációs mód"; + +/* No comment provided by engineer. */ +"Trying to connect to the server used to receive messages from this contact (error: %@)." = "Csatlakozási kísérlet a kapcsolat üzeneteinek fogadására használt kiszolgálóhoz (hiba: %@)."; + +/* No comment provided by engineer. */ +"Trying to connect to the server used to receive messages from this contact." = "Csatlakozási kísérlet a kapcsolat üzeneteinek fogadására használt kiszolgálóhoz ettől az ismerőstől."; + +/* No comment provided by engineer. */ +"Turkish interface" = "Török kezelőfelület"; + +/* No comment provided by engineer. */ +"Turn off" = "Kikapcsolás"; + +/* No comment provided by engineer. */ +"Turn on" = "Bekapcsolás"; + +/* No comment provided by engineer. */ +"Unable to record voice message" = "Hangüzenet rögzítése nem lehetséges"; + +/* No comment provided by engineer. */ +"Unblock" = "Feloldás"; + +/* No comment provided by engineer. */ +"Unblock for all" = "Letiltás feloldása mindenki számára"; + +/* No comment provided by engineer. */ +"Unblock member" = "Tag feloldása"; + +/* No comment provided by engineer. */ +"Unblock member for all?" = "Mindenki számára feloldja a tag letiltását?"; + +/* No comment provided by engineer. */ +"Unblock member?" = "Tag feloldása?"; + +/* rcv group event chat item */ +"unblocked %@" = "%@ feloldva"; + +/* item status description */ +"Unexpected error: %@" = "Váratlan hiba: %@"; + +/* No comment provided by engineer. */ +"Unexpected migration state" = "Váratlan migrációs állapot"; + +/* No comment provided by engineer. */ +"Unfav." = "Nem kedvelt."; + +/* No comment provided by engineer. */ +"Unhide" = "Felfedés"; + +/* No comment provided by engineer. */ +"Unhide chat profile" = "Csevegési profil felfedése"; + +/* No comment provided by engineer. */ +"Unhide profile" = "Profil felfedése"; + +/* No comment provided by engineer. */ +"Unit" = "Egység"; + +/* connection info */ +"unknown" = "ismeretlen"; + +/* callkit banner */ +"Unknown caller" = "Ismeretlen hívó"; + +/* No comment provided by engineer. */ +"Unknown database error: %@" = "Ismeretlen adatbázishiba: %@"; + +/* No comment provided by engineer. */ +"Unknown error" = "Ismeretlen hiba"; + +/* No comment provided by engineer. */ +"unknown status" = "ismeretlen státusz"; + +/* No comment provided by engineer. */ +"Unless you use iOS call interface, enable Do Not Disturb mode to avoid interruptions." = "Hacsak nem az iOS hívási felületét használja, engedélyezze a Ne zavarjanak módot a megszakítások elkerülése érdekében."; + +/* No comment provided by engineer. */ +"Unless your contact deleted the connection or this link was already used, it might be a bug - please report it.\nTo connect, please ask your contact to create another connection link and check that you have a stable network connection." = "Hacsak az ismerős nem törölte a kapcsolatot, vagy ez a hivatkozás már használatban volt, hiba lehet – kérjük, jelentse.\nA csatlakozáshoz kérje meg ismerősét, hogy hozzon létre egy másik kapcsolati hivatkozást, és ellenőrizze, hogy a hálózati kapcsolat stabil-e."; + +/* No comment provided by engineer. */ +"Unlink" = "Szétkapcsolás"; + +/* No comment provided by engineer. */ +"Unlink desktop?" = "Számítógép szétkapcsolása?"; + +/* No comment provided by engineer. */ +"Unlock" = "Feloldás"; + +/* authentication reason */ +"Unlock app" = "Alkalmazás feloldása"; + +/* No comment provided by engineer. */ +"Unmute" = "Némítás feloldása"; + +/* No comment provided by engineer. */ +"Unread" = "Olvasatlan"; + +/* No comment provided by engineer. */ +"Up to 100 last messages are sent to new members." = "Legfeljebb az utolsó 100 üzenet kerül elküldésre az új tagoknak."; + +/* No comment provided by engineer. */ +"Update" = "Frissítés"; + +/* No comment provided by engineer. */ +"Update .onion hosts setting?" = "Tor .onion host beállítások frissítése?"; + +/* No comment provided by engineer. */ +"Update database passphrase" = "Adatbázis jelmondat megváltoztatása"; + +/* No comment provided by engineer. */ +"Update network settings?" = "Hálózati beállítások megváltoztatása?"; + +/* No comment provided by engineer. */ +"Update transport isolation mode?" = "Kapcsolat izolációs mód frissítése?"; + +/* rcv group event chat item */ +"updated group profile" = "módosított csoport profil"; + +/* profile update event chat item */ +"updated profile" = "frissített profil"; + +/* No comment provided by engineer. */ +"Updating settings will re-connect the client to all servers." = "A beállítások frissítése a szerverekhez újra kapcsolódással jár."; + +/* No comment provided by engineer. */ +"Updating this setting will re-connect the client to all servers." = "A beállítás frissítésével a kliens újracsatlakozik az összes kiszolgálóhoz."; + +/* No comment provided by engineer. */ +"Upgrade and open chat" = "A csevegés frissítése és megnyitása"; + +/* server test step */ +"Upload file" = "Fájl feltöltése"; + +/* No comment provided by engineer. */ +"Use .onion hosts" = "Tor .onion hostok használata"; + +/* No comment provided by engineer. */ +"Use chat" = "Csevegés használata"; + +/* No comment provided by engineer. */ +"Use current profile" = "Jelenlegi profil használata"; + +/* No comment provided by engineer. */ +"Use for new connections" = "Alkalmazás új kapcsolatokhoz"; + +/* No comment provided by engineer. */ +"Use from desktop" = "Használat számítógépről"; + +/* No comment provided by engineer. */ +"Use iOS call interface" = "Az iOS hívófelület használata"; + +/* No comment provided by engineer. */ +"Use new incognito profile" = "Az új inkognító profil használata"; + +/* No comment provided by engineer. */ +"Use only local notifications?" = "Csak helyi értesítések használata?"; + +/* No comment provided by engineer. */ +"Use server" = "Kiszolgáló használata"; + +/* No comment provided by engineer. */ +"Use SimpleX Chat servers?" = "SimpleX Chat kiszolgálók használata?"; + +/* No comment provided by engineer. */ +"User profile" = "Felhasználói profil"; + +/* No comment provided by engineer. */ +"Using .onion hosts requires compatible VPN provider." = "A .onion hosztok használatához kompatibilis VPN szolgáltatóra van szükség."; + +/* No comment provided by engineer. */ +"Using SimpleX Chat servers." = "SimpleX Chat kiszolgálók használatban."; + +/* No comment provided by engineer. */ +"v%@" = "v%@"; + +/* No comment provided by engineer. */ +"v%@ (%@)" = "v%@ (%@)"; + +/* No comment provided by engineer. */ +"Verify code with desktop" = "Kód ellenőrzése a számítógépen"; + +/* No comment provided by engineer. */ +"Verify connection" = "Kapcsolat ellenőrzése"; + +/* No comment provided by engineer. */ +"Verify connection security" = "Kapcsolat biztonságának ellenőrzése"; + +/* No comment provided by engineer. */ +"Verify connections" = "Kapcsolatok ellenőrzése"; + +/* No comment provided by engineer. */ +"Verify security code" = "Biztonsági kód ellenőrzése"; + +/* No comment provided by engineer. */ +"Via browser" = "Böngészőn keresztül"; + +/* chat list item description */ +"via contact address link" = "ismerős azonosítójának hivatkozásán keresztül"; + +/* chat list item description */ +"via group link" = "csoport hivatkozáson keresztül"; + +/* chat list item description */ +"via one-time link" = "egyszer használatos hivatkozáson keresztül"; + +/* No comment provided by engineer. */ +"via relay" = "átjátszón keresztül"; + +/* No comment provided by engineer. */ +"Via secure quantum resistant protocol." = "Biztonságos kvantum ellenálló protokoll által."; + +/* No comment provided by engineer. */ +"Video call" = "Videóhívás"; + +/* No comment provided by engineer. */ +"video call (not e2e encrypted)" = "videóhívás (nem e2e titkosított)"; + +/* No comment provided by engineer. */ +"Video will be received when your contact completes uploading it." = "A videó akkor érkezik meg, amikor az ismerőse befejezte annak feltöltését."; + +/* No comment provided by engineer. */ +"Video will be received when your contact is online, please wait or check later!" = "A videó akkor érkezik meg, amikor az ismerős elérhető, várjon, vagy ellenőrizze később!"; + +/* No comment provided by engineer. */ +"Videos and files up to 1gb" = "Videók és fájlok 1Gb méretig"; + +/* No comment provided by engineer. */ +"View security code" = "Biztonsági kód megtekintése"; + +/* chat feature */ +"Visible history" = "Látható előzmények"; + +/* No comment provided by engineer. */ +"Voice message…" = "Hangüzenet…"; + +/* chat feature */ +"Voice messages" = "Hangüzenetek"; + +/* No comment provided by engineer. */ +"Voice messages are prohibited in this chat." = "A hangüzenetek le vannak tiltva ebben a csevegésben."; + +/* No comment provided by engineer. */ +"Voice messages are prohibited in this group." = "A hangüzenetek küldése le van tiltva ebben a csoportban."; + +/* No comment provided by engineer. */ +"Voice messages prohibited!" = "A hangüzenetek le vannak tilva!"; + +/* No comment provided by engineer. */ +"waiting for answer…" = "várakozás válaszra…"; + +/* No comment provided by engineer. */ +"waiting for confirmation…" = "várakozás a visszaigazolásra…"; + +/* No comment provided by engineer. */ +"Waiting for desktop..." = "Várakozás az asztali kliensre..."; + +/* No comment provided by engineer. */ +"Waiting for file" = "Fájlra várakozás"; + +/* No comment provided by engineer. */ +"Waiting for image" = "Képre várakozás"; + +/* No comment provided by engineer. */ +"Waiting for video" = "Videóra várakozás"; + +/* No comment provided by engineer. */ +"wants to connect to you!" = "kapcsolatba akar lépni önnel!"; + +/* No comment provided by engineer. */ +"Warning: you may lose some data!" = "Figyelmeztetés: néhány adat elveszhet!"; + +/* No comment provided by engineer. */ +"WebRTC ICE servers" = "WebRTC ICE kiszolgálók"; + +/* time unit */ +"weeks" = "hét"; + +/* No comment provided by engineer. */ +"Welcome %@!" = "Üdvözöllek %@!"; + +/* No comment provided by engineer. */ +"Welcome message" = "Üdvözlő üzenet"; + +/* No comment provided by engineer. */ +"What's new" = "Milyen újdonságok vannak"; + +/* No comment provided by engineer. */ +"When available" = "Amikor elérhető"; + +/* No comment provided by engineer. */ +"When people request to connect, you can accept or reject it." = "Csatlakozási kérelmek esetében, elfogadhatja vagy elutasíthatja azokat."; + +/* No comment provided by engineer. */ +"When you share an incognito profile with somebody, this profile will be used for the groups they invite you to." = "Inkognitóprofil megosztása esetén a rendszer azt a profilt fogja használni azokhoz a csoportokhoz, amelyekbe meghívást kapott."; + +/* No comment provided by engineer. */ +"With encrypted files and media." = "Titkosított fájlokkal és médiatartalommal."; + +/* No comment provided by engineer. */ +"With optional welcome message." = "Opcionális üdvözlő üzenettel."; + +/* No comment provided by engineer. */ +"With reduced battery usage." = "Csökkentett akkumulátorhasználattal."; + +/* No comment provided by engineer. */ +"Wrong database passphrase" = "Téves adatbázis jelmondat"; + +/* No comment provided by engineer. */ +"Wrong passphrase!" = "Téves jelmondat!"; + +/* No comment provided by engineer. */ +"XFTP servers" = "XFTP kiszolgálók"; + +/* pref value */ +"yes" = "igen"; + +/* No comment provided by engineer. */ +"You" = "Ön"; + +/* No comment provided by engineer. */ +"You accepted connection" = "Kapcsolódás elfogadva"; + +/* No comment provided by engineer. */ +"You allow" = "Engedélyezte"; + +/* No comment provided by engineer. */ +"You already have a chat profile with the same display name. Please choose another name." = "Már van egy csevegési profil ugyanezzel a megjelenített névvel. Válasszon egy másik nevet."; + +/* No comment provided by engineer. */ +"You are already connected to %@." = "Már csatlakozva van ehhez: %@."; + +/* No comment provided by engineer. */ +"You are already connecting to %@." = "Már folyamatban van a csatlakozás ehhez: %@."; + +/* No comment provided by engineer. */ +"You are already connecting via this one-time link!" = "Már csatlakozik ezen az egyszer használatos hivatkozáson keresztül!"; + +/* No comment provided by engineer. */ +"You are already in group %@." = "Már a %@ csoportban van."; + +/* No comment provided by engineer. */ +"You are already joining the group %@." = "Már folyamatban van a csatlakozás a csoporthoz %@."; + +/* No comment provided by engineer. */ +"You are already joining the group via this link!" = "Már csatlakozott a csoporthoz ezen a hivatkozáson keresztül!"; + +/* No comment provided by engineer. */ +"You are already joining the group via this link." = "Ezen a hivatkozáson keresztül már csatlakozik a csoporthoz."; + +/* No comment provided by engineer. */ +"You are already joining the group!\nRepeat join request?" = "Csatlakozás folyamatban!\nCsatlakozási kérés megismétlése?"; + +/* No comment provided by engineer. */ +"You are connected to the server used to receive messages from this contact." = "Kiszolgálóhoz történő csatlakozás, mely az adott ismerőstől érkező üzenetek fogadására szolgál."; + +/* No comment provided by engineer. */ +"you are invited to group" = "meghívást kapott a csoportba"; + +/* No comment provided by engineer. */ +"You are invited to group" = "Meghívást kapott a csoportba"; + +/* No comment provided by engineer. */ +"you are observer" = "megfigyelő szerep"; + +/* snd group event chat item */ +"you blocked %@" = "blokkolta őt: %@"; + +/* No comment provided by engineer. */ +"You can accept calls from lock screen, without device and app authentication." = "Hívásokat fogadhat a lezárási képernyőről, eszköz- és alkalmazáshitelesítés nélkül."; + +/* No comment provided by engineer. */ +"You can create it later" = "Létrehozás később"; + +/* No comment provided by engineer. */ +"You can enable later via Settings" = "Később engedélyezheti a Beállításokban"; + +/* No comment provided by engineer. */ +"You can enable them later via app Privacy & Security settings." = "Később engedélyezheti őket az alkalmazás Adatvédelem és biztonság menüpontban."; + +/* No comment provided by engineer. */ +"You can hide or mute a user profile - swipe it to the right." = "Elrejthet vagy némíthat egy felhasználói profilt – csúsztasson jobbra."; + +/* No comment provided by engineer. */ +"You can make it visible to your SimpleX contacts via Settings." = "Láthatóvá teheti SimpleX ismerősök számára a Beállításokban."; + +/* notification body */ +"You can now send messages to %@" = "Mostantól küldhet üzeneteket %@ számára"; + +/* No comment provided by engineer. */ +"You can set lock screen notification preview via settings." = "A beállításokon keresztül beállíthatja a lezárási képernyő értesítési előnézetét."; + +/* No comment provided by engineer. */ +"You can share a link or a QR code - anybody will be able to join the group. You won't lose members of the group if you later delete it." = "Megoszthat egy hivatkozást vagy QR-kódot - így bárki csatlakozhat a csoporthoz. Ha a csoport később törlésre kerül, akkor nem fogja elveszíteni annak tagjait."; + +/* No comment provided by engineer. */ +"You can share this address with your contacts to let them connect with **%@**." = "Megoszthatja ezt a hivatkozást ismerőseivel, hogy kapcsolatba léphessenek önnel a **%@** nevű profilján keresztül."; + +/* No comment provided by engineer. */ +"You can share your address as a link or QR code - anybody can connect to you." = "Megoszthatja azonosítóját hivatkozásként vagy QR-kódként – így bárki csatlakozhat önhöz."; + +/* No comment provided by engineer. */ +"You can start chat via app Settings / Database or by restarting the app" = "A csevegést az alkalmazás Beállítások / Adatbázis menü segítségével vagy az alkalmazás újraindításával indíthatja el"; + +/* No comment provided by engineer. */ +"You can turn on SimpleX Lock via Settings." = "A SimpleX zárolás a Beállításokon keresztül kapcsolható be."; + +/* No comment provided by engineer. */ +"You can use markdown to format messages:" = "Üzenetek formázása a szövegbe szúrt speciális karakterekkel:"; + +/* No comment provided by engineer. */ +"You can view invitation link again in connection details." = "A meghívó hivatkozást újra megtekintheti a kapcsolat részleteinél."; + +/* No comment provided by engineer. */ +"You can't send messages!" = "Nem lehet üzeneteket küldeni!"; + +/* chat item text */ +"you changed address" = "azonosítója megváltoztatva"; + +/* chat item text */ +"you changed address for %@" = "%@ azonosítója megváltoztatva"; + +/* snd group event chat item */ +"you changed role for yourself to %@" = "saját szerepkör megváltoztatva erre: %@"; + +/* snd group event chat item */ +"you changed role of %@ to %@" = "megváltoztatta %1$@ szerepkörét erre: %@"; + +/* No comment provided by engineer. */ +"You control through which server(s) **to receive** the messages, your contacts – the servers you use to message them." = "Ön szabályozhatja, hogy mely kiszogál(ók)ón keresztül **kapja** az üzeneteket, az ismerősöket - az üzenetküldéshez használt szervereken."; + +/* No comment provided by engineer. */ +"You could not be verified; please try again." = "Nem lehetett ellenőrizni; próbálja meg újra."; + +/* No comment provided by engineer. */ +"You have already requested connection via this address!" = "Már kért egy csatlakozást ezen az azonosítón keresztül!"; + +/* No comment provided by engineer. */ +"You have already requested connection!\nRepeat connection request?" = "Már kérelmezte a csatlakozást!\nKapcsolódási kérés megismétlése?"; + +/* No comment provided by engineer. */ +"You have no chats" = "Nincsenek csevegési üzenetek"; + +/* No comment provided by engineer. */ +"You have to enter passphrase every time the app starts - it is not stored on the device." = "A jelmondatot minden alkalommal meg kell adnia, amikor az alkalmazás elindul - nem az eszközön kerül tárolásra."; + +/* No comment provided by engineer. */ +"You invited a contact" = "Meghívott egy ismerőst"; + +/* No comment provided by engineer. */ +"You joined this group" = "Csatlakozott ehhez a csoporthoz"; + +/* No comment provided by engineer. */ +"You joined this group. Connecting to inviting group member." = "Csatlakozott ehhez a csoporthoz. Kapcsolódás a meghívó csoporttaghoz."; + +/* snd group event chat item */ +"you left" = "elhagyta"; + +/* No comment provided by engineer. */ +"You must use the most recent version of your chat database on one device ONLY, otherwise you may stop receiving the messages from some contacts." = "A csevegési adatbázis legfrissebb verzióját CSAK egy eszközön kell használnia, ellenkező esetben előfordulhat, hogy az üzeneteket nem fogja megkapni valamennyi ismerőstől."; + +/* No comment provided by engineer. */ +"You need to allow your contact to send voice messages to be able to send them." = "Hangüzeneteket küldéséhez engedélyeznie kell azok küldését az ismerősök számára."; + +/* No comment provided by engineer. */ +"You rejected group invitation" = "Csoport meghívó elutasítva"; + +/* snd group event chat item */ +"you removed %@" = "eltávolította őt: %@"; + +/* No comment provided by engineer. */ +"You sent group invitation" = "Csoport meghívó elküldve"; + +/* chat list item description */ +"you shared one-time link" = "egyszer használatos hivatkozást osztott meg"; + +/* chat list item description */ +"you shared one-time link incognito" = "egyszer használatos hivatkozást osztott meg inkognitóban"; + +/* snd group event chat item */ +"you unblocked %@" = "feloldotta %@ blokkolását"; + +/* No comment provided by engineer. */ +"You will be connected to group when the group host's device is online, please wait or check later!" = "Akkor tud csatlakozni a csoporthoz, amikor a csoport tulajdonosának eszköze online lesz, várjon, vagy ellenőrizze később!"; + +/* No comment provided by engineer. */ +"You will be connected when group link host's device is online, please wait or check later!" = "Akkor lesz csatlakoztatva, amikor a csoportos hivatkozás tulajdonosának eszköze online lesz, várjon, vagy ellenőrizze később!"; + +/* No comment provided by engineer. */ +"You will be connected when your connection request is accepted, please wait or check later!" = "Akkor lesz csatlakoztatva, ha a csatlakozási kérelme elfogadásra került, várjon, vagy ellenőrizze később!"; + +/* No comment provided by engineer. */ +"You will be connected when your contact's device is online, please wait or check later!" = "Akkor csatlakozik, amikor az ismerős eszköze online lesz, várjon, vagy ellenőrizze később!"; + +/* No comment provided by engineer. */ +"You will be required to authenticate when you start or resume the app after 30 seconds in background." = "Az alkalmazás indításakor, vagy 30 másodpercnyi háttérben töltött idő után az alkalmazáshoz visszatérve hitelesítés szükséges."; + +/* No comment provided by engineer. */ +"You will connect to all group members." = "Csatlakozni fog a csoport összes tagjához."; + +/* No comment provided by engineer. */ +"You will still receive calls and notifications from muted profiles when they are active." = "Továbbra is kap hívásokat és értesítéseket a némított profiloktól, ha azok aktívak."; + +/* No comment provided by engineer. */ +"You will stop receiving messages from this group. Chat history will be preserved." = "Ettől a csoporttól nem fog értesítéseket kapni. A csevegési előzmények megmaradnak."; + +/* No comment provided by engineer. */ +"You won't lose your contacts if you later delete your address." = "Nem veszíti el ismerőseit, ha később törli az azonosítóját."; + +/* No comment provided by engineer. */ +"you: " = "ön: "; + +/* No comment provided by engineer. */ +"You're trying to invite contact with whom you've shared an incognito profile to the group in which you're using your main profile" = "Egy olyan ismerőst próbál meghívni, akivel inkognító profilt osztott meg abban a csoportban, amelyben saját fő profilja van használatban"; + +/* No comment provided by engineer. */ +"You're using an incognito profile for this group - to prevent sharing your main profile inviting contacts is not allowed" = "Inkognító profilt használ ehhez a csoporthoz - fő profilja megosztásának elkerülése érdekében meghívók küldése tiltott"; + +/* No comment provided by engineer. */ +"Your %@ servers" = "%@ nevű profiljához tartozó kiszolgálók"; + +/* No comment provided by engineer. */ +"Your calls" = "Hívások"; + +/* No comment provided by engineer. */ +"Your chat database" = "Csevegési adatbázisa"; + +/* No comment provided by engineer. */ +"Your chat database is not encrypted - set passphrase to encrypt it." = "Csevegési adatbázisa nincs titkosítva – adjon meg egy jelmondatot a titkosításhoz."; + +/* No comment provided by engineer. */ +"Your chat profiles" = "Csevegési profiljai"; + +/* No comment provided by engineer. */ +"Your contact needs to be online for the connection to complete.\nYou can cancel this connection and remove the contact (and try later with a new link)." = "Az ismerősnek online kell lennie ahhoz, hogy a kapcsolat létrejöjjön.\nMegszakíthatja ezt a kapcsolatfelvételt és törölheti az ismerőst (ezt később ismét megpróbálhatja egy új hivatkozással)."; + +/* No comment provided by engineer. */ +"Your contact sent a file that is larger than currently supported maximum size (%@)." = "Ismerőse olyan fájlt küldött, amely meghaladja a jelenleg támogatott maximális méretet (%@)."; + +/* No comment provided by engineer. */ +"Your contacts can allow full message deletion." = "Ismerősök engedélyezhetik a teljes üzenet törlést."; + +/* No comment provided by engineer. */ +"Your contacts will remain connected." = "Az ismerősök továbbra is csatlakoztatva maradnak."; + +/* No comment provided by engineer. */ +"Your current chat database will be DELETED and REPLACED with the imported one." = "A jelenlegi csevegési adatbázis TÖRLŐDNI FOG, és a HELYÉRE az importált adatbázis kerül."; + +/* No comment provided by engineer. */ +"Your current profile" = "Jelenlegi profil"; + +/* No comment provided by engineer. */ +"Your ICE servers" = "ICE kiszolgálók"; + +/* No comment provided by engineer. */ +"Your preferences" = "Beállítások"; + +/* No comment provided by engineer. */ +"Your privacy" = "Adatvédelem"; + +/* No comment provided by engineer. */ +"Your profile" = "Profil"; + +/* No comment provided by engineer. */ +"Your profile **%@** will be shared." = "**%@** nevű profilja megosztásra kerül."; + +/* No comment provided by engineer. */ +"Your profile is stored on your device and shared only with your contacts.\nSimpleX servers cannot see your profile." = "Profilja az eszközön van tárolva, és csak az ismerősökkel kerül megosztásra.\nA SimpleX kiszolgálók nem látjhatják profilját."; + +/* No comment provided by engineer. */ +"Your profile, contacts and delivered messages are stored on your device." = "Profilja, ismerősök és az elküldött üzenetek az eszközön kerülnek tárolásra."; + +/* No comment provided by engineer. */ +"Your random profile" = "Véletlenszerű profil"; + +/* No comment provided by engineer. */ +"Your server" = "Saját kiszolgáló"; + +/* No comment provided by engineer. */ +"Your server address" = "Saját kiszolgáló cím"; + +/* No comment provided by engineer. */ +"Your settings" = "Beállítások"; + +/* No comment provided by engineer. */ +"Your SimpleX address" = "SimpleX azonosítója"; + +/* No comment provided by engineer. */ +"Your SMP servers" = "SMP kiszolgálók"; + +/* No comment provided by engineer. */ +"Your XFTP servers" = "XFTP kiszolgálók"; + diff --git a/apps/ios/hu.lproj/SimpleX--iOS--InfoPlist.strings b/apps/ios/hu.lproj/SimpleX--iOS--InfoPlist.strings new file mode 100644 index 0000000000..8ba8ca5b41 --- /dev/null +++ b/apps/ios/hu.lproj/SimpleX--iOS--InfoPlist.strings @@ -0,0 +1,18 @@ +/* Bundle name */ +"CFBundleName" = "SimpleX"; + +/* Privacy - Camera Usage Description */ +"NSCameraUsageDescription" = "A SimpleX-nek kamera-hozzáférésre van szüksége a QR-kódok beolvasásához, hogy csatlakozhasson más felhasználókhoz és videohívásokhoz."; + +/* Privacy - Face ID Usage Description */ +"NSFaceIDUsageDescription" = "A SimpleX Face ID-t használ a helyi hitelesítéshez"; + +/* Privacy - Local Network Usage Description */ +"NSLocalNetworkUsageDescription" = "A SimpleX helyi hálózati hozzáférést használ, hogy lehetővé tegye a felhasználói csevegőprofil használatát számítógépen keresztül ugyanazon a hálózaton."; + +/* Privacy - Microphone Usage Description */ +"NSMicrophoneUsageDescription" = "A SimpleX-nek mikrofon-hozzáférésre van szüksége hang- és videohívásokhoz, valamint hangüzenetek rögzítéséhez."; + +/* Privacy - Photo Library Additions Usage Description */ +"NSPhotoLibraryAddUsageDescription" = "A SimpleX-nek hozzáférésre van szüksége a Galériához a rögzített és fogadott média mentéséhez"; + diff --git a/apps/ios/it.lproj/Localizable.strings b/apps/ios/it.lproj/Localizable.strings index 85808267e6..c105bb1fa1 100644 --- a/apps/ios/it.lproj/Localizable.strings +++ b/apps/ios/it.lproj/Localizable.strings @@ -602,13 +602,13 @@ /* No comment provided by engineer. */ "Block member?" = "Bloccare il membro?"; -/* No comment provided by engineer. */ +/* marked deleted chat item preview text */ "blocked" = "bloccato"; /* rcv group event chat item */ "blocked %@" = "ha bloccato %@"; -/* blocked chat item */ +/* marked deleted chat item preview text */ "blocked by admin" = "bloccato dall'amministratore"; /* No comment provided by engineer. */ @@ -2373,7 +2373,7 @@ /* copied message info */ "Moderated at: %@" = "Moderato il: %@"; -/* No comment provided by engineer. */ +/* marked deleted chat item preview text */ "moderated by %@" = "moderato da %@"; /* time unit */ @@ -4155,7 +4155,7 @@ "Your profile" = "Il tuo profilo"; /* No comment provided by engineer. */ -"Your profile **%@** will be shared." = "Il tuo profilo **%@** verrà condiviso."; +"Your profile **%@** will be shared." = "Verrà condiviso il tuo profilo **%@**."; /* No comment provided by engineer. */ "Your profile is stored on your device and shared only with your contacts.\nSimpleX servers cannot see your profile." = "Il tuo profilo è memorizzato sul tuo dispositivo e condiviso solo con i tuoi contatti.\nI server di SimpleX non possono vedere il tuo profilo."; diff --git a/apps/ios/ja.lproj/Localizable.strings b/apps/ios/ja.lproj/Localizable.strings index fb11e89959..49797a6ac9 100644 --- a/apps/ios/ja.lproj/Localizable.strings +++ b/apps/ios/ja.lproj/Localizable.strings @@ -106,6 +106,9 @@ /* No comment provided by engineer. */ "%@ %@" = "%@ %@"; +/* No comment provided by engineer. */ +"%@ and %@" = "%@ と %@"; + /* No comment provided by engineer. */ "%@ and %@ connected" = "%@ と %@ は接続中"; @@ -2061,7 +2064,7 @@ /* copied message info */ "Moderated at: %@" = "モデレーターによって介入済み: %@"; -/* No comment provided by engineer. */ +/* marked deleted chat item preview text */ "moderated by %@" = "%@ によってモデレートされた"; /* time unit */ diff --git a/apps/ios/nl.lproj/Localizable.strings b/apps/ios/nl.lproj/Localizable.strings index 91b208ec32..7c4f487f99 100644 --- a/apps/ios/nl.lproj/Localizable.strings +++ b/apps/ios/nl.lproj/Localizable.strings @@ -602,13 +602,13 @@ /* No comment provided by engineer. */ "Block member?" = "Lid blokkeren?"; -/* No comment provided by engineer. */ +/* marked deleted chat item preview text */ "blocked" = "geblokkeerd"; /* rcv group event chat item */ "blocked %@" = "geblokkeerd %@"; -/* blocked chat item */ +/* marked deleted chat item preview text */ "blocked by admin" = "geblokkeerd door beheerder"; /* No comment provided by engineer. */ @@ -1999,7 +1999,7 @@ "Incognito mode protects your privacy by using a new random profile for each contact." = "Incognito -modus beschermt uw privacy met behulp van een nieuw willekeurig profiel voor elk contact."; /* chat list item description */ -"incognito via contact address link" = "incognito via contactadres link"; +"incognito via contact address link" = "incognito via contact adres link"; /* chat list item description */ "incognito via group link" = "incognito via groep link"; @@ -2206,7 +2206,7 @@ "Leave group?" = "Groep verlaten?"; /* rcv group event chat item */ -"left" = "verlaten"; +"left" = "is vertrokken"; /* email subject */ "Let's talk in SimpleX Chat" = "Laten we praten in SimpleX Chat"; @@ -2373,7 +2373,7 @@ /* copied message info */ "Moderated at: %@" = "Gemodereerd op: %@"; -/* No comment provided by engineer. */ +/* marked deleted chat item preview text */ "moderated by %@" = "gemodereerd door %@"; /* time unit */ @@ -3069,7 +3069,7 @@ "Search bar accepts invitation links." = "Zoekbalk accepteert uitnodigingslinks."; /* No comment provided by engineer. */ -"Search or paste SimpleX link" = "Zoek of plak een SimpleX link"; +"Search or paste SimpleX link" = "Zoeken of plak een SimpleX link"; /* network option */ "sec" = "sec"; @@ -3789,7 +3789,7 @@ "Via browser" = "Via browser"; /* chat list item description */ -"via contact address link" = "via contactadres link"; +"via contact address link" = "via contact adres link"; /* chat list item description */ "via group link" = "via groep link"; diff --git a/apps/ios/pl.lproj/Localizable.strings b/apps/ios/pl.lproj/Localizable.strings index bb07d7c01a..bbacb49fb3 100644 --- a/apps/ios/pl.lproj/Localizable.strings +++ b/apps/ios/pl.lproj/Localizable.strings @@ -602,13 +602,13 @@ /* No comment provided by engineer. */ "Block member?" = "Zablokować członka?"; -/* No comment provided by engineer. */ +/* marked deleted chat item preview text */ "blocked" = "zablokowany"; /* rcv group event chat item */ "blocked %@" = "zablokowany %@"; -/* blocked chat item */ +/* marked deleted chat item preview text */ "blocked by admin" = "zablokowany przez admina"; /* No comment provided by engineer. */ @@ -2373,7 +2373,7 @@ /* copied message info */ "Moderated at: %@" = "Moderowany o: %@"; -/* No comment provided by engineer. */ +/* marked deleted chat item preview text */ "moderated by %@" = "moderowany przez %@"; /* time unit */ diff --git a/apps/ios/ru.lproj/Localizable.strings b/apps/ios/ru.lproj/Localizable.strings index 871407ee3f..da23c04e10 100644 --- a/apps/ios/ru.lproj/Localizable.strings +++ b/apps/ios/ru.lproj/Localizable.strings @@ -602,13 +602,13 @@ /* No comment provided by engineer. */ "Block member?" = "Заблокировать члена группы?"; -/* No comment provided by engineer. */ +/* marked deleted chat item preview text */ "blocked" = "заблокировано"; /* rcv group event chat item */ "blocked %@" = "%@ заблокирован"; -/* blocked chat item */ +/* marked deleted chat item preview text */ "blocked by admin" = "заблокировано администратором"; /* No comment provided by engineer. */ @@ -2373,7 +2373,7 @@ /* copied message info */ "Moderated at: %@" = "Модерировано: %@"; -/* No comment provided by engineer. */ +/* marked deleted chat item preview text */ "moderated by %@" = "удалено %@"; /* time unit */ diff --git a/apps/ios/th.lproj/Localizable.strings b/apps/ios/th.lproj/Localizable.strings index 686c1a58a0..b20c2b4b60 100644 --- a/apps/ios/th.lproj/Localizable.strings +++ b/apps/ios/th.lproj/Localizable.strings @@ -1989,7 +1989,7 @@ /* copied message info */ "Moderated at: %@" = "กลั่นกรองที่: %@"; -/* No comment provided by engineer. */ +/* marked deleted chat item preview text */ "moderated by %@" = "กลั่นกรองโดย %@"; /* time unit */ diff --git a/apps/ios/tr.lproj/Localizable.strings b/apps/ios/tr.lproj/Localizable.strings index 75046c08f4..8f7eea47c5 100644 --- a/apps/ios/tr.lproj/Localizable.strings +++ b/apps/ios/tr.lproj/Localizable.strings @@ -200,13 +200,16 @@ "%lld members" = "%lld üyeler"; /* No comment provided by engineer. */ -"%lld messages blocked" = "%lld mesajlar engellendi"; +"%lld messages blocked" = "%lld mesaj engellendi"; /* No comment provided by engineer. */ -"%lld messages marked deleted" = "%lld mesajlar silinmiş olarak işaretlendi"; +"%lld messages blocked by admin" = "%lld mesaj yönetici tarafından engellendi"; /* No comment provided by engineer. */ -"%lld messages moderated by %@" = "%lld mesajları %@ tarafından yönetildi"; +"%lld messages marked deleted" = "%lld mesaj silinmiş olarak işaretlendi"; + +/* No comment provided by engineer. */ +"%lld messages moderated by %@" = "%lld mesaj %@ tarafından yönetildi"; /* No comment provided by engineer. */ "%lld minutes" = "%lld dakika"; @@ -254,7 +257,7 @@ "<p>Hi!</p>\n<p><a href=\"%@\">Connect to me via SimpleX Chat</a></p>" = "<p>Merhaba!</p>\n<p><a href=\"%@\">SimpleX Chat ile bana bağlanın</a></p>"; /* No comment provided by engineer. */ -"~strike~" = "\\~strike~"; +"~strike~" = "\\~çizik~"; /* time to disappear */ "0 sec" = "0 saniye"; @@ -378,7 +381,7 @@ "Admins can create the links to join groups." = "Yöneticiler gruplara katılmak için bağlantılar oluşturabilir."; /* No comment provided by engineer. */ -"Advanced network settings" = "GGelişmiş ağ ayarları"; +"Advanced network settings" = "Gelişmiş ağ ayarları"; /* chat item text */ "agreeing encryption for %@…" = "%@ için şifreleme kabul ediliyor…"; @@ -398,6 +401,9 @@ /* No comment provided by engineer. */ "All group members will remain connected." = "Tüm grup üyeleri bağlı kalacaktır."; +/* No comment provided by engineer. */ +"All messages will be deleted - this cannot be undone!" = "Tüm mesajlar silinecektir - bu geri alınamaz!"; + /* No comment provided by engineer. */ "All messages will be deleted - this cannot be undone! The messages will be deleted ONLY for you." = "Tüm mesajlar silinecektir. Bu, geri alınamaz! Mesajlar, YALNIZCA senin için silinecektir."; @@ -419,6 +425,9 @@ /* No comment provided by engineer. */ "Allow disappearing messages only if your contact allows it to you." = "Eğer kişide izin verirse kaybolan mesajlara izin ver."; +/* No comment provided by engineer. */ +"Allow irreversible message deletion only if your contact allows it to you. (24 hours)" = "Konuştuğun kişi, kalıcı olarak silinebilen mesajlara izin veriyorsa sen de ver. (24 saat içinde)"; + /* No comment provided by engineer. */ "Allow message reactions only if your contact allows them." = "Yalnızca kişin mesaj tepkilerine izin veriyorsa sen de ver."; @@ -431,6 +440,9 @@ /* No comment provided by engineer. */ "Allow sending disappearing messages." = "Kendiliğinden yok olan mesajlar göndermeye izin ver."; +/* No comment provided by engineer. */ +"Allow to irreversibly delete sent messages. (24 hours)" = "Gönderilen mesajların kalıcı olarak silinmesine izin ver. (24 saat içinde)"; + /* No comment provided by engineer. */ "Allow to send files and media." = "Dosya ve medya göndermeye izin ver."; @@ -449,6 +461,9 @@ /* No comment provided by engineer. */ "Allow your contacts to call you." = "Kişilerinin seni aramasına izin ver."; +/* No comment provided by engineer. */ +"Allow your contacts to irreversibly delete sent messages. (24 hours)" = "Kişilerinin gönderilen mesajları kalıcı olarak silmesine izin ver. (24 saat içinde)"; + /* No comment provided by engineer. */ "Allow your contacts to send disappearing messages." = "Kişilerinizin kaybolan mesajlar göndermesine izin verin."; @@ -572,6 +587,9 @@ /* No comment provided by engineer. */ "Block" = "Engelle"; +/* No comment provided by engineer. */ +"Block for all" = "Herkes için engelle"; + /* No comment provided by engineer. */ "Block group members" = "Grup üyelerini engelle"; @@ -579,17 +597,32 @@ "Block member" = "Üyeyi engelle"; /* No comment provided by engineer. */ -"Block member?" = "Üyeyi engelle?"; +"Block member for all?" = "Üye herkes için engellensin mi?"; /* No comment provided by engineer. */ +"Block member?" = "Üyeyi engelle?"; + +/* marked deleted chat item preview text */ "blocked" = "engellendi"; +/* rcv group event chat item */ +"blocked %@" = "engellendi %@"; + +/* marked deleted chat item preview text */ +"blocked by admin" = "yönetici tarafından engellendi"; + +/* No comment provided by engineer. */ +"Blocked by admin" = "Yönetici tarafından engellendi"; + /* No comment provided by engineer. */ "bold" = "kalın"; /* No comment provided by engineer. */ "Both you and your contact can add message reactions." = "Sen ve konuştuğun kişi mesaj tepkileri ekleyebilir."; +/* No comment provided by engineer. */ +"Both you and your contact can irreversibly delete sent messages. (24 hours)" = "Konuştuğun kişi ve sen mesajları kalıcı olarak silebilirsiniz. (24 saat içinde)"; + /* No comment provided by engineer. */ "Both you and your contact can make calls." = "Sen ve konuştuğun kişi aramalar yapabilir."; @@ -738,6 +771,9 @@ /* No comment provided by engineer. */ "Clear conversation?" = "Sohbet temizlensin mi?"; +/* No comment provided by engineer. */ +"Clear private notes?" = "Gizli notlar temizlensin mi?"; + /* No comment provided by engineer. */ "Clear verification" = "Doğrulamayı temizle"; @@ -876,6 +912,9 @@ /* connection information */ "connection:%@" = "bağlantı:%@"; +/* profile update event chat item */ +"contact %@ changed to %@" = "%1$@ kişisi %2$@ olarak değişti"; + /* No comment provided by engineer. */ "Contact allows" = "Kişi izin veriyor"; @@ -960,6 +999,12 @@ /* No comment provided by engineer. */ "Create your profile" = "Profilini oluştur"; +/* No comment provided by engineer. */ +"Created at" = "Şurada oluşturuldu"; + +/* copied message info */ +"Created at: %@" = "Şurada oluşturuldu: %@"; + /* No comment provided by engineer. */ "Created on %@" = "%@ de oluşturuldu"; @@ -1066,7 +1111,7 @@ "Delete" = "Sil"; /* No comment provided by engineer. */ -"Delete %lld messages?" = "%lld mesajları silinsin mi?"; +"Delete %lld messages?" = "%lld mesaj silinsin mi?"; /* No comment provided by engineer. */ "Delete address" = "Adresi sil"; @@ -1284,6 +1329,9 @@ /* No comment provided by engineer. */ "Do it later" = "Sonra yap"; +/* No comment provided by engineer. */ +"Do not send history to new members." = "Yeni üyelere geçmişi gönderme."; + /* No comment provided by engineer. */ "Do NOT use SimpleX for emergency calls." = "Acil aramalar için SimpleX'i KULLANMAYIN."; @@ -1509,6 +1557,9 @@ /* No comment provided by engineer. */ "Error creating member contact" = "Kişi iletişimi oluşturulurken hata oluştu"; +/* No comment provided by engineer. */ +"Error creating message" = "Mesaj oluşturulurken hata"; + /* No comment provided by engineer. */ "Error creating profile!" = "Profil oluşturulurken hata oluştu!"; @@ -1642,7 +1693,7 @@ "Even when disabled in the conversation." = "Konuşma sırasında devre dışı bırakılsa bile."; /* No comment provided by engineer. */ -"event happened" = "etkinliği yaşandı"; +"event happened" = "etkinlik yaşandı"; /* No comment provided by engineer. */ "Exit without saving" = "Kaydetmeden çık"; @@ -1794,6 +1845,9 @@ /* No comment provided by engineer. */ "Group members can add message reactions." = "Grup üyeleri mesaj tepkileri ekleyebilir."; +/* No comment provided by engineer. */ +"Group members can irreversibly delete sent messages. (24 hours)" = "Grup üyeleri, gönderilen mesajları kalıcı olarak silebilir. (24 saat içinde)"; + /* No comment provided by engineer. */ "Group members can send direct messages." = "Grup üyeleri doğrudan mesajlar gönderebilir."; @@ -1860,6 +1914,9 @@ /* No comment provided by engineer. */ "History" = "Geçmiş"; +/* No comment provided by engineer. */ +"History is not sent to new members." = "Yeni üyelere geçmiş gönderilmedi."; + /* time unit */ "hours" = "saat"; @@ -1917,6 +1974,9 @@ /* No comment provided by engineer. */ "Import database" = "Veritabanını içe aktar"; +/* No comment provided by engineer. */ +"Improved message delivery" = "İyileştirilmiş mesaj iletimi"; + /* No comment provided by engineer. */ "Improved privacy and security" = "Geliştirilmiş gizlilik ve güvenlik"; @@ -2001,6 +2061,9 @@ /* invalid chat item */ "invalid data" = "geçersiz veri"; +/* No comment provided by engineer. */ +"Invalid display name!" = "Geçersiz görünen ad!"; + /* No comment provided by engineer. */ "Invalid link" = "Geçersiz bağlantı"; @@ -2038,7 +2101,7 @@ "invited" = "davet edildi"; /* rcv group event chat item */ -"invited %@" = "%@ a davet edildi"; +"invited %@" = "%@ davet edildi"; /* chat list item title */ "invited to connect" = "bağlanmaya davet edildi"; @@ -2091,6 +2154,9 @@ /* No comment provided by engineer. */ "Join group" = "Gruba katıl"; +/* No comment provided by engineer. */ +"Join group conversations" = "Grup sohbetlerine katıl"; + /* No comment provided by engineer. */ "Join group?" = "Gruba katılınsın mı?"; @@ -2226,6 +2292,9 @@ /* No comment provided by engineer. */ "Member" = "Kişi"; +/* profile update event chat item */ +"member %@ changed to %@" = "kişi %1$@ , %2$@ olarak değişti"; + /* rcv group event chat item */ "member connected" = "bağlanıldı"; @@ -2304,7 +2373,7 @@ /* copied message info */ "Moderated at: %@" = "%@ de yönetildi"; -/* No comment provided by engineer. */ +/* marked deleted chat item preview text */ "moderated by %@" = "%@ tarafından yönetilmekte"; /* time unit */ @@ -2492,6 +2561,9 @@ /* No comment provided by engineer. */ "Only you can add message reactions." = "Sadece siz mesaj tepkileri ekleyebilirsiniz."; +/* No comment provided by engineer. */ +"Only you can irreversibly delete messages (your contact can mark them for deletion). (24 hours)" = "Mesajları yalnızca siz geri döndürülemez şekilde silebilirsiniz (kişiniz bunları silinmek üzere işaretleyebilir). (24 saat içinde)"; + /* No comment provided by engineer. */ "Only you can make calls." = "Sadece sen aramalar yapabilirsin."; @@ -2504,6 +2576,9 @@ /* No comment provided by engineer. */ "Only your contact can add message reactions." = "Sadece karşıdaki kişi mesaj tepkileri ekleyebilir."; +/* No comment provided by engineer. */ +"Only your contact can irreversibly delete messages (you can mark them for deletion). (24 hours)" = "Yalnızca kişiniz mesajları geri alınamaz şekilde silebilir (silinmeleri için işaretleyebilirsiniz). (24 saat içinde)"; + /* No comment provided by engineer. */ "Only your contact can make calls." = "Sadece karşıdaki kişi aramalar yapabilir."; @@ -2564,12 +2639,18 @@ /* No comment provided by engineer. */ "Password to show" = "Gösterilecek şifre"; +/* past/unknown group member */ +"Past member %@" = "Geçmiş üye %@"; + /* No comment provided by engineer. */ "Paste desktop address" = "Bilgisayar adresini yapıştır"; /* No comment provided by engineer. */ "Paste image" = "Fotoğraf yapıştır"; +/* No comment provided by engineer. */ +"Paste link to connect!" = "Bağlanmak için bağlantıyı yapıştır!"; + /* No comment provided by engineer. */ "Paste the link you received" = "Aldığın bağlantıyı yapıştır"; @@ -2657,6 +2738,9 @@ /* No comment provided by engineer. */ "Private filenames" = "Gizli dosya adları"; +/* name of notes to self */ +"Private notes" = "Gizli notlar"; + /* No comment provided by engineer. */ "Profile and server connections" = "Profil ve sunucu bağlantıları"; @@ -2771,6 +2855,9 @@ /* No comment provided by engineer. */ "Receiving via" = "Aracılığıyla alınıyor"; +/* No comment provided by engineer. */ +"Recent history and improved [directory bot](simplex:/contact#/?v=1-4&smp=smp%3A%2F%2Fu2dS9sG8nMNURyZwqASV4yROM28Er0luVTx5X1CsMrU%3D%40smp4.simplex.im%2FeXSPwqTkKyDO3px4fLf1wx3MvPdjdLW3%23%2F%3Fv%3D1-2%26dh%3DMCowBQYDK2VuAyEAaiv6MkMH44L2TcYrt_CsX3ZvM11WgbMEUn0hkIKTOho%253D%26srv%3Do5vmywmrnaxalvz6wi3zicyftgio6psuvyniis6gco6bp6ekl4cqj4id.onion)." = "Yakın geçmiş ve geliştirilmiş [dizin botu](simplex:/contact#/?v=1-4&smp=smp%3A%2F%2Fu2dS9sG8nMNURyZwqASV4yROM28Er0luVTx5X1CsMrU%3D%40smp4.simplex. im%2FeXSPwqTkKyDO3px4fLf1wx3MvPdjdLW3%23%2F%3Fv%3D1-2%26dh%3DMCowBQYDK2VuAyEAaiv6MkMH44L2TcYrt_CsX3ZvM11WgbMEUn0hkIKTOho%253D%26srv%3Do5vmywmrnaxalvz6wi3zicyftgio6psuvyniis6gco6bp6ekl4cqj4id.onion)."; + /* No comment provided by engineer. */ "Recipients see updates as you type them." = "Alıcılar yazdığına göre güncellemeleri görecektir."; @@ -2825,6 +2912,12 @@ /* rcv group event chat item */ "removed %@" = "%@ kaldırıldı"; +/* profile update event chat item */ +"removed contact address" = "kişi adresi silindi"; + +/* profile update event chat item */ +"removed profile picture" = "profil fotoğrafı silindi"; + /* rcv group event chat item */ "removed you" = "sen kaldırıldın"; @@ -2948,6 +3041,9 @@ /* No comment provided by engineer. */ "Save welcome message?" = "Hoşgeldin mesajı kaydedilsin mi?"; +/* message info title */ +"Saved message" = "Kaydedilmiş mesaj"; + /* No comment provided by engineer. */ "Saved WebRTC ICE servers will be removed" = "Kaydedilmiş WebRTC ICE sunucuları silinecek"; @@ -2969,6 +3065,9 @@ /* No comment provided by engineer. */ "Search" = "Ara"; +/* No comment provided by engineer. */ +"Search bar accepts invitation links." = "Arama çubuğu davet bağlantılarını kabul eder."; + /* No comment provided by engineer. */ "Search or paste SimpleX link" = "Ara veya SimpleX bağlantısını yapıştır"; @@ -3050,6 +3149,9 @@ /* No comment provided by engineer. */ "Send them from gallery or custom keyboards." = "Bunları galeriden veya özel klavyelerden gönder."; +/* No comment provided by engineer. */ +"Send up to 100 last messages to new members." = "Yeni üyelere 100 adete kadar son mesajları gönderin."; + /* No comment provided by engineer. */ "Sender cancelled file transfer." = "Gönderici dosya gönderimini iptal etti."; @@ -3122,6 +3224,12 @@ /* No comment provided by engineer. */ "Set it instead of system authentication." = "Sistem kimlik doğrulaması yerine ayarla."; +/* profile update event chat item */ +"set new contact address" = "yeni kişi adresi ayarla"; + +/* profile update event chat item */ +"set new profile picture" = "yeni profil fotoğrafı ayarla"; + /* No comment provided by engineer. */ "Set passcode" = "Şifre ayarla"; @@ -3273,7 +3381,7 @@ "Stop SimpleX" = "SimpleX'i durdur"; /* No comment provided by engineer. */ -"strike" = "grev"; +"strike" = "çizik"; /* No comment provided by engineer. */ "Submit" = "Gönder"; @@ -3428,6 +3536,9 @@ /* No comment provided by engineer. */ "This device name" = "Bu cihazın ismi"; +/* No comment provided by engineer. */ +"This display name is invalid. Please choose another name." = "Görünen ad geçerli değil.\n Lütfen başka bir ad seç."; + /* No comment provided by engineer. */ "This group has over %lld members, delivery receipts are not sent." = "Bu grubun %lld den fazla üyesi var,görüldü bilgisi gönderilmedi."; @@ -3488,6 +3599,9 @@ /* No comment provided by engineer. */ "Trying to connect to the server used to receive messages from this contact." = "Bu kişiden mesaj almak için kullanılan sunucuya bağlanılmaya çalışılıyor."; +/* No comment provided by engineer. */ +"Turkish interface" = "Türkçe arayüz"; + /* No comment provided by engineer. */ "Turn off" = "Kapat"; @@ -3500,12 +3614,21 @@ /* No comment provided by engineer. */ "Unblock" = "Engeli kaldır"; +/* No comment provided by engineer. */ +"Unblock for all" = "Herkes için engeli kaldır"; + /* No comment provided by engineer. */ "Unblock member" = "Üyenin engelini kaldır"; +/* No comment provided by engineer. */ +"Unblock member for all?" = "Üyenin engeli herkes için kaldırılsın mı?"; + /* No comment provided by engineer. */ "Unblock member?" = "Üyenin engeli kaldırılsın mı?"; +/* rcv group event chat item */ +"unblocked %@" = "engeli kaldırıldı %@"; + /* item status description */ "Unexpected error: %@" = "Beklenmeyen hata: %@"; @@ -3539,6 +3662,9 @@ /* No comment provided by engineer. */ "Unknown error" = "Bilinmeyen hata"; +/* No comment provided by engineer. */ +"unknown status" = "bilinmeyen durum"; + /* No comment provided by engineer. */ "Unless you use iOS call interface, enable Do Not Disturb mode to avoid interruptions." = "iOS arama arayüzünü kullanmadığınız sürece, kesintileri önlemek için Rahatsız Etmeyin modunu etkinleştirin."; @@ -3563,6 +3689,9 @@ /* No comment provided by engineer. */ "Unread" = "Okunmamış"; +/* No comment provided by engineer. */ +"Up to 100 last messages are sent to new members." = "Yeni üyelere 100e kadar en son mesajlar gönderildi."; + /* No comment provided by engineer. */ "Update" = "Güncelle"; @@ -3581,6 +3710,9 @@ /* rcv group event chat item */ "updated group profile" = "grup profili güncellendi"; +/* profile update event chat item */ +"updated profile" = "güncellenmiş profil"; + /* No comment provided by engineer. */ "Updating settings will re-connect the client to all servers." = "Ayarların güncellenmesi, istemciyi tüm sunuculara yeniden bağlayacaktır."; @@ -3689,6 +3821,9 @@ /* No comment provided by engineer. */ "View security code" = "Güvenlik kodunu görüntüle"; +/* chat feature */ +"Visible history" = "Görünür geçmiş"; + /* No comment provided by engineer. */ "Voice message…" = "Sesli mesaj…"; @@ -3752,9 +3887,15 @@ /* No comment provided by engineer. */ "When you share an incognito profile with somebody, this profile will be used for the groups they invite you to." = "Biriyle gizli bir profil paylaştığınızda, bu profil sizi davet ettikleri gruplar için kullanılacaktır."; +/* No comment provided by engineer. */ +"With encrypted files and media." = "Şifrelenmiş dosyalar ve medya ile birlikte."; + /* No comment provided by engineer. */ "With optional welcome message." = "İsteğe bağlı karşılama mesajı ile."; +/* No comment provided by engineer. */ +"With reduced battery usage." = "Azaltılmış pil kullanımı ile birlikte."; + /* No comment provided by engineer. */ "Wrong database passphrase" = "Yanlış veritabanı parolası"; @@ -3815,6 +3956,9 @@ /* No comment provided by engineer. */ "you are observer" = "gözlemcisiniz"; +/* snd group event chat item */ +"you blocked %@" = "engelledin %@"; + /* No comment provided by engineer. */ "You can accept calls from lock screen, without device and app authentication." = "Cihaz ve uygulama kimlik doğrulaması olmadan kilit ekranından çağrı kabul edebilirsiniz."; @@ -3926,6 +4070,9 @@ /* chat list item description */ "you shared one-time link incognito" = "tek kullanımlık link paylaştınız gizli"; +/* snd group event chat item */ +"you unblocked %@" = "engelini kaldırdın %@"; + /* No comment provided by engineer. */ "You will be connected to group when the group host's device is online, please wait or check later!" = "Grup sahibinin cihazı çevrimiçi olduğunda gruba bağlanacaksınız, lütfen bekleyin veya daha sonra kontrol edin!"; diff --git a/apps/ios/uk.lproj/Localizable.strings b/apps/ios/uk.lproj/Localizable.strings index be912d785d..37c341f885 100644 --- a/apps/ios/uk.lproj/Localizable.strings +++ b/apps/ios/uk.lproj/Localizable.strings @@ -64,9 +64,15 @@ /* No comment provided by engineer. */ "[Star on GitHub](https://github.com/simplex-chat/simplex-chat)" = "[Зірка на GitHub](https://github.com/simplex-chat/simplex-chat)"; +/* No comment provided by engineer. */ +"**Add contact**: to create a new invitation link, or connect via a link you received." = "**Додати контакт**: створити нове посилання-запрошення або підключитися за отриманим посиланням."; + /* No comment provided by engineer. */ "**Add new contact**: to create your one-time QR Code for your contact." = "**Додати новий контакт**: щоб створити одноразовий QR-код або посилання для свого контакту."; +/* No comment provided by engineer. */ +"**Create group**: to create a new group." = "**Створити групу**: створити нову групу."; + /* No comment provided by engineer. */ "**e2e encrypted** audio call" = "**e2e encrypted** аудіодзвінок"; @@ -196,6 +202,9 @@ /* No comment provided by engineer. */ "%lld messages blocked" = "%lld повідомлень заблоковано"; +/* No comment provided by engineer. */ +"%lld messages blocked by admin" = "%lld повідомлень заблоковано адміністратором"; + /* No comment provided by engineer. */ "%lld messages marked deleted" = "%lld повідомлень позначено як видалені"; @@ -338,6 +347,9 @@ /* No comment provided by engineer. */ "Add address to your profile, so that your contacts can share it with other people. Profile update will be sent to your contacts." = "Додайте адресу до свого профілю, щоб ваші контакти могли поділитися нею з іншими людьми. Повідомлення про оновлення профілю буде надіслано вашим контактам."; +/* No comment provided by engineer. */ +"Add contact" = "Додати контакт"; + /* No comment provided by engineer. */ "Add preset servers" = "Додавання попередньо встановлених серверів"; @@ -389,6 +401,9 @@ /* No comment provided by engineer. */ "All group members will remain connected." = "Всі учасники групи залишаться на зв'язку."; +/* No comment provided by engineer. */ +"All messages will be deleted - this cannot be undone!" = "Усі повідомлення будуть видалені - цю дію не можна скасувати!"; + /* No comment provided by engineer. */ "All messages will be deleted - this cannot be undone! The messages will be deleted ONLY for you." = "Всі повідомлення будуть видалені - це неможливо скасувати! Повідомлення будуть видалені ТІЛЬКИ для вас."; @@ -566,15 +581,24 @@ /* No comment provided by engineer. */ "Block" = "Блокувати"; +/* No comment provided by engineer. */ +"Block for all" = "Заблокувати для всіх"; + /* No comment provided by engineer. */ "Block group members" = "Учасники групи блокування"; /* No comment provided by engineer. */ "Block member" = "Заблокувати користувача"; +/* No comment provided by engineer. */ +"Block member for all?" = "Заблокувати учасника для всіх?"; + /* No comment provided by engineer. */ "Block member?" = "Заблокувати користувача?"; +/* No comment provided by engineer. */ +"Blocked by admin" = "Заблокований адміністратором"; + /* No comment provided by engineer. */ "bold" = "жирний"; @@ -614,6 +638,9 @@ /* No comment provided by engineer. */ "Calls" = "Дзвінки"; +/* No comment provided by engineer. */ +"Camera not available" = "Камера недоступна"; + /* No comment provided by engineer. */ "Can't invite contact!" = "Не вдається запросити контакт!"; @@ -699,6 +726,9 @@ /* No comment provided by engineer. */ "Chat is stopped" = "Чат зупинено"; +/* No comment provided by engineer. */ +"Chat is stopped. If you already used this database on another device, you should transfer it back before starting chat." = "Чат зупинено. Якщо ви вже використовували цю базу даних на іншому пристрої, перенесіть її назад перед запуском чату."; + /* No comment provided by engineer. */ "Chat preferences" = "Налаштування чату"; @@ -2127,7 +2157,7 @@ /* copied message info */ "Moderated at: %@" = "Модерується за: %@"; -/* No comment provided by engineer. */ +/* marked deleted chat item preview text */ "moderated by %@" = "модерується %@"; /* time unit */ diff --git a/apps/ios/zh-Hans.lproj/Localizable.strings b/apps/ios/zh-Hans.lproj/Localizable.strings index 8ed4cb7c7e..8e6458dce6 100644 --- a/apps/ios/zh-Hans.lproj/Localizable.strings +++ b/apps/ios/zh-Hans.lproj/Localizable.strings @@ -25,6 +25,9 @@ /* No comment provided by engineer. */ "- more stable message delivery.\n- a bit better groups.\n- and more!" = "- 更稳定的传输!\n- 更好的社群!\n- 以及更多!"; +/* No comment provided by engineer. */ +"- optionally notify deleted contacts.\n- profile names with spaces.\n- and more!" = "- 可选择通知已删除的联系人。\n- 带空格的个人资料名称。\n- 以及更多!"; + /* No comment provided by engineer. */ "- voice messages up to 5 minutes.\n- custom time to disappear.\n- editing history." = "- 语音消息最长5分钟。\n- 自定义限时消息。\n- 编辑消息历史。"; @@ -109,12 +112,18 @@ /* No comment provided by engineer. */ "%@ %@" = "%@ %@"; +/* No comment provided by engineer. */ +"%@ and %@" = "%@ 和 %@"; + /* No comment provided by engineer. */ "%@ and %@ connected" = "%@ 和%@ 以建立连接"; /* copied message info, <sender> at <time> */ "%@ at %@:" = "@ %2$@:"; +/* No comment provided by engineer. */ +"%@ connected" = "%@ 已连接"; + /* notification title */ "%@ is connected!" = "%@ 已连接!"; @@ -130,6 +139,9 @@ /* notification title */ "%@ wants to connect!" = "%@ 要连接!"; +/* No comment provided by engineer. */ +"%@, %@ and %lld members" = "%@, %@ 和 %lld 成员"; + /* No comment provided by engineer. */ "%@, %@ and %lld other members connected" = "%@, %@ 和 %lld 个成员"; @@ -169,9 +181,15 @@ /* No comment provided by engineer. */ "%lld file(s) with total size of %@" = "%lld 总文件大小 %@"; +/* No comment provided by engineer. */ +"%lld group events" = "%lld 群组事件"; + /* No comment provided by engineer. */ "%lld members" = "%lld 成员"; +/* No comment provided by engineer. */ +"%lld messages blocked" = "%lld 条消息已屏蔽"; + /* No comment provided by engineer. */ "%lld minutes" = "%lld 分钟"; @@ -305,6 +323,9 @@ /* No comment provided by engineer. */ "Add address to your profile, so that your contacts can share it with other people. Profile update will be sent to your contacts." = "将地址添加到您的个人资料,以便您的联系人可以与其他人共享。个人资料更新将发送给您的联系人。"; +/* No comment provided by engineer. */ +"Add contact" = "添加联系人"; + /* No comment provided by engineer. */ "Add preset servers" = "添加预设服务器"; @@ -356,6 +377,9 @@ /* No comment provided by engineer. */ "All group members will remain connected." = "所有群组成员将保持连接。"; +/* No comment provided by engineer. */ +"All messages will be deleted - this cannot be undone!" = "所有消息都将被删除 - 这无法被撤销!"; + /* No comment provided by engineer. */ "All messages will be deleted - this cannot be undone! The messages will be deleted ONLY for you." = "所有聊天记录和消息将被删除——这一行为无法撤销!只有您的消息会被删除。"; @@ -422,6 +446,12 @@ /* No comment provided by engineer. */ "Already connected?" = "已连接?"; +/* No comment provided by engineer. */ +"Already connecting!" = "已经在连接了!"; + +/* No comment provided by engineer. */ +"Already joining the group!" = "已经加入了该群组!"; + /* pref value */ "always" = "始终"; @@ -488,6 +518,9 @@ /* No comment provided by engineer. */ "Authentication unavailable" = "身份验证不可用"; +/* member role */ +"author" = "作者"; + /* No comment provided by engineer. */ "Auto-accept" = "自动接受"; @@ -500,6 +533,9 @@ /* No comment provided by engineer. */ "Back" = "返回"; +/* No comment provided by engineer. */ +"Bad desktop address" = "糟糕的桌面地址"; + /* integrity error chat item */ "bad message hash" = "错误消息散列"; @@ -512,9 +548,42 @@ /* No comment provided by engineer. */ "Bad message ID" = "错误消息 ID"; +/* No comment provided by engineer. */ +"Better groups" = "更佳的群组"; + /* No comment provided by engineer. */ "Better messages" = "更好的消息"; +/* No comment provided by engineer. */ +"Block" = "封禁"; + +/* No comment provided by engineer. */ +"Block for all" = "为所有人封禁"; + +/* No comment provided by engineer. */ +"Block group members" = "屏蔽群组成员"; + +/* No comment provided by engineer. */ +"Block member" = "封禁成员"; + +/* No comment provided by engineer. */ +"Block member for all?" = "为所有其他成员封禁该成员?"; + +/* No comment provided by engineer. */ +"Block member?" = "封禁成员吗?"; + +/* marked deleted chat item preview text */ +"blocked" = "已封禁"; + +/* rcv group event chat item */ +"blocked %@" = "已封禁 %@"; + +/* marked deleted chat item preview text */ +"blocked by admin" = "由管理员封禁"; + +/* No comment provided by engineer. */ +"Blocked by admin" = "由管理员封禁"; + /* No comment provided by engineer. */ "bold" = "加粗"; @@ -554,6 +623,9 @@ /* No comment provided by engineer. */ "Calls" = "通话"; +/* No comment provided by engineer. */ +"Camera not available" = "相机不可用"; + /* No comment provided by engineer. */ "Can't invite contact!" = "无法邀请联系人!"; @@ -639,6 +711,9 @@ /* No comment provided by engineer. */ "Chat is stopped" = "聊天已停止"; +/* No comment provided by engineer. */ +"Chat is stopped. If you already used this database on another device, you should transfer it back before starting chat." = "聊天已停止。如果你已经在另一台设备商使用过此数据库,你应该在启动聊天前将数据库传输回来。"; + /* No comment provided by engineer. */ "Chat preferences" = "聊天偏好设置"; @@ -666,6 +741,9 @@ /* No comment provided by engineer. */ "Clear conversation?" = "清除对话吗?"; +/* No comment provided by engineer. */ +"Clear private notes?" = "清除私密笔记?"; + /* No comment provided by engineer. */ "Clear verification" = "清除验证"; @@ -705,12 +783,21 @@ /* server test step */ "Connect" = "连接"; +/* No comment provided by engineer. */ +"Connect automatically" = "自动连接"; + /* No comment provided by engineer. */ "Connect incognito" = "在隐身状态下连接"; +/* No comment provided by engineer. */ +"Connect to desktop" = "连接到桌面"; + /* No comment provided by engineer. */ "connect to SimpleX Chat developers." = "连接到 SimpleX Chat 开发者。"; +/* No comment provided by engineer. */ +"Connect to yourself?" = "连接到你自己?"; + /* No comment provided by engineer. */ "Connect via link" = "通过链接连接"; @@ -720,9 +807,15 @@ /* No comment provided by engineer. */ "connected" = "已连接"; +/* No comment provided by engineer. */ +"Connected desktop" = "已连接的桌面"; + /* rcv group event chat item */ "connected directly" = "已直连"; +/* No comment provided by engineer. */ +"Connected to desktop" = "已连接到桌面"; + /* No comment provided by engineer. */ "connecting" = "连接中"; @@ -747,6 +840,9 @@ /* No comment provided by engineer. */ "Connecting server… (error: %@)" = "连接服务器中……(错误:%@)"; +/* No comment provided by engineer. */ +"Connecting to desktop" = "正连接到桌面"; + /* chat list item title */ "connecting…" = "连接中……"; @@ -765,6 +861,9 @@ /* No comment provided by engineer. */ "Connection request sent!" = "已发送连接请求!"; +/* No comment provided by engineer. */ +"Connection terminated" = "连接被终止"; + /* No comment provided by engineer. */ "Connection timeout" = "连接超时"; @@ -816,12 +915,18 @@ /* No comment provided by engineer. */ "Create" = "创建"; +/* No comment provided by engineer. */ +"Create a group using a random profile." = "使用随机身份创建群组"; + /* No comment provided by engineer. */ "Create an address to let people connect with you." = "创建一个地址,让人们与您联系。"; /* server test step */ "Create file" = "创建文件"; +/* No comment provided by engineer. */ +"Create group" = "建群"; + /* No comment provided by engineer. */ "Create group link" = "创建群组链接"; @@ -831,6 +936,9 @@ /* No comment provided by engineer. */ "Create new profile in [desktop app](https://simplex.chat/downloads/). 💻" = "在[桌面应用程序](https://simplex.chat/downloads/)中创建新的个人资料。 💻"; +/* No comment provided by engineer. */ +"Create profile" = "创建个人资料"; + /* server test step */ "Create queue" = "创建队列"; @@ -843,9 +951,15 @@ /* No comment provided by engineer. */ "Create your profile" = "创建您的资料"; +/* No comment provided by engineer. */ +"Created at" = "创建于"; + /* No comment provided by engineer. */ "Created on %@" = "创建于 %@"; +/* No comment provided by engineer. */ +"Creating link…" = "创建链接中…"; + /* No comment provided by engineer. */ "creator" = "创建者"; @@ -957,6 +1071,9 @@ /* No comment provided by engineer. */ "Delete all files" = "删除所有文件"; +/* No comment provided by engineer. */ +"Delete and notify contact" = "删除并通知联系人"; + /* No comment provided by engineer. */ "Delete archive" = "删除档案"; @@ -1053,6 +1170,9 @@ /* copied message info */ "Deleted at: %@" = "已删除于:%@"; +/* rcv direct event chat item */ +"deleted contact" = "已删除联系人"; + /* rcv group event chat item */ "deleted group" = "已删除群组"; @@ -1068,6 +1188,12 @@ /* No comment provided by engineer. */ "Description" = "描述"; +/* No comment provided by engineer. */ +"Desktop address" = "桌面地址"; + +/* No comment provided by engineer. */ +"Desktop devices" = "桌面设备"; + /* No comment provided by engineer. */ "Develop" = "开发"; @@ -1131,12 +1257,21 @@ /* server test step */ "Disconnect" = "断开连接"; +/* No comment provided by engineer. */ +"Disconnect desktop?" = "断开桌面连接?"; + /* No comment provided by engineer. */ "Discover and join groups" = "发现和加入群组"; +/* No comment provided by engineer. */ +"Discover via local network" = "通过本地网络发现"; + /* No comment provided by engineer. */ "Do it later" = "稍后再做"; +/* No comment provided by engineer. */ +"Do not send history to new members." = "不给新成员发送历史消息。"; + /* No comment provided by engineer. */ "Do NOT use SimpleX for emergency calls." = "请勿使用 SimpleX 进行紧急通话。"; @@ -1182,6 +1317,9 @@ /* No comment provided by engineer. */ "Enable automatic message deletion?" = "启用自动删除消息?"; +/* No comment provided by engineer. */ +"Enable camera access" = "启用相机访问"; + /* No comment provided by engineer. */ "Enable for all" = "全部启用"; @@ -1269,6 +1407,12 @@ /* chat item text */ "encryption re-negotiation allowed for %@" = "允许对 %@ 进行加密重新协商"; +/* message decrypt error item */ +"Encryption re-negotiation error" = "加密重协商错误"; + +/* No comment provided by engineer. */ +"Encryption re-negotiation failed." = "加密重协商失败了。"; + /* chat item text */ "encryption re-negotiation required" = "需要重新进行加密协商"; @@ -1296,6 +1440,9 @@ /* No comment provided by engineer. */ "Enter server manually" = "手动输入服务器"; +/* No comment provided by engineer. */ +"Enter this device name…" = "输入此设备名…"; + /* placeholder */ "Enter welcome message…" = "输入欢迎消息……"; @@ -1341,6 +1488,9 @@ /* No comment provided by engineer. */ "Error creating member contact" = "创建成员联系人时出错"; +/* No comment provided by engineer. */ +"Error creating message" = "创建消息出错"; + /* No comment provided by engineer. */ "Error creating profile!" = "创建资料错误!"; @@ -1473,6 +1623,9 @@ /* No comment provided by engineer. */ "Exit without saving" = "退出而不保存"; +/* chat item action */ +"Expand" = "展开"; + /* No comment provided by engineer. */ "Export database" = "导出数据库"; @@ -1491,6 +1644,9 @@ /* No comment provided by engineer. */ "Fast and no wait until the sender is online!" = "快速且无需等待发件人在线!"; +/* No comment provided by engineer. */ +"Faster joining and more reliable messages." = "加入速度更快、信息更可靠。"; + /* No comment provided by engineer. */ "Favorite" = "最喜欢"; @@ -1548,6 +1704,9 @@ /* No comment provided by engineer. */ "For console" = "用于控制台"; +/* No comment provided by engineer. */ +"Found desktop" = "找到了桌面"; + /* No comment provided by engineer. */ "French interface" = "法语界面"; @@ -1560,6 +1719,9 @@ /* No comment provided by engineer. */ "Full name:" = "全名:"; +/* No comment provided by engineer. */ +"Fully decentralized – visible only to members." = "完全去中心化 - 仅对成员可见。"; + /* No comment provided by engineer. */ "Fully re-implemented - work in background!" = "完全重新实现 - 在后台工作!"; @@ -1572,6 +1734,9 @@ /* No comment provided by engineer. */ "Group" = "群组"; +/* No comment provided by engineer. */ +"Group already exists!" = "群已存在!"; + /* No comment provided by engineer. */ "group deleted" = "群组已删除"; @@ -1671,6 +1836,9 @@ /* No comment provided by engineer. */ "History" = "历史记录"; +/* No comment provided by engineer. */ +"History is not sent to new members." = "未发送历史消息给新成员。"; + /* time unit */ "hours" = "小时"; @@ -1728,6 +1896,9 @@ /* No comment provided by engineer. */ "Import database" = "导入数据库"; +/* No comment provided by engineer. */ +"Improved message delivery" = "改进了消息传递"; + /* No comment provided by engineer. */ "Improved privacy and security" = "改进的隐私和安全"; @@ -1740,6 +1911,9 @@ /* No comment provided by engineer. */ "Incognito" = "隐身聊天"; +/* No comment provided by engineer. */ +"Incognito groups" = "匿名群组"; + /* No comment provided by engineer. */ "Incognito mode" = "隐身模式"; @@ -1767,6 +1941,9 @@ /* No comment provided by engineer. */ "Incompatible database version" = "数据库版本不兼容"; +/* No comment provided by engineer. */ +"Incompatible version" = "不兼容的版本"; + /* PIN entry */ "Incorrect passcode" = "密码错误"; @@ -1806,6 +1983,15 @@ /* invalid chat item */ "invalid data" = "无效数据"; +/* No comment provided by engineer. */ +"Invalid display name!" = "无效的显示名!"; + +/* No comment provided by engineer. */ +"Invalid name!" = "无效名称!"; + +/* No comment provided by engineer. */ +"Invalid QR code" = "无效的二维码"; + /* No comment provided by engineer. */ "Invalid server address!" = "无效的服务器地址!"; @@ -1884,12 +2070,24 @@ /* No comment provided by engineer. */ "Join group" = "加入群组"; +/* No comment provided by engineer. */ +"Join group conversations" = "加入群对话"; + +/* No comment provided by engineer. */ +"Join group?" = "加入群组?"; + /* No comment provided by engineer. */ "Join incognito" = "加入隐身聊天"; /* No comment provided by engineer. */ "Joining group" = "加入群组中"; +/* No comment provided by engineer. */ +"Keep" = "保留"; + +/* No comment provided by engineer. */ +"Keep unused invitation?" = "保留未使用的邀请吗?"; + /* No comment provided by engineer. */ "Keep your connections" = "保持连接"; @@ -1926,6 +2124,15 @@ /* No comment provided by engineer. */ "Limitations" = "限制"; +/* No comment provided by engineer. */ +"Link mobile and desktop apps! 🔗" = "连接移动端和桌面端应用程序!🔗"; + +/* No comment provided by engineer. */ +"Linked desktop options" = "已链接桌面选项"; + +/* No comment provided by engineer. */ +"Linked desktops" = "已链接桌面"; + /* No comment provided by engineer. */ "LIVE" = "实时"; @@ -2067,7 +2274,7 @@ /* copied message info */ "Moderated at: %@" = "已被管理员移除于:%@"; -/* No comment provided by engineer. */ +/* marked deleted chat item preview text */ "moderated by %@" = "由 %@ 审核"; /* time unit */ @@ -2106,6 +2313,9 @@ /* No comment provided by engineer. */ "never" = "从不"; +/* No comment provided by engineer. */ +"New chat" = "新聊天"; + /* notification */ "New contact request" = "新联系人请求"; @@ -2181,6 +2391,9 @@ /* copied message info in history */ "no text" = "无文本"; +/* No comment provided by engineer. */ +"Not compatible!" = "不兼容!"; + /* No comment provided by engineer. */ "Notifications" = "通知"; @@ -2210,6 +2423,9 @@ /* No comment provided by engineer. */ "Ok" = "好的"; +/* No comment provided by engineer. */ +"OK" = "好的"; + /* No comment provided by engineer. */ "Old database" = "旧的数据库"; @@ -2282,6 +2498,9 @@ /* authentication reason */ "Open chat console" = "打开聊天控制台"; +/* No comment provided by engineer. */ +"Open group" = "打开群"; + /* No comment provided by engineer. */ "Open Settings" = "打开设置"; @@ -2291,6 +2510,12 @@ /* No comment provided by engineer. */ "Open-source protocol and code – anybody can run the servers." = "开源协议和代码——任何人都可以运行服务器。"; +/* No comment provided by engineer. */ +"Or scan QR code" = "或者扫描二维码"; + +/* No comment provided by engineer. */ +"Or show this code" = "或者显示此码"; + /* member role */ "owner" = "群主"; @@ -2312,9 +2537,18 @@ /* No comment provided by engineer. */ "Password to show" = "显示密码"; +/* No comment provided by engineer. */ +"Paste desktop address" = "粘贴桌面地址"; + /* No comment provided by engineer. */ "Paste image" = "粘贴图片"; +/* No comment provided by engineer. */ +"Paste link to connect!" = "粘贴链接以连接!"; + +/* No comment provided by engineer. */ +"Paste the link you received" = "粘贴您收到的链接"; + /* No comment provided by engineer. */ "peer-to-peer" = "点对点"; @@ -2396,12 +2630,18 @@ /* No comment provided by engineer. */ "Private filenames" = "私密文件名"; +/* name of notes to self */ +"Private notes" = "私密笔记"; + /* No comment provided by engineer. */ "Profile and server connections" = "资料和服务器连接"; /* No comment provided by engineer. */ "Profile image" = "资料图片"; +/* No comment provided by engineer. */ +"Profile name:" = "显示名:"; + /* No comment provided by engineer. */ "Profile password" = "个人资料密码"; @@ -2462,6 +2702,9 @@ /* No comment provided by engineer. */ "Read more in [User Guide](https://simplex.chat/docs/guide/app-settings.html#your-simplex-contact-address)." = "在 [用户指南](https://simplex.chat/docs/guide/app-settings.html#your-simplex-contact-address) 中阅读更多内容。"; +/* No comment provided by engineer. */ +"Read more in [User Guide](https://simplex.chat/docs/guide/chat-profiles.html#incognito-mode)." = "阅读更多[User Guide](https://simplex.chat/docs/guide/chat-profiles.html#incognito-mode)。"; + /* No comment provided by engineer. */ "Read more in [User Guide](https://simplex.chat/docs/guide/readme.html#connect-to-friends)." = "在 [用户指南](https://simplex.chat/docs/guide/readme.html#connect-to-friends) 中阅读更多内容。"; @@ -2555,6 +2798,12 @@ /* rcv group event chat item */ "removed %@" = "已删除 %@"; +/* profile update event chat item */ +"removed contact address" = "删除了联系地址"; + +/* profile update event chat item */ +"removed profile picture" = "删除了资料图片"; + /* rcv group event chat item */ "removed you" = "已将您移除"; @@ -2567,6 +2816,12 @@ /* No comment provided by engineer. */ "Renegotiate encryption?" = "重新协商加密?"; +/* No comment provided by engineer. */ +"Repeat connection request?" = "重复连接请求吗?"; + +/* No comment provided by engineer. */ +"Repeat join request?" = "重复加入请求吗?"; + /* chat item action */ "Reply" = "回复"; @@ -2600,6 +2855,9 @@ /* No comment provided by engineer. */ "Restore database error" = "恢复数据库错误"; +/* No comment provided by engineer. */ +"Retry" = "重试"; + /* chat item action */ "Reveal" = "揭示"; @@ -2669,6 +2927,9 @@ /* No comment provided by engineer. */ "Save welcome message?" = "保存欢迎信息?"; +/* message info title */ +"Saved message" = "已保存的消息"; + /* No comment provided by engineer. */ "Saved WebRTC ICE servers will be removed" = "已保存的WebRTC ICE服务器将被删除"; @@ -2678,6 +2939,9 @@ /* No comment provided by engineer. */ "Scan QR code" = "扫描二维码"; +/* No comment provided by engineer. */ +"Scan QR code from desktop" = "从桌面扫描二维码"; + /* No comment provided by engineer. */ "Scan security code from your contact's app." = "从您联系人的应用程序中扫描安全码。"; @@ -2687,6 +2951,12 @@ /* No comment provided by engineer. */ "Search" = "搜索"; +/* No comment provided by engineer. */ +"Search bar accepts invitation links." = "搜索栏接受邀请链接。"; + +/* No comment provided by engineer. */ +"Search or paste SimpleX link" = "搜索或粘贴 SimpleX 链接"; + /* network option */ "sec" = "秒"; @@ -2765,6 +3035,9 @@ /* No comment provided by engineer. */ "Send them from gallery or custom keyboards." = "发送它们来自图库或自定义键盘。"; +/* No comment provided by engineer. */ +"Send up to 100 last messages to new members." = "给新成员发送最多 100 条历史消息。"; + /* No comment provided by engineer. */ "Sender cancelled file transfer." = "发送人已取消文件传输。"; @@ -2822,6 +3095,9 @@ /* No comment provided by engineer. */ "Servers" = "服务器"; +/* No comment provided by engineer. */ +"Session code" = "会话码"; + /* No comment provided by engineer. */ "Set 1 day" = "设定1天"; @@ -2834,6 +3110,12 @@ /* No comment provided by engineer. */ "Set it instead of system authentication." = "设置它以代替系统身份验证。"; +/* profile update event chat item */ +"set new contact address" = "设置新的联系地址"; + +/* profile update event chat item */ +"set new profile picture" = "设置新的资料图片"; + /* No comment provided by engineer. */ "Set passcode" = "设置密码"; @@ -2864,6 +3146,9 @@ /* No comment provided by engineer. */ "Share link" = "分享链接"; +/* No comment provided by engineer. */ +"Share this 1-time invite link" = "分享此一次性邀请链接"; + /* No comment provided by engineer. */ "Share with contacts" = "与联系人分享"; @@ -2942,6 +3227,9 @@ /* No comment provided by engineer. */ "Start chat" = "开始聊天"; +/* No comment provided by engineer. */ +"Start chat?" = "启动聊天吗?"; + /* No comment provided by engineer. */ "Start migration" = "开始迁移"; @@ -3002,12 +3290,21 @@ /* No comment provided by engineer. */ "Tap to activate profile." = "点击以激活个人资料。"; +/* No comment provided by engineer. */ +"Tap to Connect" = "轻按连接"; + /* No comment provided by engineer. */ "Tap to join" = "点击加入"; /* No comment provided by engineer. */ "Tap to join incognito" = "点击以加入隐身聊天"; +/* No comment provided by engineer. */ +"Tap to paste link" = "轻按粘贴链接"; + +/* No comment provided by engineer. */ +"Tap to scan" = "轻按扫描"; + /* No comment provided by engineer. */ "Tap to start a new chat" = "点击开始一个新聊天"; @@ -3053,6 +3350,9 @@ /* No comment provided by engineer. */ "The attempt to change database passphrase was not completed." = "更改数据库密码的尝试未完成。"; +/* No comment provided by engineer. */ +"The code you scanned is not a SimpleX link QR code." = "您扫描的码不是 SimpleX 链接的二维码。"; + /* No comment provided by engineer. */ "The connection you accepted will be cancelled!" = "您接受的连接将被取消!"; @@ -3095,6 +3395,9 @@ /* No comment provided by engineer. */ "The servers for new connections of your current chat profile **%@**." = "您当前聊天资料 **%@** 的新连接服务器。"; +/* No comment provided by engineer. */ +"The text you pasted is not a SimpleX link." = "您粘贴的文本不是 SimpleX 链接。"; + /* No comment provided by engineer. */ "Theme" = "主题"; @@ -3116,12 +3419,24 @@ /* notification title */ "this contact" = "这个联系人"; +/* No comment provided by engineer. */ +"This device name" = "此设备名称"; + +/* No comment provided by engineer. */ +"This display name is invalid. Please choose another name." = "显示名无效。请另选一个名称。"; + /* No comment provided by engineer. */ "This group has over %lld members, delivery receipts are not sent." = "该组有超过 %lld 个成员,不发送送货单。"; /* No comment provided by engineer. */ "This group no longer exists." = "该群组已不存在。"; +/* No comment provided by engineer. */ +"This is your own one-time link!" = "这是你自己的一次性链接!"; + +/* No comment provided by engineer. */ +"This is your own SimpleX address!" = "这是你自己的 SimpleX 地址!"; + /* No comment provided by engineer. */ "This setting applies to messages in your current chat profile **%@**." = "此设置适用于您当前聊天资料 **%@** 中的消息。"; @@ -3131,6 +3446,9 @@ /* No comment provided by engineer. */ "To connect, your contact can scan QR code or use the link in the app." = "您的联系人可以扫描二维码或使用应用程序中的链接来建立连接。"; +/* No comment provided by engineer. */ +"To hide unwanted messages." = "隐藏不需要的信息。"; + /* No comment provided by engineer. */ "To make a new connection" = "建立新连接"; @@ -3176,6 +3494,21 @@ /* No comment provided by engineer. */ "Unable to record voice message" = "无法录制语音消息"; +/* No comment provided by engineer. */ +"Unblock" = "解封"; + +/* No comment provided by engineer. */ +"Unblock for all" = "为所有人解封"; + +/* No comment provided by engineer. */ +"Unblock member" = "解封成员"; + +/* No comment provided by engineer. */ +"Unblock member for all?" = "为所有其他成员解封该成员?"; + +/* No comment provided by engineer. */ +"Unblock member?" = "解封成员吗?"; + /* item status description */ "Unexpected error: %@" = "意外错误: %@"; @@ -3209,12 +3542,21 @@ /* No comment provided by engineer. */ "Unknown error" = "未知错误"; +/* No comment provided by engineer. */ +"unknown status" = "未知状态"; + /* No comment provided by engineer. */ "Unless you use iOS call interface, enable Do Not Disturb mode to avoid interruptions." = "除非您使用 iOS 通话界面,否则请启用请勿打扰模式以避免打扰。"; /* No comment provided by engineer. */ "Unless your contact deleted the connection or this link was already used, it might be a bug - please report it.\nTo connect, please ask your contact to create another connection link and check that you have a stable network connection." = "除非您的联系人已删除此连接或此链接已被使用,否则它可能是一个错误——请报告。\n如果要连接,请让您的联系人创建另一个连接链接,并检查您的网络连接是否稳定。"; +/* No comment provided by engineer. */ +"Unlink" = "取消链接"; + +/* No comment provided by engineer. */ +"Unlink desktop?" = "取消链接桌面端?"; + /* No comment provided by engineer. */ "Unlock" = "解锁"; @@ -3227,6 +3569,9 @@ /* No comment provided by engineer. */ "Unread" = "未读"; +/* No comment provided by engineer. */ +"Up to 100 last messages are sent to new members." = "给新成员发送了最多 100 条历史消息。"; + /* No comment provided by engineer. */ "Update" = "更新"; @@ -3245,6 +3590,9 @@ /* rcv group event chat item */ "updated group profile" = "已更新的群组资料"; +/* profile update event chat item */ +"updated profile" = "更新了资料"; + /* No comment provided by engineer. */ "Updating settings will re-connect the client to all servers." = "更新设置会将客户端重新连接到所有服务器。"; @@ -3269,6 +3617,9 @@ /* No comment provided by engineer. */ "Use for new connections" = "用于新连接"; +/* No comment provided by engineer. */ +"Use from desktop" = "从桌面端使用"; + /* No comment provided by engineer. */ "Use iOS call interface" = "使用 iOS 通话界面"; @@ -3293,9 +3644,18 @@ /* No comment provided by engineer. */ "v%@ (%@)" = "v%@ (%@)"; +/* No comment provided by engineer. */ +"Verify code with desktop" = "用桌面端验证代码"; + +/* No comment provided by engineer. */ +"Verify connection" = "验证连接"; + /* No comment provided by engineer. */ "Verify connection security" = "验证连接安全"; +/* No comment provided by engineer. */ +"Verify connections" = "验证连接"; + /* No comment provided by engineer. */ "Verify security code" = "验证安全码"; @@ -3314,6 +3674,9 @@ /* No comment provided by engineer. */ "via relay" = "通过中继"; +/* No comment provided by engineer. */ +"Via secure quantum resistant protocol." = "通过安全的、抗量子计算机破解的协议。"; + /* No comment provided by engineer. */ "Video call" = "视频通话"; @@ -3332,6 +3695,9 @@ /* No comment provided by engineer. */ "View security code" = "查看安全码"; +/* chat feature */ +"Visible history" = "可见的历史"; + /* No comment provided by engineer. */ "Voice message…" = "语音消息……"; @@ -3392,9 +3758,15 @@ /* No comment provided by engineer. */ "When you share an incognito profile with somebody, this profile will be used for the groups they invite you to." = "当您与某人共享隐身聊天资料时,该资料将用于他们邀请您加入的群组。"; +/* No comment provided by engineer. */ +"With encrypted files and media." = "加密的文件和媒体。"; + /* No comment provided by engineer. */ "With optional welcome message." = "带有可选的欢迎消息。"; +/* No comment provided by engineer. */ +"With reduced battery usage." = "降低了电量使用。"; + /* No comment provided by engineer. */ "Wrong database passphrase" = "数据库密码错误"; @@ -3422,6 +3794,12 @@ /* No comment provided by engineer. */ "You are already connected to %@." = "您已经连接到 %@。"; +/* No comment provided by engineer. */ +"You are already connecting via this one-time link!" = "你已经在通过这个一次性链接进行连接!"; + +/* No comment provided by engineer. */ +"You are already joining the group via this link." = "你已经在通过此链接加入该群。"; + /* No comment provided by engineer. */ "You are connected to the server used to receive messages from this contact." = "您已连接到用于接收该联系人消息的服务器。"; @@ -3449,6 +3827,9 @@ /* No comment provided by engineer. */ "You can hide or mute a user profile - swipe it to the right." = "您可以隐藏或静音用户个人资料——只需向右滑动。"; +/* No comment provided by engineer. */ +"You can make it visible to your SimpleX contacts via Settings." = "你可以通过设置让它对你的 SimpleX 联系人可见。"; + /* notification body */ "You can now send messages to %@" = "您现在可以给 %@ 发送消息"; @@ -3473,6 +3854,9 @@ /* No comment provided by engineer. */ "You can use markdown to format messages:" = "您可以使用 markdown 来编排消息格式:"; +/* No comment provided by engineer. */ +"You can view invitation link again in connection details." = "您可以在连接详情中再次查看邀请链接。"; + /* No comment provided by engineer. */ "You can't send messages!" = "您无法发送消息!"; @@ -3494,6 +3878,9 @@ /* No comment provided by engineer. */ "You could not be verified; please try again." = "您的身份无法验证,请再试一次。"; +/* No comment provided by engineer. */ +"You have already requested connection via this address!" = "你已经请求通过此地址进行连接!"; + /* No comment provided by engineer. */ "You have no chats" = "您没有聊天记录"; @@ -3545,6 +3932,9 @@ /* No comment provided by engineer. */ "You will be required to authenticate when you start or resume the app after 30 seconds in background." = "当您启动应用或在应用程序驻留后台超过30 秒后,您将需要进行身份验证。"; +/* No comment provided by engineer. */ +"You will connect to all group members." = "你将连接到所有群成员。"; + /* No comment provided by engineer. */ "You will still receive calls and notifications from muted profiles when they are active." = "当静音配置文件处于活动状态时,您仍会收到来自静音配置文件的电话和通知。"; diff --git a/apps/multiplatform/common/src/commonMain/cpp/android/simplex-api.c b/apps/multiplatform/common/src/commonMain/cpp/android/simplex-api.c index d0581b4336..b9b5277aeb 100644 --- a/apps/multiplatform/common/src/commonMain/cpp/android/simplex-api.c +++ b/apps/multiplatform/common/src/commonMain/cpp/android/simplex-api.c @@ -36,7 +36,7 @@ Java_chat_simplex_common_platform_CoreKt_initHS(__unused JNIEnv *env, __unused j char *argv[] = { "simplex", "+RTS", // requires `hs_init_with_rtsopts` - "-A16m", // chunk size for new allocations + "-A64m", // chunk size for new allocations "-H64m", // initial heap size "-xn", // non-moving GC NULL diff --git a/apps/multiplatform/common/src/commonMain/cpp/desktop/simplex-api.c b/apps/multiplatform/common/src/commonMain/cpp/desktop/simplex-api.c index 90504e25c1..5c921c400d 100644 --- a/apps/multiplatform/common/src/commonMain/cpp/desktop/simplex-api.c +++ b/apps/multiplatform/common/src/commonMain/cpp/desktop/simplex-api.c @@ -10,10 +10,10 @@ JNIEXPORT void JNICALL Java_chat_simplex_common_platform_CoreKt_initHS(JNIEnv *env, jclass clazz) { #ifdef _WIN32 int argc = 4; - char *argv[] = {"simplex", "+RTS", "-A16m", "-H64m", NULL}; // non-moving GC is broken on windows with GHC 9.4-9.6.3 + char *argv[] = {"simplex", "+RTS", "-A64m", "-H64m", NULL}; // non-moving GC is broken on windows with GHC 9.4-9.6.3 #else int argc = 5; - char *argv[] = {"simplex", "+RTS", "-A16m", "-H64m", "-xn", NULL}; // see android/simplex-api.c for details + char *argv[] = {"simplex", "+RTS", "-A64m", "-H64m", "-xn", NULL}; // see android/simplex-api.c for details #endif char **pargv = argv; hs_init_with_rtsopts(&argc, &pargv); diff --git a/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/onboarding/WhatsNewView.kt b/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/onboarding/WhatsNewView.kt index 38805472f2..fa7058160a 100644 --- a/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/onboarding/WhatsNewView.kt +++ b/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/onboarding/WhatsNewView.kt @@ -495,6 +495,32 @@ private val versionDescriptions: List<VersionDescription> = listOf( ) ) ), + VersionDescription( + version = "v5.6", + post = "https://simplex.chat/blog/20240323-simplex-network-privacy-non-profit-v5-6-quantum-resistant-e2e-encryption-simple-migration.html", + features = listOf( + FeatureDescription( + icon = MR.images.ic_vpn_key_filled, + titleId = MR.strings.v5_6_quantum_resistant_encryption, + descrId = MR.strings.v5_6_quantum_resistant_encryption_descr + ), + FeatureDescription( + icon = MR.images.ic_ios_share, + titleId = MR.strings.v5_6_app_data_migration, + descrId = MR.strings.v5_6_app_data_migration_descr + ), + FeatureDescription( + icon = MR.images.ic_call, + titleId = MR.strings.v5_6_picture_in_picture_calls, + descrId = MR.strings.v5_6_picture_in_picture_calls_descr + ), + FeatureDescription( + icon = MR.images.ic_back_hand, + titleId = MR.strings.v5_6_safer_groups, + descrId = MR.strings.v5_6_safer_groups_descr + ) + ) + ), ) private val lastVersion = versionDescriptions.last().version diff --git a/apps/multiplatform/common/src/commonMain/resources/MR/ar/strings.xml b/apps/multiplatform/common/src/commonMain/resources/MR/ar/strings.xml index 5903c67e9c..81504c36f7 100644 --- a/apps/multiplatform/common/src/commonMain/resources/MR/ar/strings.xml +++ b/apps/multiplatform/common/src/commonMain/resources/MR/ar/strings.xml @@ -104,7 +104,7 @@ <string name="onboarding_notifications_mode_service_desc"><![CDATA[<b> تستهلك المزيد من البطارية </b>! تعمل خدمة الخلفية دائمًا - تظهر الإشعارات بمجرد توفر الرسائل.]]></string> <string name="call_already_ended">انتهت المكالمة بالفعل!</string> <string name="alert_title_msg_bad_hash">تجزئة رسالة سيئة</string> - <string name="integrity_msg_bad_id">معرف رسالة سيئ</string> + <string name="integrity_msg_bad_id">معرّف رسالة سيئ</string> <string name="icon_descr_call_ended">انتهت المكالمة</string> <string name="change_verb">تغير</string> <string name="color_primary_variant">لون إضافي ثانوي</string> @@ -132,7 +132,7 @@ <string name="icon_descr_audio_on">الصوت مفعل</string> <string name="auto_accept_images">قبول تلقائي للصور</string> <string name="integrity_msg_bad_hash">تجزئة رسالة سيئة</string> - <string name="alert_title_msg_bad_id">معرف رسالة سيئ</string> + <string name="alert_title_msg_bad_id">معرّف رسالة سيئ</string> <string name="app_passcode_replaced_with_self_destruct">يتم استبدال رمز مرور التطبيق برمز مرور التدمير الذاتي.</string> <string name="v4_6_audio_video_calls">مكالمات الصوت والفيديو</string> <string name="callstatus_error">خطأ في الاتصال</string> @@ -1628,4 +1628,13 @@ <string name="block_for_all_question">حظر العضو للجميع؟</string> <string name="blocked_by_admin_item_description">محظور من قبل المشرف</string> <string name="member_blocked_by_admin">محظور من قبل المشرف</string> + <string name="message_too_large">الرسالة كبيرة جدًا</string> + <string name="welcome_message_is_too_long">رسالة الترحيب طويلة جدًا</string> + <string name="database_migration_in_progress">ترحيل قاعدة البيانات قيد التقدم. +\nقد يستغرق بضع دقائق.</string> + <string name="call_service_notification_video_call">مكالمة فيديو</string> + <string name="call_service_notification_audio_call">مكالمة صوتية</string> + <string name="call_service_notification_end_call">أنهيّ المكالمة</string> + <string name="unable_to_open_browser_desc">متصفح الويب الافتراضي مطلوب للمكالمات. يُرجى تضبيط المتصفح الافتراضي في النظام، ومشاركة المزيد من المعلومات مع المطورين.</string> + <string name="unable_to_open_browser_title">حدث خطأ أثناء فتح المتصفح</string> </resources> \ No newline at end of file diff --git a/apps/multiplatform/common/src/commonMain/resources/MR/base/strings.xml b/apps/multiplatform/common/src/commonMain/resources/MR/base/strings.xml index fca2adfafb..c2348568b1 100644 --- a/apps/multiplatform/common/src/commonMain/resources/MR/base/strings.xml +++ b/apps/multiplatform/common/src/commonMain/resources/MR/base/strings.xml @@ -1719,6 +1719,14 @@ <string name="v5_5_message_delivery">Improved message delivery</string> <string name="v5_5_message_delivery_descr">With reduced battery usage.</string> <string name="v5_5_new_interface_languages">Hungarian and Turkish UI</string> + <string name="v5_6_quantum_resistant_encryption">Quantum resistant encryption</string> + <string name="v5_6_quantum_resistant_encryption_descr">Enable in direct chats (BETA)!</string> + <string name="v5_6_app_data_migration">App data migration</string> + <string name="v5_6_app_data_migration_descr">Migrate to another device via QR code.</string> + <string name="v5_6_picture_in_picture_calls">Picture-in-picture calls</string> + <string name="v5_6_picture_in_picture_calls_descr">Use the app while in the call.</string> + <string name="v5_6_safer_groups">Safer groups</string> + <string name="v5_6_safer_groups_descr">Admins can block a member for all.</string> <!-- CustomTimePicker --> <string name="custom_time_unit_seconds">seconds</string> diff --git a/apps/multiplatform/common/src/commonMain/resources/MR/bg/strings.xml b/apps/multiplatform/common/src/commonMain/resources/MR/bg/strings.xml index e75634b536..bba2efcbf5 100644 --- a/apps/multiplatform/common/src/commonMain/resources/MR/bg/strings.xml +++ b/apps/multiplatform/common/src/commonMain/resources/MR/bg/strings.xml @@ -181,7 +181,7 @@ <string name="change_database_passphrase_question">Промяна на паролата на базата данни\?</string> <string name="rcv_group_event_changed_member_role">променена ролята от %s на %s</string> <string name="invite_prohibited">Не може да покани контакта!</string> - <string name="rcv_conn_event_switch_queue_phase_completed">променен е адреса за вас</string> + <string name="rcv_conn_event_switch_queue_phase_completed">адреса за изпращане е променен</string> <string name="change_verb">Промени</string> <string name="change_member_role_question">Промяна на груповата роля\?</string> <string name="you_will_still_receive_calls_and_ntfs">Все още ще получавате обаждания и известия от заглушени профили, когато са активни.</string> @@ -834,7 +834,7 @@ <string name="v4_3_voice_messages_desc">Макс. 40 секунди, получават се незабавно.</string> <string name="v4_4_live_messages">Съобщения на живо</string> <string name="live_message">Съобщение на живо!</string> - <string name="verify_security_code">Потвръди кода за сигурност</string> + <string name="verify_security_code">Потвърди кода за сигурност</string> <string name="no_details">няма подробности</string> <string name="ok">ОК</string> <string name="ask_your_contact_to_enable_voice">Моля, попитайте вашия контакт, за да активирате изпращане на гласови съобщения.</string> @@ -866,7 +866,7 @@ <string name="feature_offered_item_with_param">предлага %s: %2s</string> <string name="whats_new_read_more">Прочетете още</string> <string name="v5_2_disappear_one_message">Накарайте едно съобщение да изчезне</string> - <string name="v4_4_verify_connection_security">Потвръди сигурността на връзката</string> + <string name="v4_4_verify_connection_security">Потвърди сигурността на връзката</string> <string name="v4_5_message_draft">Чернова на съобщение</string> <string name="v5_2_more_things_descr">- по-стабилна доставка на съобщения. \n- малко по-добри групи. @@ -1246,7 +1246,7 @@ <string name="voice_messages_prohibited">Гласовите съобщения са забранени!</string> <string name="you_need_to_allow_to_send_voice">Трябва да разрешите на вашия контакт да изпраща гласови съобщения, за да можете да ги изпращате.</string> <string name="you_are_invited_to_group">Поканени сте в групата</string> - <string name="snd_conn_event_switch_queue_phase_completed">променихте адреса</string> + <string name="snd_conn_event_switch_queue_phase_completed">адреса за получаване е променен</string> <string name="you_can_share_this_address_with_your_contacts">Можете да споделите този адрес с вашите контакти, за да им позволите да се свържат с %s.</string> <string name="unfavorite_chat">Премахни от любимите</string> <string name="settings_section_title_you">ВИЕ</string> @@ -1288,7 +1288,7 @@ <string name="incognito_random_profile">Вашият автоматично генериран профил</string> <string name="user_unmute">Уведомявай</string> <string name="you_can_share_your_address">Можете да споделите адреса си като линк или QR код - всеки може да се свърже с вас.</string> - <string name="snd_conn_event_switch_queue_phase_completed_for_member">променихте адреса за %s</string> + <string name="snd_conn_event_switch_queue_phase_completed_for_member">променихте адреса получаване за %s</string> <string name="group_main_profile_sent">Вашият чат профил ще бъде изпратен на членовете на групата</string> <string name="your_chat_profile_will_be_sent_to_your_contact">Вашият чат профил ще бъде изпратен \nдо вашия контакт</string> @@ -1432,7 +1432,7 @@ <string name="rcv_group_event_1_member_connected">%s свързан</string> <string name="random_port">Случаен</string> <string name="linked_desktops">Запомнени настолни устройства</string> - <string name="discover_on_network">Открий през локалната мрежа</string> + <string name="discover_on_network">Откриване през локалната мрежа</string> <string name="rcv_group_and_other_events">и %d други събития</string> <string name="connect_plan_connect_via_link">Свърване чрез линк?</string> <string name="v5_4_incognito_groups">Инкогнито групи</string> @@ -1485,7 +1485,7 @@ <string name="unblock_member_desc">Съобщенията от %s ще бъдат показани!</string> <string name="this_device_name_shared_with_mobile">Името на устройството ще бъде споделено със свързания мобилен клиент.</string> <string name="error_sending_message_contact_invitation">Грешка при изпращане на покана</string> - <string name="verify_code_on_mobile">Потвръди кода на мобилното устройство</string> + <string name="verify_code_on_mobile">Потвърди кода на мобилното устройство</string> <string name="open_port_in_firewall_title">Отвори порт в защитната стена</string> <string name="enter_this_device_name">Въведи името на това устройство…</string> <string name="error">Грешка</string> @@ -1501,7 +1501,7 @@ <string name="bad_desktop_address">Грешен адрес на настолното устройство</string> <string name="paste_desktop_address">Постави адрес на настолно устройство</string> <string name="connect_plan_this_is_your_link_for_group_vName"><![CDATA[Това е вашят линк за група <b>%1$s</b>!]]></string> - <string name="verify_code_with_desktop">Потвръди кода с настолното устройство</string> + <string name="verify_code_with_desktop">Потвърди кода с настолното устройство</string> <string name="scan_qr_code_from_desktop">Сканирай QR код от настолното устройство</string> <string name="unblock_member_confirmation">Отблокирай</string> <string name="devices">Устройства</string> @@ -1513,12 +1513,12 @@ <string name="connect_plan_you_have_already_requested_connection_via_this_address">Вече сте заявили връзка през този адрес!</string> <string name="terminal_always_visible">Покажи конзолата в нов прозорец</string> <string name="scan_from_mobile">Сканиране от мобилно устройство</string> - <string name="verify_connections">Потвръди връзките</string> + <string name="verify_connections">Потвърждение за свързване</string> <string name="disconnect_desktop_question">Прекъсни връзката с настолното устройство?</string> <string name="loading_remote_file_desc">Моля, изчакайте, докато файлът се зареди от свързаното мобилно устройство</string> <string name="block_member_desc">Всички нови съобщения от %s ще бъдат скрити!</string> <string name="desktop_app_version_is_incompatible">Версията на настолното приложение %s не е съвместима с това приложение.</string> - <string name="verify_connection">Потвръди връзките</string> + <string name="verify_connection">Потвърди връзка</string> <string name="no_connected_mobile">Няма свързано мобилно устройство</string> <string name="blocked_item_description">блокиран</string> <string name="you_can_make_address_visible_via_settings">Можете да го направите видим за вашите контакти в SimpleX чрез Настройки.</string> @@ -1590,4 +1590,50 @@ \nПрепоръчително е да рестартирате приложението.</string> <string name="developer_options_section">Опции за разработчици</string> <string name="show_slow_api_calls">Показване на бавни API заявки</string> + <string name="v5_5_private_notes_descr">С криптирани файлове и медия.</string> + <string name="v5_5_simpler_connect_ui">Поставете линк, за да се свържете!</string> + <string name="v5_5_private_notes">Лични бележки</string> + <string name="v5_5_message_delivery">Подобрена доставка на съобщения</string> + <string name="v5_5_message_delivery_descr">С намален разход на батерията.</string> + <string name="blocked_by_admin_item_description">блокиран от админ</string> + <string name="blocked_by_admin_items_description">%d съобщения, блокирани от администратора</string> + <string name="error_creating_message">Грешка при създаване на съобщение</string> + <string name="error_deleting_note_folder">Грешка при изтриване на лични бележки</string> + <string name="clear_note_folder_question">Изчистване на лични бележки?</string> + <string name="clear_note_folder_warning">Всички съобщения ще бъдат изтрити - това не може да бъде отменено!</string> + <string name="rcv_group_event_member_blocked">блокиран %s</string> + <string name="rcv_group_event_member_unblocked">отблокиран %s</string> + <string name="snd_group_event_member_blocked">вие блокирахте %s</string> + <string name="snd_group_event_member_unblocked">вие отблокирахте %s</string> + <string name="info_row_created_at">Създаден на</string> + <string name="share_text_created_at">Създаден на: %s</string> + <string name="saved_message_title">Запазено съобщение</string> + <string name="block_for_all_question">Блокиране на член за всички?</string> + <string name="block_for_all">Блокирай за всички</string> + <string name="unblock_for_all_question">Отблокиране на член за всички?</string> + <string name="unblock_for_all">Отблокирай за всички</string> + <string name="member_blocked_by_admin">Блокиран от админ</string> + <string name="member_info_member_blocked">блокиран</string> + <string name="error_blocking_member_for_all">Грешка при блокиране на член за всички</string> + <string name="v5_5_simpler_connect_ui_descr">Лентата за търсене приема линк за връзка.</string> + <string name="v5_5_join_group_conversation">Присъединяване към групи</string> + <string name="v5_5_new_interface_languages">Унгарски и турски потребителски интерфейс</string> + <string name="v5_5_join_group_conversation_descr">Скорошна история и подобрен бот за директорията за групи.</string> + <string name="profile_update_event_member_name_changed">името на члена %1$s е променено на %2$s</string> + <string name="profile_update_event_contact_name_changed">името на контакта %1$s е променено на %2$s</string> + <string name="profile_update_event_removed_picture">премахната профилна снимка</string> + <string name="profile_update_event_set_new_picture">зададена нова профилна снимка</string> + <string name="profile_update_event_removed_address">премахнат адрес за контакт</string> + <string name="profile_update_event_set_new_address">зададен нов адрес за контакт</string> + <string name="profile_update_event_updated_profile">актуализиран профил</string> + <string name="note_folder_local_display_name">Лични бележки</string> + <string name="message_too_large">Съобщението е твърде голямо</string> + <string name="welcome_message_is_too_long">Съобщението при посрещане е твърде голямо</string> + <string name="database_migration_in_progress">Извършва се миграция на базата данни. +\nМоже да отнеме няколко минути.</string> + <string name="call_service_notification_audio_call">Аудио разговор</string> + <string name="unable_to_open_browser_title">Грешка при отваряне на браузъра</string> + <string name="unable_to_open_browser_desc">За разговори е необходим уеб браузър по подразбиране. Моля, конфигурирайте браузъра по подразбиране в системните настройки и споделете повече информация с разработчиците.</string> + <string name="call_service_notification_video_call">Видео разговор</string> + <string name="call_service_notification_end_call">Край на разговора</string> </resources> \ No newline at end of file diff --git a/apps/multiplatform/common/src/commonMain/resources/MR/cs/strings.xml b/apps/multiplatform/common/src/commonMain/resources/MR/cs/strings.xml index 1134129845..8ce26d7455 100644 --- a/apps/multiplatform/common/src/commonMain/resources/MR/cs/strings.xml +++ b/apps/multiplatform/common/src/commonMain/resources/MR/cs/strings.xml @@ -70,7 +70,7 @@ <string name="feature_received_prohibited">přijaté, zakázané</string> <string name="both_you_and_your_contact_can_send_disappearing">Vy i váš kontakt můžete posílat mizící zprávy.</string> <string name="only_your_contact_can_send_disappearing">Zmizelé zprávy může odesílat pouze váš kontakt.</string> - <string name="only_you_can_delete_messages">Nevratně mazat zprávy můžete pouze vy (váš kontakt je může označit ke smazání).</string> + <string name="only_you_can_delete_messages">Nevratně mazat zprávy můžete pouze vy (váš kontakt je může označit ke smazání). (24 hodin)</string> <string name="message_deletion_prohibited">Nevratné mazání zpráv je v tomto chatu zakázáno.</string> <string name="prohibit_direct_messages">Přímé zprávy členům zakázány.</string> <string name="ttl_sec">%d sec</string> @@ -85,8 +85,8 @@ <string name="v4_4_verify_connection_security_desc">Porovnejte bezpečnostní kódy se svými kontakty.</string> <string name="app_name">SimpleX</string> <string name="thousand_abbreviation">k</string> - <string name="connect_via_contact_link">Připojit přez adresu kontaktu?</string> - <string name="connect_via_invitation_link">Připojit přez jednorázovou pozvánku?</string> + <string name="connect_via_contact_link">Připojit přes kontaktní adresu?</string> + <string name="connect_via_invitation_link">Připojit přes jednorázovou pozvánku?</string> <string name="connect_via_group_link">Připojit se do skupiny?</string> <string name="profile_will_be_sent_to_contact_sending_link">Váš profil bude odeslán kontaktu, od kterého jste obdrželi tento odkaz.</string> <string name="server_connected">připojeno</string> @@ -473,7 +473,7 @@ <string name="incognito_info_share">Pokud s někým sdílíte inkognito profil, bude použit pro skupiny, do kterých vás pozve.</string> <string name="theme_system">Systémové</string> <string name="voice_messages">Hlasové zprávy</string> - <string name="both_you_and_your_contacts_can_delete">Vy i váš kontakt můžete nevratně mazat odeslané zprávy.</string> + <string name="both_you_and_your_contacts_can_delete">Vy i váš kontakt můžete nevratně mazat odeslané zprávy. (24 hodin)</string> <string name="ttl_m">%dm</string> <string name="ttl_mth">%dmth</string> <string name="ttl_hours">%d hodin</string> @@ -687,7 +687,7 @@ <string name="onboarding_notifications_mode_off_desc"><![CDATA[<b>Nejlepší pro baterii</b>. Budete přijímat oznámení pouze když aplikace běží (žádná služba na pozadí).]]></string> <string name="onboarding_notifications_mode_periodic_desc"><![CDATA[<b>Dobré pro baterii</b>. Služba na pozadí bude kontrolovat každých 10 minut. Můžete zmeškat hovory nebo naléhavé zprávy.]]></string> <string name="onboarding_notifications_mode_service_desc"><![CDATA[<b>Využívá více baterie</b>! Služba na pozadí je spuštěna vždy - oznámení se zobrazí, jakmile jsou zprávy k dispozici.]]></string> - <string name="paste_the_link_you_received">Vložení přijatého odkazu</string> + <string name="paste_the_link_you_received">Vložte přijatý odkaz</string> <string name="incoming_video_call">Příchozí videohovor</string> <string name="incoming_audio_call">Příchozí zvukový hovor</string> <string name="contact_wants_to_connect_via_call">%1$s se s vámi chce spojit prostřednictvím</string> @@ -902,7 +902,7 @@ <string name="prohibit_sending_voice_messages">Hlasové zprávy zakázány.</string> <string name="only_you_can_send_disappearing">Pouze vy můžete odesílat mizící zprávy.</string> <string name="disappearing_prohibited_in_this_chat">Mizící zprávy jsou v tomto chatu zakázány.</string> - <string name="only_your_contact_can_delete">Nevratně mazat zprávy může pouze váš kontakt (vy je můžete označit ke smazání).</string> + <string name="only_your_contact_can_delete">Nevratně mazat zprávy může pouze váš kontakt (vy je můžete označit ke smazání). (24 hodin)</string> <string name="both_you_and_your_contact_can_send_voice">Hlasové zprávy můžete posílat vy i váš kontakt.</string> <string name="only_you_can_send_voice">Hlasové zprávy můžete posílat pouze vy.</string> <string name="only_your_contact_can_send_voice">Hlasové zprávy může odesílat pouze váš kontakt.</string> @@ -914,7 +914,7 @@ <string name="disappearing_messages_are_prohibited">Mizící zprávy jsou v této skupině zakázány.</string> <string name="group_members_can_send_dms">Členové skupiny mohou posílat přímé zprávy.</string> <string name="direct_messages_are_prohibited_in_chat">Přímé zprávy mezi členy jsou v této skupině zakázány.</string> - <string name="group_members_can_delete">Členové skupiny mohou nevratně mazat odeslané zprávy.</string> + <string name="group_members_can_delete">Členové skupin mohou nevratně mazat odeslané zprávy. (24 hodin)</string> <string name="message_deletion_prohibited_in_chat">Nevratné mazání zpráv je v této skupině zakázáno.</string> <string name="group_members_can_send_voice">Členové skupiny mohou posílat hlasové zprávy.</string> <string name="voice_messages_are_prohibited">Hlasové zprávy jsou v této skupině zakázány.</string> @@ -1066,7 +1066,7 @@ <string name="enable_lock">Povolit zámek</string> <string name="lock_after">Zamknout po</string> <string name="lock_mode">Režim zámku</string> - <string name="authentication_cancelled">Autentizace zrušena</string> + <string name="authentication_cancelled">Ověření zrušeno</string> <string name="confirm_passcode">Potvrdit heslo</string> <string name="incorrect_passcode">Nesprávné heslo</string> <string name="new_passcode">Nové heslo</string> @@ -1436,15 +1436,15 @@ <string name="v5_4_block_group_members">Blokovat členy skupin</string> <string name="connect_plan_repeat_connection_request">Opakovat žádost o připojení?</string> <string name="encryption_renegotiation_error">Chyba opětovného vyjednávání šifrování</string> - <string name="connect_plan_you_are_already_connecting_to_vName">Již se připojujete k %1$s.</string> + <string name="connect_plan_you_are_already_connecting_to_vName"><![CDATA[Již se připojujete k <b>%1$s</b>.]]></string> <string name="v5_4_incognito_groups_descr">Vytvořit skupinu pomocí náhodného profilu.</string> <string name="connect_plan_you_are_already_joining_the_group_via_this_link">Již se připojujete ke skupině prostřednictvím tohoto odkazu.</string> <string name="refresh_qr_code">Obnovit</string> <string name="new_mobile_device">Nový telefon</string> <string name="only_one_device_can_work_at_the_same_time">Pouze jedno zařízení může pracovat současně</string> <string name="you_can_make_address_visible_via_settings">Můžete ji svým SimpleX kontaktům zviditelnit v Nastavení.</string> - <string name="connect_plan_you_are_already_joining_the_group_vName">Již se připojujete ke skupině %1$s.</string> - <string name="v5_4_link_mobile_desktop">Připojit mobilní a stolní aplikace! 🔗</string> + <string name="connect_plan_you_are_already_joining_the_group_vName"><![CDATA[Již se připojujete ke skupině <b>%1$s</b>.]]></string> + <string name="v5_4_link_mobile_desktop">Propojit mobilní a stolní aplikace! 🔗</string> <string name="connect_plan_this_is_your_own_one_time_link">To je váš vlastní jednorázový odkaz!</string> <string name="marked_deleted_items_description">%d zpráv označeno jako smazaná</string> <string name="v5_4_link_mobile_desktop_descr">Prostřednictvím zabezpečeného kvant rezistentního protokolu.</string> @@ -1459,9 +1459,9 @@ \nProsím vyzkoušejte jiné video, nebo kontaktujte vývojáře.</string> <string name="random_port">Náhodný</string> <string name="linked_desktops">Připojená PC</string> - <string name="discover_on_network">Objevit přes lokální síť</string> + <string name="discover_on_network">Objevte přes lokální síť</string> <string name="rcv_group_and_other_events">a %d jiných událostí</string> - <string name="connect_plan_connect_via_link">Připojit přez odkaz?</string> + <string name="connect_plan_connect_via_link">Připojit přes odkaz?</string> <string name="v5_4_incognito_groups">Inkognito skupiny</string> <string name="connect_plan_already_joining_the_group">Už se ke skupině připojujete!</string> <string name="group_members_n">%s, %s a %d členů</string> @@ -1475,7 +1475,7 @@ <string name="linked_mobiles">Připojené telefony</string> <string name="connected_to_desktop">Připojeno k PC</string> <string name="contact_tap_to_connect">Klepněte na Připojit se</string> - <string name="connect_plan_you_are_already_in_group_vName">Již jste ve skupině %1$s.</string> + <string name="connect_plan_you_are_already_in_group_vName"><![CDATA[Již jste ve skupině <b>%1$s</b>.]]></string> <string name="connect_plan_this_is_your_own_simplex_address">To je vaše vlastní SimpleX adresa!</string> <string name="loading_remote_file_title">Načítám soubor</string> <string name="connecting_to_desktop">Připojuji k PC</string> @@ -1510,11 +1510,11 @@ <string name="disconnect_remote_hosts">Odpojit mobilní telefony</string> <string name="block_member_question">Blokovat člena?</string> <string name="rcv_group_events_count">%d skupinových událostí</string> - <string name="connect_plan_this_is_your_link_for_group_vName">To je váš odkaz pro skupinu %1$s!</string> + <string name="connect_plan_this_is_your_link_for_group_vName"><![CDATA[To je váš odkaz pro skupinu <b>%1$s</b>!]]></string> <string name="verify_code_with_desktop">Ověřit kód s PC</string> <string name="scan_qr_code_from_desktop">Skenovat QR kód z PC</string> <string name="unblock_member_confirmation">Odblokovat</string> - <string name="multicast_discoverable_via_local_network">Objevitelný prostřednictvím lokální sítě</string> + <string name="multicast_discoverable_via_local_network">Objevitelný přes lokální síť</string> <string name="v5_4_more_things_descr">- volitelně oznámení odstraněným kontaktům. \n- profilová jména s mezeramy. \n- a více!</string> @@ -1522,7 +1522,7 @@ <string name="connect_plan_you_have_already_requested_connection_via_this_address">Již jste požádali o spojení přes tuto adresu!</string> <string name="terminal_always_visible">Zobrazit konzoli v novém okně</string> <string name="scan_from_mobile">Skenování z telefonu</string> - <string name="verify_connections">Ověřit více připojení</string> + <string name="verify_connections">Ověřit připojení</string> <string name="loading_remote_file_desc">Prosím počkejte, než bude soubor načten z propojeného telefonu</string> <string name="block_member_desc">Všechny nové zprávy od %s budou skryté!</string> <string name="desktop_app_version_is_incompatible">Verze aplikace na PC %s není kompatibilní s touto aplikací.</string> @@ -1557,4 +1557,87 @@ <string name="recent_history_is_not_sent_to_new_members">Historie není odeslána novým členům.</string> <string name="recent_history_is_sent_to_new_members">Až 100 poslední zprávy je odesláno novým členům.</string> <string name="chat_is_stopped_you_should_transfer_database">Chat je zastaven. Pokud jste již použili tuto databázi na jiném zařízení, měli byste ji před zahájením chatu převést zpět.</string> + <string name="possible_slow_function_desc">Provedení funkce trvá příliš dlouho: %1$d vteřin: %2$s</string> + <string name="v5_5_join_group_conversation">Připojit se ke skupině</string> + <string name="blocked_by_admin_item_description">blokováno adminem</string> + <string name="blocked_by_admin_items_description">%d zpráv zablokováno správcem</string> + <string name="error_creating_message">Chyba vytváření zprávy</string> + <string name="error_deleting_note_folder">Chyba odstranění soukromých poznámek</string> + <string name="clear_note_folder_question">Smazat soukromé poznámky?</string> + <string name="clear_note_folder_warning">Všechny zprávy budou smazány - nemůže být zvráceno!</string> + <string name="developer_options_section">Možnosti vývojáře</string> + <string name="rcv_group_event_member_blocked">blokováno %s</string> + <string name="profile_update_event_contact_name_changed">kontakt %1$s změnen na %2$s</string> + <string name="info_row_created_at">Vytvořeno v</string> + <string name="block_for_all">Blok všem</string> + <string name="block_for_all_question">Blokovat člena všem?</string> + <string name="error_blocking_member_for_all">Chyba blokování člena všem</string> + <string name="v5_5_message_delivery">Vylepšené doručovaní zpráv</string> + <string name="v5_5_new_interface_languages">Maďarské a Turecké uživatelské rozhraní</string> + <string name="remote_host_error_bad_state"><![CDATA[Připojení k mobilu <b>%s</b> je ve špatném stavu]]></string> + <string name="remote_ctrl_error_inactive">PC je neaktivní</string> + <string name="remote_ctrl_error_bad_state">Připojení k PC je ve špatném stavu</string> + <string name="remote_ctrl_error_busy">PC je zaneprázdněno</string> + <string name="remote_ctrl_error_disconnected">PC byl odpojeno</string> + <string name="agent_critical_error_title">Kritická chyba</string> + <string name="remote_ctrl_error_bad_version">PC má nepodporovanou verzi. Ujistěte se, že používáte stejnou verzi na obou zařízeních</string> + <string name="remote_ctrl_error_bad_invitation">PC má chybný kód pozvánky</string> + <string name="failed_to_create_user_invalid_title">Neplatné jméno!</string> + <string name="database_migration_in_progress">Databáze migrace běží. +\nMůže to trvat několik minut.</string> + <string name="profile_update_event_member_name_changed">člen %1$s změněn na %2$s</string> + <string name="member_info_member_blocked">blokováno</string> + <string name="member_blocked_by_admin">Blokováno adminem</string> + <string name="share_text_created_at">Vytvořeno v: %s</string> + <string name="message_too_large">Zpráva příliš velká</string> + <string name="remote_host_disconnected_from"><![CDATA[Odpojeno z mobilu <b>%s</b> z důvodu: %s]]></string> + <string name="remote_host_was_disconnected_title">Spojení zastaveno</string> + <string name="remote_ctrl_was_disconnected_title">Spojení zastaveno</string> + <string name="remote_ctrl_disconnected_with_reason">Odpojeno z důvodu: %s</string> + <string name="agent_internal_error_title">Interní chyba</string> + <string name="v5_5_simpler_connect_ui_descr">Vyhledávání přijímá pozvánky.</string> + <string name="show_slow_api_calls">Zobrazit pomalé API volání</string> + <string name="profile_update_event_removed_address">odstraněna kontaktní adresa</string> + <string name="past_member_vName">Vložte člena %1$s</string> + <string name="v5_5_simpler_connect_ui">Vložte odkaz na připojení!</string> + <string name="v5_5_join_group_conversation_descr">Nejnovější historie a vylepšený directory bot.</string> + <string name="v5_5_private_notes">Soukromé poznámky</string> + <string name="remote_host_error_inactive"><![CDATA[Mobilní <b>%s</b> je neaktivní]]></string> + <string name="remote_host_error_busy"><![CDATA[Mobilní <b>%s</b> je zaneprázdněn]]></string> + <string name="remote_host_error_bad_version"><![CDATA[Mobile <b>%s</b> má nepodporovanou verzi. Ujistěte se, že používáte stejnou verzi na obou zařízeních]]></string> + <string name="agent_internal_error_desc">Nahlaste to prosím vývojářům: +\n%s</string> + <string name="show_internal_errors">Zobrazit interní chyby</string> + <string name="agent_critical_error_desc">Nahlaste to prosím vývojářům: +\n%s +\n +\nDoporučuje se restartovat aplikaci.</string> + <string name="restart_chat_button">Restartovat chat</string> + <string name="remote_host_error_disconnected"><![CDATA[Mobilní <b>%s</b> byl odpojen]]></string> + <string name="unable_to_open_browser_title">Chyba otevření prohlížeče</string> + <string name="profile_update_event_removed_picture">odstraněn profilový obrázek</string> + <string name="profile_update_event_set_new_address">nastavit novou kontaktní adresu</string> + <string name="profile_update_event_set_new_picture">nastavit nový profilový obrázek</string> + <string name="saved_message_title">Uložené zprávy</string> + <string name="possible_slow_function_title">Pomalá funkce</string> + <string name="note_folder_local_display_name">Soukromé poznámky</string> + <string name="call_service_notification_audio_call">Volání</string> + <string name="call_service_notification_end_call">Konec volání</string> + <string name="remote_host_error_missing"><![CDATA[Mobilní <b>%s</b> chybí]]></string> + <string name="snd_group_event_member_blocked">zablokovali jste %s</string> + <string name="snd_group_event_member_unblocked">odblokovaly jste %s</string> + <string name="group_member_status_unknown_short">neznámý</string> + <string name="v5_5_message_delivery_descr">Se sníženou spotřebou baterie.</string> + <string name="group_member_status_unknown">neznámý stav</string> + <string name="unblock_for_all_question">Odblokovat člena všem?</string> + <string name="unblock_for_all">Odblokovat pro všechny</string> + <string name="welcome_message_is_too_long">Uvítací zpráva je příliš dlouhá</string> + <string name="remote_host_error_timeout"><![CDATA[Vypršel čas při připojování k mobilnímu <b>%s</b>]]></string> + <string name="call_service_notification_video_call">Videohovor</string> + <string name="profile_update_event_updated_profile">profil aktualizován</string> + <string name="unable_to_open_browser_desc">Výchozí webový prohlížeč je vyžadován pro volání. Nakonfigurujte výchozí prohlížeč v systému a sdílejte s vývojáři více informací.</string> + <string name="rcv_group_event_member_unblocked">odblokované %s</string> + <string name="v5_5_private_notes_descr">S šifrovanými soubory a médii.</string> + <string name="remote_ctrl_error_timeout">Vypršel čas při připojování k desktopu</string> + <string name="failed_to_create_user_invalid_desc">Zobrazené jméno není platné. Prosím vyberte jiné.</string> </resources> \ No newline at end of file diff --git a/apps/multiplatform/common/src/commonMain/resources/MR/de/strings.xml b/apps/multiplatform/common/src/commonMain/resources/MR/de/strings.xml index 5ec604c259..e116dd4b54 100644 --- a/apps/multiplatform/common/src/commonMain/resources/MR/de/strings.xml +++ b/apps/multiplatform/common/src/commonMain/resources/MR/de/strings.xml @@ -1687,7 +1687,7 @@ <string name="v5_5_simpler_connect_ui">Zum Verbinden den Link einfügen!</string> <string name="v5_5_message_delivery_descr">Mit reduziertem Akkuverbrauch.</string> <string name="v5_5_join_group_conversation_descr">Aktueller Nachrichtenverlauf und verbesserter Gruppenverzeichnis-Bot.</string> - <string name="v5_5_simpler_connect_ui_descr">Von der Suchleiste werden Einladungslinks akzeptiert.</string> + <string name="v5_5_simpler_connect_ui_descr">In der Suchleiste werden nun auch Einladungslinks akzeptiert.</string> <string name="unblock_for_all">Für Alle freigeben</string> <string name="unblock_for_all_question">Mitglied für Alle freigeben?</string> <string name="member_info_member_blocked">wurde blockiert</string> @@ -1703,12 +1703,21 @@ <string name="v5_5_message_delivery">Verbesserte Zustellung von Nachrichten</string> <string name="v5_5_join_group_conversation">Gruppenunterhaltungen beitreten</string> <string name="v5_5_new_interface_languages">Ungarische und türkische Bedienoberfläche</string> - <string name="profile_update_event_contact_name_changed">Kontaktname %1$s wurde auf %2$s geändert</string> - <string name="profile_update_event_member_name_changed">Mitgliedsname %1$s wurde auf %2$s geändert</string> - <string name="profile_update_event_set_new_address">Neue Kontaktadresse wurde festgelegt</string> - <string name="profile_update_event_set_new_picture">Neues Profil-Bild wurde festgelegt</string> + <string name="profile_update_event_contact_name_changed">Der Kontaktname wurde von %1$s auf %2$s geändert</string> + <string name="profile_update_event_member_name_changed">Der Mitgliedsname von %1$s wurde auf %2$s geändert</string> + <string name="profile_update_event_set_new_address">Es wurde eine neue Kontaktadresse festgelegt</string> + <string name="profile_update_event_set_new_picture">Es wurde ein neues Profil-Bild festgelegt</string> <string name="profile_update_event_updated_profile">Das Profil wurde aktualisiert</string> - <string name="profile_update_event_removed_picture">Profil-Bild wurde entfernt</string> - <string name="profile_update_event_removed_address">Kontaktadresse wurde entfernt</string> + <string name="profile_update_event_removed_picture">Das Profil-Bild wurde entfernt</string> + <string name="profile_update_event_removed_address">Die Kontaktadresse wurde entfernt</string> <string name="note_folder_local_display_name">Private Notizen</string> + <string name="database_migration_in_progress">Momentan wird eine Datenbank-Migration durchgeführt. +\nDies kann einige Minuten andauern.</string> + <string name="message_too_large">Die Nachricht ist zu lang</string> + <string name="welcome_message_is_too_long">Die Begrüßungsmeldung ist zu lang</string> + <string name="call_service_notification_audio_call">Audioanruf</string> + <string name="call_service_notification_end_call">Anruf beenden</string> + <string name="call_service_notification_video_call">Videoanruf</string> + <string name="unable_to_open_browser_title">Fehler beim Öffnen des Browsers</string> + <string name="unable_to_open_browser_desc">Für Anrufe ist ein Default-Webbrowser erforderlich. Bitte konfigurieren Sie einen Default-Browser für das System und teilen Sie den Entwicklern mehr Informationen dazu mit.</string> </resources> \ No newline at end of file diff --git a/apps/multiplatform/common/src/commonMain/resources/MR/es/strings.xml b/apps/multiplatform/common/src/commonMain/resources/MR/es/strings.xml index f67a753bb5..8531bce63f 100644 --- a/apps/multiplatform/common/src/commonMain/resources/MR/es/strings.xml +++ b/apps/multiplatform/common/src/commonMain/resources/MR/es/strings.xml @@ -87,7 +87,7 @@ <string name="database_will_be_encrypted_and_passphrase_stored">La base de datos será cifrada y la contraseña se guardará en Keystore.</string> <string name="delete_contact_question">¿Eliminar contacto\?</string> <string name="delete_message__question">¿Eliminar mensaje\?</string> - <string name="delete_chat_profile_question">¿Eliminar el perfil de chat\?</string> + <string name="delete_chat_profile_question">¿Eliminar perfil de chat?</string> <string name="rcv_group_event_group_deleted">grupo eliminado</string> <string name="delete_group_question">¿Eliminar grupo\?</string> <string name="delete_messages_after">Eliminar en</string> @@ -173,7 +173,7 @@ <string name="group_member_status_connecting">conectando</string> <string name="group_member_status_creator">creador</string> <string name="ttl_min">%d min</string> - <string name="connection_timeout">Tiempo de conexión expirado</string> + <string name="connection_timeout">Tiempo de conexión agotado</string> <string name="failed_to_create_user_duplicate_title">¡Nombre mostrado duplicado!</string> <string name="connection_error">Error conexión</string> <string name="smp_server_test_create_queue">Crear cola</string> @@ -194,7 +194,7 @@ <string name="delete_chat_archive_question">¿Eliminar archivo del chat\?</string> <string name="create_group_link">Crear enlace de grupo</string> <string name="delete_link">Eliminar enlace</string> - <string name="users_delete_question">¿Eliminar el perfil de chat\?</string> + <string name="users_delete_question">¿Eliminar perfil de chat?</string> <string name="ttl_hour">%d hora</string> <string name="ttl_day">%d día</string> <string name="v4_5_multiple_chat_profiles_descr">Nombre y avatar diferentes, aislamiento de transporte.</string> @@ -437,7 +437,7 @@ <string name="delete_message_cannot_be_undone_warning">El mensaje será eliminado. ¡No podrá deshacerse!</string> <string name="incognito_info_protects">El modo incógnito protege tu privacidad creando un perfil aleatorio por cada contacto.</string> <string name="turn_off_battery_optimization"><![CDATA[Para usar SimpleX, por favor <b>permite que SimpleX se ejecute en segundo plano</b> en el siguiente cuadro de diálogo. De lo contrario las notificaciones se desactivarán.]]></string> - <string name="install_simplex_chat_for_terminal">Instalar terminal para SimpleX Chat</string> + <string name="install_simplex_chat_for_terminal">Instalar terminal de SimpleX Chat</string> <string name="group_invitation_item_description">invitación al grupo %1$s</string> <string name="rcv_group_event_member_added">ha invitado a %1$s</string> <string name="incognito_info_allows">Permite tener varias conexiones anónimas sin datos compartidos entre estas dentro del mismo perfil.</string> @@ -476,7 +476,7 @@ <string name="settings_notifications_mode_title">Servicio</string> <string name="delete_message_mark_deleted_warning">El mensaje se marcará para eliminar. El destinatario o destinatarios podrán revelar este mensaje.</string> <string name="live_message">¡Mensaje en vivo!</string> - <string name="mobile_tap_open_in_mobile_app_then_tap_connect_in_app"><![CDATA[📱 móvil: pulse <b>Abrir en aplicación móvil</b>, después pulse <b>Conectar</b> en la aplicación.]]></string> + <string name="mobile_tap_open_in_mobile_app_then_tap_connect_in_app"><![CDATA[📱 móvil: pulsa <b>Abrir en aplicación móvil</b>, después pulsa <b>Conectar</b> en la aplicación.]]></string> <string name="mark_read">Marcar como leído</string> <string name="mark_unread">Marcar como no leído</string> <string name="invalid_QR_code">Código QR no válido</string> @@ -565,7 +565,7 @@ <string name="rcv_group_event_member_left">ha salido</string> <string name="button_leave_group">Salir del grupo</string> <string name="only_group_owners_can_change_prefs">Sólo los propietarios pueden modificar las preferencias del grupo.</string> - <string name="users_delete_data_only">Sólo datos del perfil local</string> + <string name="users_delete_data_only">Sólo datos del perfil</string> <string name="chat_preferences_no">no</string> <string name="thousand_abbreviation">k</string> <string name="marked_deleted_description">marcado eliminado</string> @@ -723,7 +723,7 @@ <string name="settings_section_title_socks">PROXY SOCKS</string> <string name="settings_section_title_themes">TEMAS</string> <string name="stop_chat_confirmation">Detener</string> - <string name="delete_chat_profile_action_cannot_be_undone_warning">Esta acción no se puede deshacer. Tu perfil, contactos, mensajes y archivos se perderán irreversiblemente.</string> + <string name="delete_chat_profile_action_cannot_be_undone_warning">Esta acción es irreversible. Tu perfil, contactos, mensajes y archivos se perderán.</string> <string name="skip_inviting_button">Omitir invitación a miembros</string> <string name="settings_notification_preview_mode_title">Vista previa</string> <string name="la_notice_turn_on">Activar</string> @@ -751,8 +751,8 @@ <string name="database_initialization_error_desc">La base de datos no funciona correctamente. Pulsa para saber más</string> <string name="moderate_message_will_be_marked_warning">El mensaje será marcado como moderado para todos los miembros.</string> <string name="next_generation_of_private_messaging">La nueva generación de mensajería privada</string> - <string name="delete_files_and_media_desc">Esta acción no se puede deshacer. Se eliminarán todos los archivos y multimedia recibidos y enviados. Las imágenes de baja resolución permanecerán.</string> - <string name="enable_automatic_deletion_message">Esta acción no se puede deshacer. Se eliminarán los mensajes enviados y recibidos anteriores a la selección. Puede tardar varios minutos.</string> + <string name="delete_files_and_media_desc">Esta acción es irreversible. Se eliminarán todos los archivos y multimedia recibidos y enviados. Las imágenes de baja resolución permanecerán.</string> + <string name="enable_automatic_deletion_message">Esta acción es irreversible. Los mensajes enviados y recibidos anteriores a la selección serán eliminados. Podría tardar varios minutos.</string> <string name="messages_section_description">Esta configuración se aplica a los mensajes del perfil actual</string> <string name="this_string_is_not_a_connection_link">¡Esta cadena no es un enlace de conexión!</string> <string name="to_preserve_privacy_simplex_has_background_service_instead_of_push_notifications_it_uses_a_few_pc_battery"><![CDATA[Para preservar tu privacidad, en lugar de notificaciones automáticas la aplicación cuenta con un <b>servicio en segundo planoSimpleX</b>, usa un pequeño porcentaje de la batería al día.]]></string> @@ -822,9 +822,9 @@ <string name="member_role_will_be_changed_with_invitation">El rol del miembro cambiará a \"%s\" y recibirá una invitación nueva.</string> <string name="update_network_settings_confirmation">Actualizar</string> <string name="update_network_settings_question">¿Actualizar la configuración de red\?</string> - <string name="trying_to_connect_to_server_to_receive_messages">Intentando conectar con el servidor usado para recibir mensajes de este contacto.</string> + <string name="trying_to_connect_to_server_to_receive_messages">Intentando conectar con el servidor para recibir mensajes de este contacto.</string> <string name="unknown_message_format">formato de mensaje desconocido</string> - <string name="trying_to_connect_to_server_to_receive_messages_with_error">Intentando conectar con el servidor usado para recibir mensajes de este contacto (error: %1$s ).</string> + <string name="trying_to_connect_to_server_to_receive_messages_with_error">Intentando conectar con el servidor para recibir mensajes de este contacto (error: %1$s).</string> <string name="error_smp_test_failed_at_step">Prueba fallida en el paso %s.</string> <string name="tap_to_start_new_chat">Pulsa para iniciar chat nuevo</string> <string name="share_message">Compartir mensaje…</string> @@ -880,7 +880,7 @@ <string name="alert_text_connection_pending_they_need_to_be_online_can_delete_and_retry">Tu contacto debe estar en línea para que se complete la conexión. \nPuedes cancelar esta conexión y eliminar el contacto (e intentarlo más tarde con un enlace nuevo).</string> <string name="your_current_chat_database_will_be_deleted_and_replaced_with_the_imported_one">La base de datos actual será ELIMINADA y SUSTITUIDA por la importada. -\nEsta acción no podrá deshacerse. Tu perfil, contactos, mensajes y archivos actuales se perderán irreversiblemente.</string> +\nEsta acción es irreversible. Tu perfil, contactos, mensajes y archivos actuales se perderán.</string> <string name="incognito_random_profile">Tu perfil aleatorio</string> <string name="you_will_be_connected_when_your_connection_request_is_accepted">Te conectarás cuando tu solicitud se acepte, por favor espera o compruébalo más tarde.</string> <string name="you_will_be_connected_when_your_contacts_device_is_online">Te conectarás cuando el dispositivo de tu contacto esté en línea, por favor espera o compruébalo más tarde.</string> @@ -1081,12 +1081,12 @@ <string name="la_mode_system">Sistema</string> <string name="decryption_error">Error descifrado</string> <string name="alert_text_msg_bad_id">El ID del siguiente mensaje es incorrecto (menor o igual que el anterior). -\nPuede ocurrir por algún bug o cuando la conexión está comprometida.</string> +\nPuede ocurrir por algún error o si la conexión está comprometida.</string> <string name="alert_text_fragment_please_report_to_developers">Por favor, informa a los desarrolladores.</string> <string name="alert_text_decryption_error_too_many_skipped">%1$d mensaje(s) omitido(s).</string> <string name="alert_title_msg_bad_hash">Hash de mensaje incorrecto</string> <string name="alert_title_msg_bad_id">ID de mensaje incorrecto</string> - <string name="alert_text_fragment_encryption_out_of_sync_old_database">Puede ocurrir cuando tu o tu contacto estáis usando una copia de seguridad antigua de la base de datos.</string> + <string name="alert_text_fragment_encryption_out_of_sync_old_database">Puede ocurrir si tu contacto o tu usáis una copia de seguridad antigua de la base de datos.</string> <string name="alert_text_msg_bad_hash">El hash del mensaje anterior es diferente.</string> <string name="alert_text_decryption_error_n_messages_failed_to_decrypt">%1$d mensaje(s) no ha(n) podido ser descifrado(s).</string> <string name="stop_file__action">Detener archivo</string> @@ -1521,12 +1521,12 @@ <string name="terminal_always_visible">Mostrar consola en ventana nueva</string> <string name="scan_from_mobile">Escáner desde móvil</string> <string name="verify_connections">Verificar conexiones</string> - <string name="loading_remote_file_desc">Por favor, espere mientras el archivo se carga desde el móvil enlazado</string> + <string name="loading_remote_file_desc">Por favor, espera mientras el archivo se carga desde el móvil enlazado</string> <string name="verify_connection">Verificar conexión</string> <string name="no_connected_mobile">Ningún móvil conectado</string> <string name="app_was_crashed">Error aplicación</string> <string name="error_showing_content">error mostrando contenido</string> - <string name="error_showing_message">error mostrando mensaje</string> + <string name="error_showing_message">error al mostrar mensaje</string> <string name="you_can_make_address_visible_via_settings">Puedes hacerlo visible para tus contactos de SimpleX en Configuración.</string> <string name="recent_history_is_not_sent_to_new_members">El historial no se envía a miembros nuevos.</string> <string name="retry_verb">Reintentar</string> @@ -1555,4 +1555,89 @@ <string name="keep_invitation_link">Guardar</string> <string name="tap_to_paste_link">Pulsa para pegar enlace</string> <string name="search_or_paste_simplex_link">Buscar o pegar enlace SimpleX</string> + <string name="v5_5_message_delivery_descr">Con uso reducido de batería.</string> + <string name="blocked_by_admin_item_description">bloqueado por el administrador</string> + <string name="blocked_by_admin_items_description">%d mensajes bloqueados por el administrador</string> + <string name="error_creating_message">Error al crear mensaje</string> + <string name="error_deleting_note_folder">Error al borrar notas privadas</string> + <string name="clear_note_folder_question">¿Borrar notas privadas?</string> + <string name="developer_options_section">Opciones desarrollador</string> + <string name="rcv_group_event_member_blocked">%s bloqueado</string> + <string name="rcv_group_event_member_unblocked">%s desbloqueado</string> + <string name="snd_group_event_member_blocked">has bloqueado a %s</string> + <string name="snd_group_event_member_unblocked">has desbloqueado a %s</string> + <string name="group_member_status_unknown_short">desconocido</string> + <string name="info_row_created_at">Creado</string> + <string name="block_for_all_question">¿Bloqear miembro para todos?</string> + <string name="share_text_created_at">Creado: %s</string> + <string name="block_for_all">Bloquear para todos</string> + <string name="unblock_for_all_question">¿Desbloquear miembro para todos?</string> + <string name="unblock_for_all">Desbloquear para todos</string> + <string name="member_info_member_blocked">bloqueado</string> + <string name="member_blocked_by_admin">Bloqueado por el administrador</string> + <string name="error_blocking_member_for_all">Error al bloqear el miembro para todos</string> + <string name="v5_5_private_notes_descr">Con cifrado de archivos y multimedia.</string> + <string name="remote_host_error_timeout"><![CDATA[Tiempo de espera para conectar con el móvil <b>%s</b> agotado]]></string> + <string name="chat_is_stopped_you_should_transfer_database">Chat detenido. Si has usado esta base de datos en otro dispositivo, deberías transferirla de vuelta antes de iniciar el chat.</string> + <string name="failed_to_create_user_invalid_desc">Éste nombre mostrado no es válido. Por favor, elije otro nombre.</string> + <string name="remote_host_was_disconnected_title">Conexión detenida</string> + <string name="remote_ctrl_was_disconnected_title">Conexión detenida</string> + <string name="remote_host_disconnected_from"><![CDATA[Desconectado del móvil <b>%s</b> debido a: %s]]></string> + <string name="remote_ctrl_disconnected_with_reason">Desconectado debido a: %s</string> + <string name="remote_host_error_bad_state"><![CDATA[La conexión con el móvil <b>%s</b> es deficiente]]></string> + <string name="remote_ctrl_error_bad_state">La conexión al ordenador es deficiente</string> + <string name="remote_ctrl_error_inactive">El ordenador está inactivo</string> + <string name="remote_ctrl_error_busy">El ordenador está ocupado</string> + <string name="agent_critical_error_title">Error crítico</string> + <string name="clear_note_folder_warning">Todos los mensajes serán borrados. ¡No podrá deshacerse!</string> + <string name="start_chat_question">¿Iniciar chat?</string> + <string name="welcome_message_is_too_long">Mensaje de bienvenida demasiado largo</string> + <string name="remote_ctrl_error_timeout">Tiempo de espera para conectar con el ordenador agotado</string> + <string name="remote_ctrl_error_bad_invitation">El ordenador tiene un código de invitación incorrecto</string> + <string name="remote_ctrl_error_disconnected">El ordenador ha sido desconectado</string> + <string name="group_member_status_unknown">estado desconocido</string> + <string name="database_migration_in_progress">Migración de la base de datos en progreso. +\nPuede tardar varios minutos.</string> + <string name="remote_ctrl_error_bad_version">El ordenador tiene una versión sin soporte. Por favor, asegúrate de usar la misma versión en ambos dispositivos</string> + <string name="profile_update_event_contact_name_changed">el contacto %1$s ha cambiado a %2$s</string> + <string name="profile_update_event_updated_profile">perfil actualizado</string> + <string name="v5_5_private_notes">Notas privadas</string> + <string name="v5_5_message_delivery">Entrega de mensajes mejorada</string> + <string name="remote_host_error_bad_version"><![CDATA[El móvil <b>%s</b> tiene una versión sin soporte. Por favor, asegúrate de usar la misma versión en ambos dispositivos]]></string> + <string name="note_folder_local_display_name">Notas privadas</string> + <string name="possible_slow_function_desc">La ejecución de la función está tardando mucho: %1$d segundos: %2$s</string> + <string name="possible_slow_function_title">Función lenta</string> + <string name="show_slow_api_calls">Mostrar llamadas lentas de API</string> + <string name="saved_message_title">Mensaje guardado</string> + <string name="v5_5_simpler_connect_ui">Pegar enlace para conectar!</string> + <string name="v5_5_simpler_connect_ui_descr">La barra de búsqueda acepta enlaces de invitación.</string> + <string name="v5_5_join_group_conversation">Unirse a la conversación del grupo</string> + <string name="v5_5_join_group_conversation_descr">Historial reciente y bot del directorio mejorado.</string> + <string name="v5_5_new_interface_languages">Interfaz en Turco y en Húngaro</string> + <string name="remote_host_error_inactive"><![CDATA[El móvil <b>%s</b> está inactivo]]></string> + <string name="remote_host_error_missing"><![CDATA[El móvil <b>%s</b> no se encuentra]]></string> + <string name="remote_host_error_busy"><![CDATA[El móvil <b>%s</b> está ocupado]]></string> + <string name="agent_internal_error_title">Error interno</string> + <string name="show_internal_errors">Mostrar errores internos</string> + <string name="failed_to_create_user_invalid_title">¡Nombre mostrado no válido!</string> + <string name="agent_critical_error_desc">Por favor, informa a los desarrolladores: +\n%s +\n +\nSe recomienda reiniciar la aplicación.</string> + <string name="message_too_large">Mensaje demasiado largo</string> + <string name="remote_host_error_disconnected"><![CDATA[El móvil <b>%s</b> se ha desconectado]]></string> + <string name="agent_internal_error_desc">Por favor, informa a los desarrolladores: +\n%s</string> + <string name="restart_chat_button">Reiniciar chat</string> + <string name="past_member_vName">Miembro pasado %1$s</string> + <string name="profile_update_event_member_name_changed">el miembro %1$s ha cambiado a %2$s</string> + <string name="profile_update_event_removed_address">dirección de contacto eliminada</string> + <string name="profile_update_event_removed_picture">imagen de perfil eliminada</string> + <string name="profile_update_event_set_new_address">nueva dirección de contacto</string> + <string name="profile_update_event_set_new_picture">nueva imagen de perfil</string> + <string name="call_service_notification_audio_call">Llamada</string> + <string name="call_service_notification_end_call">Llamada finalizada</string> + <string name="call_service_notification_video_call">Videollamada</string> + <string name="unable_to_open_browser_title">Error al abrir el navegador</string> + <string name="unable_to_open_browser_desc">Para llamadas se requiere el navegador web predeterminado. Por favor, configura el navegador predeterminado en el sistema y comparte más información con los desarrolladores.</string> </resources> \ No newline at end of file diff --git a/apps/multiplatform/common/src/commonMain/resources/MR/fa/strings.xml b/apps/multiplatform/common/src/commonMain/resources/MR/fa/strings.xml index 47ea9f2e4b..53d9859802 100644 --- a/apps/multiplatform/common/src/commonMain/resources/MR/fa/strings.xml +++ b/apps/multiplatform/common/src/commonMain/resources/MR/fa/strings.xml @@ -113,4 +113,47 @@ <string name="failed_to_create_user_duplicate_desc">شما یک نمایه گپ با نام نمایشی یکسان دارید، لطفا نام دیگری انتخاب کنید.</string> <string name="error_creating_address">خطا در ایجاد نشانی</string> <string name="ensure_xftp_server_address_are_correct_format_and_unique">مطمئن شوید قالب آدرس‌های سرور XFTP صحیح است، در خط‌های جدا نوشته شده و تکرار نشده‌اند.</string> + <string name="error_accepting_contact_request">خطا در پذیرش درخواست مخاطب</string> + <string name="sender_may_have_deleted_the_connection_request">فرستنده ممکن است درخواست اتصال را حذف کرده باشد.</string> + <string name="error_deleting_note_folder">خطا در حذف یادداشت‌های خصوصی</string> + <string name="error_aborting_address_change">خطا در لغو تغییر نشانی</string> + <string name="error_synchronizing_connection">خطا در انطباق زمانی اتصال</string> + <string name="error_smp_test_failed_at_step">آزمایش در گام %s ناموفق بود.</string> + <string name="error_xftp_test_server_auth">سرور برای بارگذازی به اجازه نیاز دارد، گذرواژه را بررسی کنید</string> + <string name="error_smp_test_certificate">احتمال دارد اثر انگشت گواهینامه در نشانی سرور نادرست باشد</string> + <string name="smp_server_test_create_queue">ایجاد صف</string> + <string name="smp_server_test_upload_file">بارگذاری پرونده</string> + <string name="smp_server_test_download_file">بارگیری پرونده</string> + <string name="smp_server_test_compare_file">مقایسه پرونده</string> + <string name="smp_server_test_delete_file">حذف پرونده</string> + <string name="error_deleting_user">خطا در حذف نمایه کاربر</string> + <string name="error_updating_user_privacy">خطا در به‌روزرسانی حریم خصوصی کاربر</string> + <string name="error_deleting_contact">خطا در حذف مخاطب</string> + <string name="error_deleting_group">خطا در حذف گروه</string> + <string name="error_deleting_contact_request">خطا در حذف درخواست مخاطب</string> + <string name="error_deleting_pending_contact_connection">خطا در حذف اتصال معلق مخاطب</string> + <string name="error_changing_address">خطا در تغییر نشانی</string> + <string name="error_setting_address">خطا در تنظیم نشانی</string> + <string name="error_alert_title">خطا</string> + <string name="smp_server_test_connect">اتصال</string> + <string name="smp_server_test_disconnect">قطع اتصال</string> + <string name="smp_server_test_secure_queue">ایمن‌سازی صف</string> + <string name="smp_server_test_delete_queue">حذف صف</string> + <string name="smp_server_test_create_file">ایجاد پرونده</string> + <string name="error_smp_test_server_auth">سرور برای ایجاد صف داده‌ها به اجازه نیاز دارد، گذرواژه را بررسی کنید</string> + <string name="connection_error_auth_desc">مگر اینکه مخاطبتان اتصال را حذف کرده یا این لینک قبلا استفاده شده باشد، ممکن است این یک اشکال باشد - لطفا آن را گزارش دهید. +\nبرای متصل شدن، لطفا از مخاطبتان بخواهید لینک اتصال دیگری ایجاد کند و بررسی کنید که اتصال شبکه باثباتی دارید.</string> + <string name="possible_slow_function_title">عملکرد کند</string> + <string name="possible_slow_function_desc">اجرای این عملکرد زمان زیادی می‌گیرد: %1$d ثانیه: %2$s</string> + <string name="icon_descr_instant_notifications">اعلان‌های آنی</string> + <string name="service_notifications_disabled">اعلان‌های آنی غیرفعال شده‌اند!</string> + <string name="service_notifications">اعلان‌های آنی!</string> + <string name="note_folder_local_display_name">یادداشت‌های خصوصی</string> + <string name="blocked_by_admin_item_description">مسدود شده توسط مدیر</string> + <string name="blocked_by_admin_items_description">%d پیام توسط مدیر مسدود شده</string> + <string name="it_can_disabled_via_settings_notifications_still_shown"><![CDATA[<b>به وسیله تنظیمات می‌تواند غیرفعال شود</b> – اعلان‌ها تا زمانی که برنامه در حال اجراست، همچنان نمایش داده می‌شوند.]]></string> + <string name="database_migration_in_progress">جابه‌جایی پایگاه داده در حال جریان است. +\nممکن است دقایقی زمان ببرد.</string> + <string name="turn_off_battery_optimization"><![CDATA[برای استفاده از آن، لطفا در دیالوگ بعدی<b>به SimpleX اجازه دهید در پس‌زمینه اجرا شود</b>. در غیر این صورت، اعلان‌ها غیرفعال خواهند شد.]]></string> + <string name="to_preserve_privacy_simplex_has_background_service_instead_of_push_notifications_it_uses_a_few_pc_battery"><![CDATA[برای حفاظت از حریم خصوصیتان، به جای اعلان‌های رانشی، برنامه یک <b>سرویس پس‌زمنیه SimpleX</b> دارد – سرویس، هر روز درصد معدودی از باتری را استفاده می‌کند.]]></string> </resources> \ No newline at end of file diff --git a/apps/multiplatform/common/src/commonMain/resources/MR/fr/strings.xml b/apps/multiplatform/common/src/commonMain/resources/MR/fr/strings.xml index b43eb64082..b0ebf891e9 100644 --- a/apps/multiplatform/common/src/commonMain/resources/MR/fr/strings.xml +++ b/apps/multiplatform/common/src/commonMain/resources/MR/fr/strings.xml @@ -89,7 +89,7 @@ <string name="periodic_notifications_desc">L\'application récupère périodiquement les nouveaux messages - elle utilise un peu votre batterie chaque jour. L\'application n\'utilise pas les notifications push - les données de votre appareil ne sont pas envoyées aux serveurs.</string> <string name="to_preserve_privacy_simplex_has_background_service_instead_of_push_notifications_it_uses_a_few_pc_battery"><![CDATA[Pour protéger votre vie privée, au lieu des notifications push, l\'application possède un <b>SimpleX service de fond</b> - il utilise quelques pour cent de la batterie par jour.]]></string> <string name="hide_notification">Cacher</string> - <string name="settings_notification_preview_mode_title">Montrer l\'aperçu</string> + <string name="settings_notification_preview_mode_title">Afficher l\'aperçu</string> <string name="notification_preview_mode_contact">Nom du contact</string> <string name="notification_preview_somebody">Contact masqué :</string> <string name="notification_preview_new_message">nouveau message</string> @@ -410,7 +410,7 @@ <string name="smp_servers_your_server_address">Votre adresse de serveur</string> <string name="smp_servers_invalid_address">Adresse de serveur invalide !</string> <string name="smp_servers_check_address">Vérifiez l\'adresse du serveur et réessayez.</string> - <string name="using_simplex_chat_servers">Utilise les serveurs SimpleX Chat.</string> + <string name="using_simplex_chat_servers">Vous utilisez les serveurs SimpleX.</string> <string name="how_to">Comment faire</string> <string name="enter_one_ICE_server_per_line">Serveurs ICE (un par ligne)</string> <string name="error_saving_ICE_servers">Erreur lors de la sauvegarde des serveurs ICE</string> @@ -584,7 +584,7 @@ <string name="your_calls">Vos appels</string> <string name="always_use_relay">Se connecter via relais</string> <string name="call_on_lock_screen">Appels en écran verrouillé :</string> - <string name="show_call_on_lock_screen">Montrer</string> + <string name="show_call_on_lock_screen">Afficher</string> <string name="no_call_on_lock_screen">Désactiver</string> <string name="your_ice_servers">Vos serveurs ICE</string> <string name="webrtc_ice_servers">Serveurs WebRTC ICE</string> @@ -684,7 +684,7 @@ <string name="snd_group_event_changed_role_for_yourself">vous avez modifié votre rôle pour %s</string> <string name="snd_group_event_user_left">vous avez quitté</string> <string name="snd_group_event_group_profile_updated">mise à jour du profil de groupe</string> - <string name="rcv_conn_event_switch_queue_phase_completed">adresse modifiée pour vous</string> + <string name="rcv_conn_event_switch_queue_phase_completed">changement de l\'adresse du contact</string> <string name="snd_conn_event_switch_queue_phase_changing_for_member">changement d\'adresse pour %s…</string> <string name="snd_conn_event_switch_queue_phase_changing">changement d\'adresse…</string> <string name="group_member_role_member">membre</string> @@ -1117,10 +1117,10 @@ <string name="opening_database">Ouverture de la base de données…</string> <string name="learn_more_about_address">À propos de l\'adresse SimpleX</string> <string name="learn_more">En savoir plus</string> - <string name="you_can_share_your_address">Vous pouvez partager votre adresse sous la forme d\'un lien ou d\'un code QR - tout le monde peut se connecter à vous.</string> + <string name="you_can_share_your_address">Vous pouvez partager votre adresse sous la forme d\'un lien ou d\'un code QR - tout le monde peut l\'utiliser pour vous contacter.</string> <string name="you_wont_lose_your_contacts_if_delete_address">Vous ne perdrez pas vos contacts si vous supprimez votre adresse ultérieurement.</string> <string name="simplex_address">Adresse SimpleX</string> - <string name="you_can_accept_or_reject_connection">Lorsque des personnes demandent à se connecter, vous pouvez les accepter ou les refuser.</string> + <string name="you_can_accept_or_reject_connection">Vous pouvez accepter ou refuser les demandes de contacts.</string> <string name="theme_colors_section_title">COULEURS DU THÈME</string> <string name="your_contacts_will_remain_connected">Vos contacts resteront connectés.</string> <string name="share_address_with_contacts_question">Partager l\'adresse avec vos contacts \?</string> @@ -1155,7 +1155,7 @@ <string name="customize_theme_title">Personnaliser le thème</string> <string name="continue_to_next_step">Continuer</string> <string name="error_setting_address">Erreur lors du réglage de l\'adresse</string> - <string name="create_address_and_let_people_connect">Créez une adresse pour permettre aux gens de vous contacter.</string> + <string name="create_address_and_let_people_connect">Vous pouvez créer une adresse pour permettre aux autres utilisateurs de vous contacter.</string> <string name="enter_welcome_message">Entrez un message de bienvenue…</string> <string name="you_can_create_it_later">Vous pouvez la créer plus tard</string> <string name="email_invite_body">Bonjour ! @@ -1282,7 +1282,7 @@ <string name="snd_conn_event_ratchet_sync_required">renégociation de chiffrement requise pour %s</string> <string name="renegotiate_encryption">Renégocier le chiffrement</string> <string name="receipts_contacts_override_disabled">L\'envoi d\'accusés de réception est désactivé pour les contacts de %d</string> - <string name="snd_conn_event_ratchet_sync_started">accord sur le chiffrement pour %s…</string> + <string name="snd_conn_event_ratchet_sync_started">négociation du chiffrement avec %s…</string> <string name="receipts_section_contacts">Contacts</string> <string name="receipts_contacts_disable_for_all">Désactiver pour tous</string> <string name="receipts_contacts_disable_keep_overrides">Désactiver (conserver les remplacements)</string> @@ -1305,7 +1305,7 @@ <string name="receipts_contacts_title_enable">Activer les accusés de réception \?</string> <string name="receipts_contacts_title_disable">Désactiver les accusés de réception \?</string> <string name="receipts_contacts_override_enabled">L\'envoi d\'accusés de réception est activé pour les contacts de %d</string> - <string name="conn_event_ratchet_sync_started">accord sur le chiffrement…</string> + <string name="conn_event_ratchet_sync_started">négociation du chiffrement…</string> <string name="conn_event_ratchet_sync_agreed">chiffrement accepté</string> <string name="conn_event_ratchet_sync_ok">chiffrement OK</string> <string name="conn_event_ratchet_sync_allowed">renégociation de chiffrement autorisée</string> @@ -1398,7 +1398,7 @@ <string name="compose_send_direct_message_to_connect">Envoyer un message direct pour vous connecter</string> <string name="member_contact_send_direct_message">envoyer un message direct</string> <string name="rcv_group_event_member_created_contact">s\'est connecté.e de manière directe</string> - <string name="expand_verb">Développer</string> + <string name="expand_verb">Étendre</string> <string name="connect_plan_repeat_connection_request">Répéter la demande de connexion ?</string> <string name="rcv_direct_event_contact_deleted">contact supprimé</string> <string name="connect_plan_you_are_already_connecting_to_vName"><![CDATA[Vous êtes déjà connecté(e) à <b>%1$s</b>.]]></string> @@ -1612,9 +1612,31 @@ <string name="profile_update_event_member_name_changed">le membre %1$s est devenu %2$s</string> <string name="profile_update_event_removed_address">suppression de l\'adresse de contact</string> <string name="profile_update_event_removed_picture">suppression de la photo de profil</string> - <string name="profile_update_event_set_new_address">définir une nouvelle adresse de contact</string> - <string name="profile_update_event_set_new_picture">définir une nouvelle image de profil</string> + <string name="profile_update_event_set_new_address">a changé d\'adresse de contact</string> + <string name="profile_update_event_set_new_picture">a changé d\'image de profil</string> <string name="profile_update_event_updated_profile">profil mis à jour</string> <string name="clear_note_folder_question">Effacer les notes privées ?</string> <string name="saved_message_title">Message enregistré</string> + <string name="block_for_all">Bloqué pour tous</string> + <string name="member_blocked_by_admin">Bloqué par l\'administrateur</string> + <string name="member_info_member_blocked">bloqué</string> + <string name="error_blocking_member_for_all">Erreur lors du blocage du membre pour tous</string> + <string name="blocked_by_admin_items_description">%d messages bloqués par l\'administrateur</string> + <string name="blocked_by_admin_item_description">bloqué par l\'administrateur</string> + <string name="rcv_group_event_member_blocked">%s bloqué</string> + <string name="rcv_group_event_member_unblocked">%s débloqué</string> + <string name="snd_group_event_member_blocked">vous avez bloqué %s</string> + <string name="snd_group_event_member_unblocked">vous avez débloqué %s</string> + <string name="message_too_large">Message trop volumineux</string> + <string name="unblock_for_all">Débloquer pour tous</string> + <string name="block_for_all_question">Bloquer le membre pour tous ?</string> + <string name="database_migration_in_progress">La migration de la base de données est en cours. +\nCela peut prendre quelques minutes.</string> + <string name="unblock_for_all_question">Débloquer le membre pour tous ?</string> + <string name="welcome_message_is_too_long">Le message de bienvenue est trop long</string> + <string name="call_service_notification_video_call">Appel vidéo</string> + <string name="call_service_notification_end_call">Fin de l\'appel</string> + <string name="call_service_notification_audio_call">Appel audio</string> + <string name="unable_to_open_browser_desc">Le navigateur web par défaut est requis pour les appels. Veuillez configurer le navigateur par défaut dans le système et partager plus d\'informations avec les développeurs.</string> + <string name="unable_to_open_browser_title">Erreur lors de l\'ouverture du navigateur</string> </resources> \ No newline at end of file diff --git a/apps/multiplatform/common/src/commonMain/resources/MR/hu/strings.xml b/apps/multiplatform/common/src/commonMain/resources/MR/hu/strings.xml index 4c8ceed529..a323741f5c 100644 --- a/apps/multiplatform/common/src/commonMain/resources/MR/hu/strings.xml +++ b/apps/multiplatform/common/src/commonMain/resources/MR/hu/strings.xml @@ -6,179 +6,179 @@ <string name="group_info_section_title_num_members">%1$s TAG</string> <string name="chat_item_ttl_month">1 hónap</string> <string name="chat_item_ttl_week">1 hét</string> - <string name="v5_3_new_interface_languages">6 új kezelőfelület nyelv</string> + <string name="v5_3_new_interface_languages">6 új felületi nyelv</string> <string name="send_disappearing_message_5_minutes">5 perc</string> <string name="send_disappearing_message_1_minute">1 perc</string> - <string name="learn_more_about_address">A SimpleX címről</string> + <string name="learn_more_about_address">A SimpleX azonosítóról</string> <string name="abort_switch_receiving_address_question">Címváltoztatás megszakítása?</string> <string name="abort_switch_receiving_address_confirm">Megszakítás</string> <string name="send_disappearing_message_30_seconds">30 másodperc</string> - <string name="one_time_link_short">Egyszer használatos link</string> - <string name="contact_wants_to_connect_via_call">%1$s szeretne kapcsolatba lépni veled</string> - <string name="about_simplex_chat">A SimpleX chatről</string> + <string name="one_time_link_short">Egyszer használatos hivatkozás</string> + <string name="contact_wants_to_connect_via_call">%1$s szeretne kapcsolatba lépni önnel ezen keresztül:</string> + <string name="about_simplex_chat">A SimpleX Chat névjegye</string> <string name="chat_item_ttl_day">1 nap</string> <string name="abort_switch_receiving_address">Címváltoztatás megszakítása</string> - <string name="about_simplex">A SimpleX-ről</string> + <string name="about_simplex">A SimpleX névjegye</string> <string name="color_primary">Kiemelés</string> - <string name="callstatus_accepted">elfogadott hívás</string> - <string name="network_enable_socks_info">Kapcsolódás a szerverekhez SOCKS proxy segítségével a %d porton? A proxyt el kell indítani mielőtt bekapcsolnád ezt az opciót.</string> - <string name="accept_feature">Elfogad</string> - <string name="accept_call_on_lock_screen">Elfogad</string> + <string name="callstatus_accepted">fogadott hívás</string> + <string name="network_enable_socks_info">Hozzáférés a kiszolgálókhoz SOCKS proxy segítségével a %d porton? A proxyt el kell indítani, mielőtt engedélyezné ezt az opciót.</string> + <string name="accept_feature">Elfogadás</string> + <string name="accept_call_on_lock_screen">Elfogadás</string> <string name="above_then_preposition_continuation">fentről, utána:</string> - <string name="accept_contact_incognito_button">Elfogadás inkognítóban</string> - <string name="accept_connection_request__question">Elfogadod a kapcsolatfelvételt?</string> - <string name="accept_contact_button">Elfogad</string> - <string name="accept">Elfogad</string> - <string name="add_address_to_your_profile">Add hozzá a címet a profilodhoz, így a kapcsolataid megoszthatják azt más emberekkel. A profilod változtatásai így frissítésre kerülnek a kapcsolataidnál is!</string> + <string name="accept_contact_incognito_button">Fogadás inkognítóban</string> + <string name="accept_connection_request__question">Kapcsolatfelvétel elfogadása?</string> + <string name="accept_contact_button">Elfogadás</string> + <string name="accept">Elfogadás</string> + <string name="add_address_to_your_profile">Azonosító hozzáadása a profilhoz, hogy az ismerősök megoszthassák másokkal. A profilfrissítés elküldésre kerül az ismerősők számára.</string> <string name="color_primary_variant">További kiemelés</string> <string name="callstatus_error">hiba a hívásban</string> <string name="v5_4_block_group_members">Csoporttagok blokkolása</string> <string name="la_authenticate">Hitelesítés</string> - <string name="empty_chat_profile_is_created">Egy üres chat profil létre lett hozva a megadott névvel és az app normál módon megnyílik.</string> + <string name="empty_chat_profile_is_created">Egy üres csevegési profil jön létre a megadott névvel, és az alkalmazás a szokásos módon megnyílik.</string> <string name="feature_cancelled_item">megszakítva %s</string> - <string name="smp_servers_preset_add">Adj hozzá egyedi szervereket</string> + <string name="smp_servers_preset_add">Előre beállított kiszolgálók hozzáadása</string> <string name="calls_prohibited_with_this_contact">A hang- és videóhívások le vannak tiltva.</string> - <string name="network_session_mode_entity_description">Külön TCP kapcsolat (és SOCKS bejelentkezési adatok) lesznek használva <b>minden ismerősre és csoport tagra</b> -\n<b>Tudnivaló</b>: ha sok ismerősöd van, az akkumulátor- és adat használatod jelentősen megnőhet és néhány kapcsolódási kísérlet sikertelen lehet.</string> - <string name="icon_descr_cancel_link_preview">URL link előnézet megszakítása</string> - <string name="network_session_mode_user_description"><![CDATA[Külön TCP kapcsolat (és SOCKS bejelentkezési adatok) lesznek használva <b>minden chat profilodra az appban</b>.]]></string> - <string name="both_you_and_your_contact_can_send_disappearing">Mindketten, te is és az ismerősöd is küldhet eltűnő üzeneteket.</string> + <string name="network_session_mode_entity_description">Külön TCP kapcsolat (és SOCKS bejelentkezési adatok) lesz használva <b>minden ismerős és csoporttag számára</b>. +\n<b>Figyelem</b>: ha sok ismerőse van, az akkumulátor- és adathasználat jelentősen megnövekedhet és néhány kapcsolódási kísérlet sikertelen lehet.</string> + <string name="icon_descr_cancel_link_preview">Hivatkozás előnézet megszakítása</string> + <string name="network_session_mode_user_description"><![CDATA[Külön TCP kapcsolat (és SOCKS bejelentkezési adatok) lesz használva <b>az alkalmazásban minden csevegési profiljához </b>.]]></string> + <string name="both_you_and_your_contact_can_send_disappearing">Mindkét fél küldhet eltűnő üzeneteket.</string> <string name="keychain_is_storing_securely">Az Android Keystore-t a jelmondat biztonságos tárolására használják - lehetővé teszi az értesítési szolgáltatás működését.</string> <string name="alert_title_msg_bad_hash">Téves üzenet hash</string> <string name="color_background">Háttér</string> - <string name="socks_proxy_setting_limitations"><![CDATA[<b>Tudnivaló</b>: az üzenet- és fájl relay szerverek SOCKS proxy által vannak kapcsolatban. A hívások és URL link előnézetek közvetlen kapcsolatot használnak.]]></string> - <string name="full_backup">App adatmentés</string> + <string name="socks_proxy_setting_limitations"><![CDATA[<b>Tudnivaló</b>: az üzenet- és fájl átjátszók SOCKS proxy által vannak kapcsolatban. A hívások és URL hivatkozás előnézetek közvetlen kapcsolatot használnak.]]></string> + <string name="full_backup">Alkalmazásadatok biztonsági mentése</string> <string name="database_initialization_error_title">Az adatbázis inicializálása sikertelen</string> - <string name="all_your_contacts_will_remain_connected_update_sent">A kapcsolat megmarad az összes Ismerősöddel. Profil változtatások frissítésre kerülnek az ismerőseidnél.</string> - <string name="v4_5_transport_isolation_descr">Chat profile (alap beállítás) avagy kapcsolat által (BÉTA).</string> + <string name="all_your_contacts_will_remain_connected_update_sent">Ismerőseivel kapcsolatban marad. A profil változtatások frissítésre kerülnek az ismerősöknél.</string> + <string name="v4_5_transport_isolation_descr">A csevegési profil által (alap beállítás), vagy kapcsolat által (BÉTA).</string> <string name="connect__a_new_random_profile_will_be_shared">Egy új véletlenszerű profil lesz megosztva.</string> - <string name="allow_voice_messages_only_if">Hangüzenetek küldésének engedélyezése kizárólag abban az esetben, ha a másik fél is engedélyezi.</string> + <string name="allow_voice_messages_only_if">Hangüzenetek küldésének engedélyezése kizárólag abban az esetben, ha ismerőse is engedélyezi.</string> <string name="app_version_code">Az alkalmazás build száma: %s</string> <string name="audio_video_calls">Hang-/videóhívások</string> - <string name="network_settings">Haladó hálózati beállítások</string> - <string name="allow_your_contacts_to_send_voice_messages">Ismerőseid küldhetnek hangüzeneteket.</string> + <string name="network_settings">Speciális hálózati beállítások</string> + <string name="allow_your_contacts_to_send_voice_messages">Hangüzenetek küldésének engedélyezése ismerősök számára</string> <string name="settings_audio_video_calls">Hang- és videóhívások</string> - <string name="v5_3_encrypt_local_files_descr">Az app titkosítja a helyi fájlokat (a videók kivételével).</string> + <string name="v5_3_encrypt_local_files_descr">Az alkalmazás titkosítja a helyi fájlokat (a videók kivételével).</string> <string name="answer_call">Hívás fogadása</string> - <string name="allow_your_contacts_to_send_disappearing_messages">Ismerőseid küldhetnek eltűnő üzeneteket.</string> - <string name="connect_plan_already_connecting">Már kapcsolódik!</string> - <string name="cannot_receive_file">Nem tud fájlt fogadni</string> + <string name="allow_your_contacts_to_send_disappearing_messages">Eltűnő üzenetek engedélyezése ismerősök számára.</string> + <string name="connect_plan_already_connecting">Kapcsolódás folyamatban!</string> + <string name="cannot_receive_file">Nem lehet fogadni a fájlt</string> <string name="auth_unavailable">Hitelesítés elérhetetlen</string> <string name="app_version_title">Alkalmazás verzió</string> <string name="button_add_welcome_message">Üdvözlő üzenet hozzáadása</string> <string name="snd_conn_event_ratchet_sync_started">a(z) %s titkosításának elfogadása…</string> <string name="available_in_v51">" \nElérhető a v5.1-ben"</string> - <string name="both_you_and_your_contacts_can_delete">Mindketten, te is és az ismerősöd is véglegesen törölhet elküldött üzeneteket. (24 óra)</string> + <string name="both_you_and_your_contacts_can_delete">Mindkét fél visszafordíthatatlanul törölheti az elküldött üzeneteket. (24 óra)</string> <string name="v5_4_better_groups">Javított csoportok</string> - <string name="clear_chat_warning">Minden üzenet törlésre kerül - ezt nem lehet visszavonni! Az üzenetek CSAK nálad törlődnek.</string> + <string name="clear_chat_warning">Minden üzenet törlésre kerül - ezt nem vonható vissza! Az üzenetek CSAK az ön számára törlődnek.</string> <string name="icon_descr_call_ended">Hívás befejeződött</string> <string name="settings_section_title_calls">HÍVÁSOK</string> <string name="rcv_group_and_other_events">és %d egyéb esemény</string> <string name="address_section_title">Cím</string> - <string name="connect_plan_already_joining_the_group">Már csatlakozik a csoporthoz!</string> + <string name="connect_plan_already_joining_the_group">Csatlakozás folyamatban!</string> <string name="auto_accept_contact">Automatikus elfogadás</string> <string name="notifications_mode_service_desc">A háttérszolgáltatás mindig fut - az értesítések azonnal megjelennek, amint üzenetek vannak.</string> - <string name="allow_to_delete_messages">Elküldött üzenetek végleges törlésének engedélyezése. (24 óra)</string> - <string name="both_you_and_your_contact_can_send_voice">Mindketten, te is és az ismerősöd is küldhet hangüzeneteket.</string> + <string name="allow_to_delete_messages">Elküldött üzenetek visszafordíthatatlan törlésének engedélyezése. (24 óra)</string> + <string name="both_you_and_your_contact_can_send_voice">Mindkét fél küldhet hangüzeneteket.</string> <string name="alert_title_msg_bad_id">Téves üzenet ID</string> - <string name="allow_your_contacts_adding_message_reactions">Ismerőseid küldhetnek reakciókat az üzenetekre.</string> - <string name="allow_to_send_voice">Hangüzenetek küldése engedélyezve.</string> - <string name="allow_message_reactions_only_if">Üzenet reakciók engedélyezése kizárólag abban az esetben, ha a másik fél is engedélyezi.</string> + <string name="allow_your_contacts_adding_message_reactions">Ismerősök általi üzenetreakciók hozzáadásának engedélyezése.</string> + <string name="allow_to_send_voice">Hangüzenetek küldésének engedélyezése.</string> + <string name="allow_message_reactions_only_if">Üzenetreakciók engedélyezése kizárólag abban az esetben, ha ismerőse is engedélyezi.</string> <string name="back">Vissza</string> <string name="it_can_disabled_via_settings_notifications_still_shown"><![CDATA[<b>Kikapcsolható a beállításokban</b> – az értesítések továbbra is megjelenítésre kerülnek amíg az alkalmazás fut.]]></string> - <string name="v4_2_group_links_desc">Az adminok létrehozhatnak linkeket a csoporthoz való csatlakozáshoz.</string> - <string name="call_on_lock_screen">Hívások a lezárási képernyőn:</string> + <string name="v4_2_group_links_desc">Az adminok hivatkozásokat hozhatnak létre a csoportokhoz való csatlakozáshoz.</string> + <string name="call_on_lock_screen">Hívások a zárolási képernyőn:</string> <string name="conn_event_ratchet_sync_started">titkosítás elfogadása…</string> - <string name="invite_prohibited">Az ismerősök meghívása le van tiltva!</string> + <string name="invite_prohibited">Ismerősök meghívása le van tiltva!</string> <string name="integrity_msg_bad_id">téves üzenet ID</string> - <string name="v4_2_auto_accept_contact_requests">Ismerősnek jelölések automatikus elfogadása</string> - <string name="impossible_to_recover_passphrase"><![CDATA[<b>Tudnivaló</b>: NEM fogod tudni helyreállítani vagy megváltoztatni a jelmondatot az esetben ha elveszíted.]]></string> + <string name="v4_2_auto_accept_contact_requests">Ismerős jelölések automatikus elfogadása</string> + <string name="impossible_to_recover_passphrase"><![CDATA[<b>Figyelem</b>: NEM fogja tudni helyreállítani vagy megváltoztatni a jelmondatot abban az esetben, ha elveszíti.]]></string> <string name="callstatus_calling">hívás…</string> <string name="color_secondary_variant">További másodlagos</string> - <string name="smp_servers_add_to_another_device">Hozzáadás másik eszközhöz</string> - <string name="allow_message_reactions">Üzenet reakciók engedélyezése.</string> + <string name="smp_servers_add_to_another_device">Hozzáadás egy másik eszközhöz</string> + <string name="allow_message_reactions">Üzenetreakciók engedélyezése.</string> <string name="icon_descr_cancel_file_preview">Fájl előnézet megszakítása</string> - <string name="all_group_members_will_remain_connected">Minden csoporttag kapcsolatban marad.</string> - <string name="onboarding_notifications_mode_service_desc"><![CDATA[<b>Több akkumulátort használ</b>! Háttérszolgáltatás mindig fut - értesítések megjelennek azonnal, ahogy új üzenetek érkeznek.]]></string> + <string name="all_group_members_will_remain_connected">Minden csoporttag csatlakoztatva marad.</string> + <string name="onboarding_notifications_mode_service_desc"><![CDATA[<b>Több akkumulátort használ</b>! Háttérszolgáltatás mindig fut - az értesítések megjelennek, amint az üzenetek elérhetővé válnak.]]></string> <string name="block_member_confirmation">Blokkolás</string> <string name="group_member_role_admin">admin</string> <string name="icon_descr_cancel_image_preview">Fénykép előnézet megszakítása</string> - <string name="v5_1_self_destruct_passcode_descr">Minden adat törlődik miután a jelkód bevitelre került.</string> - <string name="icon_descr_video_asked_to_receive">Felkértek a videó fogadására</string> + <string name="v5_1_self_destruct_passcode_descr">A jelkód megadása után minden adat törlésre kerül.</string> + <string name="icon_descr_video_asked_to_receive">Felkérték a videó fogadására</string> <string name="block_member_button">Tag blokkolása</string> - <string name="v5_2_more_things">Néhány további dolog</string> + <string name="v5_2_more_things">Még néhány dolog</string> <string name="authentication_cancelled">Hitelesítés megszakítva</string> - <string name="allow_to_send_files">A fájlok- és a médiatartalom küldése engedélyezve.</string> - <string name="users_delete_all_chats_deleted">Minden beszélgetés, illetve az összes üzenet törlésre kerül - ezt nem lehet visszavonni!</string> + <string name="allow_to_send_files">Fájlok és médiatartalom küldésének engedélyezése.</string> + <string name="users_delete_all_chats_deleted">Minden csevegés és üzenet törlésre kerül - ez nem vonható vissza!</string> <string name="icon_descr_audio_call">hanghívás</string> <string name="bold_text">félkövér</string> <string name="app_passcode_replaced_with_self_destruct">Az alkalmazás jelkód helyettesítésre kerül egy önmegsemmisítő jelkóddal.</string> <string name="v5_3_new_interface_languages_descr">Arab, bulgár, finn, héber, thai és ukrán - köszönet a felhasználóknak és a Weblate-nek!</string> - <string name="allow_voice_messages_question">Engedélyezed a hangüzenetek küldését?</string> - <string name="always_use_relay">Mindig használjon relay szervert</string> + <string name="allow_voice_messages_question">Hangüzenetek engedélyezése?</string> + <string name="always_use_relay">Mindig használjon átjátszó kiszolgálót</string> <string name="chat_preferences_always">mindig</string> <string name="call_already_ended">A hívás már befejeződött!</string> - <string name="turn_off_battery_optimization_button">Engedélyez</string> - <string name="all_your_contacts_will_remain_connected">A kapcsolat megmarad az összes Ismerősöddel.</string> - <string name="icon_descr_cancel_live_message">Élő chat üzenet megszakítása</string> - <string name="allow_irreversible_message_deletion_only_if">Üzenet végleges törlésének engedélyezése kizárólag abban az esetben, ha a másik fél is engedélyezi. (24 óra)</string> + <string name="turn_off_battery_optimization_button">Engedélyezés</string> + <string name="all_your_contacts_will_remain_connected">Minden ismerős csatlakoztatva marad.</string> + <string name="icon_descr_cancel_live_message">Élő csevegési üzenet megszakítása</string> + <string name="allow_irreversible_message_deletion_only_if">Üzenet végleges törlésének engedélyezése kizárólag abban az esetben, ha ismerőse is engedélyezi. (24 óra)</string> <string name="v4_6_audio_video_calls">Hang- és videóhívások</string> <string name="integrity_msg_bad_hash">téves üzenet hash</string> <string name="notifications_mode_service">Mindig bekapcsolva</string> - <string name="keychain_allows_to_receive_ntfs">Az Android Keystore fogja biztonságosan tárolni a jelmondatot app újraindítás vagy jelmondat változtatás után - lehetővé téve az értesítések fogadását.</string> - <string name="all_app_data_will_be_cleared">Minden alkalmazás adat törölve.</string> - <string name="onboarding_notifications_mode_off_desc"><![CDATA[<b>Legjobb akkumulátoridő</b>. Kizárólag akkor kapsz értesítéseket amikor fut az app (NINCS háttérszolgáltatás).]]></string> + <string name="keychain_allows_to_receive_ntfs">Az Android Keystore biztonságosan fogja tárolni a jelmondatot az alkalmazás újraindítása vagy a jelmondat megváltoztatás után - lehetővé téve az értesítések fogadását.</string> + <string name="all_app_data_will_be_cleared">Minden alkalmazásadat törölve.</string> + <string name="onboarding_notifications_mode_off_desc"><![CDATA[<b>Legjobb akkumulátoridő</b>. Csak akkor kap értesítést, ha az alkalmazás fut (NINCS háttérszolgáltatás).]]></string> <string name="appearance_settings">Megjelenés</string> - <string name="turning_off_service_and_periodic">Akkumulátor optimizáció aktív, a háttérszolgáltatás és a rendszeres új üzenet ellenőrzés kikapcsolva. Újra bekapcsolhatod ezeket a beállításokban.</string> + <string name="turning_off_service_and_periodic">Az akkumulátor optimalizálása aktív, mely kikapcsolja a háttérszolgáltatást és az új üzenetek rendszeres kérését. A beállításokon keresztül újra engedélyezhetők.</string> <string name="block_member_question">Tag blokkolása?</string> - <string name="callstatus_ended">a(z) %1$s hívás befejeződött</string> - <string name="onboarding_notifications_mode_periodic_desc"><![CDATA[<b>Jó akkumulátoridő</b>. A háttérszolgáltatás ellenőrzi az új üzeneteket 10 percenként. Hívásokról és fontos üzenetekről maradhatsz le.]]></string> + <string name="callstatus_ended">%1$s hívása befejeződött</string> + <string name="onboarding_notifications_mode_periodic_desc"><![CDATA[<b>Jó akkumulátoridő</b>. A háttérszolgáltatás 10 percenként ellenőrzi az új üzeneteket. Előfordulhat, hogy hívásokról vagy a sürgős üzeneteketről marad le.]]></string> <string name="group_member_role_author">szerző</string> - <string name="allow_your_contacts_irreversibly_delete">Engedélyezed az ismerőseidnek, hogy visszafordíthatatlanul törölhessék az elküldött üzeneteket. (24 óra)</string> + <string name="allow_your_contacts_irreversibly_delete">Elküldött üzenetek visszafordíthatatlan törlésének engedélyezése ismerősök számára. (24 óra)</string> <string name="cancel_verb">Megszakítás</string> - <string name="notifications_mode_off_desc">Az alkalmazás csak akkor tud értesítéseket fogadni amikor fut, a héttérszolgáltatás nem kerül elindításra.</string> + <string name="notifications_mode_off_desc">Az alkalmazás csak akkor tud értesítéseket fogadni amikor fut, háttérszolgáltatás nem indul el</string> <string name="v5_1_better_messages">Jobb üzenetek</string> - <string name="abort_switch_receiving_address_desc">A cím változtatás megszakításra kerül. A régi fogadó cím marad használatban.</string> - <string name="allow_verb">Engedélyez</string> - <string name="bad_desktop_address">Téves számítógép cím</string> + <string name="abort_switch_receiving_address_desc">A cím módosítása megszakad. A régi fogadási cím kerül felhasználásra.</string> + <string name="allow_verb">Engedélyezés</string> + <string name="bad_desktop_address">Hibás számítógép-azonosító</string> <string name="users_add">Profil hozzáadása</string> <string name="attach">Csatolás</string> <string name="v5_0_app_passcode">Alkalmazás jelkód</string> - <string name="icon_descr_asked_to_receive">Felkértek a kép fogadására</string> + <string name="icon_descr_asked_to_receive">Felkérték a kép fogadására</string> <string name="use_camera_button">Fényképező</string> - <string name="cannot_access_keychain">A Keystore-hoz nem sikerül hozzáférni az adatbázis jelszó elmentése végett</string> + <string name="cannot_access_keychain">A Keystore-hoz nem sikerül hozzáférni az adatbázis jelszó mentése végett</string> <string name="callstatus_in_progress">hívás folyamatban</string> <string name="auto_accept_images">Fotók automatikus elfogadása</string> - <string name="allow_your_contacts_to_call">Hang- és videóhívás engedélyezése az ismerőseid számára.</string> + <string name="allow_your_contacts_to_call">Hívások engedélyezése ismerősök számára.</string> <string name="settings_section_title_icon">ALKALMAZÁS IKON</string> - <string name="v4_3_improved_server_configuration_desc">Szerver hozzáadása QR kód befotózásával.</string> - <string name="allow_to_send_disappearing">Eltűnő üzenetek küldése engedélyezve.</string> - <string name="allow_disappearing_messages_only_if">Eltűnő üzenetek engedélyezése kizárólag abban az esetben, ha a másik fél is engedélyezi.</string> + <string name="v4_3_improved_server_configuration_desc">Kiszolgáló hozzáadása QR-kód beolvasásával.</string> + <string name="allow_to_send_disappearing">Eltűnő üzenetek küldésének engedélyezése.</string> + <string name="allow_disappearing_messages_only_if">Eltűnő üzenetek engedélyezése kizárólag abban az esetben, ha ismerőse is engedélyezi.</string> <string name="icon_descr_audio_off">Hang kikapcsolva</string> - <string name="allow_direct_messages">A közvetlen üzenetküldés csak a tagok számára engedélyezett.</string> + <string name="allow_direct_messages">Közvetlen üzenetek küldésének engedélyezése tagok részére.</string> <string name="settings_section_title_app">Alkalmazás</string> <string name="icon_descr_call_progress">Hívás folyamatban</string> - <string name="both_you_and_your_contact_can_add_message_reactions">Mindketten, te is és az ismerősöd is használhat üzenet reakciókat (emojik).</string> - <string name="both_you_and_your_contact_can_make_calls">Mindketten, te is és az ismerősöd is tud hívásokat indítani.</string> + <string name="both_you_and_your_contact_can_add_message_reactions">Mindkét fél is hozzáadhat üzenetreakciókat.</string> + <string name="both_you_and_your_contact_can_make_calls">Mindkét fél tud hívásokat indítani.</string> <string name="la_auth_failed">Hitelesítés sikertelen</string> - <string name="block_member_desc">Minden új üzenet %s -tól/től elrejtésre kerül.</string> + <string name="block_member_desc">Minden %s által írt új üzenet elrejtésre kerül!</string> <string name="app_version_name">Alkalmazás verzió: v%s</string> - <string name="allow_calls_only_if">Hívások engedélyezése kizárólag abban az esetben, ha a másik fél is engedélyezi.</string> - <string name="smp_servers_add">Szerver hozzáadása…</string> + <string name="allow_calls_only_if">Hívások engedélyezése kizárólag abban az esetben, ha ismerőse is engedélyezi.</string> + <string name="smp_servers_add">Kiszolgáló hozzáadása…</string> <string name="icon_descr_audio_on">Hang bekapcsolva</string> <string name="audio_call_no_encryption">hanghívás (nem e2e titkosított)</string> <string name="blocked_item_description">blokkolva</string> <string name="change_database_passphrase_question">Adatbázis jelmondat megváltoztatása?</string> <string name="callstate_connected">kapcsolódva</string> <string name="la_change_app_passcode">Jelkód megváltoztatása</string> - <string name="rcv_group_event_changed_member_role">a szerepkör %s -ról(-ről), %s -ra(-re) változott</string> - <string name="switch_receiving_address">A fogadó szerver címének megváltoztatása</string> + <string name="rcv_group_event_changed_member_role">%s szerepköre megváltozott erre: %s</string> + <string name="switch_receiving_address">A fogadó cím megváltoztatása</string> <string name="change_verb">Változtatás</string> <string name="confirm_passcode">Jelkód megerősítése</string> <string name="confirm_password">Jelszó megerősítése</string> <string name="change_member_role_question">Csoport szerepkör megváltoztatása?</string> - <string name="change_lock_mode">Lezárási mód megváltoztatása</string> + <string name="change_lock_mode">Zárolási mód megváltoztatása</string> <string name="notification_contact_connected">Kapcsolódva</string> <string name="rcv_group_event_member_connected">kapcsolódva</string> <string name="connect_via_link_verb">Kapcsolódás</string> @@ -188,35 +188,35 @@ <string name="change_role">Szerepkör megváltoztatása</string> <string name="icon_descr_server_status_connected">Kapcsolódva</string> <string name="auth_confirm_credential">Belépési adatok megerősítése</string> - <string name="switch_receiving_address_question">Fogadó szerver cím megváltoztatása?</string> - <string name="rcv_conn_event_switch_queue_phase_completed">megváltozott az azonosító számodra</string> + <string name="switch_receiving_address_question">Megváltoztatja a fogadó címet?</string> + <string name="rcv_conn_event_switch_queue_phase_completed">Cím megváltoztatva</string> <string name="change_self_destruct_mode">Önmegsemmisítő mód megváltoztatása</string> - <string name="rcv_group_event_changed_your_role">a szerepköröd megváltoztatva %s-ra(-re)</string> + <string name="rcv_group_event_changed_your_role">megváltoztatta az ön szerepkörét erre: %s</string> <string name="connect_button">Kapcsolódás</string> - <string name="connect_via_member_address_alert_title">Kapcsolódás közvetlenül?</string> + <string name="connect_via_member_address_alert_title">Közvetlen kapcsolódás?</string> <string name="smp_server_test_connect">Kapcsolódás</string> <string name="rcv_group_event_member_created_contact">közvetlenül kapcsolódva</string> <string name="connection_local_display_name">kapcsolat %1$d</string> - <string name="status_contact_has_e2e_encryption">az ismerősnél az e2e titkosítás elérhető</string> - <string name="v5_4_incognito_groups_descr">Csoport létrehozása véletlenszerűen létrehozott profillal.</string> - <string name="delete_contact_all_messages_deleted_cannot_undo_warning">Az ismerős és az összes üzenet törlésre kerül - ez visszafordíthatatlan!</string> - <string name="contacts_can_mark_messages_for_deletion">Ismerősök megjelölhetik az üzeneteket törlendőként; de te láthatod azokat.</string> - <string name="connect_via_invitation_link">Kapcsolódás Egyszer használatos linkkel?</string> - <string name="connect_via_link_or_qr">Kapcsolódás egy link / QR-kód által</string> + <string name="status_contact_has_e2e_encryption">az ismerős e2e titkosítással rendelkezik</string> + <string name="v5_4_incognito_groups_descr">Csoport létrehozása véletlenszerű profillal.</string> + <string name="delete_contact_all_messages_deleted_cannot_undo_warning">Az ismerős és az összes üzenet törlésre kerül - ez nem vonható vissza!</string> + <string name="contacts_can_mark_messages_for_deletion">Az ismerősök törlésre jelölhetnek üzeneteket ; megtekintheti őket.</string> + <string name="connect_via_invitation_link">Kapcsolódás egyszer használatos hivatkozással?</string> + <string name="connect_via_link_or_qr">Kapcsolódás egy hivatkozás / QR-kód által</string> <string name="connection_error_auth">Kapcsolódási hiba (AUTH)</string> <string name="notification_preview_mode_contact">Ismerős neve</string> <string name="connect_via_contact_link">Kapcsolódás ismerős azonosítója által?</string> - <string name="create_address">Cím létrehozása</string> + <string name="create_address">Azonosító létrehozása</string> <string name="copy_verb">Másolás</string> <string name="continue_to_next_step">Folytatás</string> - <string name="connect_plan_connect_via_link">Kapcsolódás egy linken keresztül?</string> - <string name="contact_already_exists">Az ismerős már létezik</string> + <string name="connect_plan_connect_via_link">Kapcsolódás egy hivatkozáson keresztül?</string> + <string name="contact_already_exists">Létező ismerős</string> <string name="core_version">Fő verzió: v%s</string> <string name="icon_descr_contact_checked">Ismerős ellenőrizve</string> <string name="connect_plan_connect_to_yourself">Kapcsolódás saját magához?</string> <string name="copied">Kimásolva a vágólapra</string> <string name="connection_request_sent">Kapcsolódási kérés elküldve!</string> - <string name="connecting_to_desktop">Kapcsolódás az asztali klienshez</string> + <string name="connecting_to_desktop">Kapcsolódás a számítógéphez</string> <string name="network_session_mode_entity">Kapcsolat</string> <string name="correct_name_to">Név helyesbítése erre: %s?</string> <string name="connection_timeout">Kapcsolat időtúllépés</string> @@ -226,153 +226,153 @@ <string name="info_row_connection">Kapcsolat</string> <string name="desktop_connection_terminated">Kapcsolat megszakítva</string> <string name="display_name_connection_established">Kapcsolat létrehozva</string> - <string name="status_contact_has_no_e2e_encryption">az ismerősnél az e2e titkosítás nem elérhető</string> - <string name="chat_preferences_contact_allows">Ez az ismerősöd engedélyezi</string> + <string name="status_contact_has_no_e2e_encryption">az ismerősnek nincs e2e titkosítása</string> + <string name="chat_preferences_contact_allows">Ismerős engedélyezi</string> <string name="notification_preview_somebody">Ismerős elrejtve:</string> - <string name="connect_to_desktop">Kapcsolódás az asztali klienshez</string> - <string name="icon_descr_context">Kontextus ikon</string> - <string name="connect_via_link">Kapcsolódás egy linken keresztül</string> + <string name="connect_to_desktop">Kapcsolódás számítógéphez</string> + <string name="icon_descr_context">Környezeti ikon</string> + <string name="connect_via_link">Kapcsolódás egy hivatkozáson keresztül</string> <string name="receipts_section_contacts">Ismerősök</string> <string name="connection_error">Kapcsolódási hiba</string> - <string name="alert_title_contact_connection_pending">Az ismerős még nem kapcsolódott!</string> + <string name="alert_title_contact_connection_pending">Az ismerős még nem csatlakozott!</string> <string name="v5_3_discover_join_groups_descr">- kapcsolódás könyvtár szolgáltatáshoz (BÉTA)! \n- kézbesítési igazolások (20 tagig). \n- gyorsabb és stabilabb</string> <string name="contribute">Hozzájárulás</string> - <string name="group_member_status_intro_invitation">csatlakozás (bemutatkozás meghívás)</string> + <string name="group_member_status_intro_invitation">csatlakozás (bemutatkozás meghívó)</string> <string name="create_simplex_address">SimpleX azonosító létrehozása</string> <string name="rcv_direct_event_contact_deleted">törölt ismerős</string> - <string name="delete_member_message__question">Tag üzenetének törlése?</string> - <string name="chat_is_running">A chat szolgáltatás működik (fut)</string> - <string name="share_one_time_link">Egyszer használatos meghívó link létrehozása</string> - <string name="delete_link">Link törlése</string> + <string name="delete_member_message__question">Csoporttag üzenet törlése?</string> + <string name="chat_is_running">A csevegés fut</string> + <string name="share_one_time_link">Egyszer használatos meghívó hivatkozás létrehozása</string> + <string name="delete_link">Hivatkozás törlése</string> <string name="notifications_mode_periodic_desc">Új üzenetek ellenőrzése 10 percenként, legfeljebb 1 percen keresztül.</string> <string name="delete_database">Adatbázis törlése</string> <string name="create_group_button">Csoport létrehozása</string> - <string name="network_session_mode_user">Chat profil</string> + <string name="network_session_mode_user">Csevegési profil</string> <string name="create_another_profile_button">Profil létrehozása</string> <string name="connected_desktop">Csatlakoztatott számítógép</string> <string name="share_text_deleted_at">Törölve ekkor: %s</string> <string name="info_row_deleted_at">Törölve ekkor</string> <string name="v4_6_chinese_spanish_interface">Kínai és spanyol kezelőfelület.</string> <string name="alert_title_cant_invite_contacts">Ismerősök meghívása nem lehetséges!</string> - <string name="chat_is_stopped_indication">A chat szolgáltatás leállt (nem fut)</string> + <string name="chat_is_stopped_indication">A csevegés leállt</string> <string name="theme_dark">Sötét</string> <string name="create_profile">Profil létrehozása</string> <string name="rcv_group_event_group_deleted">törölt csoport</string> <string name="full_deletion">Törlés mindenkinél</string> - <string name="button_create_group_link">Link létrehozása</string> - <string name="chat_preferences">Chat beállítások</string> - <string name="chat_archive_header">Chat archívum</string> + <string name="button_create_group_link">Hivatkozás létrehozása</string> + <string name="chat_preferences">Csevegési beállítások</string> + <string name="chat_archive_header">Csevegési archívum</string> <string name="delete_profile">Profil törlése</string> - <string name="la_current_app_passcode">Jelenlegi Jelkód</string> + <string name="la_current_app_passcode">Jelenlegi jelkód</string> <string name="group_member_status_connecting">kapcsolódás</string> <string name="confirm_new_passphrase">Új jelmondat megerősítése…</string> <string name="group_connection_pending">kapcsolódás…</string> - <string name="delete_chat_profile">Chat profil törlés</string> + <string name="delete_chat_profile">Csevegési profil törlése</string> <string name="custom_time_picker_custom">egyedi</string> <string name="callstatus_connecting">hívás kapcsolódik…</string> - <string name="customize_theme_title">Színséma személyreszabása</string> + <string name="customize_theme_title">Téma személyre szabása</string> <string name="maximum_supported_file_size">Jelenleg támogatott legnagyobb fájl méret: %1$s.</string> <string name="smp_server_test_delete_file">Fájl törlése</string> <string name="in_developing_title">Hamarosan!</string> - <string name="snd_conn_event_switch_queue_phase_changing_for_member">azonosító megváltoztatása %s -ra/re…</string> - <string name="chat_database_imported">Chat adatbázis importálva</string> - <string name="chat_archive_section">CHAT ARCHÍVUM</string> - <string name="delete_messages">Üzenetek törlése?</string> + <string name="snd_conn_event_switch_queue_phase_changing_for_member">azonosító megváltoztatása erre: %s…</string> + <string name="chat_database_imported">Csevegési adatbázis importálva</string> + <string name="chat_archive_section">CSEVEGÉSI ARCHÍVUM</string> + <string name="delete_messages">Üzenetek törlése</string> <string name="clear_chat_menu_action">Kiürítés</string> <string name="icon_descr_close_button">Bezárás gomb</string> - <string name="chat_is_stopped">A chat szolgáltatás leállt (nem fut)</string> + <string name="chat_is_stopped">A csevegés leállt</string> <string name="item_info_current">(jelenlegi)</string> - <string name="v5_1_custom_themes_descr">Színsémák személyreszabása és megosztása</string> - <string name="delete_chat_profile_question">Chat profil törlése?</string> + <string name="v5_1_custom_themes_descr">Témák személyre szabása és megosztása</string> + <string name="delete_chat_profile_question">Csevegési profil törlése?</string> <string name="create_group">Titkos csoport létrehozása</string> <string name="connected_to_desktop">Csatlakozva a számítógéphez</string> - <string name="configure_ICE_servers">ICE sezrverek beállítása</string> + <string name="configure_ICE_servers">ICE kiszolgálók beállítása</string> <string name="button_delete_group">Csoport törlése</string> <string name="clear_verification">Hitelesítés törlése</string> <string name="group_member_status_creator">szerző</string> <string name="confirm_verb">Megerősítés</string> <string name="for_me_only">Törlés nálam</string> <string name="delete_messages__question">%d üzenet törlése?</string> - <string name="v5_1_custom_themes">Egyedi színsémák</string> + <string name="v5_1_custom_themes">Egyedi témák</string> <string name="group_member_status_accepted">kapcsolódás (elfogadva)</string> - <string name="smp_servers_check_address">Szerver cím ellenőrzése és újrapróbálkozás.</string> + <string name="smp_servers_check_address">Kiszolgáló címének ellenőrzése és újrapróbálkozás.</string> <string name="delete_group_question">Csoport törlése?</string> <string name="confirm_database_upgrades">Adatbázis frissítés megerősítése</string> <string name="create_your_profile">Saját profil létrehozása</string> <string name="snd_conn_event_switch_queue_phase_changing">azonosító megváltoztatása…</string> <string name="display_name_connecting">kapcsolódás…</string> <string name="icon_descr_call_connecting">Hívás kapcsolása</string> - <string name="delete_files_and_media_question">Biztosan törlöd a fájlokat és a médiatartalmakat?</string> + <string name="delete_files_and_media_question">Fájlok és a médiatartalmak törlése?</string> <string name="group_member_status_complete">befejezett</string> - <string name="chat_database_section">CHAT ADATBÁZIS</string> + <string name="chat_database_section">CSEVEGÉSI ADATBÁZIS</string> <string name="change_self_destruct_passcode">Önmegsemmisító jelkód megváltoztatása</string> <string name="smp_server_test_create_queue">Várólista létrehozása</string> <string name="colored_text">színes</string> <string name="callstate_connecting">kapcsolódás…</string> - <string name="dark_theme">Sötét színséma</string> + <string name="dark_theme">Sötét téma</string> <string name="deleted_description">törölve</string> - <string name="users_delete_question">Chat profil törlése?</string> - <string name="chat_with_developers">Chat a SimpleX fejlesztőivel</string> - <string name="delete_link_question">Link törlése?</string> + <string name="users_delete_question">Csevegési profil törlése?</string> + <string name="chat_with_developers">Csevegés a fejlesztőkkel</string> + <string name="delete_link_question">Hivatkozás törlése?</string> <string name="server_connecting">kapcsolódás</string> <string name="send_disappearing_message_custom_time">Személyreszabott idő</string> <string name="connect_via_link_incognito">Inkognítóban csatlakozva</string> - <string name="settings_section_title_chats">CHATEK</string> - <string name="v5_3_new_desktop_app_descr">Új profil létrehozása a számítógépen futó appban. 💻</string> + <string name="settings_section_title_chats">CSEVEGÉSEK</string> + <string name="v5_3_new_desktop_app_descr">Új profil létrehozása a számítógép alkalmazásban. 💻</string> <string name="group_member_status_announced">kapcsolódás (bejelentve)</string> <string name="contact_connection_pending">kapcsolódás…</string> - <string name="chat_database_deleted">Chat adatbázis törölve</string> + <string name="chat_database_deleted">Csevegési adatbázis törölve</string> <string name="group_member_status_introduced">kapcsolódás (bejelentve)</string> - <string name="create_group_link">Csoporthoz link létrehozása</string> - <string name="chat_console">Chat konzol</string> - <string name="delete_files_and_media_for_all_users">Fájlok törlése minden chat profil alatt</string> + <string name="create_group_link">Csoportos hivatkozás létrehozása</string> + <string name="chat_console">Csevegési konzol</string> + <string name="delete_files_and_media_for_all_users">Fájlok törlése minden csevegési profilból</string> <string name="smp_server_test_delete_queue">Várólista törlése</string> <string name="button_delete_contact">Ismerős törlése</string> - <string name="archive_created_on_ts">Létrehozva: %1$s</string> + <string name="archive_created_on_ts">Létrehozva ekkor: %1$s</string> <string name="rcv_conn_event_switch_queue_phase_changing">címek megváltoztatása…</string> <string name="connected_to_mobile">Csatlakoztatva a mobilhoz</string> <string name="current_passphrase">Jelenlegi jelmondat…</string> - <string name="choose_file_title">Fájl választása</string> + <string name="choose_file_title">Fájl kiválasztás</string> <string name="delete_image">Kép törlése</string> <string name="smp_server_test_create_file">Fájl létrehozása</string> <string name="create_secret_group_title">Tikos csoport létrehozása</string> <string name="clear_contacts_selection_button">Kiürítés</string> <string name="delete_contact_question">Ismerős törlése?</string> <string name="clear_verb">Kiürítés</string> - <string name="create_address_and_let_people_connect">Hozz létre egy azonosítót, hogy az ismerősök kapcsolatba léphessenek veled.</string> - <string name="v4_4_verify_connection_security_desc">Biztonsági kódok ösezhasonlítása az ismerősökkel.</string> - <string name="smp_server_test_compare_file">Fájl összehasonlítása</string> - <string name="your_chats">Chatek</string> + <string name="create_address_and_let_people_connect">Azonosító létrehozása, hogy az emberek kapcsolatba léphessenek önnel.</string> + <string name="v4_4_verify_connection_security_desc">Biztonsági kódok összehasonlítása ismerősökkel.</string> + <string name="smp_server_test_compare_file">Fájl összehasonlítás</string> + <string name="your_chats">Csevegések</string> <string name="delete_message__question">Üzenet törlése?</string> - <string name="delete_pending_connection__question">Függő kapcsolatfelvételi kérés törlése?</string> + <string name="delete_pending_connection__question">Függő kapcsolatfelvételi kérések törlése?</string> <string name="database_encrypted">Adatbázis titkosítva!</string> - <string name="clear_chat_question">Chat kiürítése?</string> - <string name="database_downgrade">Adatbázis downgrade?</string> - <string name="clear_chat_button">Chat kiürítése</string> + <string name="clear_chat_question">Csevegés kiürítése?</string> + <string name="database_downgrade">Visszatérés a korábbi adatbázis verzióra</string> + <string name="clear_chat_button">Csevegés kiürítése</string> <string name="database_passphrase_will_be_updated">Adatbázis titkosítási jelmondat frissítve lesz.</string> <string name="multicast_connect_automatically">Kapcsolódás automatikusan</string> <string name="database_error">Adatbázis hiba</string> <string name="database_encryption_will_be_updated_in_settings">Adatbázis titkosítási jelmondat frissül és eltárolásra kerül a beállításokban.</string> <string name="info_row_database_id">Adatbázis ID</string> <string name="share_text_database_id">Adatbázis ID: %d</string> - <string name="developer_options">Adatbázis azonosítók és Átviteli izolációs beállítások.</string> - <string name="database_encryption_will_be_updated">Az adatbázis titkosítás jelmondata megváltoztatásra és elmentésre kerül a Keystore-ban.</string> + <string name="developer_options">Adatbázis azonosítók és átviteli izolációs beállítások.</string> + <string name="database_encryption_will_be_updated">Az adatbázis titkosítás jelmondata megváltoztatásra és mentésre kerül a Keystore-ban.</string> <string name="database_will_be_encrypted_and_passphrase_stored_in_settings">Az adatbázis titkosításra kerül és a jelmondat eltárolásra a beállításokban.</string> - <string name="smp_servers_delete_server">Szerver törlése</string> - <string name="auth_device_authentication_is_disabled_turning_off">Eszközhitelesítés kikapcsolva. SimpleX zár kikapcsolása.</string> + <string name="smp_servers_delete_server">Kiszolgáló törlése</string> + <string name="auth_device_authentication_is_disabled_turning_off">Eszközhitelesítés kikapcsolva. SimpleX zárolás kikapcsolása.</string> <string name="no_call_on_lock_screen">Letiltás</string> <string name="receipts_groups_disable_for_all">Letiltás minden csoport számára</string> - <string name="receipts_groups_enable_for_all">Minden csoportnak engedélyezve</string> - <string name="feature_enabled_for_contact">engedélyezve az ismerősnek</string> + <string name="receipts_groups_enable_for_all">Engedélyezés minden csoport részére</string> + <string name="feature_enabled_for_contact">engedélyezve ismerős részére</string> <string name="disappearing_messages_are_prohibited">Az eltűnő üzenetek küldése le van tiltva ebben a csoportban.</string> <string name="delete_address">Azonosító törlése</string> <string name="ttl_week">%d hét</string> <string name="desktop_address">Számítógép azonosítója</string> <string name="ttl_s">%dmp</string> - <string name="delivery_receipts_title">Kézbesítési izagolások!</string> - <string name="auth_device_authentication_is_not_enabled_you_can_turn_on_in_settings_once_enabled">Eszközhitelesítés nincs bekapcsolva. Bekapcsolhatod a SimpleX zárat a Beállításokon keresztük, miután bekapcsoltad az eszközhitelesítést.</string> + <string name="delivery_receipts_title">Kézbesítési igazolások!</string> + <string name="auth_device_authentication_is_not_enabled_you_can_turn_on_in_settings_once_enabled">Eszközhitelesítés nem engedélyezett.A SimpleX zárolás bekapcsolható a Beállításokon keresztül, miután az eszköz hitelesítés engedélyezésre került.</string> <string name="decryption_error">Titkosítás visszafejtési hiba</string> <string name="share_text_disappears_at">Eltűnik ekkor: %s</string> <string name="icon_descr_edited">szerkesztve</string> @@ -380,48 +380,48 @@ <string name="ttl_hours">%d óra</string> <string name="ttl_months">%d hónap</string> <string name="delete_address__question">Azonosító törlése?</string> - <string name="receipts_contacts_title_disable">Letiltod az üzenet kézbesítési jelentéseket?</string> + <string name="receipts_contacts_title_disable">Üzenet kézbesítési jelentések letiltása?</string> <string name="passphrase_is_different">Az adatbázis jelmondat eltérő a Keystore-ba elmentettől.</string> <string name="direct_messages">Közvetlen üzenetek</string> <string name="icon_descr_email">E-mail</string> <string name="receipts_contacts_disable_for_all">Letiltás mindenki számára</string> <string name="settings_developer_tools">Fejlesztői eszközök</string> <string name="database_passphrase">Adatbázis jelmondat</string> - <string name="ttl_days">%d napok</string> + <string name="ttl_days">%d nap</string> <string name="icon_descr_server_status_disconnected">Szétkapcsolva</string> - <string name="encrypted_with_random_passphrase">Az adatbázis egy véletlenszerű jelmondattal van titkosítva, lecserélheted.</string> + <string name="encrypted_with_random_passphrase">Az adatbázis egy véletlenszerű jelmondattal van titkosítva, megváltoztatható.</string> <string name="ttl_h">%dó</string> <string name="ttl_w">%dhét</string> - <string name="discover_on_network">Felfedezés helyi hálózatomn keresztül</string> - <string name="v5_3_discover_join_groups">Helyi csoportok felfedezése és csatolakozás</string> + <string name="discover_on_network">Felfedezés helyi hálózaton keresztül</string> + <string name="v5_3_discover_join_groups">Helyi csoportok felfedezése és csatlakozás</string> <string name="moderated_items_description">%1$d üzenet moderálva %2$s által</string> <string name="disappearing_message">Eltűnő üzenet</string> - <string name="dont_create_address">Ne hozz létre azonosítót</string> - <string name="dont_show_again">Ne mutasd ismét</string> - <string name="auth_disable_simplex_lock">SimpleX Zár kikapcsolása</string> + <string name="dont_create_address">Ne hozzon létre azonosítót</string> + <string name="dont_show_again">Ne mutasd újra</string> + <string name="auth_disable_simplex_lock">SimpleX zárolás kikapcsolása</string> <string name="status_e2e_encrypted">e2e titkosított</string> <string name="settings_section_title_device">ESZKÖZ</string> <string name="encrypted_video_call">e2e titkosított videóhívás</string> <string name="conn_level_desc_direct">közvetlen</string> <string name="desktop_device">Számítógép</string> <string name="la_minutes">%d perc</string> - <string name="num_contacts_selected">%d ismerős(-ök) kiválasztva</string> - <string name="enable_receipts_all">Engedélyez</string> + <string name="num_contacts_selected">%d ismerős kiválasztva</string> + <string name="enable_receipts_all">Engedélyezés</string> <string name="ttl_mth">%dhónap</string> - <string name="direct_messages_are_prohibited_in_chat">A közvetlen üzenetek tagok között titltottak ebben a csoportban.</string> + <string name="direct_messages_are_prohibited_in_chat">Ebben a csoportban tiltott a tagok közötti közvetlen üzenetek küldése.</string> <string name="ttl_min">%d perc</string> - <string name="set_password_to_export_desc">Az adatbázis egy véletlenszerű jelmondattal van titkosítva. Kérlek cseréld le exportálás előtt!</string> - <string name="receipts_groups_title_disable">Letiltod az üzenet kézbesítés jelentéseket a csoportok számára?</string> + <string name="set_password_to_export_desc">Az adatbázis egy véletlenszerű jelmondattal van titkosítva. Exportálás előtti módosítás szükséges!</string> + <string name="receipts_groups_title_disable">Üzenet kézbesítés jelentéseket letiltása a csoportok számára?</string> <string name="custom_time_unit_days">nap</string> <string name="ttl_day">%d nap</string> - <string name="delete_chat_archive_question">Chat archív törlése?</string> - <string name="failed_to_create_user_duplicate_title">Duplikálódott megjelenítési név!</string> + <string name="delete_chat_archive_question">Csevegési archívum törlése?</string> + <string name="failed_to_create_user_duplicate_title">Duplikált megjelenítési név!</string> <string name="receipts_contacts_disable_keep_overrides">Letiltás (felülírások megtartásával)</string> <string name="database_upgrade">Adatbázis fejlesztése</string> <string name="blocked_items_description">%d üzenet blokkolva</string> <string name="info_row_disappears_at">Eltűnik ekkor</string> <string name="ttl_weeks">%d hét</string> - <string name="feature_enabled_for_you">engedélyezve számodra</string> + <string name="feature_enabled_for_you">engedélyezve az ön számára</string> <string name="timed_messages">Eltűnő üzenetek</string> <string name="delete_group_menu_action">Törlés</string> <string name="delete_and_notify_contact">Törlés és ismerős értesítése</string> @@ -431,7 +431,7 @@ <string name="database_will_be_encrypted">Az adatbázis titkosításra kerül.</string> <string name="database_passphrase_and_export">Adatbázis jelmondat és exportálás</string> <string name="database_will_be_encrypted_and_passphrase_stored">Az adatbázis titkosításra kerül és a jelmondat eltárolásra a Keystore-ban.</string> - <string name="enable_automatic_deletion_question">Engedélyezed az automatikus üzenet törlést?</string> + <string name="enable_automatic_deletion_question">Automatikus üzenet törlés engedélyezése?</string> <string name="delete_contact_menu_action">Törlés</string> <string name="mtr_error_no_down_migration">az adatbázis verzió újabb, mint az alkalmazás, de nincs lefelé migráció eddig: %s</string> <string name="simplex_link_mode_description">Leírás</string> @@ -442,7 +442,7 @@ <string name="receipts_groups_disable_keep_overrides">Letiltás (csoport felülírások megtartásával)</string> <string name="rcv_group_events_count">%d csoportesemény</string> <string name="ttl_month">%d hónap</string> - <string name="button_edit_group_profile">Csoport profil szerkesztése</string> + <string name="button_edit_group_profile">A csoport profiljának szerkesztése</string> <string name="encrypted_audio_call">e2e titkosított hanghívás</string> <string name="ttl_sec">%d mp</string> <string name="decentralized">Decentralizált</string> @@ -451,139 +451,139 @@ <string name="disable_notifications_button">Értesítések letiltása</string> <string name="devices">Eszközök</string> <string name="multicast_discoverable_via_local_network">Látható helyi hálózaton</string> - <string name="dont_enable_receipts">Ne engedélyezd</string> + <string name="dont_enable_receipts">Ne engedélyezze</string> <string name="delete_archive">Archívum törlése</string> <string name="disappearing_prohibited_in_this_chat">Az eltűnő üzenetek le vannak tiltva ebben a csevegésben.</string> <string name="chat_preferences_default">alap (%s)</string> <string name="integrity_msg_duplicate">duplikálódott üzenet</string> <string name="disconnect_desktop_question">Számítógép leválasztása?</string> - <string name="desktop_app_version_is_incompatible">A számítógépes app verzió %s inem kompatibilis ezzel az appal.</string> + <string name="desktop_app_version_is_incompatible">Számítógép kliens verziója %s nem kompatibilis ezzel az alkalmazással.</string> <string name="delivery">Kézbesítés</string> <string name="total_files_count_and_size">%d fájl %s összméretben</string> - <string name="database_passphrase_is_required">Adatbázis jelmondat szükséges chat megnyitásához.</string> + <string name="database_passphrase_is_required">Adatbázis jelmondat szükséges a csevegés megnyitásához.</string> <string name="ttl_d">%dnap</string> - <string name="receipts_contacts_enable_for_all">Mindenki számára engedélyezve</string> - <string name="delivery_receipts_are_disabled">Kézbesítési izagolások kikapcsolva!</string> - <string name="expand_verb">Lenyit</string> + <string name="receipts_contacts_enable_for_all">Engedélyezés mindenki részére</string> + <string name="delivery_receipts_are_disabled">Kézbesítési igazolások kikapcsolva!</string> + <string name="expand_verb">Kibontás</string> <string name="error_sending_message">Hiba az üzenet küldésekor</string> - <string name="la_enter_app_passcode">Add Meg A Jelkódot</string> - <string name="for_everybody">Mindenkinek</string> - <string name="encryption_renegotiation_error">Titkosítás újra egyeztetési hiba</string> + <string name="la_enter_app_passcode">Jelkód megadása</string> + <string name="for_everybody">Mindenkinél</string> + <string name="encryption_renegotiation_error">Titkosítás újraegyeztetési hiba</string> <string name="error_encrypting_database">Hiba az adatbázis titkosításakor</string> <string name="error_deleting_group">Hiba a csoport törlésekor</string> <string name="exit_without_saving">Kilépés mentés nélkül</string> <string name="v5_3_encrypt_local_files">Tárolt fájlok és médiatartalmak titkosítása</string> <string name="error_setting_address">Hiba az azonosító beállításakor</string> <string name="group_invitation_expired">A csoport meghívó lejárt</string> - <string name="error_saving_ICE_servers">Hiba az ICE szerverek elmentésekor</string> + <string name="error_saving_ICE_servers">Hiba az ICE kiszolgálók mentésekor</string> <string name="error_alert_title">Hiba</string> <string name="icon_descr_server_status_error">Hiba</string> - <string name="error_loading_xftp_servers">Hiba az XFTP szerverek betöltésekor</string> - <string name="error_loading_smp_servers">Hiba az SMP szerverek betöltésekor</string> + <string name="error_loading_xftp_servers">Hiba az XFTP kiszolgálók betöltésekor</string> + <string name="error_loading_smp_servers">Hiba az SMP kiszolgálók betöltésekor</string> <string name="error_setting_network_config">Hiba a hálózat konfigurációjának frissítésekor</string> - <string name="network_option_enable_tcp_keep_alive">TCP életbentartás engedélyezése</string> - <string name="icon_descr_flip_camera">Kamera megfordítása</string> - <string name="email_invite_body">Szia! -\nCsatlakozz hozzám SimpleX Chaten: %s</string> + <string name="network_option_enable_tcp_keep_alive">TCP életben tartásának engedélyezése</string> + <string name="icon_descr_flip_camera">Fényképezőgép megfordítása</string> + <string name="email_invite_body">Üdv! +\nCsatlakozzon hozzám SimpleX Chat-en keresztül: %s</string> <string name="display_name_cannot_contain_whitespace">A megjelenített név nem tartalmazhat szóközöket.</string> <string name="info_row_group">Csoport</string> - <string name="enter_welcome_message_optional">Írd be az üdvözlő üzenetet… (opcionális)</string> - <string name="error_exporting_chat_database">Hiba a chat adatbázis exportálásakor</string> - <string name="error_saving_file">Hiba a fájl elmentésekor</string> + <string name="enter_welcome_message_optional">Üdvözlő üzenetet megadása… (opcionális)</string> + <string name="error_exporting_chat_database">Hiba a csevegési adatbázis exportálásakor</string> + <string name="error_saving_file">Hiba a fájl mentésekor</string> <string name="encrypt_local_files">Helyi fájlok titkosítása</string> <string name="snd_conn_event_ratchet_sync_agreed">titkosítás egyeztetve %s számára</string> <string name="marked_deleted_items_description">%d üzenet megjelölve törlésre</string> <string name="conn_event_ratchet_sync_allowed">titkosítás újra egyeztetése engedélyezve</string> <string name="enable_self_destruct">Önmegsemmisítés engedélyezése</string> - <string name="v5_2_favourites_filter_descr">Olvasatlan és kedvenc chatekre szűrés.</string> - <string name="failed_to_parse_chats_title">Chatek betöltése sikertelen</string> + <string name="v5_2_favourites_filter_descr">Olvasatlan és kedvenc csevegésekre való szűrés.</string> + <string name="failed_to_parse_chats_title">A csevegések betöltése sikertelen</string> <string name="connect_plan_group_already_exists">A csoport már létezik!</string> <string name="v4_4_french_interface">Francia kezelőfelület</string> - <string name="v4_2_group_links">Csoport linkek</string> + <string name="v4_2_group_links">Csoport hivatkozások</string> <string name="v5_1_message_reactions_descr">Végre, megvannak! 🚀</string> - <string name="error_starting_chat">Hiba a chat elindításakor</string> - <string name="group_profile_is_stored_on_members_devices">A csoport profil a tagok eszközein tárolódik, nem a szervereken.</string> - <string name="enter_passphrase">Add meg a jelmondatot…</string> + <string name="error_starting_chat">Hiba a csevegés elindításakor</string> + <string name="group_profile_is_stored_on_members_devices">A csoport profilja a tagok eszközein tárolódik, nem a kiszolgálókon.</string> + <string name="enter_passphrase">Jelmondat megadása…</string> <string name="error_updating_user_privacy">Hiba a felhasználói beállítások frissítésekor</string> <string name="encrypt_database">Titkosít</string> <string name="alert_title_no_group">Csoport nem található!</string> - <string name="error_saving_smp_servers">Hiba az SMP szerverek elmentésekor</string> - <string name="downgrade_and_open_chat">Downgrade és chat megnyitása</string> + <string name="error_saving_smp_servers">Hiba az SMP kiszolgálók mentésekor</string> + <string name="downgrade_and_open_chat">Visszatérés a korábbi verzióra és a csevegés megnyitása</string> <string name="icon_descr_group_inactive">A csoport inaktív</string> - <string name="v5_0_large_files_support_descr">Gyors és nincs várakozás a küldő online állapotára!</string> - <string name="error_joining_group">Hiba a csoporthoz csatlakozáskor</string> + <string name="v5_0_large_files_support_descr">Gyors és nem kell várni, amíg a feladó online lesz!</string> + <string name="error_joining_group">Hiba a csoporthoz való csatlakozáskor</string> <string name="favorite_chat">Kedvenc</string> <string name="v4_6_group_moderation">Csoport moderáció</string> <string name="choose_file">Fájl</string> - <string name="group_link">Csoport link</string> - <string name="snd_conn_event_ratchet_sync_required">titkosítás újra egyeztetés szükséges %s számára</string> + <string name="group_link">Csoport hivatkozás</string> + <string name="snd_conn_event_ratchet_sync_required">titkosítás újraegyeztetés szükséges %s számára</string> <string name="failed_to_active_user_title">Hiba a profil váltásakor!</string> <string name="settings_experimental_features">Kísérleti funkciók</string> <string name="receipts_contacts_enable_keep_overrides">Engedélyezés (felülírások megtartásával)</string> <string name="enter_correct_passphrase">Helyes jelmondat bevitele.</string> - <string name="delete_group_for_self_cannot_undo_warning">A csoport törlésre kerül számodra -ez visszafordíthatatlan!</string> + <string name="delete_group_for_self_cannot_undo_warning">A csoport törlésre kerül az ön részére - ez nem vonható vissza!</string> <string name="encrypt_database_question">Adatbázis titkosítása?</string> <string name="allow_accepting_calls_from_lock_screen">A zárolási képernyőn megjelenő hívások engedélyezése a Beállításokban.</string> <string name="conn_event_ratchet_sync_agreed">titkosítás egyeztetve</string> - <string name="receipts_contacts_title_enable">Engedélyezed az üzenet kézbesítési jelentéseket?</string> - <string name="error_saving_group_profile">Hiba a csoport profil elmentésekor</string> + <string name="receipts_contacts_title_enable">Üzenet kézbesítési jelentések engedélyezése?</string> + <string name="error_saving_group_profile">Hiba a csoport profil mentésekor</string> <string name="server_error">hiba</string> - <string name="revoke_file__message">A fájl törölve lesz a szerverekről.</string> + <string name="revoke_file__message">A fájl törölve lesz a kiszolgálóról.</string> <string name="v5_2_disappear_one_message_descr">Akkor is, ha le van tiltva a beszélgetésben.</string> <string name="v5_4_better_groups_descr">Gyorsabb csatlakozás és megbízhatóbb üzenet kézbesítés.</string> - <string name="enable_lock">Zár engedélyezése</string> + <string name="enable_lock">Zárolás engedélyezése</string> <string name="settings_section_title_help">SEGÍTSÉG</string> <string name="group_is_decentralized">Teljesen decentralizált - kizárólag tagok számára látható.</string> <string name="file_with_path">Fájl: %s</string> <string name="icon_descr_hang_up">Hívás befejezése</string> - <string name="error_deleting_link_for_group">Hiba a csoport linkjének törlésekor</string> + <string name="error_deleting_link_for_group">Hiba a csoport hivatkozásának törlésekor</string> <string name="file_saved">Fájl elmentve</string> <string name="fix_connection_question">Kapcsolat javítása?</string> <string name="files_and_media">Fájlok és médiatartalom</string> - <string name="section_title_for_console">A KONZOL SZÁMÁRA</string> - <string name="alert_text_encryption_renegotiation_failed">Titkosítás újra egyeztetés sikertelen.</string> + <string name="section_title_for_console">KONZOLHOZ</string> + <string name="alert_text_encryption_renegotiation_failed">Titkosítás újraegyeztetése sikertelen.</string> <string name="error_deleting_user">Hiba a felhasználói profil törlésekor</string> - <string name="fix_connection_not_supported_by_group_member">A javítás nem támogatott a csoporttag által</string> - <string name="enter_welcome_message">Írd be az üdvözlő üzenetet…</string> + <string name="fix_connection_not_supported_by_group_member">Csoporttag általi javítás nem támogatott</string> + <string name="enter_welcome_message">Üdvözlő üzenetet megadása…</string> <string name="encrypted_database">Titkosított adatbázis</string> - <string name="enter_password_to_show">Add meg a jelszót a keresőben</string> - <string name="file_will_be_received_when_contact_completes_uploading">A fájl megérkezik amint az ismerősöd befejezi a feltöltését.</string> + <string name="enter_password_to_show">Jelszó megadása a keresőben</string> + <string name="file_will_be_received_when_contact_completes_uploading">A fájl akkor érkezik meg, amikor ismerőse befejezte annak feltöltést.</string> <string name="smp_server_test_download_file">Fájl letöltése</string> - <string name="failed_to_parse_chat_title">Chat betöltése sikertelen</string> - <string name="smp_servers_enter_manually">Szerver megadása kézileg</string> - <string name="file_will_be_received_when_contact_is_online">A fájl megérkezik amint az ismerősöd online lesz, kélrlek várj vagy nézz vissza később!</string> - <string name="error_creating_link_for_group">Hiba a csoport linkjének létrehozásakor</string> + <string name="failed_to_parse_chat_title">Csevegés betöltése sikertelen</string> + <string name="smp_servers_enter_manually">Kiszolgáló megadása kézzel</string> + <string name="file_will_be_received_when_contact_is_online">A fájl akkor érkezik meg, amint ismerőse online lesz, várjon, vagy ellenőrizze később!</string> + <string name="error_creating_link_for_group">Hiba a csoport hivatkozásának létrehozásakor</string> <string name="from_gallery_button">A Galériából</string> <string name="receipts_groups_enable_keep_overrides">Engedélyezés (csoport felülírások megtartásával)</string> <string name="error_deleting_contact">Hiba az ismerős törlésekor</string> - <string name="group_members_can_delete">A csoporttagok visszafordíthatatlanul törölhetnek elküldött üzeneteket. (24 óra)</string> + <string name="group_members_can_delete">Csoporttagok visszafordíthatatlanul törölhetik az elküldött üzeneteket. (24 óra)</string> <string name="error_changing_role">Hiba a szerepkör megváltoztatásakor</string> <string name="fix_connection_confirm">Javítás</string> - <string name="group_members_can_send_disappearing">A csoporttagok küldhetnek eltűnő üzeneteket.</string> + <string name="group_members_can_send_disappearing">Csoporttagok küldhetnek eltűnő üzeneteket.</string> <string name="fix_connection">Kapcsolat javítása</string> <string name="failed_to_create_user_title">Hiba a profil létrehozásakor!</string> <string name="error_adding_members">Hiba a tag(-ok) hozzáadásakor</string> <string name="icon_descr_file">Fájl</string> - <string name="group_members_can_send_files">A csoporttagok küldhetnek fájlokat és médiatartalmakat.</string> + <string name="group_members_can_send_files">Csoporttagok küldhetnek fájlokat és médiatartalmakat.</string> <string name="delete_after">Törlés miután</string> <string name="error_changing_message_deletion">Hiba a beállítás megváltoztatásakor</string> - <string name="error_updating_link_for_group">Hiba a csoport link frissítésekor</string> + <string name="error_updating_link_for_group">Hiba a csoport hivatkozás frissítésekor</string> <string name="group_member_status_group_deleted">a csoport törölve</string> <string name="snd_group_event_group_profile_updated">csoport profil frissítve</string> - <string name="error_deleting_pending_contact_connection">Hiba a függőben lévő parner kapcsolatának törlésekor</string> - <string name="error_importing_database">Hiba a chat adatbázis importálásakor</string> + <string name="error_deleting_pending_contact_connection">Hiba a függőben lévő ismerős kapcsolatának törlésekor</string> + <string name="error_importing_database">Hiba a csevegési adatbázis importálásakor</string> <string name="error_enabling_delivery_receipts">Hiba a kézbesítési jelentések engedélyezésekor!</string> - <string name="error_saving_xftp_servers">Hiba az XFTP szerverek mentésekor</string> - <string name="group_members_can_send_dms">A csoporttagok küldhetnek közvetlen üzeneteket.</string> + <string name="error_saving_xftp_servers">Hiba az XFTP kiszolgálók mentésekor</string> + <string name="group_members_can_send_dms">Csoporttagok küldhetnek közvetlen üzeneteket.</string> <string name="error_removing_member">Hiba a tag eltávolításakor</string> <string name="callstate_ended">befejeződött</string> - <string name="v4_6_group_welcome_message">A csoport üdvözlő üzenete</string> + <string name="v4_6_group_welcome_message">Csoport üdvözlő üzenete</string> <string name="group_display_name_field">Csoport neve:</string> <string name="error_sending_message_contact_invitation">Hiba a meghívó küldésekor</string> - <string name="display_name">Add meg a nevedet:</string> + <string name="display_name">Adja meg nevét:</string> <string name="error_saving_user_password">Hiba a felhasználó jelszavának mentésekor</string> - <string name="export_theme">Színséma exportálása</string> - <string name="enter_this_device_name">Add meg ennek az eszköznek a nevét…</string> + <string name="export_theme">Téma exportálása</string> + <string name="enter_this_device_name">Eszköznév megadása…</string> <string name="error">Hiba</string> <string name="alert_message_group_invitation_expired">A csoport meghívó már nem érvényes, el lett távolítva a küldője által.</string> <string name="group_full_name_field">A csoport teljes neve:</string> @@ -593,45 +593,45 @@ <string name="error_aborting_address_change">Hiba az azonosító megváltoztatásának megszakításakor</string> <string name="error_receiving_file">Hiba a fájl fogadásakor</string> <string name="conn_event_ratchet_sync_ok">titkosítás rendben</string> - <string name="error_deleting_contact_request">Hiba az ismerős kérés törlésekor</string> - <string name="receipts_groups_title_enable">Engedélyezed a csoportok számára az üzenet kézbesítési jelentéseket?</string> - <string name="fix_connection_not_supported_by_contact">A javítás nem támogatott az ismerős által</string> + <string name="error_deleting_contact_request">Hiba az ismerős kérelem törlésekor</string> + <string name="receipts_groups_title_enable">Üzenet kézbesítési jelentéseket engedélyezése csoportok számára?</string> + <string name="fix_connection_not_supported_by_contact">Ismerős általi javítás nem támogatott</string> <string name="file_not_found">Fájl nem található</string> <string name="smp_server_test_disconnect">Kapcsolat bontása</string> - <string name="group_members_can_add_message_reactions">A csoporttagok reagálhatnak emocikonokkal az üzenetekre.</string> + <string name="group_members_can_add_message_reactions">Csoporttagok üzenetreakciókat adhatnak hozzá.</string> <string name="export_database">Adatbázis exportálása</string> <string name="full_name__field">Teljes név:</string> <string name="v4_6_reduced_battery_usage">Tovább csökkentett akkumulátor használat</string> - <string name="error_stopping_chat">Hiba a chat megállításakor</string> + <string name="error_stopping_chat">Hiba a csevegés megállításakor</string> <string name="snd_conn_event_ratchet_sync_ok">titkosítás rendben %s számára</string> - <string name="delete_group_for_all_members_cannot_undo_warning">Csoport törlésre kerül minen tag számára - ez visszafordíthatatlan!</string> + <string name="delete_group_for_all_members_cannot_undo_warning">Csoport törlésre kerül minden tag számára - ez nem vonható vissza!</string> <string name="v5_2_fix_encryption_descr">Titkosítás javítása az adatmentések helyreállítása után.</string> - <string name="error_deleting_database">Hiba a chat adatbázis törlésekor</string> - <string name="simplex_link_mode_full">Teljes link</string> + <string name="error_deleting_database">Hiba a csevegési adatbázis törlésekor</string> + <string name="simplex_link_mode_full">Teljes hivatkozás</string> <string name="error_changing_address">Hiba az azonosító megváltoztatásakor</string> - <string name="group_members_can_send_voice">A csoporttagok küldhetnek hangüzeneteket.</string> + <string name="group_members_can_send_voice">Csoporttagok küldhetnek hangüzeneteket.</string> <string name="group_preferences">Csoport beállítások</string> <string name="error_with_info">Hiba: %s</string> <string name="v4_4_disappearing_messages">Eltűnő üzenetek</string> - <string name="auth_enable_simplex_lock">SimpleX Zár engedélyezése</string> - <string name="error_synchronizing_connection">Hiba a kapcsolat szinkronizációjakor</string> + <string name="auth_enable_simplex_lock">SimpleX zárolás engedélyezése</string> + <string name="error_synchronizing_connection">Hiba a kapcsolat szinkronizálása során</string> <string name="error_creating_address">Hiba az azonosító létrehozásakor</string> <string name="feature_enabled">engedélyezve</string> <string name="error_loading_details">Hiba a részletek betöltésekor</string> - <string name="error_accepting_contact_request">Hiba az ismerős kérés elfogadása</string> - <string name="snd_conn_event_ratchet_sync_allowed">%s ismerősöddel való titkosítás újra egyeztetése engedélyezve</string> - <string name="conn_event_ratchet_sync_required">titkosítás újra egyeztetés szükséges</string> - <string name="v4_6_hidden_chat_profiles">Rejtett chat profilok</string> + <string name="error_accepting_contact_request">Hiba történt a kapcsolatfelvételi kérelem elfogadásakor</string> + <string name="snd_conn_event_ratchet_sync_allowed">titkosítás újraegyeztetése engedélyezett %s számára</string> + <string name="conn_event_ratchet_sync_required">titkosítás újraegyeztetés szükséges</string> + <string name="v4_6_hidden_chat_profiles">Rejtett csevegési profilok</string> <string name="files_and_media_section">Fájlok és média</string> - <string name="image_saved">Fotók elmentve a fotóalbumba</string> + <string name="image_saved">A kép mentve a Galériába</string> <string name="hide_notification">Elrejt</string> <string name="la_immediately">Azonnal</string> <string name="files_and_media_prohibited">A fájlok- és a médiatartalom küldése le van tiltva!</string> <string name="hide_profile">Profil elrejtése</string> - <string name="how_to_use_your_servers">Hogyan használd a szervereidet</string> - <string name="v5_2_favourites_filter">Találd meg a chat üzeneteket gyorsabban</string> - <string name="import_theme">Színséma importálása</string> - <string name="import_theme_error">Hiba a színséma importálásakor</string> + <string name="how_to_use_your_servers">Kiszolgálók használata</string> + <string name="v5_2_favourites_filter">Csevegési üzenetek gyorsabb megtalálása</string> + <string name="import_theme">Téma importálása</string> + <string name="import_theme_error">Hiba a téma importálásakor</string> <string name="notification_display_mode_hidden_desc">Ismerős és üzenet elrejtése</string> <string name="incompatible_database_version">Nem kompatibilis adatbázis verzió</string> <string name="how_simplex_works">Hogyan működik a SimpleX</string> @@ -644,95 +644,95 @@ <string name="how_to">Hogyan</string> <string name="hide_verb">Elrejt</string> <string name="gallery_image_button">Kép</string> - <string name="v4_3_improved_privacy_and_security">Fejlesztett adatvédelm és biztonság</string> + <string name="v4_3_improved_privacy_and_security">Fejlesztett adatvédelem és biztonság</string> <string name="ignore">Figyelmen kívül hagyás</string> <string name="icon_descr_image_snd_complete">Kép elküldve</string> <string name="notification_preview_mode_hidden">Rejtett</string> <string name="host_verb">Házigazda</string> <string name="initial_member_role">Kezdeti szerepkör</string> - <string name="invalid_chat">Érvénytelen chat</string> - <string name="custom_time_unit_hours">órák</string> + <string name="invalid_chat">Érvénytelen csevegés</string> + <string name="custom_time_unit_hours">óra</string> <string name="incognito">Inkognitó</string> - <string name="how_to_use_simplex_chat">Hogyan használd</string> - <string name="v4_3_improved_privacy_and_security_desc">App képernyőjének elrejtése a gyakran használt appok között.</string> - <string name="v4_3_improved_server_configuration">Javított szerver konfiguráció</string> - <string name="edit_history">Történet</string> + <string name="how_to_use_simplex_chat">Hogyan használja</string> + <string name="v4_3_improved_privacy_and_security_desc">Alkalmazás képernyőjének elrejtése a gyakran használt alkalmazások között.</string> + <string name="v4_3_improved_server_configuration">Javított kiszolgáló konfiguráció</string> + <string name="edit_history">Előzmények</string> <string name="hidden_profile_password">Rejtett profil jelszó</string> <string name="import_database">Adatbázis importálása</string> <string name="import_database_confirmation">Importálás</string> <string name="icon_descr_instant_notifications">Azonnali értesítések</string> <string name="settings_section_title_incognito">Inkognitó mód</string> - <string name="import_database_question">Chat adatbázis importálása?</string> + <string name="import_database_question">Csevegési adatbázis importálása?</string> <string name="service_notifications_disabled">Azonnali értesítések kikapcsolva!</string> <string name="service_notifications">Azonnali értesítések!</string> <string name="image_descr">Kép</string> <string name="files_are_prohibited_in_group">A fájlok- és a médiatartalom küldése le van tiltva ebben a csoportban.</string> <string name="how_it_works">Hogyan működik</string> <string name="hide_dev_options">Elrejt:</string> - <string name="error_creating_member_contact">Hiba az ismerősöddel való kapcsolat létrehozásában</string> + <string name="error_creating_member_contact">Hiba az ismerőssel történő kapcsolat létrehozásában</string> <string name="enter_one_ICE_server_per_line">ICE-kiszolgálók (soronként egy)</string> - <string name="if_you_cannot_meet_in_person_scan_QR_in_video_call_or_ask_for_invitation_link"><![CDATA[Ha nem tudtok személyesen találkozni, akkor a videohívásban <b>kiszkennelheted a QR-kódot</b>, vagy a pertnered megoszthat egy meghívó linket.]]></string> - <string name="if_you_enter_passcode_data_removed">Ha az alkalmazás megnyitásakor megadod ezt a jelkódot, az alkalmazás minden adata véglegesen törlődik!</string> - <string name="if_you_cant_meet_in_person">Ha nem tudtok személyesen találkozni, mutassátok meg a QR-kódot egy videohívás során, vagy osszátok meg egymással a linket.</string> - <string name="if_you_cannot_meet_in_person_show_QR_in_video_call_or_via_another_channel"><![CDATA[Ha nem tudtok személyesen találkozni, <b>mutassátok meg a QR-kódot a videohívásban</b>, vagy osszátok meg egymással a linket.]]></string> - <string name="network_disable_socks_info">Ha megerősíted, az üzenetküldő szerverek láthatják az IP-címedet és a szolgáltatódat, vagyis azt, hogy mely szerverekhez csatlakozol.</string> - <string name="image_will_be_received_when_contact_completes_uploading">A kép akkor érkezik meg, amikor az ismerősöd befejezi a feltöltést.</string> + <string name="if_you_cannot_meet_in_person_scan_QR_in_video_call_or_ask_for_invitation_link"><![CDATA[Ha nem tud személyesen találkozni, <b>beolvashatja a QR-kódot a videohívásban</b>, vagy ismerőse megoszthat egy meghívó hivatkozást.]]></string> + <string name="if_you_enter_passcode_data_removed">Ha az alkalmazás megnyitásakor megadja ezt a jelkódot, az összes alkalmazásadat visszafordíthatatlanul törlődik!</string> + <string name="if_you_cant_meet_in_person">Ha nem tud személyesen találkozni, mutassa meg a QR-kódot egy videohívás során, vagy ossza meg a hivatkozást.</string> + <string name="if_you_cannot_meet_in_person_show_QR_in_video_call_or_via_another_channel"><![CDATA[Ha nem tud személyesen találkozni, <b>mutassa meg a QR-kódot a videohívásban</b>, vagy ossza meg a hivatkozást.]]></string> + <string name="network_disable_socks_info">Megerősítés esetén az üzenetküldő kiszolgálók látni fogják az IP-címét és a szolgáltatóját – azt, hogy mely kiszolgálókhoz csatlakozik.</string> + <string name="image_will_be_received_when_contact_completes_uploading">A kép akkor érkezik meg, amikor ismerőse befejezte annak feltöltését.</string> <string name="desktop_scan_QR_code_from_app_via_scan_QR_code"><![CDATA[💻 asztali számítógép: a megjelenített QR-kód beolvasása az alkalmazásból, a <b>QR kód beolvasásával</b>]]></string> - <string name="if_you_received_simplex_invitation_link_you_can_open_in_browser">Ha kaptál egy SimpleX Chat meghívó linket, akkor megnyithatod azt a böngészőben:</string> - <string name="if_you_enter_self_destruct_code">Ha az alkalmazás megnyitásakor megadod az önmegsemmisítő jelkódot:</string> - <string name="found_desktop">Megtalált asztali számítógép</string> + <string name="if_you_received_simplex_invitation_link_you_can_open_in_browser">Kapott SimpleX Chat meghívó hivatkozását megnyithatja böngészőjében:</string> + <string name="if_you_enter_self_destruct_code">Ha az alkalmazás megnyitásakor az önmegsemmisítő jelkódot megadásra kerül:</string> + <string name="found_desktop">Megtalált számítógép</string> <string name="desktop_devices">Számítógépek</string> - <string name="how_to_use_markdown">Hogyan használjuk a markdown-t</string> + <string name="how_to_use_markdown">A markdown használata</string> <string name="create_chat_profile">Csevegő profil létrehozása</string> <string name="immune_to_spam_and_abuse">Spam és visszaélések elleni védelem</string> <string name="disconnect_remote_hosts">Mobilok leválasztása</string> <string name="v4_5_multiple_chat_profiles_descr">Különböző nevek, avatarok és átviteli izoláció.</string> - <string name="if_you_choose_to_reject_the_sender_will_not_be_notified">Ha úgy döntesz, hogy elutasítod a küldő NEM kap értesítést.</string> - <string name="icon_descr_expand_role">Szerepkör kibővítése</string> - <string name="image_will_be_received_when_contact_is_online">A kép akkor érkezik meg, amikor az ismerősöd elérhető lesz, kérlek várj vagy nézd meg később!</string> + <string name="if_you_choose_to_reject_the_sender_will_not_be_notified">Elutasítás esetén a feladó NEM kap értesítést.</string> + <string name="icon_descr_expand_role">Szerepkör kiválasztásának bővítése</string> + <string name="image_will_be_received_when_contact_is_online">A kép akkor érkezik meg, amikor ismerős elérhető lesz, várjon vagy ellenőrizze később!</string> <string name="group_member_status_invited">meghívott</string> <string name="invalid_connection_link">Érvénytelen kapcsolati hivatkozás</string> - <string name="mute_chat">Elnémít</string> + <string name="mute_chat">Némítás</string> <string name="no_details">nincsenek részletek</string> <string name="icon_descr_call_missed">Nem fogadott hívás</string> <string name="theme_light">Világos</string> - <string name="delete_message_cannot_be_undone_warning">Az üzenet törlésre kerül - ezt nem lehet visszafordítani!</string> + <string name="delete_message_cannot_be_undone_warning">Az üzenet törlésre kerül - ez nem vonható vissza!</string> <string name="markdown_help">Markdown segítség</string> <string name="notification_preview_new_message">új üzenet</string> <string name="old_database_archive">Régi adatbázis archívum</string> <string name="network_settings_title">Hálózati beállítások</string> <string name="no_info_on_delivery">Nincs kézbesítési információ</string> <string name="moderated_description">moderált</string> - <string name="member_will_be_removed_from_group_cannot_be_undone">A tag eltávolítása a csoportból - ezt nem lehet visszafordítani!</string> - <string name="ensure_xftp_server_address_are_correct_format_and_unique">Győződj meg róla, hogy az XFTP-kiszolgáló címei megfelelő formátumúak, sorszeparáltak és nem duplikáltak.</string> - <string name="no_contacts_selected">Nincsenek ismerősök kiválasztva</string> + <string name="member_will_be_removed_from_group_cannot_be_undone">A tag eltávolítása a csoportból - ez nem vonható vissza!</string> + <string name="ensure_xftp_server_address_are_correct_format_and_unique">Győződjön meg róla, hogy az XFTP-kiszolgáló címei megfelelő formátumúak, sorszeparáltak és nem duplikáltak.</string> + <string name="no_contacts_selected">Nem kerültek ismerősök kiválasztásra</string> <string name="no_received_app_files">Nincsenek fogadott vagy küldött fájlok</string> - <string name="mobile_tap_open_in_mobile_app_then_tap_connect_in_app"><![CDATA[📱 mobil: koppints a <b>Megnyitás mobil alkalmazásban</b>, majd koppints a <b>Csatlakozás</b> gombra az alkalmazásban.]]></string> + <string name="mobile_tap_open_in_mobile_app_then_tap_connect_in_app"><![CDATA[📱 mobil: koppintson a <b>Megnyitás mobil alkalmazásban</b>, majd koppintson a <b>Csatlakozás</b> gombra az alkalmazásban.]]></string> <string name="markdown_in_messages">Markdown az üzenetekben</string> <string name="group_invitation_item_description">meghívás a %1$s csoportba</string> - <string name="lock_mode">Lezárás mód</string> + <string name="lock_mode">Zárolási mód</string> <string name="new_mobile_device">Új mobil eszköz</string> <string name="v5_2_fix_encryption">Kapcsolatok megtartása</string> <string name="button_add_members">Tagok meghívása</string> - <string name="message_reactions">Üzenet reakciók</string> + <string name="message_reactions">Üzenetreakciók</string> <string name="only_one_device_can_work_at_the_same_time">Egyszerre csak egy eszköz működhet</string> - <string name="connect_plan_join_your_group">Csatlakozol a csoportodhoz?</string> + <string name="connect_plan_join_your_group">Csatlakozik a csoportjához?</string> <string name="large_file">Nagy fájl!</string> <string name="info_row_local_name">Helyi név</string> - <string name="network_and_servers">Hálózat és szerverek</string> + <string name="network_and_servers">Hálózat és kiszolgálók</string> <string name="settings_notification_preview_title">Értesítés előnézet</string> - <string name="v5_4_link_mobile_desktop">Társítsd össze a mobil és az asztali alkalmazásokat! 🔗!</string> + <string name="v5_4_link_mobile_desktop">Társítsa össze a mobil és az asztali alkalmazásokat! 🔗!</string> <string name="conn_level_desc_indirect">közvetett (%1$s)</string> <string name="v4_6_reduced_battery_usage_descr">Hamarosan további fejlesztések érkeznek!</string> - <string name="message_reactions_prohibited_in_this_chat">Az üzenetreakciók ebben a csevegésben tilosak.</string> + <string name="message_reactions_prohibited_in_this_chat">Az üzenetreakciók ebben a csevegésben le vannak tiltva.</string> <string name="incorrect_code">Helytelen biztonsági kód!</string> - <string name="alert_text_fragment_encryption_out_of_sync_old_database">Ez akkor fordulhat elő, ha Te vagy az ismerősöd a régi adatbázis biztonsági másolatát használta.</string> + <string name="alert_text_fragment_encryption_out_of_sync_old_database">Ez akkor fordulhat elő, ha ön vagy a kapcsolata régi adatbázis biztonsági mentést használt.</string> <string name="v5_3_new_desktop_app">Új asztali alkalmazás!</string> <string name="v4_6_group_moderation_descr">Most már az adminok is: \n- törölhetik a tagok üzeneteit. \n- letilthatnak tagokat (\"megfigyelő\" szerepkör)</string> <string name="rcv_group_event_member_added">%1$s meghívott</string> - <string name="message_reactions_are_prohibited">Az üzenetreakciók ebben a csoportban tilosak.</string> + <string name="message_reactions_are_prohibited">Ebben a csoportban az üzenetreakciók le vannak tiltva.</string> <string name="network_use_onion_hosts_no">Nem</string> <string name="item_info_no_text">nincs szöveg</string> <string name="member_info_section_title_member">TAG</string> @@ -742,43 +742,43 @@ <string name="invalid_contact_link">Érvénytelen hivatkozás!</string> <string name="network_use_onion_hosts_required_desc_in_alert">A csatlakozáshoz Onion host-okra lesz szükség.</string> <string name="new_in_version">Változások a %s verzióban</string> - <string name="network_use_onion_hosts_prefer_desc_in_alert">Onion host-okat használ, ha azok rendelkezésre állnak.</string> - <string name="smp_servers_invalid_address">Érvénytelen szervercím!</string> + <string name="network_use_onion_hosts_prefer_desc_in_alert">Onion host-ok használata, ha azok rendelkezésre állnak.</string> + <string name="smp_servers_invalid_address">Érvénytelen kiszolgálócím!</string> <string name="thousand_abbreviation">k</string> <string name="chat_item_ttl_none">soha</string> <string name="new_desktop"><![CDATA[<i>(új)</i>]]></string> - <string name="ensure_smp_server_address_are_correct_format_and_unique">Győződj meg róla, hogy az SMP-kiszolgáló címei megfelelő formátumúak, sorszeparáltak és nincsenek duplikálva.</string> + <string name="ensure_smp_server_address_are_correct_format_and_unique">Győződjön meg arról, hogy az SMP-kiszolgáló címei megfelelő formátumúak, sorszeparáltak és nincsenek duplikálva.</string> <string name="network_use_onion_hosts_no_desc">Onion host-ok nem lesznek használva.</string> <string name="custom_time_unit_minutes">perc</string> - <string name="learn_more">Tudj meg többet</string> + <string name="learn_more">Tudjon meg többet</string> <string name="notification_new_contact_request">Új kapcsolattartási kérelem</string> <string name="joining_group">Csatlakozás a csoporthoz</string> - <string name="linked_desktop_options">Összekapcsolt asztali eszköz beállítások</string> - <string name="rcv_group_event_invited_via_your_group_link">meghívva a csoport hivatkozásodon keresztül</string> + <string name="linked_desktop_options">Összekapcsolt számítógép beállítások</string> + <string name="rcv_group_event_invited_via_your_group_link">meghívott a csoport hivatkozásán keresztül</string> <string name="rcv_group_event_member_left">elhagyta</string> - <string name="linked_desktops">Összekapcsolt asztali eszközök</string> + <string name="linked_desktops">Összekapcsolt számítógépek</string> <string name="la_no_app_password">Nincs alkalmazás jelkód</string> <string name="muted_when_inactive">Némítás, ha inaktív!</string> <string name="alert_title_group_invitation_expired">A meghívó lejárt!</string> <string name="only_stored_on_members_devices">(csak a csoporttagok tárolják)</string> - <string name="moderate_verb">Moderál</string> + <string name="moderate_verb">Moderálás</string> <string name="chat_preferences_on">be</string> <string name="v5_1_japanese_portuguese_interface">Japán és Portugál kezelőfelület</string> - <string name="message_deletion_prohibited_in_chat">Ebben a csoportban tilos az üzenetek visszafordíthatatlan törlése.</string> + <string name="message_deletion_prohibited_in_chat">Ebben a csoportban az üzenetek visszafordíthatatlan törlése le van tiltva.</string> <string name="network_use_onion_hosts_no_desc_in_alert">Onion host-ok nem lesznek használva.</string> <string name="remote_host_was_disconnected_toast"><![CDATA[A(z) <b>%s</b> eszközzel megszakadt a kapcsolat]]></string> <string name="custom_time_unit_months">hónap</string> - <string name="privacy_message_draft">Üzenet vázlat</string> + <string name="privacy_message_draft">Üzenetvázlat</string> <string name="v5_2_disappear_one_message">Egy üzenet eltüntetése</string> <string name="v4_3_irreversible_message_deletion">Visszafordíthatatlan üzenettörlés</string> <string name="videos_limit_desc">Egyszerre csak 10 videó küldhető el</string> - <string name="only_you_can_add_message_reactions">Csak te adhatsz hozzá üzenetreakciókat.</string> + <string name="only_you_can_add_message_reactions">Csak ön adhat hozzá üzenetreakciókat.</string> <string name="group_member_status_left">elhagyta</string> - <string name="message_deletion_prohibited">Ebben a csevegésben tilos az üzenetek visszafordíthatatlan törlése.</string> + <string name="message_deletion_prohibited">Ebben a csevegésben az üzenetek visszafordíthatatlan törlése le van tiltva.</string> <string name="v4_3_voice_messages_desc">Max 40 másodperc, azonnal fogadható.</string> - <string name="description_via_contact_address_link_incognito">inkognitó a kapcsolattartási címen keresztül</string> - <string name="network_use_onion_hosts_required_desc">A csatlakozáshoz Onion host-okra lesz szükség. -\nKérjük, vedd figyelembe: .onion cím nélkül nem fogsz tudni csatlakozni a szerverekhez.</string> + <string name="description_via_contact_address_link_incognito">inkognitó a ismerős azonosító hivatkozáson keresztül</string> + <string name="network_use_onion_hosts_required_desc">A kapcsolódáshoz Onion host-okra lesz szükség. +\nFigyelem: .onion cím nélkül nem fog tudni kapcsolódni a kiszolgálókhoz.</string> <string name="v4_5_italian_interface">Olasz kezelőfelület</string> <string name="system_restricted_background_in_call_title">Nincsenek háttérhívások</string> <string name="messages_section_title">Üzenetek</string> @@ -789,26 +789,26 @@ <string name="ok">Rendben</string> <string name="no_filtered_chats">Nincsenek szűrt csevegések</string> <string name="invalid_data">Érvénytelen adat</string> - <string name="ensure_ICE_server_address_are_correct_format_and_unique">Győződj meg róla, hogy a WebRTC ICE-kiszolgáló címei megfelelő formátumúak, sorszeparáltak és nem duplikáltak.</string> + <string name="ensure_ICE_server_address_are_correct_format_and_unique">Győződjön meg arról, hogy a WebRTC ICE-kiszolgáló címei megfelelő formátumúak, sorszeparáltak és nem duplikáltak.</string> <string name="only_owners_can_enable_files_and_media">Csak a csoporttulajdonosok engedélyezhetik a fájlok- és a médiatartalmak küldését.</string> <string name="loading_remote_file_title">A fájl betöltése</string> <string name="no_contacts_to_add">Nincs hozzáadandó ismerős</string> - <string name="v4_5_message_draft">Üzenet vázlat</string> - <string name="display_name_invited_to_connect">meghívott, hogy csatlakozz</string> - <string name="add_contact">Egyszer használatos meghívó link</string> + <string name="v4_5_message_draft">Üzenetvázlat</string> + <string name="display_name_invited_to_connect">meghívott, hogy csatlakozzon</string> + <string name="add_contact">Egyszer használatos meghívó hivatkozás</string> <string name="notifications">Értesítések</string> <string name="images_limit_desc">Egyszerre csak 10 kép küldhető el</string> <string name="feature_offered_item_with_param">ajánlott %s: %2s</string> <string name="not_compatible">Nem kompatibilis!</string> - <string name="make_profile_private">Tedd priváttá a profilodat!</string> - <string name="message_delivery_error_title">Üzenet kézbesítési hiba</string> + <string name="make_profile_private">Tegye priváttá profilját!</string> + <string name="message_delivery_error_title">Üzenetkézbesítési hiba</string> <string name="v4_5_multiple_chat_profiles">Több csevegőprofil</string> <string name="marked_deleted_description">töröltnek jelölve</string> - <string name="user_mute">Elnémít</string> + <string name="user_mute">Elnémítás</string> <string name="link_a_mobile">Egy mobil összekapcsolása</string> <string name="settings_notifications_mode_title">Értesítési szolgáltatás</string> <string name="only_group_owners_can_enable_voice">Csak a csoporttulajdonosok engedélyezhetik a hangüzenetek küldését.</string> - <string name="only_client_devices_store_contacts_groups_e2e_encrypted_messages"><![CDATA[Csak a te eszközeid tárolják a felhasználói profilodat, névjegyeidet, csoportjaidat és a <b>2 rétegű végponttól-végpontig titkosítással</b> küldött üzeneteidet.]]></string> + <string name="only_client_devices_store_contacts_groups_e2e_encrypted_messages"><![CDATA[Csak a kliensek tárolják a felhasználói profilokat, ismerősöket, csoportokat és a <b>2 rétegű végponttól-végpontig titkosítással</b> küldött üzeneteket.]]></string> <string name="invalid_migration_confirmation">Érvénytelen migrációs visszaigazolás</string> <string name="only_group_owners_can_change_prefs">Csak a csoporttulajdonosok módosíthatják a csoportbeállításokat.</string> <string name="no_history">Nincsenek előzmények</string> @@ -817,7 +817,7 @@ <string name="live">ÉLŐ</string> <string name="mark_unread">Olvasatlannak jelölve</string> <string name="icon_descr_more_button">Több</string> - <string name="auth_log_in_using_credential">Jelentkezz be a hitelesítő adataiddal</string> + <string name="auth_log_in_using_credential">Bejelentkezés hitelesítő adatokkal</string> <string name="invalid_message_format">érvénytelen üzenet formátum</string> <string name="join_group_button">Csatlakozás</string> <string name="shutdown_alert_desc">Az értesítések az alkalmazás elindításáig nem fognak működni.</string> @@ -825,40 +825,40 @@ <string name="this_device_version"><![CDATA[<i>(ez az eszköz) v%s)</i>]]></string> <string name="feature_offered_item">ajánlott %s</string> <string name="button_leave_group">Csoport elhagyása</string> - <string name="unblock_member_desc">A %s-től érkező üzenetek megjelennek!</string> + <string name="unblock_member_desc">Minden %s által írt üzenet megjelenik!</string> <string name="many_people_asked_how_can_it_deliver"><![CDATA[Sokan kérdezték: <i>Ha a SimpleX Chat-nek nincs felhasználói azonosítója, hogyan lehet mégis üzeneteket küldeni?</i>]]></string> <string name="alert_text_skipped_messages_it_can_happen_when">Ez akkor fordulhat elő, ha: -\n1. Az üzenetek az ismerősödnél 2 nap után, vagy a kiszolgálón 30 nap után lejártak. -\n2. Az üzenet visszafejtése sikertelen volt, mert Te vagy az ismerősöd régi adatbázis biztonsági mentést használt. +\n1. Az üzenetek 2 nap után, vagy a kiszolgálón 30 nap után lejártak. +\n2. Az üzenet visszafejtése sikertelen volt, mert vagy az ismerőse régebbi adatbázis biztonsági mentést használt. \n3. A kapcsolat sérült.</string> <string name="group_member_role_observer">megfigyelő</string> <string name="description_via_group_link_incognito">inkognitó a csoportos hivatkozáson keresztül</string> - <string name="network_use_onion_hosts_prefer_desc">Onion host-okat használ, ha azok rendelkezésre állnak.</string> + <string name="network_use_onion_hosts_prefer_desc">Onion host-ok használata, ha azok rendelkezésre állnak.</string> <string name="invite_friends">Barátok meghívása</string> <string name="color_surface">Menük és figyelmeztetések</string> <string name="icon_descr_add_members">Tagok meghívása</string> - <string name="group_preview_join_as">Csatlakozás mint %s</string> + <string name="group_preview_join_as">csatlakozás mint %s</string> <string name="no_selected_chat">Nincs kiválasztott csevegés</string> <string name="users_delete_data_only">Csak helyi profiladatok</string> - <string name="description_via_one_time_link_incognito">inkognitó Egyszer használatos link által</string> + <string name="description_via_one_time_link_incognito">inkognitó egyszer használatos hivatkozás által</string> <string name="share_text_moderated_at">Moderálva ekkor: %s</string> - <string name="one_time_link">Egyszer használatos meghívó link</string> + <string name="one_time_link">Egyszer használatos meghívó hivatkozás</string> <string name="invalid_name">Érvénytelen név!</string> <string name="email_invite_subject">Beszélgessünk a SimpleX Chat-ben</string> <string name="info_row_moderated_at">Moderálva ekkor</string> <string name="v4_4_live_messages">Élő üzenetek</string> <string name="mark_code_verified">Ellenőrzöttként jelölve</string> - <string name="v5_2_message_delivery_receipts">Üzenet kézbesítési bizonylatok!</string> + <string name="v5_2_message_delivery_receipts">Üzenetkézbesítési bizonylatok!</string> <string name="image_descr_link_preview">hivatkozás előnézeti képe</string> - <string name="leave_group_question">Elhagyod a csoportot?</string> + <string name="leave_group_question">Csoport elhagyása?</string> <string name="chat_preferences_no">nem</string> <string name="v4_5_reduced_battery_usage_descr">Hamarosan további fejlesztések érkeznek!</string> <string name="feature_off">ki</string> - <string name="install_simplex_chat_for_terminal">Telepítsd a SimpleX Chat-et a terminálhoz</string> + <string name="install_simplex_chat_for_terminal">SimpleX Chat telepítése a terminálhoz</string> <string name="self_destruct_new_display_name">Új megjelenített név:</string> <string name="new_passphrase">Új jelmondat…</string> <string name="callstatus_missed">nem fogadott hívás</string> - <string name="database_migrations">Migrációk: %s</string> + <string name="database_migrations">Átköltöztetés: %s</string> <string name="in_reply_to">Válasz neki</string> <string name="notification_preview_mode_message">Üzenet szövege</string> <string name="notifications_will_be_hidden">Az értesítések csak az alkalmazás bezárásáig érkeznek!</string> @@ -867,57 +867,57 @@ <string name="group_member_role_member">tag</string> <string name="make_private_connection">Privát kapcsolat létrehozása</string> <string name="moderated_item_description">Moderálva %s által</string> - <string name="import_theme_error_desc">Győződj meg róla, hogy a fájl helyes YAML-szintaxist tartalmaz. Exportáld a témát, hogy legyen egy példa a téma-fájl szerkezetére.</string> + <string name="import_theme_error_desc">Győződjön meg arról, hogy a fájl helyes YAML-szintaxist tartalmaz. Exportálja a témát, hogy legyen egy példa a téma fájl szerkezetére.</string> <string name="italic_text">dőlt</string> <string name="non_content_uri_alert_title">Érvénytelen fájl elérési útvonal</string> - <string name="connect_via_group_link">Csatlakozol a csoporthoz?</string> + <string name="connect_via_group_link">Csatlakozik a csoporthoz?</string> <string name="status_no_e2e_encryption">nincs e2e titkosítás</string> <string name="new_database_archive">Új adatbázis-archívum</string> <string name="live_message">Élő üzenet!</string> <string name="invite_to_group_button">Meghívás a csoportba</string> - <string name="lock_after">Lezárás miután</string> + <string name="lock_after">Zárolás miután</string> <string name="incoming_audio_call">Bejövő hanghívás</string> <string name="keychain_error">Kulcstartó hiba</string> - <string name="join_group_question">Csatlakozol a csoporthoz?</string> - <string name="incognito_info_protects">Az inkognitó mód úgy védi a magánszférádat, hogy minden egyes kapcsolathoz új, véletlenszerű profilt használ.</string> + <string name="join_group_question">Csatlakozik a csoporthoz?</string> + <string name="incognito_info_protects">Az inkognitómód védi személyes adatait azáltal, hogy minden ismerőshöz új véletlenszerű profilt használ.</string> <string name="v5_2_more_things_descr">- stabilabb üzenetkézbesítés. -\n- egy kicsit jobb csoportok. +\n- valamivel jobb csoportok. \n- és még sok más!</string> - <string name="v5_1_message_reactions">Üzenet reakciók</string> + <string name="v5_1_message_reactions">Üzenetreakciók</string> <string name="no_connected_mobile">Nincs csatlakoztatott mobil eszköz</string> <string name="network_status">Hálózat állapota</string> - <string name="new_passcode">Új Jelkód</string> - <string name="message_delivery_error_desc">Valószínűleg ez az ismerősöd törölte a kapcsolatát veled.</string> + <string name="new_passcode">Új jelkód</string> + <string name="message_delivery_error_desc">Valószínűleg ez az ismerős törölte önnel a kapcsolatot.</string> <string name="join_group_incognito_button">Csatlakozás inkognitóban</string> - <string name="open_chat">Chat megnyitása</string> + <string name="open_chat">Csevegés megnyitása</string> <string name="callstatus_rejected">elutasított hívás</string> <string name="onboarding_notifications_mode_periodic">Rendszeres</string> <string name="feature_received_prohibited">fogadott, tiltott</string> <string name="connect_plan_repeat_connection_request">Kapcsolódási kérés megismétlése?</string> - <string name="only_you_can_delete_messages">Kizárólag csak te tudsz véglegesen törölni üzeneteket (az ismerősöd csak megjelölheti azokat törlendőként). (24 óra)</string> + <string name="only_you_can_delete_messages">Visszafordíthatatlanul csak ön törölhet üzeneteket (ismerőse csak törlésre jelölheti őket ). (24 óra)</string> <string name="role_in_group">Szerepkör</string> <string name="simplex_link_contact">SimpleX ismerős azonosítója</string> <string name="stop_file__confirm">Megállítás</string> - <string name="smp_servers_preset_server">Előre beállított szerver</string> - <string name="add_contact_or_create_group">Új chat kezdése</string> - <string name="opensource_protocol_and_code_anybody_can_run_servers">Nyílt forráskódú protokoll és program - bárki üzemeltethet szervereket.</string> + <string name="smp_servers_preset_server">Előre beállított kiszolgáló</string> + <string name="add_contact_or_create_group">Új csevegés kezdése</string> + <string name="opensource_protocol_and_code_anybody_can_run_servers">Nyílt forráskódú protokoll és forráskód – bárki üzemeltethet kiszolgálókat.</string> <string name="rcv_group_event_open_chat">Megnyitás</string> <string name="network_option_protocol_timeout">Protokoll időtúllépés</string> <string name="secret_text">titok</string> - <string name="settings_notification_preview_mode_title">Előnézet mutatása</string> + <string name="settings_notification_preview_mode_title">Előnézet megjelenítése</string> <string name="callstate_waiting_for_confirmation">várakozás a visszaigazolásra…</string> <string name="stop_file__action">Fájl megállítása</string> - <string name="description_via_group_link">csoport linken keresztül</string> + <string name="description_via_group_link">csoport hivatkozáson keresztül</string> <string name="network_option_ping_interval">PING időköze</string> <string name="send_disappearing_message">Eltűnő üzenet küldése</string> <string name="self_destruct_passcode">Önmegsemmisítési jelkód</string> - <string name="save_and_update_group_profile">Mentés és a csoport profil frissítése</string> - <string name="your_privacy">A te adatvédelmed</string> - <string name="your_simplex_contact_address">A te SimpleX azonosítód</string> - <string name="alert_text_fragment_please_report_to_developers">Kérlek jelentsd a fejlesztőknek!</string> - <string name="people_can_connect_only_via_links_you_share">Az emberek kizárólag az általad megosztott link alapján kapcsolódhatnak hozzád.</string> - <string name="prohibit_sending_disappearing">Az eltűnő üzenetek küldése le van tiltva.</string> - <string name="only_you_can_send_voice">Kizárólag te tudsz hangüzeneteket küldeni.</string> + <string name="save_and_update_group_profile">Mentés és csoport profil frissítése</string> + <string name="your_privacy">Adatvédelem</string> + <string name="your_simplex_contact_address">SimpleX azonosítója</string> + <string name="alert_text_fragment_please_report_to_developers">Jelentse a fejlesztőknek.</string> + <string name="people_can_connect_only_via_links_you_share">Az emberek csak az ön által megosztott hivatkozáson keresztül kapcsolódhatnak.</string> + <string name="prohibit_sending_disappearing">Eltűnő üzenetek küldésének letiltása.</string> + <string name="only_you_can_send_voice">Csak ön tud hangüzeneteket küldeni.</string> <string name="update_network_settings_confirmation">Frissítés</string> <string name="icon_descr_video_snd_complete">Videó elküldve</string> <string name="update_database_passphrase">Adatbázis jelmondat megváltoztatása</string> @@ -925,51 +925,51 @@ <string name="passcode_not_changed">A jelkód nem változott!</string> <string name="refresh_qr_code">Frissítés</string> <string name="custom_time_picker_select">Választás</string> - <string name="only_you_can_make_calls">Kizárólag te tudsz hívásokat indítani.</string> + <string name="only_you_can_make_calls">Csak ön tud hívásokat indítani.</string> <string name="smp_server_test_secure_queue">Biztonságos várólista</string> - <string name="rate_the_app">Értékeld az appot</string> - <string name="share_invitation_link">Egyszer használatos link megosztása</string> + <string name="rate_the_app">Értékelje az alkalmazást</string> + <string name="share_invitation_link">Egyszer használatos hivatkozás megosztása</string> <string name="database_restore_error">Hiba az adatbázis visszaállításakor</string> <string name="group_members_2">%s és %s</string> - <string name="chat_preferences_you_allow">Te engedélyezed</string> - <string name="v4_5_reduced_battery_usage">Takarékos akkumulátor használat</string> - <string name="save_and_notify_contacts">Mentés és az ismerősök értesítése</string> + <string name="chat_preferences_you_allow">Engedélyezte</string> + <string name="v4_5_reduced_battery_usage">Csökkentett akkumulátorhasználat</string> + <string name="save_and_notify_contacts">Mentés és ismerősök értesítése</string> <string name="group_welcome_preview">Előnézet</string> - <string name="use_chat">Használd a chatet</string> + <string name="use_chat">Csevegés használata</string> <string name="share_verb">Megosztás</string> <string name="received_message">Fogadott üzenet</string> <string name="button_welcome_message">Üdvözlő üzenet</string> <string name="rcv_group_event_n_members_connected">%s, %s és %d további tag csatlakozott</string> - <string name="only_your_contact_can_make_calls">Kizárólag az ismerősöd tud hívást indítani.</string> - <string name="settings_section_title_themes">SZÍNSÉMÁK</string> + <string name="only_your_contact_can_make_calls">Csak az ismerős tud hívást indítani.</string> + <string name="settings_section_title_themes">TÉMÁK</string> <string name="videos_limit_title">Túl sok videó!</string> - <string name="stop_chat_to_enable_database_actions">Chat szolgáltatás megállítása az adatbázis műveletek elvégzéséhez.</string> - <string name="welcome">Üdvözöllek!</string> + <string name="stop_chat_to_enable_database_actions">Csevegési szolgáltatás megállítása az adatbázis műveletek elvégzéséhez.</string> + <string name="welcome">Üdvözöljük!</string> <string name="v5_1_self_destruct_passcode">Önmegsemmisítési jelkód</string> - <string name="connect_via_link_or_qr_from_clipboard_or_in_person">(beolvasás vagy vágólapról beillesztés)</string> + <string name="connect_via_link_or_qr_from_clipboard_or_in_person">(beolvasás vagy beillesztés a vágólapról)</string> <string name="waiting_for_video">Videóra várakozás</string> <string name="reply_verb">Válasz</string> - <string name="connect_plan_this_is_your_own_one_time_link">Ez a te egyszer használatos linked!</string> + <string name="connect_plan_this_is_your_own_one_time_link">Ez az egyszer használatos hivatkozása!</string> <string name="ntf_channel_calls">SimpleX Chat hívások</string> - <string name="connect_use_new_incognito_profile">Az új inkognító profil használata</string> - <string name="contact_developers">Kérlek frissítsd az appot és jelentsd a fejlesztőknek!</string> + <string name="connect_use_new_incognito_profile">Új inkognító profil használata</string> + <string name="contact_developers">Frissítse az alkalmazást, és lépjen kapcsolatba a fejlesztőkkel.</string> <string name="theme_simplex">SimpleX</string> - <string name="send_link_previews">Link előnézetek küldése</string> + <string name="send_link_previews">Hivatkozás előnézetek küldése</string> <string name="rcv_conn_event_verification_code_reset">biztonsági kód megváltozott</string> - <string name="notification_preview_mode_contact_desc">Kizárólag az ismerős mutatása</string> + <string name="notification_preview_mode_contact_desc">Kizárólag ismerős megjelenítése</string> <string name="icon_descr_speaker_on">Hangszóró bekapcsolva</string> - <string name="restart_the_app_to_use_imported_chat_database">Indítsd újra az appot, hogy importált chat adatbázist használj.</string> + <string name="restart_the_app_to_use_imported_chat_database">Importált csevegési adatbázis használatához indítsa újra az alkalmazást.</string> <string name="icon_descr_sent_msg_status_unauthorized_send">jogosulatlan küldés</string> - <string name="only_your_contact_can_send_voice">Kizárólag az ismerősöd tud hangüzeneteket küldeni.</string> + <string name="only_your_contact_can_send_voice">Csak az ismerős tud hangüzeneteket küldeni.</string> <string name="icon_descr_settings">Beállítások</string> - <string name="scan_qr_to_connect_to_contact">Kapcsolat létrehozásához az ismerősöd beolvassa a QR-kódodat vagy a linket használja az appban.</string> + <string name="scan_qr_to_connect_to_contact">A csatlakozáshoz az ismerős beolvashatja a QR-kódot, vagy használhatja az alkalmazásban található hivatkozást.</string> <string name="callstate_received_confirmation">visszaigazolás fogadása…</string> - <string name="scan_code_from_contacts_app">A biztonsági kód beolvasása az ismerősöd appjából.</string> - <string name="observer_cant_send_message_desc">Kérlek vedd fel a kapcsolatot a csoport adminnal!</string> + <string name="scan_code_from_contacts_app">Biztonsági kód beolvasása ismerős általi alkalmazásból.</string> + <string name="observer_cant_send_message_desc">Lépjen kapcsolatba a csoport adminnal.</string> <string name="icon_descr_video_on">Videó bekapcsolva</string> <string name="display_name__field">Profil neve:</string> <string name="paste_button">Beillesztés</string> - <string name="thank_you_for_installing_simplex">Köszönjük, hogy telepítetted a SimpleX Chatet!</string> + <string name="thank_you_for_installing_simplex">Köszönjük, hogy telepítette a SimpleX Chatet!</string> <string name="star_on_github">Csillag a GitHub-on</string> <string name="remove_member_confirmation">Eltávolítás</string> <string name="search_verb">Keresés</string> @@ -977,20 +977,20 @@ <string name="self_destruct_passcode_enabled">Az önmegsemmisítési jelkód engedélyezve!</string> <string name="v4_2_security_assessment">Biztonsági kiértékelés</string> <string name="color_title">Cím</string> - <string name="icon_descr_send_message">Üzenet Elküldése</string> - <string name="restore_database">Adatbázis mentés visszaállítása</string> + <string name="icon_descr_send_message">Üzenet elküldése</string> + <string name="restore_database">Adatbázismentés visszaállítása</string> <string name="revoke_file__confirm">Visszavon</string> - <string name="ask_your_contact_to_enable_voice">Kérd meg az ismerősödet, hogy engedélyezze a hangüzenetek küldését!</string> - <string name="description_you_shared_one_time_link">egyszer használatos linket osztottál meg</string> - <string name="simplex_link_mode_browser_warning">A link megnyitása böngészőben gyengítheti az adatvédelem és biztonság szintjét. A megbízhatatlan SimpleX linkek vörössel vannak kiemelve.</string> - <string name="your_ice_servers">Az ICE szervereid</string> - <string name="you_accepted_connection">A kapcsolódást elfogadtad</string> + <string name="ask_your_contact_to_enable_voice">Ismerős felkérése, hogy engedélyezze a hangüzenetek küldését.</string> + <string name="description_you_shared_one_time_link">egyszer használatos hivatkozást osztott meg</string> + <string name="simplex_link_mode_browser_warning">A hivatkozás megnyitása böngészőben gyengítheti az adatvédelem és biztonság szintjét. A megbízhatatlan SimpleX hivatkozások vörössel vannak kiemelve.</string> + <string name="your_ice_servers">ICE kiszolgálók</string> + <string name="you_accepted_connection">Kapcsolódás elfogadva</string> <string name="reject_contact_button">Elutasítás</string> <string name="notification_preview_mode_message_desc">Ismerős és üzenet mutatása</string> <string name="settings_section_title_settings">BEÁLLÍTÁSOK</string> - <string name="save_profile_password">Felhasználói fiók jelszavának elmentése</string> + <string name="save_profile_password">Felhasználói fiók jelszavának mentése</string> <string name="stop_snd_file__title">Fájl küldés megszakítása?</string> - <string name="unlink_desktop_question">Számítőgép leválasztása?</string> + <string name="unlink_desktop_question">Számítógép leválasztása?</string> <string name="voice_messages_prohibited">A hangüzenetek le vannak tilva!</string> <string name="compose_send_direct_message_to_connect">A kapcsolódáshoz közvetlen üzenet küldése</string> <string name="network_option_ping_count">PING számláló</string> @@ -1000,57 +1000,57 @@ <string name="network_use_onion_hosts_prefer">Amikor elérhető</string> <string name="voice_message_with_duration">Hangüzenet (%1$s)</string> <string name="current_version_timestamp">%s (jelenlegi)</string> - <string name="smp_servers_your_server">A te szervered</string> + <string name="smp_servers_your_server">Saját kiszolgáló</string> <string name="random_port">Véletlen</string> <string name="share_with_contacts">Megosztás ismerősökkel...</string> - <string name="sender_you_pronoun">te</string> - <string name="you_have_no_chats">Nincsenek chat üzeneteid</string> + <string name="sender_you_pronoun">ön</string> + <string name="you_have_no_chats">Nincsenek csevegési üzenetek</string> <string name="send_disappearing_message_send">Küldés</string> <string name="chat_item_ttl_seconds">%s másodperc</string> <string name="recipient_colon_delivery_status">%s: %s</string> - <string name="system_restricted_background_desc">A SimpleX nem tud a háttérben futni. Csak az alkalmazás futása közben fogod az üzeneteket megkapni.</string> + <string name="system_restricted_background_desc">A SimpleX nem tud futni a háttérben. Csak akkor fog értesítéseket kapni, ha az alkalmazás fut.</string> <string name="images_limit_title">Túl sok kép!</string> - <string name="save_archive">Archív mentése</string> + <string name="save_archive">Archívum mentése</string> <string name="group_members_n">%s, %s és %d tag</string> - <string name="auth_stop_chat">Chat szolgáltatás megállítása</string> - <string name="simplex_link_mode">SimpleX linkek</string> + <string name="auth_stop_chat">Csevegési szolgáltatás megállítása</string> + <string name="simplex_link_mode">SimpleX hivatkozások</string> <string name="v4_4_disappearing_messages_desc">Az elküldött üzenetek törlésre kerülnek a beállított idő után.</string> <string name="user_unmute">Némítás feloldása</string> <string name="share_text_sent_at">Elküldve ekkor: %s</string> <string name="connect_use_current_profile">Jelenlegi profil használata</string> <string name="this_device">Ez az eszköz</string> - <string name="share_address_with_contacts_question">Megosztod a címet az ismerőseiddel?</string> - <string name="profile_password">Profil jelszó</string> - <string name="theme">Színséma</string> + <string name="share_address_with_contacts_question">Megosztja az azonosítót az ismerősökkel?</string> + <string name="profile_password">Profiljelszó</string> + <string name="theme">Téma</string> <string name="remove_passphrase_from_settings">Jelmondat eltávolítása a beállításokból?</string> - <string name="simplex_link_group">SimpleX csoport link</string> + <string name="simplex_link_group">SimpleX csoport hivatkozás</string> <string name="icon_descr_waiting_for_image">Képre várakozás</string> <string name="self_destruct">Önmegsemmisítés</string> <string name="callstate_waiting_for_answer">várakozás válaszra…</string> <string name="text_field_set_contact_placeholder">Ismerős nevének beállítása…</string> <string name="unblock_member_button">Tag feloldása</string> <string name="scan_QR_code">QR-kód beolvasása</string> - <string name="smp_servers_test_server">Szerver tesztelése</string> - <string name="send_us_an_email">Írj nekünk e-mailben!</string> - <string name="conn_stats_section_title_servers">SZERVEREK</string> - <string name="smp_servers_test_servers">Szerverek tesztelése</string> + <string name="smp_servers_test_server">Kiszolgáló tesztelése</string> + <string name="send_us_an_email">Küldjön nekünk e-mailt</string> + <string name="conn_stats_section_title_servers">KISZOLGÁLÓK</string> + <string name="smp_servers_test_servers">Kiszolgálók tesztelése</string> <string name="la_lock_mode_passcode">Jelkód bevitele</string> <string name="la_mode_system">Rendszer</string> - <string name="submit_passcode">Elküld</string> + <string name="submit_passcode">Elküldés</string> <string name="security_code">Biztonsági kód</string> - <string name="enter_correct_current_passphrase">Kérlek írd be a helyes jelmondatot!</string> + <string name="enter_correct_current_passphrase">Adja meg a helyes aktuális jelmondatát.</string> <string name="prohibit_message_deletion">Az üzenetek véglegesen való törlése le van tiltva.</string> - <string name="prohibit_message_reactions">Az üzenetekre adott emoji reakciók le vannak tiltva.</string> + <string name="prohibit_message_reactions">Üzenetreakció tiltása.</string> <string name="use_random_passphrase">Véletlenszerű jelmondat használata</string> - <string name="call_connection_peer_to_peer">ponttól-pontig</string> - <string name="run_chat_section">CHAT SZOLGÁLTATÁS INDÍTÁSA</string> - <string name="paste_the_link_you_received">Fogadott link beillesztése</string> - <string name="smp_save_servers_question">Szerverek elmentése?</string> + <string name="call_connection_peer_to_peer">egyenrangú</string> + <string name="run_chat_section">CSEVEGÉSI SZOLGÁLTATÁS INDÍTÁSA</string> + <string name="paste_the_link_you_received">Fogadott hivatkozás beillesztése</string> + <string name="smp_save_servers_question">Kiszolgálók mentése?</string> <string name="v4_2_security_assessment_desc">A SimpleX Chat biztonsága a Trail of Bits által lett auditálva.</string> <string name="rcv_group_event_updated_group_profile">módosított csoport profil</string> - <string name="settings_section_title_support">TÁMOGASD A SIMPLEX CHATET!</string> + <string name="settings_section_title_support">TÁMOGASSA A SIMPLEX CHATET!</string> <string name="simplex_service_notification_title">SimpleX Chat szolgáltatás</string> - <string name="observer_cant_send_message_title">Nem tudsz üzeneteket küldeni!</string> + <string name="observer_cant_send_message_title">Nem lehet üzeneteket küldeni!</string> <string name="is_verified">%s ellenőrzött</string> <string name="password_to_show">Jelszó mutatása</string> <string name="privacy_and_security">Adatvédelem és biztonság</string> @@ -1059,144 +1059,144 @@ <string name="sent_message">Elküldött üzenet</string> <string name="select_contacts">Ismerősök kiválasztása</string> <string name="unknown_message_format">ismeretlen üzenet formátum</string> - <string name="smp_servers_save">Szerverek elmentése</string> + <string name="smp_servers_save">Kiszolgálók mentése</string> <string name="group_welcome_title">Üdvözlő üzenet</string> <string name="network_option_seconds_label">mp</string> - <string name="profile_update_will_be_sent_to_contacts">Profil változtatása frissítésre kerül az ismerőseidnél.</string> + <string name="profile_update_will_be_sent_to_contacts">A profilfrissítés elküldésre került az ismerősök számára.</string> <string name="v5_3_simpler_incognito_mode">Egyszerűsített inkognító mód</string> - <string name="save_welcome_message_question">Üdvözlőszöbeg elmentése?</string> - <string name="restart_the_app_to_create_a_new_chat_profile">Indítsd újra az appot, hogy új felhasználói fiókot hozz létre.</string> + <string name="save_welcome_message_question">Üdvözlőszöveg mentése?</string> + <string name="restart_the_app_to_create_a_new_chat_profile">Új csevegési fiók létrehozásához indítsa újra az alkalmazást.</string> <string name="toast_permission_denied">Engedély megtagadva!</string> <string name="icon_descr_call_pending_sent">Főggőben lévő hívás</string> <string name="opening_database">Adatbázis megnyitása…</string> <string name="shutdown_alert_question">Leállítás?</string> <string name="enter_passphrase_notification_title">Jelmondat szükséges</string> <string name="onboarding_notifications_mode_title">Privát értesítések</string> - <string name="you_invited_a_contact">Meghívtál egy ismerőst</string> + <string name="you_invited_a_contact">Meghívott egy ismerőst</string> <string name="is_not_verified">%s nincs ellenőrizve</string> - <string name="contact_tap_to_connect">A csatlakozáshoz érintsd meg</string> + <string name="contact_tap_to_connect">Koppintson a csatlakozáshoz</string> <string name="this_device_name">Ennek az eszköznek a neve</string> - <string name="your_current_profile">A te jelenlegi profilod</string> + <string name="your_current_profile">Jelenlegi profil</string> <string name="smp_server_test_upload_file">Fájl feltöltése</string> <string name="prohibit_calls">Hang- és videóhívások tiltása.</string> <string name="network_use_onion_hosts_required">Megkövetelt</string> - <string name="ntf_channel_messages">SimpleX chat üzenetek</string> + <string name="ntf_channel_messages">SimpleX Chat üzenetek</string> <string name="restore_database_alert_confirm">Visszaállítás</string> <string name="setup_database_passphrase">Adatbázis jelmondat beállítása</string> <string name="color_sent_message">Elküldött üzenet</string> - <string name="notifications_mode_periodic">Rendszeresen elindul</string> - <string name="connect_plan_this_is_your_own_simplex_address">Ez a te saját SimpleX azonosítód!</string> + <string name="notifications_mode_periodic">Időszakosan indul</string> + <string name="connect_plan_this_is_your_own_simplex_address">Ez a SimpleX azonosítója!</string> <string name="group_member_status_removed">eltávolítva</string> - <string name="share_link">Link megosztása</string> - <string name="icon_descr_simplex_team">SimpleX Csapat</string> + <string name="share_link">Hivatkozás megosztása</string> + <string name="icon_descr_simplex_team">SimpleX csapat</string> <string name="image_descr_profile_image">profilkép</string> - <string name="your_chat_profiles">A te chat profiljaid</string> + <string name="your_chat_profiles">Csevegési profiljai</string> <string name="group_member_role_owner">tulajdonos</string> <string name="la_notice_turn_on">Bekapcsolás</string> <string name="rcv_group_event_3_members_connected">%s, %s és %s csatlakozott</string> <string name="simplex_link_invitation">SimpleX egyszer használatos meghívó</string> - <string name="your_calls">A te hívásaid</string> + <string name="your_calls">Hívások</string> <string name="icon_descr_sent_msg_status_send_failed">küldés sikertelen</string> - <string name="theme_colors_section_title">SZÍNSÉMA SZÍNEK</string> + <string name="theme_colors_section_title">TÉMA SZÍNEK</string> <string name="network_options_revert">Visszaállít</string> - <string name="restore_database_alert_desc">Kérlek írd be az előző jelszót az adatbázis visszaállítása után. Ez a művelet visszafordíthatatlan.</string> + <string name="restore_database_alert_desc">Előző jelszó megadása az adatbázis biztonsági mentésének visszaállítása után. Ez a művelet nem visszavonható.</string> <string name="color_secondary">Másodlagos</string> <string name="settings_section_title_socks">SOCKS PROXY</string> <string name="save_servers_button">Mentés</string> <string name="settings_restart_app">Újraindítás</string> - <string name="smp_servers">Üzenetküldő (SMP) szerverek</string> + <string name="smp_servers">Üzenetküldő (SMP) kiszolgálók</string> <string name="video_descr">Videó</string> <string name="save_auto_accept_settings">Automatikus elfogadási beállítások mentése</string> <string name="sync_connection_force_confirm">Újraegyzetetés</string> <string name="icon_descr_waiting_for_video">Videóra várakozás</string> - <string name="your_XFTP_servers">A te Simplex fájl küldő (XFTP) szervereid</string> + <string name="your_XFTP_servers">XFTP kiszolgálók</string> <string name="icon_descr_video_off">Videó kikapcsolva</string> <string name="v4_5_private_filenames">Privát fájl nevek</string> - <string name="save_settings_question">Beállítások elmentése?</string> + <string name="save_settings_question">Beállítások mentése?</string> <string name="la_mode_passcode">Jelkód</string> <string name="unknown_error">Ismeretlen hiba</string> - <string name="smp_servers_your_server_address">A te szerver címed</string> - <string name="auth_open_chat_console">Chat konzol megnyitása</string> + <string name="smp_servers_your_server_address">Saját kiszolgáló cím</string> + <string name="auth_open_chat_console">Csevegés konzol megnyitása</string> <string name="remove_member_button">Tag eltávolítása</string> - <string name="set_database_passphrase">Beállított adatbázis jelmondat</string> + <string name="set_database_passphrase">Adatbázis jelmondat beállítása</string> <string name="view_security_code">Biztonsági kód megtekintése</string> <string name="unblock_member_question">Tag feloldása?</string> <string name="sender_may_have_deleted_the_connection_request">A küldő törölhette a kapcsolódási kérelmet.</string> <string name="wrong_passphrase">Téves adatbázis jelmondat</string> - <string name="your_SMP_servers">A te Simplex chat (SMP) szervereid</string> + <string name="your_SMP_servers">SMP kiszolgálók</string> <string name="send_receipts_disabled_alert_title">Üzenet kézbesítési jelentés letiltva</string> <string name="open_database_folder">Adatbázis mappa megnyitása</string> - <string name="description_via_one_time_link">egyszer használatos linken keresztül</string> + <string name="description_via_one_time_link">egyszer használatos hivatkozáson keresztül</string> <string name="set_group_preferences">Csoportbeállítások megadása</string> - <string name="simplex_link_connection">%1$s keresztül</string> + <string name="simplex_link_connection">ezen keresztül: %1$s</string> <string name="chat_preferences_yes">igen</string> <string name="voice_message">Hangüzenet</string> - <string name="settings_section_title_use_from_desktop">Használat asztali kliensről</string> - <string name="settings_section_title_you">TE</string> + <string name="settings_section_title_use_from_desktop">Használat számítógépről</string> + <string name="settings_section_title_you">ÖN</string> <string name="network_proxy_port">port %d</string> - <string name="to_connect_via_link_title">Kapcsolódás link által</string> + <string name="to_connect_via_link_title">Kapcsolódás hivatkozás által</string> <string name="share_address">Azonosító megosztása</string> - <string name="smp_servers_scan_qr">Szerver QR-kód beolvasása</string> + <string name="smp_servers_scan_qr">A kiszolgáló QR-kódjának beolvasása</string> <string name="stop_chat_confirmation">Megállítás</string> - <string name="stop_sharing_address">Azonosítód megosztásának szüneteltetése?</string> - <string name="auth_open_chat_profiles">Chat profilok megnyitása</string> + <string name="stop_sharing_address">Címmegosztás megállítása?</string> + <string name="auth_open_chat_profiles">Csevegés profilok megnyitása</string> <string name="connect_plan_repeat_join_request">Csatlakozási kérés megismétlése?</string> <string name="waiting_for_image">Képre várakozás</string> <string name="v4_3_voice_messages">Hangüzenetek</string> <string name="button_remove_member_question">Tag eltávolítása?</string> - <string name="verify_security_code">Biztonsági kód megtekintése</string> - <string name="rcv_group_event_user_deleted">eltávolított téged</string> - <string name="simplex_address">SimpleX cím</string> + <string name="verify_security_code">Biztonsági kód ellenőrzése</string> + <string name="rcv_group_event_user_deleted">eltávolítottak</string> + <string name="simplex_address">SimpleX azonosító</string> <string name="show_dev_options">Mutat:</string> <string name="callstate_received_answer">fogadott válasz…</string> - <string name="restore_database_alert_title">Adatbázis mentés visszaállítása?</string> + <string name="restore_database_alert_title">Adatbázismentés visszaállítása?</string> <string name="simplex_service_notification_text">Üzenetek fogadása…</string> <string name="rcv_group_event_2_members_connected">%s és %s csatlakozva</string> - <string name="you_are_observer">megfigyelő vagy</string> + <string name="you_are_observer">megfigyelő szerep</string> <string name="port_verb">Port</string> <string name="set_passcode">Jelkód beállítása</string> <string name="whats_new">Milyen újdonságok vannak</string> <string name="connect_plan_open_group">Csoport megnyitása</string> <string name="info_row_sent_at">Elküldve ekkor</string> - <string name="prohibit_sending_voice">A hangüzenetek küldése le van tiltva.</string> + <string name="prohibit_sending_voice">Hangüzenetek küldésének letiltása.</string> <string name="privacy_show_last_messages">Utolsó üzenetek megjelenítése</string> - <string name="smp_servers_preset_address">Előre beállított szerver címe</string> + <string name="smp_servers_preset_address">Az előre beállított kiszolgáló címe</string> <string name="periodic_notifications_disabled">Rendszeres értesítések letiltva!</string> <string name="passcode_changed">A jelkód megváltozott!</string> - <string name="notifications_mode_off">Akkor fut, amikor az alkalmazás meg van nyitva</string> - <string name="this_QR_code_is_not_a_link">Ez a QR-kód nem egy link!</string> + <string name="notifications_mode_off">Akkor fut, ha az alkalmazás nyitva van</string> + <string name="this_QR_code_is_not_a_link">Ez a QR-kód nem egy hivatkozás!</string> <string name="waiting_for_file">Fájlra várakozás</string> <string name="core_simplexmq_version">simplexmq: v%s (%2s)</string> <string name="unlink_desktop">Szétkapcsolás</string> - <string name="incognito_random_profile">A te véletlenszerű profilod</string> + <string name="incognito_random_profile">Véletlenszerű profil</string> <string name="wrong_passphrase_title">Téves jelmondat!</string> - <string name="prohibit_message_reactions_group">Az üzenetekre adott emoji reakciók le vannak tiltva.</string> + <string name="prohibit_message_reactions_group">Az üzenetreakciók tiltása.</string> <string name="language_system">Rendszer</string> <string name="icon_descr_received_msg_status_unread">olvasatlan</string> <string name="icon_descr_server_status_pending">Függő</string> - <string name="personal_welcome">Üdvözöllek %1$s!</string> + <string name="personal_welcome">Üdvözöljük %1$s!</string> <string name="remove_passphrase_from_keychain">Jelmondat eltávolítása a Keystrore-ból?</string> <string name="auth_unlock">Feloldás</string> - <string name="prohibit_sending_disappearing_messages">Az eltűnő üzenetek küldése le van tiltva.</string> + <string name="prohibit_sending_disappearing_messages">Eltűnő üzenetek küldésének letiltása.</string> <string name="gallery_video_button">Videó</string> <string name="update_database">Frissítés</string> <string name="open_verb">Megnyitás</string> <string name="periodic_notifications">Rendszeres értesítések</string> <string name="alert_title_skipped_messages">Kihagyott üzenetek</string> - <string name="prohibit_sending_voice_messages">A hangüzenetek küldése le van tiltva.</string> + <string name="prohibit_sending_voice_messages">Hangüzenetek küldésének letiltása.</string> <string name="set_contact_name">Ismerős nevének beállítása...</string> - <string name="only_you_can_send_disappearing">Kizárólag te tudsz eltűnő üzeneteket küldeni.</string> + <string name="only_you_can_send_disappearing">Csak ön tud eltűnő üzeneteket küldeni.</string> <string name="share_image">Kép/videó megoszása…</string> - <string name="group_info_member_you">te: %1$s</string> - <string name="your_preferences">A te beállításaid</string> + <string name="group_info_member_you">ön: %1$s</string> + <string name="your_preferences">Beállítások</string> <string name="reset_color">Színek alaphelyzetbe állítása</string> <string name="network_options_save">Mentés</string> <string name="switch_verb">Váltás</string> - <string name="paste_the_link_you_received_to_connect_with_your_contact">Illeszd be a kapott linket az ismerősödhöz való kapcsolódáshoz…</string> + <string name="paste_the_link_you_received_to_connect_with_your_contact">Kapott hivatkozás beillesztése az ismerősökhöz történő kapcsolódáshoz…</string> <string name="scan_code">Kód beolvasása</string> <string name="open_port_in_firewall_title">Port megnyitása a tűzfalon</string> <string name="callstate_starting">indítás…</string> - <string name="save_color">Szín elmentése</string> + <string name="save_color">Szín mentése</string> <string name="settings_shutdown">Leállítás</string> <string name="icon_descr_sent_msg_status_sent">elküldve</string> <string name="network_socks_toggle_use_socks_proxy">SOCKS proxy használata</string> @@ -1204,377 +1204,377 @@ <string name="privacy_redefined">Adatvédelem újraértelmezve</string> <string name="voice_message_send_text">Hangüzenet…</string> <string name="protect_app_screen">App képernyőjének védelme</string> - <string name="show_QR_code">QR-kód mutatása</string> + <string name="show_QR_code">QR-kód megjelenítése</string> <string name="icon_descr_video_call">videóhívás</string> <string name="unfavorite_chat">Nem kedvenc</string> <string name="send_receipts">Üzenet kézbesítési jelentések</string> - <string name="icon_descr_address">SimpleX cím</string> - <string name="chat_help_tap_button">Érintsd meg a gombot</string> - <string name="save_and_notify_contact">Mentés és az ismerős értesítése</string> + <string name="icon_descr_address">SimpleX azonosító</string> + <string name="chat_help_tap_button">Koppintson a gombra</string> + <string name="save_and_notify_contact">Mentés és ismerős értesítése</string> <string name="icon_descr_call_rejected">Elutasított hívás</string> <string name="network_socks_proxy_settings">SOCKS proxy beállítások</string> <string name="image_descr_qr_code">QR-kód</string> <string name="renegotiate_encryption">Titkosítás újraegyeztetése</string> <string name="remove_passphrase">Eltávolítás</string> - <string name="network_use_onion_hosts">TOR .onion hostok használata</string> - <string name="reveal_verb">Bemutatás</string> - <string name="la_lock_mode">SimpleX Zár mód</string> + <string name="network_use_onion_hosts">Tor .onion hostok használata</string> + <string name="reveal_verb">Felfedés</string> + <string name="la_lock_mode">SimpleX zárolási mód</string> <string name="revoke_file__action">Fájl visszavonása</string> - <string name="xftp_servers">Fájl küldő/fogadó (XFTP) SimpleX szerverek</string> - <string name="prohibit_sending_files">A fájlok- és a médiatartalom küldése le van tiltva.</string> + <string name="xftp_servers">XFTP kiszolgálók</string> + <string name="prohibit_sending_files">Fájlok- és a médiatartalom küldés letiltása.</string> <string name="share_file">Fájl megosztása…</string> <string name="save_verb">Mentés</string> - <string name="call_connection_via_relay">közvetítő szerveren keresztül</string> + <string name="call_connection_via_relay">átjátszón keresztül</string> <string name="stop_sharing">Megosztás leállítása</string> - <string name="snd_group_event_member_deleted">eltávolítottad %1$s</string> - <string name="save_passphrase_and_open_chat">Jelmondat elmentése és chat megnyitása</string> - <string name="save_preferences_question">Beállítások elmentése?</string> - <string name="first_platform_without_user_ids">Az első chat rendszer bármiféle felhasználó azonosító nélkül - privátra lett tervezre.</string> - <string name="prohibit_direct_messages">A tagoknak való közvetlen üzenetküldés le van tiltva.</string> + <string name="snd_group_event_member_deleted">eltávolította őt: %1$s</string> + <string name="save_passphrase_and_open_chat">Jelmondat mentése és csevegés megnyitása</string> + <string name="save_preferences_question">Beállítások mentése?</string> + <string name="first_platform_without_user_ids">Az első csevegési rendszer bármiféle felhasználó azonosító nélkül - privátra lett tervezre.</string> + <string name="prohibit_direct_messages">Közvetlen üzenetek küldésének letiltása tagok részére.</string> <string name="network_enable_socks">SOCKS proxy használata?</string> <string name="icon_descr_speaker_off">Hangszóró kikapcsolva</string> <string name="custom_time_unit_weeks">hét</string> <string name="show_call_on_lock_screen">Mutasd</string> - <string name="webrtc_ice_servers">WebRTC ICE szerverek</string> + <string name="webrtc_ice_servers">WebRTC ICE kiszolgálók</string> <string name="revoke_file__title">Fájl visszavonása?</string> <string name="button_send_direct_message">Közvetlen üzenet küldése</string> <string name="reject">Elutasítás</string> <string name="send_verb">Küldés</string> - <string name="la_lock_mode_system">Rendszer hitelesítés</string> + <string name="la_lock_mode_system">Rendszerhitelesítés</string> <string name="simplex_link_mode_browser">Böngészőn keresztül</string> - <string name="v4_6_hidden_chat_profiles_descr">A chat profiljaid védelme jelszóval!</string> - <string name="only_your_contact_can_send_disappearing">Kizárólag az ismerősöd tud eltűnő üzeneteket küldeni.</string> - <string name="your_ICE_servers">A te ICE szervereid</string> - <string name="scan_qr_code_from_desktop">QR-kód beolvasása asztali számítógépről</string> - <string name="image_descr_simplex_logo">SimpleX Logo</string> + <string name="v4_6_hidden_chat_profiles_descr">Csevegési profiljok védelme jelszóval!</string> + <string name="only_your_contact_can_send_disappearing">Csak az ismerős tud eltűnő üzeneteket küldeni.</string> + <string name="your_ICE_servers">ICE kiszolgálók</string> + <string name="scan_qr_code_from_desktop">QR-kód beolvasása számítógépről</string> + <string name="image_descr_simplex_logo">SimpleX logó</string> <string name="unblock_member_confirmation">Feloldás</string> <string name="unmute_chat">Némítás feloldása</string> - <string name="open_simplex_chat_to_accept_call">SimpleX chat megnyitása a hívás fogadásához</string> + <string name="open_simplex_chat_to_accept_call">SimpleX Chat megnyitása a hívás fogadásához</string> <string name="stop_rcv_file__title">Fájl fogadás megszakítása?</string> - <string name="v5_4_more_things_descr">- opcionális értesítés a törölt ismerősök számára + <string name="v5_4_more_things_descr">- opcionális értesítés a törölt ismerősök számára \n- profil nevek szóközökkel \n- és továbbiak!</string> <string name="v5_0_polish_interface">Lengyel kezelőfelület</string> - <string name="smp_servers_use_server">Használd a szervert</string> + <string name="smp_servers_use_server">Kiszolgáló használata</string> <string name="share_text_received_at">Fogadva ekkor: %s</string> - <string name="la_notice_title_simplex_lock">SimpleX Zár</string> - <string name="save_and_notify_group_members">Mentés és a csoporttagok értesítése</string> - <string name="reset_verb">Alaphelyzetbe álítás</string> - <string name="only_your_contact_can_add_message_reactions">Kizárólag az ismerősöd tud emoji reakciókat adni az üzenetekre.</string> + <string name="la_notice_title_simplex_lock">SimpleX zárolás</string> + <string name="save_and_notify_group_members">Mentés és csoporttagok értesítése</string> + <string name="reset_verb">Alaphelyzetbe állítás</string> + <string name="only_your_contact_can_add_message_reactions">Csak az ismerős tud üzeneteakciókat adni.</string> <string name="voice_messages">Hangüzenetek</string> - <string name="snd_group_event_user_left">te távoztál</string> + <string name="snd_group_event_user_left">elhagyta</string> <string name="icon_descr_record_voice_message">Hangüzenet rögzítése</string> - <string name="auth_simplex_lock_turned_on">SimpleX Zár bekapcsolva</string> + <string name="auth_simplex_lock_turned_on">SimpleX zárolás bekapcsolva</string> <string name="member_contact_send_direct_message">közvetlen üzenet küldése</string> - <string name="scan_from_mobile">Telefonről beolvasás</string> + <string name="scan_from_mobile">Beolvasás mobilról</string> <string name="verify_connections">Kapcsolatok ellenőrzése</string> <string name="share_message">Üzenet megosztása…</string> <string name="custom_time_unit_seconds">másodperc</string> - <string name="lock_not_enabled">SimpleX Zár nincs engedélyezve!</string> - <string name="chat_lock">SimpleX Zár</string> - <string name="your_settings">A te beállításaid</string> - <string name="your_chat_database">Chat adatbázis használata</string> + <string name="lock_not_enabled">SimpleX zárolás nincs engedélyezve!</string> + <string name="chat_lock">SimpleX zárolás</string> + <string name="your_settings">Beállítások</string> + <string name="your_chat_database">Csevegési adatbázisa</string> <string name="rcv_group_event_member_deleted">%1$s eltávolítva</string> - <string name="smp_servers_test_failed">Szerver teszt sikertelen!</string> + <string name="smp_servers_test_failed">A kiszolgáló tesztje sikertelen!</string> <string name="verify_connection">Kapcsolat ellenőrzése</string> - <string name="whats_new_read_more">Tudj meg többet</string> + <string name="whats_new_read_more">Tudjon meg többet</string> <string name="sender_cancelled_file_transfer">A küldő megszakította a fájl átvitelt.</string> - <string name="stop_chat_question">Chat szolgáltatás megállítása?</string> + <string name="stop_chat_question">Csevegési szolgáltatás megállítása?</string> <string name="info_row_received_at">Fogadva ekkor</string> <string name="accept_feature_set_1_day">Beállítva 1 nap</string> <string name="user_unhide">Felfedés</string> <string name="color_received_message">Fogadott üzenet</string> - <string name="only_your_contact_can_delete">Kizárólag az ismerősöd tud véglegesen törölni üzeneteket (te csak törlendőként tudod megjelölni azokat). (24 óra)</string> + <string name="only_your_contact_can_delete">Csak az ismerős tud visszafordíthatatlanul törölni üzeneteket (megjelölheti őket törlésre). (24 óra)</string> <string name="self_destruct_passcode_changed">Az önmegsemmisítési jelkód megváltozott!</string> - <string name="using_simplex_chat_servers">SimpleX Chat szerverek használatban.</string> - <string name="use_simplex_chat_servers__question">SimpleX Chat szerverek használata?</string> - <string name="unhide_chat_profile">Chat profil felfedése</string> + <string name="using_simplex_chat_servers">SimpleX Chat kiszolgálók használatban.</string> + <string name="use_simplex_chat_servers__question">SimpleX Chat kiszolgálók használata?</string> + <string name="unhide_chat_profile">Csevegési profil felfedése</string> <string name="v5_0_large_files_support">Videók és fájlok 1Gb méretig</string> <string name="network_option_tcp_connection_timeout">TCP kapcsolat időtúllépés</string> - <string name="connect__your_profile_will_be_shared">A te %1$s SimpleX azonosítód megosztásra kerül.</string> - <string name="you_are_already_connected_to_vName_via_this_link">Már csatlakozva vagy hozzá: %1$s.</string> - <string name="your_current_chat_database_will_be_deleted_and_replaced_with_the_imported_one">A jelenlegi chat adatbázisod TÖRLÉSRE és FELCSERÉLÉSRE kerül az importált által! -\nEz a művelet nem visszavonható - a profilod, az ismerőseid, a chat üzeneteid és fájljaid mind véglegesen elvesznek!</string> + <string name="connect__your_profile_will_be_shared">A %1$s SimpleX azonosítója megosztásra kerül.</string> + <string name="you_are_already_connected_to_vName_via_this_link">Már csatlakozott: %1$s.</string> + <string name="your_current_chat_database_will_be_deleted_and_replaced_with_the_imported_one">Jelenlegi csevegési adatbázis TÖRLÉSRE és FELCSERÉLÉSRE kerül az importált által! +\nEz a művelet nem visszavonható - profilok, ismerősök, csevegési üzenetek és fájlok véglegesen elvesznek!</string> <string name="chat_with_the_founder">Ötletek és kérdések beküldése</string> - <string name="database_downgrade_warning">Figyelem: néhány adatot elveszíthetsz!</string> - <string name="tap_to_start_new_chat">Új chat kezdése</string> + <string name="database_downgrade_warning">Figyelmeztetés: néhány adat elveszhet!</string> + <string name="tap_to_start_new_chat">Koppintson az új csevegés indításához</string> <string name="waiting_for_desktop">Várakozás a számítógépre…</string> - <string name="next_generation_of_private_messaging">A privát chatelés új generációja</string> + <string name="next_generation_of_private_messaging">A privát üzenetküldés következő generációja</string> <string name="update_network_settings_question">Hálózati beállítások megváltoztatása?</string> <string name="waiting_for_mobile_to_connect">Várakozás a mobiltelefon csatlakozására:</string> <string name="v4_4_verify_connection_security">Kapcsolat biztonságának ellenőrzése</string> <string name="sending_files_not_yet_supported">fájlok küldése egyelőre még nem támogatott</string> - <string name="snd_conn_event_switch_queue_phase_completed_for_member">Megváltoztattad az azonosítót erre: %s</string> + <string name="snd_conn_event_switch_queue_phase_completed_for_member">Azonosítója erre változott: %s</string> <string name="receiving_files_not_yet_supported">fájlok fogadása egyelőre még nem támogatott</string> - <string name="save_group_profile">Csoport profil elmentése</string> + <string name="save_group_profile">Csoport profil mentése</string> <string name="network_options_reset_to_defaults">Alaphelyzetbe állítás</string> - <string name="connection_error_auth_desc">Hacsak az ismerősöd nem törölte a kapcsolatot, vagy ez a hivatkozás már használatban volt, akkor ez hiba lehet – kérjük, jelentsd. -\nA csatlakozáshoz kérd meg az ismerősöd, hogy hozzon létre egy másik kapcsolati hivatkozást, és ellenőrizze, hogy a hálózati kapcsolat stabil-e.</string> + <string name="connection_error_auth_desc">Hacsak az ismerős nem törölte a kapcsolatot, vagy ez a hivatkozás már használatban volt, hiba lehet – kérjük, jelentse. +\nA csatlakozáshoz kérje meg ismerősét, hogy hozzon létre egy másik kapcsolati hivatkozást, és ellenőrizze, hogy a hálózati kapcsolat stabil-e.</string> <string name="video_call_no_encryption">videóhívás (nem e2e titkosított)</string> <string name="smp_servers_use_server_for_new_conn">Alkalmazás új kapcsolatokhoz</string> - <string name="periodic_notifications_desc">Az app rendszeresen lekéri az új üzeneteket - ez naponta néhány százalék akkumulátort használ. Az app nem használja a Google push értesítési rendszert — az eszközödön lévő adat nem kerül megküldésre a szervereknek.</string> - <string name="paste_desktop_address">Számítógép címének beillesztése</string> - <string name="description_via_contact_address_link">ismerős azonosítójának linkjén keresztül</string> - <string name="to_preserve_privacy_simplex_has_background_service_instead_of_push_notifications_it_uses_a_few_pc_battery"><![CDATA[Az adatvédelmed megőrzése érdekkében a Google push értesítési rendszer helyett az app a <b>SimpleX háttérszolgáltatást </b> használja - ez naponta néhány százalék akkumulátort használ.]]></string> - <string name="alert_text_connection_pending_they_need_to_be_online_can_delete_and_retry">Az ismerősöd online kell legyen ahhoz, hogy a kapcsolat létrejöjjön. -\nMegszakíthatod ezt a kapcsolatfelvételt és törölheted az ismerőst (és később ismét megpróbálhatod egy új linkkel)</string> - <string name="restore_passphrase_not_found_desc">Jelmondat nem található a Keystore-ban, kérlek írd be kézileg. Ez akkor történhet, ha helyreállítottad az appot a backup funkcióval. Ha nem így történt, az esetben lépj kapcsolatba a fejlesztőkkel!</string> - <string name="your_contacts_will_remain_connected">Az ismerőseid továbbra is megmaradnak</string> - <string name="error_xftp_test_server_auth">A szervernek engedélyre van szüksége a várólisták létrehozásához, ellenőrizd a jelszavadat</string> - <string name="database_initialization_error_desc">Az adatbázis nem működik megfelelően. Koppints a további információkért</string> + <string name="periodic_notifications_desc">Az új üzenetek rendszeresen letöltésre kerülnek az alkalmazás által – naponta néhány százalékot használ az akkumulátorból. Az alkalmazás nem használ push értesítéseket – az eszközről származó adatok nem kerülnek elküldésre a kiszolgálóknak.</string> + <string name="paste_desktop_address">Számítógép azonosítójának beillesztése</string> + <string name="description_via_contact_address_link">ismerős azonosítójának hivatkozásán keresztül</string> + <string name="to_preserve_privacy_simplex_has_background_service_instead_of_push_notifications_it_uses_a_few_pc_battery"><![CDATA[Az adatvédelem megőrzése érdekkében a push értesítési rendszer helyett az alkalmazás a <b>SimpleX háttérszolgáltatást </b> használja - az akkumulátor néhány százalékát használja naponta.]]></string> + <string name="alert_text_connection_pending_they_need_to_be_online_can_delete_and_retry">Az ismerősnek online kell lennie ahhoz, hogy a kapcsolat létrejöjjön. +\nMegszakíthatja ezt a kapcsolatfelvételt és törölheti az ismerőst (ezt később ismét megpróbálhatja egy új hivatkozással)</string> + <string name="restore_passphrase_not_found_desc">A jelszó nem található a Keystore-ban, ezért kézzel szükséges megadni. Ez akkor történhetett meg, ha visszaállította az alkalmazás adatait egy biztonsági mentési eszközzel. Ha nem így történt, akkor lépjen kapcsolatba a fejlesztőkkel.</string> + <string name="your_contacts_will_remain_connected">Az ismerősök továbbra is csatlakoztatva maradnak.</string> + <string name="error_xftp_test_server_auth">A kiszolgálónak engedélyre van szüksége a várólisták létrehozásához, ellenőrizze jelszavát</string> + <string name="database_initialization_error_desc">Az adatbázis nem működik megfelelően. Koppintson további információért</string> <string name="stop_snd_file__message">A fájl küldése leállt.</string> - <string name="trying_to_connect_to_server_to_receive_messages">Csatlakozási kísérlet a kapcsolat üzeneteinek fogadására használt kiszolgálóhoz ettől az ismerősödtől.</string> - <string name="la_could_not_be_verified">Nem sikerült ellenőrizni téged; kérjük, próbáld meg újra.</string> + <string name="trying_to_connect_to_server_to_receive_messages">Csatlakozási kísérlet a kapcsolat üzeneteinek fogadására használt kiszolgálóhoz ettől az ismerőstől.</string> + <string name="la_could_not_be_verified">Nem lehetett ellenőrizni; próbálja meg újra.</string> <string name="moderate_message_will_be_marked_warning">Az üzenet minden tag számára moderáltként lesz megjelölve.</string> - <string name="enter_passphrase_notification_desc">Ha szeretnél értesítéseket kapni, kérjük, add meg az adatbázis jelszavát.</string> + <string name="enter_passphrase_notification_desc">Értesítések fogadásához adja meg az adatbázis jelmondatát</string> <string name="error_smp_test_failed_at_step">A teszt a(z) %s lépésnél sikertelen volt.</string> - <string name="auth_you_will_be_required_to_authenticate_when_you_start_or_resume">Az alkalmazás indításakor, vagy 30 másodpercnyi háttérben töltött idő után az alkalmazáshoz visszatérve hitelesítened kell magad.</string> + <string name="auth_you_will_be_required_to_authenticate_when_you_start_or_resume">Az alkalmazás indításakor, vagy 30 másodpercnyi háttérben töltött idő után az alkalmazáshoz visszatérve hitelesítés szükséges.</string> <string name="moderate_message_will_be_deleted_warning">Az üzenet minden tag számára törlésre kerül.</string> - <string name="video_decoding_exception_desc">A videó nem dekódolható. Kérjük, próbálj meg egy másik videót, vagy lépj kapcsolatba a fejlesztőkkel.</string> + <string name="video_decoding_exception_desc">A videó nem dekódolható. Próbálja ki egy másik videóval, vagy lépjen kapcsolatba a fejlesztőkkel.</string> <string name="this_text_is_available_in_settings">Ez a szöveg a beállítások között érhető el</string> - <string name="profile_will_be_sent_to_contact_sending_link">A profilodat elküldjük annak az ismerősödnek, akitől ezt a linket kaptad.</string> + <string name="profile_will_be_sent_to_contact_sending_link">Profilja elküldésre kerül ismerőse számára, akitől ezt a hivatkozást kapta.</string> <string name="system_restricted_background_in_call_desc">Az alkalmazás 1 perc után bezárható a háttérben.</string> - <string name="group_preview_you_are_invited">meg lettél hívva a csoportba</string> - <string name="turn_off_battery_optimization"><![CDATA[Használatához kérjük, <b>engedélyezd a SimpleX háttérben történő futtatását</b> a következő párbeszédpanelen. Ellenkező esetben az értesítések le lesznek tiltva.]]></string> - <string name="error_smp_test_server_auth">A kiszolgálónak engedélyre van szüksége a várólisták létrehozásához, ellenőrízd a jelszavadat</string> - <string name="you_will_join_group">Csatlakozni fogsz a csoport összes tagjához.</string> + <string name="group_preview_you_are_invited">meghívást kapott a csoportba</string> + <string name="turn_off_battery_optimization"><![CDATA[Használatához <b>engedélyezze a SimpleX háttérben történő futását</b> a következő párbeszédpanelen. Ellenkező esetben az értesítések letiltásra kerülnek.]]></string> + <string name="error_smp_test_server_auth">A kiszolgálónak engedélyre van szüksége a várólisták létrehozásához, ellenőrizze jelszavát</string> + <string name="you_will_join_group">Csatlakozni fog a csoport összes tagjához.</string> <string name="error_smp_test_certificate">Lehetséges, hogy a kiszolgáló címében szereplő tanúsítvány-ujjlenyomat helytelen</string> - <string name="la_notice_to_protect_your_information_turn_on_simplex_lock_you_will_be_prompted_to_complete_authentication_before_this_feature_is_enabled">Az adatok védelme érdekében kapcsold be a SimpleX Lock funkciót. -\nA funkció engedélyezése előtt a rendszer felszólít téged a hitelesítés befejezésére.</string> - <string name="video_will_be_received_when_contact_is_online">A videó akkor érkezik, amikor az ismerősöd elérhető, kérlek várj vagy nézd meg később!</string> - <string name="network_error_desc">Kérjük, ellenőrizd hálózati kapcsolatodat a(z) %1$s segítségével, és próbáld meg újra.</string> - <string name="you_can_turn_on_lock">A SimpleX Lock-ot a Beállításokon keresztül kapcsolhatod be.</string> + <string name="la_notice_to_protect_your_information_turn_on_simplex_lock_you_will_be_prompted_to_complete_authentication_before_this_feature_is_enabled">Az adatavédelem érdekében kapcsolja be a SimpleX zárolás funkciót. +\nA funkció engedélyezése előtt a rendszer felszólítja a hitelesítés befejezésére.</string> + <string name="video_will_be_received_when_contact_is_online">A videó akkor érkezik meg, amikor az ismerős elérhető, várjon, vagy ellenőrizze később!</string> + <string name="network_error_desc">Hálózati kapcsolat ellenőrzése a következővel: %1$s, és próbálja újra.</string> + <string name="you_can_turn_on_lock">A SimpleX zárolás a Beállításokon keresztül kapcsolható be.</string> <string name="app_was_crashed">Az alkalmazás összeomlott</string> - <string name="please_check_correct_link_and_maybe_ask_for_a_new_one">Kérjük, ellenőrizd, hogy a megfelelő linket használtad-e, vagy kérd meg az ismerősödet, hogy küldjön egy másikat.</string> - <string name="image_decoding_exception_desc">A kép nem dekódolható. Kérjük, próbálj meg egy másik képet, vagy lépj kapcsolatba a fejlesztőkkel.</string> - <string name="non_content_uri_alert_text">Érvénytelen fájl elérési útvonalat osztottál meg. Jelentsd a problémát az alkalmazás fejlesztőinek.</string> - <string name="failed_to_create_user_duplicate_desc">Már van egy chat-profilod ugyanezzel a megjelenített névvel. Kérjük, válassz másik nevet.</string> - <string name="trying_to_connect_to_server_to_receive_messages_with_error">Csatlakozási kísérlet a kapcsolat üzeneteinek fogadására használt szerverhez ettől az ismerősödtől (hiba: %1$s).</string> + <string name="please_check_correct_link_and_maybe_ask_for_a_new_one">Ellenőrizze, hogy a megfelelő hivatkozást használta-e, vagy kérje meg ismerősét, hogy küldjön egy másikat.</string> + <string name="image_decoding_exception_desc">A kép nem dekódolható. Kérjük, próbálja ki egy másik képpel, vagy lépjen kapcsolatba a fejlesztőkkel.</string> + <string name="non_content_uri_alert_text">Érvénytelen fájl elérési útvonalat osztott meg. Jelentse a problémát az alkalmazás fejlesztőinek.</string> + <string name="failed_to_create_user_duplicate_desc">Már van egy csevegési profil ugyanezzel a megjelenített névvel. Válasszon egy másik nevet.</string> + <string name="trying_to_connect_to_server_to_receive_messages_with_error">Csatlakozási kísérlet a kapcsolat üzeneteinek fogadására használt kiszolgálóhoz ettől az ismerőstől (hiba: %1$s).</string> <string name="stop_rcv_file__message">A fájl fogadása leállt.</string> - <string name="la_please_remember_to_store_password">Kérjük, jegyezd meg vagy tárold biztonságosan - az elveszett jelszót nem lehet visszaállítani!</string> - <string name="video_will_be_received_when_contact_completes_uploading">A videó akkor érkezik meg, amikor az ismerősöd befejezi a feltöltést.</string> - <string name="description_you_shared_one_time_link_incognito">egyszeri linket osztottál meg inkognitóban</string> - <string name="connected_to_server_to_receive_messages_from_contact">Csatlakozol ahhoz a kiszolgálóhoz, amely az adott ismerősödtől érkező üzenetek fogadására szolgál.</string> - <string name="you_can_enable_delivery_receipts_later">Később engedélyezheted a Beállításokban</string> - <string name="you_will_be_connected_when_group_host_device_is_online">Csatlakozni fogsz a csoporthoz amikor a csoport tulajdonosának az eszköze online lesz. Kérlek várj vagy nézz vissza később!</string> + <string name="la_please_remember_to_store_password">Ne felejtse el, vagy tárolja biztonságosan – az elveszett jelszót nem lehet visszaállítani!</string> + <string name="video_will_be_received_when_contact_completes_uploading">A videó akkor érkezik meg, amikor az ismerőse befejezte annak feltöltését.</string> + <string name="description_you_shared_one_time_link_incognito">egyszer használatos hivatkozást osztott meg inkognitóban</string> + <string name="connected_to_server_to_receive_messages_from_contact">Kiszolgálóhoz történő csatlakozás, mely az adott ismerőstől érkező üzenetek fogadására szolgál.</string> + <string name="you_can_enable_delivery_receipts_later">Később engedélyezheti a Beállításokban</string> + <string name="you_will_be_connected_when_group_host_device_is_online">Akkor tud csatlakozni a csoporthoz, amikor a csoport tulajdonosának eszköze online lesz, várjon, vagy ellenőrizze később!</string> <string name="mtr_error_different">eltérő migráció az appban/adatbázisban: %s / %s</string> - <string name="connect_plan_you_are_already_connecting_to_vName"><![CDATA[Már kapcsolatban vagy vele: <b>%1$s</b>.]]></string> + <string name="connect_plan_you_are_already_connecting_to_vName"><![CDATA[Már csatlakozik a következőhöz: <b>%1$s</b>.]]></string> <string name="unhide_profile">Profil felfedése</string> - <string name="this_link_is_not_a_valid_connection_link">Ez a link nem érvényes meghívó link!</string> - <string name="to_verify_compare">A felek közötti titkosítás (e2e) ellenőrzéséhez hasonlítsd össze (vagy olvasd be) a kódot az ismerősöddel együtt az eszközeiteken!</string> - <string name="you_must_use_the_most_recent_version_of_database">A csevegési adatbázis legfrissebb verzióját CSAK egy eszközön kell használnod, ellenkező esetben előfordulhat, hogy az üzeneteket nem fogod megkapni valamennyi kapcsolatodtól.</string> - <string name="messages_section_description">Ez a beállítás a jelenlegi chat profilodban lévő üzenetekre érvényes</string> - <string name="you_are_invited_to_group_join_to_connect_with_group_members">Meg vagy hívva a csoportba. Csatlakozz és lépj kapcsolatba a csoporttagokkal!</string> - <string name="alert_message_no_group">Ez a csoport többé nem létezik.</string> - <string name="connect_plan_you_are_already_joining_the_group_via_this_link">A csatlakozásod már folyamatban van a csoporthoz ezzel a linkkel!</string> - <string name="you_are_invited_to_group">Meg vagy hívva a csoportba</string> - <string name="contact_sent_large_file">Az ismerősöd a jelenleg megengedett maximális méretű (%1$s) fájlnál nagyobbat küldött.</string> - <string name="we_do_not_store_contacts_or_messages_on_servers">Nem tároljuk egyetlen üzenetedet illetve ismerőseidet (kézbesítás után) a SimpleX szervereken.</string> + <string name="this_link_is_not_a_valid_connection_link">Ez a hivatkozás nem érvényes kapcsolati hivatkozás!</string> + <string name="to_verify_compare">A végpontok közötti titkosítás ellenőrzéséhez ismerősével hasonlítsa össze (vagy szkennelje be) az eszközén lévő kódot.</string> + <string name="you_must_use_the_most_recent_version_of_database">A csevegési adatbázis legfrissebb verzióját CSAK egy eszközön kell használnia, ellenkező esetben előfordulhat, hogy az üzeneteket nem fogja megkapni valamennyi ismerőstől.</string> + <string name="messages_section_description">Ez a beállítás a jelenlegi csevegési profilban lévő üzenetekre érvényes</string> + <string name="you_are_invited_to_group_join_to_connect_with_group_members">Meghívást kapott a csoportba. Csatlakozzon, hogy kapcsolatba léphessen a csoport tagjaival.</string> + <string name="alert_message_no_group">Ez a csoport már nem létezik.</string> + <string name="connect_plan_you_are_already_joining_the_group_via_this_link">Ezen a hivatkozáson keresztül már csatlakozik a csoporthoz.</string> + <string name="you_are_invited_to_group">Meghívást kapott a csoportba</string> + <string name="contact_sent_large_file">Ismerőse a jelenleg megengedett maximális méretű (%1$s) fájlnál nagyobbat küldött.</string> + <string name="we_do_not_store_contacts_or_messages_on_servers">Az ismerősök és az üzenetek (kézbesítés után) nem kerülnek tárolásra a SimpleX kiszolgálókon.</string> <string name="you_can_use_markdown_to_format_messages__prompt">Üzenetek formázása a szövegbe szúrt speciális karakterekkel:</string> - <string name="you_can_also_connect_by_clicking_the_link"><![CDATA[A linkre kattintással is kapcsolódhatsz. Ha megnyílik böngészőben, kattints a<b>Mobil appban megnyitás</b> gombra.]]></string> - <string name="your_chat_profile_will_be_sent_to_your_contact">A chat profilod megküldésre kerül -\naz ismerősöd számára</string> - <string name="invite_prohibited_description">Egy olyan ismerőst próbálsz meghívni, akivel inkognító profilt osztottál meg abban a csoportban, amelyben a saját fő profilodat használod</string> - <string name="connect_plan_you_are_already_joining_the_group_vName"><![CDATA[Már folyamatban van a csatlakozásod a(z) <b>%1$s</b> csoporthoz.]]></string> - <string name="onboarding_notifications_mode_off">Amikor az app fut</string> - <string name="alert_title_cant_invite_contacts_descr">Inkognító profilt használsz ehhez a csoporthoz - a fő profilod megosztásának elkerülése érdekében meghívók küldése tiltott</string> + <string name="you_can_also_connect_by_clicking_the_link"><![CDATA[A hivatkozásra kattintva is kapcsolódhat. Ha megnyílik böngészőben, kattintson a<b>Megnyitás alkalmazásban</b> gombra.]]></string> + <string name="your_chat_profile_will_be_sent_to_your_contact">Csevegési profilja megküldésre kerül +\nismerőse számára</string> + <string name="invite_prohibited_description">Egy olyan ismerőst próbál meghívni, akivel inkognító profilt osztott meg abban a csoportban, amelyben saját fő profilja van használatban</string> + <string name="connect_plan_you_are_already_joining_the_group_vName"><![CDATA[Csatlakozás folyamatban van a(z) <b>%1$s</b> csoporthoz.]]></string> + <string name="onboarding_notifications_mode_off">Amikor az alkalmazás fut</string> + <string name="alert_title_cant_invite_contacts_descr">Inkognító profilt használ ehhez a csoporthoz - fő profilja megosztásának elkerülése érdekében meghívók küldése tiltott</string> <string name="v4_5_transport_isolation">Kapcsolat izolációs mód</string> - <string name="you_will_be_connected_when_your_connection_request_is_accepted">Csatlakoztok amikor a meghívód elfogadásra kerül. Kérlek várj vagy nézz vissza később!</string> + <string name="you_will_be_connected_when_your_connection_request_is_accepted">Akkor lesz csatlakoztatva, ha a csatlakozási kérelme elfogadásra került, várjon, vagy ellenőrizze később!</string> <string name="voice_messages_are_prohibited">A hangüzenetek küldése le van tiltva ebben a csoportban.</string> - <string name="system_restricted_background_in_call_warn"><![CDATA[A háttérben való hívásokhoz kérlek válaszd az <b>App akkumulátor használat</b> / <b>Korlátlan</b> módot az app beállításaiban.]]></string> + <string name="system_restricted_background_in_call_warn"><![CDATA[A háttérben való hívásokhoz válassza ki az <b>Alkalmazás akkumulátor használata</b> / <b>Korlátlan</b> módot az alkalmazás beállításaiban.]]></string> <string name="v5_4_link_mobile_desktop_descr">Biztonságos kvantum ellenálló protokoll által.</string> <string name="v5_1_better_messages_descr">- hangüzenetek 5 percig. \n- egyedi eltűnési időhatár \n- előzmény szerkesztése</string> - <string name="open_on_mobile_and_scan_qr_code"><![CDATA[Kattints a <i>Használd a számítógépről</i> gombra a mobil appban és olvasd be a QR-kódot!]]></string> + <string name="open_on_mobile_and_scan_qr_code"><![CDATA[Megnyitás a <i>Használat számítógépről</i> gombra a mobil appban és olvassa be a QR-kódot!]]></string> <string name="sender_at_ts">%s at %s</string> - <string name="you_will_be_connected_when_your_contacts_device_is_online">Csatlakoztok amikor az ismerősöd eszköze online lesz. Kérlek várj vagy nézz vissza később!</string> + <string name="you_will_be_connected_when_your_contacts_device_is_online">Akkor csatlakozik, amikor az ismerős eszköze online lesz, várjon, vagy ellenőrizze később!</string> <string name="v5_4_block_group_members_descr">Kéretlen üzenetek elrejtése.</string> - <string name="disable_onion_hosts_when_not_supported"><![CDATA[Állítsd a <i>Használd az .onion hostokat</i> NEM-re ha a SOCKS proxy nem támogatja.]]></string> - <string name="you_can_share_your_address">Megoszthatod a SimpleX azonosítódat linkben vagy QR-kódban - bárki kapcsolatfelvételt kezdeményezhet veled.</string> - <string name="you_can_create_it_later">Később létrehozhatod</string> - <string name="your_profile_is_stored_on_device_and_shared_only_with_contacts_simplex_cannot_see_it">A profilod a te eszközödön van tárolva és csak az ismerőseiddel kerül megosztásra! A SimpleX chat szerverek nem láthatják a profilodat!</string> - <string name="snd_group_event_changed_member_role">%s szerepkörét megváltoztattad erre: %s</string> - <string name="you_rejected_group_invitation">Elutasítottad a meghívót a csoportba</string> - <string name="to_protect_privacy_simplex_has_ids_for_queues">Az adatvédelem érdekében, a más chat platformokon megszokott felhasználói azonosítók helyett, a SimpleX üzenetsorokhoz rendel azonosítókat, minden egyes ismerősödhöz egy különbözőt.</string> - <string name="to_share_with_your_contact">(megosztás az ismerősöddel)</string> - <string name="you_sent_group_invitation">Csoport meghívót küldtél</string> + <string name="disable_onion_hosts_when_not_supported"><![CDATA[Állítsa a <i>Használja az .onion hostokat</i> NEM értékre, ha a SOCKS proxy nem támogatja őket.]]></string> + <string name="you_can_share_your_address">Megoszthatja azonosítóját hivatkozásként vagy QR-kódként – így bárki csatlakozhat önhöz.</string> + <string name="you_can_create_it_later">Létrehozás később</string> + <string name="your_profile_is_stored_on_device_and_shared_only_with_contacts_simplex_cannot_see_it">Profilja az eszközön van tárolva és csak az ismerőseivel kerül megosztásra. A SimpleX kiszolgálók nem láthatják a profilját.</string> + <string name="snd_group_event_changed_member_role">%s szerepkörét megváltoztatta erre: %s</string> + <string name="you_rejected_group_invitation">Csoport meghívó elutasítva</string> + <string name="to_protect_privacy_simplex_has_ids_for_queues">Az adatvédelem érdekében, a más csevegési platformokon megszokott felhasználói azonosítók helyett, a SimpleX üzenetsorokhoz rendel azonosítókat, minden egyes ismerőshöz egy különbözőt.</string> + <string name="to_share_with_your_contact">(megosztás ismerőssel)</string> + <string name="you_sent_group_invitation">Csoport meghívó elküldve</string> <string name="update_network_session_mode_question">Kapcsolat izolációs mód frissítése?</string> <string name="network_session_mode_transport_isolation">Kapcsolat izolációs mód</string> - <string name="you_will_stop_receiving_messages_from_this_group_chat_history_will_be_preserved">Ettől a csoporttól nem fogsz értesítéseket kapni. A chat előzmény megmarad.</string> - <string name="database_is_not_encrypted">A chat adatbázisod nem titkosított - állíts be jelmondatot a megvédéséhez!</string> + <string name="you_will_stop_receiving_messages_from_this_group_chat_history_will_be_preserved">Ettől a csoporttól nem fog értesítéseket kapni. A csevegési előzmények megmaradnak.</string> + <string name="database_is_not_encrypted">A csevegési adatbázis nem titkosított - állítson be egy jelmondatot annak védelméhez!</string> <string name="network_disable_socks">Közvetlen internet kapcsolat használata?</string> - <string name="you_will_still_receive_calls_and_ntfs">Továbbra is kapsz hívásokat és értesítéseket az elnémított profilokból amikor azok aktívak.</string> - <string name="group_main_profile_sent">A saját fő chat profilod megküldésre kerül a csoporttagok számára.</string> - <string name="you_can_enable_delivery_receipts_later_alert">Később engedélyezheted az alkalmazás Adatvédelmi és Biztonsági beállításaiban.</string> - <string name="to_reveal_profile_enter_password">A rejtett profilod felfedéséhez gépeld be a jelszót a kereső mezőbe a Chat profiljaid oldalon!</string> - <string name="upgrade_and_open_chat">A chat frissítése és megnyitása</string> - <string name="you_need_to_allow_to_send_voice">Ahhoz, hogy hangüzeneteket küldhess, engedélyezned kell az ismerőseidnek is azok küldését.</string> - <string name="you_control_servers_to_receive_your_contacts_to_send"><![CDATA[Te kontrollálod, hogy melyik szerveren(-ken) keresztül <b>fogadod</b>az üzeneteket, míg az ismerőseid a szervereket amelyeken át üzensz nekik.]]></string> - <string name="connect_plan_you_are_already_in_group_vName"><![CDATA[Már a(z) <b>%1$s</b> csoportban vagy.]]></string> - <string name="snd_conn_event_switch_queue_phase_completed">megváltoztattad az azonosítót</string> - <string name="v4_3_irreversible_message_deletion_desc">Az ismerőseid engedélyezhetik a teljes üzenet törlést.</string> - <string name="you_have_to_enter_passphrase_every_time">Be kell írd a jelmondatodat a SimpleX app minden indulásakor - nem az eszközön lesz tárolva.</string> - <string name="open_port_in_firewall_desc">Ahhoz, hogy engedélyezd a mobil app csatlakozását a számítógépedhez, nyisd meg ezt a portot a tűzfaladon, ha az engedélyezve van</string> - <string name="your_profile_is_stored_on_your_device">A te profilod, ismerőseid és az elküldött üzeneteid a te eszközödön vannak tárolva (a SimpleX chat szerverekről kézbesítés illetve a TTL időkorlát után törlődnek).</string> - <string name="system_restricted_background_warn"><![CDATA[Az értesítések engedélyezéséhez kérlek válaszd az <b>App akkumulátor használat</b> / <b>Korlátlan</b> módot az app beállításaiban.]]></string> - <string name="this_string_is_not_a_connection_link">Ez a karakterlánc nem meghívó link!</string> - <string name="to_start_a_new_chat_help_header">Új chat kezdése</string> - <string name="connect_plan_you_are_already_connecting_via_this_one_time_link">Csatlakozásod már folyamatban van ezzel az Egyszer használatos link-el!</string> - <string name="you_wont_lose_your_contacts_if_delete_address">Nem fogod elveszíteni az ismerőseidet ha később törlöd a SimpleX azonosítódat.</string> - <string name="updating_settings_will_reconnect_client_to_all_servers">A beállítások frissítése a szerverekhez újra kapcsolódással jár.</string> + <string name="you_will_still_receive_calls_and_ntfs">Továbbra is kap hívásokat és értesítéseket a némított profiloktól, ha azok aktívak.</string> + <string name="group_main_profile_sent">A fő csevegési profilja megküldésre kerül a csoporttagok számára.</string> + <string name="you_can_enable_delivery_receipts_later_alert">Később engedélyezheti őket az alkalmazás Adatvédelem és biztonság menüpontban.</string> + <string name="to_reveal_profile_enter_password">Rejtett profiljának felfedéséhez írja be a teljes jelszót a Csevegési profilok oldal keresőmezőjébe.</string> + <string name="upgrade_and_open_chat">A csevegés frissítése és megnyitása</string> + <string name="you_need_to_allow_to_send_voice">Hangüzeneteket küldéséhez engedélyeznie kell azok küldését az ismerősök számára.</string> + <string name="you_control_servers_to_receive_your_contacts_to_send"><![CDATA[Beállíthatja, hogy mely kiszolgáló(ko)n keresztül <b>fogadja</b> az üzeneteket, ismerősöket – A kiszolgálók, amelyeket az üzenetküldéshez használ.]]></string> + <string name="connect_plan_you_are_already_in_group_vName"><![CDATA[Már a(z) <b>%1$s</b> csoport tagja.]]></string> + <string name="snd_conn_event_switch_queue_phase_completed">Azonosítója megváltoztatva</string> + <string name="v4_3_irreversible_message_deletion_desc">Ismerősök engedélyezhetik a teljes üzenet törlést.</string> + <string name="you_have_to_enter_passphrase_every_time">A jelmondatot minden alkalommal meg kell adnia, amikor az alkalmazás elindul - nem az eszközön kerül tárolásra.</string> + <string name="open_port_in_firewall_desc">Ha engedélyezni szeretné, hogy egy mobilalkalmazás csatlakozzon a számítógéphez, akkor nyissa meg ezt a portot a tűzfalában, ha engedélyezte azt</string> + <string name="your_profile_is_stored_on_your_device">Profilja, ismerősök és az elküldött üzenetek az eszközön kerülnek tárolásra.</string> + <string name="system_restricted_background_warn"><![CDATA[Az értesítések engedélyezéséhez válassza ki az <b>Alkalmazás akkumulátor használata</b> / <b>Korlátlan</b> módot az alkalmazás beállításaiban.]]></string> + <string name="this_string_is_not_a_connection_link">Ez a karakterlánc nem egy meghívó hivatkozás!</string> + <string name="to_start_a_new_chat_help_header">Új csevegés kezdése</string> + <string name="connect_plan_you_are_already_connecting_via_this_one_time_link">Már csatlakozik ezen az egyszer használatos hivatkozáson keresztül!</string> + <string name="you_wont_lose_your_contacts_if_delete_address">Nem veszíti el ismerőseit, ha később törli az azonosítóját.</string> + <string name="updating_settings_will_reconnect_client_to_all_servers">A beállítások frissítése a kiszolgálókhoz való újra kapcsolódással jár.</string> <string name="contact_wants_to_connect_with_you">kapcsolatba akar lépni veled!</string> - <string name="snd_group_event_changed_role_for_yourself">a saját szerepkörödet megváltoztattad erre: %s</string> - <string name="you_can_start_chat_via_setting_or_by_restarting_the_app">A chat szolgáltatást elindíthatod a beállítások / adatbázis pontban vagy az app újraindításával.</string> - <string name="verify_code_on_mobile">Ellenőrizd a kódot a mobilon!</string> - <string name="youve_accepted_group_invitation_connecting_to_inviting_group_member">Csatlakoztál ehhez a csoporthoz. Kapcsolódás a meghívó csoporttaghoz.</string> - <string name="you_can_connect_to_simplex_chat_founder"><![CDATA[Kapcsolatba léphetsz <font color="#0088ff">a SimpleX Chat fejlesztőivel és kérdezhetsz bármit és értesülhetsz az újdonságokról</font>.]]></string> + <string name="snd_group_event_changed_role_for_yourself">Saját szerepköre erre változott: %s</string> + <string name="you_can_start_chat_via_setting_or_by_restarting_the_app">A csevegési szolgáltatás elindítható a Beállítások / Adatbázis menüpontban vagy az alkalmazás újraindításával.</string> + <string name="verify_code_on_mobile">Kód ellenőrzése a mobilon</string> + <string name="youve_accepted_group_invitation_connecting_to_inviting_group_member">Csatlakozott ehhez a csoporthoz. Kapcsolódás a meghívó csoporttaghoz.</string> + <string name="you_can_connect_to_simplex_chat_founder"><![CDATA[Kapcsolatba léphet <font color="#0088ff">a SimpleX Chat fejlesztőivel, ahol bármiről kérdezhet és értesülhet az újdonságokról</font>.]]></string> <string name="v4_2_auto_accept_contact_requests_desc">Opcionális üdvözlő üzenettel.</string> <string name="unknown_database_error_with_info">Ismeretlen adatbázis hiba: %s</string> - <string name="you_can_hide_or_mute_user_profile">Elrejtheted vagy némíthatod egy felhasználó profilját - tartsd lenyomva a menühöz!</string> + <string name="you_can_hide_or_mute_user_profile">Elrejthet vagy némíthat egy felhasználói profilt - tartsa lenyomva a menühöz!</string> <string name="v5_3_simpler_incognito_mode_descr">Inkognító mód csatlakozáskor</string> - <string name="update_onion_hosts_settings_question">TOR .onion host beállítások frissítése?</string> - <string name="you_can_share_group_link_anybody_will_be_able_to_connect">Megoszthatsz egy linket vagy QR-kódot - így bárki csatlakozhat a csoporthoz. Csoporttagokat nem fogsz elveszíteni, az esetben sem ha kásőbb törlöd a csoportot.</string> - <string name="you_joined_this_group">Csatlakoztál ehhez a csoporthoz</string> - <string name="connect_plan_this_is_your_link_for_group_vName"><![CDATA[Ez a linked a(z) <b>%1$s</b> csoporthoz!]]></string> + <string name="update_onion_hosts_settings_question">Tor .onion host beállítások frissítése?</string> + <string name="you_can_share_group_link_anybody_will_be_able_to_connect">Megoszthat egy hivatkozást vagy QR-kódot - így bárki csatlakozhat a csoporthoz. Ha a csoport később törlésre kerül, akkor nem fogja elveszíteni annak tagjait.</string> + <string name="you_joined_this_group">Csatlakozott ehhez a csoporthoz</string> + <string name="connect_plan_this_is_your_link_for_group_vName"><![CDATA[Ez a hivatkozása a(z) <b>%1$s</b> csoporthoz!]]></string> <string name="voice_prohibited_in_this_chat">A hangüzenetek le vannak tiltva ebben a csevegésben.</string> - <string name="you_control_your_chat">Te tartod kézben chatedet!</string> + <string name="you_control_your_chat">Ön irányítja csevegését!</string> <string name="verify_code_with_desktop">Kód ellenőrzése a számítógépen</string> - <string name="v4_5_private_filenames_descr">Az időzóna, kép/hang fájlok megvédése érdekében használd az UTC-t!</string> - <string name="connect_via_member_address_alert_desc">A meghívó elküldésre kerül a csoporttag számára.</string> - <string name="incognito_info_share">Amikor megosztasz egy inkognító profilt valakivel, az a profil lesz használva a csoporthoz is amibe meghív.</string> - <string name="connect_plan_you_have_already_requested_connection_via_this_address">Már küldtél meghívót ezen az azonosítón keresztül!</string> - <string name="you_can_share_this_address_with_your_contacts">Megoszthatod ezt a SimpleX azonosítót az ismerőseiddel, hogy kapcsolatba léphessenek %s-el .</string> - <string name="you_can_accept_or_reject_connection">Amikor meghívót kapsz emberektől, elfogadhatod vagy elutasíthatod azokat!</string> - <string name="v4_6_group_welcome_message_descr">Állítsd be az új tagoknak megjelenő üzenetet!</string> + <string name="v4_5_private_filenames_descr">Az időzóna védelme érdekében a kép-/hangfájlok UTC-t használnak.</string> + <string name="connect_via_member_address_alert_desc">Csoporttag részére a csatlakozási kérelem eküldésre kerül.</string> + <string name="incognito_info_share">Inkognitóprofil megosztása esetén a rendszer azt a profilt fogja használni azokhoz a csoportokhoz, amelyekbe meghívást kapott.</string> + <string name="connect_plan_you_have_already_requested_connection_via_this_address">Már kért egy csatlakozást ezen az azonosítón keresztül!</string> + <string name="you_can_share_this_address_with_your_contacts">Megoszthatja ezt a SimpleX azonosítót ismerősökkel, hogy kapcsolatba léphessenek %s-el .</string> + <string name="you_can_accept_or_reject_connection">Csatlakozási kérelmek esetében, elfogadhatja vagy elutasíthatja azokat.</string> + <string name="v4_6_group_welcome_message_descr">Megjelenő üzenetet beállítása új tagok részére!</string> <string name="whats_new_thanks_to_users_contribute_weblate">Köszönet a felhasználóknak - hozzájárulás a Weblaten!</string> - <string name="sending_delivery_receipts_will_be_enabled">A kézbesítési jelentés küldése minden kapcsolat számára engedélyezve lesz.</string> + <string name="sending_delivery_receipts_will_be_enabled">A kézbesítési jelentés küldése minden ismerős számára engedélyezésre kerül.</string> <string name="network_option_protocol_timeout_per_kb">Protokoll időkorlát KB-onként</string> <string name="database_backup_can_be_restored">Az adatbázis jelmondatának megváltoztatására tett kísérlet nem fejeződött be.</string> <string name="enable_automatic_deletion_message">Ez a művelet nem vonható vissza - a kiválasztottnál korábban küldött és fogadott üzenetek törlésre kerülnek. Ez több percet is igénybe vehet.</string> - <string name="profile_is_only_shared_with_your_contacts">A profilod csak az ismerőseid számára kerül megosztásra.</string> - <string name="smp_servers_test_some_failed">Néhány szerver megbukott a teszten:</string> - <string name="group_invitation_tap_to_join">Érintsd meg a csatlakozáshoz</string> + <string name="profile_is_only_shared_with_your_contacts">Profilja csak az ismerősök számára kerül megosztásra.</string> + <string name="smp_servers_test_some_failed">Néhány kiszolgáló megbukott a teszten:</string> + <string name="group_invitation_tap_to_join">Koppintson a csatlakozáshoz</string> <string name="delete_files_and_media_desc">Ez a művelet nem vonható vissza - az összes fogadott és küldött fájl a médiatartalommal együtt törlésre kerülnek. Az alacsony felbontású fotók viszont megmaradnak.</string> - <string name="receipts_contacts_override_enabled">A kézbesítési jelentés engedélyezve van %d ismerősödnél</string> + <string name="receipts_contacts_override_enabled">Kézbesítési jelentések engedélyezve vannak %d ismerősnél</string> <string name="sending_via">Küldés ezen keresztül:</string> <string name="v5_0_polish_interface_descr">Köszönet a felhasználóknak - hozzájárulás a Weblaten!</string> - <string name="sending_delivery_receipts_will_be_enabled_all_profiles">A kézbesítési jelentés küldése az összes látható csevegőprofilban lévő összes ismerős számára engedélyezve lesz.</string> + <string name="sending_delivery_receipts_will_be_enabled_all_profiles">A kézbesítési jelentések küldése engedélyezésre kerül az összes látható csevegési profilban lévő minden ismerős számára.</string> <string name="v4_6_audio_video_calls_descr">Bluetooth támogatás és egyéb fejlesztések.</string> - <string name="in_developing_desc">Ez a funkció még nem támogatott. Próbáld meg a következő kiadásban.</string> + <string name="in_developing_desc">Ez a funkció még nem támogatott. Próbálja meg a következő kiadásban.</string> <string name="share_text_updated_at">A bejegyzés frissítve: %s</string> <string name="skip_inviting_button">Tagok meghívásának kihagyása</string> <string name="receipts_section_description_1">Ezek felülbírálhatóak az ismerős- és csoportbeállításokban.</string> - <string name="contact_you_shared_link_with_wont_be_able_to_connect">Az ismerős, akivel megosztottad ezt a linket, NEM fog tudni csatlakozni!</string> + <string name="contact_you_shared_link_with_wont_be_able_to_connect">Ismerőse NEM fog tudni csatlakozni, akivel megosztotta ezt a hivatkozást!</string> <string name="you_can_change_it_later">A véletlenszerű jelmondat egyszerű szövegként van tárolva a beállításokban. -\nKésőbb megváltoztathatod.</string> - <string name="group_invitation_tap_to_join_incognito">Érintsd meg az inkognitóban való csatlakozáshoz</string> +\nEz később megváltoztatható.</string> + <string name="group_invitation_tap_to_join_incognito">Koppintson az inkognitómódhoz való csatlakozáshoz</string> <string name="set_password_to_export">Jelmondat beállítása az exportáláshoz</string> - <string name="receipts_groups_override_disabled">Az üzenet kézbesítési jelentés le van tiltva %d csoportnál</string> - <string name="non_fatal_errors_occured_during_import">Néhány nem végzetes hiba történt az importálás során - további részletekért lásd a Chat-konzolt.</string> + <string name="receipts_groups_override_disabled">Kézbesítési jelentések le vannak tiltva a(z) %d csoportban</string> + <string name="non_fatal_errors_occured_during_import">Néhány nem végzetes hiba történt az importálás során – további részletekért a csevegési konzolban olvashat.</string> <string name="v4_5_italian_interface_descr">Köszönet a felhasználóknak - hozzájárulás a Weblaten!</string> - <string name="relay_server_if_necessary">A relé szerver csak végszükség esetén használatos. Egy másik fél megfigyelheti az IP-címedet.</string> - <string name="v5_0_app_passcode_descr">Állítsd be a rendszerhitelesítés helyett.</string> - <string name="switch_receiving_address_desc">A fogadó cím egy másik szerverre változik. A címváltoztatás a feladó online állapotba kerülése után fejeződik be.</string> - <string name="stop_chat_to_export_import_or_delete_chat_database">A csevegés leállítása a csevegőadatbázis exportálásához, importálásához vagy törléséhez. A csevegés leállítása alatt nem tudsz üzeneteket fogadni és küldeni.</string> - <string name="save_passphrase_in_keychain">Jelmondat mentése a Kulcstárban</string> + <string name="relay_server_if_necessary">Az átjátszó kiszolgáló csak szükség esetén kerül használatra. Egy másik fél megfigyelheti az IP-címét.</string> + <string name="v5_0_app_passcode_descr">Rendszerhitelesítés helyetti beállítás.</string> + <string name="switch_receiving_address_desc">A fogadó cím egy másik kiszolgálóra változik. A címváltoztatás a feladó online állapotba kerülése után fejeződik be.</string> + <string name="stop_chat_to_export_import_or_delete_chat_database">A csevegés leállítása a csevegőadatbázis exportálásához, importálásához vagy törléséhez. A csevegés leállítása alatt nem tud üzeneteket fogadni és küldeni.</string> + <string name="save_passphrase_in_keychain">Jelmondat mentése a kulcstárolóban</string> <string name="v4_6_chinese_spanish_interface_descr">Köszönet a felhasználóknak - hozzájárulás a Weblaten!</string> <string name="save_passphrase_in_settings">Jelmondat mentése a beállításokban</string> <string name="send_receipts_disabled_alert_msg">Ennek a csoportnak több mint %1$d tagja van, a kézbesítési jelentések nem kerülnek elküldésre.</string> <string name="v5_2_message_delivery_receipts_descr">A második jelölés, amit kihagytunk! ✅</string> - <string name="relay_server_protects_ip">A relay szerver védi az IP-címedet, de megfigyelheti a hívás időtartamát.</string> + <string name="relay_server_protects_ip">Az átjátszó kiszolgáló megvédi IP-címét, de megfigyelheti a hívás időtartamát.</string> <string name="read_more_in_github">További információ a GitHub tárolónkban.</string> <string name="v4_5_message_draft_descr">Az utolsó üzenet tervezetének megőrzése a mellékletekkel együtt.</string> <string name="saved_ICE_servers_will_be_removed">A mentett WebRTC ICE-kiszolgálók eltávolításra kerülnek.</string> - <string name="receipts_groups_override_enabled">A kézbesítési jelentés engedélyezve van %d csoportnál</string> - <string name="member_role_will_be_changed_with_notification">A szerepkör \"%s\"-re fog változni. A csoportban mindenki értesítést kap.</string> - <string name="users_delete_with_connections">Profil és szerverkapcsolatok</string> - <string name="the_messaging_and_app_platform_protecting_your_privacy_and_security">A Te adatvédelmedet és biztonságodat védő üzenetküldő és alkalmazásplatform.</string> - <string name="tap_to_activate_profile">Érintsd meg a profil aktiválásához.</string> - <string name="receipts_contacts_override_disabled">Az üzenet kézbesítési jelentés le van tiltva %d ismerősödnél</string> + <string name="receipts_groups_override_enabled">Kézbesítési jelentések engedélyezve vannak a(z) %d csoportban</string> + <string name="member_role_will_be_changed_with_notification">A szerepkör meg fog változni erre: \"%s\". A csoportban mindenki értesítve lesz.</string> + <string name="users_delete_with_connections">Profil és kiszolgálókapcsolatok</string> + <string name="the_messaging_and_app_platform_protecting_your_privacy_and_security">Üzenetküldő és alkalmazásplatform, amely védi az ön adatvédelmét és biztonságát.</string> + <string name="tap_to_activate_profile">A profil aktiválásához koppintson az ikonra.</string> + <string name="receipts_contacts_override_disabled">Kézbesítési jelentések le vannak tiltva %d ismerősnél</string> <string name="session_code">Munkamenet kód</string> <string name="v4_4_french_interface_descr">Köszönet a felhasználóknak - hozzájárulás a Weblaten!</string> <string name="receipts_section_groups">Kis csoportok (max. 20 tag)</string> - <string name="connection_you_accepted_will_be_cancelled">Az általad elfogadott kapcsolat törlésre kerül!</string> - <string name="send_live_message_desc">Élő üzenet küldése - a címzett(ek) számára frissül, miközben írod az üzenetet.</string> + <string name="connection_you_accepted_will_be_cancelled">Az ön által elfogadott kapcsolat megszakad!</string> + <string name="send_live_message_desc">Élő üzenet küldése - a címzett(ek) számára frissül, ahogy beírja</string> <string name="settings_section_title_delivery_receipts">A KÉZBESÍTÉSI JELENTÉSEKET A KÖVETKEZŐ CÍMRE KELL KÜLDENI</string> <string name="alert_text_msg_bad_id">A következő üzenet azonosítója hibás (kisebb vagy egyenlő az előzővel). \nEz valamilyen hiba, vagy sérült kapcsolat esetén fordulhat elő.</string> <string name="this_device_name_shared_with_mobile">Az eszköz neve megosztásra kerül a csatlakoztatott mobil klienssel.</string> <string name="v4_4_live_messages_desc">A címzettek a beírás közben látják a frissítéseket.</string> - <string name="store_passphrase_securely">Kérjük, hogy a jelmondatot biztonságosan tárold, ha elveszíted, NEM tudod megváltoztatni.</string> - <string name="passphrase_will_be_saved_in_settings">A jelmondat a beállításokban egyszerű szövegként tárolódik, miután megváltoztattad vagy újraindítottad az alkalmazást.</string> - <string name="smp_servers_per_user">Jelenlenlegi profilod új ismerőseinek kiszolgálói</string> + <string name="store_passphrase_securely">Tárolja el biztonságosan jelmondatát, mert ha elveszíti azt, NEM tudja megváltoztatni.</string> + <string name="passphrase_will_be_saved_in_settings">A jelmondat a beállítások között egyszerű szövegként kerül tárolásra, miután megváltoztatta vagy újraindította az alkalmazást.</string> + <string name="smp_servers_per_user">A jelenlegi csevegési profilhoz tartozó új kapcsolatok kiszolgálói</string> <string name="receiving_via">Fogadás a</string> - <string name="store_passphrase_securely_without_recover">Kérjük, hogy a jelmondatot biztonságosan tárold, ha elveszíted, NEM fogsz tudni hozzáférni a chathez.</string> + <string name="store_passphrase_securely_without_recover">Tárolja el biztonságosan jelmondát, mert ha elveszti azt, akkor NEM férhet hozzá a csevegéshez.</string> <string name="member_role_will_be_changed_with_invitation">A szerepkör \"%s\"-re fog változni. A tag új meghívót kap.</string> <string name="icon_descr_profile_image_placeholder">profilkép helyőrző</string> <string name="sync_connection_force_desc">A titkosítás működik, és új titkosítási egyezményre nincs szükség. Ez kapcsolati hibákat eredményezhet!</string> - <string name="delete_chat_profile_action_cannot_be_undone_warning">Ez a művelet nem vonható vissza - profilod, ismerőseid, üzeneteid és fájljaid visszafordíthatatlanul törlésre kerülnek.</string> + <string name="delete_chat_profile_action_cannot_be_undone_warning">Ez a művelet nem vonható vissza - profilok, ismerősök, üzenetek és fájlok visszafordíthatatlanul törlésre kerülnek.</string> <string name="info_row_updated_at">A bejegyzés frissítve</string> <string name="read_more_in_user_guide_with_link"><![CDATA[További információ a <font color="#0088ff">Felhasználói útmutatóban</font> olvasható.]]></string> <string name="settings_is_storing_in_clear_text">A jelmondat a beállításokban egyszerű szövegként van tárolva.</string> <string name="terminal_always_visible">Konzol megjelenítése új ablakban</string> <string name="alert_text_msg_bad_hash">Az előző üzenet hash-e más.</string> - <string name="receipts_section_description">Ezek a beállítások a jelenlegi profilodra vonatkoznak</string> - <string name="loading_remote_file_desc">Kérjük, várj, amíg a fájl betöltődik az összekapcsolt mobilról.</string> + <string name="receipts_section_description">Ezek a beállítások a jelenlegi proiljára vonatkoznak</string> + <string name="loading_remote_file_desc">Várjon, amíg a fájl betöltődik a csatolt mobilról</string> <string name="read_more_in_github_with_link"><![CDATA[További információ a <font color="#0088ff">GitHub tárolónkban</font>.]]></string> <string name="error_showing_content">hiba a tartalom megjelenítése közben</string> <string name="error_showing_message">hiba az üzenet megjelenítésekor</string> - <string name="you_can_make_address_visible_via_settings">Láthatóvá teheted a SimpleX ismerőseid számára a Beállításokban.</string> + <string name="you_can_make_address_visible_via_settings">Láthatóvá teheti SimpleX ismerősök számára a Beállításokban.</string> <string name="recent_history_is_sent_to_new_members">Legfeljebb az utolsó 100 üzenet kerül elküldésre az új tagoknak.</string> - <string name="code_you_scanned_is_not_simplex_link_qr_code">A beolvasott kód nem egy SimpleX link QR-kód.</string> - <string name="the_text_you_pasted_is_not_a_link">A beillesztett szöveg nem SimpleX link.</string> - <string name="you_can_view_invitation_link_again">A meghívó linket újra megtekintheti a kapcsolat részletei között.</string> + <string name="code_you_scanned_is_not_simplex_link_qr_code">A beolvasott kód nem egy SimpleX hivatkozás QR-kód.</string> + <string name="the_text_you_pasted_is_not_a_link">A beillesztett szöveg nem egy SimpleX hivatkozás.</string> + <string name="you_can_view_invitation_link_again">A meghívó hivatkozását újra megtekintheti a kapcsolat részleteinél.</string> <string name="start_chat_question">Csevegés indítása?</string> <string name="recent_history">Látható előzmények</string> <string name="la_app_passcode">Alkalmazás jelkód</string> - <string name="add_contact_tab">Kapcsolat hozzáadása</string> - <string name="tap_to_scan">Koppints a beolvasáshoz</string> - <string name="tap_to_paste_link">Koppints a hivatkozás beillesztéséhez</string> - <string name="add_contact_button_to_create_link_or_connect_via_link"><![CDATA[<b>Ismerős hozzáadása</b>: új meghívó link létrehozásához, vagy egy kapott linken keresztül történő csatlakozáshoz.]]></string> - <string name="create_group_button_to_create_new_group"><![CDATA[<b>Új csoport létrehozása</b>: új csoport létrehozásához.]]></string> - <string name="chat_is_stopped_you_should_transfer_database">A csevegés leállt. Ha már használtad ezt az adatbázist egy másik eszközön, a csevegés megkezdése előtt vissza kell állítanod.</string> + <string name="add_contact_tab">Ismerős hozzáadása</string> + <string name="tap_to_scan">Koppintson a beolvasáshoz</string> + <string name="tap_to_paste_link">Koppintson a hivatkozás beillesztéséhez</string> + <string name="add_contact_button_to_create_link_or_connect_via_link"><![CDATA[<b>Ismerős hozzáadása</b>: új meghívó hivatkozás létrehozásához, vagy egy kapott hivatkozáson keresztül történő csatlakozáshoz.]]></string> + <string name="create_group_button_to_create_new_group"><![CDATA[<b>Csoport létrehozása</b>: új csoport létrehozásához.]]></string> + <string name="chat_is_stopped_you_should_transfer_database">A csevegés leállt. Ha már használta ezt az adatbázist egy másik eszközön, úgy visszaállítás szükséges a csevegés megkezdése előtt.</string> <string name="recent_history_is_not_sent_to_new_members">Az előzmények nem kerülnek elküldésre új tagok részére.</string> <string name="retry_verb">Újrapróbálkozás</string> - <string name="camera_not_available">A kamera nem elérhető</string> + <string name="camera_not_available">A fényképező nem elérhető</string> <string name="enable_sending_recent_history">Utolsó 100 üzenet küldése új tagoknak.</string> - <string name="disable_sending_recent_history">Ne küldjön előzményeket új tagoknak.</string> + <string name="disable_sending_recent_history">Ne küldjön előzményeket új tagok részére.</string> <string name="or_show_this_qr_code">Vagy mutassa meg ezt a kódot</string> <string name="enable_camera_access">Kamera hozzáférés engedélyezése</string> - <string name="keep_unused_invitation_question">Megtartod a fel nem használt meghívót?</string> - <string name="share_this_1_time_link">Egyszer használatos link megosztása</string> + <string name="keep_unused_invitation_question">Fel nem használt meghívó megtartása?</string> + <string name="share_this_1_time_link">Egyszer használatos meghívó hivatkozás megosztása</string> <string name="new_chat">Új beszélgetés</string> <string name="loading_chats">Csevegések betöltése…</string> - <string name="creating_link">Link létrehozása…</string> + <string name="creating_link">Hivatkozás létrehozása…</string> <string name="or_scan_qr_code">Vagy QR-kód beolvasása</string> <string name="invalid_qr_code">Érvénytelen QR-kód</string> - <string name="keep_invitation_link">Megtart</string> - <string name="search_or_paste_simplex_link">Keresés vagy SimpleX link beillesztése</string> + <string name="keep_invitation_link">Megtartás</string> + <string name="search_or_paste_simplex_link">Keresés, vagy SimpleX hivatkozás beillesztése</string> <string name="show_internal_errors">Belső hibák megjelenítése</string> <string name="agent_critical_error_title">Kritikus hiba</string> <string name="agent_internal_error_title">Belső hiba</string> - <string name="remote_ctrl_error_bad_version">Az asztali kliens verziója nem támogatott. Kérlek, győződj meg arról, hogy mindkét eszközön ugyanazt a verziót használod</string> - <string name="remote_ctrl_error_bad_invitation">Az asztali kliensen hibás meghívókód szerepel</string> - <string name="remote_ctrl_error_busy">Az asztali kliens elfoglalt</string> - <string name="remote_ctrl_error_inactive">Az asztali kliens inaktív</string> + <string name="remote_ctrl_error_bad_version">Nem támogatott számítógép kliens verzió. Győződjön meg arról, hogy mindkét eszközön ugyanazt a verziót használja</string> + <string name="remote_ctrl_error_bad_invitation">Számítógép kliensen hibás meghívókód szerepel</string> + <string name="remote_ctrl_error_busy">Számítógép elfoglalt</string> + <string name="remote_ctrl_error_inactive">Számítógép inaktív</string> <string name="restart_chat_button">Csevegés újraindítása</string> - <string name="remote_ctrl_error_timeout">Időtúllépés az asztali klienshez való kapcsolódás közben</string> - <string name="remote_ctrl_error_disconnected">Az asztali kliens kapcsolata megszakadt</string> + <string name="remote_ctrl_error_timeout">Időtúllépés a számítógépről való kapcsolódás közben</string> + <string name="remote_ctrl_error_disconnected">Számítógép kliens kapcsolata megszakadt</string> <string name="remote_host_was_disconnected_title">A kapcsolat megszakadt</string> <string name="remote_ctrl_was_disconnected_title">A kapcsolat megszakadt</string> - <string name="remote_ctrl_error_bad_state">Az asztali kliens kapcsolata rossz állapotban van</string> - <string name="agent_critical_error_desc">Kérjük, jelezd ezt a fejlesztőknek: + <string name="remote_ctrl_error_bad_state">Számítógép kapcsolata rossz állapotban van</string> + <string name="agent_critical_error_desc">Jelentse a fejlesztőknek: \n%s \n -\nJavasoljuk, hogy indítsd újra az alkalmazást.</string> - <string name="agent_internal_error_desc">Kérjük, jelezd a fejlesztőknek: +\nAz alkalmazás újraindítása javasolt.</string> + <string name="agent_internal_error_desc">Jelentse a fejlesztőknek: \n%s</string> - <string name="remote_host_error_bad_version"><![CDATA[A(z) <b>%s</b> mobil eszköz verziója nem támogatott. Kérlek, győződj meg róla, hogy mindkét eszközön ugyanazt a verziót használod]]></string> + <string name="remote_host_error_bad_version"><![CDATA[A(z) <b>%s</b> mobil eszköz verziója nem támogatott. Győződjön meg arról, hogy mindkét eszközön ugyanazt a verziót használja]]></string> <string name="remote_host_error_disconnected"><![CDATA[Megszakadt a kapcsolat a(z) <b>%s</b> mobil eszközzel]]></string> <string name="failed_to_create_user_invalid_title">Érvénytelen megjelenítendő felhaszálónév!</string> - <string name="failed_to_create_user_invalid_desc">Ez a megjelenített felhasználónév érvénytelen. Kérjük, válassz másikat.</string> - <string name="remote_host_disconnected_from"><![CDATA[Megszakadt a kapcsolat a <b>%s</b> mobil eszközzel, a(z) %s probléma miatt.]]></string> + <string name="failed_to_create_user_invalid_desc">Ez a megjelenített felhasználónév érvénytelen. Válasszon egy másik nevet.</string> + <string name="remote_host_disconnected_from"><![CDATA[Megszakadt a kapcsolat a <b>%s</b> mobil eszközzel, a(z) %s probléma miatt]]></string> <string name="remote_ctrl_disconnected_with_reason">%s probléma miatt megszakadt a kapcsolat</string> <string name="remote_host_error_missing"><![CDATA[A(z) <b>%s</b> mobil eszköz nem található]]></string> <string name="remote_host_error_bad_state"><![CDATA[A kapcsolat a(z) <b>%s</b> mobil eszközzel rossz állapotban van]]></string> @@ -1588,41 +1588,50 @@ <string name="remote_host_error_busy"><![CDATA[A(z) <b>%s</b> mobil eszköz elfoglalt]]></string> <string name="past_member_vName">Legutóbbi tag %1$s</string> <string name="group_member_status_unknown">ismeretlen státusz</string> - <string name="profile_update_event_member_name_changed">%1$s tag %2$s-ra/re változott</string> + <string name="profile_update_event_member_name_changed">%1$s tag neve megváltozott erre: %2$s</string> <string name="profile_update_event_removed_address">törölt csatlakozási cím</string> <string name="profile_update_event_removed_picture">törölt profilkép</string> <string name="profile_update_event_set_new_address">új kapcsolattartási cím beállítása</string> <string name="profile_update_event_set_new_picture">új profilkép beállítása</string> <string name="profile_update_event_updated_profile">frissített profil</string> - <string name="profile_update_event_contact_name_changed">%1$s ismerős %2$s-ra/re változott</string> + <string name="profile_update_event_contact_name_changed">%1$s ismerős neve megváltozott erre: %2$s</string> <string name="note_folder_local_display_name">Privát jegyzetek</string> <string name="error_deleting_note_folder">Hiba a privát jegyzetek törlésekor</string> <string name="error_creating_message">Hiba az üzenet létrehozásakor</string> - <string name="clear_note_folder_question">Törlöd a privát jegyzeteket?</string> + <string name="clear_note_folder_question">Privát jegyzetek törlése?</string> <string name="info_row_created_at">Létrehozva ekkor:</string> <string name="saved_message_title">Mentett üzenet</string> - <string name="share_text_created_at">Létrehozva ekkor: %s</string> - <string name="clear_note_folder_warning">Az összes üzenet törlődik – ez nem vonható vissza!</string> + <string name="share_text_created_at">Megosztva ekkor: %s</string> + <string name="clear_note_folder_warning">Minden üzenet törlésre kerül – ez nem vonható vissza!</string> <string name="v5_5_message_delivery">Továbbfejlesztett üzenetküldés</string> <string name="v5_5_join_group_conversation">Csatlakozás csoportos beszélgetésekhez</string> - <string name="v5_5_simpler_connect_ui">A link beillesztése a csatlakozáshoz!</string> + <string name="v5_5_simpler_connect_ui">Hivatkozás beillesztése a csatlakozáshoz!</string> <string name="v5_5_private_notes">Privát jegyzetek</string> <string name="v5_5_simpler_connect_ui_descr">A keresősáv fogadja a meghívó hivatkozásokat.</string> <string name="v5_5_private_notes_descr">Titkosított fájlokkal és médiatartalommal.</string> <string name="v5_5_message_delivery_descr">Csökkentett akkumulátorhasználattal.</string> <string name="v5_5_new_interface_languages">Magyar és török felhasználói felület</string> - <string name="v5_5_join_group_conversation_descr">A közelmúlt eseményei és továbbfejlesztett Jegyzék Bot.</string> + <string name="v5_5_join_group_conversation_descr">A közelmúlt eseményei és továbbfejlesztett jegyzék bot.</string> <string name="rcv_group_event_member_unblocked">%s letiltása feloldva</string> - <string name="snd_group_event_member_unblocked">feloldottad %s letiltását</string> + <string name="snd_group_event_member_unblocked">%s letiltását visszavonta</string> <string name="member_info_member_blocked">letiltva</string> <string name="blocked_by_admin_item_description">letiltva az admin által</string> <string name="member_blocked_by_admin">Letiltva az admin által</string> <string name="rcv_group_event_member_blocked">%s letiltva</string> <string name="block_for_all">Mindenki számára letiltva</string> - <string name="block_for_all_question">Mindenki számára letiltod ezt a tagot?</string> + <string name="block_for_all_question">Tag letiltása mindenki számára?</string> <string name="blocked_by_admin_items_description">%d üzenet letiltva az admin által</string> <string name="unblock_for_all">Letiltás feloldása mindenki számára</string> - <string name="unblock_for_all_question">Mindenki számára feloldod ennek a tagnak a letiltását?</string> - <string name="snd_group_event_member_blocked">letiltottad %s-t</string> + <string name="unblock_for_all_question">Mindenki számára feloldja a tag letiltását?</string> + <string name="snd_group_event_member_blocked">letiltotta %s-t</string> <string name="error_blocking_member_for_all">Hiba a tag mindenki számára való letiltása során</string> + <string name="message_too_large">Az üzenet túl nagy</string> + <string name="welcome_message_is_too_long">Az üdvözlő üzenet túl hosszú</string> + <string name="database_migration_in_progress">Az adatbázis migrációja folyamatban van. +\nEz eltarthat néhány percig.</string> + <string name="call_service_notification_audio_call">Hanghívás</string> + <string name="call_service_notification_end_call">A hívás befejeződött</string> + <string name="call_service_notification_video_call">Videóhívás</string> + <string name="unable_to_open_browser_title">Hiba a böngésző megnyitása közben</string> + <string name="unable_to_open_browser_desc">A hívásokhoz egy alapértelmezett webböngésző szükséges. Állítson be egy alapértelmezett webböngészőt az eszközön, és osszon meg további információkat a SimpleX Chat fejlesztőivel.</string> </resources> \ No newline at end of file diff --git a/apps/multiplatform/common/src/commonMain/resources/MR/it/strings.xml b/apps/multiplatform/common/src/commonMain/resources/MR/it/strings.xml index 0ee9a6a625..c82190936b 100644 --- a/apps/multiplatform/common/src/commonMain/resources/MR/it/strings.xml +++ b/apps/multiplatform/common/src/commonMain/resources/MR/it/strings.xml @@ -1355,7 +1355,7 @@ <string name="turn_off_system_restriction_button">Apri impostazioni app</string> <string name="system_restricted_background_in_call_desc">L\'app potrebbe venire chiusa dopo 1 minuto in secondo piano.</string> <string name="paste_the_link_you_received_to_connect_with_your_contact">Incolla il link che hai ricevuto per connetterti con il contatto…</string> - <string name="connect__your_profile_will_be_shared">Il tuo profilo %1$s verrà condiviso.</string> + <string name="connect__your_profile_will_be_shared">Verrà condiviso il tuo profilo %1$s.</string> <string name="connect__a_new_random_profile_will_be_shared">Verrà condiviso un nuovo profilo casuale.</string> <string name="disable_notifications_button">Disattiva le notifiche</string> <string name="system_restricted_background_in_call_title">Nessuna chiamata in secondo piano</string> @@ -1630,4 +1630,13 @@ <string name="block_for_all_question">Bloccare il membro per tutti?</string> <string name="error_blocking_member_for_all">Errore nel blocco del membro per tutti</string> <string name="snd_group_event_member_blocked">hai bloccato %s</string> + <string name="welcome_message_is_too_long">Il messaggio di benvenuto è troppo lungo</string> + <string name="message_too_large">Messaggio troppo grande</string> + <string name="database_migration_in_progress">Migrazione database in corso. +\nPuò richiedere qualche minuto.</string> + <string name="call_service_notification_audio_call">Chiamata audio</string> + <string name="call_service_notification_end_call">Termina chiamata</string> + <string name="call_service_notification_video_call">Videochiamata</string> + <string name="unable_to_open_browser_title">Errore di apertura del browser</string> + <string name="unable_to_open_browser_desc">Il browser predefinito è necessario per le chiamate. Configura il browser predefinito nel sistema, poi condividi più informazioni con gli sviluppatori.</string> </resources> \ No newline at end of file diff --git a/apps/multiplatform/common/src/commonMain/resources/MR/ja/strings.xml b/apps/multiplatform/common/src/commonMain/resources/MR/ja/strings.xml index 6781899b21..7ab087612b 100644 --- a/apps/multiplatform/common/src/commonMain/resources/MR/ja/strings.xml +++ b/apps/multiplatform/common/src/commonMain/resources/MR/ja/strings.xml @@ -794,7 +794,7 @@ <string name="updating_settings_will_reconnect_client_to_all_servers">設定を更新すると、全サーバにクライントの再接続が行われます。</string> <string name="save_color">色を保存</string> <string name="chat_preferences_you_allow">あなたが次を許可しています:</string> - <string name="chat_preferences_yes">はい</string> + <string name="chat_preferences_yes">オン</string> <string name="set_group_preferences">グループ設定を行う</string> <string name="your_preferences">あなたの設定</string> <string name="voice_prohibited_in_this_chat">このチャットでは音声メッセージが使用禁止です。</string> @@ -1346,7 +1346,7 @@ <string name="receipts_groups_disable_for_all">すべてのグループで無効にする</string> <string name="privacy_message_draft">メッセージの下書き</string> <string name="privacy_show_last_messages">最新のメッセージを表示</string> - <string name="send_receipts">配信通知の送信</string> + <string name="send_receipts">送信完了表示</string> <string name="rcv_group_event_n_members_connected">%s, %s および %d 人の他のメンバーが接続しています。</string> <string name="rcv_group_event_3_members_connected">%s, %s と %s は接続中</string> <string name="in_developing_desc">この機能はまだサポートされていません。次のリリースをお試しください。</string> diff --git a/apps/multiplatform/common/src/commonMain/resources/MR/lt/strings.xml b/apps/multiplatform/common/src/commonMain/resources/MR/lt/strings.xml index a8d6af6d40..57ce7eb06e 100644 --- a/apps/multiplatform/common/src/commonMain/resources/MR/lt/strings.xml +++ b/apps/multiplatform/common/src/commonMain/resources/MR/lt/strings.xml @@ -362,7 +362,7 @@ <string name="button_add_members">Pakviesti narius</string> <string name="disappearing_prohibited_in_this_chat">Išnykstančios žinutės šiame pokalbyje yra uždraustos.</string> <string name="voice_messages_are_prohibited">Balso žinutės šioje grupėje yra uždraustos.</string> - <string name="connect_via_group_link">Prisijungti per grupės nuorodą\?</string> + <string name="connect_via_group_link">Prisijungti prie grupės?</string> <string name="connect_via_contact_link">Prisijungti per adresato adresą?</string> <string name="sending_files_not_yet_supported">failų siuntimas kol kas nepalaikomas</string> <string name="invalid_message_format">neteisingas žinutės formatas</string> @@ -521,78 +521,73 @@ <string name="v5_0_large_files_support">Vaizdo įrašai ir failai iki 1GB</string> <string name="search_verb">Ieškoti</string> <string name="la_mode_off">Išjungta</string> - <string name="network_session_mode_user_description"><![CDATA[Atskiras TCP ryšys (ir SOCKS kredencialas) bus naudojamas <b>kiekvienam pokalbių profiliui, kurį turite programoje</b>.]]></string> - <string name="alert_text_decryption_error_n_messages_failed_to_decrypt">Nepavyko iššifruoti %1$d pranešimų.</string> - <string name="button_add_welcome_message">Pridėti sveikinimo pranešimą</string> + <string name="network_session_mode_user_description"><![CDATA[<b>Kiekvienam programėlėje esančiam pokalbių profiliui</b> bus naudojamas atskiras TCP ryšys (ir SOCKS prisijungimo duomenys).]]></string> + <string name="alert_text_decryption_error_n_messages_failed_to_decrypt">Nepavyko iššifruoti %1$d žinučių.</string> + <string name="button_add_welcome_message">Pridėti sveikinimo žinutę</string> <string name="v5_2_more_things">Dar keletas dalykų</string> <string name="all_group_members_will_remain_connected">Visi grupės nariai liks prisijungę.</string> - <string name="authentication_cancelled">Autentiškumo patvirtinimas atšauktas</string> - <string name="always_use_relay">Visada naudoti relę</string> - <string name="icon_descr_asked_to_receive">Paprašė leidimo gauti nuotrauką</string> - <string name="send_disappearing_message_5_minutes">5 minučių</string> - <string name="onboarding_notifications_mode_off_desc"><![CDATA[<b>Mažiausiai bateriją eikvojantis variantas</b>. Jūs gausite sistemos pranešimus tik kai bus atidaryta programėlė (NEBUS fone veikiančios paslaugos).]]></string> - <string name="abort_switch_receiving_address">Atšaukti adreso keitimą</string> - <string name="v4_2_auto_accept_contact_requests">Automatiškai priimti susisiekimo užklausas</string> - <string name="v5_1_self_destruct_passcode_descr">Kai jį suvedate visi duomenys yra pašalinami.</string> - <string name="network_session_mode_entity_description">Atskiras TCP ryšys (ir SOCKS kredencialas) bus naudojamas <b>kiekvienam adresatui ir grupės nariui</b>. -\n<b>Prašome atkreipti dėmesį</b>: jei turite daug atskirų ryšių, akumuliatoriaus ir interneto sąnaudos gali būti žymiai didesnės, kartais ryšio gali visiškai nepavykti užmegzti.</string> + <string name="authentication_cancelled">Tapatybės patvirtinimo atsisakyta</string> + <string name="always_use_relay">Visada naudoti retransliavimą</string> + <string name="send_disappearing_message_5_minutes">5 minutės</string> + <string name="onboarding_notifications_mode_off_desc"><![CDATA[<b>Mažiausios akumuliatoriaus sąnaudos</b>. Jūs gausite pranešimus tik tada, kai programėlė bus atverta (BE foninės tarnybos).]]></string> + <string name="abort_switch_receiving_address">Nutraukti adreso keitimą</string> + <string name="v4_2_auto_accept_contact_requests">Automatiškai priimti adresatų užklausas</string> + <string name="v5_1_self_destruct_passcode_descr">Jį įrašius visi duomenys bus pašalinti.</string> + <string name="network_session_mode_entity_description"><b>Kiekvienam adresatui ir grupės nariui</b> bus naudojamas atskiras TCP ryšys (ir SOCKS prisijungimo duomenys). +\n<b>Turėkite omenyje</b>: jei turite daug ryšių, akumuliatoriaus ir interneto duomenų sąnaudos gali būti žymiai didesnės ir, kartais, ryšiai gali patirti nesėkmę.</string> <string name="contact_wants_to_connect_via_call">%1$s nori su jumis susisiekti per</string> - <string name="turning_off_service_and_periodic">Yra įjungtas akumuliatoriaus naudojimo optimizavimas, kuris išjungia fone veikiančią paslaugą ir periodines naujų pranešimų užklausas. Juos iš naujo įjungti galite programos nustatymuose.</string> - <string name="notifications_mode_service">Visad įjungta</string> - <string name="notifications_mode_off_desc">Programėlė gaus sistemos pranešimus tik tada, kai ji bus įjungta, jokia fone veikianti paslauga nebus paleista</string> + <string name="turning_off_service_and_periodic">Yra įjungtas akumuliatoriaus naudojimo optimizavimas, išjungiantis foninę tarnybą ir periodines užklausas apie naujas žinutes. Nustatymuose galite įjungti ją iš naujo.</string> + <string name="notifications_mode_service">Visada įjungta</string> + <string name="notifications_mode_off_desc">Programėlė galės gauti sistemos pranešimus tik tada, kai veiks. Jokia foninė tarnyba nebus paleidžiama</string> <string name="accept_contact_button">Priimti</string> <string name="accept_contact_incognito_button">Priimti inkognito adresatą</string> - <string name="smp_servers_preset_add">Pridėti serverį iš sąrašo</string> - <string name="v4_2_group_links_desc">Administratoriai gali sukurti prisijungimo prie grupių nuorodas.</string> - <string name="notifications_mode_service_desc">Pastoviai fone veikianti paslauga. Sistemos pranešimai bus rodomi iš karto gavus žinutę.</string> - <string name="la_authenticate">Patvirtinti autentiškumą</string> - <string name="add_address_to_your_profile">Pridėkite adresą prie savo profilio, kad jūsų kontaktai galėtų bendrinti jį su kitais. Apie profilio atnaujinimą bus pranešta jūsų adresatams.</string> - <string name="icon_descr_video_asked_to_receive">Paprašė leidimo gauti vaizdo įrašą</string> - <string name="abort_switch_receiving_address_question">Ar norite atšaukti adreso keitimą\?</string> - <string name="abort_switch_receiving_address_desc">Adreso keitimas bus atšauktas. Bus naudojamas ankstusis gavimo adresas.</string> - <string name="send_disappearing_message_1_minute">1 minutės</string> + <string name="smp_servers_preset_add">Pridėti iš anksto parinktus serverius</string> + <string name="v4_2_group_links_desc">Administratoriai gali kurti prisijungimo prie grupių nuorodas.</string> + <string name="notifications_mode_service_desc">Foninė tarnyba visada veikia – pranešimai bus rodomi iš karto, kai tik bus prieinamos žinutės.</string> + <string name="la_authenticate">Patvirtinti tapatybę</string> + <string name="add_address_to_your_profile">Pridėkite adresą prie savo profilio, kad jūsų adresatai galėtų bendrinti jį su kitais žmonėmis. Apie profilio atnaujinimą bus pranešta jūsų adresatams.</string> + <string name="abort_switch_receiving_address_question">Nutraukti adreso keitimą?</string> + <string name="abort_switch_receiving_address_desc">Adreso keitimas bus nutrauktas. Bus naudojamas senas priėmimo adresas.</string> + <string name="send_disappearing_message_1_minute">1 minutė</string> <string name="icon_descr_audio_on">Įjungti garsą</string> <string name="icon_descr_audio_off">Išjungti garsą</string> - <string name="all_app_data_will_be_cleared">Visi programos duomenys yra ištrinami.</string> - <string name="app_passcode_replaced_with_self_destruct">Programos prieigos kodas pakeičiamas susinaikinimo prieigos kodu.</string> - <string name="empty_chat_profile_is_created">Sukuriamas tuščias pokalbių profilis nurodytu pavadinimu ir programėlė atsidaro kaip įprasta.</string> + <string name="all_app_data_will_be_cleared">Visi programėlės duomenys bus ištrinti.</string> + <string name="empty_chat_profile_is_created">Sukuriamas tuščias pokalbių profilis nurodytu pavadinimu ir programėlė atveriama kaip įprasta.</string> <string name="settings_section_title_app">PROGRAMĖLĖ</string> - <string name="keychain_is_storing_securely">Saugiai saugoti slaptažodžiui yra naudojamas \"Android Keystore\". Jis jums leidžia gauti sistemos pranešimus.</string> + <string name="keychain_is_storing_securely">Saugiam slaptafrazės saugojimui yra naudojama „Android Keystore“ – tai įgalina pranešimų tarnybą veikti.</string> <string name="color_secondary_variant">Papildoma antrinė spalva</string> - <string name="color_primary_variant">Papildoma pagrindinė spalva</string> + <string name="color_primary_variant">Papildomas akcentavimas</string> <string name="allow_to_send_files">Leisti siųsti failus ir mediją.</string> - <string name="abort_switch_receiving_address_confirm">Atšaukti</string> - <string name="alert_text_decryption_error_too_many_skipped">Praleista %1$d pranešimų.</string> + <string name="abort_switch_receiving_address_confirm">Nutraukti</string> + <string name="alert_text_decryption_error_too_many_skipped">Praleista %1$d žinučių.</string> <string name="all_your_contacts_will_remain_connected">Jūsų adresatai nepraras ryšio su jumis.</string> - <string name="callstatus_accepted">priimtas skambutis</string> + <string name="callstatus_accepted">atsilieptas skambutis</string> <string name="accept">Priimti</string> - <string name="integrity_msg_skipped">Praleistas (-i) %1$d pranešimas (-ai)</string> - <string name="auto_accept_images">Automatiškai priimti nuotraukas</string> - <string name="full_backup">Programos duomenų atsarginė kopija</string> - <string name="color_primary">Pagrindinė spalva</string> - <string name="keychain_allows_to_receive_ntfs">Saugiai saugoti slaptažodžiui, naujai paleidus programą ar jį pakeitus, naudojamas \"Android Keystore\". Jis jums leis gauti sistemos pranešimus.</string> + <string name="integrity_msg_skipped">Praleista žinučių: %1$d.</string> + <string name="full_backup">Programėlės duomenų atsarginė kopija</string> + <string name="color_primary">Akcentavimas</string> + <string name="keychain_allows_to_receive_ntfs">Paleidus programėlę iš naujo ar pakeitus slaptafrazę, saugiam slaptafrazės saugojimui bus naudojama „Android Keystore“ – tai leis gauti pranešimus.</string> <string name="color_background">Fonas</string> <string name="send_disappearing_message_30_seconds">30 sekundžių</string> - <string name="allow_message_reactions_only_if">Leisti reaguoti į pranešimus tik, jei tai leidžia jūsų adresatas.</string> + <string name="allow_message_reactions_only_if">Leisti reaguoti į žinutes tik tuo atveju, jeigu tai leidžia jūsų adresatas.</string> <string name="learn_more_about_address">Apie SimpleX adresą</string> - <string name="network_enable_socks_info">Ar norite prieiga prie serverių gauti per SOCKS tarpinį serverį naudojant prievadą %d\? Prieš įjungiant šią parinktį, tarpinis serveris turi būti paleistas.</string> - <string name="all_your_contacts_will_remain_connected_update_sent">Jūsų adresatai nepraras ryšio su jumis. Apie profilio pakeitimus bus pranešta jūsų adresatams.</string> + <string name="network_enable_socks_info">Ar gauti prieigą prie serverių per SOCKS įgaliotąjį serverį naudojant prievadą %d? Prieš įjungiant šią parinktį, privalo būti paleistas įgaliotasis serveris.</string> + <string name="all_your_contacts_will_remain_connected_update_sent">Jūsų adresatai nepraras ryšio su jumis. Apie profilio atnaujinimą bus pranešta jūsų adresatams.</string> <string name="audio_call_no_encryption">garso skambutis (nėra užšifruotas nuo vieno galo iki kito galo)</string> - <string name="group_info_section_title_num_members">%1$s NARIŲ</string> + <string name="group_info_section_title_num_members">NARIŲ: %1$s</string> <string name="address_section_title">Adresas</string> <string name="accept_feature">Priimti</string> - <string name="allow_calls_only_if">Leisti skambučius tik, jei juos leidžia jūsų adresatas.</string> - <string name="conn_event_ratchet_sync_started">sutinkama dėl užšifravimo..</string> - <string name="snd_conn_event_ratchet_sync_started">sutinkama su %s šifravimu…</string> - <string name="allow_your_contacts_adding_message_reactions">Leisti mano adresatams reaguoti į pranešimus.</string> - <string name="allow_your_contacts_to_call">Leisti mano adresatams man skambinti.</string> - <string name="allow_message_reactions">Leisti reaguoti į pranešimus.</string> - <string name="v5_0_app_passcode">Programos prieigos kodas</string> - <string name="v5_1_better_messages">Geresni pranešimai</string> - <string name="la_auth_failed">Autentiškumo patvirtinimas nepavyko</string> - <string name="accept_connection_request__question">Ar norite priimti sujungimo užklausą\?</string> + <string name="allow_calls_only_if">Leisti skambučius tik tuo atveju, jeigu juos leidžia jūsų adresatas.</string> + <string name="conn_event_ratchet_sync_started">sutariama dėl šifravimo…</string> + <string name="snd_conn_event_ratchet_sync_started">sutariama dėl %s šifravimo…</string> + <string name="allow_your_contacts_adding_message_reactions">Leisti jūsų adresatams reaguoti į žinutes.</string> + <string name="allow_your_contacts_to_call">Leisti jūsų adresatams jums skambinti.</string> + <string name="allow_message_reactions">Leisti reaguoti į žinutes.</string> + <string name="v5_1_better_messages">Geresnės žinutės</string> + <string name="la_auth_failed">Tapatybės patvirtinimas patyrė nesėkmę</string> + <string name="accept_connection_request__question">Priimti sujungimo užklausą?</string> <string name="one_time_link_short">vienkartinė nuoroda</string> - <string name="accept_call_on_lock_screen">Priimti</string> + <string name="accept_call_on_lock_screen">Atsiliepti</string> <string name="auto_accept_contact">Automatiškai priimti</string> <string name="onboarding_notifications_mode_periodic_desc"><![CDATA[<b>Geriau baterijai</b>. Fono paslauga tikrina pranešimus kas 10 minučių. Galite praleisti skambučius arba skubius pranešimus.]]></string> <string name="callstatus_in_progress">vyksta skambutis</string> @@ -666,4 +661,78 @@ <string name="connect_via_member_address_alert_title">Prisijungti tiesiogiai?</string> <string name="create_group_button">Sukurti grupę</string> <string name="dark_theme">Tamsus apipavidalinimas</string> + <string name="feature_off">išjungta</string> + <string name="turn_off_system_restriction_button">Atverti programėlės nustatymus</string> + <string name="chat_preferences_off">išjungta</string>` + <string name="loading_chats">Įkeliami pokalbiai…</string> + <string name="only_group_owners_can_enable_voice">Tik grupės savininkai gali įjungti balso žinutes.</string> + <string name="thousand_abbreviation">tūkst.</string> + <string name="paste_button">Įdėti</string> + <string name="v5_5_message_delivery">Pagerintas žinučių pristatymas</string> + <string name="settings_notification_preview_title">Pranešimo peržiūra</string> + <string name="loading_remote_file_title">Įkeliamas failas</string> + <string name="notifications">Pranešimai</string> + <string name="if_you_received_simplex_invitation_link_you_can_open_in_browser">Jei gavote SimpleX Chat pakvietimo nuorodą, galite ją atverti naršyklėje:</string> + <string name="icon_descr_more_button">Daugiau</string> + <string name="paste_the_link_you_received">Įdėkite gautą nuorodą</string> + <string name="invalid_qr_code">Neteisingas QR kodas</string> + <string name="network_settings_title">Tinklo nustatymai</string> + <string name="rcv_group_event_member_left">išėjo</string> + <string name="v4_5_reduced_battery_usage_descr">Daugiau patobulinimų jau greitai!</string> + <string name="v5_5_join_group_conversation">Prisijunkite prie pokalbių grupėse</string> + <string name="connect_plan_open_group">Atverti grupę</string> + <string name="invite_friends">Pakviesti draugus</string> + <string name="only_you_can_make_calls">Tik jūs galite skambinti.</string> + <string name="v5_0_polish_interface">Naudotojo sąsaja lenkų kalba</string> + <string name="v5_2_more_things_descr">- stabilesnis žinučių pristatymas. +\n- šiek tiek geresnės grupės. +\n- ir daugiau!</string> + <string name="only_your_contact_can_make_calls">Tik jūsų adresatas gali skambinti.</string> + <string name="contact_developers">Atnaujinkite programėlę ir susisiekite su plėtotojais.</string> + <string name="open_verb">Atverti</string> + <string name="chat_item_ttl_none">niekada</string> + <string name="learn_more">Sužinoti daugiau</string> + <string name="opening_database">Atveriama duomenų bazė…</string> + <string name="agent_internal_error_title">Vidinė klaida</string> + <string name="import_theme">Importuoti apipavidalinimą</string> + <string name="only_you_can_send_voice">Tik jūs galite siųsti balso žinutes.</string> + <string name="v4_5_multiple_chat_profiles">Daug pokalbio profilių</string> + <string name="ok">Gerai</string> + <string name="v4_5_private_filenames">Privatūs failų pavadinimai</string> + <string name="info_menu">Informacija</string> + <string name="open_simplex_chat_to_accept_call">Atverkite SimpleX Chat norėdami atsiliepti</string> + <string name="desktop_incompatible_version">Nesuderinama versija</string> + <string name="non_content_uri_alert_title">Neteisingas failo kelias</string> + <string name="settings_notifications_mode_title">Pranešimų tarnyba</string> + <string name="notification_preview_new_message">nauja žinutė</string> + <string name="network_use_onion_hosts_no">Ne</string> + <string name="open_database_folder">Atverti duomenų bazės aplanką</string> + <string name="joining_group">Prisijungiama prie grupės</string> + <string name="group_welcome_preview">Peržiūra</string> + <string name="v4_5_italian_interface">Naudotojo sąsaja italų kalba</string> + <string name="v4_6_reduced_battery_usage_descr">Daugiau patobulinimų jau greitai!</string> + <string name="v5_1_japanese_portuguese_interface">Naudotojo sąsaja japonų ir italų kalbomis</string> + <string name="new_chat">Naujas pokalbis</string> + <string name="display_name__field">Profilio pavadinimas:</string> + <string name="prohibit_message_deletion">Uždrausti negrįžtamai ištrinti žinutes.</string> + <string name="network_and_servers">Tinklas ir serveriai</string> + <string name="group_member_status_left">išėjo</string> + <string name="group_member_role_owner">savininkas</string> + <string name="chat_preferences_no">ne</string> + <string name="prohibit_calls">Uždrausti garso/vaizdo skambučius.</string> + <string name="only_you_can_send_disappearing">Tik jūs galite siųsti išnykstančias žinutes.</string> + <string name="only_your_contact_can_send_disappearing">Tik jūsų adresatas gali siųsti išnykstančias žinutes.</string> + <string name="this_device_version"><![CDATA[<i>(šis įrenginys v%s)</i>]]></string> + <string name="only_one_device_can_work_at_the_same_time">Vienu metu gali veikti tik vienas įrenginys</string> + <string name="not_compatible">Nesuderinama!</string> + <string name="rcv_group_event_open_chat">Atverti</string> + <string name="open_chat">Atverti pokalbį</string> + <string name="network_status">Tinklo būsena</string> + <string name="email_invite_subject">Bendraukime per Simplex Chat</string> + <string name="message_too_large">Žinutė per didelė</string> + <string name="new_in_version">Štai kas naujo %s versijoje</string> + <string name="only_your_contact_can_send_voice">Tik jūsų adresatas gali siųsti balso žinutes.</string> + <string name="only_owners_can_enable_files_and_media">Tik grupės savininkai gali įjungti failus ir mediją.</string> + <string name="only_group_owners_can_change_prefs">Tik grupės savininkai gali keisti grupės nuostatas.</string> + <string name="import_theme_error">Apipavidalinimo importavimo klaida</string> </resources> \ No newline at end of file diff --git a/apps/multiplatform/common/src/commonMain/resources/MR/nl/strings.xml b/apps/multiplatform/common/src/commonMain/resources/MR/nl/strings.xml index 7ee6ecdb35..0de26f0d68 100644 --- a/apps/multiplatform/common/src/commonMain/resources/MR/nl/strings.xml +++ b/apps/multiplatform/common/src/commonMain/resources/MR/nl/strings.xml @@ -440,8 +440,8 @@ <string name="chat_item_ttl_none">nooit</string> <string name="no_received_app_files">Geen ontvangen of verzonden bestanden</string> <string name="alert_title_group_invitation_expired">Uitnodiging verlopen!</string> - <string name="rcv_group_event_member_left">verlaten</string> - <string name="group_member_status_left">verlaten</string> + <string name="rcv_group_event_member_left">is vertrokken</string> + <string name="group_member_status_left">vertrokken</string> <string name="group_member_status_invited">uitgenodigd</string> <string name="button_leave_group">Groep verlaten</string> <string name="info_row_local_name">Lokale naam</string> @@ -523,7 +523,7 @@ <string name="rcv_group_event_invited_via_your_group_link">uitgenodigd via je groep link</string> <string name="incognito">Incognito</string> <string name="icon_descr_call_missed">Gemiste oproep</string> - <string name="description_via_contact_address_link_incognito">incognito via contactadres link</string> + <string name="description_via_contact_address_link_incognito">incognito via contact adres link</string> <string name="description_via_group_link_incognito">incognito via groep link</string> <string name="description_via_one_time_link_incognito">incognito via eenmalige link</string> <string name="invalid_chat">ongeldige gesprek</string> @@ -933,7 +933,7 @@ <string name="trying_to_connect_to_server_to_receive_messages_with_error">Er wordt geprobeerd verbinding te maken met de server die wordt gebruikt om berichten van dit contact te ontvangen (fout: %1$s).</string> <string name="unknown_message_format">onbekend berichtformaat</string> <string name="simplex_link_mode_browser">Via browser</string> - <string name="description_via_contact_address_link">via contactadres link</string> + <string name="description_via_contact_address_link">via contact adres link</string> <string name="description_via_group_link">via groep link</string> <string name="description_via_one_time_link">via een eenmalige link</string> <string name="simplex_link_connection">via %1$s</string> @@ -1551,7 +1551,7 @@ <string name="tap_to_scan">Tik om te scannen</string> <string name="keep_invitation_link">Bewaar</string> <string name="tap_to_paste_link">Tik om de link te plakken</string> - <string name="search_or_paste_simplex_link">Zoek of plak een SimpleX link</string> + <string name="search_or_paste_simplex_link">Zoeken of plak een SimpleX link</string> <string name="chat_is_stopped_you_should_transfer_database">De chat is gestopt. Als u deze database al op een ander apparaat heeft gebruikt, moet u deze terugzetten voordat u met chatten begint.</string> <string name="start_chat_question">Begin chat?</string> <string name="show_internal_errors">Toon interne fouten</string> @@ -1628,4 +1628,13 @@ <string name="unblock_for_all_question">Lid voor iedereen deblokkeren?</string> <string name="snd_group_event_member_blocked">je hebt %s geblokkeerd</string> <string name="snd_group_event_member_unblocked">je hebt %s gedeblokkeerd</string> + <string name="message_too_large">Bericht te groot</string> + <string name="welcome_message_is_too_long">Welkomstbericht is te lang</string> + <string name="database_migration_in_progress">De databasemigratie wordt uitgevoerd. +\nDit kan enkele minuten duren.</string> + <string name="call_service_notification_audio_call">Audio oproep</string> + <string name="call_service_notification_end_call">Ophangen</string> + <string name="call_service_notification_video_call">Video oproep</string> + <string name="unable_to_open_browser_title">Fout bij het openen van de browser</string> + <string name="unable_to_open_browser_desc">Voor oproepen is de standaard webbrowser vereist. Configureer de standaard browser in het systeem en deel meer informatie met de ontwikkelaars.</string> </resources> \ No newline at end of file diff --git a/apps/multiplatform/common/src/commonMain/resources/MR/pl/strings.xml b/apps/multiplatform/common/src/commonMain/resources/MR/pl/strings.xml index 48607217ce..00089a53a3 100644 --- a/apps/multiplatform/common/src/commonMain/resources/MR/pl/strings.xml +++ b/apps/multiplatform/common/src/commonMain/resources/MR/pl/strings.xml @@ -1630,4 +1630,13 @@ <string name="remote_host_error_timeout"><![CDATA[Osiągnięto limit czasu podczas łączenia z telefonem <b>%s</b>]]></string> <string name="remote_ctrl_error_inactive">Komputer jest nieaktywny</string> <string name="remote_host_error_disconnected"><![CDATA[Telefon <b>%s</b> został rozłączony]]></string> + <string name="welcome_message_is_too_long">Wiadomość powitalna jest zbyt długa</string> + <string name="database_migration_in_progress">Proces migracji bazy danych jest w toku. +\nMoże to potrwać kilka minut.</string> + <string name="message_too_large">Wiadomość jest zbyt duża</string> + <string name="call_service_notification_audio_call">Połączenie audio</string> + <string name="call_service_notification_end_call">Zakończ połączenie</string> + <string name="call_service_notification_video_call">Połączenie wideo</string> + <string name="unable_to_open_browser_title">Błąd podczas otwierania przeglądarki</string> + <string name="unable_to_open_browser_desc">Do połączeń wymagana jest domyślna przeglądarka. Proszę skonfigurować domyślną przeglądarkę systemową, i podzielić się informacją z twórcami.</string> </resources> \ No newline at end of file diff --git a/apps/multiplatform/common/src/commonMain/resources/MR/pt-rBR/strings.xml b/apps/multiplatform/common/src/commonMain/resources/MR/pt-rBR/strings.xml index bf7d29c9c3..cc0bd49454 100644 --- a/apps/multiplatform/common/src/commonMain/resources/MR/pt-rBR/strings.xml +++ b/apps/multiplatform/common/src/commonMain/resources/MR/pt-rBR/strings.xml @@ -10,9 +10,9 @@ <string name="rcv_conn_event_switch_queue_phase_changing">mudando endereço…</string> <string name="snd_conn_event_switch_queue_phase_changing_for_member">mudando endereço para %s…</string> <string name="snd_conn_event_switch_queue_phase_changing">mudando endereço…</string> - <string name="change_role">Mudar função</string> + <string name="change_role">Mudar cargo</string> <string name="change_verb">Mudar</string> - <string name="both_you_and_your_contacts_can_delete">Você e seu contato podem excluir mensagens enviadas de forma irreversível.</string> + <string name="both_you_and_your_contacts_can_delete">Você e seu contato podem excluir mensagens enviadas de forma irreversível. (24 horas)</string> <string name="it_can_disabled_via_settings_notifications_still_shown"><![CDATA[<b>Pode ser desativado nas configurações</b> – as notificações ainda serão exibidas enquanto o aplicativo estiver em execução.]]></string> <string name="both_you_and_your_contact_can_send_voice">Você e seu contato podem enviar mensagens de voz.</string> <string name="notifications_mode_off_desc">O aplicativo pode receber notificações apenas quando estiver em execução, nenhum serviço em segundo plano será iniciado</string> @@ -25,61 +25,61 @@ <string name="back">Voltar</string> <string name="choose_file">Arquivo</string> <string name="accept_contact_button">Aceitar</string> - <string name="clear_chat_question">Limpar chat\?</string> + <string name="clear_chat_question">Limpar bate-papo?</string> <string name="clear_verb">Limpar</string> - <string name="clear_chat_button">Limpar chat</string> + <string name="clear_chat_button">Limpar bate-papo</string> <string name="clear_chat_menu_action">Limpar</string> <string name="icon_descr_cancel_link_preview">cancelar pré-visualização do link</string> <string name="feature_cancelled_item">cancelado %s</string> - <string name="app_version_name">Versão do App: v%s</string> + <string name="app_version_name">Versão do Aplicativo: v%s</string> <string name="callstatus_calling">chamando…</string> <string name="callstatus_in_progress">chamada em andamento</string> <string name="accept">Aceitar</string> <string name="call_already_ended">Chamada já encerrada!</string> <string name="icon_descr_call_progress">Chamada em andamento</string> <string name="icon_descr_call_ended">Chamada encerrada</string> - <string name="answer_call">Atender ligação</string> - <string name="integrity_msg_bad_hash">hash de mensagem incorreto</string> + <string name="answer_call">Atender chamada</string> + <string name="integrity_msg_bad_hash">hash de mensagem incorreta</string> <string name="integrity_msg_bad_id">ID de mensagem incorreta</string> - <string name="impossible_to_recover_passphrase"><![CDATA[<b>Observação</b>: você NÃO poderá recuperar ou alterar a senha se a perder.]]></string> + <string name="impossible_to_recover_passphrase"><![CDATA[<b>Atenção</b>: você NÃO poderá recuperar ou alterar a senha se a perder.]]></string> <string name="cannot_receive_file">Não é possível receber o arquivo</string> <string name="icon_descr_cancel_image_preview">Cancelar visualização da imagem</string> - <string name="icon_descr_close_button">Botão Fechar</string> + <string name="icon_descr_close_button">Botão de fechar</string> <string name="clear_verification">Limpar verificação</string> - <string name="app_version_title">Versão do App</string> + <string name="app_version_title">Versão do Aplicativo</string> <string name="bold_text">negrito</string> <string name="callstatus_error">erro de chamada</string> <string name="settings_audio_video_calls">Chamadas de áudio e vídeo</string> <string name="accept_call_on_lock_screen">Aceitar</string> <string name="call_on_lock_screen">Chamadas na tela de bloqueio:</string> <string name="icon_descr_audio_on">Áudio ligado</string> - <string name="chat_database_imported">Banco de dados de chat importado</string> + <string name="chat_database_imported">Banco de dados do bate-papo importado</string> <string name="keychain_is_storing_securely">Android Keystore é usada para armazenar a senha com segurança - permite que o serviço de notificação funcione.</string> <string name="keychain_allows_to_receive_ntfs">A Android Keystore será usada para armazenar a senha com segurança depois que você reiniciar o aplicativo ou alterar a senha - isso permitirá o recebimento de notificações.</string> <string name="cannot_access_keychain">Não é possível acessar a Keystore para salvar a senha do banco de dados</string> - <string name="chat_archive_section">ARQUIVO DE CHAT</string> - <string name="chat_is_stopped_indication">O chat está parado</string> + <string name="chat_archive_section">ARQUIVO DE BATE-PAPO</string> + <string name="chat_is_stopped_indication">O bate-papo está parado</string> <string name="clear_contacts_selection_button">Limpar</string> - <string name="chat_preferences">Preferências de chat</string> - <string name="network_session_mode_user">perfil de chat</string> + <string name="chat_preferences">Preferências de bate-papo</string> + <string name="network_session_mode_user">Perfil de bate-papo</string> <string name="icon_descr_audio_off">Áudio desligado</string> <string name="auto_accept_images">Aceitar imagens automaticamente</string> - <string name="chat_database_deleted">Banco de dados de chat excluído</string> + <string name="chat_database_deleted">Banco de dados do bate-papo excluído</string> <string name="invite_prohibited">Não é possível convidar o contato!</string> <string name="turning_off_service_and_periodic">A otimização da bateria está ativa, desligando o serviço em segundo plano e as solicitações periódicas de novas mensagens. Você pode reativá-los através das configurações.</string> <string name="database_initialization_error_title">Não é possível inicializar o banco de dados</string> <string name="attach">Anexar</string> <string name="cancel_verb">Cancelar</string> - <string name="chat_console">Console de chat</string> + <string name="chat_console">Console de bate-papo</string> <string name="smp_servers_check_address">Verifique o endereço do servidor e tente novamente.</string> - <string name="network_session_mode_user_description"><![CDATA[Uma conexão TCP separada (e credencial SOCKS) será usada <b>para cada perfil de chat que você tiver no aplicativo</b>.]]></string> - <string name="onboarding_notifications_mode_off_desc"><![CDATA[<b>Melhor para bateria</b>. Você receberá notificações apenas quando o aplicativo estiver em execução (sem segundo plano).]]></string> + <string name="network_session_mode_user_description"><![CDATA[Uma conexão TCP separada (e credencial SOCKS) será usada <b>para cada perfil de bate-papo que você tiver no aplicativo</b>.]]></string> + <string name="onboarding_notifications_mode_off_desc"><![CDATA[<b>Melhor para bateria</b>. Você receberá notificações apenas quando o aplicativo estiver em execução (SEM o serviço em segundo plano).]]></string> <string name="onboarding_notifications_mode_service_desc"><![CDATA[<b>Consome mais bateria</b>! O serviço em segundo plano está sempre em execução - as notificações são exibidas assim que as mensagens estiverem disponíveis.]]></string> - <string name="settings_section_title_chats">CHATS</string> - <string name="settings_section_title_icon">ÍCONE DO APP</string> - <string name="chat_database_section">BANCO DE DADOS DE CHAT</string> - <string name="chat_is_running">O chat está em execução</string> - <string name="chat_is_stopped">O chat está parado</string> + <string name="settings_section_title_chats">BATE-PAPOS</string> + <string name="settings_section_title_icon">ÍCONE DO APLICATIVO</string> + <string name="chat_database_section">BANCO DE DADOS DE BATE-PAPO</string> + <string name="chat_is_running">O bate-papo está em execução</string> + <string name="chat_is_stopped">O bate-papo está parado</string> <string name="change_database_passphrase_question">Alterar senha do banco de dados\?</string> <string name="chat_archive_header">Arquivo de chat</string> <string name="rcv_conn_event_switch_queue_phase_completed">endereço alterado para você</string> @@ -89,17 +89,17 @@ <string name="v4_2_auto_accept_contact_requests">Aceitar solicitações de contato automaticamente</string> <string name="appearance_settings">Aparência</string> <string name="notifications_mode_service_desc">O serviço em segundo plano está sempre em execução - as notificações serão exibidas assim que as mensagens estiverem disponíveis.</string> - <string name="network_session_mode_entity_description">Uma conexão TCP separada (e credencial SOCKS) será usada <b>para cada contato e membro do grupo</b>. -\n<b>Observação</b>: se você tiver muitas conexões, o consumo de bateria e tráfego pode ser substancialmente maior e algumas conexões podem falhar.</string> + <string name="network_session_mode_entity_description">Uma conexão TCP separada (e credencial SOCKS) será usada <b>para cada contato e membro do grupo</b>. +\n<b>Atenção</b>: se você tiver muitas conexões, o consumo de bateria e tráfego pode ser substancialmente maior e algumas conexões podem falhar.</string> <string name="onboarding_notifications_mode_periodic_desc"><![CDATA[<b>Bom para bateria</b>. O serviço em segundo plano procura por mensagens a cada 10 minutos. Você pode perder chamadas ou mensagens urgentes.]]></string> <string name="callstatus_ended">chamda encerrada %1$s</string> - <string name="chat_with_developers">Chat com os desenvolvedores</string> + <string name="chat_with_developers">Converse com os desenvolvedores</string> <string name="create_group_link">Criar link de grupo</string> <string name="button_create_group_link">Criar link</string> <string name="create_secret_group_title">Criar grupo secreto</string> <string name="theme_dark">Escuro</string> - <string name="connect_via_invitation_link">Conectar via link de convite\?</string> - <string name="connect_via_contact_link">Conectar via link de contato\?</string> + <string name="connect_via_invitation_link">Conectar via link de convite único?</string> + <string name="connect_via_contact_link">Conectar via endereço do contato?</string> <string name="smp_server_test_create_queue">Criar fila</string> <string name="notification_preview_mode_contact">Nome de contato</string> <string name="notification_preview_somebody">Contato oculto:</string> @@ -107,7 +107,7 @@ <string name="allow_verb">Permitir</string> <string name="allow_to_send_disappearing">Permitir enviar mensagens temporárias.</string> <string name="allow_direct_messages">Permitir o envio de mensagens diretas aos membros.</string> - <string name="connect_via_link_or_qr">Conectar via link/QR</string> + <string name="connect_via_link_or_qr">Conectar via link/QR code</string> <string name="clear_chat_warning">Todas as mensagens serão excluídas - isso não pode ser desfeito! As mensagens serão excluídas APENAS para você.</string> <string name="smp_servers_preset_add">Adicionar servidores pré-definidos</string> <string name="smp_servers_add">Adicionar servidor…</string> @@ -123,7 +123,7 @@ <string name="status_contact_has_e2e_encryption">Contato tem criptografia e2e</string> <string name="status_contact_has_no_e2e_encryption">contato não tem criptografia e2e</string> <string name="contact_preferences">Preferências de contato</string> - <string name="allow_to_delete_messages">Permite excluir irreversivelmente as mensagens enviadas.</string> + <string name="allow_to_delete_messages">Permite excluir irreversivelmente as mensagens enviadas. (24 horas)</string> <string name="chat_preferences_always">sempre</string> <string name="v4_3_improved_server_configuration_desc">Adicione servidores escaneando o QR code.</string> <string name="allow_to_send_voice">Permitir enviar mensagens de voz.</string> @@ -137,21 +137,21 @@ <string name="users_delete_all_chats_deleted">Todos os chats e mensagens serão excluídos - isso não pode ser desfeito!</string> <string name="accept_feature">Aceitar</string> <string name="allow_disappearing_messages_only_if">Permitir mensagens temporárias apenas se o seu contato permitir.</string> - <string name="allow_irreversible_message_deletion_only_if">Permita a exclusão irreversível da mensagem somente se o seu contato permitir.</string> + <string name="allow_irreversible_message_deletion_only_if">Permita a exclusão irreversível da mensagem somente se o seu contato permitir. (24 horas)</string> <string name="allow_your_contacts_to_send_disappearing_messages">Permitir que seus contatos enviem mensagens temporárias.</string> <string name="allow_voice_messages_only_if">Permitir mensagens de voz somente se o seu contato permitir.</string> <string name="allow_your_contacts_to_send_voice_messages">Permitir que seus contatos enviem mensagens de voz.</string> <string name="group_member_role_admin">administrador</string> <string name="all_group_members_will_remain_connected">Todos os membros do grupo permanecerão conectados.</string> <string name="contacts_can_mark_messages_for_deletion">"Contatos podem marcar mensagens para exclusão; você será capaz de visualizá-los."</string> - <string name="connect_via_group_link">Conectar via link do grupo\?</string> + <string name="connect_via_group_link">Se conectar ao grupo?</string> <string name="contact_already_exists">Contato já existe</string> <string name="icon_descr_contact_checked">Contato verificado</string> <string name="alert_title_contact_connection_pending">Contato ainda não está conectado!</string> <string name="contribute">Contribuir</string> <string name="create_profile_button">Criar</string> <string name="network_enable_socks_info">Acessar os servidores via proxy SOCKS na porta %d\? O proxy deve ser iniciado antes de habilitar esta opção.</string> - <string name="allow_your_contacts_irreversibly_delete">Permitir que seus contatos excluam de forma irreversível as mensagens enviadas.</string> + <string name="allow_your_contacts_irreversibly_delete">Permitir que seus contatos excluam de forma irreversível as mensagens enviadas. (24 horas)</string> <string name="smp_servers_add_to_another_device">Adicionar a outro dispositivo</string> <string name="v4_2_group_links_desc">Os administradores podem criar os links para ingressar em grupos.</string> <string name="allow_voice_messages_question">Permitir mensagens de voz\?</string> @@ -168,7 +168,7 @@ <string name="connect_button">Conectar</string> <string name="callstatus_connecting">conectando chamada…</string> <string name="delete_chat_profile_question">Excluir perfil de chat\?</string> - <string name="delete_files_and_media_for_all_users">Excluir arquivos de todos os perfis de chat</string> + <string name="delete_files_and_media_for_all_users">Excluir arquivos de todos os perfis de bate-papo</string> <string name="display_name_connecting">conectando…</string> <string name="connection_error">Erro de conexão</string> <string name="button_delete_contact">Excluir contato</string> @@ -182,7 +182,7 @@ <string name="database_passphrase_is_required">Senha do banco de dados é necessária para abrir o chat.</string> <string name="delete_archive">Excluir arquivo</string> <string name="delete_chat_archive_question">Excluir arquivo de chat\?</string> - <string name="rcv_group_event_changed_member_role">função alterada de %s para %s</string> + <string name="rcv_group_event_changed_member_role">cargo alterado de %s para %s</string> <string name="rcv_group_event_member_connected">conectado</string> <string name="delete_link">Excluir link</string> <string name="delete_link_question">Excluir link\?</string> @@ -193,7 +193,7 @@ <string name="for_me_only">Excluir para mim</string> <string name="group_connection_pending">conectando…</string> <string name="delete_contact_question">Excluir contato\?</string> - <string name="confirm_verb">confirmar</string> + <string name="confirm_verb">Confirmar</string> <string name="database_passphrase_and_export">Senha e exportação do banco de dados</string> <string name="icon_descr_call_connecting">Conectando chamada</string> <string name="delete_messages">Excluir mensagens</string> @@ -207,9 +207,9 @@ <string name="notification_contact_connected">Conectado</string> <string name="icon_descr_server_status_connected">Conectado</string> <string name="audio_call_no_encryption">chamada de áudio (não criptografada ponta-a-ponta)</string> - <string name="change_member_role_question">Alterar a função do grupo\?</string> + <string name="change_member_role_question">Alterar a cargo do grupo?</string> <string name="icon_descr_audio_call">chamada de áudio</string> - <string name="rcv_group_event_changed_your_role">mudou sua função para %s</string> + <string name="rcv_group_event_changed_your_role">mudou sua cargo para %s</string> <string name="v4_4_verify_connection_security_desc">Compare os códigos de segurança com seus contatos.</string> <string name="auth_confirm_credential">Confirme sua credencial</string> <string name="callstate_connecting">conectando…</string> @@ -242,10 +242,10 @@ <string name="group_member_status_connected">conectado</string> <string name="group_member_status_accepted">conectando (aceito)</string> <string name="ttl_d">%dd</string> - <string name="v4_5_transport_isolation_descr">Por perfil de chat (padrão) ou por conexão (BETA).</string> + <string name="v4_5_transport_isolation_descr">Por perfil de bate-papo (padrão) ou por conexão (BETA).</string> <string name="accept_contact_incognito_button">Aceitar anônimo</string> <string name="delete_messages_after">Excluir mensagens após</string> - <string name="desktop_scan_QR_code_from_app_via_scan_QR_code"><![CDATA[💻 desktop: Scaneie o código QR exibido no aplicativo, via <b>Scan QR code</b>]]></string> + <string name="desktop_scan_QR_code_from_app_via_scan_QR_code"><![CDATA[💻 desktop: Escaneie o QR code exibido no aplicativo, via <b>Escanear QR code</b>]]></string> <string name="delete_pending_connection__question">Excluir conexão pendente\?</string> <string name="simplex_link_mode_description">Descrição</string> <string name="smp_servers_delete_server">Excluir servidor</string> @@ -254,14 +254,14 @@ <string name="delete_member_message__question">Excluir mensagem do membro\?</string> <string name="smp_server_test_delete_queue">Excluir fila</string> <string name="settings_section_title_device">DISPOSITIVO</string> - <string name="settings_developer_tools">Ferramentas de desenvolvimento</string> + <string name="settings_developer_tools">Ferramentas de desenvolvedor</string> <string name="group_member_status_introduced">conectando (introduzido)</string> - <string name="color_primary">Acento</string> + <string name="color_primary">Realçe</string> <string name="error_removing_member">Erro ao remover membro</string> - <string name="error_changing_role">Erro ao alterar função</string> + <string name="error_changing_role">Erro ao alterar cargo</string> <string name="conn_level_desc_direct">direto</string> <string name="server_error">erro</string> - <string name="failed_to_parse_chat_title">Falha ao carregar o chat</string> + <string name="failed_to_parse_chat_title">Falha ao carregar o bate-papo</string> <string name="error_setting_network_config">Erro ao atualizar a configuração de conexão</string> <string name="error_sending_message">Erro ao enviar mensagem</string> <string name="error_adding_members">Erro ao adicionar membro(s)</string> @@ -274,10 +274,10 @@ <string name="error_receiving_file">Erro ao receber arquivo</string> <string name="error_creating_address">Erro ao criar endereço</string> <string name="display_name__field">Nome de exibição:</string> - <string name="error_starting_chat">Erro ao iniciar o chat</string> + <string name="error_starting_chat">Erro ao iniciar o bate-papo</string> <string name="error_deleting_database">Erro ao excluir banco de dados de chat</string> <string name="encrypt_database">Criptografar</string> - <string name="network_option_enable_tcp_keep_alive">Ativar TCP keep-alive</string> + <string name="network_option_enable_tcp_keep_alive">Ativar TCP manter-vivo</string> <string name="failed_to_create_user_title">Erro ao criar perfil!</string> <string name="error_joining_group">Erro ao ingressar no grupo</string> <string name="failed_to_create_user_duplicate_title">Nome de exibição duplicado!</string> @@ -291,22 +291,22 @@ <string name="error_accepting_contact_request">Erro ao aceitar solicitação de contato</string> <string name="error_deleting_contact_request">Erro ao excluir solicitação de contato</string> <string name="failed_to_active_user_title">Erro ao trocar de perfil!</string> - <string name="auth_disable_simplex_lock">Desativar Bloqueio SimpleX</string> - <string name="auth_enable_simplex_lock">Ativar Bloqueio SimpleX</string> + <string name="auth_disable_simplex_lock">Desativar o bloqueio SimpleX</string> + <string name="auth_enable_simplex_lock">Ativar bloqueio SimpleX</string> <string name="icon_descr_edited">editado</string> <string name="icon_descr_server_status_error">Erro</string> - <string name="icon_descr_email">E-mail</string> + <string name="icon_descr_email">Email</string> <string name="error_saving_ICE_servers">Erro ao salvar servidores ICE</string> <string name="exit_without_saving">Sair sem salvar</string> - <string name="display_name">Nome de exibição</string> + <string name="display_name">Digite o seu nome:</string> <string name="encrypted_video_call">chamada de vídeo criptografada ponta-a-ponta</string> <string name="integrity_msg_duplicate">mensagem duplicada</string> <string name="status_e2e_encrypted">criptografado ponta-a-ponta</string> <string name="export_database">Exportar banco de dados</string> <string name="total_files_count_and_size">%d arquivo(s) com tamanho total de %s</string> - <string name="error_exporting_chat_database">Erro ao exportar banco de chat</string> - <string name="error_importing_database">Erro ao importar banco de dados de chat</string> - <string name="error_stopping_chat">Erro ao interromper o chat</string> + <string name="error_exporting_chat_database">Erro ao exportar banco de dados do bate-papo</string> + <string name="error_importing_database">Erro ao importar banco de dados do bate-papo</string> + <string name="error_stopping_chat">Erro ao interromper o bate-papo</string> <string name="error_changing_message_deletion">Erro ao alterar configuração</string> <string name="error_encrypting_database">Erro ao criptografar o banco de dados</string> <string name="encrypted_database">Banco de dados criptografado</string> @@ -314,9 +314,9 @@ <string name="enter_passphrase">Digite a senha…</string> <string name="error_with_info">Erro: %s</string> <string name="button_edit_group_profile">Editar perfil do grupo</string> - <string name="icon_descr_expand_role">Expandir seleção de função</string> + <string name="icon_descr_expand_role">Expandir seleção de cargo</string> <string name="error_saving_group_profile">Erro ao salvar o perfil do grupo</string> - <string name="direct_messages">DMs</string> + <string name="direct_messages">Mensagens diretas</string> <string name="feature_enabled">habilitado</string> <string name="feature_enabled_for_contact">habilitado para contato</string> <string name="feature_enabled_for_you">ativado para você</string> @@ -363,9 +363,9 @@ <string name="conn_level_desc_indirect">indireto (%1$s)</string> <string name="incognito">Anônimo</string> <string name="timed_messages">Mensagens que desaparecem</string> - <string name="group_preferences">Preferências de grupo</string> - <string name="disappearing_prohibited_in_this_chat">Mensagens temporárias são proibidas nesse chat.</string> - <string name="group_members_can_send_dms">Os membros do grupo podem enviar DMs.</string> + <string name="group_preferences">Preferências do grupo</string> + <string name="disappearing_prohibited_in_this_chat">Mensagens temporárias são proibidas nesse bate-papo.</string> + <string name="group_members_can_send_dms">Os membros do grupo podem enviar mensagens diretas.</string> <string name="ttl_mth">%dmês</string> <string name="simplex_link_mode_full">Link completo</string> <string name="hide_notification">Ocultar</string> @@ -374,12 +374,12 @@ <string name="notification_preview_mode_hidden">Oculto</string> <string name="how_to_use_your_servers">Como usar seus servidores</string> <string name="import_database_confirmation">Importar</string> - <string name="import_database_question">Importar banco de dados de chat\?</string> - <string name="group_display_name_field">Nome de exibição do grupo:</string> + <string name="import_database_question">Importar banco de dados de bate-papo?</string> + <string name="group_display_name_field">Digite o nome de exibição do grupo:</string> <string name="group_full_name_field">Nome completo do grupo:</string> <string name="v4_2_group_links">Links de grupo</string> <string name="v4_3_improved_privacy_and_security">Privacidade e segurança aprimoradas</string> - <string name="failed_to_parse_chats_title">Falha ao carregar chats</string> + <string name="failed_to_parse_chats_title">Falha ao carregar o bate-papo</string> <string name="file_with_path">Arquivo: %s</string> <string name="file_saved">Arquivo salvo</string> <string name="group_members_can_send_voice">Os membros do grupo podem enviar mensagens de voz.</string> @@ -388,15 +388,15 @@ <string name="notification_display_mode_hidden_desc">Ocultar contato e mensagem</string> <string name="how_to_use_simplex_chat">Como usar</string> <string name="how_to_use_markdown">Como usar markdown</string> - <string name="if_you_cannot_meet_in_person_show_QR_in_video_call_or_via_another_channel"><![CDATA[Se você não puder se encontrar pessoalmente, <b>mostre o código QR na videochamada</b> ou compartilhe o link.]]></string> - <string name="if_you_cannot_meet_in_person_scan_QR_in_video_call_or_ask_for_invitation_link"><![CDATA[Se você não puder encontrar pessoalmente, você pode <b>escanear o código QR na videochamada</b> ou seu contato pode compartilhar um link de convite.]]></string> + <string name="if_you_cannot_meet_in_person_show_QR_in_video_call_or_via_another_channel"><![CDATA[Se você não puder se encontrar pessoalmente, <b>mostre o QR code na video chamada</b> ou compartilhe o link.]]></string> + <string name="if_you_cannot_meet_in_person_scan_QR_in_video_call_or_ask_for_invitation_link"><![CDATA[Se você não puder encontrar pessoalmente, você pode <b>escanear o QR code na video chamada</b> ou seu contato pode compartilhar um link de convite.]]></string> <string name="network_disable_socks_info">Se você confirmar, os servidores de mensagens poderão ver seu endereço IP e seu provedor - e quais servidores você está se conectando.</string> <string name="image_descr">Imagem</string> <string name="if_you_received_simplex_invitation_link_you_can_open_in_browser">Se você recebeu o link de convite SimpleX Chat, você pode abri-lo em seu navegador:</string> - <string name="image_saved">Imagem salva na galeria</string> + <string name="image_saved">Imagem salva na Galeria</string> <string name="description_via_group_link_incognito">anônimo via link do grupo</string> <string name="incoming_video_call">Chamada de vídeo recebida</string> - <string name="turn_off_battery_optimization"><![CDATA[Para usá-lo, por favor <b>desative a otimização da bateria</b> para SimpleX na próxima caixa de diálogo. Caso contrário, as notificações serão desativadas.]]></string> + <string name="turn_off_battery_optimization"><![CDATA[Para usá-lo, por favor <b>permite que o SimpleX funcione em segundo plano</b> na próxima caixa de diálogo. Caso contrário, as notificações serão desabilitadas.]]></string> <string name="share_one_time_link">Gerar um link de convite de uso único</string> <string name="file_not_found">Arquivo não encontrado</string> <string name="if_you_choose_to_reject_the_sender_will_not_be_notified">Se você optar por rejeitar o remetente NÃO será notificado.</string> @@ -407,23 +407,23 @@ <string name="icon_descr_flip_camera">Vire a câmera</string> <string name="icon_descr_hang_up">Desligar</string> <string name="settings_section_title_incognito">Modo anônimo</string> - <string name="initial_member_role">Função inicial</string> + <string name="initial_member_role">Cargo inicial</string> <string name="snd_group_event_group_profile_updated">perfil do grupo atualizado</string> <string name="group_member_status_group_deleted">Grupo excluído</string> <string name="incognito_info_protects">O modo Incognito protege sua privacidade usando um novo perfil aleatório para cada contato.</string> - <string name="group_members_can_delete">Os membros do grupo podem excluir mensagens enviadas de forma irreversível.</string> + <string name="group_members_can_delete">Os membros do grupo podem excluir mensagens enviadas de forma irreversível. (24 horas)</string> <string name="ttl_w">%dsemana</string> <string name="v4_3_improved_server_configuration">Configuração de servidor aprimorada</string> <string name="v4_4_french_interface">Interface francesa</string> <string name="callstate_ended">terminou</string> - <string name="allow_accepting_calls_from_lock_screen">Ative as chamadas pela tela de bloqueio nas Configurações.</string> + <string name="allow_accepting_calls_from_lock_screen">Ative as chamadas pela tela de bloqueio nas configurações.</string> <string name="files_and_media_section">Arquivos & mídia</string> <string name="error_updating_link_for_group">Erro ao atualizar o link do grupo</string> <string name="group_invitation_expired">O convite do grupo expirou</string> <string name="file_will_be_received_when_contact_is_online">O arquivo será recebido quando seu contato estiver online, aguarde ou verifique mais tarde!</string> <string name="group_profile_is_stored_on_members_devices">O perfil do grupo é armazenado nos dispositivos dos membros, não nos servidores.</string> <string name="icon_descr_help">ajuda</string> - <string name="how_simplex_works">Como SimpleX funciona</string> + <string name="how_simplex_works">Como o SimpleX funciona</string> <string name="enter_one_ICE_server_per_line">Servidores ICE (um por linha)</string> <string name="ignore">Ignorar</string> <string name="image_will_be_received_when_contact_is_online">A imagem será recebida quando seu contato estiver online, aguarde ou verifique mais tarde!</string> @@ -431,52 +431,52 @@ <string name="receiving_via">Recebendo via</string> <string name="network_status">Status da conexão</string> <string name="network_option_seconds_label">seg</string> - <string name="incognito_info_allows">Permite ter várias conexões anônimas sem nenhum dado compartilhado entre elas em um único perfil de chat.</string> + <string name="incognito_info_allows">Permite ter várias conexões anônimas sem nenhum dado compartilhado entre elas em um único perfil de bate-papo.</string> <string name="chat_preferences_yes">Sim</string> <string name="profile_will_be_sent_to_contact_sending_link">Seu perfil será enviado para o contato do qual você recebeu esse link.</string> <string name="accept_feature_set_1_day">Definir 1 dia</string> <string name="thousand_abbreviation">k</string> - <string name="you_will_join_group">Você se juntará a um grupo ao qual este link se refere e se conectará aos membros do seu grupo.</string> + <string name="you_will_join_group">Você se conectará a todos os membros do grupo.</string> <string name="marked_deleted_description">marcado como excluído</string> <string name="sending_files_not_yet_supported">o envio de arquivos ainda não é suportado</string> <string name="prohibit_sending_voice_messages">Proibir o envio de mensagens de voz.</string> <string name="display_name_invited_to_connect">convidado à conectar</string> <string name="description_you_shared_one_time_link_incognito">você compartilhou um link anônimo de uso único</string> <string name="simplex_link_mode">Links SimpleX</string> - <string name="contact_developers">Por favor, atualize o app e contate os desenvolvedores .</string> + <string name="contact_developers">Por favor, atualize o app e contate os desenvolvedores.</string> <string name="error_smp_test_server_auth">O servidor requer autorização para criar filas, verifique a senha</string> <string name="reveal_verb">Revelar</string> <string name="icon_descr_server_status_pending">Pendente</string> - <string name="prohibit_direct_messages">Proibir o envio de DMs para membros.</string> + <string name="prohibit_direct_messages">Proibir o envio de mensagens diretas para membros.</string> <string name="scan_QR_code">Escanear QR Code</string> <string name="reject_contact_button">Rejeitar</string> <string name="feature_offered_item">ofereceu %s</string> <string name="icon_descr_address">Endereço SimpleX</string> <string name="feature_offered_item_with_param">ofereceu %s: %2s</string> <string name="new_in_version">Novo em %s</string> - <string name="send_us_an_email">Envie-nos um e-mail</string> + <string name="send_us_an_email">Envie-nos um email</string> <string name="smp_servers_scan_qr">Escanear QR code do servidor</string> <string name="your_SMP_servers">Seus servidores SMP</string> <string name="chat_item_ttl_none">nunca</string> <string name="restore_database_alert_title">Restaurar o backup do banco de dados\?</string> <string name="moderated_description">moderado</string> <string name="sender_cancelled_file_transfer">O remetente cancelou a transferência de arquivos.</string> - <string name="network_error_desc">Por favor, cheque sua conexão com a rede com%1$s e tente de novo.</string> + <string name="network_error_desc">Por favor, cheque sua conexão com a rede com %1$s e tente de novo.</string> <string name="simplex_service_notification_text">Recebendo mensagens…</string> - <string name="large_file">Aruivo grande!</string> + <string name="large_file">Arquivo grande!</string> <string name="mark_read">Marcado como lido</string> <string name="you_invited_a_contact">Você convidou seu contato</string> - <string name="invalid_QR_code">Código QR inválido</string> + <string name="invalid_QR_code">QR code inválido</string> <string name="icon_descr_more_button">Mais</string> <string name="you_will_be_connected_when_group_host_device_is_online">Você será conectado ao grupo quando o dispositivo do host do grupo estiver online, por favor aguarde ou verifique mais tarde!</string> <string name="this_string_is_not_a_connection_link">Essa string não é um link de conexão!</string> <string name="network_use_onion_hosts_prefer">Quando disponível</string> - <string name="app_version_code">Build do app: %s</string> + <string name="app_version_code">Compilação do aplicativo: %s</string> <string name="save_and_notify_contact">Salvar e notificar contato</string> <string name="callstate_received_answer">resposta recebida…</string> <string name="read_more_in_github">Leia mais no nosso repositório do GitHub.</string> - <string name="paste_the_link_you_received">Colar link recebido</string> - <string name="onboarding_notifications_mode_off">Quando o app está executando</string> + <string name="paste_the_link_you_received">Cole o link que você recebeu</string> + <string name="onboarding_notifications_mode_off">Quando o aplicativo está em execução</string> <string name="onboarding_notifications_mode_periodic">Periódico</string> <string name="your_calls">Suas chamadas</string> <string name="old_database_archive">Arquivo de banco de dados antigo</string> @@ -494,9 +494,9 @@ <string name="your_privacy">Sua privacidade</string> <string name="join_group_question">Juntar-se ao grupo\?</string> <string name="leave_group_button">Sair</string> - <string name="failed_to_create_user_duplicate_desc">Você já possui um perfil de chat com o mesmo nome. Por favor escolha outro nome.</string> + <string name="failed_to_create_user_duplicate_desc">Você já possui um perfil de bate-papo com o mesmo nome. Por favor escolha outro nome.</string> <string name="please_check_correct_link_and_maybe_ask_for_a_new_one">Por favor, cheque se você usou o link correto ou peça ao seu contato para enviar outro.</string> - <string name="auth_open_chat_console">Abrir console de chat</string> + <string name="auth_open_chat_console">Abrir console de bate-papo</string> <string name="group_preview_join_as">juntar-se como %s</string> <string name="ask_your_contact_to_enable_voice">Por favor, peça ao seu contato para ativar o envio de mensagens de voz.</string> <string name="ok">OK</string> @@ -506,25 +506,25 @@ <string name="icon_descr_call_rejected">Chamada rejeitada</string> <string name="restore_database">Restaurar o backup do banco de dados</string> <string name="section_title_for_console">PARA CONSOLE</string> - <string name="run_chat_section">EXECUTAR CHAT</string> + <string name="run_chat_section">EXECUTAR BATE-PAPO</string> <string name="stop_chat_confirmation">Parar</string> <string name="set_password_to_export">Definir senha para exportar</string> <string name="restart_the_app_to_use_imported_chat_database">Reinicie o aplicativo para usar o banco de dados do chat importado.</string> - <string name="restart_the_app_to_create_a_new_chat_profile">Reinicie o app para criar um novo perfil de chat.</string> + <string name="restart_the_app_to_create_a_new_chat_profile">Reinicie o aplicativo para criar um novo perfil de chat.</string> <string name="delete_files_and_media_desc">Essa ação não pode ser desfeita - todos os arquivos e mídias recebidos e enviados serão excluídos. Imagens de baixa resolução permanecerão.</string> - <string name="you_must_use_the_most_recent_version_of_database">Você deve usar a versão mais recente de seu banco de dados de chat SOMENTE em um dispositivo, caso contrário, você pode parar de receber as mensagens de alguns contatos.</string> + <string name="you_must_use_the_most_recent_version_of_database">Você deve usar a versão mais recente de seu banco de dados de bate-papo SOMENTE em um dispositivo, caso contrário, você pode parar de receber as mensagens de alguns contatos.</string> <string name="no_received_app_files">Sem arquivos enviados ou recebidos</string> <string name="messages_section_title">Mensagens</string> <string name="messages_section_description">Esta configuração aplica-se às mensagens no seu perfil de chat atual</string> <string name="keychain_error">erro na Keychain</string> - <string name="store_passphrase_securely_without_recover">Por favor, guarde a senha em um local seguro, você não poderá acessar o chat se perdê-lo.</string> + <string name="store_passphrase_securely_without_recover">Por favor, guarde a senha em um local seguro, você não poderá acessar o bate-papo se perdê-lo.</string> <string name="store_passphrase_securely">Guarde a senha em um local seguro, você NÃO poderá alterá-la se a perder.</string> <string name="restore_database_alert_confirm">Restaurar</string> <string name="restore_database_alert_desc">Por favor, digite a senha antiga depois de recuperar o backup do banco de dados. Essa ação não pode ser desfeita.</string> <string name="wrong_passphrase_title">Senha incorreta</string> - <string name="you_can_start_chat_via_setting_or_by_restarting_the_app">Você pode iniciar o chat via Configurações / Banco de dados ou reiniciando o aplicativo.</string> + <string name="you_can_start_chat_via_setting_or_by_restarting_the_app">Você pode iniciar o bate-papo via Configurações / Banco de dados ou reiniciando o aplicativo.</string> <string name="alert_title_group_invitation_expired">Convite expirado!</string> - <string name="you_will_stop_receiving_messages_from_this_group_chat_history_will_be_preserved">Você deixará de receber mensagens deste grupo. O histórico do chat será preservado.</string> + <string name="you_will_stop_receiving_messages_from_this_group_chat_history_will_be_preserved">Você deixará de receber mensagens deste grupo. O histórico do bate-papo será preservado.</string> <string name="rcv_group_event_user_deleted">removeu você</string> <string name="rcv_group_event_member_added">convidado%1$s</string> <string name="snd_conn_event_switch_queue_phase_completed_for_member">você alterou o endereço para %s</string> @@ -532,7 +532,7 @@ <string name="group_member_role_member">membro</string> <string name="button_leave_group">Sair do grupo</string> <string name="group_info_section_title_num_members">%1$s MEMBROS</string> - <string name="group_info_member_you">você%1$s</string> + <string name="group_info_member_you">você: %1$s</string> <string name="info_row_local_name">Nome local</string> <string name="save_group_profile">Salvar perfil do grupo</string> <string name="network_option_ping_interval">Intervalo de PING</string> @@ -541,7 +541,7 @@ <string name="users_delete_with_connections">Conexões de servidor e perfil</string> <string name="your_preferences">Suas preferências</string> <string name="set_group_preferences">Definir preferências de grupo</string> - <string name="only_you_can_delete_messages">Somente você pode excluir irreversivelmente as mensagens (seu contato pode marcá-las para exclusão).</string> + <string name="only_you_can_delete_messages">Somente você pode excluir irreversivelmente as mensagens (seu contato pode marcá-las para exclusão). (24 horas)</string> <string name="message_deletion_prohibited_in_chat">A exclusão irreversível de mensagens é proibida neste grupo.</string> <string name="v4_4_live_messages_desc">Os destinatários vêem as atualizações conforme você as digita.</string> <string name="v4_5_reduced_battery_usage">Uso da bateria reduzido</string> @@ -560,11 +560,11 @@ <string name="sender_may_have_deleted_the_connection_request">O remetente pode ter excluído a solicitação de conexão.</string> <string name="periodic_notifications_disabled">Notificações periódicas estão desativadas!</string> <string name="service_notifications_disabled">As notificações instantâneas estão desativadas!</string> - <string name="to_preserve_privacy_simplex_has_background_service_instead_of_push_notifications_it_uses_a_few_pc_battery"><![CDATA[Para preservar sua privacidade, em vez de notificações push, o aplicativo tem um<b>SimpleXserviço em segundo plano</b> - ele usa uma porcentagem da bateria por dia.]]></string> + <string name="to_preserve_privacy_simplex_has_background_service_instead_of_push_notifications_it_uses_a_few_pc_battery"><![CDATA[Para preservar sua privacidade, em vez de notificações push, o aplicativo tem um<b>serviço em segundo plano SimpleX</b> - ele usa uma porcentagem da bateria por dia.]]></string> <string name="notifications_mode_off">Executa quando o aplicativo está aberto</string> <string name="icon_descr_sent_msg_status_sent">enviado</string> <string name="icon_descr_sent_msg_status_send_failed">o envio falhou</string> - <string name="your_chats">Chats</string> + <string name="your_chats">Bate-papos</string> <string name="paste_button">Colar</string> <string name="one_time_link">Link de convite de uso único</string> <string name="chat_with_the_founder">Enviar perguntas e idéias</string> @@ -577,16 +577,16 @@ <string name="join_group_incognito_button">Entrar como anônimo</string> <string name="icon_descr_add_members">Convidar membros</string> <string name="rcv_group_event_invited_via_your_group_link">convidado via seu link de grupo</string> - <string name="snd_group_event_changed_role_for_yourself">você alterou sua função para %s</string> - <string name="snd_group_event_changed_member_role">você mudou a função de %s para %s</string> - <string name="new_member_role">Nova função de membro</string> + <string name="snd_group_event_changed_role_for_yourself">você alterou seu cargo para %s</string> + <string name="snd_group_event_changed_member_role">você mudou o cargo de %s para %s</string> + <string name="new_member_role">Novo cargo de membro</string> <string name="remove_member_confirmation">Remover</string> <string name="member_info_section_title_member">MEMBRO</string> <string name="member_will_be_removed_from_group_cannot_be_undone">O membro será removido do grupo - isso não pode ser desfeito!</string> - <string name="role_in_group">Função</string> + <string name="role_in_group">Cargo</string> <string name="sending_via">Enviando via</string> <string name="prohibit_sending_disappearing_messages">Proibir o envio de mensagens temporárias.</string> - <string name="message_deletion_prohibited">A exclusão irreversível de mensagens é proibida neste chat.</string> + <string name="message_deletion_prohibited">A exclusão irreversível de mensagens é proibida neste bate-papo.</string> <string name="prohibit_sending_voice">Proibir o envio de mensagens de voz.</string> <string name="v4_3_voice_messages_desc">No máximo 40 segundos, recebido instantaneamemte.</string> <string name="observer_cant_send_message_title">Você não pode enviar mensagens!</string> @@ -596,12 +596,12 @@ <string name="smp_servers_preset_address">Endereço do servidor pré-definido</string> <string name="many_people_asked_how_can_it_deliver"><![CDATA[Muitos perguntaram:<i> se SimpleX não tem identificadores de usuários, como ele pode mandar mensagens\?</i>]]></string> <string name="reject">Rejeitar</string> - <string name="integrity_msg_skipped">%1$d mensagens ignoradas</string> - <string name="protect_app_screen">Proteger a tela do app</string> + <string name="integrity_msg_skipped">%1$d mensagem(s) ignorada(s)</string> + <string name="protect_app_screen">Proteger a tela do aplicativo</string> <string name="send_link_previews">Enviar prévias de links</string> <string name="privacy_and_security">Privacidade e segurança</string> <string name="join_group_button">Junte-se</string> - <string name="you_can_share_group_link_anybody_will_be_able_to_connect">Você pode compartilhar um link ou um código QR - qualquer um poderá entrar no grupo. Você não perderá membros do grupo se você deletá-los mais tarde.</string> + <string name="you_can_share_group_link_anybody_will_be_able_to_connect">Você pode compartilhar um link ou um QR code - qualquer um poderá entrar no grupo. Você não perderá membros do grupo se você deletá-los mais tarde.</string> <string name="users_delete_data_only">Somente dados de perfil local</string> <string name="only_you_can_send_disappearing">Somente você pode enviar mensagens temporárias.</string> <string name="only_your_contact_can_send_disappearing">Somente seu contato pode enviar mensagens temporárias.</string> @@ -618,7 +618,7 @@ <string name="reply_verb">Responder</string> <string name="auth_log_in_using_credential">Inicie sessão com a sua credencial</string> <string name="message_delivery_error_title">Erro na entrega da mensagem</string> - <string name="message_delivery_error_desc">Porvavelmente esse contato excluiu a conexão com você.</string> + <string name="message_delivery_error_desc">Provavelmente esse contato excluiu a conexão com você.</string> <string name="save_verb">Salvar</string> <string name="delete_message_cannot_be_undone_warning">A mensagem será excluída - isso não pode ser desfeito!</string> <string name="delete_message_mark_deleted_warning">A mensagem será marcada para exclusão. O(s) destinatário(s) poderá(ão) revelar esta mensagem.</string> @@ -627,7 +627,7 @@ <string name="images_limit_desc">Apenas 10 imagens podem ser enviadas ao mesmo tempo</string> <string name="notifications">Notificações</string> <string name="text_field_set_contact_placeholder">Definir nome do contato…</string> - <string name="switch_receiving_address_desc">O endereço de recebimento será alterado para um servidor diferente. A mudança de endereço terminará após o remetente entrar on-line.</string> + <string name="switch_receiving_address_desc">O endereço de recebimento será alterado para um servidor diferente. A mudança de endereço terminará após o remetente ficar online.</string> <string name="send_verb">Enviar</string> <string name="reset_verb">Redefinir</string> <string name="live_message">Mensagem ao vivo!</string> @@ -639,17 +639,18 @@ <string name="mute_chat">Mutar</string> <string name="set_contact_name">Definir nome do contato</string> <string name="invalid_contact_link">Link inválido!</string> - <string name="this_QR_code_is_not_a_link">Esse código QR não é um link!</string> - <string name="your_chat_profile_will_be_sent_to_your_contact">Seu perfil de chat será enviado para seu -\ncontato</string> + <string name="this_QR_code_is_not_a_link">Esse QR code não é um link!</string> + <string name="your_chat_profile_will_be_sent_to_your_contact">Seu perfil de bate-papo será enviado +\npara seu contato</string> <string name="you_will_be_connected_when_your_contacts_device_is_online">Você será conectado quando o dispositivo do seu contato estiver online, aguarde ou verifique mais tarde!</string> <string name="how_to">Como</string> <string name="smp_servers_test_failed">Teste do servidor falhou!</string> <string name="network_use_onion_hosts_no_desc">Onion hosts não serão usados.</string> - <string name="network_use_onion_hosts_required_desc">Os hosts Onion serão necessários para a conexão.</string> + <string name="network_use_onion_hosts_required_desc">Os hosts Onion serão necessários para a conexão. +\nAtenção: você não será capaz de se conectar aos servidores sem um endereço .onion</string> <string name="network_use_onion_hosts_required_desc_in_alert">Os hosts Onion serão necessários para a conexão.</string> <string name="core_version">Versão principal: v%s</string> - <string name="read_more_in_github_with_link"><![CDATA[Leia mais no nosso<font color="#0088ff"> repositório do GitHub</font>.]]></string> + <string name="read_more_in_github_with_link"><![CDATA[Leia mais no nosso <font color="#0088ff">repositório do GitHub</font>.]]></string> <string name="onboarding_notifications_mode_subtitle">Pode ser mudado mais tarde via configurações.</string> <string name="contact_wants_to_connect_via_call">%1$s quer se conectar com você via</string> <string name="status_no_e2e_encryption">sem criptografia ponta-a-ponta</string> @@ -662,21 +663,21 @@ <string name="remove_passphrase_from_keychain">Remover senha da Keystore\?</string> <string name="new_passphrase">Nova senha…</string> <string name="database_restore_error">Erro na restauração do banco de dados</string> - <string name="open_chat">Abrir chat</string> - <string name="save_passphrase_and_open_chat">Salvar senha e abrir chat</string> - <string name="rcv_group_event_member_deleted">removido%1$s</string> + <string name="open_chat">Abrir bate-papo</string> + <string name="save_passphrase_and_open_chat">Salvar senha e abrir bate-papo</string> + <string name="rcv_group_event_member_deleted">removido %1$s</string> <string name="network_option_protocol_timeout">Tempo limite do protocolo</string> <string name="feature_received_prohibited">recebido, proibido</string> <string name="user_hide">Ocultar</string> <string name="enter_password_to_show">Digite a senha na pesquisa</string> <string name="dont_show_again">Não mostrar novamente</string> - <string name="only_your_contact_can_delete">Somente seu contato pode excluir irreversivelmente mensagens (você pode marcá-las para exclusão).</string> + <string name="only_your_contact_can_delete">Somente seu contato pode excluir irreversivelmente mensagens (você pode marcá-las para exclusão). (24 horas)</string> <string name="v4_6_chinese_spanish_interface">Interface chinesa e espanhola</string> <string name="v4_6_reduced_battery_usage">Maior redução no uso da bateria</string> <string name="v4_6_reduced_battery_usage_descr">Mais melhorias chegarão em breve!</string> <string name="settings_section_title_you">VOCÊ</string> <string name="settings_section_title_messages">MENSAGENS E ARQUIVOS</string> - <string name="your_chat_database">Seu banco de dados de chat</string> + <string name="your_chat_database">Seu banco de dados de bate-papo</string> <string name="snd_group_event_member_deleted">Você removeu %1$s</string> <string name="group_member_status_removed">removido</string> <string name="group_member_status_left">saiu</string> @@ -688,7 +689,7 @@ <string name="remove_passphrase">Remover</string> <string name="wrong_passphrase">Senha do banco de dados incorreta</string> <string name="save_archive">Salvar arquivo</string> - <string name="restore_passphrase_not_found_desc">Senha não encontrada na Keystore, por favor digite-a manualmente. Isso pode ter ocorrido se você recuperou os dados do app usando uma ferramenta de backup. Se esse não é o caso, por favor contate os desenvolvedores.</string> + <string name="restore_passphrase_not_found_desc">Senha não encontrada na Keystore, por favor digite-a manualmente. Isso pode ter ocorrido se você recuperou os dados do app usando uma ferramenta de backup. Se esse não é o caso, por favor, contate os desenvolvedores.</string> <string name="youve_accepted_group_invitation_connecting_to_inviting_group_member">Você se juntou a este grupo. Conectando-se a um membro convidado do grupo.</string> <string name="leave_group_question">Sair do grupo\?</string> <string name="alert_message_no_group">Este grupo não existe mais.</string> @@ -697,14 +698,14 @@ <string name="chat_preferences_no">não</string> <string name="v4_6_group_moderation_descr">Agora administradores podem: \n- excluir mensagens de membros. -\n- desativar membros (função de \"observador\")</string> +\n- desativar membros (cargo de \"observador\")</string> <string name="v4_6_group_moderation">Moderação do grupo</string> <string name="v4_6_group_welcome_message">Mensagem de boas-vindas do grupo</string> <string name="database_downgrade">Desatualizar banco de dados</string> <string name="mtr_error_different">migração diferente no aplicativo/banco de dados: %s / %s</string> <string name="invite_to_group_button">Convidar para o grupo</string> <string name="no_contacts_to_add">Sem contatos para adicionar</string> - <string name="member_role_will_be_changed_with_notification">A função será alterada para \"%s\". Todos no grupo serão notificados.</string> + <string name="member_role_will_be_changed_with_notification">O cargo será alterada para \"%s\". Todos no grupo serão notificados.</string> <string name="user_mute">Mutar</string> <string name="only_you_can_send_voice">Somente você pode enviar mensagens de voz.</string> <string name="only_your_contact_can_send_voice">Somente seu contato pode enviar mensagens de voz.</string> @@ -713,7 +714,7 @@ <string name="v4_3_irreversible_message_deletion">Exclusão irreversível de mensagens</string> <string name="v4_4_disappearing_messages_desc">Mensagens enviadas serão excluídas depois do tempo definido.</string> <string name="v4_4_live_messages">Mensagens ao vivo</string> - <string name="v4_5_multiple_chat_profiles">Vários perfis de chat</string> + <string name="v4_5_multiple_chat_profiles">Vários perfis de bate-papo</string> <string name="v4_6_hidden_chat_profiles">Perfis de chat ocultos</string> <string name="v4_5_message_draft">Rascunho de mensagem</string> <string name="v4_5_message_draft_descr">Preservar o último rascunho, com anexos.</string> @@ -726,7 +727,7 @@ <string name="to_verify_compare">Para verificar a criptografia de ponta-a-ponta com seu contato, compare (ou escaneie) o código em seus dispositivos.</string> <string name="smp_save_servers_question">Salvar servidores\?</string> <string name="smp_servers_per_user">Os servidores para novas conexões do seu perfil de chat atual</string> - <string name="rate_the_app">Avalie o app</string> + <string name="rate_the_app">Avalie o aplicativo</string> <string name="developer_options">IDs de banco de dados e opção de isolamento de transporte.</string> <string name="profile_is_only_shared_with_your_contacts">O perfil é compartilhado apenas com seus contatos.</string> <string name="secret_text">segredo</string> @@ -737,7 +738,7 @@ <string name="rcv_group_event_member_left">saiu</string> <string name="incompatible_database_version">Versão do banco de dados incompatível</string> <string name="button_remove_member">Remover membro</string> - <string name="group_main_profile_sent">Seu perfil de chat será enviado aos membros do grupo</string> + <string name="group_main_profile_sent">Seu perfil de bate-papo será enviado aos membros do grupo</string> <string name="make_profile_private">Torne o perfil privado!</string> <string name="v4_2_security_assessment">Avaliação de segurança</string> <string name="v4_5_multiple_chat_profiles_descr">Nomes diferentes, avatares e isolamento de transporte.</string> @@ -748,7 +749,7 @@ <string name="save_profile_password">Salvar senha do perfil</string> <string name="icon_descr_call_missed">Chamada perdida</string> <string name="save_passphrase_in_keychain">Salvar senha na Keystore</string> - <string name="database_is_not_encrypted">Seu banco de dados de chat não está criptografado - defina uma senha para protegê-lo.</string> + <string name="database_is_not_encrypted">Seu banco de dados de bate-papo não está criptografado - defina uma senha para protegê-lo.</string> <string name="group_invitation_item_description">convite para o grupo%1$s</string> <string name="alert_title_cant_invite_contacts_descr">Você esta usando um perfil anônimo para este grupo - para evitar compartilhar seu perfil principal, convidar contatos não é permitido</string> <string name="invalid_migration_confirmation">Confirmação de migração inválida</string> @@ -758,7 +759,7 @@ <string name="snd_group_event_user_left">você saiu</string> <string name="whats_new">Novidades</string> <string name="v4_6_audio_video_calls">Chamadas de áudio e vídeo</string> - <string name="v4_6_hidden_chat_profiles_descr">Proteja seus perfis de chat com uma senha!</string> + <string name="v4_6_hidden_chat_profiles_descr">Proteja seus perfis de bate-papo com uma senha!</string> <string name="this_text_is_available_in_settings">Este texto está disponível nas configurações</string> <string name="scan_code">Escanear código</string> <string name="network_use_onion_hosts_no_desc_in_alert">Hosts Onion não serão usados.</string> @@ -778,7 +779,7 @@ <string name="delete_profile">Excluir perfil</string> <string name="profile_password">Senha de perfil</string> <string name="videos_limit_title">Excesso de vídeos!</string> - <string name="icon_descr_video_asked_to_receive">Solicitou receber o vídeo</string> + <string name="icon_descr_video_asked_to_receive">Pediu para receber o vídeo</string> <string name="videos_limit_desc">Apenas 10 vídeos podem ser enviados ao mesmo tempo</string> <string name="contact_sent_large_file">Seu contato enviou um arquivo maior que o tamanho máximo permitido (%1$s).</string> <string name="file_will_be_received_when_contact_completes_uploading">O arquivo será recebido quando seu contato concluir o upload.</string> @@ -799,7 +800,7 @@ <string name="add_contact_or_create_group">Começar novo chat</string> <string name="smp_servers_use_server">Usar servidor</string> <string name="you_need_to_allow_to_send_voice">Você precisa permitir que seu contato envie mensagens de voz para poder enviá-las também.</string> - <string name="your_chat_profiles">Seu perfil de chat</string> + <string name="your_chat_profiles">Seu perfil de bate-papo</string> <string name="smp_servers_preset_server">Servidor pré-definido</string> <string name="scan_code_from_contacts_app">Escaneie o código de segurança do aplicativo do seu contato.</string> <string name="icon_descr_send_message">Enviar mensagem</string> @@ -813,21 +814,22 @@ <string name="error_saving_user_password">Erro ao salvar a senha do usuário</string> <string name="hide_profile">Ocultar perfil</string> <string name="callstate_received_confirmation">confirmação recebida…</string> - <string name="relay_server_protects_ip">O servidor relay protege seu endereço IP, mas pode observar a duração da chamada.</string> + <string name="relay_server_protects_ip">O servidor de relay protege seu endereço IP, mas pode observar a duração da chamada.</string> <string name="settings_section_title_experimenta">EXPERIMENTAL</string> <string name="snd_conn_event_switch_queue_phase_completed">você alterou o endereço</string> <string name="database_upgrade">Atualização do banco de dados</string> - <string name="member_role_will_be_changed_with_invitation">A função será alterada para \"%s\". O membro receberá um novo convite.</string> + <string name="member_role_will_be_changed_with_invitation">O cargo será alterado para \"%s\". O membro receberá um novo convite.</string> <string name="only_group_owners_can_change_prefs">Somente os proprietários do grupo podem alterar as preferências do grupo.</string> <string name="button_add_welcome_message">Adicionar mensagem de boas-vindas</string> <string name="group_welcome_title">Mensagem de boas-vindas</string> - <string name="button_send_direct_message">Enviar DM</string> + <string name="button_send_direct_message">Enviar mensagem direta</string> <string name="muted_when_inactive">Mutado quando inativo!</string> <string name="you_will_still_receive_calls_and_ntfs">Você ainda receberá chamadas e notificações de perfis silenciados quando eles estiverem ativos.</string> <string name="delete_chat_profile">Excluir perfil de chat</string> <string name="save_servers_button">Salvar</string> <string name="star_on_github">Estrela no GitHub</string> - <string name="alert_text_connection_pending_they_need_to_be_online_can_delete_and_retry">Seu contato precisa estar online para completar a conexão. Você pode cancelar esta conexão e remover o contato (e tentar mais tarde com um novo link).</string> + <string name="alert_text_connection_pending_they_need_to_be_online_can_delete_and_retry">Seu contato precisa estar online para completar a conexão. +\nVocê pode cancelar esta conexão e remover o contato (e tentar mais tarde com um novo link).</string> <string name="app_name">SimpleX</string> <string name="only_group_owners_can_enable_voice">Somente o proprietários de grupo podem ativar mensagens de voz</string> <string name="description_you_shared_one_time_link">você compartilhou um link de uso único</string> @@ -845,30 +847,30 @@ <string name="share_invitation_link">Compartilhar link de uso único</string> <string name="network_use_onion_hosts">Usar hosts .onion</string> <string name="video_call_no_encryption">chamada de vídeo (não criptografada ponta-a-ponta)</string> - <string name="stop_chat_question">Parar chat\?</string> + <string name="stop_chat_question">Parar bate-papo?</string> <string name="simplex_link_mode_browser">Pelo navegador</string> - <string name="you_are_already_connected_to_vName_via_this_link">Você já está conectado a%1$s.</string> + <string name="you_are_already_connected_to_vName_via_this_link">Você já está conectado a %1$s.</string> <string name="database_initialization_error_desc">O banco de dados não está funcionando corretamente. Toque para saber mais</string> - <string name="waiting_for_image">Aguardando imagem</string> - <string name="show_QR_code">Mostrar código QR</string> + <string name="waiting_for_image">Aguardando a imagem</string> + <string name="show_QR_code">Mostrar QR code</string> <string name="you_can_also_connect_by_clicking_the_link"><![CDATA[Você também pode se conectar clicando no link. Se abrir no navegador, clique em <b>Abrir no aplicativo móvel</b>.]]></string> <string name="smp_servers_test_servers">Servidores de teste</string> <string name="update_network_session_mode_question">Atualizar o modo de isolamento de transporte\?</string> <string name="icon_descr_video_on">Vídeo ativado</string> - <string name="waiting_for_file">Aguardando arquivo</string> + <string name="waiting_for_file">Aguardando o arquivo</string> <string name="chat_help_tap_button">Toque no botão</string> - <string name="to_start_a_new_chat_help_header">Para começar um novo chat</string> + <string name="to_start_a_new_chat_help_header">Para começar um novo bate-papo</string> <string name="la_notice_turn_on">Ligar</string> - <string name="welcome">Bem-vindo!</string> + <string name="welcome">Bem-vindo(a)!</string> <string name="next_generation_of_private_messaging">A próxima geração de mensageiros privados</string> <string name="settings_section_title_socks">PROXY SOCKS</string> <string name="database_backup_can_be_restored">A tentativa de alterar a senha do banco de dados não foi concluída.</string> - <string name="stop_chat_to_export_import_or_delete_chat_database">Pare o chat para exportar, importar ou excluir o banco de dados do chat. Você não poderá receber e enviar mensagens enquanto o chat estiver interrompido.</string> - <string name="stop_chat_to_enable_database_actions">Pare o chat para ativar ações no banco de dados.</string> + <string name="stop_chat_to_export_import_or_delete_chat_database">Pare o bate-papo para exportar, importar ou excluir o banco de dados do chat. Você não poderá receber e enviar mensagens enquanto o chat estiver interrompido.</string> + <string name="stop_chat_to_enable_database_actions">Pare o bate-papo para ativar ações no banco de dados.</string> <string name="chat_item_ttl_seconds">%s segundo(s)</string> <string name="unknown_database_error_with_info">Erro de banco de dados desconhecido: %s</string> <string name="unknown_error">Erro desconhecido</string> - <string name="group_invitation_tap_to_join">Toque para se juntar</string> + <string name="group_invitation_tap_to_join">Toque para juntar-se</string> <string name="group_invitation_tap_to_join_incognito">Toque para entrar no modo anônimo</string> <string name="you_are_invited_to_group">Você está convidado para o grupo</string> <string name="updating_settings_will_reconnect_client_to_all_servers">A atualização das configurações reconectará o cliente a todos os servidores.</string> @@ -885,15 +887,15 @@ <string name="error_smp_test_failed_at_step">O teste falhou na etapa %s.</string> <string name="notifications_mode_periodic">Inicia periodicamente</string> <string name="icon_descr_sent_msg_status_unauthorized_send">envio não autorizado</string> - <string name="tap_to_start_new_chat">Toque para iniciar um novo chat</string> - <string name="you_have_no_chats">Você não tem chats</string> + <string name="tap_to_start_new_chat">Toque para iniciar um novo bate-papo</string> + <string name="you_have_no_chats">Você não tem bate-papos</string> <string name="callstate_waiting_for_answer">aguardando resposta…</string> - <string name="your_current_chat_database_will_be_deleted_and_replaced_with_the_imported_one">Seu banco de dados de chat atual será EXCLUÍDO e SUBSTITUÍDO pelo importado. + <string name="your_current_chat_database_will_be_deleted_and_replaced_with_the_imported_one">Seu banco de dados de bate-papo atual será EXCLUÍDO e SUBSTITUÍDO pelo importado. \nEsta ação não pode ser desfeita - seu perfil, contatos, mensagens e arquivos serão perdidos de forma irreversível.</string> <string name="update_database_passphrase">Atualizar senha do banco de dados</string> <string name="rcv_group_event_updated_group_profile">perfil de grupo atualizado</string> <string name="switch_verb">Trocar</string> - <string name="group_is_decentralized">O grupo é totalmente descentralizado – é visível apenas para os membros.</string> + <string name="group_is_decentralized">Totalmente decentralizado - visível apenas para os membros.</string> <string name="you_are_observer">você é um observador</string> <string name="voice_message_with_duration">Mensagem de voz (%1$s)</string> <string name="share_link">Compartilhar link</string> @@ -910,12 +912,12 @@ <string name="notification_preview_mode_message_desc">Mostrar contato e mensagem</string> <string name="notification_preview_mode_contact_desc">Mostrar somente contato</string> <string name="share_verb">Compartilhar</string> - <string name="auth_stop_chat">Parar chat</string> + <string name="auth_stop_chat">Parar bate-papo</string> <string name="auth_unlock">Desbloquear</string> <string name="moderate_message_will_be_deleted_warning">A mensagem será excluída para todos os membros.</string> <string name="moderate_message_will_be_marked_warning">A mensagem será marcada como moderada para todos os membros.</string> <string name="share_image">Compartilhar mídia…</string> - <string name="icon_descr_waiting_for_image">Aguardando imagem</string> + <string name="icon_descr_waiting_for_image">Aguardando a imagem</string> <string name="share_file">Compartilhar arquivo…</string> <string name="image_decoding_exception_desc">A imagem não pode ser decodificada. Por favor, tente uma imagem diferente ou entre em contato com os desenvolvedores.</string> <string name="voice_message">Mensagem de voz</string> @@ -946,29 +948,29 @@ <string name="user_unhide">Mostrar</string> <string name="user_unmute">Desmutar</string> <string name="v4_3_voice_messages">Mensagens de voz</string> - <string name="you_can_connect_to_simplex_chat_founder"><![CDATA[Você pode <font color="#0088ff">se conectar aos desenvolvedores doSimpleX para fazer qualquer pergunta e receber atualizações</font>.]]></string> + <string name="you_can_connect_to_simplex_chat_founder"><![CDATA[Você pode <font color="#0088ff">se conectar aos desenvolvedores do SimpleX Chat para fazer qualquer pergunta e receber atualizações</font>.]]></string> <string name="connection_you_accepted_will_be_cancelled">A conexão que você aceitou será cancelada!</string> <string name="contact_you_shared_link_with_wont_be_able_to_connect">O contato com o qual você compartilhou este link NÃO será capaz de se conectar!</string> <string name="icon_descr_simplex_team">Equipe SimpleX</string> - <string name="use_simplex_chat_servers__question">Usar servidoresSimpleX\?</string> - <string name="using_simplex_chat_servers">Usando servidores SimpleX.</string> + <string name="use_simplex_chat_servers__question">Usar servidores SimpleX Chat?</string> + <string name="using_simplex_chat_servers">Usando servidores SimpleX Chat.</string> <string name="show_developer_options">Mostrar opções para desenvolvedores</string> <string name="v4_6_audio_video_calls_descr">Suporte bluetooth e outras melhorias.</string> - <string name="to_reveal_profile_enter_password">Para revelar seu perfil oculto, digite uma senha em um campo de busca em sua página de perfis de chat.</string> - <string name="upgrade_and_open_chat">Atualizar e abrir chat</string> - <string name="database_downgrade_warning">Aviso: você pode perder alguns dados!</string> + <string name="to_reveal_profile_enter_password">Para revelar seu perfil oculto, digite uma senha em um campo de busca em sua página de perfis de bate-papo.</string> + <string name="upgrade_and_open_chat">Atualizar e abrir bate-papo</string> + <string name="database_downgrade_warning">Atenção: você pode perder alguns dados!</string> <string name="you_rejected_group_invitation">Você rejeitou um convite de grupo</string> <string name="icon_descr_received_msg_status_unread">não lida</string> <string name="share_message">Compartilhar mensagem…</string> - <string name="personal_welcome">Bem-vindo%1$s!</string> + <string name="personal_welcome">Bem-vindo(a) %1$s!</string> <string name="group_preview_you_are_invited">você está convidado para o grupo</string> <string name="update_onion_hosts_settings_question">Atualizar configuração de hosts .onion\?</string> - <string name="use_chat">Usar chat</string> + <string name="use_chat">Usar bate-papo</string> <string name="voice_prohibited_in_this_chat">Mensagens de voz são proibidas neste chat.</string> <string name="video_descr">Vídeo</string> <string name="icon_descr_video_snd_complete">Vídeo enviado</string> - <string name="icon_descr_waiting_for_video">Aguardando vídeo</string> - <string name="waiting_for_video">Aguardando vídeo</string> + <string name="icon_descr_waiting_for_video">Aguardando o vídeo</string> + <string name="waiting_for_video">Aguardando o vídeo</string> <string name="verify_security_code">Verificar código de segurança</string> <string name="video_will_be_received_when_contact_completes_uploading">O vídeo será recebido quando seu contato concluir o upload.</string> <string name="video_will_be_received_when_contact_is_online">O vídeo será recebido quando seu contato estiver online, aguarde ou verifique mais tarde!</string> @@ -980,7 +982,7 @@ <string name="callstate_starting">iniciando…</string> <string name="callstate_waiting_for_confirmation">aguardando confirmação…</string> <string name="we_do_not_store_contacts_or_messages_on_servers">Não armazenamos nenhum dos seus contatos ou mensagens (uma vez entregues) nos servidores.</string> - <string name="alert_title_skipped_messages">Mensagens ignoradas</string> + <string name="alert_title_skipped_messages">Mensagens omitidas</string> <string name="tap_to_activate_profile">Toque para ativar o perfil.</string> <string name="unhide_chat_profile">Mostrar perfil de chat</string> <string name="unhide_profile">Mostrar perfil</string> @@ -990,36 +992,37 @@ <string name="smp_servers_your_server">Seu servidor</string> <string name="chat_lock">Bloqueio SimpleX</string> <string name="error_smp_test_certificate">Possivelmente, a impressão digital do certificado no endereço do servidor está incorreta</string> - <string name="you_sent_group_invitation">Você enviou convite de grupo</string> + <string name="you_sent_group_invitation">Você enviou um convite de grupo</string> <string name="incognito_random_profile">Seu perfil aleatório</string> <string name="auth_simplex_lock_turned_on">Bloqueio SimpleX ativado</string> <string name="your_simplex_contact_address">Seu endereço SimpleX</string> <string name="network_options_reset_to_defaults">Redefinir para os padrões</string> <string name="image_descr_link_preview">imagem de pré-visualização do link</string> - <string name="la_notice_to_protect_your_information_turn_on_simplex_lock_you_will_be_prompted_to_complete_authentication_before_this_feature_is_enabled">Para proteger suas informações, ative o bloqueio SimpleX. Você será solicitado a completar a autenticação antes que este recurso seja ativado.</string> - <string name="opensource_protocol_and_code_anybody_can_run_servers">Protocolo de código aberto – qualquer um pode executar os servidores.</string> + <string name="la_notice_to_protect_your_information_turn_on_simplex_lock_you_will_be_prompted_to_complete_authentication_before_this_feature_is_enabled">Para proteger suas informações, ative o bloqueio SimpleX. +\nVocê será solicitado a completar a autenticação antes que este recurso seja ativado.</string> + <string name="opensource_protocol_and_code_anybody_can_run_servers">Protocolo de código aberto – qualquer um pode hospedar os servidores.</string> <string name="theme_light">Claro</string> <string name="chat_preferences_contact_allows">O contato permite</string> <string name="chat_preferences_on">ativado</string> <string name="simplex_link_contact">Endereço de contato</string> - <string name="simplex_link_group">Link do grupo</string> - <string name="simplex_link_invitation">Convite de uso único</string> + <string name="simplex_link_group">Link do grupo SimpleX</string> + <string name="simplex_link_invitation">Convite de uso único SimpleX</string> <string name="mobile_tap_open_in_mobile_app_then_tap_connect_in_app"><![CDATA[📱 móvel: toque em <b>Abrir no aplicativo móvel</b> e toque em <b>Conectar</b> no aplicativo.]]></string> <string name="ntf_channel_calls">Chamadas</string> <string name="ntf_channel_messages">Mensagens</string> <string name="la_notice_title_simplex_lock">Bloqueio SimpleX</string> <string name="markdown_help">Ajuda com Markdown</string> <string name="onboarding_notifications_mode_service">Instantânea</string> - <string name="open_simplex_chat_to_accept_call">Abrao chat do SimpleX para aceitar a chamada</string> + <string name="open_simplex_chat_to_accept_call">Abra o bate-papo do SimpleX para aceitar a chamada</string> <string name="call_connection_via_relay">via relay</string> <string name="feature_off">desativado</string> - <string name="downgrade_and_open_chat">Desatualizar e abrir o chat</string> + <string name="downgrade_and_open_chat">Desatualizar e abrir o bate-papo</string> <string name="chat_preferences_off">desativado</string> - <string name="settings_section_title_support">APOIE SIMPLEX</string> + <string name="settings_section_title_support">APOIE SIMPLEX CHAT</string> <string name="enable_automatic_deletion_message">Esta ação não pode ser desfeita - as mensagens enviadas e recebidas antes do selecionado serão excluídas. Pode levar vários minutos.</string> <string name="confirm_database_upgrades">Confirme as atualizações do banco de dados</string> - <string name="only_client_devices_store_contacts_groups_e2e_encrypted_messages"><![CDATA[Perfis de usuário, contatos, grupos e mensagens enviadas com <b>criptografia de ponta-a-ponta</b> são armazenados somente no seu dispositivo.]]></string> - <string name="thank_you_for_installing_simplex">Obrigado por instalar SimpleX!</string> + <string name="only_client_devices_store_contacts_groups_e2e_encrypted_messages"><![CDATA[Somente o cliente dos dispositivos armazenam perfis de usuários, contatos, grupos e mensagens enviadas com <b>criptografia de ponta a ponta em duas camadas</b>.]]></string> + <string name="thank_you_for_installing_simplex">Obrigado por instalar o SimpleX Chat!</string> <string name="the_messaging_and_app_platform_protecting_your_privacy_and_security">A plataforma de mensagens que protege sua privacidade e segurança.</string> <string name="invite_prohibited_description">Você está tentando convidar um contato com quem compartilhou um perfil anônimo para o grupo no qual está usando seu perfil principal</string> <string name="you_control_servers_to_receive_your_contacts_to_send"><![CDATA[Você controla por meio de qual(is) servidor(es) <b>receber</b> as mensagens, seus contatos controlam os servidores que você usa para enviar mensagens.]]></string> @@ -1057,7 +1060,7 @@ <string name="network_socks_toggle_use_socks_proxy">Usar proxy SOCKS</string> <string name="host_verb">Hospedar</string> <string name="disable_onion_hosts_when_not_supported"><![CDATA[Definir <i>Usar hosts .onion</i> para não se o proxy SOCKS não oferecer suporte a eles.]]></string> - <string name="port_verb">Migrar</string> + <string name="port_verb">Porta</string> <string name="confirm_passcode">Confirmar senha</string> <string name="incorrect_passcode">Senha incorreta</string> <string name="lock_after">Bloquear após</string> @@ -1072,7 +1075,7 @@ <string name="authentication_cancelled">Autenticação cancelada</string> <string name="enable_lock">Habilitar bloqueio</string> <string name="passcode_changed">Senha alterada!</string> - <string name="you_can_turn_on_lock">Você pode ativar o bloqueio SimpleX via Configurações.</string> + <string name="you_can_turn_on_lock">Você pode ativar o bloqueio SimpleX via configurações.</string> <string name="alert_title_msg_bad_hash">Hash de mensagem incorreta</string> <string name="alert_text_msg_bad_hash">O hash da mensagem anterior é diferente.</string> <string name="alert_text_decryption_error_n_messages_failed_to_decrypt">%1$d descriptografia das mensagens falhou</string> @@ -1090,7 +1093,7 @@ <string name="stop_file__confirm">Parar</string> <string name="revoke_file__message">O arquivo será excluído dos servidores.</string> <string name="revoke_file__title">Revogar arquivo\?</string> - <string name="alert_text_decryption_error_too_many_skipped">%1$d mensagens ignoradas</string> + <string name="alert_text_decryption_error_too_many_skipped">%1$d mensagens ignoradas.</string> <string name="audio_video_calls">Chamadas de áudio/vídeo</string> <string name="calls_prohibited_with_this_contact">Chamadas de áudio/vídeo são proibidas.</string> <string name="available_in_v51">" @@ -1105,14 +1108,14 @@ <string name="v5_0_large_files_support_descr">Rápido e sem esperar até que o remetente esteja online!</string> <string name="v5_0_polish_interface">interface polonesa</string> <string name="v5_0_app_passcode_descr">Defina-o em vez da autenticação do sistema.</string> - <string name="v5_0_polish_interface_descr">Obrigado aos usuários – contribuam via Weblate!</string> - <string name="v5_0_large_files_support">Vídeos e arquivos de até 1gb</string> + <string name="v5_0_polish_interface_descr">Obrigado aos usuários – contribua via Weblate!</string> + <string name="v5_0_large_files_support">Vídeos e arquivos de até 1GB</string> <string name="gallery_image_button">Imagem</string> - <string name="decryption_error">erro de descriptografia</string> + <string name="decryption_error">Erro de descriptografia</string> <string name="revoke_file__confirm">Revogar</string> <string name="learn_more_about_address">Sobre o endereço SimpleX</string> <string name="color_secondary_variant">Secundária adicional</string> - <string name="color_primary_variant">Acento adicional</string> + <string name="color_primary_variant">Realçe adicional</string> <string name="one_time_link_short">Link de uso único</string> <string name="add_address_to_your_profile">Adicione o endereço ao seu perfil, para que seus contatos possam compartilhá-lo com outras pessoas. A atualização do perfil será enviada aos seus contatos.</string> <string name="create_address_and_let_people_connect">Crie um endereço para permitir que as pessoas se conectem com você.</string> @@ -1122,7 +1125,7 @@ <string name="address_section_title">Endereço</string> <string name="dark_theme">Tema escuro</string> <string name="color_background">Fundo</string> - <string name="all_your_contacts_will_remain_connected_update_sent">Todos os seus contactos permanecerão ligados. A atualização do perfil será enviada para seus contatos.</string> + <string name="all_your_contacts_will_remain_connected_update_sent">Todos os seus contatos permanecerão conectados. A atualização do perfil será enviada para seus contatos.</string> <string name="auto_accept_contact">Aceitação automática</string> <string name="customize_theme_title">Personalizar o tema</string> <string name="enter_welcome_message">Digite a mensagem de boas-vindas…</string> @@ -1132,7 +1135,7 @@ <string name="import_theme_error_desc">Certifique-se que o arquivo tenha a sintaxe YAML correta. Exporte o tema para ter um exemplo da estrutura do arquivo do tema.</string> <string name="export_theme">Exportar tema</string> <string name="import_theme_error">Erro ao importar tema</string> - <string name="color_surface">Menus e alertas</string> + <string name="color_surface">Menus & Alertas</string> <string name="color_received_message">Mensagem recebida</string> <string name="color_sent_message">Mensagem enviada</string> <string name="color_title">Título</string> @@ -1202,8 +1205,8 @@ <string name="info_row_updated_at">Registro atualizado em</string> <string name="share_text_database_id">ID do banco de dados: %d</string> <string name="share_text_deleted_at">Excluído em: %s</string> - <string name="info_row_disappears_at">Desaparece em</string> - <string name="share_text_disappears_at">Desaparece em: %s</string> + <string name="info_row_disappears_at">Desaparecerá</string> + <string name="share_text_disappears_at">Desaparecerá: %s</string> <string name="info_row_moderated_at">Moderado em</string> <string name="share_text_moderated_at">Moderado em: %s</string> <string name="share_text_received_at">Recebido em: %s</string> @@ -1213,11 +1216,11 @@ <string name="allow_your_contacts_adding_message_reactions">Permitir que seus contatos adicionem reações à mensagens.</string> <string name="both_you_and_your_contact_can_add_message_reactions">Você e seu contato podem adicionar reações à mensagens.</string> <string name="group_members_can_add_message_reactions">Os membros do grupo podem adicionar reações às mensagens.</string> - <string name="message_reactions_prohibited_in_this_chat">Reações à mensagens são proibidas neste chat.</string> + <string name="message_reactions_prohibited_in_this_chat">Reações à mensagens são proibidas neste bate-papo.</string> <string name="prohibit_message_reactions">Proibir reações à mensagens.</string> <string name="custom_time_picker_custom">personalizado</string> <string name="whats_new_read_more">Ler mais</string> - <string name="v5_1_self_destruct_passcode_descr">Todos seus dados são apagados quando digitado</string> + <string name="v5_1_self_destruct_passcode_descr">Todos seus dados são apagados quando inserido.</string> <string name="v5_1_message_reactions_descr">Finalmente, nós os temos! 🚀</string> <string name="v5_1_message_reactions">Reações à mensagens</string> <string name="v5_1_self_destruct_passcode">Senha de auto-destruição</string> @@ -1228,7 +1231,7 @@ <string name="whats_new_thanks_to_users_contribute_weblate">Obrigado aos usuários – contribua via Weblate!</string> <string name="v5_1_better_messages_descr">- mensagens de voz de até 5 minutos \n- tempo personalizado para desaparecer. -\n- histórico de edição.</string> +\n- edição de histórico.</string> <string name="custom_time_unit_weeks">semanas</string> <string name="allow_message_reactions_only_if">Permitir reações à mensagens somente se o seu contato permitir.</string> <string name="v5_1_custom_themes_descr">Personalize e compartilhe temas de cores.</string> @@ -1240,23 +1243,23 @@ <string name="info_row_sent_at">Enviado em</string> <string name="change_self_destruct_passcode">Alterar senha de auto-destruição</string> <string name="if_you_enter_self_destruct_code">Se você digitar sua senha de auto-destruição ao abrir o aplicativo:</string> - <string name="item_info_no_text">Sem texto</string> + <string name="item_info_no_text">sem texto</string> <string name="non_fatal_errors_occured_during_import">Alguns erros não-fatais ocurreram durante importação - pode ver o console de Chat para mais detalhes.</string> <string name="search_verb">Pesquisar</string> <string name="la_mode_off">Desativado</string> <string name="files_and_media">Arquivos e mídia</string> <string name="error_aborting_address_change">Erro ao cancelar alteração de endereço</string> - <string name="abort_switch_receiving_address_question">Anular a mudança de endereço\?</string> - <string name="abort_switch_receiving_address_confirm">Anular</string> + <string name="abort_switch_receiving_address_question">Abortar a mudança de endereço?</string> + <string name="abort_switch_receiving_address_confirm">Abortar</string> <string name="abort_switch_receiving_address_desc">A alteração de endereço será cancelada. O endereço de recebimento antigo será usado.</string> <string name="shutdown_alert_question">Desligar\?</string> - <string name="abort_switch_receiving_address">Anular alteração de endereço</string> + <string name="abort_switch_receiving_address">Abortar alteração de endereço</string> <string name="network_option_protocol_timeout_per_kb">Tempo limite do protocolo por KB</string> <string name="shutdown_alert_desc">As notificações deixarão de funcionar até que você reinicie o aplicativo</string> <string name="in_reply_to">Em resposta a</string> <string name="only_owners_can_enable_files_and_media">Somente os proprietários do grupo podem habilitar arquivos e mídia.</string> <string name="sync_connection_force_desc">A criptografia está funcionando e o novo acordo de criptografia não é necessário. Pode resultar em erros de conexão!</string> - <string name="snd_conn_event_ratchet_sync_started">concordando criptografia para %s</string> + <string name="snd_conn_event_ratchet_sync_started">concordando com criptografia para %s…</string> <string name="conn_event_ratchet_sync_agreed">criptografia concordada</string> <string name="conn_event_ratchet_sync_allowed">renegociação de criptografia permitida</string> <string name="rcv_conn_event_verification_code_reset">código de segurança alterado</string> @@ -1264,12 +1267,12 @@ <string name="sender_at_ts">%s em %s</string> <string name="files_are_prohibited_in_group">Arquivos e mídia são proibidos neste grupo.</string> <string name="prohibit_sending_files">Proibir o envio de arquivos e mídia.</string> - <string name="snd_conn_event_ratchet_sync_ok">criptografia ok para %s</string> + <string name="snd_conn_event_ratchet_sync_ok">criptografia OK para %s</string> <string name="fix_connection_not_supported_by_group_member">Correção não suportada pelo membro do grupo</string> - <string name="conn_event_ratchet_sync_started">concordando criptografia…</string> + <string name="conn_event_ratchet_sync_started">concordando com criptografia…</string> <string name="allow_to_send_files">Permitir o envio de arquivos e mídia.</string> <string name="settings_section_title_app">APP</string> - <string name="conn_event_ratchet_sync_ok">criptografia ok</string> + <string name="conn_event_ratchet_sync_ok">criptografia OK</string> <string name="conn_event_ratchet_sync_required">renegociação de criptografia necessária</string> <string name="snd_conn_event_ratchet_sync_agreed">criptografia concordada para %s</string> <string name="snd_conn_event_ratchet_sync_allowed">renegociação de criptografia permitida para %s</string> @@ -1284,41 +1287,41 @@ <string name="settings_shutdown">Desligar</string> <string name="fix_connection">Corrigir conexão</string> <string name="fix_connection_question">Corrigir conexão\?</string> - <string name="no_filtered_chats">Sem chats filtrados</string> + <string name="no_filtered_chats">Sem bate-papo filtrados</string> <string name="sync_connection_force_confirm">Renegociar</string> <string name="unfavorite_chat">Desfavoritar</string> <string name="sync_connection_force_question">Renegociar a criptografia\?</string> <string name="settings_restart_app">Reiniciar</string> - <string name="delivery_receipts_title">Confirmações de entrega!</string> - <string name="delivery_receipts_are_disabled">As confirmações de entrega estão desabilitadas!</string> + <string name="delivery_receipts_title">Recibos de entrega!</string> + <string name="delivery_receipts_are_disabled">Os recibos de entrega estão desabilitadas!</string> <string name="receipts_contacts_enable_for_all">Ativar para todos</string> <string name="receipts_contacts_disable_for_all">Desativar para todos</string> - <string name="receipts_contacts_title_disable">Desabilitar as confirmações\?</string> + <string name="receipts_contacts_title_disable">Desabilitar os recibos?</string> <string name="receipts_contacts_disable_keep_overrides">Desativar (mantém alterações)</string> <string name="receipts_contacts_enable_keep_overrides">Ativar (mantém alterações)</string> - <string name="receipts_contacts_title_enable">Ativar as confirmações\?</string> - <string name="v5_2_favourites_filter">Encontrar conversas rápido</string> + <string name="receipts_contacts_title_enable">Ativar recibos?</string> + <string name="v5_2_favourites_filter">Encontrar conversas mais rápido</string> <string name="receipts_section_contacts">Contatos</string> - <string name="settings_section_title_delivery_receipts">ENVIAR CONFIRMAÇÕES DE ENTREGA PARA</string> + <string name="settings_section_title_delivery_receipts">ENVIAR RECIBOS DE ENTREGA PARA</string> <string name="receipts_contacts_override_disabled">Enviar confirmações está desativado para %d contatos.</string> <string name="receipts_contacts_override_enabled">Enviar confirmações está ativado para %d contatos.</string> <string name="send_receipts">Enviar confirmações</string> <string name="v5_2_more_things">Mais algumas coisas</string> <string name="v5_2_disappear_one_message_descr">Até mesmo desabilitado na conversa.</string> - <string name="v5_2_favourites_filter_descr">Filtrar chats não lidos e favoritos.</string> - <string name="v5_2_fix_encryption_descr">Corrigir encriptação depois de restaurar os backups.</string> + <string name="v5_2_favourites_filter_descr">Filtrar bate-papo não lidos e favoritos.</string> + <string name="v5_2_fix_encryption_descr">Corrigir criptografia depois de restaurar os backups.</string> <string name="v5_2_fix_encryption">Manter suas conexões</string> <string name="v5_2_disappear_one_message">Fazer uma mensagem desaparecer</string> <string name="v5_2_message_delivery_receipts">Confirmações de entrega de mensagens!</string> <string name="v5_2_more_things_descr">- entregas de mensagens mais estáveis. -\n- grupos melhores. +\n- grupos um pouco melhores. \n- e mais!</string> <string name="dont_enable_receipts">Não ative</string> <string name="enable_receipts_all">Ativar</string> <string name="sending_delivery_receipts_will_be_enabled">Enviar confirmações de entrega serão ativadas para todos os contatos.</string> - <string name="error_enabling_delivery_receipts">Ocorreu um erro ao ativar as confirmações de entrega!</string> + <string name="error_enabling_delivery_receipts">Ocorreu um erro ao ativar as recibos de entrega!</string> <string name="choose_file_title">Escolher arquivo</string> - <string name="connect_via_link_incognito">Conectar incógnito</string> + <string name="connect_via_link_incognito">Conectar anônimamente</string> <string name="turn_off_battery_optimization_button">Permitir</string> <string name="disable_notifications_button">Desativar notificações</string> <string name="system_restricted_background_in_call_title">Sem chamadas de fundo</string> @@ -1335,10 +1338,304 @@ <string name="in_developing_title">Em breve!</string> <string name="delivery">Entrega</string> <string name="no_info_on_delivery">Nenhuma informação de entrega</string> - <string name="sending_delivery_receipts_will_be_enabled_all_profiles">Enviar recibos de entrega será ativado para todos os contatos em todos os perfis de chat visíveis.</string> + <string name="sending_delivery_receipts_will_be_enabled_all_profiles">Enviar recibos de entrega serão habilitados para todos os contatos em todos os perfis visíveis.</string> <string name="rcv_group_event_2_members_connected">%s e %s conectados</string> <string name="connect_via_member_address_alert_title">Conectar diretamente\?</string> - <string name="no_selected_chat">Sem chat selecionado</string> + <string name="no_selected_chat">Nenhum bate-papo selecionado</string> <string name="privacy_message_draft">Rascunho de mensagem</string> <string name="send_receipts_disabled">desativado</string> + <string name="system_restricted_background_desc">SimpleX não pode ser executado em segundo plano. Você receberá as notificações somente quando o aplicativo estiver em execução.</string> + <string name="system_restricted_background_warn"><![CDATA[Para ativar notificações, selecione <b>Uso de bateria do aplicativo</b> / <b>Irrestrito</b> nas configurações do aplicativo.]]></string> + <string name="v5_3_new_interface_languages">6 novos idiomas de interface</string> + <string name="v5_5_private_notes">Notas privadas</string> + <string name="v5_5_private_notes_descr">Com arquivos criptografados e mídia</string> + <string name="v5_5_simpler_connect_ui">Colar o link para conectar!</string> + <string name="v5_5_simpler_connect_ui_descr">A barra de pesquisa aceita links de convite.</string> + <string name="v5_5_join_group_conversation">Participe de conversas em grupo</string> + <string name="not_compatible">Não compatível!</string> + <string name="invalid_qr_code">QR code inválido</string> + <string name="correct_name_to">Corrigir nome para %s?</string> + <string name="rcv_group_event_member_created_contact">diretamente conectado</string> + <string name="connect_plan_this_is_your_own_simplex_address">Este é o seu próprio endereço SimpleX!</string> + <string name="desktop_connection_terminated">Conexão terminada</string> + <string name="connect_plan_this_is_your_link_for_group_vName"><![CDATA[Este link é seu link para o grupo <b>%1$s</b>!]]></string> + <string name="remote_ctrl_was_disconnected_title">Conexão interrompida</string> + <string name="remote_ctrl_error_busy">Desktop está ocupado</string> + <string name="blocked_by_admin_items_description">%d mensagens bloqueadas pelo admnistrador</string> + <string name="blocked_by_admin_item_description">bloqueado pelo admnistrador</string> + <string name="note_folder_local_display_name">Notas privadas</string> + <string name="system_restricted_background_in_call_desc">O aplicativo pode ser fechado após 1 minuto em segundo plano.</string> + <string name="search_or_paste_simplex_link">Procurar e colar link SimpleX</string> + <string name="add_contact_button_to_create_link_or_connect_via_link"><![CDATA[<b>Adicionar contato</b>: para criar um novo link de convite, ou conectar pelo link que você recebeu.]]></string> + <string name="share_this_1_time_link">Compartilhe este link de convite único</string> + <string name="alert_text_encryption_renegotiation_failed">Renegociação de criptografia falhou.</string> + <string name="rcv_group_and_other_events">e %d outros eventos</string> + <string name="rcv_group_events_count">%d eventos de grupo</string> + <string name="group_members_2">%s e %s</string> + <string name="info_row_created_at">Criado em</string> + <string name="enable_sending_recent_history">Enviar até as 100 últimas mensagens para novos membros.</string> + <string name="link_a_mobile">Vincular um celular</string> + <string name="remote_host_was_disconnected_title">Conexão interrompida</string> + <string name="waiting_for_desktop">Aguardando o desktop…</string> + <string name="connected_desktop">Desktop conectado</string> + <string name="linked_desktops">Desktops vínculados</string> + <string name="remote_host_error_missing"><![CDATA[Dispositivo Móvel <b>%s</b> está faltando]]></string> + <string name="open_port_in_firewall_title">Abrir porta na firewall</string> + <string name="open_port_in_firewall_desc">Para permitir que um aplicativo móvel se conecte ao desktop, abra esta porta em seu firewall, se estiver ativado</string> + <string name="remote_host_error_timeout"><![CDATA[Tempo limite atingido durante a conexão com o móvel <b>%s</b>]]></string> + <string name="remote_host_error_busy"><![CDATA[Dispositivo Móvel <b>%s</b> está ocupado]]></string> + <string name="remote_host_error_inactive"><![CDATA[Dispositivo Móvel <b>%s</b> está inativo]]></string> + <string name="remote_host_error_bad_state"><![CDATA[A conexão com o dispositivo móvel <b>%s</b> está em mau estado]]></string> + <string name="remote_ctrl_error_bad_state">A conexão com o desktop está em mau estado</string> + <string name="remote_ctrl_error_disconnected">Desktop foi desconectado</string> + <string name="remote_ctrl_error_bad_invitation">Desktop tem um código de convite errado</string> + <string name="remote_ctrl_error_bad_version">O desktop tem uma versão não suportada. Por favor, certifique-se de usar a mesma versão em ambos os dispositivos</string> + <string name="agent_critical_error_title">Erro crítico</string> + <string name="agent_internal_error_title">Erro interno</string> + <string name="restart_chat_button">Reiniciar o bate-papo</string> + <string name="error_creating_member_contact">Erro ao criar contato de membro</string> + <string name="you_can_enable_delivery_receipts_later">Você pode habilitar mais tarde nas configurações</string> + <string name="you_can_enable_delivery_receipts_later_alert">Você pode habilitá-los mais tarde pelo aplicativo nas configurações de Privacidade & Segurança</string> + <string name="verify_code_with_desktop">Verificar código com o desktop</string> + <string name="new_desktop"><![CDATA[<i>(novo)</i>]]></string> + <string name="connect_plan_repeat_join_request">Repetir o pedido para se juntar?</string> + <string name="in_developing_desc">Este recurso ainda não é compatível. Experimente o próximo lançamento.</string> + <string name="connect_plan_you_have_already_requested_connection_via_this_address">Você já pediu para se conectar por este endereço!</string> + <string name="connect_plan_already_connecting">Você já está se conectando!</string> + <string name="connect_plan_connect_to_yourself">Conectar-se a você mesmo?</string> + <string name="connect_plan_open_group">Abrir grupo</string> + <string name="connect_plan_you_are_already_joining_the_group_via_this_link">Você já está se conectando ao grupo por este link.</string> + <string name="connect_plan_already_joining_the_group">Você já está entrando no grupo!</string> + <string name="connect_plan_connect_via_link">Conectar via link?</string> + <string name="call_service_notification_audio_call">Chamada de áudio</string> + <string name="call_service_notification_end_call">Finalizar chamada</string> + <string name="call_service_notification_video_call">Chamada de vídeo</string> + <string name="expand_verb">Expandir</string> + <string name="compose_send_direct_message_to_connect">Enviar mensagem direta para conectar</string> + <string name="tap_to_scan">Toque para escanear</string> + <string name="new_chat">Novo bate-papo</string> + <string name="or_show_this_qr_code">Ou mostrar este código</string> + <string name="keep_invitation_link">Manter</string> + <string name="keep_unused_invitation_question">Manter convite não utilizado?</string> + <string name="or_scan_qr_code">Ou escanear o QR code</string> + <string name="tap_to_paste_link">Toque para colar o link</string> + <string name="the_text_you_pasted_is_not_a_link">O texto que você colou não é um link SimpleX.</string> + <string name="you_can_view_invitation_link_again">Você pode visualizar o código de convite novamente nos detalhes de conexão.</string> + <string name="developer_options_section">Opções de desenvolvedor</string> + <string name="show_slow_api_calls">Mostrar chamadas de API lentas</string> + <string name="you_can_make_address_visible_via_settings">Você pode tornar isso visível aos seus contatos SimpleX nas configurações.</string> + <string name="encrypt_local_files">Criptografar arquivos locais</string> + <string name="rcv_group_event_1_member_connected">%s conectou</string> + <string name="error_blocking_member_for_all">Erro ao bloquear membro para todos</string> + <string name="connect_via_member_address_alert_desc">Pedido de conexão será enviado para este membro do grupo.</string> + <string name="welcome_message_is_too_long">Mensagem de boas vindas é muito grande</string> + <string name="v5_3_simpler_incognito_mode_descr">Alterne para navegação anônima ao conectar.</string> + <string name="linked_mobiles">Dispositivos móveis vínculados</string> + <string name="remote_host_disconnected_from"><![CDATA[Desconectado do dispositivo móvel <b>%s</b> pelo motivo: %s]]></string> + <string name="bad_desktop_address">Endereço de desktop incorreto</string> + <string name="waiting_for_mobile_to_connect">Aguardando o dispositivo móvel conectar:</string> + <string name="verify_connections">Verificar conexões</string> + <string name="desktop_address">Endereço do desktop</string> + <string name="connect_use_current_profile">Usar perfil atual</string> + <string name="connect_use_new_incognito_profile">Usar novo perfil anônimo</string> + <string name="error_creating_message">Erro ao criar mensagem</string> + <string name="connect_plan_group_already_exists">Grupo já existe!</string> + <string name="connect_plan_you_are_already_in_group_vName"><![CDATA[Você já está no grupo <b>%1$s</b>.]]></string> + <string name="show_internal_errors">Mostrar erros internos</string> + <string name="receipts_groups_override_enabled">O envio de recibos está habilitado para %d grupos</string> + <string name="start_chat_question">Iniciar bate-papo?</string> + <string name="recent_history_is_not_sent_to_new_members">Histórico não é enviado para novos membros.</string> + <string name="v5_3_discover_join_groups">Descobrir e se juntar a grupos</string> + <string name="refresh_qr_code">Recarregar</string> + <string name="remote_host_error_bad_version"><![CDATA[Dispositivo Móvel <b>%s</b> tem uma versão não suportada. Por favor, certifique-se de usar a mesma versão em ambos os dispositivos]]></string> + <string name="failed_to_create_user_invalid_title">Nome de exibição inválido!</string> + <string name="failed_to_create_user_invalid_desc">Este nome de exibição é inválido. Por favor escolha outro nome.</string> + <string name="blocked_item_description">bloqueado</string> + <string name="non_content_uri_alert_title">Caminho de arquivo inválido</string> + <string name="non_content_uri_alert_text">Você compartilhou um caminho de arquivo inválido. Informe o problema para os desenvolvedores do aplicativo.</string> + <string name="message_too_large">A mensagem é muito grande</string> + <string name="app_was_crashed">Visualização travou</string> + <string name="marked_deleted_items_description">%d mensagens marcadas como excluídas</string> + <string name="delete_messages__question">Deletar %d mensagens?</string> + <string name="contact_tap_to_connect">Toque para conectar</string> + <string name="v5_3_simpler_incognito_mode">Modo anônimo simplificado</string> + <string name="found_desktop">Desktop encontrado</string> + <string name="random_port">Aleatório</string> + <string name="database_migration_in_progress">Migração do banco de dados em progresso. +\nIsso pode levar alguns minutos.</string> + <string name="moderated_items_description">%1$d mensagens moderadas por %2$s</string> + <string name="blocked_items_description">%d mensagens bloqueadas</string> + <string name="error_deleting_note_folder">Erro ao deletar notas privadas</string> + <string name="system_restricted_background_in_call_warn"><![CDATA[Para fazer ligações no plano de fundo, escolha <b>Uso de bateria do aplicativo</b> / <b>Irrestrito</b> nas configurações do aplicativo.]]></string> + <string name="send_receipts_disabled_alert_msg">Este grupo tem mais de %1$d membros, recibos de entrega não são enviados.</string> + <string name="loading_remote_file_title">Carregando o arquivo</string> + <string name="rcv_direct_event_contact_deleted">contato deletado</string> + <string name="error">Erro</string> + <string name="this_device">Este dispositivo</string> + <string name="discover_on_network">Descobrir via rede local</string> + <string name="group_member_status_unknown_short">desconhecido</string> + <string name="share_text_created_at">Criado em: %s</string> + <string name="button_remove_member_question">Remover membro?</string> + <string name="saved_message_title">Mensagem salva</string> + <string name="block_member_button">Bloquear membro</string> + <string name="remove_member_button">Remover membro</string> + <string name="block_for_all">Bloquear para todos</string> + <string name="block_for_all_question">Bloquear membro para todos?</string> + <string name="unblock_member_confirmation">Desbloquear</string> + <string name="unblock_member_button">Desbloquear membro</string> + <string name="unblock_member_question">Desbloquear membro?</string> + <string name="unblock_member_desc">Mensagens de %s serão exibidas!</string> + <string name="unblock_for_all">Desbloquear para todos</string> + <string name="unblock_for_all_question">Desbloquear membro para todos?</string> + <string name="create_group_button">Criar grupo</string> + <string name="v5_3_encrypt_local_files_descr">O aplicativo criptografa novos arquivos locais (exceto vídeos).</string> + <string name="v5_3_discover_join_groups_descr">- conecte-se ao serviço de diretório (BETA)! +\n- recibos de entrega (até 20 membros). +\n- mais rápido e mais estável.</string> + <string name="v5_5_message_delivery">Entrega de mensagens aprimorada</string> + <string name="v5_5_join_group_conversation_descr">Histórico recente e bot de diretório aprimorado.</string> + <string name="v5_2_message_delivery_receipts_descr">O segundo tick que perdemos! ✅</string> + <string name="v5_5_message_delivery_descr">Com uso de bateria reduzido.</string> + <string name="connected_to_mobile">Conectado ao dispositivo móvel</string> + <string name="disconnect_remote_hosts">Desconectar dispositivos móveis</string> + <string name="v5_5_new_interface_languages">UI húngara e turca</string> + <string name="this_device_version"><![CDATA[<i>(este dispositivo v%s)</i>]]></string> + <string name="scan_from_mobile">Escanear pelo dispositivo móvel</string> + <string name="remote_ctrl_disconnected_with_reason">Desconectado pelo motivo: %s</string> + <string name="connecting_to_desktop">Conectando ao desktop</string> + <string name="connect_to_desktop">Conectar ao desktop</string> + <string name="desktop_incompatible_version">Versão incompatível</string> + <string name="open_on_mobile_and_scan_qr_code"><![CDATA[Abra <i>Use no desktop</i> no aplicativo móvel e escaneie o QR code.]]></string> + <string name="paste_desktop_address">Colar o endereço de desktop</string> + <string name="no_connected_mobile">Nenhum celular conectado</string> + <string name="connect_plan_join_your_group">Se juntar ao seu grupo?</string> + <string name="connect_plan_repeat_connection_request">Repetir o pedido de conexão?</string> + <string name="connect_plan_you_are_already_connecting_via_this_one_time_link">Você já está se conectando por este código de uso único!</string> + <string name="agent_critical_error_desc">Por favor informe isto aos desenvolvedores: +\n%s +\n +\nÉ recomendado reiniciar o aplicativo.</string> + <string name="privacy_show_last_messages">Mostrar últimas mensagens</string> + <string name="receipts_section_description_1">Eles podem ser substituídos nas configurações de contato e grupo.</string> + <string name="save_passphrase_in_settings">Salvar senha nas configurações</string> + <string name="settings_is_storing_in_clear_text">A senha é armazenada nas configurações como um texto simples.</string> + <string name="passphrase_will_be_saved_in_settings">A senha será armazenada nas configurações como um texto simples após você mudar ela ou reiniciar o aplicativo.</string> + <string name="rcv_group_event_member_unblocked">desbloqueado %s</string> + <string name="group_members_n">%s, %s e %d membros</string> + <string name="rcv_group_event_n_members_connected">%s, %s e %d outros membros conectaram</string> + <string name="rcv_group_event_3_members_connected">%s, %s e %s conectaram</string> + <string name="snd_group_event_member_unblocked">você desbloqueou %s</string> + <string name="v5_3_new_interface_languages_descr">Árabe, búlgaro, finlandês, hebraico, tailandês e ucraniano - graças aos usuários e ao Weblate.</string> + <string name="use_random_passphrase">Usar senha aleatória</string> + <string name="setup_database_passphrase">Configurar senha do banco de dados</string> + <string name="la_app_passcode">Senha do aplicativo</string> + <string name="add_contact_tab">Adicionar contato</string> + <string name="clear_note_folder_warning">Todas as mensagens serão deletadas - isto não poderá ser desfeito!</string> + <string name="block_member_desc">Todas as novas mensagens de %s serão ocultadas!</string> + <string name="member_blocked_by_admin">Bloqueado pelo admnistrador</string> + <string name="rcv_group_event_member_blocked">bloqueado %s</string> + <string name="create_group_button_to_create_new_group"><![CDATA[<b>Criar grupo</b>: para criar um novo grupo.]]></string> + <string name="block_member_confirmation">Bloquear</string> + <string name="member_info_member_blocked">bloqueado</string> + <string name="code_you_scanned_is_not_simplex_link_qr_code">O código que você escaneou não é um QR code SimpleX.</string> + <string name="unable_to_open_browser_desc">O navegador padrão é necessário para chamadas. Configure o navegador padrão no sistema e compartilhe mais informações com os desenvolvedores.</string> + <string name="receipts_section_description">Essas configurações são para o seu perfil atual</string> + <string name="video_decoding_exception_desc">O vídeo não pode ser decodificado. Por favor, tente com um vídeo diferente ou contate os desenvolvedores.</string> + <string name="connect_plan_this_is_your_own_one_time_link">Este é o seu próprio link de uso único!</string> + <string name="remote_ctrl_error_timeout">Tempo limite atingido durante a conexão com o desktop</string> + <string name="recent_history_is_sent_to_new_members">Até as 100 últimas mensagens são enviadas para novos membros.</string> + <string name="snd_group_event_member_blocked">você bloqueou %s</string> + <string name="connect__your_profile_will_be_shared">Seu perfil %1$s será compartilhado.</string> + <string name="connect_plan_you_are_already_joining_the_group_vName"><![CDATA[Você já está se conectando ao grupo <b>%1$s</b>.]]></string> + <string name="block_member_question">Bloquear membro?</string> + <string name="socks_proxy_setting_limitations"><![CDATA[<b>Atenção</b>: retransmissões de mensagens e arquivos são conectadas via proxy SOCKS. As chamadas e o envio de visualizações de links usam conexão direta.]]></string> + <string name="camera_not_available">Câmera não disponível</string> + <string name="connected_mobile">Dispositivo móvel conectado</string> + <string name="chat_is_stopped_you_should_transfer_database">O bate-papo foi interrompido. Se você já usou esse banco de dados em outro dispositivo, deverá transferi-lo de volta antes de iniciar o bate-papo.</string> + <string name="clear_note_folder_question">Limpar notas privadas?</string> + <string name="connected_to_desktop">Conectado ao desktop</string> + <string name="creating_link">Criando link…</string> + <string name="connect_with_contact_name_question">Conectar com %1$s?</string> + <string name="remote_ctrl_error_inactive">Desktop está inativo</string> + <string name="database_encryption_will_be_updated_in_settings">A senha de criptografia do banco de dados será atualizada e armazenada nas configurações.</string> + <string name="create_chat_profile">Criar perfil de bate-papo</string> + <string name="database_will_be_encrypted_and_passphrase_stored_in_settings">O banco de dados será criado e a senha será armazenada nas configurações.</string> + <string name="delete_and_notify_contact">Deletar e notificar contato</string> + <string name="desktop_device">Desktop</string> + <string name="desktop_app_version_is_incompatible">A versão do aplicativo desktop %s não é compatível com este aplicativo.</string> + <string name="disconnect_desktop_question">Desconectar desktop?</string> + <string name="enable_camera_access">Habilitar o acesso à câmera</string> + <string name="encryption_renegotiation_error">Erro de renegociação de criptografia</string> + <string name="unable_to_open_browser_title">Erro ao abrir o navegador</string> + <string name="error_sending_message_contact_invitation">Erro ao enviar o convite</string> + <string name="loading_chats">Carregando bate-papos…</string> + <string name="remote_host_was_disconnected_toast"><![CDATA[Dispositivo Móvel <b>%s</b> foi desconectado]]></string> + <string name="remote_host_error_disconnected"><![CDATA[Dispositivo Móvel <b>%s</b> foi desconectado]]></string> + <string name="only_one_device_can_work_at_the_same_time">Apenas um dispositivo pode funcionar ao mesmo tempo</string> + <string name="rcv_group_event_open_chat">Abrir</string> + <string name="past_member_vName">Ex-membro %1$s</string> + <string name="agent_internal_error_desc">Por favor informe isto aos desenvolvedores: +\n%s</string> + <string name="loading_remote_file_desc">Por favor, espere até que o arquivo seja carregado pelo dispositivo móvel vínculado</string> + <string name="you_can_change_it_later">Senha aleatória é armazenadas nas configurações como um texto simples. +\nVocê pode mudar isso mais tarde.</string> + <string name="send_receipts_disabled_alert_title">Os recibos estão desativados</string> + <string name="remove_passphrase_from_settings">Remover senha das configurações?</string> + <string name="set_database_passphrase">Definir senha do banco de dados</string> + <string name="receipts_section_groups">Grupos pequenos (max 20)</string> + <string name="error_showing_message">erro ao mostrar a mensagem</string> + <string name="error_showing_content">erro ao mostrar o conteúdo</string> + <string name="error_alert_title">Erro</string> + <string name="invalid_name">Nome inválido!</string> + <string name="create_another_profile_button">Criar perfil</string> + <string name="settings_section_title_use_from_desktop">Usar pelo desktop</string> + <string name="v5_4_link_mobile_desktop">Vincule aplicativos móveis e de desktop! 🔗</string> + <string name="v5_4_better_groups">Grupos melhores</string> + <string name="v5_4_block_group_members">Bloquear membros do grupo</string> + <string name="v5_4_incognito_groups_descr">Criar um grupo usando um perfil aleatório.</string> + <string name="v5_4_better_groups_descr">Adesão mais rápida e mensagens mais confiáveis.</string> + <string name="v5_4_incognito_groups">Grupos anônimos</string> + <string name="v5_4_more_things_descr">- opcionalmente notificar contatos deletados +\n- nomes de perfil com espaços +\n- e mais!</string> + <string name="v5_4_block_group_members_descr">Para ocultar mensagens indesejadas.</string> + <string name="v5_4_link_mobile_desktop_descr">Via protocolo seguro de resistência quântica.</string> + <string name="devices">Dispositivos</string> + <string name="disconnect_remote_host">Disconectar</string> + <string name="enter_this_device_name">Digite o nome deste dispositivo…</string> + <string name="new_mobile_device">Novo dispositivo móvel</string> + <string name="session_code">Código de sessão</string> + <string name="this_device_name_shared_with_mobile">O nome do dispositivo será compartilhado com o cliente móvel conectado.</string> + <string name="this_device_name">O nome deste dispositivo</string> + <string name="unlink_desktop">Desvincular</string> + <string name="unlink_desktop_question">Desvincular desktop?</string> + <string name="verify_code_on_mobile">Verificar código no dispositivo móvel</string> + <string name="verify_connection">Verificar conexão</string> + <string name="linked_desktop_options">Opções de desktop vinculada</string> + <string name="scan_qr_code_from_desktop">Escanear QR code pelo desktop</string> + <string name="connect_plan_you_are_already_connecting_to_vName"><![CDATA[Você já está se conectando à <b>%1$s</b>.]]></string> + <string name="group_member_role_author">autor</string> + <string name="recipient_colon_delivery_status">%s: %s</string> + <string name="multicast_connect_automatically">Conectar automaticamente</string> + <string name="desktop_devices">Dispositivos desktop</string> + <string name="multicast_discoverable_via_local_network">Descobrível via rede local</string> + <string name="possible_slow_function_desc">A execução da função está demorando muito: %1$d segundos: %2$s</string> + <string name="possible_slow_function_title">Função lenta</string> + <string name="member_contact_send_direct_message">enviar mensagem direta</string> + <string name="retry_verb">Tentar novamente</string> + <string name="open_database_folder">Abrir a pasta do banco de dados</string> + <string name="terminal_always_visible">Mostrar console em uma nova janela</string> + <string name="profile_update_event_contact_name_changed">contato %1$s mudou para %2$s</string> + <string name="profile_update_event_member_name_changed">membro %1$s mudou para %2$s</string> + <string name="profile_update_event_removed_address">endereço do contato removido</string> + <string name="profile_update_event_removed_picture">foto de perfil removida</string> + <string name="profile_update_event_set_new_address">definir novo endereço de contato</string> + <string name="profile_update_event_set_new_picture">definir nova foto de perfil</string> + <string name="group_member_status_unknown">status desconhecido</string> + <string name="profile_update_event_updated_profile">perfil atualizado</string> + <string name="recent_history">Histórico visível</string> + <string name="disable_sending_recent_history">Não enviar histórico para novos membros.</string> + <string name="v5_3_new_desktop_app_descr">Criar novo perfil no aplicativo de desktop. 💻</string> + <string name="v5_3_encrypt_local_files">Criptografar arquivos armazenados & arquivos de mídia</string> + <string name="v5_3_new_desktop_app">Novo aplicativo de desktop!</string> </resources> \ No newline at end of file diff --git a/apps/multiplatform/common/src/commonMain/resources/MR/tr/strings.xml b/apps/multiplatform/common/src/commonMain/resources/MR/tr/strings.xml index aa66835ee1..3c8b8b31cf 100644 --- a/apps/multiplatform/common/src/commonMain/resources/MR/tr/strings.xml +++ b/apps/multiplatform/common/src/commonMain/resources/MR/tr/strings.xml @@ -238,7 +238,7 @@ <string name="icon_descr_call_progress">Arama yapılıyor</string> <string name="icon_descr_call_rejected">Geri çevrilmiş çağrı</string> <string name="icon_descr_call_ended">Görüşme bitti.</string> - <string name="alert_text_decryption_error_too_many_skipped">%1$d mesajlar atlanıldı.</string> + <string name="alert_text_decryption_error_too_many_skipped">%1$d mesaj atlanıldı.</string> <string name="chat_database_deleted">Sohbet veritabanı silindi</string> <string name="error_with_info">Hata: %s</string> <string name="unknown_error">Bilinmeyen hata</string> @@ -1306,7 +1306,7 @@ <string name="receipts_contacts_override_enabled">Alıcılar %d bağlantıları için etkinleştirilecektir</string> <string name="moderate_message_will_be_marked_warning">Mesaj herkes için yönetilmiş olarak işaretlenecek.</string> <string name="connect_plan_this_is_your_own_one_time_link">Bu senin kendi tek-kullanımlık bağlantın!</string> - <string name="marked_deleted_items_description">%d mesajları silinmiş olarak işaretlendi</string> + <string name="marked_deleted_items_description">%d mesaj silinmiş olarak işaretlendi</string> <string name="connect_use_new_incognito_profile">Yeni sahte profil kullan</string> <string name="chat_is_stopped_you_should_transfer_database">Sohbet durduruldu. Eğer çoktan başka bir cihazda bu veritabanını kullandıysan,sohbeti başlatmadan önce veritabanını geri aktarmalısın.</string> <string name="send_link_previews">Bağlantı ön izlemelerini gönder</string> @@ -1359,7 +1359,7 @@ <string name="share_text_sent_at">%s de gönderildi</string> <string name="enable_sending_recent_history">Yeni katılımcılara 100e kadar son mesajlar gönder</string> <string name="moderate_verb">Yönet</string> - <string name="moderated_items_description">%1$d mesajları %2$s tarafından yönetildi</string> + <string name="moderated_items_description">%1$d mesaj %2$s tarafından yönetildi</string> <string name="remove_passphrase_from_settings">Ayarlardaki parola silinsin mi?</string> <string name="receipts_contacts_title_enable">Alıcılar etkinleştirilsin mi?</string> <string name="tap_to_start_new_chat">Yeni bir sohbet başlatmak için tıkla</string> @@ -1429,7 +1429,7 @@ <string name="set_database_passphrase">Veritabanı parolası ayarla</string> <string name="share_this_1_time_link">Bu tek-kullanımlık davet bağlantısını paylaş</string> <string name="unblock_member_question">Kişinin engeli kaldırılsın mı?</string> - <string name="blocked_items_description">%d mesajları engellendi</string> + <string name="blocked_items_description">%d mesaj engellendi</string> <string name="create_group_button_to_create_new_group"><![CDATA[<b>Grup oluştur</b>: yeni bir grup oluşturmak için.]]></string> <string name="icon_descr_video_asked_to_receive">Videoyu almak için soruldu</string> <string name="open_port_in_firewall_desc">Telefon uygulamanın bilgisayarına bağlanmasına izin vermek için, güvenlik duvarın etkin ise bu portu aç</string> @@ -1554,4 +1554,90 @@ <string name="color_received_message">Alınmış mesaj</string> <string name="rcv_group_event_member_created_contact">doğrudan bağlandı</string> <string name="blocked_item_description">engellendi</string> + <string name="v5_5_private_notes">Gizli notlar</string> + <string name="v5_5_message_delivery_descr">Azaltılmış pil kullanımı ile birlikte.</string> + <string name="v5_5_message_delivery">İyileştirilmiş mesaj iletimi</string> + <string name="v5_5_new_interface_languages">Macarca ve Türkçe arayüz</string> + <string name="remote_host_error_timeout"><![CDATA[Telefona bağlanırken zaman aşımına uğranıldı <b>%s</b>]]></string> + <string name="remote_host_error_disconnected"><![CDATA[Telefon <b>%s</b> bağlantısı kesildi]]></string> + <string name="remote_ctrl_error_disconnected">Masaüstünün bağlantısı kesilmiş</string> + <string name="blocked_by_admin_item_description">yönetici tarafından engellendi</string> + <string name="blocked_by_admin_items_description">%d mesaj yönetici tarafından engellendi</string> + <string name="clear_note_folder_question">Gizli notlar temizlensin mi?</string> + <string name="clear_note_folder_warning">Tüm mesajlar silinecektir - bu geri alınamaz!</string> + <string name="developer_options_section">Geliştirici seçenekleri</string> + <string name="show_internal_errors">Dahili hataları göster</string> + <string name="show_slow_api_calls">Yavaş API aramalarını göster</string> + <string name="rcv_group_event_member_blocked">engellendi %s</string> + <string name="rcv_group_event_member_unblocked">engeli kaldırıldı %s</string> + <string name="group_member_status_unknown_short">bilinmeyen</string> + <string name="group_member_status_unknown">bilinmeyen durum</string> + <string name="snd_group_event_member_blocked">engelledin %s</string> + <string name="snd_group_event_member_unblocked">engeli kaldırdın %s</string> + <string name="past_member_vName">Geçmiş üye %1$s</string> + <string name="member_blocked_by_admin">Yönetici tarafından engellendi</string> + <string name="block_for_all">Herkes için engelle</string> + <string name="info_row_created_at">Şurada oluşturuldu</string> + <string name="share_text_created_at">Şurada oluşturuldu: %s</string> + <string name="error_blocking_member_for_all">Üye herkes için engellenirken hata oluştu</string> + <string name="unblock_for_all">Herkes için engelini kaldır</string> + <string name="saved_message_title">Kaydedilmiş mesaj</string> + <string name="remote_host_was_disconnected_title">Bağlantı durduruldu</string> + <string name="remote_host_error_bad_state"><![CDATA[Telefona bağlantı <b>%s</b> kötü durumda]]></string> + <string name="remote_host_disconnected_from"><![CDATA[Telefon bağlantısı <b>%s</b> şu nedenle kesildi: %s]]></string> + <string name="remote_ctrl_disconnected_with_reason">Nedeniyle birlikte bağlantı kesildi: %s</string> + <string name="v5_5_private_notes_descr">Şifrelenmiş dosyalar ve medya ile birlikte.</string> + <string name="v5_5_join_group_conversation">Grup sohbetlerine katıl</string> + <string name="v5_5_simpler_connect_ui">Bağlanmak için bağlantıyı yapıştır!</string> + <string name="remote_ctrl_error_timeout">Masaüstüne bağlanırken zaman aşımına ulaşıldı</string> + <string name="v5_5_join_group_conversation_descr">Yakın tarih ve geliştirilmiş dizin botu.</string> + <string name="v5_5_simpler_connect_ui_descr">Arama çubuğu davet bağlantılarını kabul eder.</string> + <string name="member_info_member_blocked">engellendi</string> + <string name="block_for_all_question">Üye herkes için engellensin mi?</string> + <string name="unblock_for_all_question">Üyenin engeli herkes için kaldırılsın mı?</string> + <string name="remote_host_error_bad_version"><![CDATA[Mobil <b>%s</b> desteklenmeyen bir sürüme sahip. Lütfen her iki cihazda da aynı sürümü kullandığınızdan emin olun]]></string> + <string name="remote_host_error_busy"><![CDATA[Telefon <b>%s</b> meşgul]]></string> + <string name="remote_host_error_inactive"><![CDATA[Telefon <b>%s</b> aktif değil]]></string> + <string name="remote_host_error_missing"><![CDATA[Telefon <b>%s</b> kayıp]]></string> + <string name="remote_ctrl_error_inactive">Masaüstü aktif değil</string> + <string name="remote_ctrl_error_bad_state">Masaüstüne bağlantı kötü durumda</string> + <string name="remote_ctrl_error_busy">Masaüstü meşgul</string> + <string name="remote_ctrl_error_bad_version">Masaüstü desteklenmeyen bir sürüme sahiptir. Lütfen her iki cihazda da aynı sürümü kullandığınızdan emin olun</string> + <string name="agent_critical_error_title">Kritik hata</string> + <string name="remote_ctrl_error_bad_invitation">Masaüstünün yanlış davetiye kodu var</string> + <string name="agent_internal_error_title">Dahili hata</string> + <string name="agent_internal_error_desc">Lütfen geliştiricilere bildir: +\n +\n%s</string> + <string name="agent_critical_error_desc">Lütfen geliştiricilere bildir: +\n +\n%s +\n +\nUygulamayı yeniden başlatmak önerilir.</string> + <string name="restart_chat_button">Sohbeti yeniden başlat</string> + <string name="failed_to_create_user_invalid_desc">Bu görünen ad geçersiz. +\nLütfen başka bir ad seç.</string> + <string name="failed_to_create_user_invalid_title">Geçersiz görünen ad!</string> + <string name="remote_ctrl_was_disconnected_title">Bağlantı durduruldu</string> + <string name="possible_slow_function_desc">İşlevin yürütülmesi çok uzun zaman alıyor: %1$d saniye: %2$s</string> + <string name="possible_slow_function_title">Yavaş fonksiyon</string> + <string name="profile_update_event_contact_name_changed">kişi %1$s olarak değişti %2$s</string> + <string name="profile_update_event_updated_profile">güncellenmiş profil</string> + <string name="profile_update_event_member_name_changed">üye %1$s olarak değişti %2$s</string> + <string name="profile_update_event_set_new_address">yeni kişi adresi ayarla</string> + <string name="profile_update_event_set_new_picture">yeni profil fotoğrafı ayarla</string> + <string name="profile_update_event_removed_address">kişi adresi silindi</string> + <string name="profile_update_event_removed_picture">profil fotoğrafı silindi</string> + <string name="error_creating_message">Mesaj oluşturulurken hata</string> + <string name="error_deleting_note_folder">Gizli notlar silinirken hata</string> + <string name="note_folder_local_display_name">Gizli notlar</string> + <string name="welcome_message_is_too_long">Hoşgeldin mesajı çok uzun</string> + <string name="message_too_large">Mesaj çok büyük</string> + <string name="database_migration_in_progress">Veritabanı geçişi devam ediyor. +\nBu birkaç dakika sürebilir.</string> + <string name="unable_to_open_browser_desc">Aramalar için varsayılan web tarayıcısı gereklidir. Lütfen sistemdeki varsayılan tarayıcıyı yapılandırın ve geliştiricilerle daha fazla bilgi paylaşın.</string> + <string name="call_service_notification_audio_call">Sesli arama</string> + <string name="call_service_notification_video_call">Görüntülü arama</string> + <string name="call_service_notification_end_call">Aramayı bitir</string> + <string name="unable_to_open_browser_title">Tarayıcıyı açarken hata</string> </resources> \ No newline at end of file diff --git a/apps/multiplatform/common/src/commonMain/resources/MR/uk/strings.xml b/apps/multiplatform/common/src/commonMain/resources/MR/uk/strings.xml index 34ac98e401..8aebe017ec 100644 --- a/apps/multiplatform/common/src/commonMain/resources/MR/uk/strings.xml +++ b/apps/multiplatform/common/src/commonMain/resources/MR/uk/strings.xml @@ -20,7 +20,7 @@ <string name="v4_3_improved_server_configuration_desc">Додавайте сервери, скануючи QR-коди.</string> <string name="users_delete_all_chats_deleted">Всі чати і повідомлення будуть видалені - цю дію неможливо скасувати!</string> <string name="allow_calls_only_if">Дозволяйте дзвінки тільки в разі дозволу вашого контакту.</string> - <string name="allow_irreversible_message_deletion_only_if">Дозволяйте невідворотне видалення повідомлень тільки в разі дозволу вашого контакту.</string> + <string name="allow_irreversible_message_deletion_only_if">Дозволити безповоротне видалення повідомлень, тільки якщо ваш контакт дозволяє вам. (24 години)</string> <string name="allow_voice_messages_question">Дозволити голосові повідомлення\?</string> <string name="app_passcode_replaced_with_self_destruct">Пароль застосунку замінено паролем самознищення.</string> <string name="smp_servers_preset_add">Додати попередньо встановлені сервери</string> @@ -35,7 +35,7 @@ <string name="always_use_relay">Завжди використовувати реле</string> <string name="settings_section_title_app">ДОДАТОК</string> <string name="allow_direct_messages">Дозволяйте надсилати прямі повідомлення учасникам.</string> - <string name="allow_to_delete_messages">Дозволяйте невідворотне видалення відправлених повідомлень.</string> + <string name="allow_to_delete_messages">Дозволити безповоротно видаляти надіслані повідомлення. (24 години)</string> <string name="allow_to_send_voice">Дозволяйте надсилати голосові повідомлення.</string> <string name="allow_message_reactions">Дозволити реакції на повідомлення.</string> <string name="v5_1_self_destruct_passcode_descr">Вся інформація стирається при його введенні.</string> @@ -46,7 +46,7 @@ <string name="allow_message_reactions_only_if">Дозволяйте реакції на повідомлення тільки в разі дозволу вашого контакту.</string> <string name="empty_chat_profile_is_created">Створений порожній профіль чату з наданим ім\'ям, і застосунок відкривається, як завжди.</string> <string name="color_primary_variant">Додатковий акцент</string> - <string name="allow_your_contacts_irreversibly_delete">Дозвольте вашим контактам невідворотно видаляти відправлені повідомлення.</string> + <string name="allow_your_contacts_irreversibly_delete">Дозволити вашим контактам безповоротно видаляти надіслані повідомлення. (24 години)</string> <string name="allow_verb">Дозволити</string> <string name="network_settings">Розширені налаштування мережі</string> <string name="network_enable_socks_info">Отримувати доступ до серверів через SOCKS-проксі на порті %d? Проксі має бути запущено до активації цієї опції.</string> @@ -87,7 +87,7 @@ <string name="icon_descr_video_asked_to_receive">Запит на отримання відео</string> <string name="v4_2_auto_accept_contact_requests">Автоприйняття запитів на контакт</string> <string name="audio_call_no_encryption">аудіовиклик (не зашифрований e2e)</string> - <string name="both_you_and_your_contacts_can_delete">Як ви, так і ваш контакт можете невідворотно видаляти відправлені повідомлення.</string> + <string name="both_you_and_your_contacts_can_delete">Як і ви, так і ваш контакт можете безповоротно видаляти надіслані повідомлення. (24 години)</string> <string name="alert_title_msg_bad_hash">Поганий хеш повідомлення</string> <string name="alert_title_msg_bad_id">Неправильний ідентифікатор повідомлення</string> <string name="auto_accept_images">Автоматично приймати зображення</string> @@ -497,9 +497,9 @@ <string name="user_mute">Приглушити</string> <string name="enter_password_to_show">Введіть пароль для пошуку</string> <string name="both_you_and_your_contact_can_send_disappearing">Як ви, так і ваш контакт можуть надсилати повідомлення, які зникають.</string> - <string name="only_you_can_delete_messages">Тільки ви можете невідворотно видаляти повідомлення (ваш контакт може позначати їх для видалення).</string> + <string name="only_you_can_delete_messages">Тільки ви можете безповоротно видаляти повідомлення (ваш контакт може позначати їх для видалення). (24 години)</string> <string name="only_your_contact_can_add_message_reactions">Тільки ваш контакт може додавати реакції на повідомлення.</string> - <string name="only_your_contact_can_delete">Тільки ваш контакт може невідворотно видаляти повідомлення (ви можете позначати їх для видалення).</string> + <string name="only_your_contact_can_delete">Тільки ваш контакт може безповоротно видаляти повідомлення (ви можете позначати їх для видалення). (24 години)</string> <string name="only_your_contact_can_send_voice">Тільки ваш контакт може надсилати голосові повідомлення.</string> <string name="prohibit_sending_disappearing">Забороняйте надсилання повідомлень, які зникають.</string> <string name="prohibit_message_deletion">Забороняйте невідворотне видалення повідомлень.</string> @@ -649,7 +649,7 @@ <string name="you_can_create_it_later">Ви можете створити його пізніше</string> <string name="your_current_profile">Ваш поточний профіль</string> <string name="delete_image">Видалити зображення</string> - <string name="save_preferences_question">Зберегти налаштування\?</string> + <string name="save_preferences_question">Зберегти уподобання?</string> <string name="save_and_notify_contact">Зберегти і повідомити контакт</string> <string name="save_profile_password">Зберегти пароль профілю</string> <string name="hidden_profile_password">Пароль схованого профілю</string> @@ -761,7 +761,7 @@ <string name="disappearing_messages_are_prohibited">Самознищувальні повідомлення заборонені в цій групі.</string> <string name="group_members_can_send_dms">Учасники групи можуть надсилати приватні повідомлення.</string> <string name="direct_messages_are_prohibited_in_chat">Приватні повідомлення між учасниками заборонені в цій групі.</string> - <string name="group_members_can_delete">Учасники групи можуть назавжди видаляти відправлені повідомлення.</string> + <string name="group_members_can_delete">Учасники групи можуть назавжди видаляти відправлені повідомлення. (24 години)</string> <string name="message_deletion_prohibited_in_chat">Назавжди видалення повідомлень заборонене в цій групі.</string> <string name="voice_messages_are_prohibited">Голосові повідомлення заборонені в цій групі.</string> <string name="group_members_can_add_message_reactions">Учасники групи можуть додавати реакції на повідомлення.</string> @@ -1370,7 +1370,7 @@ <string name="connect_plan_repeat_connection_request">Повторити запит на підключення?</string> <string name="encryption_renegotiation_error">Помилка переговорів щодо шифрування</string> <string name="rcv_direct_event_contact_deleted">видалено контакт</string> - <string name="connect_plan_you_are_already_connecting_to_vName">Ви вже підключаєтеся до %1$s.</string> + <string name="connect_plan_you_are_already_connecting_to_vName"><![CDATA[Ви вже підключаєтеся до <b>%1$s</b>.]]></string> <string name="rcv_group_event_open_chat">Відкрити</string> <string name="v5_3_encrypt_local_files">Шифрування збережених файлів та медіа</string> <string name="error_alert_title">Помилка</string> @@ -1381,7 +1381,7 @@ <string name="create_another_profile_button">Створити профіль</string> <string name="group_members_2">%s і %s</string> <string name="connect_plan_join_your_group">Приєднатися до вашої групи?</string> - <string name="connect_plan_you_are_already_joining_the_group_vName">Ви вже приєднуєтеся до групи %1$s.</string> + <string name="connect_plan_you_are_already_joining_the_group_vName"><![CDATA[Ви вже приєднуєтеся до групи <b>%1$s</b>.]]></string> <string name="encrypt_local_files">Шифрувати локальні файли</string> <string name="connect_plan_this_is_your_own_one_time_link">Це ваш власний одноразовий посилання!</string> <string name="marked_deleted_items_description">%d повідомлень відзначено як видалені</string> @@ -1410,7 +1410,7 @@ <string name="v5_3_simpler_incognito_mode">Спрощений режим інкогніто</string> <string name="contact_tap_to_connect">Торкніться, щоб підключитися</string> <string name="setup_database_passphrase">Налаштування паролю бази даних</string> - <string name="connect_plan_you_are_already_in_group_vName">Ви вже в групі %1$s.</string> + <string name="connect_plan_you_are_already_in_group_vName"><![CDATA[Ви вже є учасником групи <b>%1$s</b>.]]></string> <string name="connect_plan_this_is_your_own_simplex_address">Це ваш власний адреса SimpleX!</string> <string name="alert_text_encryption_renegotiation_failed">Не вдалося виконати переговори щодо шифрування.</string> <string name="correct_name_to">Виправити ім\'я на %s?</string> @@ -1513,4 +1513,128 @@ <string name="loading_remote_file_desc">Будь ласка, зачекайте, поки файл завантажується з підключеного мобільного</string> <string name="desktop_app_version_is_incompatible">Версія робочого столу %s не сумісна з цим додатком.</string> <string name="verify_connection">Перевірити підключення</string> + <string name="chat_is_stopped_you_should_transfer_database">Чат зупинено. Якщо ви вже використовували цю базу даних на іншому пристрої, перенесіть її назад перед запуском чату.</string> + <string name="v5_5_private_notes_descr">З зашифрованими файлами та медіа.</string> + <string name="v5_5_message_delivery_descr">З меншим споживанням заряду акумулятора.</string> + <string name="agent_critical_error_title">Критична помилка</string> + <string name="v5_5_message_delivery">Покращено доставку повідомлень</string> + <string name="v5_5_join_group_conversation">Приєднатися до групових розмов</string> + <string name="v5_5_simpler_connect_ui">Вставте посилання, щоб приєднатися!</string> + <string name="note_folder_local_display_name">Приватні нотатки</string> + <string name="retry_verb">Повторити</string> + <string name="v5_5_private_notes">Приватні нотатки</string> + <string name="v5_5_simpler_connect_ui_descr">Рядок пошуку підтримує посилання-запрошення.</string> + <string name="search_or_paste_simplex_link">Пошук або вставка посилання SimpleX</string> + <string name="share_this_1_time_link">Поділитися цим одноразовим посиланням-запрошенням</string> + <string name="remote_host_error_timeout"><![CDATA[Перевищено максимальний час очікування з\'єднання з мобільним <b>%s</b>]]></string> + <string name="disconnect_remote_hosts">Відʼєднати мобільні</string> + <string name="add_contact_tab">Додати контакт</string> + <string name="new_chat">Новий чат</string> + <string name="or_show_this_qr_code">Або показати цей код</string> + <string name="invalid_qr_code">Помилка QR-коду</string> + <string name="code_you_scanned_is_not_simplex_link_qr_code">Відсканований код не є QR-кодом посилання SimpleX.</string> + <string name="recent_history">Видима історія повідомлень</string> + <string name="no_connected_mobile">Немає під\'єднаних мобільних</string> + <string name="blocked_by_admin_item_description">заблокований адміністратором</string> + <string name="blocked_by_admin_items_description">%d повідомлень заблоковано адміністратором</string> + <string name="error_creating_message">Помилка при створенні повідомлення</string> + <string name="failed_to_create_user_invalid_desc">Це ім\'я недійсне. Будь ласка, виберіть інше ім\'я.</string> + <string name="error_deleting_note_folder">Помилка при видаленні приватних нотаток</string> + <string name="loading_chats">Завантаження чатів…</string> + <string name="enable_camera_access">Надати доступ до камери</string> + <string name="camera_not_available">Камера недоступна</string> + <string name="tap_to_scan">Торкнутися, щоб відсканувати</string> + <string name="add_contact_button_to_create_link_or_connect_via_link"><![CDATA[<b>Додати контакт</b>: створити нове посилання-запрошення або підключитися за отриманим посиланням.]]></string> + <string name="create_group_button_to_create_new_group"><![CDATA[<b>Створити групу</b>: створити нову групу.]]></string> + <string name="clear_note_folder_question">Очистити приватні нотатки?</string> + <string name="clear_note_folder_warning">Усі повідомлення будуть видалені - цю дію не можна скасувати!</string> + <string name="keep_invitation_link">Залишити</string> + <string name="keep_unused_invitation_question">Залишити невикористане запрошення?</string> + <string name="you_can_view_invitation_link_again">Ви можете знову побачити посилання-запрошення відкривши з\'єднання.</string> + <string name="create_chat_profile">Створити профіль чату</string> + <string name="creating_link">Створення посилання…</string> + <string name="developer_options_section">Налаштування для розробників</string> + <string name="show_slow_api_calls">Показувати повільні виклики API</string> + <string name="you_can_make_address_visible_via_settings">Ви можете зробити це видимим для ваших контактів у SimpleX через Налаштування.</string> + <string name="rcv_group_event_member_blocked">%s заблокований</string> + <string name="rcv_group_event_member_unblocked">%s розблокований</string> + <string name="snd_group_event_member_blocked">ви заблокували %s</string> + <string name="snd_group_event_member_unblocked">ви розблокували %s</string> + <string name="group_member_status_unknown_short">невідомо</string> + <string name="info_row_created_at">Створено</string> + <string name="member_info_member_blocked">заблокований</string> + <string name="member_blocked_by_admin">Заблокований адміністратором</string> + <string name="error_blocking_member_for_all">Помилка під час блокування учасника для всіх</string> + <string name="unblock_for_all">Розблокувати для всіх</string> + <string name="unblock_for_all_question">Розблокувати учасника для всіх?</string> + <string name="disable_sending_recent_history">Не надсилати історію новим користувачам.</string> + <string name="agent_critical_error_desc">Будь ласка, повідомте про це розробників: +\n%s +\n +\nРекомендується перезапустити додаток.</string> + <string name="enable_sending_recent_history">Надсилати до 100 останніх повідомлень новим користувачам.</string> + <string name="recent_history_is_sent_to_new_members">До 100 останніх повідомлень надсилаються новим членам.</string> + <string name="remote_host_was_disconnected_title">З\'єднання перервано</string> + <string name="share_text_created_at">Створено: %s</string> + <string name="show_internal_errors">Показати внутрішні помилки</string> + <string name="agent_internal_error_desc">Будь ласка, повідомте про це розробників: +\n%s</string> + <string name="remote_ctrl_disconnected_with_reason">Відʼєднаний з причини: %s</string> + <string name="remote_ctrl_error_bad_state">Помилка з\'єднання з комп\'ютером</string> + <string name="remote_ctrl_error_bad_invitation">Неправильний код запрошення в комп\'ютера</string> + <string name="remote_ctrl_error_busy">Компʼютер зайнятий</string> + <string name="remote_ctrl_error_inactive">Компʼютер неактивний</string> + <string name="remote_ctrl_error_disconnected">Компʼютер відʼєднаний</string> + <string name="remote_ctrl_error_timeout">Перевищено максимальний час очікування з\'єднання з комп\'ютером.</string> + <string name="remote_host_error_disconnected"><![CDATA[Мобільний <b>%s</b> було відʼєднано]]></string> + <string name="failed_to_create_user_invalid_title">Помилка імені!</string> + <string name="start_chat_question">Почати чат?</string> + <string name="remote_host_disconnected_from"><![CDATA[Від\'єднаний від мобільного <b>%s</b> з причини: %s]]></string> + <string name="remote_host_error_bad_version"><![CDATA[Версія програми на мобільному <b>%s</b> не підтримується. Будь ласка, встановіть однакову версію на обидва пристрої.]]></string> + <string name="agent_internal_error_title">Внутрішня помилка</string> + <string name="restart_chat_button">Оновити чат</string> + <string name="app_was_crashed">Помилка додатку</string> + <string name="refresh_qr_code">Оновити</string> + <string name="database_migration_in_progress">Триває міграція бази даних. +\nЦе може тривати кілька хвилин.</string> + <string name="tap_to_paste_link">Торкнутися, щоб вставити посилання</string> + <string name="the_text_you_pasted_is_not_a_link">Вставлений текст не є посиланням SimpleX.</string> + <string name="saved_message_title">Збережене повідомлення</string> + <string name="block_for_all">Заблокувати для всіх</string> + <string name="block_for_all_question">Заблокувати учасника для всіх?</string> + <string name="message_too_large">Повідомлення надто велике</string> + <string name="welcome_message_is_too_long">Привітання занадто довге</string> + <string name="recent_history_is_not_sent_to_new_members">Історія не надсилається новим учасникам.</string> + <string name="v5_5_new_interface_languages">Угорська та турецька мови інтерфейсу</string> + <string name="v5_5_join_group_conversation_descr">Нещодавня історія повідомлень та покращений бот каталогу.</string> + <string name="remote_ctrl_was_disconnected_title">З\'єднання перервано</string> + <string name="remote_ctrl_error_bad_version">Версія програми на комп\'ютері не підтримується. Будь ласка, встановіть однакову версію на обидва пристрої.</string> + <string name="random_port">Випадковий</string> + <string name="error_showing_message">помилка відображення повідомлення</string> + <string name="error_showing_content">помилка відображення вмісту</string> + <string name="waiting_for_mobile_to_connect">Очікується підключення мобільного:</string> + <string name="open_port_in_firewall_title">Відкрити порт у брандмауері</string> + <string name="open_port_in_firewall_desc">Щоб дозволити мобільному додатку підключатися до комп\'ютера, відкрийте цей порт у брандмауері, якщо він увімкнений</string> + <string name="remote_host_error_missing"><![CDATA[Мобільний <b>%s</b> відсутній]]></string> + <string name="remote_host_error_busy"><![CDATA[Мобільний <b>%s</b> зайнятий]]></string> + <string name="remote_host_error_bad_state"><![CDATA[Помилка з\'єднання з мобільним <b>%s</b>]]></string> + <string name="remote_host_error_inactive"><![CDATA[Мобільний <b>%s</b> неактивний]]></string> + <string name="la_app_passcode">Код для доступу в додаток</string> + <string name="group_member_status_unknown">невідомий статус</string> + <string name="possible_slow_function_desc">Виконання функції займає занадто багато часу: %1$d секунд: %2$s</string> + <string name="possible_slow_function_title">Уповільнене функціонування</string> + <string name="or_scan_qr_code">Або відсканувати QR-код</string> + <string name="profile_update_event_contact_name_changed">контакт %1$s змінено на %2$s</string> + <string name="profile_update_event_member_name_changed">учасник %1$s змінений на %2$s</string> + <string name="profile_update_event_removed_picture">вилучено зображення профілю</string> + <string name="profile_update_event_set_new_address">Установлено нову адресу контакту</string> + <string name="profile_update_event_set_new_picture">Установлено нове зображення профілю</string> + <string name="profile_update_event_updated_profile">оновлений профіль</string> + <string name="profile_update_event_removed_address">вилучено адресу контакту</string> + <string name="past_member_vName">Колишній учасник %1$s</string> + <string name="call_service_notification_end_call">Кінець дзвінка</string> + <string name="call_service_notification_video_call">Відеодзвінок</string> + <string name="call_service_notification_audio_call">Аудіодзвінок</string> + <string name="unable_to_open_browser_title">Помилка відкриття браузера</string> + <string name="unable_to_open_browser_desc">Для використання дзвінків потрібен браузер за замовчуванням. Будь ласка, налаштуйте браузер за замовчуванням в системі та надайте більше інформації розробникам.</string> </resources> \ No newline at end of file diff --git a/apps/multiplatform/common/src/commonMain/resources/MR/vi/strings.xml b/apps/multiplatform/common/src/commonMain/resources/MR/vi/strings.xml new file mode 100644 index 0000000000..693a261be1 --- /dev/null +++ b/apps/multiplatform/common/src/commonMain/resources/MR/vi/strings.xml @@ -0,0 +1,88 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string name="alert_text_decryption_error_n_messages_failed_to_decrypt">%1$d tin nhắn không thể giải mã.</string> + <string name="moderated_items_description">%1$d tin nhắn đã bị xóa bởi %2$s</string> + <string name="group_info_section_title_num_members">%1$s THÀNH VIÊN</string> + <string name="learn_more_about_address">Thông tin về địa chỉ SimpleX</string> + <string name="address_section_title">Địa chỉ</string> + <string name="abort_switch_receiving_address_confirm">Hủy bỏ</string> + <string name="accept_contact_button">Chấp nhận</string> + <string name="one_time_link_short">liên kết dùng một lần</string> + <string name="add_contact_tab">Thêm liên hệ</string> + <string name="about_simplex_chat">Thông tin về SimpleX Chat</string> + <string name="smp_servers_add">Thêm máy chủ…</string> + <string name="about_simplex">Thông tin về SimpleX</string> + <string name="group_member_role_admin">quản trị viên</string> + <string name="button_add_welcome_message">Thêm lời chào</string> + <string name="contact_wants_to_connect_via_call">%1$s muốn kết nối với bạn qua</string> + <string name="accept">Chấp nhận</string> + <string name="alert_text_decryption_error_too_many_skipped">%1$d tin nhắn đã bị bỏ qua.</string> + <string name="users_add">Thêm hồ sơ</string> + <string name="integrity_msg_skipped">%1$d tin nhắn bị bỏ qua</string> + <string name="send_disappearing_message_1_minute">1 phút</string> + <string name="send_disappearing_message_5_minutes">5 phút</string> + <string name="accept_feature">Chấp nhận</string> + <string name="v4_3_improved_server_configuration_desc">Thêm máy chủ bằng cách quét mã QR.</string> + <string name="network_settings">Cài đặt mạng nâng cao</string> + <string name="users_delete_all_chats_deleted">Tất cả các cuộc hội thoại và tin nhắn sẽ bị xóa - quá trình này không thể được hoàn tác!</string> + <string name="abort_switch_receiving_address_question">Hủy bỏ việc đổi địa chỉ?</string> + <string name="abort_switch_receiving_address_desc">Việc thay đổi địa chỉ sẽ bị hủy bỏ. Địa chỉ nhận cũ tiếp tục được sử dụng.</string> + <string name="send_disappearing_message_30_seconds">30 giây</string> + <string name="accept_connection_request__question">Chấp nhận yêu cầu kết nối?</string> + <string name="accept_contact_incognito_button">Chấp nhận bằng hồ sơ ẩn danh</string> + <string name="smp_servers_preset_add">Thêm các máy chủ được cài sẵn</string> + <string name="smp_servers_add_to_another_device">Thêm vào một thiết bị khác</string> + <string name="callstatus_accepted">cuộc gọi được chấp nhận</string> + <string name="conn_event_ratchet_sync_started">đồng ý mã hóa…</string> + <string name="snd_conn_event_ratchet_sync_started">đồng ý mã hóa cho %s</string> + <string name="v5_2_more_things">Một vài điều nữa</string> + <string name="accept_call_on_lock_screen">Chấp nhận</string> + <string name="all_app_data_will_be_cleared">Tất cả dữ liệu đã bị xóa.</string> + <string name="chat_item_ttl_month">1 tháng</string> + <string name="chat_item_ttl_week">1 tuần</string> + <string name="abort_switch_receiving_address">Hủy bỏ việc đổi địa chỉ</string> + <string name="v4_2_group_links_desc">Các quản trị viên có thể tạo liên kết để tham gia nhóm.</string> + <string name="chat_item_ttl_day">Một ngày</string> + <string name="color_secondary_variant">Biến thể của màu thứ cấp</string> + <string name="all_group_members_will_remain_connected">Tất cả các thành viên trong nhóm vẫn sẽ được giữ kết nối.</string> + <string name="clear_note_folder_warning">Tất cả tin nhắn sẽ bị xóa - Quá trình này không thể hoàn tác được!</string> + <string name="block_member_desc">Tất cả các tin nhắn mới từ %s sẽ bị ẩn!</string> + <string name="turn_off_battery_optimization_button">Cho phép</string> + <string name="color_primary">Màu sơ cấp</string> + <string name="network_enable_socks_info">Truy cập các máy chủ thông qua SOCKS proxy tại cổng %d? Proxy phải được khởi động trước khi bật cài đặt này.</string> + <string name="add_address_to_your_profile">Thêm địa chỉ vào hồ sơ để các liên hệ của bạn có thể dễ dàng chia sẻ với mọi người. Bản cập nhật hồ sơ cũng sẽ được gửi tới các liên hệ hiện thời.</string> + <string name="allow_disappearing_messages_only_if">Cho phép nhắn tin nhắn tự xóa chỉ khi liên hệ của bạn cũng cho phép</string> + <string name="allow_verb">Cho phép</string> + <string name="above_then_preposition_continuation">theo như ở trên, thì:</string> + <string name="clear_chat_warning">Tất cả tin nhắn sẽ bị xóa - Quá trình này không thể hoàn tác được! Tin nhắn sẽ CHỈ bị xóa ở phía bạn.</string> + <string name="color_primary_variant">Biến thể của màu sơ cấp</string> + <string name="color_secondary">Màu thứ cấp</string> + <string name="allow_calls_only_if">Cho phép gọi điện chỉ khi liên hệ của bạn cũng cho phép.</string> + <string name="v5_3_new_interface_languages">6 ngôn ngữ giao diện mới</string> + <string name="v5_1_self_destruct_passcode_descr">Tất cả dữ liệu sẽ bị xóa khi nó được nhập vào.</string> + <string name="allow_voice_messages_question">Cho phép tin nhắn thoại?</string> + <string name="allow_irreversible_message_deletion_only_if">Cho phép xóa tin nhắn theo cách không thể phục hồi chỉ khi liên hệ của bạn cũng cho phép điều đó. (24 giờ)</string> + <string name="allow_your_contacts_irreversibly_delete">Cho phép các liên hệ của bạn xóa tin nhắn đã gửi theo cách không thể phục hồi. (24 giờ)</string> + <string name="allow_your_contacts_to_send_disappearing_messages">Cho phép các liên hệ của bạn gửi tin nhắn tự xóa.</string> + <string name="allow_message_reactions_only_if">Cho phép thả biểu tượng cảm xúc chỉ khi liên hệ của bạn cũng cho phép.</string> + <string name="allow_voice_messages_only_if">Cho phép tin nhắn thoại chỉ khi liên hệ của bạn cũng cho phép.</string> + <string name="allow_your_contacts_adding_message_reactions">Cho phép liên hệ của bạn thả biểu tượng cảm xúc.</string> + <string name="allow_your_contacts_to_call">Cho phép các liên hệ của bạn gọi cho bạn.</string> + <string name="allow_your_contacts_to_send_voice_messages">Cho phép các liên hệ của bạn gửi tin nhắn thoại.</string> + <string name="allow_direct_messages">Cho phép gửi tin nhắn trực tiếp tới các thành viên.</string> + <string name="allow_to_delete_messages">Cho phép xóa tin nhắn đã gửi một cách không thể phục hồi. (24 giờ)</string> + <string name="allow_to_send_disappearing">Cho phép gửi tin nhắn tự xóa.</string> + <string name="allow_to_send_voice">Cho phép gửi tin nhắn thoại.</string> + <string name="allow_message_reactions">Cho phép thả biểu tượng cảm xúc.</string> + <string name="allow_to_send_files">Cho phép gửi các tập tin, ảnh và video.</string> + <string name="notifications_mode_service">Luôn luôn bật</string> + <string name="all_your_contacts_will_remain_connected">Tất cả liên hệ của bạn vẫn sẽ được giữ kết nối.</string> + <string name="all_your_contacts_will_remain_connected_update_sent">Tất cả liên hệ của bạn vẫn sẽ được giữ kết nối. Bản cập nhật hồ sơ sẽ được gửi tới các liên hệ của bạn.</string> + <string name="chat_preferences_always">luôn luôn</string> + <string name="connect_plan_already_connecting">Đã kết nối rồi!</string> + <string name="connect_plan_already_joining_the_group">Đã tham gia nhóm rồi!</string> + <string name="always_use_relay">Luôn sử dụng relay</string> + <string name="rcv_group_and_other_events">và %d sự kiện khác</string> + <string name="keychain_is_storing_securely">Android Keystore được sử dụng để lưu trữ passphrase - nó cho phép dịch vụ thông báo hoạt động.</string> + <string name="keychain_allows_to_receive_ntfs">Android Keystore sẽ được sử dụng để lưu trữ passphrase một cách an toàn sau khi bạn khởi động lại ứng dụng hoặc thay đổi passphrase - nó cho phép tiếp nhận thông báo.</string> +</resources> \ No newline at end of file diff --git a/apps/multiplatform/common/src/commonMain/resources/MR/zh-rCN/strings.xml b/apps/multiplatform/common/src/commonMain/resources/MR/zh-rCN/strings.xml index 6075de500b..3873aac128 100644 --- a/apps/multiplatform/common/src/commonMain/resources/MR/zh-rCN/strings.xml +++ b/apps/multiplatform/common/src/commonMain/resources/MR/zh-rCN/strings.xml @@ -64,7 +64,7 @@ <string name="info_row_connection">连接</string> <string name="connect_via_invitation_link">通过一次性链接进行连接?</string> <string name="connect_via_contact_link">通过联系人地址进行连接?</string> - <string name="connect_via_group_link">加群吗?</string> + <string name="connect_via_group_link">加入群组?</string> <string name="connect_via_link_or_qr">通过群组链接/二维码连接</string> <string name="always_use_relay">总是通过中继连接</string> <string name="allow_your_contacts_irreversibly_delete">允许您的联系人不不可逆地删除已发送消息。(24小时)</string> @@ -1630,4 +1630,13 @@ <string name="member_info_member_blocked">已封禁</string> <string name="snd_group_event_member_blocked">你封禁了 %s</string> <string name="snd_group_event_member_unblocked">你解封了 %s</string> + <string name="welcome_message_is_too_long">欢迎消息太大了</string> + <string name="database_migration_in_progress">正在进行数据库迁移。 +\n可能需要几分钟时间。</string> + <string name="message_too_large">消息太大了</string> + <string name="call_service_notification_video_call">视频通话</string> + <string name="call_service_notification_audio_call">语音通话</string> + <string name="call_service_notification_end_call">结束通话</string> + <string name="unable_to_open_browser_title">打开浏览器出错</string> + <string name="unable_to_open_browser_desc">没有默认网络浏览器无法使用通话功能。请在系统中配置默认浏览器并和开发者分享更多信息。</string> </resources> \ No newline at end of file diff --git a/apps/multiplatform/gradle.properties b/apps/multiplatform/gradle.properties index 5a556d5f82..5d3863f10a 100644 --- a/apps/multiplatform/gradle.properties +++ b/apps/multiplatform/gradle.properties @@ -25,11 +25,11 @@ android.nonTransitiveRClass=true android.enableJetifier=true kotlin.mpp.androidSourceSetLayoutVersion=2 -android.version_name=5.5.6 -android.version_code=187 +android.version_name=5.6-beta.0 +android.version_code=189 -desktop.version_name=5.5.6 -desktop.version_code=32 +desktop.version_name=5.6-beta.0 +desktop.version_code=33 kotlin.version=1.8.20 gradle.plugin.version=7.4.2 diff --git a/apps/simplex-broadcast-bot/src/Broadcast/Options.hs b/apps/simplex-broadcast-bot/src/Broadcast/Options.hs index bce0f94972..57986874aa 100644 --- a/apps/simplex-broadcast-bot/src/Broadcast/Options.hs +++ b/apps/simplex-broadcast-bot/src/Broadcast/Options.hs @@ -80,6 +80,7 @@ mkChatOpts BroadcastBotOpts {coreOptions} = chatCmdLog = CCLNone, chatServerPort = Nothing, optFilesFolder = Nothing, + optTempDirectory = Nothing, showReactions = False, allowInstantFiles = True, autoAcceptFileSize = 0, diff --git a/apps/simplex-directory-service/src/Directory/Options.hs b/apps/simplex-directory-service/src/Directory/Options.hs index 78157d7e11..0d64064d7d 100644 --- a/apps/simplex-directory-service/src/Directory/Options.hs +++ b/apps/simplex-directory-service/src/Directory/Options.hs @@ -80,6 +80,7 @@ mkChatOpts DirectoryOpts {coreOptions} = chatCmdLog = CCLNone, chatServerPort = Nothing, optFilesFolder = Nothing, + optTempDirectory = Nothing, showReactions = False, allowInstantFiles = True, autoAcceptFileSize = 0, diff --git a/blog/20240314-simplex-chat-v5-6-quantum-resistance-signal-double-ratchet-algorithm.md b/blog/20240314-simplex-chat-v5-6-quantum-resistance-signal-double-ratchet-algorithm.md new file mode 100644 index 0000000000..ea4249f250 --- /dev/null +++ b/blog/20240314-simplex-chat-v5-6-quantum-resistance-signal-double-ratchet-algorithm.md @@ -0,0 +1,260 @@ +--- +layout: layouts/article.html +title: "SimpleX Chat v5.6 (beta): adding quantum resistance to Signal double ratchet algorithm" +date: 2024-03-14 +previewBody: blog_previews/20240314.html +image: images/20240314-kem.jpg +imageWide: true +permalink: "/blog/20240314-simplex-chat-v5-6-quantum-resistance-signal-double-ratchet-algorithm.html" +--- + +# SimpleX Chat v5.6 beta: adding quantum resistance to Signal double ratchet algorithm + +This is a major upgrade for SimpleX messaging protocols, we are really proud to present the results of the hard work of our whole team on the [Pi day](https://en.wikipedia.org/wiki/Pi_Day). + +This post also covers various aspects of end-to-end encryption, compares different messengers, and explains why and how quantum-resistant encryption is added to SimpleX Chat: + +- [Why do we need end-to-end encryption?](#why-do-we-need-end-to-end-encryption) +- [Why encryption is even allowed?](#why-encryption-is-even-allowed) +- [End-to-end encryption security: attacks and defense.](#end-to-end-encryption-security-attacks-and-defense) + - Compromised message size - mitigated by padding messages to a fixed block size. + - Compromised confidentiality - mitigated by repudiation (deniability). + - Compromised message keys - mitigated by forward secrecy. + - Compromised long-term or session - mitigated by break-in recovery. + - Man-in-the-middle attack - mitigated by two-factor key exchange. + - "Record now, decrypt later" attacks - mitigated by post-quantum cryptography. +- [How secure is encryption in different messengers?](#how-secure-is-end-to-end-encryption-in-different-messengers) +- [Adding quantum resistance to Signal double ratchet algorithm.](#adding-quantum-resistance-to-signal-double-ratchet-algorithm) +- [When can you start using quantum resistant chats?](#when-can-you-start-using-quantum-resistant-chats) +- [Next for post-quantum crypto - all direct chats, small groups and security audit.](#next-for-post-quantum-crypto---all-direct-chats-small-groups-and-security-audit) + +## Why do we need end-to-end encryption? + +The objective of end-to-end encryption is to make any potential attackers, such as traffic observers or communication providers who pass the messages between senders and recipients, unable to recover *any* message content or meaningful information about the messages, even if these attackers possess very advanced computing and mathematical capabilities. + +While human eyes are unable to see any difference between simply scrambled and encrypted messages, the difference between unreadable scrambling and unbreakable encryption can be as huge as just a few seconds to unscramble a message on an average laptop and more time than the Universe existed required to break the encryption on the most powerful computer in the world. + +Achieving the latter requires a lot of mathematical precision in both the cryptographic algorithms and in how they are used, and effectively makes encrypted messages indistinguishable from random noise, without any discoverable patterns or statistical irregularities that a computer could use to break the message encryption any faster than it it would take to try every possible combination of bits in the key. + +End-to-end encryption is an important component of our individual and business security, privacy and sovereignty. Having our private communications protected from any observers is both the natural condition and our inalienable human right. + +It's very sad to see the same people who keep their financial affairs private to protect from financial crimes, lock their doors to protect from thieves, and curtain their windows to protect from the occasional prying eyes, when it comes to protecting their personal lives from the data criminals say "we don't care about privacy, we have nothing to hide". Everybody's safety depends on keeping their affairs and relations private, not visible to a vast and ruthless data gathering machines, that abuse our data for commercial gain, without any regard to our interests or even [the safety of our families and children](https://nmdoj.gov/press-release/attorney-general-raul-torrez-files-lawsuit-against-meta-platforms-and-mark-zuckerberg-to-protect-children-from-sexual-abuse-and-human-trafficking/). + +## Why encryption is even allowed? + +<img src="./images/20240314-djb.jpg" class="float-to-right"> + +If encryption is such a powerful tool to protect our lives, it also can be used to conceal crimes, so why the governments don't consider it similar to arms, and don't heavily regulate its use? + +Prior to 1996 the cryptography was considered munition, and its export from the United States was controlled under this category, [alongside flamethrowers and B-1 bombers](https://cr.yp.to/export/1995/0303-eff.txt). When [Daniel J. Bernstein](https://en.wikipedia.org/wiki/Daniel_J._Bernstein) (DJB), then a student of Mathematics at University of California, Berkeley, wanted to publish the paper and the source code of his Snuffle encryption system, the Office of Defense Trade Controls of the Department of State (DOS) after more than a year of correspondence requested that DJB registers as the arms dealer. + +In 1995 DJB represented by the Electronic Frontier Foundation brought a case against the DOS to overturn cryptography restrictions. The ruling in the case declared that the export control over cryptographic software and related technical data constitute [an impermissible infringement on speech in violation of the First Amendment](https://cr.yp.to/export/1996/1206-order.txt). This decision resulted in regulatory changes, reducing controls on encryption exports, particularly for open-source algorithms. The case continued until 2003, when it was put on hold after the commitment from the US government not to enforce any remaining regulations. + +This case is very important for the whole industry, as to this day we can freely create and use open-source cryptography without export control restrictions. It also shows the importance of engaging with the system and challenging its views in an open dialogue, rather than either blindly complying or violating regulations. + +DJB role for cryptography and open-source goes beyond this case – many cryptographic algorithms that are considered to be the most advanced, and many of which we use in SimpleX Chat, were designed and developed by him: + +- Ed25519 cryptographic signature algorithm we use to authorize commands to the servers. +- NaCL library with cryptobox and secretbox constructions that combine X25519 Diffie-Hellman key agreement with Salsa20 encryption and Poly1305 authentication. We use cryptobox to encrypt messages in two of three encryption layers and secretbox to encrypt files. +- Streamlined NTRU Prime algorithm for quantum resistant key agreement that we used in the protocol for linking mobile app with desktop, and now added to Signal double ratchet algorithm, as explained below. + +Without DJB's work the world would have been in a much worse place privacy- and security-wise. + +Daniel, we are really grateful for the work you did and continue doing. Thank you, and congratulations on the International Mathematics Day! + +## End-to-end encryption security: attacks and defense + +End-to-end encryption is offered by many messaging apps and protocols, but the security of different implementations are not the same. While many users know about the importance of forward secrecy - the quality of end-to-end encryption that preserves security of the encryption of the past messages, even if the keys used to encrypt some of the messages were compromised - there are many other qualities that protect from different attacks. Below there is the overview of these attacks and the properties of end-to-end encryption schemes that mitigate these attacks. + +### 1. Compromised message size - mitigated by padding messages to a fixed block size + +While the content encryption is the most important, concealing the actual message size is almost as important for several reasons: + +- attacker able to observe even approximate message sizes can use these sizes as an additional signal for machine learning to de-anonymise the users and to categorize the relationships between the users. +- if a messenger conceals the routing of the messages to hide the transport identities (IP addresses) of senders and recipients, message sizes can be used by traffic observers to confirm the fact of communication with a much higher degree of certainty. + +The only effective mitigation to these attacks is to pad all messages to a fixed size. Using space-efficient schemes like Padme, or padding to encryption block size is ineffective for mitigating these attacks, as they still allow differentiating message sizes. + +To the best of our knowledge the only messenger other than SimpleX Chat that padded all messages to a fixed packet size was [Pond](https://github.com/agl/pond) - SimpleX design as an evolution of it. + +### 2. Compromised confidential messages - mitigated by repudiation (deniability) + +Many users are very interested in having ability to irreversibly delete sent messages from the recipients devices. But not only would this ability violate data sovereignty of device owners, it is also completely ineffective, as the recipients could simply put the device offline or use a modified client app to ignore message deletion requests. While SimpleX Chat provides such features as [disappearing messages](./20230103-simplex-chat-v4.4-disappearing-messages.md#disappearing-messages) and the ability to [irreversibly delete sent messages](./20221206-simplex-chat-v4.3-voice-messages.md#irreversible-message-deletion) provided both parties agree to that, these are convenience features, and they cannot be considered security measures. + +The solution to that is well known to cryptographers - it is the quality of the encryption algorithms called "repudiation", sometimes also called "deniability". This is the ability of the senders to plausibly deny having sent any messages, because cryptographic algorithms used to encrypt allow recipients forging these messages on their devices, so while the encryption proves authenticity of the message to the recipient, it cannot be used as a proof to any third party. + +Putting it all in a simpler language - a sender can claim that the recipient forged messages on their device, and deny ever having sent them. The recipient will not be able to provide any cryptographic proof. This quality makes digital conversation having the same qualities as private off-the-record conversation - that's why the family of algorithms that provide these qualities are called off-the-record (OTR) encryption. + +Repudiation is still a rather new concept - the first off-the-record algorithms were proposed in 2004 and were only offered to a wide range of users in Signal messenger. This concept is still quite badly understood by users and society, and yet to have been used as the defense in any public court cases, as legal systems evolve much slower than technology. In high profile cases repudiation can be used as an effective evidence for the defense. + +Repudiation in messaging systems can be undermined by adding cryptographic signature to the protocol, and many messengers that use OTR encryption algorithms do exactly that, unfortunately. SimpleX Chat does not use signature in any part of client-client protocol, but the signature is currently used when authorizing sender's messages to the relays. v5.7 will improve deniability by enabling a different authorization scheme that will provide full-stack repudiation in all protocol layers. + +### 3. Compromised message keys - mitigated by forward secrecy + +The attacker who obtained or broke the keys used to encrypt individual messages, may try to use these keys to decrypt past or future messages. This attack is unlikely to succeed via message interception, and it is likely to require breaking into the device storage. But in any case, if the key was broken or obtained in some other way it's important that this key cannot be used to decrypt other messages - this is achieved by forward secrecy. + +This property is well understood by the users, and most messengers that focus on privacy and security, with the exception of Session, provide forward secrecy as part of their encryption schemes design. + +### 4. Compromised long-term or session - mitigated by break-in recovery + +This attack is much less understood by the users, and forward secrecy does not protect from it. Arguably, it's almost impossible to compromise individual message keys without compromising long-term or session keys. So the ability of the encryption to recover from break-in (attacker making a copy of the device data without retaining the ongoing access) is both very and pragmatic - break-in attacks are simpler to execute on mobile devices during short-term device access than long-term ongoing compromise. + +Out of all encryption algorithms known to us only Signal double ratchet algorithm provides the ability to encryption security after break-ins. This recovery happens automatically and transparently to the users, without them doing anything special even knowing about break-in, by simply sending messages. Every time one of the communication parties replies to another party message, new random keys are generated and previously stolen keys become useless. + +Signal double ratchet algorithm is used in Signal, Cwtch and SimpleX Chat. This is why you cannot use SimpleX Chat profile on more than one device at the same time - the encryption scheme rotates the long term keys, randomly, and keys on another device become useless, as they would become useless for the attacker who stole them. Security always has some costs to the convenience. + +### 5. Man-in-the-middle attack - mitigated by two-factor key exchange + +Many people incorrectly believe that security of end-to-end encryption cannot be broken by communication provider. But end-to-end encryption is as secure as key exchange. While any intermediary passing the keys between senders and recipients cannot recover the private keys from the public keys, they can simply replace the passed public keys with their own and then proxy all communication between the users having full access to the original messages. So instead of having an end-to-end encrypted channel, users would have two half-way encrypted channels - between users and their communication intermediary. + +Pictures below illustrate how this attack works for RSA encryption. + +#### 1) Alice sends the key to Bob (e.g. via p2p network or via the messaging server). + +![Public key is shared](./images/20240314-mitm1.jpg) + +#### 2) Now Bob can send encrypted messages to Alice - he believes they are secure! + +![Message is encrypted](./images/20240314-mitm2.jpg) + +#### 3) But the key could have been intercepted and substituted by Tom (the attacker, or a service provider). + +![Key is intercepted and replaced](./images/20240314-mitm3.jpg) + +#### 4) Now the attacker can read the messages without Alice and Bob knowing. + +![End-to-end encryption is compromised](./images/20240314-mitm4.jpg) + +The attack on Diffie-Hellman (or on quantum-resistant) key exchange, when both parties send their public keys (or public key and ciphertext), requires the attacker to intercept and replace both keys, but the outcome remains the same - if all communication is passed via a single channel, as it is usually the case with communication services, then any attacker that has inside access to the service can selectively compromise some of the conversations. Two years ago I wrote the post about this [vulnerability of end-to-end encryption to MITM attacks](https://www.poberezkin.com/posts/2022-12-07-why-privacy-needs-to-be-redefined.html#e2e-encryption-is-not-bulletproof). + +All known mitigations of this attack require using the secondary communication channel to ensure that the keys have not been substituted. The most secure approach is to make user's key (or key fingerprint) a part of the user's address or connection link, thus making two-factor key exchange non-optional. This approach is used in Session, Cwtch and SimpleX Chat. + +A less secure approach is to provide users an optional way to compare security codes - this is what is done by Signal, Element and many other messengers. The problem with this post-key-exchange verification is that it is optional, and is usually skipped by the majority of the users. Also, this security code can change because the user changed the device, or as a result of the attack via the service provider. When you see in the client app the notification that the security code changed, it's pointless to ask in the same messenger whether the device was changed, as if it were an attack, the attacker would simply confirm it. Instead, the security code needs to be re-validated again via another channel. A good security practice for the users would be to warn their communication partners about the intention to switch the device in advance, before the security code is changed. + +### 6. "Record now, decrypt later" attacks - mitigated by post-quantum cryptography. + +This is the idea based on the assumption that commercially viable quantum computers will become available during the next 10 years, and then they can use time-efficient [Shor's algorithm](https://en.wikipedia.org/wiki/Shor%27s_algorithm) developed in 1994 to break asymmetric encryption with quantum computer (symmetric encryption is not vulnerable to this algorithm). + +Post-quantum cryptography, or encryption algorithms that are resistant to quantum computers, has been the area of ongoing research for several decades, and there are some algorithms that _might_ protect from quantum computers. It's important to account for these limitations: + +- _none of the post-quantum algorithms are proven to be secure_ against quantum or conventional computers. They are usually referred to as "believed to be secure" by the researchers and security experts. There is continuous research to break post-quantum algorithms, and to prove their security, and many of these algorithms are broken every year, often by conventional computers. +- because of the lack of proofs or guarantees that post-quantum cryptography delivers on its promise, these algorithms can only be used in hybrid encryption schemes to augment conventional cryptography, and never to replace it, contrary to some expert recommendations, as DJB explains in this [blog post](https://blog.cr.yp.to/20240102-hybrid.html). +- they are much more computationally expensive and less space efficient, and the encryption schemes have to balance their usability and security. +- many of post-quantum algorithms have known patent claims, so any system deploying them accepts the risks of patent litigation. +- the silver lining to these limitations is that the risk of appearance of commercially viable quantum computers in the next decade may be exaggerated. + +So, to put it bluntly and provocatively, post-quantum cryptography can be compared with a remedy against the illness that nobody has, without any guarantee that it will work. The closest analogy in the history of medicine is _snake oil_. + +<img src="./images/20240314-datacenter.jpg" width="400" class="float-to-right"> + +Does it mean that post-quantum cryptography is useless and should be ignored? Absolutely not. The risks of "record now, decrypt later" attacks are real, particularly for high profile targets, including millions of people - journalists, whistle-blowers, freedom-fighters in oppressive regimes, and even some ordinary people who may become targets of information crimes. Large scale collection of encrypted communication data is ongoing, and this data may be used in the future. So having the solution that _may_ protect you (post-quantum cryptography), as long as it doesn't replace the solution that is _proven_ to protect you (conventional cryptography), is highly beneficial in any communication solution, and has already been deployed in many tools and in some messengers. + +## How secure is end-to-end encryption in different messengers? + +This comparison may be incorrect in some of the columns. We apologize if some of the points are incorrect, please let us know about any mistakes so we can amend them! + +The main objective here is to establish the framework for comparing the security of end-to-end encryption schemes, and to highlight any areas for improvement, not to criticize any implementations. + +![Messengers comparison](./images/20240314-comparison.jpg) + +<sup>1</sup> Repudiation in SimpleX Chat will include client-server protocol from v5.7 or v5.8. Currently it is implemented but not enabled yet, as its support requires releasing the relay protocol that breaks backward compatibility. + +<sup>2</sup> Post-quantum cryptography is available in beta version, as opt-in only for direct conversations. See below how it will be rolled-out further. + +Some columns are marked with a yellow checkmark: +- when messages are padded, but not to a fixed size. +- when repudiation does not include client-server connection. In case of Cwtch it appears that the presence of cryptographic signatures compromises repudiation (deniability), but it needs to be clarified. +- when 2-factor key exchange is optional, via security code verification. +- when post-quantum cryptography is only added to the initial key agreement, does not protect break-in recovery. + +## Adding quantum resistance to Signal double ratchet algorithm + +We have been exploring post-quantum cryptography since early 2022, when SimpleX Chat was first released, and we did not want to be pioneers here - cryptography is critically important to make it right. + +We hoped to adopt the algorithm that will be standardized by NIST, but the standardization process turned out to be hugely disappointing, and the ML-KEM (Kyber) algorithm that was accepted as a standard was modified to remove an important hashing step (see the lines 304-314 in [the published spec](https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.203.ipd.pdf))), that mitigates the attacks via a compromised random numbers generator, ignoring strong criticism from many expert cryptographers, including DJB (see [this discussion](https://groups.google.com/a/list.nist.gov/g/pqc-forum/c/WFRDl8DqYQ4) and [the comments NIST received](https://csrc.nist.gov/files/pubs/fips/203/ipd/docs/fips-203-initial-public-comments-2023.pdf)). To make it even worse, the calculation of security levels of Kyber appears to have been done incorrectly, and overall, the chosen Kyber seems worse than rejected NTRU according to [the analysis by DJB](https://blog.cr.yp.to/20231003-countcorrectly.html). + +We also analyzed the encryption schemes proposed in Tutanota in 2021, and another scheme adopted by Signal last year, and published the design of [quantum resistant double ratchet algorithm](https://github.com/simplex-chat/simplex-chat/blob/stable/docs/rfcs/2023-09-30-pq-double-ratchet.md) that we believe provides better security than these schemes: + +- unlike Tutanota design, it augments rather than replaces conventional cryptography, and also avoids using signatures when the new keys are agreed (ratchet steps). +- unlike other messengers that adopted or plan to adopt ML-KEM, we used Streamlined NTRU Prime algorithm (specifically, strnup761) that has no problems of ML-KEM, no known patent claims, and seems less likely to be compromised than other algorithms - it is exactly the same algorithm that is used in SSH. You can review the comparison of [the risks of various post-quantum algorithms](https://ntruprime.cr.yp.to/warnings.html). +- unlike Signal design that only added quantum resistance to the initial key exchange by replacing X3DH key agreement scheme with post-quantum [PQXDH](https://signal.org/docs/specifications/pqxdh/), but did not improve Signal algorithm itself, our design added quantum-resistant key agreements inside double algorithm, making its break-in recovery property also quantum resistant. + +The we could make break-in recovery property of Signal algorithm quantum-resistant, and why, probably, Signal didn't, is because irrespective of the message size SimpleX Chat uses a fixed block size of 16kb to provide security and privacy against any traffic observers and against messaging relays. So we had an extra space to accommodate additional ~2.2kb worth of keys in each message without any additional traffic costs. + +In case when the message is larger than the remaining block size, e.g. when the message contains image or link preview, or a large text, we used [zstd compression](https://en.wikipedia.org/wiki/Zstd) to provide additional space for the required keys without reducing image preview quality or creating additional traffic - our previously inefficient JSON encoding of chat messages was helpful in this case. + +<image src="./images/20240314-kem.jpg" alt="Double KEM agreement" width="500" class="float-to-right"> + +The additional challenge in adding sntrup761 was that unlike Diffie-Hellman key exchange, which is symmetric (that is, the parties can share their public keys in any order and the shared secret can be computed from two public keys), sntrup761 is interactive key-encapsulation mechanism (KEM) that requires that one party shares its public key, and another party uses it to encapsulate (which is a fancy term for "encrypt" - that is why it has asterisks in the image) a random shared secret, and sends it back - making it somewhat similar to RSA cryptography. But this asymmetric design does not fit the symmetric operation of Signal double ratchet algorithm, where both sides need to generate random public keys and to compute new shared secrets every time messaging direction changes for them. So to achieve that symmetry we had to use two KEM key agreements running in parallel, in a lock-step fashion, as shown on the diagram. In this case both parties generate random public keys and also use the public key of another party to encapsulate the random shared secret. Effectively, this design adds a double quantum-resistant key agreement to double ratchet algorithm steps that provide break-in recovery. + +## When can you start using quantum resistant chats? + +<img src="./images/20240314-pq1.png" width="288"> <img src="./images/20240314-pq2.png" width="288"> <img src="./images/20240314-pq3.png" width="288"> + +Quantum resistant double ratchet algorithm is already available in v5.6 (beta) of SimpleX Chat as an optional feature that can be enabled for the new and, separately, for the existing direct conversations. + +The reason it is released as opt-in is because once the conversation is upgraded to be quantum resistant, it will no longer work in the previous version of the app, and we see this ability to downgrade the app if something is not working correctly as very important for the users who use the app for critical communications. + +**To enable quantum resistance for the new conversations**: +- open the app settings (tap user avatar in the top left corner). +- scroll down to _Developer tools_ and open them. +- enable _Show developer options_ toggle. +- now you will see _Post-quantum E2EE_ toggle - enable it as well. + +Now all new contacts you add to the app will use quantum resistant Signal double ratchet algorithm. + +Once you have enabled it for the new contacts, you can also **enable it for some of the existing contacts**: +- open the chat with the contact you want to upgrade to be quantum resistant. +- tap contact name above the chat. +- tap Allow PQ encryption. +- exchange several messages back and forth with that contact - the quantum resistant double ratchet will kick in after 3-5 messages (depending on how many messages you send in each direction), and you will see the notice in the chat once it enables. + +## Next for post-quantum crypto - all direct chats, small groups and security audit + +We will be making quantum resistance default for all direct chats in v5.7, and they will be upgraded for all users without any action. + +We will also be adding quantum resistance to small groups up to 10-20 members. Computing cryptographic keys is much slower, in comparison, and it would be very inefficient (and completely unnecessary) for large public groups. + +We have also arranged a 3rd party cryptographic review of our protocol and encryption schemes design for June/July 2024 - it will cover the additions to SimpleX protocols since [the previous security audit](./20221108-simplex-chat-v4.2-security-audit-new-website.md) in November 2022, including [XFTP protocol](./20230301-simplex-file-transfer-protocol.md) we use for file transfers and quantum resistant Signal double ratchet algorithm we just released in this beta version. + +In November 2024 we will be conducting further implementation audit, with double the scope of our 2022 audit. + +Security audits are very expensive, as they require employing exceptionally competent engineers and cryptographers, and it does stretch our budgets - so any donations to help us cover the costs would be hugely helpful. + +That's it for now! + +Thank you for helping us improve the app, and look forward to your feedback. + +## SimpleX network + +Some links to answer the most common questions: + +[How can SimpleX deliver messages without user identifiers](./20220511-simplex-chat-v2-images-files.md#the-first-messaging-platform-without-user-identifiers). + +[What are the risks to have identifiers assigned to the users](./20220711-simplex-chat-v3-released-ios-notifications-audio-video-calls-database-export-import-protocol-improvements.md#why-having-users-identifiers-is-bad-for-the-users). + +[Technical details and limitations](https://github.com/simplex-chat/simplex-chat#privacy-technical-details-and-limitations). + +[How SimpleX is different from Session, Matrix, Signal, etc.](https://github.com/simplex-chat/simplex-chat/blob/stable/README.md#frequently-asked-questions). + +Please also see our [website](https://simplex.chat). + +## Help us with donations + +Huge thank you to everybody who donates to SimpleX Chat! + +As I wrote, we are planning a 3rd party security audit for the protocols and cryptography design, and also for an app implementation, and it would hugely help us if some part of this $50,000+ expense is covered with donations. + +We are prioritizing users privacy and security - it would be impossible without your support. + +Our pledge to our users is that SimpleX protocols are and will remain open, and in public domain, - so anybody can build the future implementations of the clients and the servers. We are building SimpleX network based on the same principles as email and web, but much more private and secure. + +Your donations help us raise more funds – any amount, even the price of the cup of coffee, makes a big difference for us. + +See [this section](https://github.com/simplex-chat/simplex-chat/tree/master#help-us-with-donations) for the ways to donate. + +Thank you, + +Evgeny + +SimpleX Chat founder diff --git a/blog/20240323-simplex-network-privacy-non-profit-v5-6-quantum-resistant-e2e-encryption-simple-migration.md b/blog/20240323-simplex-network-privacy-non-profit-v5-6-quantum-resistant-e2e-encryption-simple-migration.md new file mode 100644 index 0000000000..f036b95f1f --- /dev/null +++ b/blog/20240323-simplex-network-privacy-non-profit-v5-6-quantum-resistant-e2e-encryption-simple-migration.md @@ -0,0 +1,51 @@ +--- +layout: layouts/article.html +title: "SimpleX network: real privacy and stable profits, non-profit protocol governance, v5.6 released with quantum resistant e2e encryption and simple profile migration" +date: 2024-03-23 +# previewBody: blog_previews/20240314.html +preview: TODO +draft: true +# image: images/20240314-kem.jpg +# imageWide: true +permalink: "/blog/20240323-simplex-network-privacy-non-profit-v5-6-quantum-resistant-e2e-encryption-simple-migration.html" +--- + +# SimpleX network: real privacy and stable profits, non-profit protocol governance, v5.6 released with quantum resistant e2e encryption and simple profile migration + +This is a stub for release permalink + +TODO + +## SimpleX network + +Some links to answer the most common questions: + +[How can SimpleX deliver messages without user identifiers](./20220511-simplex-chat-v2-images-files.md#the-first-messaging-platform-without-user-identifiers). + +[What are the risks to have identifiers assigned to the users](./20220711-simplex-chat-v3-released-ios-notifications-audio-video-calls-database-export-import-protocol-improvements.md#why-having-users-identifiers-is-bad-for-the-users). + +[Technical details and limitations](https://github.com/simplex-chat/simplex-chat#privacy-technical-details-and-limitations). + +[How SimpleX is different from Session, Matrix, Signal, etc.](https://github.com/simplex-chat/simplex-chat/blob/stable/README.md#frequently-asked-questions). + +Please also see our [website](https://simplex.chat). + +## Help us with donations + +Huge thank you to everybody who donates to SimpleX Chat! + +As I wrote, we are planning a 3rd party security audit for the protocols and cryptography design, and also for an app implementation, and it would hugely help us if some part of this $50,000+ expense is covered with donations. + +We are prioritizing users privacy and security - it would be impossible without your support. + +Our pledge to our users is that SimpleX protocols are and will remain open, and in public domain, - so anybody can build the future implementations of the clients and the servers. We are building SimpleX network based on the same principles as email and web, but much more private and secure. + +Your donations help us raise more funds – any amount, even the price of the cup of coffee, makes a big difference for us. + +See [this section](https://github.com/simplex-chat/simplex-chat/tree/master#help-us-with-donations) for the ways to donate. + +Thank you, + +Evgeny + +SimpleX Chat founder diff --git a/blog/README.md b/blog/README.md index 8066f0592a..3b89628211 100644 --- a/blog/README.md +++ b/blog/README.md @@ -1,5 +1,21 @@ # Blog +Mar 14, 2024 [SimpleX Chat v5.6 (beta): adding quantum resistance to Signal double ratchet algorithm](./20240314-simplex-chat-v5-6-quantum-resistance-signal-double-ratchet-algorithm.md) + +This is a major upgrade for SimpleX Chat messaging protocol stack, I am really proud to present this work of the whole team. + +This post also covers various aspects of end-to-end encryption, compares different messengers, and explains how and why quantum-resistant encryption is added to SimpleX Chat: + +- Why do we need end-to-end encryption? +- Why encryption is even allowed? +- End-to-end encryption security: attacks and defense. +- How secure is encryption in different messengers? +- Adding quantum resistance to Signal double ratchet algorithm. +- When can you start using quantum resistant chats? +- Next for post-quantum crypto: all direct chats, small groups and security audit. + +--- + Jan 24, 2024 [SimpleX Chat: free infrastructure from Linode, v5.5 released](./20240124-simplex-chat-infrastructure-costs-v5-5-simplex-ux-private-notes-group-history.md) SimpleX Chat infrastructure on Linode: diff --git a/blog/images/20240314-comparison.jpg b/blog/images/20240314-comparison.jpg new file mode 100644 index 0000000000..34027a43a7 Binary files /dev/null and b/blog/images/20240314-comparison.jpg differ diff --git a/blog/images/20240314-datacenter.jpg b/blog/images/20240314-datacenter.jpg new file mode 100644 index 0000000000..9bb55c47c2 Binary files /dev/null and b/blog/images/20240314-datacenter.jpg differ diff --git a/blog/images/20240314-djb.jpg b/blog/images/20240314-djb.jpg new file mode 100644 index 0000000000..33551ec365 Binary files /dev/null and b/blog/images/20240314-djb.jpg differ diff --git a/blog/images/20240314-kem.jpg b/blog/images/20240314-kem.jpg new file mode 100644 index 0000000000..97d6ffdb4f Binary files /dev/null and b/blog/images/20240314-kem.jpg differ diff --git a/blog/images/20240314-mitm1.jpg b/blog/images/20240314-mitm1.jpg new file mode 100644 index 0000000000..b82e6534bb Binary files /dev/null and b/blog/images/20240314-mitm1.jpg differ diff --git a/blog/images/20240314-mitm2.jpg b/blog/images/20240314-mitm2.jpg new file mode 100644 index 0000000000..24132f21ab Binary files /dev/null and b/blog/images/20240314-mitm2.jpg differ diff --git a/blog/images/20240314-mitm3.jpg b/blog/images/20240314-mitm3.jpg new file mode 100644 index 0000000000..a20b37765a Binary files /dev/null and b/blog/images/20240314-mitm3.jpg differ diff --git a/blog/images/20240314-mitm4.jpg b/blog/images/20240314-mitm4.jpg new file mode 100644 index 0000000000..44a3a322a1 Binary files /dev/null and b/blog/images/20240314-mitm4.jpg differ diff --git a/blog/images/20240314-pq1.png b/blog/images/20240314-pq1.png new file mode 100644 index 0000000000..f3b88f943e Binary files /dev/null and b/blog/images/20240314-pq1.png differ diff --git a/blog/images/20240314-pq2.png b/blog/images/20240314-pq2.png new file mode 100644 index 0000000000..73d3dbde42 Binary files /dev/null and b/blog/images/20240314-pq2.png differ diff --git a/blog/images/20240314-pq3.png b/blog/images/20240314-pq3.png new file mode 100644 index 0000000000..0384c09276 Binary files /dev/null and b/blog/images/20240314-pq3.png differ diff --git a/cabal.project b/cabal.project index c4f2f102e8..547ec861e0 100644 --- a/cabal.project +++ b/cabal.project @@ -12,7 +12,7 @@ constraints: zip +disable-bzip2 +disable-zstd source-repository-package type: git location: https://github.com/simplex-chat/simplexmq.git - tag: 0aa4ae72286237d066c3ce2bff355638523c7095 + tag: 7b6b80cea21c7fbafffa118f1ed268411fcb79ca source-repository-package type: git diff --git a/package.yaml b/package.yaml index 7d61b0314d..ed6bc96cb1 100644 --- a/package.yaml +++ b/package.yaml @@ -1,5 +1,5 @@ name: simplex-chat -version: 5.6.0.2 +version: 5.6.0.3 #synopsis: #description: homepage: https://github.com/simplex-chat/simplex-chat#readme diff --git a/scripts/nix/sha256map.nix b/scripts/nix/sha256map.nix index 7672cde62d..b898978fcc 100644 --- a/scripts/nix/sha256map.nix +++ b/scripts/nix/sha256map.nix @@ -1,5 +1,5 @@ { - "https://github.com/simplex-chat/simplexmq.git"."0aa4ae72286237d066c3ce2bff355638523c7095" = "1jcy5p8220w8ahi4fgil5rxlj83c9qy44s6mly9jh8n9a2bwdr4d"; + "https://github.com/simplex-chat/simplexmq.git"."7b6b80cea21c7fbafffa118f1ed268411fcb79ca" = "0a665v4v1ilm2j9cxkiwqq2xlp2732h95mqaywf7qrlk03qkasfi"; "https://github.com/simplex-chat/hs-socks.git"."a30cc7a79a08d8108316094f8f2f82a0c5e1ac51" = "0yasvnr7g91k76mjkamvzab2kvlb1g5pspjyjn2fr6v83swjhj38"; "https://github.com/simplex-chat/direct-sqlcipher.git"."f814ee68b16a9447fbb467ccc8f29bdd3546bfd9" = "1ql13f4kfwkbaq7nygkxgw84213i0zm7c1a8hwvramayxl38dq5d"; "https://github.com/simplex-chat/sqlcipher-simple.git"."a46bd361a19376c5211f1058908fc0ae6bf42446" = "1z0r78d8f0812kxbgsm735qf6xx8lvaz27k1a0b4a2m0sshpd5gl"; diff --git a/simplex-chat.cabal b/simplex-chat.cabal index e4daba10f4..8361d3f55d 100644 --- a/simplex-chat.cabal +++ b/simplex-chat.cabal @@ -5,7 +5,7 @@ cabal-version: 1.12 -- see: https://github.com/sol/hpack name: simplex-chat -version: 5.6.0.2 +version: 5.6.0.3 category: Web, System, Services, Cryptography homepage: https://github.com/simplex-chat/simplex-chat#readme author: simplex.chat diff --git a/src/Simplex/Chat.hs b/src/Simplex/Chat.hs index 83ca9adde6..cdb6f90a98 100644 --- a/src/Simplex/Chat.hs +++ b/src/Simplex/Chat.hs @@ -98,7 +98,6 @@ import Simplex.Messaging.Agent.Store.SQLite.DB (SlowQueryStats (..)) import qualified Simplex.Messaging.Agent.Store.SQLite.DB as DB import qualified Simplex.Messaging.Agent.Store.SQLite.Migrations as Migrations import Simplex.Messaging.Client (defaultNetworkConfig) -import Simplex.Messaging.Compression (withCompressCtx) import qualified Simplex.Messaging.Crypto as C import Simplex.Messaging.Crypto.File (CryptoFile (..), CryptoFileArgs (..)) import qualified Simplex.Messaging.Crypto.File as CF @@ -211,7 +210,7 @@ newChatController ChatDatabase {chatStore, agentStore} user cfg@ChatConfig {agentConfig = aCfg, defaultServers, inlineFiles, deviceNameForRemote} - ChatOpts {coreOptions = CoreChatOpts {smpServers, xftpServers, networkConfig, logLevel, logConnections, logServerHosts, logFile, tbqSize, highlyAvailable}, deviceName, optFilesFolder, showReactions, allowInstantFiles, autoAcceptFileSize} + ChatOpts {coreOptions = CoreChatOpts {smpServers, xftpServers, networkConfig, logLevel, logConnections, logServerHosts, logFile, tbqSize, highlyAvailable}, deviceName, optFilesFolder, optTempDirectory, showReactions, allowInstantFiles, autoAcceptFileSize} backgroundMode = do let inlineFiles' = if allowInstantFiles || autoAcceptFileSize > 0 then inlineFiles else inlineFiles {sendChunks = 0, receiveInstant = False} config = cfg {logLevel, showReactions, tbqSize, subscriptionEvents = logConnections, hostEvents = logServerHosts, defaultServers = configServers, inlineFiles = inlineFiles', autoAcceptFileSize, highlyAvailable} @@ -245,7 +244,7 @@ newChatController chatActivated <- newTVarIO True showLiveItems <- newTVarIO False encryptLocalFiles <- newTVarIO False - tempDirectory <- newTVarIO Nothing + tempDirectory <- newTVarIO optTempDirectory contactMergeEnabled <- newTVarIO True pqExperimentalEnabled <- newTVarIO PQSupportOff pure @@ -327,7 +326,7 @@ startChatController mainApp = do asks smpAgent >>= resumeAgentClient unless mainApp $ chatWriteVar subscriptionMode SMOnlyCreate - users <- fromRight [] <$> runExceptT (withStoreCtx' (Just "startChatController, getUsers") getUsers) + users <- fromRight [] <$> runExceptT (withStore' getUsers) restoreCalls s <- asks agentAsync readTVarIO s >>= maybe (start s users) (pure . fst) @@ -359,7 +358,7 @@ startChatController mainApp = do _ -> pure () startExpireCIs users = forM_ users $ \user -> do - ttl <- fromRight Nothing <$> runExceptT (withStoreCtx' (Just "startExpireCIs, getChatItemTTL") (`getChatItemTTL` user)) + ttl <- fromRight Nothing <$> runExceptT (withStore' (`getChatItemTTL` user)) forM_ ttl $ \_ -> do startExpireCIThread user setExpireCIFlag user True @@ -385,14 +384,14 @@ startFilesToReceive users = do startReceiveUserFiles :: ChatMonad m => User -> m () startReceiveUserFiles user = do - filesToReceive <- withStoreCtx' (Just "startReceiveUserFiles, getRcvFilesToReceive") (`getRcvFilesToReceive` user) + filesToReceive <- withStore' (`getRcvFilesToReceive` user) forM_ filesToReceive $ \ft -> flip catchChatError (toView . CRChatError (Just user)) $ toView =<< receiveFile' user ft Nothing Nothing restoreCalls :: ChatMonad' m => m () restoreCalls = do - savedCalls <- fromRight [] <$> runExceptT (withStoreCtx' (Just "restoreCalls, getCalls") $ \db -> getCalls db) + savedCalls <- fromRight [] <$> runExceptT (withStore' getCalls) let callsMap = M.fromList $ map (\call@Call {contactId} -> (contactId, call)) savedCalls calls <- asks currentCalls atomically $ writeTVar calls callsMap @@ -493,13 +492,13 @@ processChatCommand' vr = \case \db -> overwriteProtocolServers db user servers coupleDaysAgo t = (`addUTCTime` t) . fromInteger . negate . (+ (2 * day)) <$> randomRIO (0, day) day = 86400 - ListUsers -> CRUsersList <$> withStoreCtx' (Just "ListUsers, getUsersInfo") getUsersInfo + ListUsers -> CRUsersList <$> withStore' getUsersInfo APISetActiveUser userId' viewPwd_ -> do unlessM chatStarted $ throwChatError CEChatNotStarted user_ <- chatReadVar currentUser user' <- privateGetUser userId' validateUserPassword_ user_ user' viewPwd_ - withStoreCtx' (Just "APISetActiveUser, setActiveUser") $ \db -> setActiveUser db userId' + withStore' (`setActiveUser` userId') let user'' = user' {activeUser = True} chatWriteVar currentUser $ Just user'' pure $ CRActiveUser user'' @@ -567,7 +566,7 @@ processChatCommand' vr = \case withAgent foregroundAgent chatWriteVar chatActivated True when restoreChat $ do - users <- withStoreCtx' (Just "APIActivateChat, getUsers") getUsers + users <- withStore' getUsers void . forkIO $ subscribeUsers True users void . forkIO $ startFilesToReceive users setAllExpireCIFlags True @@ -578,7 +577,7 @@ processChatCommand' vr = \case stopRemoteCtrl withAgent (`suspendAgent` t) ok_ - ResubscribeAllConnections -> withStoreCtx' (Just "ResubscribeAllConnections, getUsers") getUsers >>= subscribeUsers False >> ok_ + ResubscribeAllConnections -> withStore' getUsers >>= subscribeUsers False >> ok_ -- has to be called before StartChat SetTempFolder tf -> do createDirectoryIfMissing True tf @@ -1221,7 +1220,7 @@ processChatCommand' vr = \case SetChatItemTTL newTTL_ -> withUser' $ \User {userId} -> do processChatCommand $ APISetChatItemTTL userId newTTL_ APIGetChatItemTTL userId -> withUserId' userId $ \user -> do - ttl <- withStoreCtx' (Just "APIGetChatItemTTL, getChatItemTTL") (`getChatItemTTL` user) + ttl <- withStore' (`getChatItemTTL` user) pure $ CRChatItemTTL user ttl GetChatItemTTL -> withUser' $ \User {userId} -> do processChatCommand $ APIGetChatItemTTL userId @@ -1491,7 +1490,7 @@ processChatCommand' vr = \case DeleteMyAddress -> withUser $ \User {userId} -> processChatCommand $ APIDeleteMyAddress userId APIShowMyAddress userId -> withUserId' userId $ \user -> - CRUserContactLink user <$> withStoreCtx (Just "APIShowMyAddress, getUserAddress") (`getUserAddress` user) + CRUserContactLink user <$> withStore (`getUserAddress` user) ShowMyAddress -> withUser' $ \User {userId} -> processChatCommand $ APIShowMyAddress userId APISetProfileAddress userId False -> withUserId userId $ \user@User {profile = p} -> do @@ -2606,7 +2605,7 @@ startExpireCIThread user@User {userId} = do expireFlags <- asks expireCIFlags atomically $ TM.lookup userId expireFlags >>= \b -> unless (b == Just True) retry waitChatStartedAndActivated - ttl <- withStoreCtx' (Just "startExpireCIThread, getChatItemTTL") (`getChatItemTTL` user) + ttl <- withStore' (`getChatItemTTL` user) forM_ ttl $ \t -> expireChatItems user t False liftIO $ threadDelay' interval @@ -2763,11 +2762,11 @@ acceptFileReceive user@User {userId} RcvFileTransfer {fileId, xftpRcvFile, fileI dm <- encodeConnInfo $ XFileAcpt fName connIds <- joinAgentConnectionAsync user True connReq dm subMode filePath <- getRcvFilePath fileId filePath_ fName True - withStoreCtx (Just "acceptFileReceive, acceptRcvFileTransfer") $ \db -> acceptRcvFileTransfer db vr user fileId connIds ConnJoined filePath subMode + withStore $ \db -> acceptRcvFileTransfer db vr user fileId connIds ConnJoined filePath subMode -- XFTP (Just XFTPRcvFile {}, _) -> do filePath <- getRcvFilePath fileId filePath_ fName False - (ci, rfd) <- withStoreCtx (Just "acceptFileReceive, xftpAcceptRcvFT ...") $ \db -> do + (ci, rfd) <- withStore $ \db -> do -- marking file as accepted and reading description in the same transaction -- to prevent race condition with appending description ci <- xftpAcceptRcvFT db vr user fileId filePath @@ -2777,13 +2776,13 @@ acceptFileReceive user@User {userId} RcvFileTransfer {fileId, xftpRcvFile, fileI pure ci -- group & direct file protocol _ -> do - chatRef <- withStoreCtx (Just "acceptFileReceive, getChatRefByFileId") $ \db -> getChatRefByFileId db user fileId + chatRef <- withStore $ \db -> getChatRefByFileId db user fileId case (chatRef, grpMemberId) of (ChatRef CTDirect contactId, Nothing) -> do - ct <- withStoreCtx (Just "acceptFileReceive, getContact") $ \db -> getContact db vr user contactId + ct <- withStore $ \db -> getContact db vr user contactId acceptFile CFCreateConnFileInvDirect $ \msg -> void $ sendDirectContactMessage user ct msg (ChatRef CTGroup groupId, Just memId) -> do - GroupMember {activeConn} <- withStoreCtx (Just "acceptFileReceive, getGroupMember") $ \db -> getGroupMember db vr user groupId memId + GroupMember {activeConn} <- withStore $ \db -> getGroupMember db vr user groupId memId case activeConn of Just conn -> do acceptFile CFCreateConnFileInvGroup $ \msg -> void $ sendDirectMemberMessage conn msg groupId @@ -2798,7 +2797,7 @@ acceptFileReceive user@User {userId} RcvFileTransfer {fileId, xftpRcvFile, fileI if | inline -> do -- accepting inline - ci <- withStoreCtx (Just "acceptFile, acceptRcvInlineFT") $ \db -> acceptRcvInlineFT db vr user fileId filePath + ci <- withStore $ \db -> acceptRcvInlineFT db vr user fileId filePath sharedMsgId <- withStore $ \db -> getSharedMsgIdByFileId db userId fileId send $ XFileAcptInv sharedMsgId Nothing fName pure ci @@ -2807,7 +2806,7 @@ acceptFileReceive user@User {userId} RcvFileTransfer {fileId, xftpRcvFile, fileI -- accepting via a new connection subMode <- chatReadVar subscriptionMode connIds <- createAgentConnectionAsync user cmdFunction True SCMInvitation subMode - withStoreCtx (Just "acceptFile, acceptRcvFileTransfer") $ \db -> acceptRcvFileTransfer db vr user fileId connIds ConnNew filePath subMode + withStore $ \db -> acceptRcvFileTransfer db vr user fileId connIds ConnNew filePath subMode receiveInline :: m Bool receiveInline = do ChatConfig {fileChunkSize, inlineFiles = InlineFilesConfig {receiveChunks, offerChunks}} <- asks config @@ -2824,7 +2823,7 @@ receiveViaCompleteFD user fileId RcvFileDescr {fileDescrText, fileDescrComplete} rd <- parseFileDescription fileDescrText aFileId <- withAgent $ \a -> xftpReceiveFile a (aUserId user) rd cfArgs startReceivingFile user fileId - withStoreCtx' (Just "receiveViaCompleteFD, updateRcvFileAgentId") $ \db -> updateRcvFileAgentId db fileId (Just $ AgentRcvFileId aFileId) + withStore' $ \db -> updateRcvFileAgentId db fileId (Just $ AgentRcvFileId aFileId) receiveViaURI :: ChatMonad m => User -> FileDescriptionURI -> CryptoFile -> m RcvFileTransfer receiveViaURI user@User {userId} FileDescriptionURI {description} cf@CryptoFile {cryptoArgs} = do @@ -2842,7 +2841,7 @@ receiveViaURI user@User {userId} FileDescriptionURI {description} cf@CryptoFile startReceivingFile :: ChatMonad m => User -> FileTransferId -> m () startReceivingFile user fileId = do vr <- chatVersionRange - ci <- withStoreCtx (Just "startReceivingFile, updateRcvFileStatus ...") $ \db -> do + ci <- withStore $ \db -> do liftIO $ updateRcvFileStatus db fileId FSConnected liftIO $ updateCIFileStatus db user fileId $ CIFSRcvTransfer 0 1 getChatItemByFileId db vr user fileId @@ -2852,35 +2851,36 @@ getRcvFilePath :: forall m. ChatMonad m => FileTransferId -> Maybe FilePath -> S getRcvFilePath fileId fPath_ fn keepHandle = case fPath_ of Nothing -> chatReadVar filesFolder >>= \case - Nothing -> - getDefaultFilesFolder - >>= (`uniqueCombine` fn) - >>= createEmptyFile - Just filesFolder -> - filesFolder `uniqueCombine` fn - >>= createEmptyFile - >>= pure <$> takeFileName + Nothing -> do + defaultFolder <- getDefaultFilesFolder + fPath <- defaultFolder `uniqueCombine` fn + createEmptyFile fPath $> fPath + Just filesFolder -> do + fPath <- filesFolder `uniqueCombine` fn + createEmptyFile fPath + pure $ takeFileName fPath Just fPath -> ifM (doesDirectoryExist fPath) - (fPath `uniqueCombine` fn >>= createEmptyFile) + (createInPassedDirectory fPath) $ ifM (doesFileExist fPath) (throwChatError $ CEFileAlreadyExists fPath) - (createEmptyFile fPath) + (createEmptyFile fPath $> fPath) where - createEmptyFile :: FilePath -> m FilePath - createEmptyFile fPath = emptyFile fPath `catchThrow` (ChatError . CEFileWrite fPath . show) - emptyFile :: FilePath -> m FilePath - emptyFile fPath = do - h <- - if keepHandle - then getFileHandle fileId fPath rcvFiles AppendMode - else getTmpHandle fPath - liftIO $ B.hPut h "" >> hFlush h - pure fPath - getTmpHandle :: FilePath -> m Handle - getTmpHandle fPath = openFile fPath AppendMode `catchThrow` (ChatError . CEFileInternal . show) + createInPassedDirectory :: FilePath -> m FilePath + createInPassedDirectory fPathDir = do + fPath <- fPathDir `uniqueCombine` fn + createEmptyFile fPath $> fPath + createEmptyFile :: FilePath -> m () + createEmptyFile fPath = emptyFile `catchThrow` (ChatError . CEFileWrite fPath . show) + where + emptyFile :: m () + emptyFile + | keepHandle = do + h <- getFileHandle fileId fPath rcvFiles AppendMode + liftIO $ B.hPut h "" >> hFlush h + | otherwise = liftIO $ B.writeFile fPath "" acceptContactRequest :: ChatMonad m => User -> UserContactRequest -> Maybe IncognitoProfile -> Bool -> m Contact acceptContactRequest user UserContactRequest {agentInvitationId = AgentInvId invId, cReqChatVRange, localDisplayName = cName, profileId, profile = cp, userContactLinkId, xContactId, pqSupport} incognitoProfile contactUsed = do @@ -2981,7 +2981,7 @@ agentSubscriber = do type AgentBatchSubscribe m = AgentClient -> [ConnId] -> ExceptT AgentErrorType m (Map ConnId (Either AgentErrorType ())) subscribeUserConnections :: forall m. ChatMonad m => (PQSupport -> VersionRangeChat) -> Bool -> AgentBatchSubscribe m -> User -> m () -subscribeUserConnections vr onlyNeeded agentBatchSubscribe user@User {userId} = do +subscribeUserConnections vr onlyNeeded agentBatchSubscribe user = do -- get user connections ce <- asks $ subscriptionEvents . config (conns, cts, ucs, gs, ms, sfts, rfts, pcs) <- @@ -3036,32 +3036,32 @@ subscribeUserConnections vr onlyNeeded agentBatchSubscribe user@User {userId} = } getContactConns :: m ([ConnId], Map ConnId Contact) getContactConns = do - cts <- withStore_ ("subscribeUserConnections " <> show userId <> ", getUserContacts") (`getUserContacts` vr) + cts <- withStore_ (`getUserContacts` vr) let cts' = mapMaybe (\ct -> (,ct) <$> contactConnId ct) $ filter contactActive cts pure (map fst cts', M.fromList cts') getUserContactLinkConns :: m ([ConnId], Map ConnId UserContact) getUserContactLinkConns = do - (cs, ucs) <- unzip <$> withStore_ ("subscribeUserConnections " <> show userId <> ", getUserContactLinks") (`getUserContactLinks` vr) + (cs, ucs) <- unzip <$> withStore_ (`getUserContactLinks` vr) let connIds = map aConnId cs pure (connIds, M.fromList $ zip connIds ucs) getGroupMemberConns :: m ([Group], [ConnId], Map ConnId GroupMember) getGroupMemberConns = do - gs <- withStore_ ("subscribeUserConnections " <> show userId <> ", getUserGroups") (`getUserGroups` vr) + gs <- withStore_ (`getUserGroups` vr) let mPairs = concatMap (\(Group _ ms) -> mapMaybe (\m -> (,m) <$> memberConnId m) (filter (not . memberRemoved) ms)) gs pure (gs, map fst mPairs, M.fromList mPairs) getSndFileTransferConns :: m ([ConnId], Map ConnId SndFileTransfer) getSndFileTransferConns = do - sfts <- withStore_ ("subscribeUserConnections " <> show userId <> ", getLiveSndFileTransfers") getLiveSndFileTransfers + sfts <- withStore_ getLiveSndFileTransfers let connIds = map sndFileTransferConnId sfts pure (connIds, M.fromList $ zip connIds sfts) getRcvFileTransferConns :: m ([ConnId], Map ConnId RcvFileTransfer) getRcvFileTransferConns = do - rfts <- withStore_ ("subscribeUserConnections " <> show userId <> ", getLiveRcvFileTransfers") getLiveRcvFileTransfers + rfts <- withStore_ getLiveRcvFileTransfers let rftPairs = mapMaybe (\ft -> (,ft) <$> liveRcvFileTransferConnId ft) rfts pure (map fst rftPairs, M.fromList rftPairs) getPendingContactConns :: m ([ConnId], Map ConnId PendingContactConnection) getPendingContactConns = do - pcs <- withStore_ ("subscribeUserConnections " <> show userId <> ", getPendingContactConnections") getPendingContactConnections + pcs <- withStore_ getPendingContactConnections let connIds = map aConnId' pcs pure (connIds, M.fromList $ zip connIds pcs) contactSubsToView :: Map ConnId (Either AgentErrorType ()) -> Map ConnId Contact -> Bool -> m () @@ -3131,8 +3131,8 @@ subscribeUserConnections vr onlyNeeded agentBatchSubscribe user@User {userId} = rcvFileSubsToView rs = mapM_ (toView . uncurry (CRRcvFileSubError user)) . filterErrors . resultsFor rs pendingConnSubsToView :: Map ConnId (Either AgentErrorType ()) -> Map ConnId PendingContactConnection -> m () pendingConnSubsToView rs = toView . CRPendingSubSummary user . map (uncurry PendingSubStatus) . resultsFor rs - withStore_ :: String -> (DB.Connection -> User -> IO [a]) -> m [a] - withStore_ ctx a = withStoreCtx' (Just ctx) (`a` user) `catchChatError` \e -> toView (CRChatError (Just user) e) $> [] + withStore_ :: (DB.Connection -> User -> IO [a]) -> m [a] + withStore_ a = withStore' (`a` user) `catchChatError` \e -> toView (CRChatError (Just user) e) $> [] filterErrors :: [(a, Maybe ChatError)] -> [(a, ChatError)] filterErrors = mapMaybe (\(a, e_) -> (a,) <$> e_) resultsFor :: Map ConnId (Either AgentErrorType ()) -> Map ConnId a -> [(a, Maybe ChatError)] @@ -3156,7 +3156,7 @@ cleanupManager = do forever $ do flip catchChatError (toView . CRChatError Nothing) $ do waitChatStartedAndActivated - users <- withStoreCtx' (Just "cleanupManager, getUsers 1") getUsers + users <- withStore' getUsers let (us, us') = partition activeUser users forM_ us $ cleanupUser interval stepDelay forM_ us' $ cleanupUser interval stepDelay @@ -3166,7 +3166,7 @@ cleanupManager = do where runWithoutInitialDelay cleanupInterval = flip catchChatError (toView . CRChatError Nothing) $ do waitChatStartedAndActivated - users <- withStoreCtx' (Just "cleanupManager, getUsers 2") getUsers + users <- withStore' getUsers let (us, us') = partition activeUser users forM_ us $ \u -> cleanupTimedItems cleanupInterval u `catchChatError` (toView . CRChatError (Just u)) forM_ us' $ \u -> cleanupTimedItems cleanupInterval u `catchChatError` (toView . CRChatError (Just u)) @@ -3178,7 +3178,7 @@ cleanupManager = do cleanupTimedItems cleanupInterval user = do ts <- liftIO getCurrentTime let startTimedThreadCutoff = addUTCTime cleanupInterval ts - timedItems <- withStoreCtx' (Just "cleanupManager, getTimedItems") $ \db -> getTimedItems db user startTimedThreadCutoff + timedItems <- withStore' $ \db -> getTimedItems db user startTimedThreadCutoff forM_ timedItems $ \(itemRef, deleteAt) -> startTimedItemThread user itemRef deleteAt `catchChatError` const (pure ()) cleanupDeletedContacts user = do vr <- chatVersionRange @@ -3189,7 +3189,7 @@ cleanupManager = do cleanupMessages = do ts <- liftIO getCurrentTime let cutoffTs = addUTCTime (-(30 * nominalDay)) ts - withStoreCtx' (Just "cleanupManager, deleteOldMessages") (`deleteOldMessages` cutoffTs) + withStore' (`deleteOldMessages` cutoffTs) cleanupProbes = do ts <- liftIO getCurrentTime let cutoffTs = addUTCTime (-(14 * nominalDay)) ts @@ -3248,10 +3248,10 @@ expireChatItems user@User {userId} ttl sync = do -- this is to keep group messages created during last 12 hours even if they're expired according to item_ts createdAtCutoff = addUTCTime (-43200 :: NominalDiffTime) currentTs waitChatStartedAndActivated - contacts <- withStoreCtx' (Just "expireChatItems, getUserContacts") $ \db -> getUserContacts db vr user + contacts <- withStore' $ \db -> getUserContacts db vr user loop contacts $ processContact expirationDate waitChatStartedAndActivated - groups <- withStoreCtx' (Just "expireChatItems, getUserGroupDetails") $ \db -> getUserGroupDetails db vr user Nothing Nothing + groups <- withStore' $ \db -> getUserGroupDetails db vr user Nothing Nothing loop groups $ processGroup vr expirationDate createdAtCutoff where loop :: [a] -> (a -> m ()) -> m () @@ -3270,19 +3270,19 @@ expireChatItems user@User {userId} ttl sync = do processContact :: UTCTime -> Contact -> m () processContact expirationDate ct = do waitChatStartedAndActivated - filesInfo <- withStoreCtx' (Just "processContact, getContactExpiredFileInfo") $ \db -> getContactExpiredFileInfo db user ct expirationDate + filesInfo <- withStore' $ \db -> getContactExpiredFileInfo db user ct expirationDate cancelFilesInProgress user filesInfo deleteFilesLocally filesInfo - withStoreCtx' (Just "processContact, deleteContactExpiredCIs") $ \db -> deleteContactExpiredCIs db user ct expirationDate + withStore' $ \db -> deleteContactExpiredCIs db user ct expirationDate processGroup :: (PQSupport -> VersionRangeChat) -> UTCTime -> UTCTime -> GroupInfo -> m () processGroup vr expirationDate createdAtCutoff gInfo = do waitChatStartedAndActivated - filesInfo <- withStoreCtx' (Just "processGroup, getGroupExpiredFileInfo") $ \db -> getGroupExpiredFileInfo db user gInfo expirationDate createdAtCutoff + filesInfo <- withStore' $ \db -> getGroupExpiredFileInfo db user gInfo expirationDate createdAtCutoff cancelFilesInProgress user filesInfo deleteFilesLocally filesInfo - withStoreCtx' (Just "processGroup, deleteGroupExpiredCIs") $ \db -> deleteGroupExpiredCIs db user gInfo expirationDate createdAtCutoff - membersToDelete <- withStoreCtx' (Just "processGroup, getGroupMembersForExpiration") $ \db -> getGroupMembersForExpiration db vr user gInfo - forM_ membersToDelete $ \m -> withStoreCtx' (Just "processGroup, deleteGroupMember") $ \db -> deleteGroupMember db user m + withStore' $ \db -> deleteGroupExpiredCIs db user gInfo expirationDate createdAtCutoff + membersToDelete <- withStore' $ \db -> getGroupMembersForExpiration db vr user gInfo + forM_ membersToDelete $ \m -> withStore' $ \db -> deleteGroupMember db user m processAgentMessage :: forall m. ChatMonad m => ACorrId -> ConnId -> ACommand 'Agent 'AEConn -> m () processAgentMessage _ connId (DEL_RCVQ srv qId err_) = @@ -3496,7 +3496,7 @@ processAgentMsgRcvFile _corrId aFileId msg = agentXFTPDeleteRcvFile aFileId fileId toView $ CRRcvFileError user ci e ft -processAgentMessageConn :: forall m . ChatMonad m => (PQSupport -> VersionRangeChat) -> User -> ACorrId -> ConnId -> ACommand 'Agent 'AEConn -> m () +processAgentMessageConn :: forall m. ChatMonad m => (PQSupport -> VersionRangeChat) -> User -> ACorrId -> ConnId -> ACommand 'Agent 'AEConn -> m () processAgentMessageConn vr user@User {userId} corrId agentConnId agentMessage = do -- Missing connection/entity errors here will be sent to the view but not shown as CRITICAL alert, -- as in this case no need to ACK message - we can't process messages for this connection anyway. @@ -6128,7 +6128,7 @@ sendGroupMemberMessages user conn events groupId = do forM_ (L.nonEmpty msgs) $ \msgs' -> do -- TODO v5.7 based on version (?) -- let shouldCompress = False - -- batched <- if shouldCompress then batchSndMessagesBinary msgs' else pure $ batchSndMessagesJSON msgs' + -- let batched = if shouldCompress then batchSndMessagesBinary msgs' else batchSndMessagesJSON msgs' let batched = batchSndMessagesJSON msgs' let (errs', msgBatches) = partitionEithers batched -- shouldn't happen, as large messages would have caused createNewSndMessage to throw SELargeMsg @@ -6146,12 +6146,9 @@ processSndMessageBatch conn@Connection {connId} (MsgBatch batchBody sndMsgs) = d batchSndMessagesJSON :: NonEmpty SndMessage -> [Either ChatError MsgBatch] batchSndMessagesJSON = batchMessages maxEncodedMsgLength . L.toList --- batchSndMessagesBinary :: forall m. ChatMonad m => NonEmpty SndMessage -> m [Either ChatError MsgBatch] --- batchSndMessagesBinary msgs = do --- compressed <- liftIO $ withCompressCtx maxChatMsgSize $ \cctx -> mapM (compressForBatch cctx) msgs --- pure . map toMsgBatch . SMP.batchTransmissions_ (maxEncodedMsgLength) $ L.zip compressed msgs +-- batchSndMessagesBinary :: NonEmpty SndMessage -> [Either ChatError MsgBatch] +-- batchSndMessagesBinary msgs = map toMsgBatch . SMP.batchTransmissions_ (maxEncodedMsgLength) $ L.zip (map compress1 msgs) msgs -- where --- compressForBatch cctx SndMessage {msgBody} = bimap (const TELargeMsg) smpEncode <$> compress cctx msgBody -- toMsgBatch :: SMP.TransportBatch SndMessage -> Either ChatError MsgBatch -- toMsgBatch = \case -- SMP.TBTransmissions combined _n sms -> Right $ MsgBatch (markCompressedBatch combined) sms @@ -6170,12 +6167,10 @@ encodeConnInfoPQ pqSup v chatMsgEvent = do case encodeChatMessage maxEncodedInfoLength info of ECMEncoded connInfo -> case pqSup of PQSupportOn | v >= pqEncryptionCompressionVersion && B.length connInfo > maxCompressedInfoLength -> do - connInfo' <- liftIO compressedBatchMsgBody + let connInfo' = compressedBatchMsgBody_ connInfo when (B.length connInfo' > maxCompressedInfoLength) $ throwChatError $ CEException "large compressed info" pure connInfo' _ -> pure connInfo - where - compressedBatchMsgBody = withCompressCtx (toEnum $ B.length connInfo) (`compressedBatchMsgBody_` connInfo) ECMLarge -> throwChatError $ CEException "large info" deliverMessage :: ChatMonad m => Connection -> CMEventTag e -> MsgBody -> MessageId -> m (Int64, PQEncryption) @@ -6196,12 +6191,12 @@ deliverMessages msgs = deliverMessagesB $ L.map Right msgs deliverMessagesB :: forall m. ChatMonad' m => NonEmpty (Either ChatError MsgReq) -> m (NonEmpty (Either ChatError (Int64, PQEncryption))) deliverMessagesB msgReqs = do - msgReqs' <- compressBodies + msgReqs' <- liftIO compressBodies sent <- L.zipWith prepareBatch msgReqs' <$> withAgent' (`sendMessagesB` L.map toAgent msgReqs') void $ withStoreBatch' $ \db -> map (updatePQSndEnabled db) (rights . L.toList $ sent) withStoreBatch $ \db -> L.map (bindRight $ createDelivery db) sent where - compressBodies = liftIO $ withCompressCtx (toEnum maxEncodedMsgLength) $ \cxt -> + compressBodies = forME msgReqs $ \mr@(conn@Connection {pqSupport, connChatVersion = v}, msgFlags, msgBody, msgId) -> runExceptT $ case pqSupport of -- we only compress messages when: @@ -6209,7 +6204,7 @@ deliverMessagesB msgReqs = do -- 2) version is compatible with compression -- 3) message is longer than max compressed size (as this function is not used for batched messages anyway) PQSupportOn | v >= pqEncryptionCompressionVersion && B.length msgBody > maxCompressedMsgLength -> do - msgBody' <- liftIO $ compressedBatchMsgBody_ cxt msgBody + let msgBody' = compressedBatchMsgBody_ msgBody when (B.length msgBody' > maxCompressedMsgLength) $ throwError $ ChatError $ CEException "large compressed message" pure (conn, msgFlags, msgBody', msgId) _ -> pure mr @@ -6420,13 +6415,13 @@ mkChatItem cd ciId content file quotedItem sharedMsgId itemTimed live itemTs for deleteDirectCI :: (ChatMonad m, MsgDirectionI d) => User -> Contact -> ChatItem 'CTDirect d -> Bool -> Bool -> m ChatResponse deleteDirectCI user ct ci@ChatItem {file} byUser timed = do deleteCIFile user file - withStoreCtx' (Just "deleteDirectCI, deleteDirectChatItem") $ \db -> deleteDirectChatItem db user ct ci + withStore' $ \db -> deleteDirectChatItem db user ct ci pure $ CRChatItemDeleted user (AChatItem SCTDirect msgDirection (DirectChat ct) ci) Nothing byUser timed deleteGroupCI :: (ChatMonad m, MsgDirectionI d) => User -> GroupInfo -> ChatItem 'CTGroup d -> Bool -> Bool -> Maybe GroupMember -> UTCTime -> m ChatResponse deleteGroupCI user gInfo ci@ChatItem {file} byUser timed byGroupMember_ deletedTs = do deleteCIFile user file - toCi <- withStoreCtx' (Just "deleteGroupCI, deleteGroupChatItem ...") $ \db -> + toCi <- withStore' $ \db -> case byGroupMember_ of Nothing -> deleteGroupChatItem db user gInfo ci $> Nothing Just m -> Just <$> updateGroupChatItemModerated db user gInfo ci m deletedTs diff --git a/src/Simplex/Chat/Controller.hs b/src/Simplex/Chat/Controller.hs index 62caa8a6ab..4ca9da094f 100644 --- a/src/Simplex/Chat/Controller.hs +++ b/src/Simplex/Chat/Controller.hs @@ -1292,13 +1292,7 @@ withStore' :: ChatMonad m => (DB.Connection -> IO a) -> m a withStore' action = withStore $ liftIO . action withStore :: ChatMonad m => (DB.Connection -> ExceptT StoreError IO a) -> m a -withStore = withStoreCtx Nothing - -withStoreCtx' :: ChatMonad m => Maybe String -> (DB.Connection -> IO a) -> m a -withStoreCtx' ctx_ action = withStoreCtx ctx_ $ liftIO . action - -withStoreCtx :: ChatMonad m => Maybe String -> (DB.Connection -> ExceptT StoreError IO a) -> m a -withStoreCtx _ctx action = do +withStore action = do ChatController {chatStore} <- ask liftIOEither $ withTransaction chatStore (runExceptT . withExceptT ChatErrorStore . action) `E.catches` handleDBErrors diff --git a/src/Simplex/Chat/Mobile.hs b/src/Simplex/Chat/Mobile.hs index 105dedb32c..5883c6042c 100644 --- a/src/Simplex/Chat/Mobile.hs +++ b/src/Simplex/Chat/Mobile.hs @@ -207,6 +207,7 @@ mobileChatOpts dbFilePrefix = chatCmdLog = CCLNone, chatServerPort = Nothing, optFilesFolder = Nothing, + optTempDirectory = Nothing, showReactions = False, allowInstantFiles = True, autoAcceptFileSize = 0, diff --git a/src/Simplex/Chat/Options.hs b/src/Simplex/Chat/Options.hs index a222e2e77b..871e3358ec 100644 --- a/src/Simplex/Chat/Options.hs +++ b/src/Simplex/Chat/Options.hs @@ -41,6 +41,7 @@ data ChatOpts = ChatOpts chatCmdLog :: ChatCmdLog, chatServerPort :: Maybe String, optFilesFolder :: Maybe FilePath, + optTempDirectory :: Maybe FilePath, showReactions :: Bool, allowInstantFiles :: Bool, autoAcceptFileSize :: Integer, @@ -258,6 +259,13 @@ chatOptsP appDir defaultDbFileName = do <> metavar "FOLDER" <> help "Folder to use for sent and received files" ) + optTempDirectory <- + optional $ + strOption + ( long "temp-folder" + <> metavar "FOLDER" + <> help "Folder for temporary encrypted files (default: system temp directory)" + ) showReactions <- switch ( long "reactions" @@ -304,6 +312,7 @@ chatOptsP appDir defaultDbFileName = do chatCmdLog, chatServerPort, optFilesFolder, + optTempDirectory, showReactions, allowInstantFiles, autoAcceptFileSize, diff --git a/src/Simplex/Chat/Protocol.hs b/src/Simplex/Chat/Protocol.hs index 85ef027335..e2810dafa9 100644 --- a/src/Simplex/Chat/Protocol.hs +++ b/src/Simplex/Chat/Protocol.hs @@ -47,7 +47,7 @@ import Simplex.Chat.Call import Simplex.Chat.Types import Simplex.Chat.Types.Util import Simplex.Messaging.Agent.Protocol (VersionSMPA, pqdrSMPAgentVersion) -import Simplex.Messaging.Compression (CompressCtx, compress, decompressBatch) +import Simplex.Messaging.Compression (compress1, decompressBatch) import Simplex.Messaging.Crypto.Ratchet (PQSupport (..), pattern PQSupportOn, pattern PQSupportOff) import Simplex.Messaging.Encoding import Simplex.Messaging.Encoding.String @@ -576,8 +576,8 @@ parseChatMessages s = case B.head s of -- TODO v5.7 don't reserve multiple large buffers when decoding batches Right compressed -> concatMap (either (pure . Left) parseChatMessages) . L.toList $ decompressBatch maxEncodedMsgLength compressed -compressedBatchMsgBody_ :: CompressCtx -> MsgBody -> IO ByteString -compressedBatchMsgBody_ ctx msgBody = markCompressedBatch . smpEncode . (L.:| []) <$> compress ctx msgBody +compressedBatchMsgBody_ :: MsgBody -> ByteString +compressedBatchMsgBody_ = markCompressedBatch . smpEncode . (L.:| []) . compress1 markCompressedBatch :: ByteString -> ByteString markCompressedBatch = B.cons 'X' diff --git a/tests/ChatClient.hs b/tests/ChatClient.hs index 792f9642d3..409dd2bb3e 100644 --- a/tests/ChatClient.hs +++ b/tests/ChatClient.hs @@ -74,6 +74,7 @@ testOpts = chatCmdLog = CCLNone, chatServerPort = Nothing, optFilesFolder = Nothing, + optTempDirectory = Nothing, showReactions = True, allowInstantFiles = True, autoAcceptFileSize = 0, @@ -445,6 +446,7 @@ xftpServerConfig = allowNewFiles = True, newFileBasicAuth = Nothing, fileExpiration = Just defaultFileExpiration, + fileTimeout = 10000000, inactiveClientExpiration = Just defaultInactiveClientExpiration, caCertificateFile = "tests/fixtures/tls/ca.crt", privateKeyFile = "tests/fixtures/tls/server.key", diff --git a/website/langs/ar.json b/website/langs/ar.json index 5986d59e89..3b74ac2f3d 100644 --- a/website/langs/ar.json +++ b/website/langs/ar.json @@ -20,10 +20,10 @@ "hero-overlay-1-textlink": "لماذا تعتبر معرّفات المستخدم ضارة بالخصوصية؟", "hero-overlay-2-textlink": "كيف يعمل SimpleX؟", "hero-overlay-2-title": "لماذا تعتبر معرّفات المستخدم ضارة بالخصوصية؟", - "feature-2-title": "تَعْمِيَة<br>الصور والفيديوهات والملفات بين الطرفين", - "feature-3-title": "المجموعات اللامركزية — المستخدمون فقط يعرفون بوجودها", + "feature-2-title": "تعمية<br>الصور والفيديوهات والملفات بين الطرفين", + "feature-3-title": "المجموعات اللامركزية مُعمَّاة — المستخدمون فقط يعرفون بوجودها", "feature-5-title": "رسائل ذاتية الاختفاء", - "feature-6-title": "تَعْمِيَة المكالمات الصوتية والفيديو <br> بين الطرفين", + "feature-6-title": "تعمية المكالمات الصوتية والفيديو <br> بين الطرفين", "simplex-network-overlay-1-title": "مقارنة مع بروتوكولات المُراسلة P2P", "simplex-private-4-title": "وصول <br> اختياري عبر تور", "simplex-explained-tab-2-text": "2. كيف يعمل", @@ -40,13 +40,13 @@ "hero-2-header": "أجري اتصال خاص", "hero-overlay-1-title": "كيف يعمل SimpleX؟", "hero-2-header-desc": "يُظهر الفيديو كيفية اتصالك بصديقك عبر رمز الاستجابة السريعة لمرة واحدة (QR code)، شخصيًا أو عبر رابط فيديو. يمكنك أيضًا الاتصال من خلال مشاركة رابط الدعوة.", - "feature-1-title": "تَعْمِيَة الرسائل بين الطرفين مع دعم ماركداون والتعديل", - "feature-4-title": "تَعْمِيَة الرسائل الصوتية بين الطرفين", + "feature-1-title": "تعمية الرسائل بين الطرفين مع دعم ماركداون والتعديل", + "feature-4-title": "تعمية الرسائل الصوتية بين الطرفين", "privacy-matters-overlay-card-1-p-1": "تستخدم العديد من الشركات الكبيرة معلومات حول من تتصل به لتقدير دخلك، وبيع المنتجات التي لا تحتاجها حقًا، ولتحديد الأسعار.", "feature-7-title": "تخزين بيانات التطبيق مُعمَّاة ومحمولة — نقل ملف التعريف إلى جهاز آخر", "feature-8-title": "وضع التخفي — <br> فريد من نوعه لـ SimpleX Chat", - "simplex-private-1-title": "طبقتان من <br> التَعْمِيَة بين الطرفين", - "simplex-private-2-title": "طبقة إضافية من <br> تَعْمِيَة الخادم", + "simplex-private-1-title": "طبقتان من <br> التعمية بين الطرفين", + "simplex-private-2-title": "طبقة إضافية من <br> تعمية الخادم", "simplex-private-3-title": "تأمين نقل <br> TLS المصدق عليه", "simplex-private-5-title": "طبقات متعددة من <br> حشوة المحتوى", "simplex-private-7-title": "التحقق <br> من سلامة الرسالة", @@ -56,7 +56,7 @@ "simplex-private-card-3-point-2": "تعمل بصمة الخادم وربط القناة على منع هجمات الوسيط (MITM) وإعادة التشغيل.", "simplex-private-card-3-point-3": "استئناف الاتصال معطل لمنع هجمات الجلسة.", "simplex-private-card-4-point-1": "لحماية عنوان IP الخاص بك، يمكنك الوصول إلى الخوادم عبر تور أو بعض شبكات تراكب النقل الأخرى.", - "simplex-private-card-5-point-1": "يستخدم SimpleX حشوة المحتوى لكل طبقة تَعْمِيَة لإحباط هجمات حجم الرسالة.", + "simplex-private-card-5-point-1": "يستخدم SimpleX حشوة المحتوى لكل طبقة تعمية لإحباط هجمات حجم الرسالة.", "simplex-private-card-6-point-2": "لمنع ذلك، تقوم تطبيقات SimpleX بتمرير مفاتيح لمرة واحدة خارج النطاق، عند مشاركة عنوان كرابط أو رمز QR.", "simplex-private-card-8-point-1": "تعمل خوادم SimpleX كعقد مختلطة بزمن انتقال منخفض — الرسائل الواردة والصادرة لها ترتيب مختلف.", "simplex-private-card-9-point-1": "كل رسالة انتظار تمرر الرسائل في اتجاه واحد، بعناوين إرسال واستلام مختلفة.", @@ -78,7 +78,7 @@ "simplex-unique-4-title": "أنت تمتلك شبكة SimpleX", "simplex-unique-4-overlay-1-title": "لامركزية بالكامل — يمتلك المستخدمون شبكة SimpleX", "hero-overlay-card-1-p-4": "هذا التصميم يمنع تسريب أي البيانات الوصفية للمستخدمين على مستوى التطبيق. لزيادة تحسين الخصوصية وحماية عنوان IP الخاص بك، يمكنك الاتصال بخوادم المراسلة عبر Tor.", - "hero-overlay-card-1-p-5": "الأجهزة العميلة فقط هي التي تخزن ملفات تعريف المستخدمين، جهات الاتصال والمجموعات؛ يتم إرسال الرسائل بتَعْمِيَة ثنائية الطبقة من طرف إلى طرف.", + "hero-overlay-card-1-p-5": "الأجهزة العميلة فقط هي التي تخزن ملفات تعريف المستخدمين، جهات الاتصال والمجموعات؛ يتم إرسال الرسائل بتعمية ثنائية الطبقة بين الطرفين.", "hero-overlay-card-2-p-2": "يمكنهم بعد ذلك ربط هذه المعلومات بالشبكات الاجتماعية العامة الحالية، وتحديد بعض الهويات الحقيقية.", "simplex-network-overlay-card-1-li-3": "P2P لا يحل مشكلة <a href='https://en.wikipedia.org/wiki/Man-in-the-middle_attack'>هجوم الوسيط (MITM)</a>، ومعظم التطبيقات الحالية لا تستخدم خارج النطاق رسائل للتبادل الأولي للمفاتيح. يستخدم SimpleX رسائل خارج النطاق أو، في بعض الحالات، اتصالات آمنة وموثوق بها موجودة مسبقًا لتبادل المفاتيح الأولي.", "privacy-matters-overlay-card-1-p-3": "تستخدم بعض الشركات المالية والتأمين رسوماً بيانية اجتماعية لتحديد أسعار الفائدة وأقساط التأمين. عادةً ما تجعل الأشخاص ذوي الدخل المنخفض يدفعون أكثر — أو كما يسمى<a href='https://fairbydesign.com/povertypremium/' target='_blank'> \"علاوة الفقر\"</a>.", @@ -88,7 +88,7 @@ "privacy-matters-overlay-card-1-p-4": "تحمي منصة SimpleX خصوصية اتصالاتك بشكل أفضل من أي بديل آخر، مما يمنع تمامًا الرسم البياني الاجتماعي الخاص بك من أن يصبح متاحًا لأي شركات أو مؤسسات. حتى عندما يستخدم الأشخاص الخوادم التي توفرها SimpleX Chat، فإننا لا نعرف عدد المستخدمين أو اتصالاتهم.", "simplex-private-card-1-point-1": "بروتوكول السقاطة المزدوجة — <br> رسائل OTR مع السرية المستمرة واستعادة الاختراق.", "simplex-private-card-1-point-2": "NaCL cryptobox في كل قائمة انتظار لمنع ارتباط حركة مرور البيانات بين قوائم انتظار الرسائل في حالة اختراق TLS.", - "simplex-private-card-2-point-1": "طبقة إضافية من تَعْمِيَة الخادم للتسليم إلى المُستلم، لمنع الارتباط بين حركة مرور بيانات الخادم المُستلمة والمُرسلة في حالة اختراق TLS.", + "simplex-private-card-2-point-1": "طبقة إضافية من تعمية الخادم للتسليم إلى المُستلم، لمنع الارتباط بين حركة مرور بيانات الخادم المُستلمة والمُرسلة في حالة اختراق TLS.", "simplex-private-card-4-point-2": "لاستخدام SimpleX عبر تور، يُرجى تثبيت <a href=\"https://guardianproject.info/apps/org.torproject.android/\" target=\"_blank\"> تطبيق Orbot </a> وتمكّين وكيل SOCKS5 (أو VPN <a href=\"https://apps.apple.com/us/app/orbot/id1609461599?platform=iphone\" target=\"_blank\">على iOS </a>).", "simplex-private-card-5-point-2": "يجعل الرسائل ذات الأحجام المختلفة تبدو متشابهة للخوادم ومراقبي الشبكة.", "simplex-private-card-6-point-1": "العديد من منصات الاتصال عرضة لهجمات الوسيط (MITM) من قبل الخوادم أو موفري الشبكات.", @@ -111,11 +111,11 @@ "simplex-network-overlay-card-1-li-4": "يمكن لبعض مزودي خدمة الإنترنت حظر تطبيقات P2P (مثل <a href='https://en.wikipedia.org/wiki/BitTorrent'> BitTorrent </a>). SimpleX حيادي النقل - يمكنه العمل عبر بروتوكولات الويب القياسية، على سبيل المثال WebSockets.", "simplex-network-overlay-card-1-li-5": "قد تكون جميع شبكات P2P المعروفة عرضة <a href='https://en.wikipedia.org/wiki/Sybil_attack'> لهجوم Sybil</a>، لأن كل عقدة قابلة للاكتشاف، وتعمل الشبكة ككل. تتطلب الإجراءات المعروفة لتخفيفها إما مكونًا مركزيًا أو <a href='https://en.wikipedia.org/wiki/Proof_of_work'> إثبات عمل مكلف </a>. لا تحتوي شبكة SimpleX على إمكانية اكتشاف الخادم، فهي مجزأة وتعمل كشبكات فرعية متعددة ومعزولة، مما يجعل الهجمات على مستوى الشبكة مستحيلة.", "privacy-matters-overlay-card-3-p-1": "يجب على الجميع الاهتمام بخصوصية وأمان اتصالاتهم — يمكن للمُحادثات غير الضارة أن تعرضك للخطر، حتى لو لم يكن لديك ما تخفيه.", - "privacy-matters-overlay-card-3-p-4": "لا يكفي استخدام برنامج مُراسلة مُعمَّاة من طرف إلى طرف، يجب علينا جميعًا استخدام برامج مُراسلة التي تحمي خصوصية شبكاتنا الشخصية — مع من نحن مرتبطون.", + "privacy-matters-overlay-card-3-p-4": "لا يكفي استخدام برنامج مُراسلة مُعمَّاة بين الطرفين، يجب علينا جميعًا استخدام برامج مُراسلة التي تحمي خصوصية شبكاتنا الشخصية — مع من نحن مرتبطون.", "simplex-unique-overlay-card-1-p-3": "يحمي هذا التصميم خصوصية الأشخاص الذين تتواصل معهم، ويخفيها عن خوادم منصة SimpleX ومن أي مراقبين. لإخفاء عنوان IP الخاص بك من الخوادم، يمكنك <strong> الاتصال بخوادم SimpleX عبر تور</strong>.", "simplex-unique-overlay-card-2-p-1": "نظرًا لعدم وجود معرف لديك على نظام SimpleX، لا يمكن لأي شخص الاتصال بك ما لم تشارك عنوان مستخدم لمرة واحدة أو مؤقتًا، كرمز QR أو رابط.", "simplex-unique-overlay-card-2-p-2": "حتى مع عنوان المستخدم الاختياري، بينما يمكن استخدامه لإرسال طلبات جهات اتصال مزعجة، يمكنك تغييره أو حذفه بالكامل دون فقد أي من اتصالاتك.", - "simplex-unique-overlay-card-3-p-2": "يتم الاحتفاظ بالرسائل المُعمَّاة من طرف إلى طرف مؤقتًا على خوادم ترحيل SimpleX حتى يتم استلامها، ثُمَّ تُحذف نهائيًا.", + "simplex-unique-overlay-card-3-p-2": "يتم الاحتفاظ بالرسائل المُعمَّاة بين الطرفين مؤقتًا على خوادم ترحيل SimpleX حتى يتم استلامها، ثُمَّ تُحذف نهائيًا.", "simplex-unique-overlay-card-3-p-4": "لا توجد معرفّات أو نص مُعَمَّى مشترك بين حركة مرور بيانات الخادم المُرسلة والمُستلمة — ؛ إذا كان أي شخص يراقب ذلك، فلن يتمكّن بسهولة من تحديد من يتواصل مع من، حتى لو اختُرق TLS.", "simplex-unique-card-1-p-1": "يحمي SimpleX خصوصية ملف التعريف الخاص بك، جهات الاتصال والبيانات الوصفية، ويخفيه عن خوادم منصة SimpleX وأي مراقبين.", "privacy-matters-overlay-card-2-p-1": "منذ وقت ليس ببعيد، لاحظنا أن الانتخابات الرئيسية يتم التلاعب بها بواسطة <a href='https://en.wikipedia.org/wiki/Facebook–Cambridge_Analytica_data_scandal' target='_blank'> شركة استشارية ذات سمعة طيبة </a> التي استخدمت الرسوم البيانية الاجتماعية لتشويه نظرتنا للعالم الحقيقي والتلاعب بأصواتنا.", @@ -161,7 +161,7 @@ "comparison-section-list-point-6": "على الرغم من أن الـP2P موزعة، إلا أنها ليست اتِحاديَّة - يعملون كشبكة واحدة", "comparison-section-list-point-1": "عادة ما يكون مكوناً من رقم الهاتف، أو اسم المستخدم في بعض الأحيان", "comparison-section-list-point-4": "إذا خوادم المشغّل مُخترقة. تحقق من رمز الأمان في Signal وبعض التطبيقات الأخرى للتخفيف منه", - "simplex-unique-card-3-p-1": "يخزن SimpleX جميع بيانات المستخدم على الأجهزة العميلة<strong> بتنسيق قاعدة بيانات محمولة مُعمَّاة — </strong>يمكّن نقله إلى جهاز آخر.", + "simplex-unique-card-3-p-1": "يخزن SimpleX جميع بيانات المستخدم على الأجهزة العميلة<strong> بتنسيق قاعدة بيانات محمولة مُعمَّاة — </strong>يمكّن نقلها إلى جهاز آخر.", "simplex-unique-card-4-p-1": "شبكة SimpleX لا مركزية بالكامل ومستقلة عن أي عملة مُعمَّاة أو أي منصة أخرى، بخلاف الإنترنت.", "simplex-unique-card-4-p-2": "يمكنك<strong> استخدام SimpleX مع خوادمك الخاصة </strong> أو مع الخوادم التي نوفرها — ولا يزال الاتصال ممكن بأي مستخدم.", "join": "انضم إلى", @@ -192,7 +192,7 @@ "protocol-2-text": "XMPP ،Matrix", "simplex-unique-card-1-p-2": "بخلاف أي نظام مُراسلة آخر، لا يحتوي SimpleX على معرّفات مخصصة للمستخدمين —<strong> ولا حتى أرقام عشوائية</strong>.", "simplex-unique-card-2-p-1": "نظرًا لعدم وجود معرف أو عنوان ثابت على منصة SimpleX، لا يمكن لأي شخص الاتصال بك ما لم تشارك عنوان مستخدم لمرة واحدة أو مؤقتًا، كرمز QR أو رابط.", - "simplex-unique-card-3-p-2": "يتم الاحتفاظ بالرسائل المُعمَّاة من طرف إلى طرف مؤقتًا على خوادم ترحيل SimpleX حتى يتم استلامها، ثُمَّ تُحذف نهائيًا.", + "simplex-unique-card-3-p-2": "يتم الاحتفاظ بالرسائل المُعمَّاة بين الطرفين مؤقتًا على خوادم ترحيل SimpleX حتى يتم استلامها، ثُمَّ تُحذف نهائيًا.", "tap-the-connect-button-in-the-app": "اضغط على زر<span class='text-active-blue'> \"اتصال\"</span> في التطبيق", "scan-the-qr-code-with-the-simplex-chat-app": "امسح رمز QR باستخدام تطبيق SimpleX Chat", "scan-the-qr-code-with-the-simplex-chat-app-description": "لا يتم إرسال المفاتيح العامة وعنوان قائمة انتظار الرسائل في هذا الارتباط عبر الشبكة عند عرض هذه الصفحة —<br> فهي موجودة في جزء التجزئة لعنوان URL للرابط.", @@ -243,12 +243,14 @@ "releases-to-this-repo-are-done-1-2-days-later": "يتم إصدار الإصدارات إلى هذا المستودع بعد يوم أو يومين", "f-droid-page-simplex-chat-repo-section-text": "لإضافته إلى عميل F-Droid، <span class='hide-on-mobile'>امسح رمز QR أو</span> استخدم عنوان URL هذا:", "f-droid-page-f-droid-org-repo-section-text": "مستودعات SimpleX Chat و F-Droid.org مبنية على مفاتيح مختلفة. للتبديل، يُرجى <a href='/docs/guide/chat-profiles.html#move-your-chat-profiles-to-another-device'>تصدير</a> قاعدة بيانات الدردشة وإعادة تثبيت التطبيق.", - "comparison-section-list-point-4a": "مُرحلات SimpleX لا يمكنها أن تتنازل عن تَعْمِيَة بين الطرفين. تحقق من رمز الأمان للتخفيف من الهجوم على القناة خارج النطاق", + "comparison-section-list-point-4a": "مُرحلات SimpleX لا يمكنها أن تتنازل عن تعمية بين الطرفين. تحقق من رمز الأمان للتخفيف من الهجوم على القناة خارج النطاق", "hero-overlay-3-title": "التقييم الأمني", "hero-overlay-card-3-p-2": "قامت Trail of Bits بمراجعة مكونات التشفير والشبكات الخاصة بمنصة SimpleX في نوفمبر 2022.", "hero-overlay-card-3-p-3": "اقرأ المزيد في <a href=\"/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html\">الإعلان</a>.", "jobs": "انضم للفريق", "hero-overlay-3-textlink": "التقييم الأمني", "hero-overlay-card-3-p-1": "<a href=\"https://www.trailofbits.com/about/\">Trail of Bits</a> هي شركة رائدة في مجال الاستشارات الأمنية والتكنولوجية، ومن بين عملائها شركات التكنولوجيا الكبرى والوكالات الحكومية ومشاريع blockchain الكبرى.", - "docs-dropdown-9": "التنزيلات" + "docs-dropdown-9": "التنزيلات", + "please-enable-javascript": "الرجاء تفعيل جافا سكريبت (JavaScript) لرؤية رمز QR.", + "please-use-link-in-mobile-app": "يُرجى استخدام الرابط في تطبيق الجوال" } diff --git a/website/langs/bg.json b/website/langs/bg.json index 8ab6d958ed..b84d369678 100644 --- a/website/langs/bg.json +++ b/website/langs/bg.json @@ -1,3 +1,6 @@ { - "developers": "Разработчици" + "developers": "Разработчици", + "glossary": "Речник", + "yes": "Да", + "no": "Не" } diff --git a/website/langs/de.json b/website/langs/de.json index cb03588e1f..7b37869429 100644 --- a/website/langs/de.json +++ b/website/langs/de.json @@ -250,5 +250,7 @@ "jobs": "Treten Sie dem Team bei", "hero-overlay-3-textlink": "Sicherheits-Gutachten", "hero-overlay-card-3-p-1": "<a href=\"https://www.trailofbits.com/about/\">Trail of Bits</a> ist eine führende Security- und Technologie-Unternehmensberatung, deren Kunden aus den Bereichen Big-Tech, Regierungsbehörden und großen Blockchain-Projekten stammen.", - "docs-dropdown-9": "Downloads" + "docs-dropdown-9": "Downloads", + "please-enable-javascript": "Bitte aktivieren Sie JavaScript, um den QR-Code zu sehen.", + "please-use-link-in-mobile-app": "Bitte nutzen Sie den Link in der Mobiltelefon-App" } diff --git a/website/langs/es.json b/website/langs/es.json index 9b116b4215..d235a030fb 100644 --- a/website/langs/es.json +++ b/website/langs/es.json @@ -250,5 +250,7 @@ "jobs": "Únete al equipo", "hero-overlay-3-textlink": "Evaluación de la seguridad", "hero-overlay-card-3-p-1": "<a href=\"https://www.trailofbits.com/about/\">Trail of Bits</a> es una consultora de seguridad y tecnología líder cuyos clientes incluyen grandes tecnológicas, agencias gubernamentales e importantes proyectos de blockchain.", - "docs-dropdown-9": "Descargas" + "docs-dropdown-9": "Descargas", + "please-enable-javascript": "Habilita JavaScript para ver el código QR.", + "please-use-link-in-mobile-app": "Usa el enlace en la apliación móvil," } diff --git a/website/langs/fi.json b/website/langs/fi.json index 963ed42c87..1d704cc8ec 100644 --- a/website/langs/fi.json +++ b/website/langs/fi.json @@ -27,7 +27,7 @@ "hero-overlay-1-title": "Kuinka SimpleX toimii?", "hero-overlay-2-title": "Miksi käyttäjätunnukset ovat huonoja yksityisyydelle?", "feature-1-title": "Päästä päähän salattuja viestejä markdownin ja muokkaamisen kera", - "feature-2-title": "Päästä päähän salattuja<br>kuvia ja tiedostoja", + "feature-2-title": "Päästä päähän salattuja<br>kuvia, videoita ja tiedostoja", "feature-3-title": "Hajautetut salaiset ryhmät —<br>vain käyttäjät tietävät niiden olemassaolosta", "feature-4-title": "Päästä päähän salattuja ääniviestejä", "feature-5-title": "Katoavia viestejä", @@ -243,5 +243,7 @@ "menu": "Valikko", "simplex-chat-via-f-droid": "SimpleX Chat F-Droidin kautta", "stable-and-beta-versions-built-by-developers": "Kehittäjien luomat vakaat ja beta-versiot", - "f-droid-page-simplex-chat-repo-section-text": "Lisätäksesi sen F-Droid-asiakkaaseesi, <span class='hide-on-mobile'>skannaa QR-koodi tai</span> käytä tätä URL-osoitetta:" + "f-droid-page-simplex-chat-repo-section-text": "Lisätäksesi sen F-Droid-asiakkaaseesi, <span class='hide-on-mobile'>skannaa QR-koodi tai</span> käytä tätä URL-osoitetta:", + "jobs": "Liity tiimiin", + "docs-dropdown-9": "Lataukset" } diff --git a/website/langs/fr.json b/website/langs/fr.json index 2cdf1b9ae9..580f4134cd 100644 --- a/website/langs/fr.json +++ b/website/langs/fr.json @@ -251,5 +251,7 @@ "jobs": "Rejoignez notre équipe", "hero-overlay-3-textlink": "Évaluation de sécurité", "hero-overlay-card-3-p-1": "<a href=\"https://www.trailofbits.com/about/\">Trail of Bits</a> est un cabinet leader dans le secteur de la sécurité et des technologies qui compte parmi ses clients des grandes entreprises de la tech, des agences gouvernementales et d'importants projets de blockchain.", - "docs-dropdown-9": "Téléchargements" + "docs-dropdown-9": "Téléchargements", + "please-enable-javascript": "Veuillez activer JavaScript pour voir le code QR.", + "please-use-link-in-mobile-app": "Veuillez utiliser le lien dans l'application mobile" } diff --git a/website/langs/it.json b/website/langs/it.json index 3dda11e9c2..388f461374 100644 --- a/website/langs/it.json +++ b/website/langs/it.json @@ -250,5 +250,7 @@ "jobs": "Unisciti al team", "hero-overlay-3-textlink": "Valutazione della sicurezza", "hero-overlay-card-3-p-1": "<a href=\"https://www.trailofbits.com/about/\">Trail of Bits</a> è leader nella consulenza di sicurezza e tecnologia, i cui clienti includono grandi aziende, agenzie governative e importanti progetti di blockchain.", - "docs-dropdown-9": "Download" + "docs-dropdown-9": "Download", + "please-enable-javascript": "Attiva JavaScript per vedere il codice QR.", + "please-use-link-in-mobile-app": "Usa il link nell'app mobile" } diff --git a/website/langs/ja.json b/website/langs/ja.json index 2b6d657608..8fa5cac1f9 100644 --- a/website/langs/ja.json +++ b/website/langs/ja.json @@ -250,5 +250,7 @@ "hero-overlay-3-textlink": "セキュリティ監査", "hero-overlay-3-title": "セキュリティ監査", "hero-overlay-card-3-p-2": "Trail of Bitsは2022年11月にSimpleXプラットフォームの暗号とネットワークのコンポーネントを検証しました。", - "docs-dropdown-9": "ダウンロード" -} \ No newline at end of file + "docs-dropdown-9": "ダウンロード", + "please-enable-javascript": "QRコードを表示するためにJavaScriptを有効にしてください。", + "please-use-link-in-mobile-app": "このリンクをモバイルアプリで使用してください" +} diff --git a/website/langs/nl.json b/website/langs/nl.json index 51c5855b51..847baf4c3a 100644 --- a/website/langs/nl.json +++ b/website/langs/nl.json @@ -250,5 +250,7 @@ "jobs": "Sluit je aan bij het team", "hero-overlay-3-textlink": "Beveiligings beoordeling", "hero-overlay-card-3-p-1": "<a href=\"https://www.trailofbits.com/about/\">Trail of Bits</a> is een toonaangevend beveiligings- en technologieadviesbureau met klanten onder meer grote technologiebedrijven, overheidsinstanties en grote blockchain-projecten.", - "docs-dropdown-9": "Downloads" + "docs-dropdown-9": "Downloads", + "please-enable-javascript": "Schakel JavaScript in om de QR-code te zien.", + "please-use-link-in-mobile-app": "Gebruik de link in de mobiele app" } diff --git a/website/langs/pl.json b/website/langs/pl.json index ba0c72da7e..041176a1e1 100644 --- a/website/langs/pl.json +++ b/website/langs/pl.json @@ -45,10 +45,10 @@ "home": "Strona główna", "developers": "Deweloperzy", "simplex-explained-tab-1-text": "1. Jakie są doświadczenia użytkowników", - "simplex-explained-tab-1-p-1": "Można tworzyć kontakty i grupy oraz prowadzić dwukierunkowe rozmowy, jak w każdym innym komunikatorze.", + "simplex-explained-tab-1-p-1": "Możesz tworzyć kontakty i grupy oraz prowadzić dwukierunkowe rozmowy, jak w każdym innym komunikatorze.", "simplex-explained-tab-2-p-2": "Serwery przekazują wiadomości tylko w jedną stronę, nie mając pełnego obrazu konwersacji i połączeń użytkownika.", "simplex-explained-tab-3-p-2": "Użytkownicy mogą jeszcze bardziej zwiększyć prywatność metadanych, używając Tor do uzyskania dostępu do serwerów, co zapobiega korelacji na podstawie adresu IP.", - "hero-p-1": "Inne aplikacje mają identyfikatory użytkowników (ID): Signal, Matrix, Session, Briar, Jami, Cwtch itp.<br> SimpleX nie, <strong>nie ma nawet losowych numerów</strong>.<br> To radykalnie poprawia Twoją prywatność.", + "hero-p-1": "Inne aplikacje posiadają identyfikatory użytkowników (ID): Signal, Matrix, Session, Briar, Jami, Cwtch itp.<br> SimpleX nie, <strong>nie posiada nawet losowych numerów</strong>.<br> To radykalnie poprawia Twoją prywatność.", "feature-2-title": "Obrazy, wideo i pliki<br>zaszyfrowane przez E2E", "feature-8-title": "Tryb incognito —<br>unikalny dla SimpleX Chat", "simplex-network-overlay-1-title": "Porównanie z protokołami komunikacyjnymi P2P", @@ -250,5 +250,7 @@ "jobs": "Dołącz do zespołu", "hero-overlay-3-textlink": "Ocena bezpieczeństwa", "hero-overlay-card-3-p-1": "<a href=\"https://www.trailofbits.com/about/\">Trail of Bits</a> jest wiodącą firmą konsultingową w zakresie bezpieczeństwa i technologii, której klientami są duże firmy technologiczne, agencje rządowe i główne projekty blockchain.", - "docs-dropdown-9": "Pliki do pobrania" + "docs-dropdown-9": "Pliki do pobrania", + "please-enable-javascript": "Prosimy o włączenie JavaScript w celu wyświetlenia kodu QR.", + "please-use-link-in-mobile-app": "Prosimy o skorzystanie z linku w aplikacji mobilnej" } diff --git a/website/langs/pt_BR.json b/website/langs/pt_BR.json index 278d54c43a..1bb21372e6 100644 --- a/website/langs/pt_BR.json +++ b/website/langs/pt_BR.json @@ -13,20 +13,20 @@ "hero-p-1": "Outros aplicativos possuem IDs de usuário: Signal, Matrix, Session, Briar, Jami, Cwtch, etc.<br> O SimpleX não tem, <strong>nem mesmo números aleatórios</strong>.<br> Isso melhora radicalmente a sua privacidade.", "terms-and-privacy-policy": "Termos e Política de Privacidade", "hero-2-header-desc": "O vídeo mostra como você se conecta com seu amigo através do QR code de uso único dele, pessoalmente ou via link de vídeo. Você também pode se conectar compartilhando um link de convite.", - "feature-7-title": "Banco de dados criptografado portátil — mova seu perfil para outro dispositivo", + "feature-7-title": "Armazenamento do aplicativo criptografado portátil — mova o perfil para outro dispositivo", "simplex-explained": "Explicação do SimpleX", "simplex-explained-tab-1-text": "1. O que os usuários experimentam", "simplex-explained-tab-3-text": "3. O que os servidores veem", "simplex-explained-tab-1-p-2": "Como ele pode funcionar com filas unidirecionais e sem identificadores de perfil de usuário?", "simplex-explained-tab-2-p-2": "Os servidores só passam mensagens em uma direção, sem ter a imagem completa da conversa ou conexões do usuário.", "simplex-explained-tab-3-p-1": "Os servidores têm credenciais anônimas separadas para cada envio e não sabem a que usuários elas pertencem.", - "simplex-explained-tab-3-p-2": "Os usuários podem melhorar ainda mais a privacidade de metadados usando o Tor para acessar os servidores, impedindo a correlação pelo endereço IP.", + "simplex-explained-tab-3-p-2": "Os usuários podem melhorar ainda mais a privacidade de metadados usando o Tor para acessar os servidores, impedindo a correlação pelo endereço de IP.", "chat-bot-example": "Exemplo de chat bot", "smp-protocol": "Protocolo SMP", - "chat-protocol": "Protocolo de chat", + "chat-protocol": "Protocolo de bate-papo", "donate": "Doar", - "copyright-label": "© 2020-2023 SimpleX | Projeto de código livre", - "simplex-chat-protocol": "Protocolo de Chat SimpleX", + "copyright-label": "© 2020-2023 SimpleX | Projeto de Código Livre", + "simplex-chat-protocol": "Protocolo Chat SimpleX", "terminal-cli": "CLI Terminal", "hero-header": "Privacidade redefinida", "hero-subheader": "O primeiro mensageiro<br>sem ID de usuário", @@ -36,8 +36,8 @@ "hero-overlay-1-textlink": "Por que os IDs são ruins para a privacidade?", "hero-overlay-2-title": "Por que os IDs são ruins para a privacidade?", "feature-1-title": "Mensagens criptografadas de ponta-a-ponta com markdown e edição", - "feature-2-title": "Imagens e arquivos<br>criptografados de ponta-a-ponta", - "feature-3-title": "Grupos secretos descentralizados —<br>somente os usuários sabem que eles existem", + "feature-2-title": "Criptografia de ponta-a-ponta<br>imagens, vídeos e arquivos", + "feature-3-title": "Criptografia de ponta-a-ponta descentralizada de grupos — somente os usuários sabem que eles existem", "feature-4-title": "Mensagens de voz criptografadas de ponta-a-ponta", "feature-5-title": "Mensagens que desaparecem", "feature-6-title": "Chamadas de áudio e vídeo<br>criptografadas de ponta-a-ponta", @@ -65,13 +65,13 @@ "privacy-matters-overlay-card-1-p-2": "Os varejistas online sabem que as pessoas com renda mais baixa têm maior probabilidade de fazer compras urgentes e, por isso, podem cobrar preços mais altos ou remover descontos.", "privacy-matters-overlay-card-1-p-4": "A plataforma SimpleX protege a privacidade de suas conexões melhor do que qualquer alternativa, impedindo totalmente que seu gráfico social fique disponível para quaisquer empresas ou organizações. Mesmo quando as pessoas usam servidores fornecidos pelo SimpleX Chat, não sabemos o número de usuários ou suas conexões.", "privacy-matters-overlay-card-2-p-2": "Para ser objetivo e tomar decisões independentes, você precisa ter o controle do seu espaço de informações. Isso só é possível se você usar uma plataforma de comunicação privada que não tenha acesso ao seu gráfico social.", - "privacy-matters-overlay-card-3-p-1": "Todos devem se preocupar com a privacidade e a segurança de suas comunicações - conversas inofensivas podem colocá-lo em perigo, mesmo que você não tenha nada a esconder.", + "privacy-matters-overlay-card-3-p-1": "Todos devem se preocupar com a privacidade e a segurança de suas comunicações — conversas inofensivas podem colocá-lo em perigo, mesmo que você não tenha nada a esconder.", "simplex-unique-overlay-card-3-p-1": "O SimpleX Chat armazena todos os dados do usuário somente em dispositivos clientes usando um <strong>formato de banco de dados criptografado portátil</strong> que pode ser exportado e transferido para qualquer dispositivo compatível.", - "privacy-matters-overlay-card-3-p-2": "Uma das histórias mais chocantes é a experiência de <a href='https://pt.wikipedia.org/wiki/Mohamedou_Ould_Slahi' target='_blank'>Mohamedou Ould Salahi</a>, descrita em seu livro de memórias e mostrada no filme O Mauritano. Ele foi colocado no campo de Guantánamo, sem julgamento, e lá foi torturado por 15 anos após um telefonema para seu parente no Afeganistão, sob suspeita de estar envolvido nos ataques de 11 de setembro, embora tenha vivido na Alemanha nos 10 anos anteriores.", - "simplex-unique-overlay-card-1-p-1": "Ao contrário de outras plataformas de mensagens, o SimpleX <strong>não tem identificadores atribuídos aos usuários</strong>. Ele não depende de números de telefone, endereços baseados em domínio (como e-mail ou XMPP), nomes de usuário, chaves públicas ou mesmo números aleatórios para identificar seus usuários — não sabemos quantas pessoas usam nossos servidores SimpleX.", - "simplex-private-card-1-point-1": "Protocolo de dupla catraca —<br>mensagens OTR com sigilo de encaminhamento perfeito e recuperação de invasão.", + "privacy-matters-overlay-card-3-p-2": "Uma das histórias mais chocantes é a experiência de <a href='https://en.wikipedia.org/wiki/Mohamedou_Ould_Slahi' target='_blank'>Mohamedou Ould Salahi</a>, descrita em seu livro de memórias e mostrada no filme O Mauritano. Ele foi colocado no campo de Guantánamo, sem julgamento, e lá foi torturado por 15 anos após um telefonema para seu parente no Afeganistão, sob suspeita de estar envolvido nos ataques de 11 de setembro, embora tenha vivido na Alemanha nos 10 anos anteriores.", + "simplex-unique-overlay-card-1-p-1": "Ao contrário de outras plataformas de mensagens, o SimpleX <strong>não tem identificadores atribuídos aos usuários</strong>. Ele não depende de números de telefone, endereços baseados em domínio (como email ou XMPP), nomes de usuário, chaves públicas ou mesmo números aleatórios para identificar seus usuários — não sabemos quantas pessoas usam nossos servidores SimpleX.", + "simplex-private-card-1-point-1": "Protocolo de dupla catraca —<br>mensagens OTR com Sigilo de Encaminhamento Perfeito (Perfect Forward Secrecy) e recuperação de invasão.", "simplex-private-8-title": "Mistura de mensagens<br>para reduzir a correlação", - "simplex-unique-overlay-card-4-p-2": "A plataforma SimpleX usa um <a href='https://github.com/simplex-chat/simplexmq/blob/stable/protocol/overview-tjr.md' target='_blank'>protocolo aberto</a> e fornece um <a href='https://github.com/simplex-chat/simplex-chat/tree/stable/packages/simplex-chat-client/typescript' target='_blank'>SDK para criar bots de chat</a>, permitindo a implementação de serviços com os quais os usuários podem interagir por meio dos aplicativos SimpleX Chat — estamos realmente ansiosos para ver quais serviços SimpleX você pode criar.", + "simplex-unique-overlay-card-4-p-2": "A plataforma SimpleX usa um <a href='https://github.com/simplex-chat/simplexmq/blob/stable/protocol/overview-tjr.md' target='_blank'>protocolo aberto</a> e fornece um <a href='https://github.com/simplex-chat/simplex-chat/tree/stable/packages/simplex-chat-client/typescript' target='_blank'>SDK para criar bots de chat</a>, permitindo a implementação de serviços com os quais os usuários podem interagir por meio dos aplicativos SimpleX Chat — estamos' realmente ansiosos para ver quais serviços SimpleX você pode criar.", "simplex-unique-overlay-card-3-p-4": "Não há identificadores ou texto cifrado em comum entre o tráfego de servidor enviado e recebido — se alguém estiver observando, não poderá determinar facilmente quem se comunica com quem, mesmo que o TLS esteja comprometido.", "simplex-unique-overlay-card-4-p-3": "Se estiver pensando em desenvolver para a plataforma SimpleX, por exemplo, o bot de chat para os usuários do aplicativo SimpleX ou a integração da biblioteca SimpleX Chat em seus aplicativos móveis, <a href='https://simplex.chat/contact#/?v=1&smp=smp%3A%2F%2FPQUV2eL0t7OStZOoAsPEV2QYWt4-xilbakvGUGOItUo%3D%40smp6.simplex.im%2FK1rslx-m5bpXVIdMZg9NLUZ_8JBm8xTt%23MCowBQYDK2VuAyEALDeVe-sG8mRY22LsXlPgiwTNs9dbiLrNuA7f3ZMAJ2w%3D' target='_blank'>entre em contato</a> para qualquer orientação e suporte.", "simplex-unique-card-2-p-1": "Como você não tem um identificador ou endereço fixo na plataforma SimpleX, ninguém pode entrar em contato com você, a menos que você compartilhe um endereço de usuário único ou temporário, como um QR code ou um link.", @@ -81,7 +81,7 @@ "contact-hero-p-3": "Use os links abaixo para baixar o aplicativo.", "feature-8-title": "Modo anônimo —<br> único do SimpleX Chat", "simplex-network-overlay-1-title": "Comparação com protocolos de mensagens P2P", - "simplex-private-2-title": "Camada adicional de<br>encriptação do servidor", + "simplex-private-2-title": "Camada adicional de<br>criptografia do servidor", "simplex-private-4-title": "Acesso opcional<br>via Tor", "simplex-private-6-title": "Troca de chaves<br>fora da rede", "simplex-private-7-title": "Verificação de integridade<br>da mensagem", @@ -91,7 +91,7 @@ "simplex-private-card-3-point-1": "Somente o TLS 1.2/1.3 com algoritmos fortes é usado para conexões cliente-servidor.", "simplex-private-card-3-point-2": "A impressão digital do servidor e a vinculação de canais evitam ataques MITM e de repetição.", "simplex-private-card-3-point-3": "A retomada da conexão é desativada para evitar ataques à sessão.", - "simplex-private-card-5-point-1": "O SimpleX usa proteção de conteúdo em cada camada de criptografia para impedir ataques ao tamanho da mensagem.", + "simplex-private-card-5-point-1": "O SimpleX usa preenchimento de conteúdo em cada camada de criptografia para impedir ataques ao tamanho da mensagem.", "simplex-private-5-title": "Múltiplas camadas de<br>preenchimento de conteúdos", "simplex-private-card-5-point-2": "Isso faz com que mensagens de tamanhos diferentes tenham a mesma aparência para os servidores e observadores de rede.", "simplex-private-card-6-point-1": "Muitas plataformas de comunicação são vulneráveis a ataques MITM por servidores ou provedores de rede.", @@ -117,22 +117,22 @@ "hero-overlay-card-1-p-4": "Esse design evita o vazamento de metadados de qualquer usuário' no nível do aplicativo. Para aumentar ainda mais a privacidade e proteger seu endereço IP, você pode se conectar aos servidores de mensagens via Tor.", "hero-overlay-card-1-p-6": "Leia mais no <a href='https://github.com/simplex-chat/simplexmq/blob/stable/protocol/overview-tjr.md' target='_blank'>informativo técnico do SimpleX</a>.", "hero-overlay-card-2-p-2": "Eles poderiam então correlacionar essas informações com as redes sociais públicas existentes e determinar algumas identidades reais.", - "hero-overlay-card-2-p-4": "O SimpleX se protege contra esses ataques por não ter nenhum ID de usuário em seu design. E, se você usar o modo Incognito, terá um nome de exibição diferente para cada contato, evitando qualquer compartilhamento de dados entre eles.", + "hero-overlay-card-2-p-4": "O SimpleX se protege contra esses ataques por não ter nenhum ID de usuário em seu design. E, se você usar o modo Anônimo, terá um nome de exibição diferente para cada contato, evitando qualquer compartilhamento de dados entre eles.", "simplex-network-overlay-card-1-p-1": "Os protocolos e aplicativos de mensagens <a href='https://pt.wikipedia.org/wiki/Peer-to-peer'>P2P</a> têm vários problemas que os tornam menos confiáveis do que o SimpleX, mais complexos de analisar e vulneráveis a vários tipos de ataque.", "simplex-network-overlay-card-1-li-2": "O design do SimpleX, ao contrário da maioria das redes P2P, não tem identificadores de usuário globais de qualquer tipo, mesmo temporários, e usa apenas identificadores temporários em pares, proporcionando melhor anonimato e proteção de metadados.", "simplex-network-overlay-card-1-li-3": "O P2P não resolve o problema do <a href='https://pt.wikipedia.org/wiki/Ataque_man-in-the-middle'>ataque MITM</a>, e a maioria das implementações existentes não usa mensagens fora de banda para a troca de chaves inicial. O SimpleX usa mensagens fora de banda ou, em alguns casos, conexões pré-existentes seguras e confiáveis para a troca de chaves inicial.", "simplex-network-overlay-card-1-li-6": "As redes P2P podem ser vulneráveis a <a href='https://www.usenix.org/conference/woot15/workshop-program/presentation/p2p-file-sharing-hell-exploiting-bittorrent'>ataques DRDoS</a>, quando os clientes podem retransmitir e amplificar o tráfego, resultando em uma negação de serviço em toda a rede. Os clientes SimpleX apenas retransmitem o tráfego de uma conexão conhecida e não podem ser usados por um invasor para amplificar o tráfego em toda a rede.", "privacy-matters-overlay-card-1-p-3": "Algumas empresas financeiras e de seguros usam gráficos sociais para determinar taxas de juros e prêmios. Isso geralmente faz com que as pessoas com renda mais baixa paguem mais — isso é conhecido como <a href='https://fairbydesign.com/povertypremium/' target='_blank'>\"prêmio de pobreza\"</a>.", - "privacy-matters-overlay-card-2-p-1": "Não faz muito tempo que observamos as eleições sendo manipuladas por <a href='https://pt.wikipedia.org/wiki/Esc%C3%A2ndalo_de_dados_Facebook%E2%80%93Cambridge_Analytica' target='_blank'>uma empresa de consultoria respeitável</a> que usou nossos gráficos sociais para distorcer nossa visão do mundo real e manipular nossos votos.", + "privacy-matters-overlay-card-2-p-1": "Não faz muito tempo que observamos as eleições sendo manipuladas por <a href='https://en.wikipedia.org/wiki/Facebook–Cambridge_Analytica_data_scandal' target='_blank'>uma empresa de consultoria respeitável</a> que usou nossos gráficos sociais para distorcer nossa visão do mundo real e manipular nossos votos.", "privacy-matters-overlay-card-2-p-3": "O SimpleX é a primeira plataforma que não tem nenhum identificador de usuário por design, protegendo assim seu gráfico de conexões melhor do que qualquer alternativa conhecida.", "privacy-matters-overlay-card-3-p-3": "Pessoas comuns são presas pelo que compartilham online, mesmo por meio de suas contas \"anônimas\", <a href='https://www.dailymail.co.uk/news/article-11282263/Moment-police-swoop-house-devout-catholic-mother-malicious-online-posts.html' target='_blank'>mesmo em países democráticos</a>.", "privacy-matters-overlay-card-3-p-4": "Não basta usar um mensageiro criptografado de ponta-a-ponta, todos nós devemos usar os mensageiros que protegem a privacidade de nossas redes pessoais — com quem estamos conectados.", - "simplex-unique-overlay-card-1-p-2": "Para entregar mensagens, o SimpleX usa <a href='https://csrc.nist.gov/glossary/term/Pairwise_Pseudonymous_Identifier'>endereços anônimos em pares</a> de filas de mensagens unidirecionais, separadas para mensagens recebidas e enviadas, geralmente por meio de servidores diferentes. Usar o SimpleX é como ter <strong>um e-mail ou telefone de “gravação” diferente para cada contato</strong>, sem a necessidade de gerenciá-los.", + "simplex-unique-overlay-card-1-p-2": "Para entregar mensagens, o SimpleX usa <a href='https://csrc.nist.gov/glossary/term/Pairwise_Pseudonymous_Identifier'>endereços anônimos em pares</a> de filas de mensagens unidirecionais, separadas para mensagens recebidas e enviadas, geralmente por meio de servidores diferentes. Usar o SimpleX é como ter <strong>um email ou telefone de “gravação” diferente para cada contato</strong>, sem a necessidade de gerenciá-los.", "simplex-unique-overlay-card-1-p-3": "Esse design protege a privacidade de quem está se comunicando com você, ocultando-a dos servidores da plataforma SimpleX e de quaisquer observadores. Para ocultar seu endereço IP dos servidores, você pode <strong>se conectar aos servidores do SimpleX via Tor</strong>.", "simplex-unique-overlay-card-2-p-2": "Mesmo com o endereço de usuário opcional, embora ele possa ser usado para enviar solicitações de contato de spam, você pode alterá-lo ou excluí-lo completamente sem perder nenhuma das suas conexões.", "simplex-unique-overlay-card-2-p-1": "Como você não tem um identificador na plataforma SimpleX, ninguém pode entrar em contato com você, a menos que compartilhe um endereço de usuário único ou temporário, como um QR code ou um link.", "simplex-unique-overlay-card-3-p-2": "As mensagens criptografadas de ponta-a-ponta são mantidas temporariamente nos servidores de retransmissão SimpleX até serem recebidas e, em seguida, são excluídas permanentemente.", - "simplex-unique-overlay-card-3-p-3": "Diferente dos servidores de redes federadas (e-mail, XMPP ou Matrix), os servidores SimpleX não armazenam contas de usuários, apenas retransmitem mensagens, protegendo a privacidade de ambas as partes.", + "simplex-unique-overlay-card-3-p-3": "Diferente dos servidores de redes federadas (email, XMPP ou Matrix), os servidores SimpleX não armazenam contas de usuários, apenas retransmitem mensagens, protegendo a privacidade de ambas as partes.", "simplex-unique-overlay-card-4-p-1": "Você pode <strong>usar o SimpleX com seus próprios servidores</strong> e ainda se comunicar com pessoas que usam os servidores pré-configurados fornecidos por nós.", "simplex-unique-card-1-p-1": "O SimpleX protege a privacidade do seu perfil, contatos e metadados, ocultando-os dos servidores da plataforma SimpleX e de quaisquer observadores.", "simplex-unique-card-1-p-2": "Diferente de qualquer outra plataforma de mensagens existente, o SimpleX não tem identificadores atribuídos aos usuários — <strong>nem mesmo números aleatórios</strong>.", @@ -145,8 +145,8 @@ "join-us-on-GitHub": "Junte-se a nós no GitHub", "donate-here-to-help-us": "Doe aqui para nos ajudar", "sign-up-to-receive-our-updates": "Inscreva-se para receber nossas atualizações", - "enter-your-email-address": "Digite seu endereço de e-mail", - "get-simplex": "Obtenha o SimpleX <a href=\"/downloads\">desktop app</a>", + "enter-your-email-address": "Digite seu endereço de email", + "get-simplex": "Obtenha o SimpleX <a href=\"/downloads\">aplicativo desktop</a>", "why-simplex-is": "Por que o SimpleX é", "unique": "único", "learn-more": "Saiba mais", @@ -164,14 +164,14 @@ "guide-dropdown-2": "Enviando mensagens", "guide-dropdown-8": "Configurações do aplicativo", "guide-dropdown-9": "Fazendo conexões", - "docs-dropdown-4": "Servidor SMP de host", - "docs-dropdown-5": "Servidor XFTP de host", + "docs-dropdown-4": "Hospedar Servidor SMP", + "docs-dropdown-5": "Hospedar Servidor XFTP", "docs-dropdown-6": "Servidores WebRTC", - "docs-dropdown-7": "Traduzir o SimpleX Chat", + "docs-dropdown-7": "Traduza o SimpleX Chat", "use-this-command": "Use esse comando:", "github-repository": "Repositório no GitHub", "if-you-already-installed-simplex-chat-for-the-terminal": "Se você já instalou o SimpleX Chat para o terminal", - "copy-the-command-below-text": "copie o comando abaixo e use-o no chat:", + "copy-the-command-below-text": "copie o comando abaixo e use-o no bate-papo:", "privacy-matters-section-header": "Por que a privacidade é <span class='gradient-text'>importante</span>", "privacy-matters-section-label": "Certifique-se de que seu mensageiro não possa acessar seus dados!", "simplex-network-section-header": "<span class='gradient-text'>Rede</span> SimpleX", @@ -183,8 +183,8 @@ "simplex-network-1-header": "Diferente das redes P2P", "docs-dropdown-2": "Acessando arquivos do Android", "comparison-section-list-point-3": "Chave pública ou alguma outra ID globalmente exclusiva", - "comparison-section-list-point-4": "Se os servidores da operadora forem comprometidos", - "comparison-section-list-point-5": "Não protege os metadados dos usuários", + "comparison-section-list-point-4": "Se os servidores da operadora forem comprometidos. Verifique o código de segurança no Signal e outros aplicativos para mitigá-lo", + "comparison-section-list-point-5": "Não protege a privacidade da metadados dos usuários", "guide-dropdown-1": "Início rápido", "guide-dropdown-4": "Perfis de chat", "guide-dropdown-5": "Gerenciando dados", @@ -192,7 +192,7 @@ "guide-dropdown-7": "Privacidade e segurança", "guide": "Manual", "docs-dropdown-1": "Plataforma SimpleX", - "docs-dropdown-3": "Acesso ao banco de dados do chat", + "docs-dropdown-3": "Acessando o banco de dados do bate-papo", "on-this-page": "Nesta página", "newer-version-of-eng-msg": "Há uma versão mais recente desta página em inglês.", "click-to-see": "Clique para ver", @@ -232,5 +232,25 @@ "comparison-section-list-point-7": "As redes P2P têm uma autoridade central ou toda a rede pode ser comprometida", "protocol-2-text": "Matrix, XMPP", "see-here": "veja aqui", - "glossary": "Glossário" + "glossary": "Glossário", + "f-droid-page-simplex-chat-repo-section-text": "Para adicioná-lo ao seu cliente F-Droid, <span class='hide-on-mobile'>escaneie o QR code ou</span> use este URL:", + "comparison-section-list-point-4a": "Os relays SimpleX não podem comprometer a criptografia e2e. Verifique o código de segurança para mitigar ataques em canais fora de banda", + "please-use-link-in-mobile-app": "Use o link no aplicativo móvel", + "stable-and-beta-versions-built-by-developers": "Versões estáveis e beta criadas pelos desenvolvedores", + "signing-key-fingerprint": "Assinatura de impressão digital de chave (SHA-256)", + "simplex-chat-via-f-droid": "SimpleX Chat pelo F-Droid", + "simplex-chat-repo": "Repositório Simplex Chat", + "f-droid-org-repo": "Repositório F-Droid.org", + "stable-versions-built-by-f-droid-org": "Versões estáveis criadas por F-Droid.org", + "releases-to-this-repo-are-done-1-2-days-later": "Os lançamentos para este repositório são feitos 1-2 dias depois", + "hero-overlay-3-textlink": "Avaliação Segura", + "hero-overlay-3-title": "Avaliação Segura", + "hero-overlay-card-3-p-1": "<a href=\"https://www.trailofbits.com/about/\">Trail of Bits</a> é uma consultoria líder em segurança e tecnologia cujos clientes incluem grandes empresas de tecnologia, agências governamentais e grandes projetos de blockchain.", + "hero-overlay-card-3-p-2": "Trail of Bits analisou a criptografia da plataforma SimpleX e os componentes de rede em novembro de 2022.", + "hero-overlay-card-3-p-3": "Leia mais em <a href=\"/blog/20221108-simplex-chat-v4.2-security-audit-new-website.html\">o anúncio</a>.", + "f-droid-page-f-droid-org-repo-section-text": "Os repositórios SimpleX Chat e F-Droid.org assinam compilações com chaves diferentes. Para mudar, <a href='/docs/guide/chat-profiles.html#move-your-chat-profiles-to-another-device'>exporte</a> o banco de dados de bate-papo e reinstale o aplicativo.", + "please-enable-javascript": "Por favor habilite o JavaScript para ver o QR code.", + "jobs": "Junte-se à equipe", + "docs-dropdown-8": "Serviço de Diretório SimpleX", + "docs-dropdown-9": "Baixar" } diff --git a/website/langs/uk.json b/website/langs/uk.json index e71b7cef8d..6289b44ca8 100644 --- a/website/langs/uk.json +++ b/website/langs/uk.json @@ -250,5 +250,7 @@ "hero-overlay-3-textlink": "Оцінка безпеки", "hero-overlay-card-3-p-1": "<a href=\"https://www.trailofbits.com/about/\">Trail of Bits</a> є провідною консалтинговою фірмою з безпеки та технологій, клієнтами якої є великі технологічні компанії, урядові агенції та великі проекти у сфері блокчейну.", "comparison-section-list-point-4a": "Ретранслятори SimpleX не можуть порушити e2e-шифрування. Перевірте безпековий код для зменшення ризику атаки на зовнішньобандовий канал", - "docs-dropdown-9": "Завантаження" -} \ No newline at end of file + "docs-dropdown-9": "Завантаження", + "please-enable-javascript": "Будь ласка, увімкніть JavaScript, щоб побачити QR-код.", + "please-use-link-in-mobile-app": "Будь ласка, скористайтеся посиланням у мобільному додатку" +} diff --git a/website/langs/zh_Hans.json b/website/langs/zh_Hans.json index e787bced83..ded7c7e19b 100644 --- a/website/langs/zh_Hans.json +++ b/website/langs/zh_Hans.json @@ -250,5 +250,7 @@ "jobs": "加入团队", "hero-overlay-3-textlink": "安全性评估", "hero-overlay-card-3-p-1": "<a href=\"https://www.trailofbits.com/about/\">Trail of Bits</a> 是一家领先的安全和技术咨询企业,其客户包括大型科技公司、政府机构和重要的区块链项目。", - "docs-dropdown-9": "下载" + "docs-dropdown-9": "下载", + "please-use-link-in-mobile-app": "请使用移动应用程序中的链接", + "please-enable-javascript": "请启用 JavaScript 以查看二维码。" } diff --git a/website/src/_includes/blog_previews/20240314.html b/website/src/_includes/blog_previews/20240314.html new file mode 100644 index 0000000000..8a9ac949a7 --- /dev/null +++ b/website/src/_includes/blog_previews/20240314.html @@ -0,0 +1,12 @@ +<p class="mb-[12px]">This is a major upgrade for SimpleX Chat messaging protocols!</p> + +<p class="mb-[12px]">This post also covers various aspects of end-to-end encryption:</p> + +<ul> + <li>Why do we need end-to-end encryption?</li> + <li>Why encryption is even allowed?</li> + <li>End-to-end encryption security: attacks and defence.</li> + <li>How secure is encryption in different messengers?</li> + <li>When can you start using quantum resistant chats?</li> + <li>Next for post-quantum crypto - all direct chats, small groups and security audit</li> +</ul> diff --git a/website/src/css/blog.css b/website/src/css/blog.css index adec9ab04e..f3517958e2 100644 --- a/website/src/css/blog.css +++ b/website/src/css/blog.css @@ -210,4 +210,9 @@ h6{ float: left; margin-right: 3rem; } + + #article .float-to-right{ + float: right; + margin-left: 3rem; + } } \ No newline at end of file